@charset "UTF-8";
/* ------------------------------------------------------------
■ フォント
------------------------------------------------------------ */
/* noto-sans-jp-regular - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v54-japanese-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-500 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-jp-v54-japanese-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-600 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/noto-sans-jp-v54-japanese-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v54-japanese-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v30-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/montserrat-v30-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/montserrat-v30-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-v30-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --color-main: #0C3C76;
  --color-sub: #0B3C76;
}

/* ------------------------------------------------------------
■ 共通
------------------------------------------------------------ */
html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  min-width: 320px;
  font-family: "Noto Sans JP", sans-serif;
  color: #FFFFFF;
  background-color: #242424;
}

body .en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

main {
  background-color: #242424;
  padding-top: clamp(80px, 5.5vw, 100px);
}
@media (max-width: 1023px) {
  main {
    padding-top: 60px;
  }
}

ul {
  list-style: none;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  cursor: pointer;
}

img {
  width: 100%;
  display: block;
}

.u-pc-only {
  display: block;
}

.u-sp-only {
  display: none;
}

@media (max-width: 1023px) {
  .u-pc-only {
    display: none !important;
  }
  .u-sp-only {
    display: block;
  }
}
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.u-ani-line {
  position: relative;
  padding-bottom: 5px;
}
.u-ani-line::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #FFFFFF;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
@media (max-width: 1023px) {
  .u-ani-line::before {
    display: none;
  }
}
.u-ani-line:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* ------------------------------------------------------------
■ header
------------------------------------------------------------ */
header {
  width: 100%;
  height: clamp(80px, 5.5vw, 100px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: rgba(36, 36, 36, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
@media (max-width: 1023px) {
  header {
    height: 60px;
  }
}
header .header__logo {
  width: clamp(160px, 12.5vw, 240px);
  height: clamp(120px, 10vw, 184px);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  border-radius: 0px 0px 70px 0px;
}
@media (max-width: 1023px) {
  header .header__logo {
    width: 84px;
    height: 70px;
    border-radius: 0px 0px 20px 0px;
  }
}
header .header__logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  header .header__logo a {
    justify-content: center;
  }
}
header .header__logo a img {
  width: 73.75%;
  margin-left: 10.83%;
}
@media (max-width: 1023px) {
  header .header__logo a img {
    width: 88%;
    margin-left: 0;
  }
}
header .header__nav {
  display: flex;
  padding-right: clamp(15px, 2vw, 29px);
}
@media (max-width: 1023px) {
  header .header__nav {
    width: 290px;
    width: clamp(1px, 100% - 84px, 400px);
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: 0.5s;
    background-color: #242424;
    padding: 64px 0 59px;
  }
}
header .header__nav .header__nav-list {
  display: flex;
  align-items: center;
  margin-right: clamp(20px, 3vw, 54px);
}
@media (max-width: 1023px) {
  header .header__nav .header__nav-list {
    flex-direction: column;
    margin-right: 0;
  }
}
header .header__nav .header__nav-list .header__nav-item {
  position: relative;
  padding-top: 5px;
}
@media (max-width: 1023px) {
  header .header__nav .header__nav-list .header__nav-item {
    width: 260px;
    position: relative;
    padding: 0 7px 0 3px;
  }
  header .header__nav .header__nav-list .header__nav-item::after {
    content: "";
    width: 100%;
    height: 0.5px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #FFFFFF;
  }
}
header .header__nav .header__nav-list .header__nav-item:not(:first-child) {
  margin-left: clamp(30px, 5vw, 70px);
}
@media (max-width: 1023px) {
  header .header__nav .header__nav-list .header__nav-item:not(:first-child) {
    margin-left: 0;
  }
}
header .header__nav .header__nav-list .header__nav-item a, header .header__nav .header__nav-list .header__nav-item .header__nav-label {
  font-size: clamp(1.4rem, 1.125vw, 1.8rem);
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
}
@media (max-width: 1023px) {
  header .header__nav .header__nav-list .header__nav-item a, header .header__nav .header__nav-list .header__nav-item .header__nav-label {
    width: 100%;
    display: block;
    position: relative;
    line-height: 52px;
  }
}
@media (max-width: 1023px) {
  header .header__nav .header__nav-list .header__nav-item a::before, header .header__nav .header__nav-list .header__nav-item a::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 1px;
    width: 10.4px;
    height: 2px;
    border-radius: 9999px;
    background-color: #FFFFFF;
    transform-origin: calc(100% - 1px) 50%;
  }
  header .header__nav .header__nav-list .header__nav-item a::before {
    transform: rotate(51.35deg);
  }
  header .header__nav .header__nav-list .header__nav-item a::after {
    transform: rotate(-51.35deg);
  }
  header .header__nav .header__nav-list .header__nav-item .header__nav-label::before, header .header__nav .header__nav-list .header__nav-item .header__nav-label::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: -2px;
    width: 14px;
    height: 2px;
    border-radius: 9999px;
    background-color: #FFFFFF;
  }
  header .header__nav .header__nav-list .header__nav-item .header__nav-label::after {
    transform: rotate(90deg);
  }
}
header .header__nav .header__nav-list .header__nav-item--drop-menu {
  position: relative;
}
header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, 10px) scaleY(0);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.1s ease, visibility 0.3s ease;
  padding-top: clamp(20px, 2vw, 26px);
}
@media (max-width: 1023px) {
  header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown {
    width: 100%;
    max-height: 0;
    position: static;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    transform: none;
    transition: max-height 0.5s;
    transform-origin: top;
    padding-top: 0;
  }
  header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown.is-active {
    max-height: 178px;
  }
}
header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list {
  min-width: clamp(140px, 13vw, 200px);
  background-color: #232323;
  padding: clamp(20px, 2vw, 26px) clamp(16px, 1.5vw, 22px);
}
@media (max-width: 1023px) {
  header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list {
    width: 100%;
    min-width: 0;
    padding: 0;
  }
}
header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list::before {
  content: "";
  position: absolute;
  top: clamp(9px, 1.15vw, 15px);
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 12px;
  background-color: #232323;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
@media (max-width: 1023px) {
  header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list::before {
    display: none;
  }
}
header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list .header__dropdown-item {
  position: relative;
}
@media (max-width: 1023px) {
  header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list .header__dropdown-item {
    padding-bottom: 12px;
  }
  header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list .header__dropdown-item:last-child {
    padding-bottom: 16px;
  }
}
header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list .header__dropdown-item .header__dropdown-link {
  width: clamp(140px, 12vw, 182px);
  height: clamp(48px, 5vw, 58px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list .header__dropdown-item .header__dropdown-link {
    width: 250px;
    height: 46px;
    justify-content: left;
    color: #242424;
    background-color: #FFFFFF;
    padding: 0 14px;
  }
  header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list .header__dropdown-item .header__dropdown-link::before, header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list .header__dropdown-item .header__dropdown-link::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 14px;
    width: 8px;
    height: 2px;
    border-radius: 9999px;
    background-color: #242424;
    transform-origin: calc(100% - 1px) 50%;
  }
  header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list .header__dropdown-item .header__dropdown-link::before {
    transform: rotate(51.35deg);
  }
  header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list .header__dropdown-item .header__dropdown-link::after {
    transform: rotate(-51.35deg);
  }
}
header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list .header__dropdown-item .header__dropdown-link .header__dropdown-text {
  font-size: clamp(1.2rem, 1vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  padding: clamp(14px, 1.125vw, 18px) 0;
}
@media (max-width: 1023px) {
  header .header__nav .header__nav-list .header__nav-item--drop-menu .header__dropdown .header__dropdown-list .header__dropdown-item .header__dropdown-link .header__dropdown-text {
    padding: 0;
  }
}
header .header__nav .header__nav-list .header__nav-item--drop-menu:hover .header__dropdown {
  transform: translate(-50%, 0) scaleY(1);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1023px) {
  header .header__nav .header__nav-list .header__nav-item--drop-menu:hover .header__dropdown {
    transform: none;
  }
}
header .header__nav .header__contact-btn {
  width: clamp(140px, 14vw, 210px);
  height: clamp(45px, 4.4vw, 68px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1023px) {
  header .header__nav .header__contact-btn {
    width: 180px;
    height: 54px;
    margin: 38px auto 0;
  }
}
header .header__nav .header__contact-btn .btn_text {
  font-size: clamp(1.2rem, 1.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 1023px) {
  header .header__nav .header__contact-btn .btn_text {
    font-size: 1.4rem;
  }
}
@media (max-width: 1023px) {
  header .header__nav .header__tel-btn {
    width: 180px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: #0C3C76;
    background-color: #FFFFFF;
    margin: 12px auto 0;
  }
}
header .header__hamburger {
  display: none;
}
@media (max-width: 1023px) {
  header .header__hamburger {
    width: 20px;
    height: 16px;
    display: block;
    position: relative;
    margin-right: 18px;
  }
  header .header__hamburger span {
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    left: 0;
    background-color: #FFFFFF;
    transition: all 0.4s;
    border-radius: 4px;
    pointer-events: none;
  }
  header .header__hamburger span:nth-of-type(1) {
    top: 0;
  }
  header .header__hamburger span:nth-of-type(2) {
    top: 50%;
  }
  header .header__hamburger span:nth-of-type(3) {
    width: 70%;
    top: 100%;
  }
}
@media (max-width: 1023px) {
  header.is-active .header__nav {
    transform: translateX(0);
  }
  header.is-active .header__hamburger span:nth-of-type(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  header.is-active .header__hamburger span:nth-of-type(2) {
    transform: scale(0);
  }
  header.is-active .header__hamburger span:nth-of-type(3) {
    width: 100%;
    top: 50%;
    transform: rotate(-45deg);
  }
}

.u-hover-color {
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  overflow: hidden;
}
.u-hover-color .btn_border {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: border-width 0.1s linear;
  pointer-events: none;
}
.u-hover-color:hover .btn_border {
  border-width: 25px;
}
@media (max-width: 1023px) {
  .u-hover-color:hover .btn_border {
    border-width: 0px;
  }
}
.u-hover-color .btn_text {
  display: block;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease-in-out;
}
.u-hover-color--blue {
  background-color: var(--color-sub);
}
.u-hover-color--blue:hover {
  background-color: #FFFFFF;
}
@media (max-width: 1023px) {
  .u-hover-color--blue:hover {
    background-color: var(--color-sub);
  }
}
.u-hover-color--blue .btn_border {
  border: 0 solid #FFFFFF;
}
.u-hover-color--blue .btn_text {
  color: #FFFFFF;
}
.u-hover-color--blue:hover .btn_text {
  color: var(--color-sub);
}
@media (max-width: 1023px) {
  .u-hover-color--blue:hover .btn_text {
    color: #FFFFFF;
  }
}
.u-hover-color--white {
  background-color: #FFFFFF;
}
.u-hover-color--white:hover {
  background-color: var(--color-sub);
}
@media (max-width: 1023px) {
  .u-hover-color--white:hover {
    background-color: #FFFFFF;
  }
}
.u-hover-color--white .btn_border {
  border: 0 solid var(--color-sub);
}
.u-hover-color--white .btn_text {
  color: #242424;
}
.u-hover-color--white:hover .btn_text {
  color: #FFFFFF;
}
@media (max-width: 1023px) {
  .u-hover-color--white:hover .btn_text {
    color: #242424;
  }
}

/* ------------------------------------------------------------
■ footer
------------------------------------------------------------ */
footer {
  width: 100%;
  height: 560px;
  position: relative;
  z-index: 1;
  background-color: #242424;
}
@media (max-width: 1023px) {
  footer {
    height: 720px;
  }
}
footer::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 460px;
  left: 0;
  background-color: #FFFFFF;
}
@media (max-width: 1023px) {
  footer::after {
    width: 94.4%;
    top: 512px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 1024px) {
  footer .footer__inner {
    width: 97.65625%;
    width: clamp(1000px, 97.65625%, 1200px);
    padding-right: 25px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (min-width: 1400px) {
  footer .footer__inner {
    width: clamp(1200px, 100% - 21.5625vw, 1506px);
  }
}
footer .footer__top {
  height: 460px;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 109px;
}
@media (max-width: 1023px) {
  footer .footer__top {
    height: 512px;
    flex-direction: column-reverse;
    padding: 62px 0 40px;
  }
}
@media (max-width: 1023px) {
  footer .footer__top .footer__corporate {
    width: 274px;
    margin: 0 auto;
  }
}
footer .footer__top .footer__corporate .footer__logo {
  width: clamp(300px, 20vw, 410px);
}
@media (max-width: 1023px) {
  footer .footer__top .footer__corporate .footer__logo {
    width: 100%;
  }
}
footer .footer__top .footer__corporate .footer__address {
  width: 433px;
  padding-left: 25px;
}
@media (max-width: 1023px) {
  footer .footer__top .footer__corporate .footer__address {
    width: 100%;
    padding-left: 0;
  }
}
footer .footer__top .footer__corporate .footer__address span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.857;
  letter-spacing: 0.04em;
}
@media (max-width: 1023px) {
  footer .footer__top .footer__corporate .footer__address span {
    font-size: 1.2rem;
    line-height: 1.667;
  }
}
footer .footer__top .footer__nav {
  display: flex;
}
@media (max-width: 1023px) {
  footer .footer__top .footer__nav {
    width: 284px;
    justify-content: space-between;
    margin: 0 auto;
  }
}
footer .footer__top .footer__nav .footer__nav-column {
  display: flex;
}
@media (max-width: 1023px) {
  footer .footer__top .footer__nav .footer__nav-column {
    flex-direction: column;
  }
}
footer .footer__top .footer__nav .footer__nav-column > li {
  position: relative;
}
footer .footer__top .footer__nav .footer__nav-column > li:not(:last-child) {
  margin-right: 100px;
  margin-right: clamp(40px, 7.8125vw - 40px, 100px);
}
@media (max-width: 1023px) {
  footer .footer__top .footer__nav .footer__nav-column > li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 36px;
  }
}
footer .footer__top .footer__nav .footer__nav-column > li a, footer .footer__top .footer__nav .footer__nav-column > li span {
  font-size: 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  white-space: nowrap;
}
footer .footer__top .footer__nav .footer__nav-column > li span {
  cursor: default;
}
footer .footer__top .footer__nav .footer__nav-column > li .footer__service-list {
  width: max-content;
  position: absolute;
  padding-top: 15px;
}
@media (max-width: 1023px) {
  footer .footer__top .footer__nav .footer__nav-column > li .footer__service-list {
    position: static;
    padding-top: 17px;
  }
}
footer .footer__top .footer__nav .footer__nav-column > li .footer__service-list > li {
  position: relative;
  padding-left: 11px;
}
footer .footer__top .footer__nav .footer__nav-column > li .footer__service-list > li::before {
  content: "-";
  position: absolute;
  left: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.571;
  letter-spacing: 0.1em;
}
footer .footer__top .footer__nav .footer__nav-column > li .footer__service-list > li a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.571;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  footer .footer__top .footer__nav .footer__nav-column:not(:last-child) {
    margin-right: clamp(40px, 7.8125vw - 40px, 100px);
  }
}
@media (min-width: 1024px) {
  footer .footer__top .footer__inner {
    padding-right: clamp(50px, 12.5vw - 80px, 240px);
  }
}
@media (min-width: 1024px) and (min-width: 1300px) {
  footer .footer__top .footer__inner {
    padding-left: clamp(50px, 10.78vw - 60px, 207px);
    padding-right: clamp(50px, 12.5vw - 60px, 240px);
  }
}
footer .footer__top .footer__page-top {
  width: 64px;
  height: 64px;
  width: clamp(50px, 4.8vw, 64px);
  height: clamp(50px, 4.8vw, 64px);
  position: absolute;
  bottom: 30px;
  right: 25px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
}
@media (max-width: 1023px) {
  footer .footer__top .footer__page-top {
    display: none;
  }
}
footer .footer__top .footer__page-top .footer__page-top-icon {
  position: relative;
  display: inline-block;
  width: clamp(20px, 1.9vw, 25px);
  height: clamp(11.5px, 1.14vw, 15px);
}
footer .footer__top .footer__page-top .footer__page-top-icon::before, footer .footer__top .footer__page-top .footer__page-top-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: clamp(14.6px, 1vw, 19.2px);
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: 50% 2px;
}
footer .footer__top .footer__page-top .footer__page-top-icon::before {
  transform: rotate(48.8deg);
}
footer .footer__top .footer__page-top .footer__page-top-icon::after {
  transform: rotate(-48.8deg);
}
footer .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
}
@media (max-width: 1023px) {
  footer .footer__bottom {
    flex-direction: column-reverse;
    padding-top: 40px;
  }
}
footer .footer__bottom .footer__copyright {
  font-size: 1.4rem;
  line-height: 1.286;
  letter-spacing: 0.04em;
  padding-left: 25px;
}
@media (max-width: 1023px) {
  footer .footer__bottom .footer__copyright {
    font-size: 1.1rem;
    margin-top: 20px;
    padding-left: 0;
  }
}
footer .footer__bottom .footer__bottom-inner {
  display: flex;
}
@media (max-width: 1023px) {
  footer .footer__bottom .footer__bottom-inner {
    flex-direction: column-reverse;
    align-items: center;
  }
}
footer .footer__bottom .footer__bottom-inner .footer__links {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
@media (max-width: 1023px) {
  footer .footer__bottom .footer__bottom-inner .footer__links {
    margin-right: 0;
    margin-top: 18px;
  }
}
footer .footer__bottom .footer__bottom-inner .footer__links li:not(:last-child) {
  position: relative;
  padding-right: 40px;
}
footer .footer__bottom .footer__bottom-inner .footer__links li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 19px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}
footer .footer__bottom .footer__bottom-inner .footer__links li a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}
footer .footer__bottom .footer__bottom-inner .footer__mark {
  display: flex;
}
footer .footer__bottom .footer__bottom-inner .footer__mark .footer__mark-link {
  width: 56px;
  display: inline-block;
  margin-left: 20px;
}
@media (max-width: 1023px) {
  footer .footer__bottom .footer__bottom-inner .footer__mark .footer__mark-link:first-child {
    margin-left: 0;
  }
}

/* ------------------------------------------------------------
■ ページタイトル 共通部分
------------------------------------------------------------ */
.page-heading {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #242424;
  padding-top: 2.3%;
}
@media (max-width: 1023px) {
  .page-heading {
    padding-top: 0;
  }
}
.page-heading .page-heading__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1023px) {
  .page-heading .page-heading__inner {
    justify-content: flex-end;
  }
}
.page-heading .page-heading__title {
  width: 30%;
  font-size: inherit;
  overflow: visible;
  padding-top: 4.9%;
}
@media (max-width: 1023px) {
  .page-heading .page-heading__title {
    width: 77.6vw;
    height: auto;
    aspect-ratio: 291/94;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding-top: 1%;
  }
}
.page-heading .page-heading__title > span {
  width: max-content;
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 6.25vw;
}
.page-heading .page-heading__title .page-heading__title-en {
  font-size: clamp(3rem, 3vw, 4.4rem);
  line-height: 1.227;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}
