@charset "UTF-8";
html {
  font-size: 10px;
  min-height: 100%;
  scroll-behavior: smooth;
}
@media screen and (min-width: 1441px) {
  html { /* 1440px以上 */
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 1320px) {
  html {
    font-size: 0.7575757576vw;
  }
}
@media screen and (max-width: 1150px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: #000;
  background-color: #EFEFEF;
  box-sizing: border-box;
  position: relative;
  font-size: clamp(14px, 1.6rem, 16px);
  font-weight: 500;
  line-height: 2;
  color: #fff;
  letter-spacing: 0;
  word-break: normal;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  min-height: 100%;
  overflow: auto;
}
@media screen and (max-width: 1320px) {
  body {
    font-size: 1.5rem;
  }
}
:root {
  --var-translate-val: 15px;
  --var-translate-negative-val: -15px;
  --var-animation-timing-function: cubic-bezier(.45,0,.55,1);
  --var-opacity-timing-function: cubic-bezier(.32,0,.66,.1);
}

.ambar {
  position: relative;
}
.ambar.visible .bg_logo,
.ambar.visible .nav_list,
.ambar.visible .mv_logo {
  opacity: 0.6;
}
.ambar.visible .bg_section_deco {
  opacity: 0.1;
}
.ambar.visible .pc_bg,
.ambar.visible .cta_reserve,
.ambar.visible .cta_official_box,
.ambar.visible .nav_btnbox,
.ambar.visible .mv_wrapper,
.ambar.visible .mv_title,
.ambar.visible .mv_copy,
.ambar.visible .mv_text,
.ambar.visible .mv_icon,
.ambar.visible .mv_note,
.ambar.visible .mv_mainv,
.ambar.visible .mv_cover,
.ambar.visible .mv_slider,
.ambar.visible .scroll {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
}

picture {
  display: block;
}

button {
  color: inherit;
}

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

@media screen and (max-width: 1320px) {
  .notepc-none {
    display: none;
  }
}

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

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

.sec-inner_01 {
  position: relative;
  padding: 0 20px;
}
@media screen and (min-width: 1441px) {
  .sec-inner_01 {
    padding: 0 1.3888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-inner_01 {
    padding: 0 2rem;
  }
}

.sec-inner_02 {
  position: relative;
  padding: 0 35px;
}
@media screen and (min-width: 1441px) {
  .sec-inner_02 {
    padding: 0 2.4305555556vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-inner_02 {
    padding: 0 2rem;
  }
}

.fade-in {
  opacity: 0;
  transition: opacity 0.5s 0.3s var(--var-opacity-timing-function);
}
.fade-in.is-animated {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.3s 0.3s var(--var-opacity-timing-function), transform 1.2s 0.3s var(--var-animation-timing-function);
}
.slide-up.is-animated {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: opacity 0.3s 0.3s var(--var-opacity-timing-function), transform 1.2s 0.3s var(--var-animation-timing-function);
}
.slide-left.is-animated {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(3rem);
  transition: opacity 0.3s 0.3s var(--var-opacity-timing-function), transform 1.2s 0.3s var(--var-animation-timing-function);
}
.slide-right.is-animated {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-blur {
  opacity: 0;
  filter: blur(1rem);
  transition: opacity 0.8s 0s var(--var-animation-timing-function), filter 0.6s 0s var(--var-animation-timing-function), transform 1s 0s var(--var-animation-timing-function);
}
.fade-in-blur.is-animated {
  opacity: 1;
  filter: blur(0);
}

@keyframes move-left-to-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(200%);
  }
  50.0001% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pikopiko {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.ambar_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0 1rem;
}
@media screen and (max-width: 1150px) {
  .ambar_text {
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
  }
}
.ambar_text .--ja {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.065em;
}
@media screen and (min-width: 1441px) {
  .ambar_text .--ja {
    font-size: 0.9027777778vw;
  }
}
@media screen and (max-width: 1150px) {
  .ambar_text .--ja {
    font-size: 1.1rem;
  }
}
.ambar_text .--en {
  display: block;
  font-size: 48px;
  font-weight: 400;
  font-family: "Zen Dots", sans-serif;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (min-width: 1441px) {
  .ambar_text .--en {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .ambar_text .--en {
    font-size: 4rem;
  }
}

.hosoku {
  font-size: 12px;
  letter-spacing: 0;
}
@media screen and (min-width: 1441px) {
  .hosoku {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .hosoku {
    font-size: 1.1rem;
  }
}

.sec_title_en {
  position: relative;
  font-size: 14px;
  font-family: "Zen Dots", sans-serif;
  margin-bottom: 10px;
}
@media screen and (min-width: 1441px) {
  .sec_title_en {
    font-size: 0.9722222222vw;
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .sec_title_en {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
}

.sec_title_ja {
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (min-width: 1441px) {
  .sec_title_ja {
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .sec_title_ja {
    font-size: 1.8rem;
  }
}

.font-en {
  font-family: "Zen Dots", sans-serif;
  letter-spacing: 0;
}

.text-uppercase {
  text-transform: uppercase;
}

.text_marker {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-bottom: 0.1em;
}
.text_marker::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  height: 75%;
  background-color: #EFEFEF;
}

.font-bold {
  font-weight: 600;
}

.pc_bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("../img/bg_image01.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
  opacity: 0;
  transition: opacity 0.8s 0.3s var(--var-animation-timing-function), background-image 0.3s ease;
}

.page_container {
  position: relative;
  z-index: 1;
}

.main_content {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  margin: 0 auto;
  min-height: 100vh;
  padding: 40px 0 0;
}
@media screen and (min-width: 1441px) {
  .main_content {
    width: 30.5555555556vw;
    padding: 2.7777777778vw 0 0;
  }
}
@media screen and (max-width: 1150px) {
  .main_content {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

.bg_section {
  min-height: 100vh;
  box-sizing: border-box;
}

.bg_trigger {
  height: 1px;
}

.bg_logo {
  position: absolute;
  z-index: 20;
  top: 42%;
  left: 11.5%;
  opacity: 0.6;
  width: 185px;
  opacity: 0;
  transition: opacity 0.8s 0.3s var(--var-animation-timing-function);
}
@media screen and (min-width: 1441px) {
  .bg_logo {
    width: 12.8472222222vw;
  }
}
@media (min-width: 769px) and (min-aspect-ratio: 2/1) {
  .bg_logo {
    top: 27%;
    width: 9.6354166667vw;
  }
}
@media screen and (max-width: 1320px) {
  .bg_logo {
    top: 3%;
  }
}
@media screen and (max-width: 1150px) {
  .bg_logo {
    position: relative;
    top: initial;
    left: initial;
    display: block;
    width: 8rem;
    margin: 0 auto 3rem;
  }
}
@media (max-height: 650px) {
  .bg_logo {
    top: 7%;
  }
}

body.is_nav_open .bg_logo {
  position: relative;
  top: initial;
  left: initial;
  display: block;
  width: 8rem;
  margin: 0 auto 3rem;
}

body.is-fixed {
  overflow: hidden;
  height: 100vh;
}

.bg_logo_img {
  max-width: initial;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.bg_section_deco {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  overflow: hidden;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
@media screen and (max-width: 1150px) {
  .bg_section_deco {
    display: none;
  }
}

.bg_section_deco.is-hide {
  opacity: 0;
}

.visible .bg_section_deco.is-hide {
  opacity: 0;
}

.bg_section_deco_img {
  max-width: initial;
  width: 1878px;
  height: 841px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  left: 50%;
  transform: translateX(calc(-50% - 360px));
  position: absolute;
}
@media screen and (min-width: 1441px) {
  .bg_section_deco_img {
    width: 130.4166666667vw;
    height: 58.4027777778vw;
    transform: translateX(calc(-50% - 25vw));
  }
}
@media screen and (max-width: 1150px) {
  .bg_section_deco_img {
    display: none;
  }
}

.nav {
  position: fixed;
  z-index: 0;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1150px) {
  .nav {
    position: fixed;
    z-index: 20;
    inset: 0;
    background-image: url("../img/nav_bg.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding-bottom: 6rem;
    width: calc(100% - 4rem);
    height: calc(100% - 2rem);
    margin: auto;
  }
}

.nav.is_nav_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow: auto;
}
.nav.is_nav_open .cta_reserve.is-animated {
  transform: initial;
  transition: initial;
}
@media screen and (max-width: 1150px) {
  .nav.is_nav_open .cta_reserve {
    pointer-events: auto;
  }
  .nav.is_nav_open .nav_01,
  .nav.is_nav_open .nav_02 {
    pointer-events: auto;
  }
}

.nav_inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media screen and (max-width: 1150px) {
  .nav_inner {
    padding: 3rem 3rem 0;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    max-height: 100%;
  }
}

.nav_01,
.nav_02 {
  position: fixed;
  z-index: 0;
  width: calc((100% - 440px) / 2);
  height: 100%;
}
@media screen and (min-width: 1441px) {
  .nav_01,
  .nav_02 {
    width: calc((100% - 30.5555555556vw) / 2);
  }
}
@media screen and (max-width: 1150px) {
  .nav_01,
  .nav_02 {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
}

.nav_01 {
  left: 0;
}
@media screen and (max-width: 1150px) {
  .nav_01 {
    left: initial;
    height: auto;
  }
}

.nav_02 {
  right: 0;
}
@media screen and (max-width: 1150px) {
  .nav_02 {
    right: initial;
    height: auto;
  }
}

.nav_list {
  position: absolute;
  z-index: 1;
  bottom: 21.5%;
  top: auto;
  left: 11.5%;
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  opacity: 0;
  transition: opacity 0.8s 0.3s var(--var-animation-timing-function);
}
@media screen and (max-width: 1150px) {
  .nav_list {
    position: relative;
    top: 0;
    bottom: initial;
    left: initial;
    gap: 1.5rem 0;
  }
}
@media (min-width: 769px) and (min-aspect-ratio: 2/1) {
  .nav_list {
    bottom: 5%;
  }
}

@media screen and (max-width: 1150px) {
  .nav_item {
    text-align: center;
  }
}

.nav_link {
  display: block;
  color: transparent; /* テキスト本体は透明にする */
  text-shadow: 0 -1.5em 0 rgba(255, 255, 255, 0.6), 0 0 0 rgba(255, 255, 255, 0.6);
  transition: text-shadow 0.3s;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
}
@media screen and (min-width: 1441px) {
  .nav_link {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 1150px) {
  .nav_link {
    font-size: 1.5rem;
  }
}
.nav_link:hover {
  text-shadow: 0 0 0 rgba(255, 255, 255, 0.6), 0 1.5em 0 rgba(255, 255, 255, 0.6); /* 2つの影の位置を上方向に1.5emずつずらす */
}

.nav_btnbox {
  display: none;
  transition: all 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 1150px) {
  .nav_btnbox {
    display: block;
    position: fixed;
    bottom: 2rem;
    z-index: 30;
    width: calc(100% - 4rem);
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    overflow: hidden;
    padding: 1rem;
    pointer-events: auto;
    opacity: 0;
    transition: opacity 0.8s 0.4s var(--var-opacity-timing-function);
  }
}
.nav_btnbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: -1;
}

.nav_btnbox_inner {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 1150px) {
  .nav_btn {
    position: relative;
    width: 48px;
    height: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: block;
    margin: 0 auto;
  }
  .nav_btn_line,
  .nav_btn_line::before,
  .nav_btn_line::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: translateX(-50%);
    transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  }
  .nav_btn_line {
    top: 50%;
  }
  .nav_btn_line::before {
    top: -4px;
  }
  .nav_btn_line::after {
    top: 4px;
  }
  .nav_btnbox.is_active::before {
    background-color: transparent;
    backdrop-filter: none;
  }
  .nav_btnbox.is_active .nav_btn .nav_btn_line {
    background: transparent;
  }
  .nav_btnbox.is_active .nav_btn .nav_btn_line::before {
    top: 0;
    transform: translateX(-50%) rotate(10deg);
  }
  .nav_btnbox.is_active .nav_btn .nav_btn_line::after {
    top: 0;
    transform: translateX(-50%) rotate(-10deg);
  }
}
.cta_reserve {
  position: absolute;
  top: min(27%, 260px);
  left: 45%;
  transform: translate(-50%, 0%) scale(0);
  z-index: 3;
  color: #fff;
  border-radius: 5px;
  max-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (min-width: 1441px) {
  .cta_reserve {
    max-width: 16.6666666667vw;
    top: 20%;
  }
}
@media screen and (max-width: 1320px) {
  .cta_reserve {
    max-width: initial;
    top: 10%;
  }
}
@media screen and (max-width: 1150px) {
  .cta_reserve {
    position: relative;
    left: initial;
    top: initial;
    transform: initial;
    margin: 3rem auto 0;
    width: 20rem;
    pointer-events: none;
  }
}
@media (min-width: 769px) and (min-aspect-ratio: 2/1) {
  .cta_reserve {
    top: 16%;
    left: 40%;
    max-width: 12.5vw;
  }
}

/* 初回MV表示用 */
.cta_reserve.is-animated {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity 0.8s 0.8s var(--var-animation-timing-function), visibility 0s linear 0s;
}
@media screen and (max-width: 1150px) {
  .cta_reserve.is-animated {
    transform: initial;
    transition: initial;
    pointer-events: none;
  }
}

/* featureで隠す用 */
.cta_reserve.is-hide {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 0) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}

/* feature通過後に再表示する用 */
.cta_reserve.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s linear 0s;
}

.cta_reserve_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px;
  padding: 30px 30px 20px 30px;
}
@media screen and (min-width: 1441px) {
  .cta_reserve_inner {
    gap: 1.3888888889vw;
    padding: 2.0833333333vw 2.0833333333vw 1.3888888889vw 2.0833333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_reserve_inner {
    gap: 1rem;
    padding: 2.7rem 2.5rem 2rem 2.5rem;
  }
}
@media (min-width: 769px) and (min-aspect-ratio: 2/1) {
  .cta_reserve_inner {
    gap: 1.0416666667vw;
    padding: 1.0416666667vw 1.0416666667vw 0.8333333333vw 1.0416666667vw;
  }
}

.cta_reserve_thumb {
  flex: 0 0 64px;
  width: 180px;
  max-width: 100%;
}
@media screen and (min-width: 1441px) {
  .cta_reserve_thumb {
    width: 12.5vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_reserve_thumb {
    width: 14.8rem;
  }
}
@media (min-width: 769px) and (min-aspect-ratio: 2/1) {
  .cta_reserve_thumb {
    width: 9.375vw;
  }
}

.cta_reserve_img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.cta_reserve_body {
  flex: 1;
  min-width: 0;
  margin-top: 7px;
}
@media screen and (min-width: 1441px) {
  .cta_reserve_body {
    margin-top: 0.4861111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_reserve_body {
    margin-top: 0;
  }
}

.cta_reserve_title {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 2px 10px;
}
@media screen and (min-width: 1441px) {
  .cta_reserve_title {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_reserve_title {
    font-size: 1rem;
    padding: 1px 8px;
  }
}
@media (min-width: 769px) and (min-aspect-ratio: 2/1) {
  .cta_reserve_title {
    font-size: 0.5729166667vw;
  }
}

.cta_reserve_link {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 1441px) {
  .cta_reserve_link {
    font-size: 0.9722222222vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_reserve_link {
    font-size: 1.3rem;
  }
}
@media (min-width: 769px) and (min-aspect-ratio: 2/1) {
  .cta_reserve_link {
    font-size: 0.625vw;
  }
}
.cta_reserve_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
  transition: background-color 0.5s ease;
}
.cta_reserve_link .strong {
  font-size: 20px;
  font-weight: 700;
  margin-right: 0.25em;
}
@media screen and (min-width: 1441px) {
  .cta_reserve_link .strong {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1150px) {
  .cta_reserve_link .strong {
    font-size: 1.6rem;
  }
}
@media (min-width: 769px) and (min-aspect-ratio: 2/1) {
  .cta_reserve_link .strong {
    font-size: 0.8333333333vw;
  }
}
.cta_reserve_link .link_text {
  position: relative;
  display: inline-block;
  padding-right: 25px;
}
@media screen and (min-width: 1441px) {
  .cta_reserve_link .link_text {
    padding-right: 1.7361111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_reserve_link .link_text {
    padding-right: 1.3rem;
  }
}
.cta_reserve_link .link_text::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 0;
  flex-shrink: 0;
  width: 8px;
  height: 12px;
  background-color: #fff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' viewBox='0 0 8 12'%3E%3Cpath fill='%23fff' d='M7.36033 5.15067C7.62033 5.35083 7.62033 5.74292 7.36033 5.94308L0.805158 10.9893C0.476374 11.2425 0.000155926 11.0081 0.000155926 10.5931V0.500599C0.000155926 0.0856773 0.476373 -0.148704 0.805157 0.104399L7.36033 5.15067Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' viewBox='0 0 8 12'%3E%3Cpath fill='%23fff' d='M7.36033 5.15067C7.62033 5.35083 7.62033 5.74292 7.36033 5.94308L0.805158 10.9893C0.476374 11.2425 0.000155926 11.0081 0.000155926 10.5931V0.500599C0.000155926 0.0856773 0.476373 -0.148704 0.805157 0.104399L7.36033 5.15067Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media screen and (min-width: 1441px) {
  .cta_reserve_link .link_text::after {
    width: 0.5555555556vw;
    height: 0.8333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_reserve_link .link_text::after {
    width: 1rem;
    height: 0.975rem;
    top: 44%;
  }
}

.cta_reserve_link:hover::before {
  background-color: rgba(255, 255, 255, 0.3);
}

.cta_official_box {
  position: absolute;
  z-index: 10;
  right: 58px;
  bottom: 21.5%;
  top: auto;
  opacity: 0;
  transition: opacity 0.8s 0.3s var(--var-animation-timing-function);
}
@media screen and (min-width: 1441px) {
  .cta_official_box {
    right: 4.0277777778vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_official_box {
    position: relative;
    top: 0;
    right: initial;
    bottom: initial;
  }
}
@media (min-width: 769px) and (min-aspect-ratio: 2/1) {
  .cta_official_box {
    bottom: 5%;
  }
}

.cta_official {
  color: #E4E4E4;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1150px) {
  .cta_official {
    font-size: 1.4rem;
  }
}

.cta_official_link {
  position: relative;
  z-index: 1;
  display: inline-block;
}
@media screen and (min-width: 1441px) {
  .cta_official_link {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_official_link {
    display: none;
  }
}

.cta_official_deco {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: -12px;
  width: 104px;
  height: 104px;
  display: inline-block;
}

.cta_sns_box {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
@media screen and (min-width: 1441px) {
  .cta_sns_box {
    margin-top: 2.0833333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_sns_box {
    margin-top: 2rem;
    justify-content: center;
  }
}

.cta_sns_list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 1441px) {
  .cta_sns_list {
    gap: 1.3888888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_sns_list {
    gap: 2rem;
  }
}

.cta_sns_icon {
  opacity: 0.6;
}
.cta_sns_icon.insta_icon {
  width: 20px;
}
@media screen and (min-width: 1441px) {
  .cta_sns_icon.insta_icon {
    width: 1.3888888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_sns_icon.insta_icon {
    width: 2rem;
  }
}
.cta_sns_icon.facebook_icon {
  width: 11px;
}
@media screen and (min-width: 1441px) {
  .cta_sns_icon.facebook_icon {
    width: 0.7638888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_sns_icon.facebook_icon {
    width: 1.1rem;
  }
}
.cta_sns_icon.youtube_icon {
  width: 24px;
}
@media screen and (min-width: 1441px) {
  .cta_sns_icon.youtube_icon {
    width: 1.6666666667vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_sns_icon.youtube_icon {
    width: 2.4rem;
  }
}
.cta_sns_icon.x_icon {
  width: 18px;
}
@media screen and (min-width: 1441px) {
  .cta_sns_icon.x_icon {
    width: 1.25vw;
  }
}
@media screen and (max-width: 1150px) {
  .cta_sns_icon.x_icon {
    width: 1.8rem;
  }
}

.pagetop_link {
  position: absolute;
  top: 30px;
  right: 64px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: scale(0);
}
@media screen and (min-width: 1441px) {
  .pagetop_link {
    top: 2.0833333333vw;
    right: 4.4444444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .pagetop_link {
    top: 3rem;
    right: 6.4rem;
    display: none;
  }
}

.pagetop_link.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.arrow_circle {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 1441px) {
  .arrow_circle {
    width: 4.5833333333vw;
    height: 4.5833333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .arrow_circle {
    width: 6.6rem;
    height: 6.6rem;
  }
}

.--arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 15px;
  background-color: var(--end-arrow-color, #fff);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='15' viewBox='0 0 12 15'%3E%3Cpath fill='%23fff' d='M0.146339 5.50356C-0.0488508 5.69875 -0.0487061 6.01531 0.146339 6.21059C0.341601 6.40586 0.658108 6.40586 0.85337 6.21059L5.8563 1.20669L10.8602 6.21059C11.0555 6.40586 11.372 6.40586 11.5672 6.21059C11.7622 6.01531 11.7624 5.69873 11.5672 5.50356L6.20981 0.147117C6.01453 -0.0479286 5.69797 -0.0480732 5.50278 0.147117L0.146339 5.50356Z'/%3E%3Cpath fill='%23fff' d='M5.35645 0.500001C5.35665 0.224033 5.58043 5.02225e-07 5.85645 4.9016e-07C6.13246 4.78095e-07 6.35624 0.224033 6.35645 0.5L6.35645 13.8926C6.35645 14.1687 6.13259 14.3926 5.85645 14.3926C5.5803 14.3926 5.35645 14.1687 5.35645 13.8926L5.35645 0.500001Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='15' viewBox='0 0 12 15'%3E%3Cpath fill='%23fff' d='M0.146339 5.50356C-0.0488508 5.69875 -0.0487061 6.01531 0.146339 6.21059C0.341601 6.40586 0.658108 6.40586 0.85337 6.21059L5.8563 1.20669L10.8602 6.21059C11.0555 6.40586 11.372 6.40586 11.5672 6.21059C11.7622 6.01531 11.7624 5.69873 11.5672 5.50356L6.20981 0.147117C6.01453 -0.0479286 5.69797 -0.0480732 5.50278 0.147117L0.146339 5.50356Z'/%3E%3Cpath fill='%23fff' d='M5.35645 0.500001C5.35665 0.224033 5.58043 5.02225e-07 5.85645 4.9016e-07C6.13246 4.78095e-07 6.35624 0.224033 6.35645 0.5L6.35645 13.8926C6.35645 14.1687 6.13259 14.3926 5.85645 14.3926C5.5803 14.3926 5.35645 14.1687 5.35645 13.8926L5.35645 0.500001Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media screen and (min-width: 1441px) {
  .--arrow {
    width: 0.8333333333vw;
    height: 1.0416666667vw;
  }
}
@media screen and (max-width: 1150px) {
  .--arrow {
    width: 1.2rem;
    height: 1.5rem;
  }
}

.btn_cta_reserve {
  width: min(97%, 370px);
  margin: 0 auto;
  color: #fff;
}
@media screen and (min-width: 1441px) {
  .btn_cta_reserve {
    width: 25.6944444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .btn_cta_reserve {
    width: 100%;
    padding: 0 2rem;
  }
}
.btn_cta_reserve .hosoku {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.03em;
  margin-top: 16px;
  line-height: 1.5;
}
@media screen and (min-width: 1441px) {
  .btn_cta_reserve .hosoku {
    margin-top: 1.1111111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .btn_cta_reserve .hosoku {
    margin-top: 1rem;
    letter-spacing: -0.04em;
  }
}

.btn_cta_reserve_link {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  margin: 48px auto 0;
  width: 100%;
  aspect-ratio: 370/90;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1441px) {
  .btn_cta_reserve_link {
    font-size: 0.9722222222vw;
    margin-top: 3.3333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .btn_cta_reserve_link {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
}
.btn_cta_reserve_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_gradation04.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}
.btn_cta_reserve_link .strong {
  font-size: 20px;
  font-weight: 700;
  margin-right: 0.25em;
  font-size: 1.25em;
}
@media screen and (min-width: 1441px) {
  .btn_cta_reserve_link .strong {
    font-size: 1.3888888889vw;
    margin-right: 0.3472222222vw;
  }
}
@media screen and (max-width: 1150px) {
  .btn_cta_reserve_link .strong {
    font-size: 2rem;
    margin-right: 0.5rem;
  }
}
.btn_cta_reserve_link .link_text {
  position: relative;
  display: inline-block;
  padding-right: 60px;
  margin-left: 25px;
}
@media screen and (min-width: 1441px) {
  .btn_cta_reserve_link .link_text {
    padding-right: 4.1666666667vw;
    margin-left: 1.7361111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .btn_cta_reserve_link .link_text {
    padding-right: 5rem;
    padding-left: 3rem;
  }
}
.btn_cta_reserve_link .link_text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  flex-shrink: 0;
  width: 8px;
  height: 12px;
  background-color: #fff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' viewBox='0 0 8 12'%3E%3Cpath fill='%23fff' d='M7.36033 5.15067C7.62033 5.35083 7.62033 5.74292 7.36033 5.94308L0.805158 10.9893C0.476374 11.2425 0.000155926 11.0081 0.000155926 10.5931V0.500599C0.000155926 0.0856773 0.476373 -0.148704 0.805157 0.104399L7.36033 5.15067Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' viewBox='0 0 8 12'%3E%3Cpath fill='%23fff' d='M7.36033 5.15067C7.62033 5.35083 7.62033 5.74292 7.36033 5.94308L0.805158 10.9893C0.476374 11.2425 0.000155926 11.0081 0.000155926 10.5931V0.500599C0.000155926 0.0856773 0.476373 -0.148704 0.805157 0.104399L7.36033 5.15067Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media screen and (min-width: 1441px) {
  .btn_cta_reserve_link .link_text::after {
    width: 0.5555555556vw;
    height: 0.8333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .btn_cta_reserve_link .link_text::after {
    right: 1rem;
    width: 0.8rem;
    height: 1.675rem;
  }
}

.btn_cta_reserve_link:hover::before {
  background-image: url(../img/bg_gradation04_hover.png);
}

.mv {
  position: relative;
}

.mv_contnet {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1150px) {
  .mv_contnet {
    height: min(100% - 22.5rem, 100svh - 8rem);
  }
}

.mv_content_top {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 1150px) {
  .mv_content_top {
    padding-top: 1.8rem;
    padding: 1.8rem 2rem 0;
  }
}

.mv_logo {
  opacity: 0.6;
  width: 8rem;
  opacity: 0;
  transition: opacity 0.8s 0.3s var(--var-animation-timing-function);
}

.mv_copy {
  margin: 45px auto 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s 0.6s var(--var-animation-timing-function);
}
@media screen and (min-width: 1441px) {
  .mv_copy {
    margin: 3.125vw auto 0;
  }
}
@media screen and (max-width: 1150px) {
  .mv_copy {
    margin: 0.7rem auto 0;
  }
}

.mv_copy_img {
  width: 386px;
}
@media screen and (min-width: 1441px) {
  .mv_copy_img {
    width: 26.8055555556vw;
  }
}
@media screen and (max-width: 1150px) {
  .mv_copy_img {
    max-width: 100%;
    width: 100%;
  }
}

.mv_titlebox {
  padding-bottom: 190px;
  padding-left: 40px;
}
@media screen and (min-width: 1441px) {
  .mv_titlebox {
    padding-bottom: 13.1944444444vw;
    padding-left: 2.7777777778vw;
  }
}
@media screen and (max-width: 1150px) {
  .mv_titlebox {
    padding: 0 1.2rem 0 3.2rem;
  }
}

.mv_title {
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s 0.8s var(--var-animation-timing-function);
}
.mv_title_img {
  max-width: initial;
  width: 567.5px;
}
@media screen and (min-width: 1441px) {
  .mv_title_img {
    width: 39.4097222222vw;
  }
}
@media screen and (max-width: 1150px) {
  .mv_title_img {
    max-width: 100%;
    width: 100%;
  }
}

.mv_slider {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s 0.3s var(--var-animation-timing-function);
}
@media screen and (max-width: 1150px) {
  .mv_slider {
    width: 100%;
    margin: 0 auto;
    border: none;
  }
}
.mv_slider .mv_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s 0.3s var(--var-animation-timing-function);
}
@media screen and (max-width: 1150px) {
  .mv_slider .mv_cover {
    border-radius: 0;
  }
}
.mv_slider .mv_cover_img {
  width: 100%;
}
.mv_slider .mv_slider_image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 215.9090909091%;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 1150px) {
  .mv_slider .mv_slider_image {
    padding-top: 216%;
    border-radius: 0;
  }
}
.mv_slider .mv_slider_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.chapter_01 {
  padding: 80px 0 80px;
  position: relative;
  background-image: url(../img/bg_gradation01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 30px 30px 0 0;
  margin-top: -63px;
}
@media screen and (min-width: 1441px) {
  .chapter_01 {
    padding: 80px 0 80px;
  }
}
@media screen and (max-width: 1150px) {
  .chapter_01 {
    padding: 4.5rem 0 6.3rem;
    margin-top: -14.5rem;
  }
}

.chapter_02 {
  position: relative;
  z-index: 3;
}
.chapter_02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background-image: url(../img/bg_gradation02.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  pointer-events: none;
  margin-top: -1px;
}

.intro {
  position: relative;
}

.intro_testbox_inner {
  padding: 0 20px;
}
@media screen and (min-width: 1441px) {
  .intro_testbox_inner {
    padding: 0 1.3888888889vw;
  }
}

.intro_title {
  background: var(--4, linear-gradient(90deg, #FF7C19 0%, #994A0F 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 22px;
}
@media screen and (min-width: 1441px) {
  .intro_title {
    margin-bottom: 1.5277777778vw;
  }
}
@media screen and (max-width: 1150px) {
  .intro_title {
    margin-bottom: 1.8rem;
  }
}

.intro_text {
  background: var(--4, linear-gradient(90deg, #FF7C19 0%, #994A0F 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 1441px) {
  .intro_text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .intro_text {
    font-size: 1.5rem;
  }
}
.intro_text + .intro_text {
  margin-top: 17px;
}
@media screen and (min-width: 1441px) {
  .intro_text + .intro_text {
    margin-top: 1.1805555556vw;
  }
}
@media screen and (max-width: 1150px) {
  .intro_text + .intro_text {
    margin-top: 1.4rem;
  }
}

.intro_imgbox {
  margin-top: 50px;
}
@media screen and (min-width: 1441px) {
  .intro_imgbox {
    margin-top: 3.4722222222vw;
  }
}
@media screen and (max-width: 1150px) {
  .intro_imgbox {
    margin-top: 3.8rem;
    overflow: hidden;
  }
}

.intro_image01 {
  width: 63.6363636364%;
  transform: translateX(-30px);
  transition: transform 0.8s 0.3s var(--var-animation-timing-function), opacity 0.8s 0.3s var(--var-animation-timing-function);
}
@media screen and (min-width: 1441px) {
  .intro_image01 {
    transform: translateX(-2.0833333333vw);
  }
}
@media screen and (max-width: 1150px) {
  .intro_image01 {
    transform: translateX(-3rem);
  }
}
.intro_image02 {
  width: 68.4090909091%;
  margin-left: auto;
  margin-top: -30px;
  transform: translateX(30px);
  transition: transform 0.8s 0.8s var(--var-animation-timing-function), opacity 0.8s 0.8s var(--var-animation-timing-function);
}
@media screen and (min-width: 1441px) {
  .intro_image02 {
    margin-top: -2.0833333333vw;
    transform: translateX(2.0833333333vw);
  }
}
@media screen and (max-width: 1150px) {
  .intro_image02 {
    margin-top: -3rem;
  }
}
.intro_img {
  width: 100%;
}

.about {
  margin-top: 48px;
  overflow: hidden;
}
@media screen and (min-width: 1441px) {
  .about {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .about {
    margin-top: 4rem;
  }
}

.about_title {
  background: var(--4, linear-gradient(90deg, #FF7C19 0%, #994A0F 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media screen and (min-width: 1441px) {
  .about_title {
    margin-bottom: 2.7777777778vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .about_title {
    font-size: 1.6rem;
    margin: 0.5rem auto 2.5rem 4rem;
  }
}

.about_subtitle {
  background: var(--4, linear-gradient(90deg, #FF7C19 0%, #994A0F 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1441px) {
  .about_subtitle {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .about_subtitle {
    font-size: 1.5rem;
  }
}

.about_text {
  background: var(--4, linear-gradient(90deg, #FF7C19 0%, #994A0F 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 1441px) {
  .about_text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  .about_text {
    font-size: 1.5rem;
  }
}
.about_text + .about_text {
  margin-top: 17px;
}
@media screen and (min-width: 1441px) {
  .about_text + .about_text {
    margin-top: 1.1805555556vw;
  }
}
@media screen and (max-width: 768px) {
  .about_text + .about_text {
    margin-top: 1.7rem;
    line-height: 1.7;
  }
}

.about_imgbox {
  margin-top: 48px;
}
@media screen and (min-width: 1441px) {
  .about_imgbox {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .about_imgbox {
    margin-top: 3.5rem;
  }
}

.about_imgbox_inner {
  padding: 0 20px;
}

.about_image_wrapper {
  position: relative;
  margin: 0 auto;
}

.about_image {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 0;
  padding-top: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.about_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.about_img_dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}
.about_img_dot::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (min-width: 1441px) {
  .about_img_dot::before {
    width: 0.6944444444vw;
    height: 0.6944444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .about_img_dot::before {
    width: 1rem;
    height: 1rem;
  }
}

.about_img_dot01 {
  animation: rotate 10s linear infinite;
}
.about_img_dot01::before {
  top: 0;
  left: 50%;
  transform: translate(0, -50%);
}

.about_img_dot02 {
  animation: rotate 14s linear infinite;
}
.about_img_dot02::before {
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
}

.about_img_dot03 {
  animation: rotate 16s linear infinite;
}
.about_img_dot03::before {
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about_img_dot04 {
  animation: rotate 18s linear infinite;
}
.about_img_dot04::before {
  top: 50%;
  left: 0;
  transform: translate(-50%, 0);
}

.feature {
  padding: 70px 0 0;
  position: relative;
}
@media screen and (min-width: 1441px) {
  .feature {
    padding: 4.8611111111vw 0 0;
  }
}
@media screen and (max-width: 1150px) {
  .feature {
    padding: 5rem 0 0;
    overflow-x: clip;
    overflow-y: visible;
  }
}

.feature_title {
  text-align: center;
  margin-bottom: 35px;
  font-size: 16px;
}
@media screen and (min-width: 1441px) {
  .feature_title {
    margin-bottom: 2.4305555556vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .feature_title {
    margin-bottom: 3.5rem;
    font-size: 1.6rem;
  }
}

.feature_title_en {
  text-align: center;
}

.feature_intro_title {
  display: flex;
  flex-direction: column;
}
.feature_intro_title .--top {
  font-size: 15px;
  text-align: left;
}
@media screen and (min-width: 1441px) {
  .feature_intro_title .--top {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 1150px) {
  .feature_intro_title .--top {
    font-size: 1.3rem;
  }
}
.feature_intro_title .--middle {
  display: flex;
  align-items: flex-end;
  font-size: 20px;
  text-align: left;
}
@media screen and (min-width: 1441px) {
  .feature_intro_title .--middle {
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .feature_intro_title .--middle {
    font-size: 1.8rem;
  }
}
.feature_intro_title .--bottom {
  font-size: 24px;
  letter-spacing: 0.05em;
  text-align: right;
  line-height: 1.5;
}
@media screen and (min-width: 1441px) {
  .feature_intro_title .--bottom {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 1150px) {
  .feature_intro_title .--bottom {
    font-size: 2.1rem;
  }
}
.feature_intro_title .strong {
  font-size: 80px;
  margin-right: 0.1em;
}
@media screen and (min-width: 1441px) {
  .feature_intro_title .strong {
    font-size: 5.5555555556vw;
  }
}
@media screen and (max-width: 1150px) {
  .feature_intro_title .strong {
    font-size: 7rem;
  }
}

.feature_contents {
  position: relative;
}
@media screen and (max-width: 1150px) {
  .feature_intro {
    padding: 0 2rem;
  }
}

/* 1セット分のスクロール量 */
.feature_set {
  position: relative;
  min-height: 140vh;
}

/* 最後だけ、数字が流れたあとカードが抜ける余白を作る */
.feature_set:last-child {
  min-height: 180vh;
}

.feature_set_inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 数字：stickyの外なのでスクロールで流れる */
.feature_num {
  position: relative;
  z-index: 20;
  height: 0;
  font-size: 128px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.05em;
  pointer-events: none;
  transform: translate(-37%, 170px);
}
@media screen and (min-width: 1441px) {
  .feature_num {
    font-size: 8.8888888889vw;
  }
}
@media screen and (max-width: 1320px) {
  .feature_num {
    transform: translate(-37%, 310px);
  }
}
@media screen and (max-width: 1150px) {
  .feature_num {
    font-size: 7rem;
    transform: translate(4%, 12rem);
  }
}
@media screen and (max-width: 768px) {
  .feature_num {
    font-size: 7rem;
    transform: translate(4%, 14rem);
  }
}

/* itemは全て同じ親の直下でsticky */
.feature_item {
  position: sticky;
  top: 0;
  height: 100vh;
  max-height: 100%;
  padding: 40px 20px 40px;
  box-sizing: border-box;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1150px) {
  .feature_item {
    height: 100svh;
    padding: 3em 0 4rem;
    margin-top: 2rem;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .feature_item {
    padding: 8rem 0 4rem;
  }
}

/* 後続ほど上に重ねる */
.feature_item01 {
  z-index: 1;
}

.feature_item02 {
  z-index: 2;
}

.feature_item03 {
  z-index: 3;
}

.feature_item_content {
  position: relative;
  height: auto;
  display: flex;
  width: 100%;
}

.feature_item_textbox {
  position: absolute;
  z-index: 2;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1150px) {
  .feature_item_textbox {
    padding: 0 2rem;
    bottom: 17%;
  }
}

.feature_item_title {
  font-size: 36px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1441px) {
  .feature_item_title {
    font-size: 2.5vw;
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (max-width: 1150px) {
  .feature_item_title {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
}

.feature_item_text {
  font-size: 16px;
  line-height: 2;
  text-align: left;
}
@media screen and (min-width: 1441px) {
  .feature_item_text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .feature_item_text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.feature_item_imgbox {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1150px) {
  .feature_item_imgbox {
    overflow: hidden;
  }
}

.feature_item_img {
  display: block;
  max-width: initial;
  width: 175%;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1150px) {
  .feature_item_img {
    width: 115%;
  }
}
@media screen and (max-width: 768px) {
  .feature_item_img {
    width: 115%;
  }
}
@media screen and (max-width: 680px) {
  .feature_item_img {
    width: 133.334%;
  }
}

.feature_end_spacer {
  height: 30vh;
}
@media screen and (max-width: 1150px) {
  .feature_end_spacer {
    height: 40vh;
  }
}

@media (min-width: 769px) and (min-aspect-ratio: 2/1) {
  .feature {
    overflow: visible;
  }
  .feature_intro {
    margin-bottom: 40px;
  }
  .feature_num {
    transform: translate(-20%, 60px);
    font-size: 100px;
    margin: 40px 0 16px;
    padding: 0 20px;
  }
  .feature_item {
    position: relative;
    min-height: initial;
    height: auto;
    padding: 0px 0 40px;
    overflow: visible;
  }
  .feature_item_textbox {
    padding: 0 20px;
    margin-top: 24px;
  }
  .feature_item_img {
    width: 150%;
  }
  .feature_end_spacer {
    display: none;
  }
}
.flow {
  position: relative;
  padding: 155px 0 70px;
  background-color: #3B3C3F;
  margin-top: -85px;
}
@media screen and (min-width: 1441px) {
  .flow {
    padding: 10.7638888889vw 0 4.8611111111vw;
    margin-top: -5.9027777778vw;
  }
}
@media screen and (max-width: 1150px) {
  .flow {
    padding: 13.5rem 0 6rem;
  }
}

.flow_inner {
  overflow: hidden;
}

.flow_title_wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media screen and (max-width: 1150px) {
  .flow_title_ja {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1150px) {
  .flow_title_en {
    margin-bottom: 0;
  }
}

.flow_slider_container {
  margin-top: 40px;
  margin-bottom: 48px;
}
@media screen and (min-width: 1441px) {
  .flow_slider_container {
    margin-top: 2.7777777778vw;
    margin-bottom: 3.3333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .flow_slider_container {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

.flow_slider {
  width: calc(100% - 35px);
  margin-right: 0;
}
@media screen and (min-width: 1441px) {
  .flow_slider {
    width: calc(100% - 2.4305555556vw);
  }
}
@media screen and (max-width: 1150px) {
  .flow_slider {
    width: calc(100% - 2rem);
  }
}

.flow_slider_wrapper {
  align-items: stretch;
}

.flow_slider_item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: auto;
  display: flex;
}
.flow_slider_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_gradation05.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flow_slider_item_inner {
  position: relative;
  z-index: 1;
  padding: 38px 20px 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1441px) {
  .flow_slider_item_inner {
    padding: 2.6388888889vw 1.3888888889vw 1.3888888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .flow_slider_item_inner {
    padding: 3.8rem 2rem 2rem;
  }
}

.flow_slider_number {
  position: absolute;
  top: 8px;
  right: 13px;
}
@media screen and (min-width: 1441px) {
  .flow_slider_number {
    top: 1.1805555556vw;
    right: 0.6944444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .flow_slider_number {
    top: 1.7rem;
    right: 1rem;
  }
}
.flow_slider_number .font-en {
  font-size: 128px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.05em;
  pointer-events: none;
}

.flow_slider_image {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 30px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 1441px) {
  .flow_slider_image {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .flow_slider_image {
    margin-bottom: 3rem;
  }
}

.flow_slider_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow_slider_title {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 0.815em;
}
@media screen and (min-width: 1441px) {
  .flow_slider_title {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .flow_slider_title {
    font-size: 1.6rem;
  }
}

.flow_slider_text {
  font-size: 13px;
  line-height: 1.4;
}
@media screen and (min-width: 1441px) {
  .flow_slider_text {
    font-size: 0.9027777778vw;
  }
}
@media screen and (max-width: 1150px) {
  .flow_slider_text {
    font-size: 1.3rem;
  }
}

/* スクロールダウンの位置 */
.scroll {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  margin-right: 38px;
  margin-bottom: -3px;
}
@media screen and (min-width: 1441px) {
  .scroll {
    font-size: 0.8333333333vw;
    margin-right: 2.6388888889vw;
    margin-bottom: -0.2083333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .scroll {
    font-size: 1rem;
  }
}

.scroll_inner {
  position: relative;
  padding-right: 10px;
}
@media screen and (min-width: 1441px) {
  .scroll_inner {
    padding-right: 0.6944444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .scroll_inner {
    padding-right: 1rem;
  }
}
.scroll_inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 125px;
  height: 1px;
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  animation: scroll 2s infinite;
}

/* 矢印のアニメーション */
@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(20px, 0);
  }
  100% {
    opacity: 0;
  }
}
.gallery {
  position: relative;
}
.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: -1;
}

.gallery_wrapper {
  position: relative;
}
@media screen and (max-width: 1150px) {
  .gallery_wrapper {
    overflow: hidden;
  }
}

.gallery_top {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 44.6818181818%;
  transform: translateX(-30px);
  transition: transform 0.8s 0.3s var(--var-animation-timing-function), opacity 0.8s 0.3s var(--var-animation-timing-function);
}
.gallery_top_image01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70.5681818182%;
  clip-path: polygon(0 0, 76% 0, 100% 100%, 0 100%);
}

.gallery_top_image02 {
  position: absolute;
  top: 0;
  right: 0;
  width: 53.1818181818%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24% 100%);
}

.gallery_middle {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 44.6818181818%;
  transform: translateX(30px);
  transition: transform 0.8s 0.3s var(--var-animation-timing-function), opacity 0.8s 0.5s var(--var-animation-timing-function);
}

.gallery_middle_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.gallery_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.gallery_bottom {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50.1136363636%;
  transform: translateX(-30px);
  transition: transform 0.8s 0.3s var(--var-animation-timing-function), opacity 0.8s 0.7s var(--var-animation-timing-function);
}

.gallery_bottom_image01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 52.3409090909%;
  clip-path: polygon(0 0, 76% 0, 100% 100%, 0 100%);
}

.gallery_bottom_image02 {
  position: absolute;
  top: 0;
  right: 0;
  width: 71.6818181818%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24% 100%);
}

.plan {
  position: relative;
  z-index: 3;
  padding: 65px 0 60px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: -20px;
}
@media screen and (min-width: 1441px) {
  .plan {
    padding: 4.5138888889vw 0 4.1666666667vw;
    margin-top: -2.0833333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan {
    padding: 5.5rem 0;
    margin-top: -2rem;
  }
}
.plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_gradation03.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.plan_title_ja {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 38px;
}
@media screen and (min-width: 1441px) {
  .plan_title_ja {
    font-size: 1.8055555556vw;
    margin-bottom: 2.6388888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_title_ja {
    font-size: 1.8rem;
    margin-bottom: 3.8rem;
  }
}

@media screen and (max-width: 1150px) {
  .plan_title_en {
    margin-bottom: 0;
  }
}

.plan_lead {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 1441px) {
  .plan_lead {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_lead {
    margin-top: 1.5rem;
  }
}

.plan_hosoku {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}
@media screen and (min-width: 1441px) {
  .plan_hosoku {
    margin-top: 0.2083333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_hosoku {
    margin-top: 0.3rem;
  }
}

.plan_container {
  margin-top: 35px;
}
@media screen and (min-width: 1441px) {
  .plan_container {
    margin-top: 2.4305555556vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_container {
    margin-top: 3.5rem;
  }
}

.plan_list {
  margin-top: 70px;
  color: #555757;
}
@media screen and (min-width: 1441px) {
  .plan_list {
    margin-top: 4.8611111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_list {
    margin-top: 7rem;
  }
}

.plan_item + .plan_item {
  margin-top: 25px;
}
@media screen and (min-width: 1441px) {
  .plan_item + .plan_item {
    margin-top: 1.7361111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_item + .plan_item {
    margin-top: 2.5rem;
  }
}

.plan_copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  --plan-copy-decoration-color: #fff;
}
@media screen and (min-width: 1441px) {
  .plan_copy {
    font-size: 1.0416666667vw;
    gap: 0.4166666667vw;
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_copy {
    font-size: 1.4rem;
    gap: 0.6rem;
  }
}
.plan_copy::before, .plan_copy::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 13px;
  background-color: var(--plan-copy-decoration-color, #fff);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media screen and (min-width: 1441px) {
  .plan_copy::before, .plan_copy::after {
    width: 0.625vw;
    height: 0.9027777778vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_copy::before, .plan_copy::after {
    width: 0.9rem;
    height: 1.3rem;
  }
}
.plan_copy::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='13' viewBox='0 0 9 13' fill='none'%3E%3Cpath d='M0.413574 0.280884L8.27839 11.863' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='13' viewBox='0 0 9 13' fill='none'%3E%3Cpath d='M0.413574 0.280884L8.27839 11.863' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E");
}
.plan_copy::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='13' viewBox='0 0 9 13' fill='none'%3E%3Cpath d='M8.27832 0.280884L0.413504 11.863' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='13' viewBox='0 0 9 13' fill='none'%3E%3Cpath d='M8.27832 0.280884L0.413504 11.863' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E");
}

.plan_content {
  background: #fff;
  color: #555757;
  border-radius: 5px;
  overflow: hidden;
}

.plan_content_head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80px;
  padding: 20px 50px;
  position: relative;
  border: none;
  cursor: pointer;
}

.plan_shopname {
  color: #995900;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 1441px) {
  .plan_shopname {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_shopname {
    font-size: 1.8rem;
  }
}

.plan_toggle {
  position: absolute;
  right: 20px;
  width: 32px;
  height: 32px;
}

.plan_toggle::before,
.plan_toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #9b5600;
  transform: translate(-50%, -50%) rotate(0deg);
}

.plan_toggle::before {
  width: 14px;
  height: 2px;
}

.plan_toggle::after {
  width: 2px;
  height: 14px;
  transition: opacity 0.3s, transform 0.3s;
}

.plan_content.is-open .plan_toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.plan_content_body {
  display: none;
}

.plan_content_body_inner {
  padding: 0 35px 60px;
}
@media screen and (min-width: 1441px) {
  .plan_content_body_inner {
    padding: 0 2.4305555556vw 4.1666666667vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_content_body_inner {
    padding: 0 1.75rem 3rem;
  }
}

.plan_info_text {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1441px) {
  .plan_info_text {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_info_text {
    font-size: 1.2rem;
  }
}
.plan_info_text .--large {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1;
  margin-left: 0.25em;
}

.plan_info_subtext {
  font-size: 11px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 1441px) {
  .plan_info_subtext {
    font-size: 0.7638888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_info_subtext {
    font-size: 1rem;
  }
}

.price_try_box {
  position: relative;
  color: #fff;
  width: 100%;
  min-height: 50px;
  padding: 8px 20px;
  border-radius: 5px;
  margin-top: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1441px) {
  .price_try_box {
    padding: 0.6944444444vw 1.3888888889vw;
    margin-top: 0.6944444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .price_try_box {
    padding: 1rem 2rem;
    margin-top: 1rem;
  }
}
.price_try_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_gradation05.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}
.price_try_box .price_try_box_wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 1441px) {
  .price_try_box .price_try_box_wrapper {
    gap: 0.6944444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .price_try_box .price_try_box_wrapper {
    gap: 1rem;
  }
}
.price_try_box .price_head {
  color: #fff;
}
.price_try_box .price_head_text {
  font-size: 12px;
}
@media screen and (min-width: 1441px) {
  .price_try_box .price_head_text {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .price_try_box .price_head_text {
    font-size: 1.2rem;
  }
}
.price_try_box .price_unit {
  font-size: 11px;
  font-weight: 400;
  font-family: "Zen Dots", "Kaku Gothic Pro", sans-serif;
}
@media screen and (min-width: 1441px) {
  .price_try_box .price_unit {
    font-size: 0.7638888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .price_try_box .price_unit {
    font-size: 1.1rem;
  }
}
.price_try_box .price_num {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Dots", "Kaku Gothic Pro", sans-serif;
}
@media screen and (min-width: 1441px) {
  .price_try_box .price_num {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .price_try_box .price_num {
    font-size: 1.6rem;
  }
}
.price_try_box .price_tax {
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width: 1441px) {
  .price_try_box .price_tax {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .price_try_box .price_tax {
    font-size: 1rem;
  }
}

.plan_table {
  border-radius: 5px;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid #555757;
}
@media screen and (min-width: 1441px) {
  .plan_table {
    margin-top: 1.3888888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_table {
    margin-top: 2rem;
  }
}
.plan_table + .plan_table {
  margin-top: 20px;
}
@media screen and (min-width: 1441px) {
  .plan_table + .plan_table {
    margin-top: 1.3888888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_table + .plan_table {
    margin-top: 2rem;
  }
}

.plan_table_head {
  background-color: #555757;
  text-align: center;
  padding: 0 10px;
}
@media screen and (min-width: 1441px) {
  .plan_table_head {
    padding: 0 0.6944444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_table_head {
    padding: 0.1rem 1rem;
  }
}

.plan_table_body {
  background-color: #fff;
  color: #555757;
  text-align: center;
}

.plan_table_title {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 1441px) {
  .plan_table_title {
    font-size: 0.9722222222vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_table_title {
    font-size: 1.4rem;
  }
}

.price_box {
  position: relative;
  width: 100%;
  min-height: 50px;
  overflow: hidden;
}
@media screen and (min-width: 1441px) {
  .price_box {
    min-height: 3.4722222222vw;
  }
}
@media screen and (max-width: 1150px) {
  .price_box {
    min-height: 5rem;
  }
}
.price_box .price_box_row {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 3px 25px;
  border-top: 1px solid #555757;
}
@media screen and (min-width: 1441px) {
  .price_box .price_box_row {
    padding: 0.2083333333vw 1.7361111111vw;
    gap: 0.6944444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .price_box .price_box_row {
    padding: 1rem 2.5rem;
    gap: 1rem;
  }
}
.price_box .price_head_text {
  font-size: 12px;
}
@media screen and (min-width: 1441px) {
  .price_box .price_head_text {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .price_box .price_head_text {
    font-size: 1.2rem;
  }
}
.price_box .price_unit {
  font-size: 11px;
  font-weight: 400;
  font-family: "Zen Dots", "Kaku Gothic Pro", sans-serif;
}
@media screen and (min-width: 1441px) {
  .price_box .price_unit {
    font-size: 0.7638888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .price_box .price_unit {
    font-size: 1.1rem;
  }
}
.price_box .price_num {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Dots", "Kaku Gothic Pro", sans-serif;
}
@media screen and (min-width: 1441px) {
  .price_box .price_num {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .price_box .price_num {
    font-size: 1.6rem;
  }
}
.price_box .price_tax {
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width: 1441px) {
  .price_box .price_tax {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 1150px) {
  .price_box .price_tax {
    font-size: 1rem;
  }
}

.plan_price_hosoku {
  margin-top: 12px;
}
@media screen and (min-width: 1441px) {
  .plan_price_hosoku {
    margin-top: 0.8333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .plan_price_hosoku {
    margin-top: 1.2rem;
  }
}

.information {
  position: relative;
  padding: 75px 0;
  margin-top: -20px;
  z-index: 0;
}
@media screen and (min-width: 1441px) {
  .information {
    padding: 5.2083333333vw 0;
  }
}
@media screen and (max-width: 1150px) {
  .information {
    padding: 5.5rem 0;
  }
}
.information::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}

.information_intro_wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.information_titlebox {
  position: relative;
}

.information_title_ja {
  font-size: 26px;
  font-weight: 700;
}
@media screen and (min-width: 1441px) {
  .information_title_ja {
    font-size: 1.8055555556vw;
  }
}
@media screen and (max-width: 1150px) {
  .information_title_ja {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1150px) {
  .information_title_en {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}

.information_lead_text {
  font-size: 12px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1441px) {
  .information_lead_text {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 1150px) {
  .information_lead_text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.shop_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 70px;
}
@media screen and (min-width: 1441px) {
  .shop_list {
    gap: 4.1666666667vw;
    margin-top: 4.8611111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .shop_list {
    gap: 6rem;
    margin-top: 4rem;
  }
}

.shop_item_wrapper {
  position: relative;
}

.shop_item_imgbox {
  position: relative;
  width: 64%;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 1150px) {
  .shop_item_imgbox {
    width: 60%;
  }
}

.shop_item:nth-child(even) .shop_item_imgbox {
  margin-left: auto;
}

.shop_item_overlay {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.shop_item_overlay.--black {
  background-color: #000;
  opacity: 0.3;
}
.shop_item_overlay.--white {
  background-color: #fff;
  opacity: 0;
}

.shop_item_link {
  display: block;
}

.shop_item_link:hover .shop_item_overlay {
  opacity: 0.3;
}
.shop_item_link:hover .shop_item_overlay.--black {
  opacity: 0.2;
}

.shop_item_image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.6666666667%;
}

.shop_item_img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop_item_textbox {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  right: 0;
}
@media screen and (min-width: 1441px) {
  .shop_item_textbox {
    bottom: 1.7361111111vw;
  }
}
@media screen and (max-width: 1150px) {
  .shop_item_textbox {
    bottom: 1.5rem;
    right: 1rem;
  }
}

.shop_item:nth-child(even) .shop_item_textbox {
  left: 0;
  right: initial;
}

.shop_item_title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 1441px) {
  .shop_item_title {
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .shop_item_title {
    font-size: 1.8rem;
  }
}

.shop_item_text {
  font-size: 11px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (min-width: 1441px) {
  .shop_item_text {
    font-size: 0.7638888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .shop_item_text {
    font-size: 1.1rem;
  }
}

.end {
  position: relative;
  min-height: calc(100vh - 10rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1150px) {
  .end {
    min-height: calc(100svh - 26rem);
  }
}

.end_inner {
  width: 100%;
  height: 100%;
}

.end_title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (min-width: 1441px) {
  .end_title {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 1150px) {
  .end_title {
    font-size: 2rem;
  }
}

.footer_cta_official {
  display: block;
}

.footer {
  position: relative;
  padding: 20px 0 40px;
}
@media screen and (min-width: 1441px) {
  .footer {
    padding: 1.3888888889vw 0 2.7777777778vw;
  }
}
@media screen and (max-width: 1150px) {
  .footer {
    padding: 2rem 0 6rem;
  }
}

.footer_logo {
  position: absolute;
  z-index: 20;
  top: 42%;
  left: 11.5%;
  opacity: 0.6;
  width: 185px;
}
@media screen and (max-width: 1150px) {
  .footer_logo {
    position: relative;
    top: initial;
    left: initial;
    display: block;
    width: 10.3rem;
    margin: 0 auto 3.2rem;
  }
}

.footer_cta_official_link {
  display: block;
  width: 16.34rem;
  margin: 0 auto;
  padding-left: 2.7rem;
}

@media screen and (max-width: 1150px) {
  .footer_cta_official_deco {
    bottom: -0.5rem;
  }
}

.copyright {
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (min-width: 1441px) {
  .copyright {
    font-size: 0.7638888889vw;
  }
}
@media screen and (max-width: 1150px) {
  .copyright {
    font-size: 1rem;
    margin-top: 2rem;
  }
}/*# sourceMappingURL=style.css.map */