@charset "UTF-8";
.font-min {
  font-family: "Noto Serif JP", serif;
}
.font-min:lang(zh-cmn-Hans), .font-min:lang(zh-cmn-Hant) {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
  word-wrap: break-word;
}

html {
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 3.8vw;
  }
}

body {
  font-family: "Noto Sans JP", YuGothicM, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Noto Sans SC", sans-serif;
  -webkit-text-size-adjust: 100%;
}

main {
  overflow-x: hidden;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

video {
  max-width: 100%;
}

a {
  color: #191919;
  text-decoration: none;
  transition: opacity 0.3s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
  text-decoration: none;
}
a:active {
  opacity: 0.8;
}

button {
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 1rem;
}

input[type=text], input[type=password], input[type=tel], input[type=email], textarea {
  font-family: inherit;
  font-size: 1rem;
}

select {
  font-family: inherit;
}

.only-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
}

.only-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .only-sp {
    display: block;
  }
}

img.only-pc, span.only-pc {
  display: inline;
}
@media screen and (max-width: 768px) {
  img.only-pc, span.only-pc {
    display: none;
  }
}
img.only-sp, span.only-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  img.only-sp, span.only-sp {
    display: inline;
  }
}

table.only-pc {
  display: table;
}
@media screen and (max-width: 768px) {
  table.only-pc {
    display: none;
  }
}
table.only-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  table.only-sp {
    display: table;
  }
}

.js-tel {
  color: #000 !important;
  text-decoration: none;
  cursor: default;
}

/* ====================================================================================================
   共通パーツ
==================================================================================================== */
.no-scroll {
  overflow: hidden;
}

.inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 3.90625%;
  }
}

.ico-access,
.ico-brochures {
  margin-top: auto;
  margin-bottom: auto;
}
.ico-access:before,
.ico-brochures:before {
  width: 1em;
  height: 1em;
}

.ico-access::before {
  background-image: url("../img/common/ico_access.svg");
  width: 1em;
  height: auto;
  aspect-ratio: 57/50;
}

.ico-access-bk::before {
  background-image: url("../img/common/ico_access_bk.svg");
  width: 1.2em;
  height: auto;
  aspect-ratio: 57/50;
}

.ico-brochures::before {
  background-image: url("../img/common/ico_brochures.svg");
  width: 1.1em;
  height: auto;
  aspect-ratio: 10/7;
}

.pagetop {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  width: min(70px, 16vw);
}

@keyframes slideIn {
  from {
    translate: 100% 0;
  }
  to {
    translate: 0 0;
  }
}
@media screen and (max-width: 768px) {
  .mainttl-sec {
    margin-block: 1px 8%;
    padding-block: 2em;
    border-top: 1px solid #646464;
    border-bottom: 1px solid #646464;
  }
}
.mainttl-sec .mainttl-in {
  margin-bottom: 4em;
  padding-block: 4em 2em;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .mainttl-sec .mainttl-in {
    margin-bottom: 0;
    padding-block: 0;
    border-bottom: none;
  }
}
.mainttl-sec .mainttl-ttl {
  margin-bottom: 10px;
  font-size: 3.3333333333rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .mainttl-sec .mainttl-ttl {
    margin-bottom: 0.5em;
    font-size: 1.875rem;
    text-align: center;
  }
}
.mainttl-sec .mainttl-ttl:first-letter {
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  .mainttl-sec .mainttl-ttl:first-letter {
    font-size: 3.5rem;
  }
}
.mainttl-sec .mainttl-heading {
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .mainttl-sec .mainttl-heading {
    font-size: 1.5625rem;
    text-align: center;
  }
}

small {
  font-size: 0.75rem;
  font-weight: 300;
}

