@charset "UTF-8";

html {
  color: #000000;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP",
    sans-serif;
  font-weight: 400;
  word-break: break-all;
  font-size: 1.5rem;
  line-height: 1.7;
  padding-top: 95px;
}

img {
  width: 100%;
}

li {
  list-style: none;
}

/* ヘッダーメニュー */
.nav-wrap_sp {
  display: none;
}

.nav-wrap_pc {
  display: block;
  max-width: 1300px;
  margin: 0 auto;
}

header {
  padding: 30px 20px;
  position: fixed;
  background-color: #fff;
  margin: auto;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  height: 95px;
}

.navi-wrap {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.logo {
  width: 160px;
}

.navi-menu {
  display: flex;
  margin: 0 0 0 auto;
}

.navi-list {
  height: 44px;
  position: relative;
  transition: all 0.3s;
  padding: 1em;
}

.submenu {
  padding-right: 2em;
  position: relative;
}

.submenu::after {
  font-family: "Material Icons Outlined";
  font-size: 2.2rem;
  content: "\e5c5";
  display: block;
  position: absolute;
  top: 5px;
  right: 0.2em;
}

.navi-list a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #000;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.navi-list a:hover {
  color: #6392bc;
}

.navi-submenu {
  display: none;
  /*デフォルトでは非表示の状態にしておく*/
  width: 180px;
  padding: 10px 15px;
  position: absolute;
  top: 40px;
  left: -20px;
  background-color: #fff;
  z-index: 999;
}

.navi-submenu_child,
.submenu_child01,
.submenu_child02 {
  display: none;
  /*デフォルトでは非表示の状態にしておく*/
  width: 180px;
  padding: 10px 15px;
  position: absolute;
  top: 40px;
  left: -20px;
}

.submenu:hover .navi-submenu {
  display: block;
  /*Gナビメニューにホバーしたら表示*/
  box-shadow: 4px 2px 18px -12px #5d5b5b;
}

.navi-submenu_child01:hover .submenu_child01,
.navi-submenu_child02:hover .submenu_child02 {
  display: block;
  /*Gナビメニューにホバーしたら表示*/
  box-shadow: 4px 2px 18px -12px #5d5b5b;
  background-color: #fff;
  margin: -40px 0 0 150px;
  opacity: 1;
  z-index: 5;
}

.navi-submenu li {
  height: 40px;
  transition: all 0.3s;
  position: relative;
}

.navi-submenu li a::before {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}

.navi-submenu .arrow::after {
  font-family: "Material Icons Outlined";
  font-size: 2.2rem;
  content: "\e5c5";
  transform: rotate(-90deg);
  display: block;
  position: absolute;
  top: 3px;
  right: 0;
}

/* ハンバーガー */

/* Nav items */
.nav-wrap_sp {
  width: 100%;
  position: relative;
}

.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  top: 75px;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04,
      0.04,
      0.12,
      0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
  z-index: 999;
  overflow: auto;
  height: 100vh;
}

/* Hamburger menu button */
.menu-btn:checked~.menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04,
      0.04,
      0.12,
      0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  display: inline-block;
  font-size: 16px;
  transition: 0.5s;
  padding: 15px;
  width: 100%;

  &:hover {
    color: #6392bc;
  }
}

.menu li {
  border-top: 1px solid #000;
  transition: 0.5s;
  background-color: #fff;
}

.menu-btn:checked~.menu a,
.menu-btn:checked~.menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04,
      0.04,
      0.12,
      0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: absolute;
  right: 0;
  cursor: pointer;
  padding: 24px 0;
  z-index: 999;
  -webkit-tap-highlight-color: rgba(0,
      0,
      0,
      0);
}

.navicon {
  background: #000000;
  display: block;
  height: 2px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04,
      0.04,
      0.12,
      0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #000;
  transition: 0.3192s cubic-bezier(0.04,
      0.04,
      0.12,
      0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked~.menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
  top: 0;
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked~.menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04,
      0.04,
      0.12,
      0.96) 0.1008s;
}

/* Hamburger Menu Animation End */

/* Navbar Text */
.navtext {
  position: absolute;
}

/* アコーディオン */
.faq {
  display: none;
}

.question,
.content {
  transform: translateZ(0);
  transition: all 0.3s;
}

.question {
  position: relative;
  display: block;
  padding: 15px;

  &:hover {
    color: #6392bc;
  }
}

.question::after,
.question::before {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 7px);
  width: 2px;
  height: 14px;
  background-color: #b4b4b4;
  transition: all 0.3s;
}

.question::after {
  transform: rotate(-90deg);
}

