@charset "UTF-8";
/*修正*/
@font-face {
  font-weight: 300;
  font-family: "A-OTF";
  src: url(../font/Noto_Sans_JP/NotoSansJP-Light.ttf) format("opentype"), url(../font/A-OTF/A-OTF-UDShinGoPr6-Light.woff) format("woff");
}
@font-face {
  font-weight: 400;
  font-family: "A-OTF";
  src: url(../font/Noto_Sans_JP/NotoSansJP-Regular.ttf) format("opentype"), url(../font/A-OTF/A-OTF-UDShinGoPr6-Regular.woff) format("woff");
}
@font-face {
  font-weight: 500;
  font-family: "A-OTF";
  src: url(../font/Noto_Sans_JP/NotoSansJP-Medium.ttf) format("opentype"), url("../font/A-OTF/A-OTF-UDShinGoPr6-Medium.woff") format("woff");
}
@font-face {
  font-weight: 600;
  font-family: "A-OTF";
  src: url(../font/Noto_Sans_JP/NotoSansJP-SemiBold.ttf) format("opentype"), url("../font/A-OTF/A-OTF-UDShinGoPr6-DeBold.woff") format("woff");
}
@font-face {
  font-weight: 800;
  font-family: "A-OTF";
  src: url(../font/Noto_Sans_JP/NotoSansJP-Bold.ttf) format("opentype"), url("../font/A-OTF/A-OTF-UDShinGoPr6-Bold.woff") format("woff");
}
@font-face {
  font-weight: 900;
  font-family: "A-OTF";
  src: url(../font/Noto_Sans_JP/NotoSansJP-Black.ttf) format("opentype"), url("../font/A-OTF/A-OTF-UDShinGoPr6-Heavy.woff") format("woff");
}
@font-face {
  font-weight: 400;
  font-family: "Hiragino";
  src: url(../font/Noto_Sans_JP/NotoSansJP-Regular.ttf) format("opentype");
}
:root {
  --c-white: #fff;
  --c-black: #000;
  --c-blue: #0067c0;
  --c-skyblue: #eaf8ff;
  --c-yellow: #ffff00;
  --c-gray: #707070;
  --f-aotf: A-OTF, sans-serif;
  --f-hiragino: Hiragino, sans-serif;
  --f-shin-go: UD新ゴ R, UD Shin Go Regular, sans-serif;
  --f-shin-go-m: UD新ゴ M, UD Shin Go Medium, sans-serif;
  --f-hiragino-ud: ヒラギノUD角ゴ W3 JIS2004, Hiragino UD Sans W3 JIS2004, sans-serif;
  --animation-time-sm: 0.5s;
  --animation-time: 1s;
  --animation-time-lg: 1.5s;
  --animation-time-xl: 2s;
  --animation-easing: cubic-bezier(0.76, 0, 0.24, 1);
}

html {
  font-size: calc(100vw * 10 / 1920);
  scroll-behavior: auto;
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw * 10 / 375);
  }
}