/* ====================================================================================================
   ヘッダー
==================================================================================================== */
.header {
  display: grid;
  align-items: center;
  position: sticky;
  top: -20px;
  height: 110px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 9998;
}
@media screen and (max-width: 768px) {
  .header {
    top: 0px;
    height: auto;
  }
}
.header .header-main {
  display: grid;
  position: sticky;
  top: 0;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .header .header-main {
    height: auto;
  }
}
.header .header-main::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  border-bottom-right-radius: 100%;
  background-color: #e41b1b;
  width: min(68px, 14vw);
  height: auto;
  aspect-ratio: 1;
  z-index: -1;
}
.header .header-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  width: 100%;
  padding: 8px 20px;
}
@media screen and (max-width: 1140px) {
  .header .header-in {
    justify-content: unset;
    gap: 1.5em;
  }
}
@media screen and (max-width: 768px) {
  .header .header-in {
    min-height: 66px;
    padding: 1em 20px;
  }
}
.header .header-logo {
  width: clamp(96px, 28vw, 220px);
  justify-content: unset;
}
.header .header-logo.fixed {
  width: min(145px, 28vw);
}
@media screen and (max-width: 768px) {
  .header .header-logo.fixed {
    width: clamp(96px, 28vw, 220px);
  }
}
.header .header-con {
  height: 100%;
}
@media screen and (max-width: 1140px) {
  .header .header-con {
    order: 3;
  }
}
.header .header-nav {
  height: 100%;
}
.header .header-nav .gnav {
  display: none;
}
@media screen and (max-width: 1140px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-snav {
  height: 100%;
}
.header .header-snav .header-snav-ul {
  display: flex;
  gap: 3em;
  height: 100%;
}
.header .header-snav .header-snav-ul > li.mega-label::before {
  content: "";
  position: absolute;
  top: 80%;
  width: 70px;
  height: 40px;
  visibility: hidden;
}
.header .header-snav .header-snav-ul > li.mega-label > a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  top: calc(100% - 4px);
  translate: -50% 0;
  border-right: 15px solid #deeef6;
  border-bottom: 15px solid transparent;
  border-top: 15px solid transparent;
  rotate: 90deg;
  opacity: 0;
}
.header .header-snav .header-snav-ul > li.mega-label.fixed > a::before {
  top: calc(100% - 14px);
}
@media (any-hover: hover) {
  .header .header-snav .header-snav-ul > li.mega-label:hover::before {
    visibility: visible;
  }
  .header .header-snav .header-snav-ul > li.mega-label:hover::after {
    opacity: 1;
  }
  .header .header-snav .header-snav-ul > li.mega-label:hover > a::before {
    opacity: 1;
  }
  .header .header-snav .header-snav-ul > li.mega-label:hover > .mega-wrap {
    max-height: 9999px;
  }
}
.header .header-snav .header-snav-ul > li > a {
  position: relative;
  display: grid;
  place-content: center;
  height: 100%;
  color: #191919;
  font-size: 1.125rem;
  font-weight: bold;
  padding-bottom: 0.3em;
}
.header .header-snav .header-snav-ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1em;
  width: 100%;
  height: 4px;
  background: #e41b1b;
  scale: 0 1;
  transform-origin: left top;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .header .header-snav .header-snav-ul > li > a:hover::after {
    scale: 1 1;
  }
}
.header .header-snav .header-snav-ul > li > a.current::after {
  scale: 1 1;
}
.header .header-snav .header-snav-ul > li > a:has(+ .mega-wrap .current)::after {
  scale: 1 1;
}
.header .header-snav .header-snav-ul .mega-wrap {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100vw;
  max-height: 0;
  background: #deeef6;
  z-index: 999;
}
.header .header-snav .header-snav-ul .mega-wrap.fixed {
  top: 100%;
}
.header .header-snav .header-snav-ul .mega-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8em;
  max-width: 1040px;
  padding: 3em 1em 0.5em;
  margin: 0 auto 2em;
}
.header .header-snav .header-snav-ul .mega-inner li {
  flex: 1;
}
.header .header-snav .header-snav-ul .mega-inner a.current h4 {
  color: #406c8c;
}
.header .header-snav .header-snav-ul .mega-inner a.current span {
  color: #406c8c;
}
.header .header-snav .header-snav-ul .mega-close {
  text-align: center;
  margin-bottom: 4em;
}
.header .header-snav .header-snav-ul .mega-close a {
  display: block;
  width: min(244px, 30vw);
  color: #ffffff;
  font-size: 1.0625rem;
  text-transform: uppercase;
  background: #406c8c;
  border-radius: 50vw;
  padding: 1em;
  margin: auto;
}
.header .header-snav .header-snav-ul .mega-img-area {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1em;
}
.header .header-snav .header-snav-ul .mega-txt-area h4 {
  line-height: 1.3;
  margin-bottom: 1em;
}
.header .header-snav .header-snav-ul .mega-txt-area span {
  font-size: 0.875rem;
  line-height: 1.6;
}
.header .header-sub-con {
  width: min(260px, 20vw);
}
.header .header-sub-con:lang(zh-cmn-Hans) {
  width: min(360px, 30vw);
}
.header .header-sub-con:lang(vi), .header .header-sub-con:lang(fr) {
  width: min(270px, 30vw);
}
@media screen and (max-width: 1140px) {
  .header .header-sub-con {
    order: 2;
    width: min(67px, 20vw);
    margin-left: auto;
  }
}
.header .header-sub-con.fixed {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 2em;
}
.header .header-sub-con.fixed .header-sub-con-upper {
  margin-bottom: 0;
}
.header .header-sub-con.fixed .header-sns-box {
  position: relative;
  border-left: 1px solid;
  border-right: 1px solid;
  cursor: pointer;
  padding: 0.5em 2em;
}
.header .header-sub-con.fixed .header-sns-ttl {
  display: block;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .header .header-sub-con.fixed .header-sns-ttl:hover {
    opacity: 0.7;
  }
}
.header .header-sub-con.fixed .header-sns-wrap {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  width: min(280px, 80vw);
  justify-content: center;
  height: auto;
  border: none;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 0px 15px 0px #dfdfdf;
  z-index: 10;
  padding: 1.5em;
}
.header .header-sub-con.fixed .header-sns-wrap::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: 88%;
  right: 40px;
  border-right: 15px solid white;
  border-bottom: 15px solid transparent;
  border-top: 15px solid transparent;
  rotate: 90deg;
}
.header .header-sub-con.fixed .header-sub-con-under {
  justify-content: center;
  align-items: center;
  gap: 2em;
}
.header .header-sub-con.fixed .header-sub-con-under .ico::before {
  width: 1.5em;
  margin: 0;
}
.header .header-sub-con.fixed .header-sub-con-under span {
  display: none;
}
.header .header-sub-con.fixed a {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .header .header-sub-con.fixed a:hover {
    opacity: 0.7;
  }
}
.header .header-sub-con.fixed a::after {
  display: none;
}
.header .header-sub-con-upper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2em;
  margin-bottom: 1em;
}
@media screen and (max-width: 1140px) {
  .header .header-sub-con-upper {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1140px) {
  .header .header-sns-box {
    display: none;
  }
}
.header .header-sns-ttl {
  display: none;
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
}
.header .header-sns-wrap {
  display: flex;
  align-items: center;
  gap: 1em;
  flex: 1;
  padding-right: 2em;
  border-right: 1px solid;
}
.header .header-sns-wrap li:lang(zh-cmn-Hans) {
  width: 30px;
}
.header .header-sns-wrap a {
  display: block;
}
.header .header-language {
  width: min(26px, 8vw);
  aspect-ratio: 1;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1140px) {
  .header .header-language {
    width: min(70px, 5.5vw);
  }
}
@media screen and (max-width: 768px) {
  .header .header-language {
    width: min(70px, 10vw);
  }
}
.header .header-language img {
  width: 100%;
}
@media (any-hover: hover) {
  .header .header-language:hover {
    opacity: 0.7;
  }
}
.header .header-language:active {
  opacity: 0.7;
}
.header .header-sub-con-under {
  display: flex;
  justify-content: space-between;
}
.header .header-sub-con-under:not(:lang(en)) {
  justify-content: flex-end;
  gap: 2em;
}
@media screen and (max-width: 1140px) {
  .header .header-sub-con-under {
    display: none;
  }
}
.header .header-sub-con-under a {
  position: relative;
  font-size: clamp(0.813rem, 0.646rem + 0.35vw, 1.063rem);
  font-weight: 500;
  text-transform: uppercase;
}
.header .header-sub-con-under a:lang(vi) {
  font-size: 0.875rem;
}
.header .header-sub-con-under a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  scale: 0 1;
  transform-origin: left top;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .header .header-sub-con-under a:hover::after {
    scale: 1 1;
  }
}
.header .header-sub-con-under a.current::after {
  scale: 1 1;
}
.header .header-sub-con-under .ico::before {
  margin-right: 0.5em;
}
.header .header-sub-con-under .ico-brochures::before {
  filter: invert(1) brightness(0);
}
.header .header-txt {
  font-size: 1.375rem;
  font-weight: 100;
}
@media screen and (max-width: 1140px) {
  .header .header-txt {
    display: none;
  }
}
.header .gnav {
  margin: 0 70px 0 55px;
}
@media screen and (max-width: 1340px) {
  .header .gnav {
    margin: 0 30px;
  }
}
@media screen and (max-width: 1140px) {
  .header .gnav {
    display: none;
  }
}
.header .gnav ul {
  display: flex;
  align-items: center;
  font-size: 1.375rem;
  font-weight: 700;
}
.header .gnav ul li {
  position: relative;
  margin-right: 75px;
}
@media screen and (max-width: 1340px) {
  .header .gnav ul li {
    margin-right: 45px;
  }
}
.header .gnav ul li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 78px;
  margin-top: -30px;
  margin-right: -80px;
  background: url("../img/common/bg_gnav.svg") no-repeat right top;
}
@media screen and (max-width: 1340px) {
  .header .gnav ul li::before {
    margin-right: -65px;
  }
}
.header .gnav ul li:last-child {
  margin-right: 0;
}
.header .gnav ul li:last-child::before {
  display: none;
}
.header .gnav ul li a {
  color: #000;
}
.header .header-menu {
  display: none;
  position: relative;
  cursor: pointer;
  margin-left: 120px;
}
@media screen and (max-width: 1140px) {
  .header .header-menu {
    display: grid;
    place-content: center;
    height: 100%;
    margin-left: 0;
  }
}
.header .header-menu p {
  position: relative;
  width: min(100px, 10vw);
  height: min(50px, 5vw);
}
@media screen and (max-width: 768px) {
  .header .header-menu p {
    width: min(100px, 12vw);
    height: min(60px, 7vw);
  }
}
.header .header-menu span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #44444b;
  transition: all 0.4s;
}
.header .header-menu span:nth-of-type(1) {
  top: 0;
}
.header .header-menu span:nth-of-type(2) {
  top: 50%;
  margin-top: -1px;
}
.header .header-menu span:nth-of-type(3) {
  bottom: 0;
}

