@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色 */
/* フォント */
/* 配置(フレックス) */
/* 擬似要素の共通基盤 */
/* ホバー */
/* transition */
/* レスポンシブ */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: black;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  position: relative;
  text-decoration: none;
  color: black;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

span {
  display: inline-block;
}

/* ヘッダー(タイトル) */
.header {
  height: 12rem;
  color: #fff;
  background: orange;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 14rem;
    font-size: 2.2rem;
  }
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.drawer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8rem;
  background: lightgreen;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}
.drawer .drawer__menu {
  transition: 0.2s ease;
}
.drawer .drawer__menu a {
  width: 100%;
  font-size: 1.6rem;
  transition: 0.2s ease;
  padding: 1.8em 0;
}
.drawer .drawer__menu a::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
  width: 0.9rem;
  height: 0.9rem;
  background: url(../images/nav-arrow-down.svg) no-repeat center center/contain;
}
.drawer .drawer__menu a:hover {
  opacity: 0.7;
}
.drawer .drawer__menu .drop-menu {
  position: fixed;
  top: 20rem;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transform: translateX(3px);
  transition: 0.2s ease;
}
.drawer .drawer__menu .drop-menu .image {
  width: 26.5%;
  height: calc(100% - 20rem);
}
.drawer .drawer__menu .drop-menu .image_b {
  width: 50%;
  height: calc(100vh - 20rem);
}
.drawer .drawer__menu .drop-menu .drop__contents--a {
  display: flex;
  width: 73.5%;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
  padding: 6rem 10rem 2rem 6rem;
}
.drawer .drawer__menu .drop-menu .drop__contents--a .contents {
  display: flex;
  flex-direction: column;
  width: 39rem;
  row-gap: 2rem;
}
.drawer .drawer__menu .drop-menu .drop__contents--a .contents .content {
  width: 100%;
}
.drawer .drawer__menu .drop-menu .drop__contents--a .contents .content a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 2rem;
}
.drawer .drawer__menu .drop-menu .drop__contents--a .contents .content a::after {
  top: 50%;
  right: 0;
  width: 0.8rem;
  height: 0.45rem;
  transform: rotate(-90deg);
}
.drawer .drawer__menu .drop-menu .drop__contents--a .contents .content a .content__title {
  padding-right: 3rem;
}
.drawer .drawer__menu .drop-menu .drop__contents--a .contents .content a:hover {
  opacity: 0.7;
}
.drawer .drawer__menu .drop-menu .drop__contents--a .contents .content--yt a::before {
  position: absolute;
  top: 50%;
  right: 8rem;
  transform: translateY(-50%);
  content: "";
  background: url(../images/icon-yt.svg) no-repeat center center/contain;
  width: 2rem;
  height: 1.4rem;
}
.drawer .drawer__menu .drop-menu .drop__contents--a .contents .content--yt a:hover {
  opacity: 0.7;
}
.drawer .drawer__menu .drop-menu .drop__contents--b {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 3rem;
}
.drawer .drawer__menu .drop-menu .drop__contents--b .contents__title {
  color: rgb(0, 52, 97);
  width: 45rem;
}
.drawer .drawer__menu .drop-menu .drop__contents--b .contents__title .title {
  font-size: 5rem;
  font-weight: 900;
  font-family: Montserrat, sans-serif;
}
.drawer .drawer__menu .drop-menu .drop__contents--b .contents__title .sub-title {
  font-size: 1.4rem;
}
.drawer .drawer__menu .drop-menu .drop__contents--b .contents__text {
  width: 45rem;
  font-size: 1.6rem;
  line-height: 2;
}
.drawer .drawer__menu .drop-menu .drop__contents--b .contents__link {
  width: 16.5rem;
  height: 5rem;
}
.drawer .drawer__menu .drop-menu .drop__contents--b .contents__link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #81A0A0;
  border: solid 1px #81A0A0;
  border-radius: 1rem;
  font-size: 1.6rem;
  -moz-column-gap: 0.45rem;
       column-gap: 0.45rem;
  padding: 0;
}
.drawer .drawer__menu .drop-menu .drop__contents--b .contents__link a .icon {
  width: 1.2em;
  height: auto;
}
.drawer .drawer__menu .drop-menu .drop__contents--b .contents__link a::after {
  display: none;
}
.drawer .drawer__menu .drop-menu .drop__contents--b .contents__link a:hover {
  opacity: 0.7;
}
.drawer .drawer__menu .drop--a {
  height: 100%;
}
.drawer .menu01:hover .drop01 {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.drawer .menu01:focus-within .drop01 {
  visibility: visible;
  opacity: 1;
}
.drawer .menu02:hover .drop02 {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.drawer .menu02:focus-within .drop02 {
  visibility: visible;
  opacity: 1;
}
.drawer .menu03:hover .drop03 {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.drawer .menu03:focus-within .drop03 {
  visibility: visible;
  opacity: 1;
}
.drawer .menu04:hover .drop04 {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.drawer .menu04:focus-within .drop04 {
  visibility: visible;
  opacity: 1;
}/*# sourceMappingURL=style.css.map */