body {
  color: var(--c-black);
  font-size: max(2rem, 14px);
  font-family: var(--f-hiragino);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
/*修正*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--f-aotf);
  font-weight: 500;
}

p {
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

.c-button_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.c-button,
.c-form_submit {
  column-gap: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  border: 3px solid var(--c-black);
  border-radius: 100vh;
  background-color: var(--c-white);
  color: inherit;
  font-family: var(--f-aotf);
  font-weight: 500;
  font-size: initial;
  text-decoration: none;
  text-transform: capitalize;
}
.c-button > span,
.c-form_submit > span {
  line-height: 1;
  letter-spacing: -.04em;
}
.c-button::after,
.c-form_submit::after {
  display: inline-block;
  width: 2rem;
  height: auto;
  background: url(../images/common/header_arrow_icon.svg) no-repeat center/contain;
  vertical-align: middle;
  content: "";
  aspect-ratio: 20/12;
  transition: transform 0.3s ease;
}
.c-button:focus-visible::after,
.c-form_submit:focus-visible::after {
  transform: translateX(0.5rem);
}
@media (any-hover: hover) {
  .c-button:hover::after,
  .c-form_submit:hover::after {
    transform: translateX(0.5rem);
  }
}

@media (max-width: 767px) {
  .c-button,
  .c-form_submit {
    font-size: 1.6rem;
    padding: 1rem;
  }
  .c-button::after,
  .c-form_submit::after {
    width: 1.5rem;
  }
  .c-button > span,
  .c-form_submit > span {
    letter-spacing: -.02em;
  }
}
.c-button .char01 {
  margin-left: 0%;
}

.c-button .char02 {
  margin-left: 1.75%;
}

.c-button .char03 {
  margin-left: 1%;
}

.c-button .char04 {
  margin-left: 1.75%;
}

.c-button .char05 {
  margin-left: 1.5%;
}

.c-button .char06 {
  margin-left: 1%;
}

.c-button .char07 {
  margin-left: 1.5%;
}

.c-form_dl {
  display: grid;
  margin-bottom: 3rem;
}
.c-form_dl dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-form_dl dd:not(:last-of-type) {
  margin-bottom: 1.8rem;
}

.c-form_req {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.5rem;
  background: var(--c-yellow);
  line-height: 1;
  text-align: center;
}

.c-form_input,
.c-form_textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid var(--c-black);
}

.c-form_remarks {
  margin-top: 1rem;
}

.c-form_submit {
  position: relative;
  white-space: nowrap;
}
.c-form_submit input[type="submit" i] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 100vh;
  background-color: transparent;
  cursor: pointer;
}
.c-form_submit .char02 {
  margin-left: 0.2%;
}
.c-form_submit .char03 {
  margin-left: 0.2%;
}
.c-form_submit .char04 {
  margin-left: 0.3%;
}
.c-form_submit .char05 {
  margin-left: 0.3%;
}
.c-form_submit .char06 {
  margin-left: 0.3%;
}

@media (min-width: 768px) {
  .c-form_dl {
    justify-content: center;
    align-items: start;
    margin-bottom: 4rem;
    grid-template-columns: auto 38rem;
    grid-gap: 4rem 2rem;
  }
  .c-form_dl dt {
    justify-content: flex-end;
    padding-top: 0.8em;
    column-gap: 1.5rem;
  }
  .c-form_dl dd:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.c-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.c-logo a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
.c-logo a:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .c-logo a:hover {
    opacity: 0.6;
  }
}

.c-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding: 2rem 2rem;
  background-color: var(--c-white);
  transition: opacity var(--animation-time);
}
.c-loading.js-active {
  animation: loading_bg .5s ease forwards;
  animation-delay: 2.5s;
}

.c-loading_image {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
}
.c-loading_image img:nth-of-type(1) {
  width: 45.6px;
}
.c-loading_image img:nth-of-type(2) {
  width: 167.2px;
}
.c-loading_image img:nth-of-type(3) {
  width: 122.4px;
}

.c-loading.js-active .c-loading_image img {
  animation: loading_image 1s ease forwards;
  position: relative;
}
.c-loading.js-active .c-loading_image img:nth-of-type(2) {
  animation-delay: .5s;
}
.c-loading.js-active .c-loading_image img:nth-of-type(3) {
  animation-delay: 1s;
}

@media (max-width: 767px) {
  .c-loading_image {
    column-gap: .8rem;
  }
  .c-loading_image img:nth-of-type(1) {
    width: inherit !important;
  }
  .c-loading_image img:nth-of-type(2) {
    width: inherit !important;
  }
  .c-loading_image img:nth-of-type(3) {
    width: inherit !important;
  }

  .c-loading.js-active .c-loading_image img {
    height: 1.28rem;
  }
}
@keyframes loading_bg {
  0% {
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes loading_image {
  0% {
    opacity: 0;
    left: -3rem;
  }
  60% {
    opacity: 1;
    left: 0;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.c-mv_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5.5rem;
  text-align: center;
  white-space: nowrap;
  row-gap: 1rem;
}
.c-mv_title .en {
  position: relative;
  font-size: 3.2rem;
}
.c-mv_title .en::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7.8rem;
  height: 1px;
  background-color: var(--c-black);
  content: "";
}
.c-mv_title .jp {
  font-size: max(14px, 2rem);
}

@media (min-width: 768px) {
  .c-mv_title {
    margin-bottom: 14rem;
  }
  .c-mv_title .en {
    padding-bottom: 0.5rem;
    font-size: 4rem;
  }
}
.c-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8rem;
  line-height: 1;
  white-space: nowrap;
  row-gap: calc(2rem - 1rem);
}
.c-title .en {
  position: relative;
  padding-bottom: 1.5rem;
  font-size: max(28px, 3.6rem);
}
.c-title .en::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7.8rem;
  height: 1px;
  background-color: var(--c-black);
  content: "";
}
.c-title .jp {
  font-size: max(14px, 2rem);
}

@media (max-width: 767px) {
  .c-title {
    margin-bottom: 5rem;
  }
  .c-title .en {
    padding-bottom: 1rem;
    font-size: 3.2rem;
  }
}
.p-cta {
  border-top: 1px solid var(--c-gray);
  padding-block: 13.5rem;
}

.p-cta_media {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5.5rem;
}

.p-cta_title {
  font-size: 3.1rem;
  white-space: nowrap;
}
.p-cta_title .char02 {
  margin-left: 0.1%;
}
.p-cta_title .char03 {
  margin-left: 0.2%;
}
.p-cta_title .char04 {
  margin-left: 0.4%;
}
.p-cta_title .char05 {
  margin-left: -0.2%;
}
.p-cta_title .char08 {
  margin-left: -0.2%;
}

.p-cta_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem 4rem;
}

.p-cta_text {
  line-height: calc(32 / 20);
}

@media (max-width: 767px) {
  .p-cta {
    padding-block: 7.1rem;
  }

  .p-cta_media {
    flex-direction: column;
    align-items: stretch;
  }

  .p-cta_title {
    margin-bottom: 2rem;
    font-size: 2.4rem;
  }

  .p-cta_content {
    flex-direction: column;
    align-items: stretch;
  }

  .p-cta_text {
    font-size: 1.58rem;
  }
}
.u-c-white {
  color: #fff !important;
}

.u-bg-white {
  background-color: #fff !important;
}

.u-c-black {
  color: #000 !important;
}

.u-bg-black {
  background-color: #000 !important;
}

.u-c-blue {
  color: #0067c0 !important;
}

.u-bg-blue {
  background-color: #0067c0 !important;
}

.u-c-skyblue {
  color: #eaf8ff !important;
}

.u-bg-skyblue {
  background-color: #eaf8ff !important;
}

.u-c-yellow {
  color: #ffff00 !important;
}

.u-bg-yellow {
  background-color: #ffff00 !important;
}

.u-c-gray {
  color: #707070 !important;
}

.u-bg-gray {
  background-color: #707070 !important;
}

.u-pc {
  display: none !important;
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }

  .u-pc {
    display: block !important;
  }
}
.u-pt-0 {
  padding-top: 0rem !important;
}

.u-pt-5 {
  padding-top: 0.5rem !important;
}

.u-pt-10 {
  padding-top: 1rem !important;
}

.u-pt-15 {
  padding-top: 1.5rem !important;
}

.u-pt-20 {
  padding-top: 2rem !important;
}

.u-pt-25 {
  padding-top: 2.5rem !important;
}

.u-pt-30 {
  padding-top: 3rem !important;
}

.u-pt-35 {
  padding-top: 3.5rem !important;
}

.u-pt-40 {
  padding-top: 4rem !important;
}

.u-pt-45 {
  padding-top: 4.5rem !important;
}

.u-pt-50 {
  padding-top: 5rem !important;
}

.u-pt-55 {
  padding-top: 5.5rem !important;
}

.u-pt-60 {
  padding-top: 6rem !important;
}

.u-pt-65 {
  padding-top: 6.5rem !important;
}

.u-pt-70 {
  padding-top: 7rem !important;
}

.u-pt-75 {
  padding-top: 7.5rem !important;
}

.u-pt-80 {
  padding-top: 8rem !important;
}

.u-pt-85 {
  padding-top: 8.5rem !important;
}

.u-pt-90 {
  padding-top: 9rem !important;
}

.u-pt-95 {
  padding-top: 9.5rem !important;
}

.u-pt-100 {
  padding-top: 10rem !important;
}

@media (max-width: 767px) {
  .u-pt-sp-0 {
    padding-top: 0rem !important;
  }

  .u-pt-sp-5 {
    padding-top: 0.5rem !important;
  }

  .u-pt-sp-10 {
    padding-top: 1rem !important;
  }

  .u-pt-sp-15 {
    padding-top: 1.5rem !important;
  }

  .u-pt-sp-20 {
    padding-top: 2rem !important;
  }

  .u-pt-sp-25 {
    padding-top: 2.5rem !important;
  }

  .u-pt-sp-30 {
    padding-top: 3rem !important;
  }

  .u-pt-sp-35 {
    padding-top: 3.5rem !important;
  }

  .u-pt-sp-40 {
    padding-top: 4rem !important;
  }

  .u-pt-sp-45 {
    padding-top: 4.5rem !important;
  }

  .u-pt-sp-50 {
    padding-top: 5rem !important;
  }

  .u-pt-sp-55 {
    padding-top: 5.5rem !important;
  }

  .u-pt-sp-60 {
    padding-top: 6rem !important;
  }

  .u-pt-sp-65 {
    padding-top: 6.5rem !important;
  }

  .u-pt-sp-70 {
    padding-top: 7rem !important;
  }

  .u-pt-sp-75 {
    padding-top: 7.5rem !important;
  }

  .u-pt-sp-80 {
    padding-top: 8rem !important;
  }

  .u-pt-sp-85 {
    padding-top: 8.5rem !important;
  }

  .u-pt-sp-90 {
    padding-top: 9rem !important;
  }

  .u-pt-sp-95 {
    padding-top: 9.5rem !important;
  }

  .u-pt-sp-100 {
    padding-top: 10rem !important;
  }
}
.u-pb-0 {
  padding-bottom: 0rem !important;
}

.u-pb-5 {
  padding-bottom: 0.5rem !important;
}

.u-pb-10 {
  padding-bottom: 1rem !important;
}

.u-pb-15 {
  padding-bottom: 1.5rem !important;
}

.u-pb-20 {
  padding-bottom: 2rem !important;
}

.u-pb-25 {
  padding-bottom: 2.5rem !important;
}

.u-pb-30 {
  padding-bottom: 3rem !important;
}

.u-pb-35 {
  padding-bottom: 3.5rem !important;
}

.u-pb-40 {
  padding-bottom: 4rem !important;
}

.u-pb-45 {
  padding-bottom: 4.5rem !important;
}

.u-pb-50 {
  padding-bottom: 5rem !important;
}

.u-pb-55 {
  padding-bottom: 5.5rem !important;
}

.u-pb-60 {
  padding-bottom: 6rem !important;
}

.u-pb-65 {
  padding-bottom: 6.5rem !important;
}

.u-pb-70 {
  padding-bottom: 7rem !important;
}

.u-pb-75 {
  padding-bottom: 7.5rem !important;
}

.u-pb-80 {
  padding-bottom: 8rem !important;
}

.u-pb-85 {
  padding-bottom: 8.5rem !important;
}

.u-pb-90 {
  padding-bottom: 9rem !important;
}

.u-pb-95 {
  padding-bottom: 9.5rem !important;
}

.u-pb-100 {
  padding-bottom: 10rem !important;
}

@media (max-width: 767px) {
  .u-pb-sp-0 {
    padding-bottom: 0rem !important;
  }

  .u-pb-sp-5 {
    padding-bottom: 0.5rem !important;
  }

  .u-pb-sp-10 {
    padding-bottom: 1rem !important;
  }

  .u-pb-sp-15 {
    padding-bottom: 1.5rem !important;
  }

  .u-pb-sp-20 {
    padding-bottom: 2rem !important;
  }

  .u-pb-sp-25 {
    padding-bottom: 2.5rem !important;
  }

  .u-pb-sp-30 {
    padding-bottom: 3rem !important;
  }

  .u-pb-sp-35 {
    padding-bottom: 3.5rem !important;
  }

  .u-pb-sp-40 {
    padding-bottom: 4rem !important;
  }

  .u-pb-sp-45 {
    padding-bottom: 4.5rem !important;
  }

  .u-pb-sp-50 {
    padding-bottom: 5rem !important;
  }

  .u-pb-sp-55 {
    padding-bottom: 5.5rem !important;
  }

  .u-pb-sp-60 {
    padding-bottom: 6rem !important;
  }

  .u-pb-sp-65 {
    padding-bottom: 6.5rem !important;
  }

  .u-pb-sp-70 {
    padding-bottom: 7rem !important;
  }

  .u-pb-sp-75 {
    padding-bottom: 7.5rem !important;
  }

  .u-pb-sp-80 {
    padding-bottom: 8rem !important;
  }

  .u-pb-sp-85 {
    padding-bottom: 8.5rem !important;
  }

  .u-pb-sp-90 {
    padding-bottom: 9rem !important;
  }

  .u-pb-sp-95 {
    padding-bottom: 9.5rem !important;
  }

  .u-pb-sp-100 {
    padding-bottom: 10rem !important;
  }
}
.u-mt-0 {
  margin-top: 0rem !important;
}

.u-mt-5 {
  margin-top: 0.5rem !important;
}

.u-mt-10 {
  margin-top: 1rem !important;
}

.u-mt-15 {
  margin-top: 1.5rem !important;
}

.u-mt-20 {
  margin-top: 2rem !important;
}

.u-mt-25 {
  margin-top: 2.5rem !important;
}

.u-mt-30 {
  margin-top: 3rem !important;
}

.u-mt-35 {
  margin-top: 3.5rem !important;
}

.u-mt-40 {
  margin-top: 4rem !important;
}

.u-mt-45 {
  margin-top: 4.5rem !important;
}

.u-mt-50 {
  margin-top: 5rem !important;
}

.u-mt-55 {
  margin-top: 5.5rem !important;
}

.u-mt-60 {
  margin-top: 6rem !important;
}

.u-mt-65 {
  margin-top: 6.5rem !important;
}

.u-mt-70 {
  margin-top: 7rem !important;
}

.u-mt-75 {
  margin-top: 7.5rem !important;
}

.u-mt-80 {
  margin-top: 8rem !important;
}

.u-mt-85 {
  margin-top: 8.5rem !important;
}

.u-mt-90 {
  margin-top: 9rem !important;
}

.u-mt-95 {
  margin-top: 9.5rem !important;
}

.u-mt-100 {
  margin-top: 10rem !important;
}

@media (max-width: 767px) {
  .u-mt-sp-0 {
    margin-top: 0rem !important;
  }

  .u-mt-sp-5 {
    margin-top: 0.5rem !important;
  }

  .u-mt-sp-10 {
    margin-top: 1rem !important;
  }

  .u-mt-sp-15 {
    margin-top: 1.5rem !important;
  }

  .u-mt-sp-20 {
    margin-top: 2rem !important;
  }

  .u-mt-sp-25 {
    margin-top: 2.5rem !important;
  }

  .u-mt-sp-30 {
    margin-top: 3rem !important;
  }

  .u-mt-sp-35 {
    margin-top: 3.5rem !important;
  }

  .u-mt-sp-40 {
    margin-top: 4rem !important;
  }

  .u-mt-sp-45 {
    margin-top: 4.5rem !important;
  }

  .u-mt-sp-50 {
    margin-top: 5rem !important;
  }

  .u-mt-sp-55 {
    margin-top: 5.5rem !important;
  }

  .u-mt-sp-60 {
    margin-top: 6rem !important;
  }

  .u-mt-sp-65 {
    margin-top: 6.5rem !important;
  }

  .u-mt-sp-70 {
    margin-top: 7rem !important;
  }

  .u-mt-sp-75 {
    margin-top: 7.5rem !important;
  }

  .u-mt-sp-80 {
    margin-top: 8rem !important;
  }

  .u-mt-sp-85 {
    margin-top: 8.5rem !important;
  }

  .u-mt-sp-90 {
    margin-top: 9rem !important;
  }

  .u-mt-sp-95 {
    margin-top: 9.5rem !important;
  }

  .u-mt-sp-100 {
    margin-top: 10rem !important;
  }
}
.u-mb-0 {
  margin-bottom: 0rem !important;
}

.u-mb-5 {
  margin-bottom: 0.5rem !important;
}

.u-mb-10 {
  margin-bottom: 1rem !important;
}

.u-mb-15 {
  margin-bottom: 1.5rem !important;
}

.u-mb-20 {
  margin-bottom: 2rem !important;
}

.u-mb-25 {
  margin-bottom: 2.5rem !important;
}

.u-mb-30 {
  margin-bottom: 3rem !important;
}

.u-mb-35 {
  margin-bottom: 3.5rem !important;
}

.u-mb-40 {
  margin-bottom: 4rem !important;
}

.u-mb-45 {
  margin-bottom: 4.5rem !important;
}

.u-mb-50 {
  margin-bottom: 5rem !important;
}

.u-mb-55 {
  margin-bottom: 5.5rem !important;
}

.u-mb-60 {
  margin-bottom: 6rem !important;
}

.u-mb-65 {
  margin-bottom: 6.5rem !important;
}

.u-mb-70 {
  margin-bottom: 7rem !important;
}

.u-mb-75 {
  margin-bottom: 7.5rem !important;
}

.u-mb-80 {
  margin-bottom: 8rem !important;
}

.u-mb-85 {
  margin-bottom: 8.5rem !important;
}

.u-mb-90 {
  margin-bottom: 9rem !important;
}

.u-mb-95 {
  margin-bottom: 9.5rem !important;
}

.u-mb-100 {
  margin-bottom: 10rem !important;
}

@media (max-width: 767px) {
  .u-mb-sp-0 {
    margin-bottom: 0rem !important;
  }

  .u-mb-sp-5 {
    margin-bottom: 0.5rem !important;
  }

  .u-mb-sp-10 {
    margin-bottom: 1rem !important;
  }

  .u-mb-sp-15 {
    margin-bottom: 1.5rem !important;
  }

  .u-mb-sp-20 {
    margin-bottom: 2rem !important;
  }

  .u-mb-sp-25 {
    margin-bottom: 2.5rem !important;
  }

  .u-mb-sp-30 {
    margin-bottom: 3rem !important;
  }

  .u-mb-sp-35 {
    margin-bottom: 3.5rem !important;
  }

  .u-mb-sp-40 {
    margin-bottom: 4rem !important;
  }

  .u-mb-sp-45 {
    margin-bottom: 4.5rem !important;
  }

  .u-mb-sp-50 {
    margin-bottom: 5rem !important;
  }

  .u-mb-sp-55 {
    margin-bottom: 5.5rem !important;
  }

  .u-mb-sp-60 {
    margin-bottom: 6rem !important;
  }

  .u-mb-sp-65 {
    margin-bottom: 6.5rem !important;
  }

  .u-mb-sp-70 {
    margin-bottom: 7rem !important;
  }

  .u-mb-sp-75 {
    margin-bottom: 7.5rem !important;
  }

  .u-mb-sp-80 {
    margin-bottom: 8rem !important;
  }

  .u-mb-sp-85 {
    margin-bottom: 8.5rem !important;
  }

  .u-mb-sp-90 {
    margin-bottom: 9rem !important;
  }

  .u-mb-sp-95 {
    margin-bottom: 9.5rem !important;
  }

  .u-mb-sp-100 {
    margin-bottom: 10rem !important;
  }
}
.u-justify-end {
  justify-content: flex-end !important;
}

.l-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
  max-width: calc(130rem + 3rem);
}
.l-container.-sm {
  max-width: calc(101.2rem + 3rem);
}
@media (max-width: 767px) {
  .l-container {
    padding-inline: 2rem;
  }
}

.l-top-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
  max-width: calc(135.2rem + 3rem);
}
.l-top-container.-lg {
  max-width: calc(157.2rem + 3rem);
}
@media (max-width: 767px) {
  .l-top-container {
    padding-inline: 2rem;
  }
}

.l-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 990;
  width: 100%;
  background-color: var(--c-white);
}

.l-header_logo img {
  width: 18.5rem;
}

.l-header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: inherit;
}
@media (min-width: 768px) {
  .l-header_inner {
    padding: calc(100vw * 36 / 1920) calc(100vw* 174 / 1920);
  }
}

.l-header_nav {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .l-header_nav {
    column-gap: calc(100vw * 45 / 1920);
  }
}

.l-header_nav_item:nth-of-type(1) {
  margin-right: -1rem;
}
.l-header_nav_item:nth-of-type(2) {
  margin-right: -.5rem;
}
.l-header_nav_item:nth-of-type(3) {
  margin-right: -.5rem;
}

.l-header_nav_link {
  color: inherit;
  font-family: var(--f-aotf);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .l-header_nav_link {
    font-size: calc(100vw * 20 / 1920);
  }
}

/*修正箇所*/
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char02 {
  margin-left: 0.15%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char03 {
  margin-left: 0.2%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char04 {
  margin-left: 0.75%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char05 {
  margin-left: 0.2%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char06 {
  margin-left: 0.15%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char07 {
  margin-left: 0.5%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char08 {
  margin-left: 0.2%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char09 {
  margin-left: -0.1%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char10 {
  margin-left: 0.35%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char11 {
  margin-left: 0.05%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char12 {
  margin-left: -0.25%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char13 {
  margin-left: -0.1%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(1) > *) .char15 {
  margin-left: -0.1%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(2) > *) .char02 {
  margin-left: 0.4%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(2) > *) .char03 {
  margin-left: 0.5%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(2) > *) .char04 {
  margin-left: 0.7%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(2) > *) .char05 {
  margin-left: 0.5%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(2) > *) .char06 {
  margin-left: 0.1%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(2) > *) .char07 {
  margin-left: 0.4%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(2) > *) .char09 {
  margin-left: 0.2%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(2) > *) .char10 {
  margin-left: 0.3%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(3) > *) .char02 {
  margin-left: 0.75%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(3) > *) .char04 {
  margin-left: 0.2%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(3) > *) .char06 {
  margin-left: 0.2%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(3) > *) .char07 {
  margin-left: 0.2%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(3) > *) .char08 {
  margin-left: 0.2%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(4) > *) .char02 {
  margin-left: 0.3%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(4) > *) .char03 {
  margin-left: 0.5%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(4) > *) .char04 {
  margin-left: 0.5%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(4) > *) .char05 {
  margin-left: -0.1%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(4) > *) .char06 {
  margin-left: -0.1%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(4) > *) .char08 {
  margin-left: -1%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(4) > *) .char11 {
  margin-left: 1%;
}
.l-header_nav_link:where(.l-header_nav_item:nth-of-type(4) > *) .char13 {
  margin-left: 0.5%;
}
.l-header_nav_link:focus-visible {
  opacity: 1%;
}
@media (any-hover: hover) {
  .l-header_nav_link:hover {
    opacity: 0.4;
  }
}

@media (min-width: 768px) {
  .l-header_button {
    padding: calc(100vw * 14.5 / 1920) calc(100vw * 12.5 / 1920) !important;
    font-size: calc(100vw * 20 / 1920) !important;
    column-gap: calc(100vw * 10 / 1920);
  }
  .l-header_button::after {
    width: calc(100vw * 20 / 1920);
  }
}

@media (max-width: 767px) {
  .l-header {
    position: fixed;
  }
  .l-header:where(.l-body.-top *) {
    opacity: 1;
    translate: inherit;
  }
  .l-header:where(.l-body.-top *).js-active {
    opacity: 1;
  }

  .l-header_logo img {
    width: 14rem;
    margin-left: -1rem;
  }

  .l-header_inner {
    padding: 1.9rem 1.6rem 1.9rem 2rem;
  }

  .l-header_nav {
    display: none;
  }

  .l-header_button {
    font-size: 1.6rem;
    padding: 1.2rem 1rem 1.2rem 1.4rem;
  }
}
.l-drawer-button {
  position: relative;
  width: 4rem;
  height: 4rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  margin-left: auto;
}
.l-drawer-button:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .l-drawer-button:hover {
    opacity: 0.6;
  }
}
.l-drawer-button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.2rem;
  height: 0.4rem;
  background-color: var(--c-black);
}
.l-drawer-button > span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 0.5rem));
}
.l-drawer-button > span:nth-child(2) {
  transform: translate(-50%, calc(-50% + 0.5rem));
}
.l-drawer-button:where(.l-drawer-nav *) > span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-drawer-button:where(.l-drawer-nav *) > span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 768px) {
  .l-drawer-button {
    display: none;
  }

  .l-drawer-nav {
    display: none;
  }
}
.l-drawer-nav {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding: 3rem 0;
  background-color: var(--c-white);
  text-align: center;
  overflow-y: scroll;
  transition: .3s;
}
.l-drawer-nav.js-open {
  left: 0;
}

.l-drawer-nav_inner {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0 0 0 auto;
}

.l-drawer-nav_menu {
  display: grid;
  grid-row-gap: 1.5rem;
  text-align: left;
  margin-bottom: 4.5rem;
  padding: 0 3rem;
}

.l-drawer-nav_link {
  font-size: 1.6rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(1) > *) .char02 {
  margin-left: -.1rem;
}
.l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(1) > *) .char03 {
  margin-left: 0;
}
.l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(2) > *) .char03 {
  margin-left: 0.2%;
}
.l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(2) > *) .char04 {
  margin-left: 0.3%;
}
.l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(2) > *) .char05 {
  margin-left: 0.3%;
}
.l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(3) > *) .char04 {
  margin-left: 0;
}
.l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(3) > *) .char05 {
  margin-left: 0;
}
.l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(3) > *) .char07 {
  margin-left: 0;
}
.l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(4) > *) .char03, .l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(4) > *) .char04, .l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(4) > *) .char05 {
  margin-left: 0;
}
.l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(4) > *) .char09, .l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(4) > *) .char10 {
  margin-left: -.1rem;
}
.l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(5) > *) .char02, .l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(5) > *) .char06, .l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(5) > *) .char07 {
  margin-left: 0;
}
.l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(6) > *) .char04, .l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(6) > *) .char10, .l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(6) > *) .char11, .l-drawer-nav_link:where(.l-drawer-nav_item:nth-of-type(6) > *) .char13 {
  margin-left: 0;
}