.js-menuopen .header-main {
  background: #ffffff;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

.nav-language {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100dvw;
  background: rgba(255, 255, 255, 0.95);
  padding: 2em 3em 4em;
}
@media screen and (max-width: 768px) {
  .nav-language {
    padding: 1em 1em 6em 2em;
  }
}
.nav-language .nav-language-close {
  text-align: right;
}
.nav-language .nav-language-close .ico-langclose {
  cursor: pointer;
}
.nav-language .nav-language-close .ico-langclose::before {
  width: 40px;
  height: 40px;
  background-image: url("../img/common/ico_close03.svg");
}
@media screen and (max-width: 768px) {
  .nav-language .nav-language-close .ico-langclose::before {
    width: 2em;
    height: 2em;
  }
}
.nav-language .nav-language-con {
  display: flex;
  justify-content: center;
  gap: 2em;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .nav-language .nav-language-con {
    justify-content: flex-start;
    gap: 1.5em;
    padding-top: 2em;
  }
}
.nav-language .nav-language-con .nav-language-ico {
  width: min(34px, 7vw);
}
.nav-language .nav-language-con ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1em;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .nav-language .nav-language-con ul {
    grid-template-columns: auto;
  }
}
.nav-language .nav-language-con li {
  border-left: 1px solid #e41b1b;
  padding: 0 1em 1.5em 1em;
}
.nav-language .nav-language-con li:nth-child(n+7) {
  padding: 0 1em;
}
@media screen and (max-width: 768px) {
  .nav-language .nav-language-con li {
    padding: 0 0 2em 1.2em;
  }
  .nav-language .nav-language-con li:nth-child(n+7) {
    padding: 0 0 2em 1.2em;
  }
  .nav-language .nav-language-con li:last-child {
    padding: 0 0 0.3em 1.2em;
  }
}
.nav-language .nav-language-con a {
  position: relative;
  display: inline-block;
  color: #191919;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .nav-language .nav-language-con a {
    font-size: 1.1875rem;
  }
}
.nav-language .nav-language-con a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: #191919;
  scale: 0 1;
  transform-origin: left top;
  transition: scale 0.3s ease;
}
@media (any-hover: hover) {
  .nav-language .nav-language-con a:hover::after {
    scale: 1 1;
  }
}
.nav-language .nav-language-con a:active::after {
  scale: 1 1;
}
.nav-language .nav-language-con a.is-current {
  pointer-events: none;
}
.nav-language .nav-language-con a.is-current::after {
  scale: 1 1;
}