.content {
  max-height: 0;
  overflow: hidden;

  & a {
    display: block;
    width: 100%;
    padding-left: 50px;
  }

  & .subitem {
    padding-left: 30px;
  }
}

.faq:checked+.question+.content {
  max-height: 500px;
  transition: all 1.5s;
}

.faq:checked+.question::before {
  transform: rotate(-90deg) !important;
}

/* フッター */
footer {
  padding: 0 0 50px 0;
  padding-top: 7%;
  margin-top: 100px;

  & a:hover {
    color: #6392bc;
  }
}

.footer-wave {
  background: url("/img/weve_blue.png") no-repeat 0 0;
  background-size: 100% auto;
}

.f-menu,
.snsicon {
  display: flex;
  flex-wrap: wrap;
  width: 530px;
  margin: 0 auto;
}

.f-menu {
  justify-content: space-between;

  & :first-of-type {
    width: 100%;
    text-align: center;
    margin: 25px 0;
  }

  img {
    max-width: 254px;
  }
}

.snsicon {
  justify-content: center;
  margin: 25px auto;

  & li {
    width: 20px;
    margin: 0 8px;
  }

  & a img:hover {
    filter: invert(100%);
  }
}

#copy {
  color: #043E61;
  text-align: center;
}

/* ヘッダーナビ */

/* アコーディオン */

.detail-tit {
  cursor: pointer;
  position: relative;
  background-color: #dfebf6;
  color: #00375a;
  font-weight: 600;
  padding: 5px 15px;
}

.detail-txt {
  padding: 5px 15px 50px;
  display: none;
}


.detail-tit::before {
  transition: transform 0.2s;
}

.detail-tit::after {
  transform: rotate(-90deg);

}

.detail .open::before {
  transform: rotate(90deg);
}

/* アコーディオン */


/* 共通 */

.title {
  width: 500px;
  position: relative;
  font-size: 3.5rem;
  text-align: center;
  margin: 0 auto;
  font-weight: 600;
  color: #00375a;

  & span {
    display: block;
    padding: 20px 0;
  }
}

.title::before,
.title::after,
.title span::before,
.title span::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 20px;
}

.title::before {
  border-left: solid 3px #00375a;
  border-top: solid 3px #00375a;
  top: 0;
  left: 0;
}

.title::after {
  border-right: solid 3px #00375a;
  border-bottom: solid 3px #00375a;
  bottom: 0;
  right: 0;
}

.title span::after {
  border-left: solid 3px #00375a;
  border-bottom: solid 3px #00375a;
  bottom: 0;
  left: 0;
}

.title span::before {
  border-right: solid 3px #00375a;
  border-top: solid 3px #00375a;
  top: 0;
  right: 0;
}

.white-txt {
  color: #fff;
}

.white-txt::after,
.white-txt::before,
.white-txt span::after,
.white-txt span::before {
  border-color: #fff;
}

.inner {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.wave {
  display: block;
  margin: -1px 0;
}

.moviearea {
  margin-top: 80px;
  font-size: 1.9rem;

  & p {
    margin-bottom: 20px;
  }
}

.top80 {
  margin-top: 80px;
}

.space50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.space40 {
  padding-top: 40px;
}

.center {
  text-align: center;
}

.sp_br {
  display: none;
}

@media screen and (max-width: 920px) {
  body {
    padding-top: 100px;
  }

  header {
    padding: 25px 5%;
    height: 100px;
  }

  .title {
    width: 80%;
    font-size: 2.5rem;
  }

  .nav-wrap_sp {
    display: flex;
    align-items: center;
  }

  .nav-wrap_pc {
    display: none;
  }

  .logo {
    width: 250px;
    display: block;
    margin: 0 auto 0 0;
  }

  .navicon {
    width: 40px;
  }

  .navicon:before {
    top: 13px;
  }

  .navicon:after {
    bottom: 13px;
  }

  .sp_br {
    display: block;
  }

  .top80 {
    margin-top: 40px;
  }


  /* フッター */

  .f-menu,
  .snsicon {
    width: 100%;
  }

  .f-menu {
    justify-content: center;

    & li {
      margin: 3px 10px;
    }
  }

  /* 共通 */
  .inner {
    padding: 0 5%;
  }
}

@media screen and (max-width: 400px) {
  .logo {
    width: 150px;
  }

  .navicon {
    width: 26px;
  }

  .navicon:before {
    top: 8px;
  }

  .navicon:after {
    bottom: 8px;
  }

  body {
    padding-top: 82px;
  }

  header {
    padding: 25px 5%;
    height: 82px;
  }
}