.l-drawer-nav_button.c-button {
  padding: 0.8rem 1rem;
  margin-right: auto;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
.l-drawer-nav_button.c-button::after {
  width: 1.465rem;
}

.l-footer {
  overflow: hidden;
  padding-block: 14rem;
  position: relative;
}
.l-footer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-gray);
  transition: width var(--animation-time-sm);
  transition-duration: 1s;
}
.l-footer:where(.js-active)::before {
  width: 100%;
}

.l-footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 138rem;
}

.l-footer_menu {
  display: grid;
  grid-row-gap: 2.8rem;
}

.l-footer_menu_item {
  line-height: 1;
}

.l-footer_menu_link {
  color: inherit;
  font-size: initial;
  font-family: var(--f-aotf);
  font-weight: 500;
  font-size: max(14px, 1.9rem);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s;
}
/*修正箇所*/
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(1) > *) .char02 {
  margin-left: -0.5%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(1) > *) .char03 {
  margin-left: 0.5%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char02 {
  margin-left: 0.4%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char03 {
  margin-left: 0%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char04 {
  margin-left: 0.3%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char05 {
  margin-left: 0.3%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char10 {
  margin-left: 0.35%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char11 {
  margin-left: 0.3%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char12 {
  margin-left: -0.15%;
}

.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char03 {
  margin-left: 0.25%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char04 {
  margin-left: 0.35%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char05 {
  margin-left: 0.1%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char06 {
  margin-left: -0.1%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char07 {
  margin-left: 0.1%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char08 {
  margin-left: 0.1%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char09 {
  margin-left: 0.1%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char10 {
  margin-left: 0.1%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(4) > *) .char02 {
  margin-left: 0.2%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(4) > *) .char05 {
  margin-left: 0%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(4) > *) .char06 {
  margin-left: 0%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(4) > *) .char07 {
  margin-left: 0.1%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char02 {
  margin-left: 0.3%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char03 {
  margin-left: 0.3%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char04 {
  margin-left: 0.7%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char05 {
  margin-left: -0.15%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char06 {
  margin-left: 0.2%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char07 {
  margin-left: 0.2%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char10 {
  margin-left: 0.4%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char11 {
  margin-left: 0.6%;
}
.l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char13 {
  margin-left: 0.5%;
}
.l-footer_menu_link:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .l-footer_menu_link:hover {
    opacity: 0.6;
  }
}

.l-footer_logo {
  display: flex;
  justify-content: flex-end !important;
  margin-right: -3rem;
  margin-bottom: 1rem;
}
.l-footer_logo a:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .l-footer_logo a:hover {
    opacity: 0.6;
  }
}
.l-footer_logo img {
  width: 18.5rem;
}

@media (max-width: 767px) {
  .l-footer {
    padding-block: 3.6rem;
  }

  .l-footer_inner {
    flex-direction: column;
    align-items: stretch;
    padding-inline: 2rem;
  }

  .l-footer_menu {
    grid-row-gap: 2rem;
  }
/*修正箇所*/
  .l-footer_menu_link {
    font-size: 1.6rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(1) > *) .char02 {
    margin-left: -0.1rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(1) > *) .char03 {
    margin-left: 0;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char02 {
    margin-left: 0.05rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char03 {
    margin-left: -0.05rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char04 {
    margin-left: 0.05rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char05 {
    margin-left: -0.01rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char10 {
    margin-left: 0.01rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(2) > *) .char11 {
    margin-left:-0.05rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char03 {
    margin-left: -0.01rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char04 {
    margin-left: 0;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char05 {
    margin-left: 0;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char07 {
    margin-left: 0;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char08 {
    margin-left: -0.01rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(3) > *) .char09 {
    margin-left: -0.01rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(4) > *) .char02 {
    margin-left: 0.02rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(4) > *) .char03 {
    margin-left: -0.05rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(4) > *) .char09{
    margin-left: -.1rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char02{
    margin-left: -0.01rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char03{
    margin-left: 0.015rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char04 {
    margin-left: 0.005rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char06{
    margin-left: -0.015rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char08{
    margin-left: -0.005rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char09 {
    margin-left: -0.001rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char10{
    margin-left: -0.025rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char11{
    margin-left: 0.1rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char12{
    margin-left: -0.01rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(5) > *) .char13{
    margin-left: -0.05rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(6) > *) .char02{
    margin-left: 10rem;
  }
  .l-footer_menu_link:where(.l-footer_menu_item:nth-of-type(6) > *) .char04{
    margin-left: 0;
  }

  .l-footer_logo {
    margin-bottom: 0;
  }
}
.l-section {
  padding-block: 9.4rem;
}

@media (min-width: 768px) {
  .l-section {
    padding-block: 12rem;
  }
}
@media (min-width: 768px) {
  #luxy {
    padding-bottom: 10rem;
  }
}

/*# sourceMappingURL=style.css.map */