/* ====================================================================================================
   SPメニュー
==================================================================================================== */
.nav-menu {
  display: none;
  z-index: 9997;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  translate: 100% 0;
  transition: all 0.6s;
  overflow: hidden;
}
@media screen and (max-width: 1140px) {
  .nav-menu {
    display: block;
    top: min(110px, 20vw);
  }
}
.nav-menu .nav-menu-content {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  padding-block: 0.5em min(50px, 8vw);
}
.nav-menu .nav-menu-list {
  margin-bottom: 2em;
}
.nav-menu .nav-menu-list li {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  border-bottom: 1px solid #44444b;
}
.nav-menu .nav-menu-list li:first-child {
  border-top: 1px solid #44444b;
}
.nav-menu .nav-menu-list li.container-li {
  display: block;
  background: none;
}
.nav-menu .nav-menu-list li.container-li > span {
  position: relative;
  display: block;
}
.nav-menu .nav-menu-list li.container-li > span::before, .nav-menu .nav-menu-list li.container-li > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8em;
  width: 1em;
  height: 1px;
  background: #191919;
  z-index: 1;
}
.nav-menu .nav-menu-list li.container-li > span::after {
  rotate: 90deg;
  transform-origin: center;
  transition: rotate 0.3s ease;
}
.nav-menu .nav-menu-list li.container-li > span:has(+ ul .current) a {
  color: #406c8c;
  background: #F3F6FD;
}
.nav-menu .nav-menu-list li.container-li ul {
  display: none;
  background: #deeef6;
}
.nav-menu .nav-menu-list li.container-li.active-toggle .nav-menu-sub {
  border-top: 1px solid #ffffff;
}
.nav-menu .nav-menu-list li.container-li .nav-menu-sub {
  border-bottom: unset;
  translate: 100% 0;
}
.nav-menu .nav-menu-list li.container-li .nav-menu-sub a {
  align-items: stretch;
  gap: 0.8em;
  padding: 1em 2.5em 1em 1.5em;
  transition: 0.3s ease;
}
.nav-menu .nav-menu-list li.container-li .nav-menu-sub a::after {
  border-top-color: #406c8c;
  border-right-color: #406c8c;
}
@media (any-hover: hover) {
  .nav-menu .nav-menu-list li.container-li .nav-menu-sub a:hover {
    color: #406c8c;
  }
}
.nav-menu .nav-menu-list li.container-li .nav-menu-sub a:active {
  color: #406c8c;
}
.nav-menu .nav-menu-list li.container-li .nav-menu-sub .nav-menu-sub-img-area {
  width: min(180px, 29%);
}
.nav-menu .nav-menu-list li.container-li .nav-menu-sub .nav-menu-sub-img-area figure {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 6px;
  overflow: hidden;
}
.nav-menu .nav-menu-list li.container-li .nav-menu-sub .nav-menu-sub-img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nav-menu .nav-menu-list li.container-li .nav-menu-sub .nav-menu-sub-txt-area {
  flex: 1;
}
.nav-menu .nav-menu-list li.container-li .nav-menu-sub .nav-menu-sub-txt-area h4 {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.4em;
}
.nav-menu .nav-menu-list li.container-li .nav-menu-sub .nav-menu-sub-txt-area span {
  display: block;
  font-size: 0.7719298246rem;
  line-height: 1.3;
}
.nav-menu .nav-menu-list li.container-li.active-toggle > span::after {
  rotate: 0deg;
}
.nav-menu .nav-menu-list li.container-li.active-toggle .nav-menu-sub {
  animation: slideIn 0.3s ease-out forwards;
}
.nav-menu .nav-menu-list li.container-li.active-toggle .nav-menu-sub:nth-child(2) {
  animation-delay: 0.1s;
}
.nav-menu .nav-menu-list li.container-li.active-toggle .nav-menu-sub:nth-child(3) {
  animation-delay: 0.15s;
}
.nav-menu .nav-menu-list li.container-li.active-toggle .nav-menu-sub:nth-child(4) {
  animation-delay: 0.2s;
}
.nav-menu .nav-menu-list li a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.25rem;
  font-weight: bold;
  color: #191919;
  letter-spacing: 0.05em;
  padding: 1.5em;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .nav-menu .nav-menu-list li a {
    gap: 1em;
    font-size: 1.2631578947rem;
    font-weight: 500;
    padding: 0.95em 1.2em;
  }
}
@media (any-hover: hover) {
  .nav-menu .nav-menu-list li a:hover {
    color: #646464;
    background: #F3F6FD;
  }
}
.nav-menu .nav-menu-list li a:active {
  color: #646464;
  background: #F3F6FD;
}
.nav-menu .nav-menu-list li a.current {
  color: #406c8c;
  background: #F3F6FD;
}
.nav-menu .nav-menu-list li a:not(.articles)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  border: 0;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  display: inline-block;
  width: min(15px, 2.5vw);
  height: min(15px, 2.5vw);
  transform: translateY(-50%) rotate(45deg);
  transition: translate 0.3s ease;
}
@media (any-hover: hover) {
  .nav-menu .nav-menu-list li a:not(.articles):hover::after {
    translate: 3px;
  }
}
.nav-menu .nav-menu-list li a:not(.articles):active::after {
  translate: 3px;
}
.nav-menu .nav-menu-list li a.nav-ico::before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 2em;
  background: no-repeat center/contain;
}
.nav-menu .nav-menu-list li a.nav-ico.about::before {
  background-image: url("../img/common/ico_about.svg");
}
.nav-menu .nav-menu-list li a.nav-ico.things::before {
  background-image: url("../img/common/ico_things.svg");
}
.nav-menu .nav-menu-list li a.nav-ico.articles::before {
  background-image: url("../img/common/ico_articles.svg");
  width: 1.2em;
}
.nav-menu .nav-menu-list li a.nav-ico.plans::before {
  background-image: url("../img/common/ico_plans.svg");
}
.nav-menu .nav-menu-list li a.nav-ico.access::before {
  background-image: url("../img/common/ico_access_bk.svg");
}
.nav-menu .nav-menu-list li a.nav-ico.brochures::before {
  background-image: url("../img/common/ico_brochures.svg");
  filter: invert(1) brightness(0);
}
.nav-menu .nav-menu-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .nav-menu .nav-menu-sns {
    gap: 1.5em;
  }
}
.nav-menu .nav-menu-sns li {
  width: min(53px, 10.5vw);
  aspect-ratio: 1;
}
.nav-menu .nav-menu-sns img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.nav-menu .nav-menu-bnr {
  text-align: center;
  padding: 1em 1em 8em;
}