@media (max-width: 1023px) {
  .page-heading .page-heading__title .page-heading__title-en {
    font-size: clamp(2.2rem, 4.8875855327vw, 5rem);
  }
}
.page-heading .page-heading__title .page-heading__title-ja {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-top: 16px;
}
@media (max-width: 1023px) {
  .page-heading .page-heading__title .page-heading__title-ja {
    font-size: 1.2rem;
    font-size: clamp(1.2rem, 2.3460410557vw, 2.4rem);
    line-height: 1.417;
    margin-top: 0;
  }
}
.page-heading .page-heading__title::before {
  content: "";
  width: 36vw;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
  background-color: var(--color-main);
  clip-path: polygon(0 0, 100% 0, 65.2% 100%, 0 100%);
}
@media (max-width: 1023px) {
  .page-heading .page-heading__title::before {
    width: 64.5333333333vw;
    height: auto;
    aspect-ratio: 242/120;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  }
}
.page-heading .page-heading__title::after {
  content: "";
  width: 42vw;
  height: 100%;
  position: absolute;
  top: -2.3vw;
  z-index: 0;
  background-color: #37789A;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
}
@media (max-width: 1023px) {
  .page-heading .page-heading__title::after {
    width: 100%;
    height: 100%;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
  }
}
.page-heading .page-heading__imgs {
  width: 70%;
  position: relative;
  right: 0;
}
@media (max-width: 1023px) {
  .page-heading .page-heading__imgs {
    width: 94.1333333333vw;
    height: auto;
    aspect-ratio: 353/158;
    z-index: 0;
  }
}
@media (max-width: 1023px) {
  .page-heading .page-heading__imgs .page-heading__img {
    height: 100%;
    object-fit: cover;
  }
}
.page-heading .page-heading__imgs .page-heading__img--filter {
  position: absolute;
  top: 0;
  left: 0;
}

/* ------------------------------------------------------------
■ お問い合わせsection 共通部分
------------------------------------------------------------ */
.sec_heading span {
  display: block;
}
.sec_heading span.section-heading__en {
  font-size: clamp(1.4rem, 0.94vw, 1.8rem);
  line-height: 1.222;
  letter-spacing: 0.1em;
  color: #BDBFC3;
}
.sec_heading span.section-heading__en--type2 {
  color: #9CB0C7;
}
@media (max-width: 1023px) {
  .sec_heading span.section-heading__en {
    font-size: 3.2vw;
    line-height: 1.25;
    color: #9CB0C7;
  }
}
.sec_heading span.section-heading__ja {
  font-size: clamp(3rem, 2.8vw, 5.4rem);
  font-weight: 700;
  line-height: 1.463;
  letter-spacing: 0.1em;
  margin-top: clamp(4px, 0.4vw, 7px);
}
@media (max-width: 1023px) {
  .sec_heading span.section-heading__ja {
    font-size: 7.4vw;
    font-size: clamp(1.8rem, 4.8vw, 4rem);
    line-height: 1.429;
  }
}

.contact-info {
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: #B3B8C6;
  padding-top: 8.0208333333vw;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .contact-info {
    padding-top: 21.3333333333vw;
    padding-top: 80px;
  }
}
.contact-info .sec_heading--contact {
  display: block;
  font-size: clamp(2.4rem, 2.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.458;
  letter-spacing: 0.1em;
  text-align: center;
  color: #1A1A1A;
}
@media (max-width: 1023px) {
  .contact-info .sec_heading--contact {
    font-size: clamp(2.2rem, 5.8666666667vw, 4rem);
    line-height: 1.455;
  }
}
.contact-info .contact-info__text {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.1em;
  text-align: center;
  color: #1A1A1A;
  margin-top: 1rem;
}
@media (max-width: 1023px) {
  .contact-info .contact-info__text {
    font-size: clamp(1.4rem, 3.7333333333vw, 1.6rem);
    line-height: 1.571;
    margin-top: 20px;
    padding-bottom: 36px;
  }
  .contact-info .contact-info__text::after {
    content: "";
    width: 110px;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1A1A1A;
  }
}
.contact-info .contact-info__table {
  border-collapse: collapse;
  margin: 5.2083333333vw auto 0;
}
@media (max-width: 1023px) {
  .contact-info .contact-info__table {
    margin: 39px auto 0;
  }
}
.contact-info .contact-info__table tbody tr th {
  font-size: clamp(1.2rem, 1.2vw, 1.6rem);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  color: #1A1A1A;
}
@media (max-width: 1023px) {
  .contact-info .contact-info__table tbody tr th {
    font-size: clamp(1.3rem, 3.4666666667vw, 1.6rem);
    letter-spacing: 0;
  }
}
.contact-info .contact-info__table tbody tr td {
  padding-top: 1.1979166667vw;
}
@media (max-width: 1023px) {
  .contact-info .contact-info__table tbody tr td {
    padding-top: 2.4vw;
    padding-top: 9px;
  }
}
.contact-info .contact-info__table tbody tr td .contact-info__btn {
  width: 300px;
  aspect-ratio: 5/1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
}
@media (max-width: 1023px) {
  .contact-info .contact-info__table tbody tr td .contact-info__btn {
    width: clamp(150px, 40vw, 176px);
    aspect-ratio: 3/1;
    font-size: clamp(1.4rem, 3.7333333333vw, 1.6rem);
  }
}
.contact-info .contact-info__table tbody tr td .contact-info__tel {
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  line-height: 60px;
  letter-spacing: 0.06em;
  color: #1A1A1A;
}
@media (max-width: 1023px) {
  .contact-info .contact-info__table tbody tr td .contact-info__tel {
    width: clamp(150px, 40vw, 176px);
    aspect-ratio: 3/1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.04em;
    border: 2px solid #1A1A1A;
  }
}
.contact-info .contact-info__table tbody tr .contact-info__col--left {
  padding-right: 5.3645833333vw;
}
@media (max-width: 1023px) {
  .contact-info .contact-info__table tbody tr .contact-info__col--left {
    padding-right: 4.8vw;
  }
}
.contact-info .contact-info__table tbody tr .contact-info__col--right {
  padding-left: 5vw;
}
@media (max-width: 1023px) {
  .contact-info .contact-info__table tbody tr .contact-info__col--right {
    padding-left: 0;
  }
}
.contact-info .contact-info__table tbody tr .contact-info__col--bordered {
  border-left: 2px solid #1A1A1A;
}
@media (max-width: 1023px) {
  .contact-info .contact-info__table tbody tr .contact-info__col--bordered {
    border-left: none;
  }
}
.contact-info .contact-info__display-text {
  display: block;
  position: relative;
  bottom: 0;
  font-size: clamp(12rem, 16.8vw, 32.3rem);
  line-height: 0.71;
  letter-spacing: 0.08em;
  text-align: center;
  color: #242424;
  margin: 8.4895833333vw auto 0;
}
@media (max-width: 1023px) {
  .contact-info .contact-info__display-text {
    width: fit-content;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20vw;
    letter-spacing: 0.04em;
    margin: 65px auto 0;
  }
}
.contact-info .contact-info__display-text .text-wrap {
  display: flex;
  justify-content: center;
}

/* ------------------------------------------------------------
■ 遷移時のスクリーンアニメーション（上から下）【1.5s】
------------------------------------------------------------ */
.u-slide-down {
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #242424;
}
.u-slide-down.is-active {
  display: block;
  animation: page_fadeOut 0.5s ease-in-out 1s forwards;
}
.u-slide-down.is-active::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #0B3C76;
  animation: page_slide-down 0.8s ease-in-out forwards;
}

@keyframes page_slide-down {
  0% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.01% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
@keyframes page_fadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    display: none;
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
  }
}
/* ------------------------------------------------------------
■ テキストアニメーション
------------------------------------------------------------ */
.u-reveal-text {
  display: inline-block;
  overflow: hidden;
}
.u-reveal-text .text-wrap {
  display: flex;
}
.u-reveal-text .text-wrap .letter {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: 0.5s ease;
  transition-delay: calc(var(--i) * 0.05s);
}
.u-reveal-text.u-reveal-text--center .text-wrap {
  justify-content: center;
}
.u-reveal-text.u-reveal-text--page-transition .text-wrap .letter {
  transition-delay: calc(var(--i) * 0.05s + 1.2s);
}
.u-reveal-text.active .text-wrap .letter {
  transform: translateY(0);
  opacity: 1;
}

.u-reveal-text--second .text-wrap .letter {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: view_text 0.5s ease forwards;
}

@keyframes view_text {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.rotate-text .rotate-target {
  display: block;
  backface-visibility: hidden;
}
.rotate-text:hover .rotate-target {
  transition: 0.7s;
  transform: rotateX(360deg);
}/*# sourceMappingURL=common.css.map */