.js-menuopen {
  overflow: hidden;
}
.js-menuopen .header-menu span:nth-child(1) {
  top: 50%;
  rotate: -25deg;
}
.js-menuopen .header-menu span:nth-child(2) {
  opacity: 0;
}
.js-menuopen .header-menu span:nth-child(3) {
  top: 50%;
  rotate: 25deg;
}
.js-menuopen .nav-menu {
  translate: 0;
}

/* ====================================================================================================
   バナー
==================================================================================================== */
.banner-sec {
  padding: 130px 0;
  background-color: #000028;
}
@media screen and (max-width: 768px) {
  .banner-sec {
    padding: 10.4166666667% 0;
  }
}
.banner-sec .banner-slider.slick-dotted {
  max-width: min(1000px, 84%);
  margin: 0 auto;
}
@media screen and (max-width: 1140px) {
  .banner-sec .banner-slider.slick-dotted {
    max-width: 800px;
  }
}
@media screen and (max-width: 1040px) {
  .banner-sec .banner-slider.slick-dotted {
    max-width: 560px;
  }
}
@media screen and (max-width: 768px) {
  .banner-sec .banner-slider.slick-dotted {
    width: 69.5652173913%;
    margin: 0 auto;
  }
}
.banner-sec .slick-slide {
  height: auto;
  aspect-ratio: 5/2;
  margin: 0 10px;
}
.banner-sec .slide-btn {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  cursor: pointer;
}
.banner-sec .slide-btn.slide-prev {
  left: 0;
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .banner-sec .slide-btn.slide-prev {
    width: 10.8695652174%;
    margin-left: 4.347826087%;
  }
}
.banner-sec .slide-btn.slide-next {
  right: 0;
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  .banner-sec .slide-btn.slide-next {
    width: 10.8695652174%;
    margin-right: 4.347826087%;
  }
}

/* ====================================================================================================
   フッター
==================================================================================================== */
.footer {
  position: relative;
  color: #fff;
}
.footer figure img {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .footer figure img {
    max-height: 736px;
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.footer a {
  color: #fff;
}
@media (any-hover: hover) {
  .footer a:hover {
    text-decoration: underline;
  }
}
.footer a:active {
  text-decoration: underline;
}
.footer .footer-in {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .footer .footer-in {
    padding: 0 3.90625%;
  }
}
.footer .footer-sns {
  margin-bottom: 1em;
  padding-bottom: 1.2em;
  border-bottom: 1px solid #fff;
}
.footer .footer-sns:lang(zh-cmn-Hans) {
  padding-right: 1em;
}
@media screen and (max-width: 768px) {
  .footer .footer-sns {
    border: none;
    padding-bottom: 0;
  }
}
.footer .footer-sns ul {
  display: flex;
  align-items: center;
  gap: 2em;
}
@media screen and (max-width: 1040px) {
  .footer .footer-sns ul {
    gap: 1em;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-sns ul {
    justify-content: center;
  }
}
.footer .footer-sns ul li {
  width: min(53px, 4.5vw);
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .footer .footer-sns ul li {
    width: min(53px, 8.5vw);
  }
}
.footer .footer-sns ul li a {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}
.footer .footer-sns ul li img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.footer .footer-bnr {
  width: min(236px, 64dvw);
}
.footer .footer-bnr.only-sp {
  margin: 0 auto 2em;
}
@media screen and (max-width: 1140px) {
  .footer .footer-nav02 {
    padding-right: 20px;
  }
}
.footer .footer-nav02 ul {
  display: flex;
  align-items: center;
  gap: 2em;
}
.footer .footer-nav02 ul a {
  font-size: 0.8125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-underline-offset: 5px;
}
.footer .footer-nav02 ul a.current {
  text-decoration: underline;
}
.footer .footer-nav02 ul .ico {
  margin-right: 10px;
}
.footer .footer-nav02 ul .ico::before {
  vertical-align: sub;
}
.footer .footer-nav02 ul .ico-access::before {
  width: 25px;
  height: 22px;
  background-image: url("../img/common/ico_access.svg");
}
@media screen and (max-width: 768px) {
  .footer .footer-nav02 ul .ico-access::before {
    width: 1.40625rem;
    height: 1.25rem;
  }
}
.footer .footer-nav02 ul .ico-brochures::before {
  width: 20px;
  height: 14px;
  background-image: url("../img/common/ico_brochures.svg");
}
@media screen and (max-width: 768px) {
  .footer .footer-nav02 ul .ico-brochures::before {
    width: 1.15625rem;
    height: 0.8125rem;
  }
}
.footer .footer-nav02 ul .ico-plane::before {
  width: 24px;
  height: 20px;
  background-image: url("../img/common/ico_plane.svg");
}
@media screen and (max-width: 768px) {
  .footer .footer-nav02 ul .ico-plane::before {
    width: 1.09375rem;
    height: 1.03125rem;
  }
}
.footer .footer-main {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin-top: 100px;
}
@media screen and (max-width: 1140px) {
  .footer .footer-main {
    margin-top: 3%;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-main {
    width: calc(100% - 5.6em);
    margin-top: 7.2463768116%;
  }
}
.footer .footer-main .footer-logo {
  width: min(364px, 28vw);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .footer .footer-main .footer-logo {
    width: min(427px, 57vw);
    margin-bottom: 2.6em;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-main .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 1.5em 1em;
  }
  .footer .footer-main .footer-nav a {
    font-size: 0.9122807018rem;
    font-weight: 400;
    line-height: 1.3;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
  }
  .footer .footer-main .footer-nav a.current {
    text-decoration: underline;
  }
}
.footer .footer-con {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  margin-top: 100px;
}
@media screen and (max-width: 1140px) {
  .footer .footer-con {
    margin-top: 15vw;
  }
  .footer .footer-con:not(:lang(en)) {
    margin-top: 20vw;
  }
}
.footer .footer-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding-block: 0.8em;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .footer .footer-box {
    padding: 6.6666666667% 0 3.3333333333%;
  }
}
.footer .footer-box .footer-in {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-in {
    display: block;
  }
}
.footer .footer-box .copy {
  font-size: 0.8125rem;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .footer .footer-box .copy {
    text-align: center;
  }
}

/* ====================================================================================================
   多言語別レイアウト
==================================================================================================== */
.opacity {
  transition: all 0.6s;
}
.opacity:hover {
  opacity: 0.7;
}

.ico::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}

.only_pc-tab {
  display: block;
}
@media screen and (max-width: 960px) {
  .only_pc-tab {
    display: none;
  }
}

.only-tab {
  display: none;
}
@media screen and (max-width: 960px) {
  .only-tab {
    display: block;
  }
}

.font-min {
  font-family: "Noto Serif JP", serif;
}
.font-min:lang(zh-cmn-Hans), .font-min:lang(zh-cmn-Hant) {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Noto Serif JP", serif;
}

/* ====================================================================================================
   Plans
==================================================================================================== */
#plan .cn-dc-overwrite .rootcontents-ttl::before {
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}
#plan .modelcourse-con .slick-track {
  display: flex;
}
#plan .modelcourse-con .slick-slide {
  height: auto !important;
}
#plan .modelcourse-con .slick-slide div {
  height: 100%;
}
#plan .modelcourse-con .slick-slide li {
  height: 100%;
  display: flex !important;
  flex-direction: column;
}
#plan .modelcourse-con .slick-slide .list-link {
  margin-top: auto;
  align-items: end;
  display: grid;
}
#plan .modelcourse-con .slick-slide .list-link a {
  background-size: min(32px, 1em) auto;
  padding: 1em 1.8em;
}

.clearfix {
  zoom: 1;
}
.clearfix::before {
  content: "";
  display: table;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.w100 {
  width: 100%;
}

.js-anime-fadein {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-fadein.js-anime-on {
  animation-name: fadeIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-anime-slide {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-slide.js-anime-on {
  animation-name: slide;
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-anime-slideleft {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-slideleft.js-anime-on {
  animation-name: slideLeft;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.js-anime-slideright {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-slideright.js-anime-on {
  animation-name: slideRight;
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */