@charset "UTF-8";
/*-----リセット-----*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
  background: #0a0a0a;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: inline;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

ul {
  list-style: none;
}

/*-----共通-----*/
.content_wrap {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .content_wrap {
    width: 96%;
  }
}
@media screen and (max-width: 767px) {
  .content_wrap {
    width: 90%;
  }
}

/*-----セクションタイトル-----*/
.ttl_wrap {
  padding: 8rem 0 0;
}

.ttl_wrap .en {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.85;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .ttl_wrap .en {
    font-size: 8rem;
  }
}

.ttl_wrap .ja {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  margin-top: 0;
  text-align: center;
}

.ttl_wrap .line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 4rem 0;
}

/*-----共通ボタン-----*/
.more_btn_purple {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 4rem 1.2rem 4.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background-image: linear-gradient(90deg, #6a11cb, #e040fb, #ff6ec7, #6a11cb);
  background-size: 300% 100%;
  background-position: 0% 0%;
  border-radius: 999px;
  transition: background-position 0.6s ease;
}
.more_btn_purple::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s, opacity 0.3s;
}
.more_btn_purple:hover {
  background-position: 100% 0%;
}
.more_btn_purple:hover::after {
  transform: rotate(45deg) translate(8px, -8px);
  opacity: 0;
}

/*-----ヘッダー-----*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    background: #0a0a0a;
  }
}
.header {
  background: transparent;
  z-index: 1000;
  padding: 2rem 0;
  transition: background 0.4s, padding 0.3s;
}

.header.change-color {
  background: #0a0a0a;
  padding: 2rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header .header_inner {
  width: 94%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header .header_inner {
    width: 90%;
  }
}

.header_r {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
@media screen and (max-width: 900px) {
  .header_r {
    display: none;
  }
}

.header_logo img {
  height: 36px;
}

.header_nav {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}
.header_nav li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: opacity 0.3s;
}
.header_nav li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 900px) {
  .header_nav {
    display: none;
  }
}

.header_cta_wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.header_cta_wrap .nav_cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  background-size: 300% 100%;
  background-position: 0% 0%;
  overflow: hidden;
  transition: background-position 0.6s ease, opacity 0.3s;
}
.header_cta_wrap .nav_cta::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s, opacity 0.3s;
}
.header_cta_wrap .nav_cta:hover {
  background-position: 100% 0%;
}
.header_cta_wrap .nav_cta:hover::after {
  transform: rotate(45deg) translate(8px, -8px);
  opacity: 0;
}
.header_cta_wrap .nav_cta:first-child {
  background-image: linear-gradient(90deg, #6a11cb, #e040fb, #ff6ec7, #6a11cb);
}
.header_cta_wrap .nav_cta:last-child {
  background-image: linear-gradient(90deg, #ff5e00, #ffb347, #ffe259, #ff5e00);
}
@media screen and (max-width: 900px) {
  .header_cta_wrap {
    display: none;
  }
}

/*-----ハンバーガー-----*/
.toggle_wrap {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: fixed;
  top: 2.4rem;
  right: 5%;
  z-index: 1100;
  padding: 8px;
}
.toggle_wrap span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.toggle_wrap.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.toggle_wrap.is-active span:nth-child(2) {
  opacity: 0;
}
.toggle_wrap.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 900px) {
  .toggle_wrap {
    display: flex;
  }
}

/*-----ドロワー-----*/
.drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: #050505;
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10rem 4rem 4rem;
}
.drawer.open {
  right: 0;
}
.drawer li {
  margin-bottom: 2.8rem;
}
.drawer a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  transition: opacity 0.3s, padding-left 0.3s;
}
.drawer a:hover {
  opacity: 0.6;
  padding-left: 8px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/*-----ヒーロー-----*/
.top_mv {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
@media screen and (max-width: 767px) {
  .top_mv {
    height: 94vh;
    min-height: auto;
  }
}

.top_mv .slide_wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 75%;
}
.top_mv .slide_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to right, #0a0a0a 0%, rgba(27, 37, 56, 0.8) 15%, rgba(27, 37, 56, 0.4) 40%, transparent 70%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top_mv .slide_wrap {
    width: 100%;
  }
  .top_mv .slide_wrap::after {
    background: linear-gradient(to bottom, transparent 15%, rgba(10, 10, 10, 0.3) 28%, rgba(10, 10, 10, 0.7) 38%, #0a0a0a 48%);
  }
}

.top_mv .slide_item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 2s ease;
}
.top_mv .slide_item.is-active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .top_mv .slide_item {
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
  }
}

.top_mv .hero_text {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 480px;
}
@media screen and (max-width: 767px) {
  .top_mv .hero_text {
    left: 5%;
    max-width: 90%;
    top: auto;
    bottom: 15%;
    transform: none;
  }
}

.top_mv .catch {
  font-size: clamp(3.6rem, 5vw, 5.6rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #fff;
}

.top_mv .lead {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2rem;
}

.top_mv .cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.8rem;
  padding: 1.4rem 4rem 1.4rem 5.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #ff5e00, #ffb347, #ffe259, #ff5e00);
  background-size: 300% 100%;
  background-position: 0% 0%;
  color: #fff;
  border: none;
  border-radius: 999px;
  overflow: hidden;
  transition: background-position 0.6s ease, opacity 0.3s;
}
.top_mv .cta_btn::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.3s, opacity 0.3s;
}
.top_mv .cta_btn:hover {
  background-position: 100% 0%;
  opacity: 0.9;
}
.top_mv .cta_btn:hover::after {
  transform: rotate(45deg) translate(8px, -8px);
  opacity: 0;
}

.top_mv .marquee_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  overflow: hidden;
  padding: 0;
}

.top_mv .marquee_track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.top_mv .marquee_track span {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(10rem, 14vw, 20rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
  padding: 0 2rem;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*-----ギャラリー-----*/
.top_gallery {
  padding: 10rem 0 0 0;
  background: #0a0a0a;
}
.top_gallery .content_wrap {
  width: 94%;
}
.top_gallery .ttl_wrap {
  padding: 0;
  margin-bottom: 3rem;
}
.top_gallery .ttl_wrap .en {
  text-align: right;
}
.top_gallery .ttl_wrap .ja {
  text-align: right;
}

.gallery_slider .splide__slide {
  padding: 0 2px;
}
.gallery_slider img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/*-----セクション共通-----*/
.section {
  padding: 0 0 10rem;
  background: #0a0a0a;
}

.section_alt {
  background: #141414;
  padding: 10rem 0;
}

/*-----サービス-----*/
.top_service {
  padding: 10rem 0 0 0;
}
.top_service .ttl_wrap {
  padding: 0;
  margin-bottom: 6rem;
}

.service_area {
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service_area {
    display: block;
  }
}

.service_side {
  width: 50%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .service_side {
    display: none;
  }
}

.service_images {
  width: 100%;
  height: 100%;
  position: relative;
}
.service_images .service_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s;
}
.service_images .service_img.service_img01 {
  opacity: 1;
}

.service_body {
  width: 50%;
  padding-left: 8rem;
}
@media screen and (max-width: 767px) {
  .service_body {
    width: 100%;
    padding-left: 0;
  }
}

.service_item {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 0;
}
@media screen and (max-width: 767px) {
  .service_item {
    min-height: auto;
    padding: 4rem 5%;
  }
}

.service_head {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}

.service_num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.service_title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .service_title {
    font-size: 2.6rem;
    padding-bottom: 10px;
  }
}

.service_text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}

/*-----2カラム（テキスト + 画像）-----*/
.two_col {
  display: flex;
  gap: 4.8rem;
  align-items: flex-start;
  margin-bottom: 6rem;
}
.two_col .col_text {
  flex: 1;
}
.two_col .col_text h3 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}
.two_col .col_text p {
  font-size: 1.6rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
}
.two_col .col_img {
  flex: 1;
  overflow: hidden;
}
.two_col .col_img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.two_col.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .two_col {
    flex-direction: column;
    gap: 3rem;
  }
  .two_col.reverse {
    flex-direction: column;
  }
}

/*-----ニュース-----*/
.top_news {
  padding: 12rem 0;
  background: #0a0a0a;
}
@media screen and (max-width: 767px) {
  .top_news {
    padding: 6rem 0;
  }
}
.top_news .flex_wrap {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .top_news .flex_wrap {
    flex-direction: column;
    gap: 3rem;
  }
}
.top_news .l_wrap {
  flex-shrink: 0;
}
.top_news .l_wrap .ttl_wrap {
  padding: 0;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.top_news .l_wrap .en {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.9;
  color: #fff;
  writing-mode: vertical-lr;
  order: 1;
}
.top_news .l_wrap .ja {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  order: 2;
}
@media screen and (max-width: 767px) {
  .top_news .l_wrap {
    width: 100%;
  }
  .top_news .l_wrap .ttl_wrap {
    flex-direction: row;
  }
  .top_news .l_wrap .en {
    font-size: 8rem;
  }
  .top_news .l_wrap .ja {
    font-size: 1.6rem;
  }
}
.top_news .r_wrap {
  flex: 1;
  max-width: 780px;
  margin-left: auto;
}
.top_news .news_list .news_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.top_news .news_list .news_item a {
  display: flex;
  gap: 2.4rem;
  padding: 2.4rem 0;
  align-items: center;
  transition: opacity 0.3s;
}
.top_news .news_list .news_item a:hover {
  opacity: 0.7;
}
.top_news .news_list .news_item:first-child a {
  padding-top: 0;
}
.top_news .news_list .news_thumb {
  width: 160px;
  height: 110px;
  flex-shrink: 0;
}
.top_news .news_list .news_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_news .news_list .news_date {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
}
.top_news .news_list .news_title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.top_news .news_list .news_tag {
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 14px;
  display: inline-block;
  border-radius: 2px;
}
.top_news .btn_wrap {
  margin-top: 4rem;
  text-align: right;
}

/*-----メニュー・コース カードグリッド-----*/
.card_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.card_grid li {
  background: #050505;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.card_grid li:hover {
  transform: translateY(-3px);
}
.card_grid li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card_grid.col5 li {
  width: calc((100% - 16px) / 5);
  aspect-ratio: 3/4;
}
@media screen and (max-width: 767px) {
  .card_grid.col5 li {
    width: calc((100% - 8px) / 3);
  }
}
.card_grid.col4 li {
  width: calc((100% - 12px) / 4);
  aspect-ratio: 1;
}
.card_grid.col4 img {
  transition: opacity 0.3s;
  cursor: pointer;
}
.card_grid.col4 img:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .card_grid.col4 li {
    width: calc((100% - 4px) / 2);
  }
}

/*-----メニューカード-----*/
.menu_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-top: 6rem;
}
.menu_list .menu_card {
  width: calc((100% - 4.8rem) / 3);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .menu_list .menu_card {
    width: 100%;
  }
}
.menu_list .menu_card_head {
  background: #e63c2f;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 1.4rem 1.6rem;
}
.menu_list .menu_card_head.green {
  background: #4caf50;
}
.menu_list .menu_card_head .head_equip {
  display: inline-block;
  margin-left: 0.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  vertical-align: middle;
}
.menu_list .menu_card_body {
  padding: 2.4rem 2rem;
  text-align: center;
  color: #333;
}
.menu_list .menu_tags {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.menu_list .menu_tags span {
  display: inline-block;
  padding: 0.4rem 1.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background: #333;
  border-radius: 999px;
}
.menu_list .menu_tags .menu_equip_inline {
  padding: 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #555;
  background: transparent;
  border-radius: 0;
}
.menu_list .menu_steps {
  margin-bottom: 2rem;
}
.menu_list .menu_steps li {
  font-size: 1.6rem;
  font-weight: 500;
  color: #555;
  padding: 0.2rem 0;
  position: relative;
}
.menu_list .menu_steps li::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #ccc;
  margin: 0.4rem auto;
}
.menu_list .menu_steps li:first-child::before {
  display: none;
}
.menu_list .menu_equip_row {
  font-size: 1.6rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 1.6rem;
}
.menu_list .menu_sub_head {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
  margin-bottom: 1.2rem;
}
.menu_list .menu_note {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: #555;
  text-align: left;
  margin-bottom: 1rem;
}
.menu_list .menu_note:last-child {
  margin-bottom: 0;
}

/*-----フロー-----*/
.top_flow {
  padding: 10rem 0;
  background: #0a0a0a;
}
@media screen and (max-width: 767px) {
  .top_flow {
    padding: 6rem 0;
  }
}
.top_flow .flex_wrap {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .top_flow .flex_wrap {
    flex-direction: column;
    gap: 3rem;
  }
}
.top_flow .l_wrap {
  flex-shrink: 0;
}
.top_flow .l_wrap .ttl_wrap {
  padding: 0;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.top_flow .l_wrap .en {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.85;
  color: #fff;
  writing-mode: vertical-lr;
  order: 1;
}
.top_flow .l_wrap .ja {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  order: 2;
}
@media screen and (max-width: 767px) {
  .top_flow .l_wrap {
    width: 100%;
  }
  .top_flow .l_wrap .en {
    font-size: 8rem;
  }
  .top_flow .l_wrap .ja {
    font-size: 1.6rem;
  }
}
.top_flow .r_wrap {
  flex: 1;
  max-width: 780px;
  margin-left: auto;
}

.flow_list .flow_item {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.flow_list .flow_item:first-child {
  padding-top: 0;
}

.flow_head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.flow_num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.flow_item:nth-child(odd) .flow_num {
  background-image: linear-gradient(135deg, #ff5e00, #ffb347, #ffe259);
}

.flow_item:nth-child(even) .flow_num {
  background-image: linear-gradient(135deg, #6a11cb, #e040fb, #ff6ec7);
}

.flow_title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.flow_body {
  display: flex;
  gap: 3.2rem;
  align-items: flex-start;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .flow_body {
    flex-direction: column;
  }
}

.flow_thumb {
  width: 220px;
  flex-shrink: 0;
}
.flow_thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .flow_thumb {
    width: 100%;
  }
}

.flow_detail {
  flex: 1;
}

.flow_text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}

/*-----コース-----*/
.top_course {
  padding: 10rem 0;
  background: #141414;
}
@media screen and (max-width: 767px) {
  .top_course {
    padding: 6rem 0;
  }
}
.top_course .ttl_wrap {
  margin-bottom: 6rem;
}

.course_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .course_list {
    gap: 2rem;
  }
}

.course_card {
  width: calc((100% - 4.8rem) / 3);
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.course_card:hover {
  transform: translateY(-4px);
}
@media screen and (max-width: 767px) {
  .course_card {
    width: 100%;
  }
}

.course_card .course_photo {
  overflow: hidden;
}
.course_card .course_photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s;
}
.course_card .course_photo:hover img {
  transform: scale(1.03);
}

.course_card .course_content {
  padding: 2.4rem;
}

.course_card .course_label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.6rem;
}

.course_card .course_name {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.course_card .course_name small {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.course_card .course_price {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2rem;
}
.course_card .course_price span {
  font-size: 1.6rem;
  font-weight: 500;
}

.course_card .course_btn {
  display: inline-block;
  padding: 0.8rem 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  transition: all 0.3s;
}
.course_card .course_btn:hover {
  background: #fff;
  color: #0a0a0a;
}

/*-----保険-----*/
.top_insurance {
  padding: 10rem 0;
  background: #0a0a0a;
}
@media screen and (max-width: 767px) {
  .top_insurance {
    padding: 6rem 0;
  }
}
.top_insurance .ttl_wrap {
  margin-bottom: 6rem;
}
.top_insurance .ins_wrap {
  display: flex;
  gap: 4.8rem;
  align-items: center;
}
.top_insurance .ins_wrap .ins_img {
  width: 280px;
  flex-shrink: 0;
}
.top_insurance .ins_wrap .ins_img img {
  width: 100%;
  object-fit: contain;
}
.top_insurance .ins_wrap .ins_text {
  flex: 1;
}
.top_insurance .ins_wrap .ins_text p {
  font-size: 1.6rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top_insurance .ins_wrap {
    flex-direction: column;
    gap: 3rem;
  }
  .top_insurance .ins_wrap .ins_img {
    width: 100%;
  }
}

/*-----FAQ-----*/
.top_faq {
  padding: 10rem 0;
  background: #0a0a0a;
}
@media screen and (max-width: 767px) {
  .top_faq {
    padding: 6rem 0;
  }
}
.top_faq .flex_wrap {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .top_faq .flex_wrap {
    flex-direction: column-reverse;
    gap: 3rem;
  }
}
.top_faq .l_wrap {
  flex: 1;
  max-width: 780px;
}
.top_faq .r_wrap {
  flex-shrink: 0;
}
.top_faq .r_wrap .ttl_wrap {
  padding: 0;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.top_faq .r_wrap .en {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.85;
  color: #fff;
  writing-mode: vertical-lr;
}
.top_faq .r_wrap .ja {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .top_faq .r_wrap {
    width: 100%;
  }
  .top_faq .r_wrap .en {
    font-size: 8rem;
  }
  .top_faq .r_wrap .ja {
    font-size: 1.6rem;
  }
}

/*-----FAQ アコーディオン（共通）-----*/
.faq_list {
  max-width: 800px;
}

.faq_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq_q {
  padding: 2rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: color 0.3s;
}
.faq_q:hover {
  color: rgba(255, 255, 255, 0.8);
}
.faq_q::after {
  content: "+";
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
  flex-shrink: 0;
}

.faq_q_label {
  font-size: 2.4rem;
  font-weight: 900;
  background-image: linear-gradient(90deg, #ff5e00, #ffb347, #ffe259);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.faq_item.open .faq_q::after {
  content: "−";
}
.faq_item.open .faq_a {
  max-height: 600px;
  padding: 0 0 2rem;
}

.faq_a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, padding 0.4s;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  padding: 0;
  display: flex;
  gap: 1rem;
}

.faq_a_label {
  font-size: 2.4rem;
  font-weight: 900;
  background-image: linear-gradient(90deg, #6a11cb, #e040fb, #ff6ec7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  line-height: 1.4;
}

/*-----代表挨拶-----*/
.top_greeting {
  padding: 10rem 0;
  background: #141414;
}
@media screen and (max-width: 767px) {
  .top_greeting {
    padding: 6rem 0;
  }
}
.top_greeting .ttl_wrap {
  margin-bottom: 6rem;
}
.top_greeting .greet_wrap {
  display: flex;
  gap: 4.8rem;
}
.top_greeting .greet_wrap .greet_photo {
  width: 300px;
  flex-shrink: 0;
}
.top_greeting .greet_wrap .greet_photo img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.top_greeting .greet_wrap .greet_text {
  flex: 1;
}
.top_greeting .greet_wrap .greet_text h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.top_greeting .greet_wrap .greet_text p {
  font-size: 1.6rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.6rem;
}
.top_greeting .greet_wrap .greet_text h4.name {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3.2rem;
  margin-bottom: 1.2rem;
  color: #fff;
}
.top_greeting .greet_wrap .greet_text .titles {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.top_greeting .greet_wrap .greet_text .titles h5 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .top_greeting .greet_wrap {
    flex-direction: column;
    gap: 3rem;
  }
  .top_greeting .greet_wrap .greet_photo {
    width: 100%;
  }
}
.top_greeting .sns_inner {
  display: flex;
  gap: 4.8rem;
  align-items: center;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .top_greeting .sns_inner {
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
  }
}
.top_greeting .sns_youtube {
  flex: 1;
}
.top_greeting .sns_youtube iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}
.top_greeting .sns_links {
  flex-shrink: 0;
  width: 280px;
}
.top_greeting .sns_links ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .top_greeting .sns_links {
    width: 100%;
  }
  .top_greeting .sns_links ul {
    flex-direction: row;
    justify-content: center;
  }
}
.top_greeting .sns_link_item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.6rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  transition: background 0.3s, border-color 0.3s;
}
.top_greeting .sns_link_item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}
.top_greeting .sns_link_item svg {
  flex-shrink: 0;
}

/*-----アクセス-----*/
.top_access {
  padding: 10rem 0;
  background: #0a0a0a;
}
@media screen and (max-width: 767px) {
  .top_access {
    padding: 6rem 0;
  }
}
.top_access .ttl_wrap {
  margin-bottom: 6rem;
}
.top_access .access_wrap {
  display: flex;
  gap: 4.8rem;
}
.top_access .access_wrap .access_map {
  flex: 1;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.top_access .access_wrap .access_map iframe {
  filter: grayscale(100%);
  display: block;
}
.top_access .access_wrap .access_info {
  flex: 1;
}
.top_access .access_wrap .access_info .gym_name {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3.2rem;
}
.top_access .access_wrap .access_info dl {
  display: flex;
  flex-wrap: wrap;
}
.top_access .access_wrap .access_info dl dt {
  width: 100px;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
}
.top_access .access_wrap .access_info dl dd {
  width: calc(100% - 120px);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top_access .access_wrap {
    flex-direction: column;
    gap: 3rem;
  }
}

/*-----CTA-----*/
.top_cta {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .top_cta {
    padding: 4rem 0;
    background-attachment: scroll;
  }
}

.cta_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
}

.top_cta .content_wrap {
  position: relative;
  z-index: 1;
}

.cta_numbers {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .cta_numbers {
    gap: 2rem;
    margin-bottom: 2rem;
  }
}
.cta_numbers li .cta_num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 8rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
.cta_numbers li .cta_num span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cta_numbers li .cta_num {
    font-size: 5rem;
  }
}
.cta_numbers li .cta_num_label {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.8rem;
  letter-spacing: 0.1em;
}

.cta_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .cta_inner {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
}

.cta_text .cta_catch {
  font-size: clamp(3rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.cta_text .cta_lead {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
}

.cta_btns {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  flex-shrink: 0;
}
.cta_btns .nav_cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  background-size: 300% 100%;
  background-position: 0% 0%;
  transition: background-position 0.6s ease;
  width: 100%;
  justify-content: center;
}
.cta_btns .nav_cta::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s, opacity 0.3s;
}
.cta_btns .nav_cta:hover {
  background-position: 100% 0%;
}
.cta_btns .nav_cta:hover::after {
  transform: rotate(45deg) translate(8px, -8px);
  opacity: 0;
}
.cta_btns .cta_orange {
  background-image: linear-gradient(90deg, #ff5e00, #ffb347, #ffe259, #ff5e00);
}
.cta_btns .cta_purple {
  background-image: linear-gradient(90deg, #6a11cb, #e040fb, #ff6ec7, #6a11cb);
}
.cta_btns .cta_tel {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
}
.cta_btns .cta_tel a {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/*-----アパレル-----*/
.top_apparel {
  background: #0a0a0a;
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .top_apparel {
    padding: 5rem 0;
  }
}

.apparel_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .apparel_inner {
    flex-direction: column;
    gap: 3rem;
  }
}

.apparel_gallery {
  width: 100%;
  max-width: 744px;
}
.apparel_gallery .splide__slide {
  padding: 0 0.6rem;
}
@media screen and (max-width: 767px) {
  .apparel_gallery {
    width: 80%;
    max-width: 100%;
    margin: 0 auto;
  }
  .apparel_gallery .splide__slide {
    padding: 0;
  }
}
.apparel_gallery .apparel_img {
  overflow: hidden;
  border-radius: 4px;
}
.apparel_gallery .apparel_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.apparel_info {
  flex: 1;
  max-width: 480px;
  padding-left: 5rem;
}
@media screen and (max-width: 767px) {
  .apparel_info {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

.apparel_en {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}

.apparel_ja {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.8rem;
}

.apparel_desc {
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-top: 2rem;
}

.apparel_btns {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .apparel_btns {
    align-items: center;
  }
}

.apparel_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.4rem 3.2rem;
  border-radius: 999px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
  min-width: 240px;
}
.apparel_btn:hover {
  opacity: 0.8;
}

.apparel_btn_stores {
  background: linear-gradient(90deg, #ff8a00, #ff6a00);
}

.apparel_btn_ig {
  background: linear-gradient(90deg, #6a11cb, #e040fb);
}

/*-----フッター-----*/
.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  padding: 5rem 0 3rem;
}

.footer_top {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.footer_logo {
  flex-shrink: 0;
}
.footer_logo img {
  height: 36px;
  width: auto;
}

.footer_nav {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .footer_nav {
    margin-left: 0;
  }
}
.footer_nav ul {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer_nav ul {
    gap: 1.2rem 2rem;
  }
  .footer_nav ul li {
    width: calc(50% - 1rem);
  }
}
.footer_nav a {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  transition: color 0.3s;
}
.footer_nav a:hover {
  color: #fff;
}

.footer_sns {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: 3rem;
}
.footer_sns .sns_icon {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}
.footer_sns .sns_icon:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer_sns {
    margin-left: 0;
  }
}

.footer_bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer_info {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.2rem;
}

.footer_copy {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.25);
}

/*-----アニメーション-----*/
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.anim.animated {
  opacity: 1;
  transform: translateY(0);
}

.anim_left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s, transform 0.8s;
}
.anim_left.animated {
  opacity: 1;
  transform: translateX(0);
}

.anim_right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.anim_right.animated {
  opacity: 1;
  transform: translateX(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.stagger.animated > *:nth-child(1) {
  transition-delay: 0s;
  opacity: 1;
  transform: translateY(0);
}
.stagger.animated > *:nth-child(2) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}
.stagger.animated > *:nth-child(3) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}
.stagger.animated > *:nth-child(4) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.stagger.animated > *:nth-child(5) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}
.stagger.animated > *:nth-child(6) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}
.stagger.animated > *:nth-child(7) {
  transition-delay: 0.6s;
  opacity: 1;
  transform: translateY(0);
}
.stagger.animated > *:nth-child(8) {
  transition-delay: 0.7s;
  opacity: 1;
  transform: translateY(0);
}

/*-----下層ページ FV (page_fv) + 共通レイアウト-----*/
.page_fv {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page_fv {
    min-height: 35vh;
  }
}
.page_fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.page_fv_inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 4%;
}

.page_fv_en {
  font-family: "Bebas Neue", sans-serif;
  font-size: 9rem;
  line-height: 0.8;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}
@media screen and (max-width: 767px) {
  .page_fv_en {
    font-size: 5.6rem;
  }
}

.page_fv_ja {
  font-size: 2.6rem;
  font-weight: 600;
  margin-top: 0.4rem;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .page_fv_ja {
    font-size: 1.8rem;
    margin-top: 0.2rem;
  }
}

.page_body_section {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .page_body_section {
    padding: 5rem 0;
  }
}
.page_body_section > .content_wrap {
  max-width: 1080px;
}

.page_body p {
  font-size: 1.6rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.page_body h2 {
  font-size: 2.4rem;
  color: #fff;
  margin: 4rem 0 1.6rem;
  padding-left: 1.2rem;
  border-left: 3px solid #fff;
  line-height: 1.4;
}

.page_body h3 {
  font-size: 2rem;
  color: #fff;
  margin: 3rem 0 1.2rem;
  line-height: 1.4;
}

.page_body ul {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}
.page_body ul li {
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}
.page_body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 0.8rem;
  height: 0.8rem;
  background: #fff;
  border-radius: 50%;
}

/*-----下層ページ アーカイブ (NEWS一覧)-----*/
.archive_news {
  padding: 10rem 0;
  background: #0a0a0a;
}
@media screen and (max-width: 767px) {
  .archive_news {
    padding: 6rem 0;
  }
}

.archive_news .news_list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.archive_news .news_list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.archive_news .news_item a {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2.4rem 0;
  color: #fff;
  transition: opacity 0.3s;
}
.archive_news .news_item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .archive_news .news_item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}

.archive_news .news_thumb {
  flex-shrink: 0;
  width: 160px;
  height: 100px;
  overflow: hidden;
  border-radius: 4px;
}
.archive_news .news_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .archive_news .news_thumb {
    width: 100%;
    height: 200px;
  }
}

.archive_news .news_body {
  flex: 1;
  min-width: 0;
}

.archive_news .news_date {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.archive_news .news_title {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0.4rem 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .archive_news .news_title {
    font-size: 1.6rem;
  }
}

.archive_news .news_tag {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  margin-top: 0.6rem;
}

.archive_pagination {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
.archive_pagination .nav-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.archive_pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  padding: 0 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}
.archive_pagination .page-numbers:hover, .archive_pagination .page-numbers.current {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/*-----下層ページ 申込フロー（page-application）-----*/
.application_step_list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 4rem 0;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .application_step_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}
.application_step_list li {
  position: relative;
  padding: 3rem 2.4rem 2.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}
.application_step_list li .step_num {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
  background: #1a1a1a;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  position: absolute;
  top: -1.4rem;
  left: 2rem;
}
.application_step_list li h3 {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
}
.application_step_list li p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

/*-----price ページ補足-----*/
.price_courses {
  margin-top: 4rem;
}

.price_notes {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  padding: 2.4rem 3rem;
  border-radius: 0 4px 4px 0;
}
.price_notes h2 {
  font-size: 1.8rem;
  color: #fff;
  margin: 0 0 1.2rem;
  padding: 0;
  border: 0;
}

/*-----faq ページ-----*/
.faq_full {
  max-width: 880px;
  margin: 4rem auto 0;
}
.faq_full .faq_list {
  max-width: 100%;
  margin: 0 auto;
}

/*-----facility ページ-----*/
.facility_gallery,
.facility_access {
  margin-top: 6rem;
}

/*-----下層 パンくず-----*/
.breadcrumb {
  background: #0a0a0a;
  padding: 1.4rem 0;
}
.breadcrumb ol {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
  list-style: none;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb ol {
    font-size: 1.2rem;
  }
}
.breadcrumb li {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.breadcrumb li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb li a:hover {
  color: #fff;
}
.breadcrumb li:last-child {
  color: rgba(255, 255, 255, 0.85);
}

/*-----下層 グリッドギャラリー（施設案内など）-----*/
.facility_feature_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2.4rem;
  margin: 4rem 0;
}
@media screen and (max-width: 767px) {
  .facility_feature_grid {
    gap: 3rem;
  }
}
.facility_feature_grid > li {
  width: calc((100% - 2.4rem) / 2);
}
@media screen and (max-width: 767px) {
  .facility_feature_grid > li {
    width: 100%;
  }
}
.facility_feature_grid > li .feature_img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.6rem;
}
.facility_feature_grid > li .feature_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility_feature_grid > li .feature_title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .facility_feature_grid > li .feature_title {
    font-size: 2rem;
  }
}
.facility_feature_grid > li .feature_text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  text-align: left;
  margin: 0;
  padding: 0 0.4rem;
}

.facility_photo_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin: 6rem 0;
}
@media screen and (max-width: 767px) {
  .facility_photo_grid {
    gap: 1rem;
  }
}
.facility_photo_grid > li {
  width: calc((100% - 1.6rem) / 2);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .facility_photo_grid > li {
    width: calc((100% - 1rem) / 2);
  }
}
.facility_photo_grid > li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----下層 投稿詳細（single）-----*/
.single_news {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .single_news {
    padding: 6rem 0;
  }
}
.single_news .single_news_wrap {
  width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .single_news .single_news_wrap {
    width: 96%;
  }
}
@media screen and (max-width: 767px) {
  .single_news .single_news_wrap {
    width: 90%;
  }
}
.single_news .news_single_head {
  text-align: left;
  margin-bottom: 4rem;
}
.single_news .news_single_head .news_date {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
}
.single_news .news_single_head .news_single_title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .single_news .news_single_head .news_single_title {
    font-size: 2.2rem;
  }
}
.single_news .news_single_head .news_tag {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.4rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
}
.single_news .news_single_thumb {
  width: 100%;
  margin: 0 0 5rem;
  border-radius: 6px;
  overflow: hidden;
}
.single_news .news_single_thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.single_news .news_single_body {
  width: 100%;
  margin: 0;
}
.single_news .news_single_body p {
  font-size: 1.6rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}
.single_news .news_single_body h2 {
  font-size: 2.4rem;
  color: #fff;
  margin: 4rem 0 1.6rem;
  padding-left: 1.2rem;
  border-left: 3px solid #fff;
  line-height: 1.4;
}
.single_news .news_single_body h3 {
  font-size: 2rem;
  color: #fff;
  margin: 3rem 0 1.2rem;
  line-height: 1.4;
}
.single_news .news_single_body a {
  color: #b16cff;
  text-decoration: underline;
}
.single_news .news_single_body img {
  width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0;
  border-radius: 4px;
}

/*-----下層 お問い合わせ その他連絡方法-----*/
.contact_extra {
  text-align: center;
}
.contact_extra h2 {
  padding-left: 0;
  border-left: none;
  text-align: center;
}
.contact_extra p {
  text-align: center;
}

/*-----下層 施設案内ギャラリー 3カラム-----*/
.facility_gallery_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin: 6rem 0;
}
@media screen and (max-width: 767px) {
  .facility_gallery_grid {
    gap: 1rem;
  }
}
.facility_gallery_grid > li {
  width: calc((100% - 3.2rem) / 3);
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .facility_gallery_grid > li {
    width: calc((100% - 1rem) / 2);
  }
}
.facility_gallery_grid > li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----下層 アクセスセクション（iframe拡大）-----*/
.page_access_section .access_wrap {
  display: flex;
  gap: 4.8rem;
}
@media screen and (max-width: 767px) {
  .page_access_section .access_wrap {
    flex-direction: column;
    gap: 3rem;
  }
}
.page_access_section .access_wrap .access_map {
  flex: 1.5;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.page_access_section .access_wrap .access_map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  display: block;
}
@media screen and (max-width: 767px) {
  .page_access_section .access_wrap .access_map {
    aspect-ratio: 4/3;
  }
}
.page_access_section .access_wrap .access_info {
  flex: 1;
}
.page_access_section .access_wrap .access_info .gym_name {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3.2rem;
}
.page_access_section .access_wrap .access_info dl {
  display: flex;
  flex-wrap: wrap;
}
.page_access_section .access_wrap .access_info dl dt {
  width: 100px;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
}
.page_access_section .access_wrap .access_info dl dd {
  width: calc(100% - 120px);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

/*-----下層セクション余白拡張（100px相当）-----*/
.page_body_section {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .page_body_section {
    padding: 6rem 0;
  }
}

.page_body_section + .page_body_section {
  padding-top: 0;
}

.page_body_section .ttl_wrap {
  margin-bottom: 4rem;
}

/*-----下層 料金表-----*/
.price_table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}
.price_table thead th {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 1.4rem 2rem;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.price_table tbody th, .price_table tbody td {
  padding: 1.4rem 2rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.price_table tbody tr:last-child th,
.price_table tbody tr:last-child td {
  border-bottom: 0;
}
.price_table tbody th {
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  width: 30%;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .price_table tbody th {
    width: 40%;
  }
}
.price_table .price_note_inline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 0.6rem;
}

/*-----CF7 フォームスタイル-----*/
.cf7_wrap {
  max-width: 720px;
  margin: 0 auto;
}
.cf7_wrap .form_row {
  margin-bottom: 2.4rem;
}
.cf7_wrap .form_row label {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.8rem;
}
.cf7_wrap .form_row label .req {
  display: inline-block;
  font-size: 1.1rem;
  background: #d04545;
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 2px;
  margin-left: 0.6rem;
  vertical-align: middle;
}
.cf7_wrap .form_consent {
  text-align: center;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 2rem 0;
}
.cf7_wrap input[type=text],
.cf7_wrap input[type=email],
.cf7_wrap input[type=tel],
.cf7_wrap input[type=number],
.cf7_wrap select,
.cf7_wrap textarea {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #fff;
  font-size: 1.5rem;
  font-family: inherit;
  line-height: 1.6;
  transition: border-color 0.2s, background 0.2s;
}
.cf7_wrap input[type=text]:focus,
.cf7_wrap input[type=email]:focus,
.cf7_wrap input[type=tel]:focus,
.cf7_wrap input[type=number]:focus,
.cf7_wrap select:focus,
.cf7_wrap textarea:focus {
  outline: 0;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.cf7_wrap input[type=text]::placeholder,
.cf7_wrap input[type=email]::placeholder,
.cf7_wrap input[type=tel]::placeholder,
.cf7_wrap input[type=number]::placeholder,
.cf7_wrap select::placeholder,
.cf7_wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.cf7_wrap textarea {
  min-height: 16rem;
  resize: vertical;
}
.cf7_wrap .wpcf7-radio,
.cf7_wrap .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.cf7_wrap .wpcf7-radio .wpcf7-list-item,
.cf7_wrap .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.cf7_wrap .wpcf7-radio .wpcf7-list-item label,
.cf7_wrap .wpcf7-checkbox .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  margin: 0;
}
.cf7_wrap .wpcf7-radio .wpcf7-list-item input[type=radio],
.cf7_wrap .wpcf7-radio .wpcf7-list-item input[type=checkbox],
.cf7_wrap .wpcf7-checkbox .wpcf7-list-item input[type=radio],
.cf7_wrap .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  width: auto;
  accent-color: #fff;
}
.cf7_wrap .form_submit {
  text-align: center;
  margin-top: 4rem;
}
.cf7_wrap .wpcf7-submit,
.cf7_wrap input[type=submit] {
  display: inline-block;
  min-width: 28rem;
  padding: 1.6rem 4rem;
  background: linear-gradient(135deg, #b16cff 0%, #7d3dff 100%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cf7_wrap .wpcf7-submit:hover,
.cf7_wrap input[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(125, 61, 255, 0.4);
}
@media screen and (max-width: 767px) {
  .cf7_wrap .wpcf7-submit,
  .cf7_wrap input[type=submit] {
    min-width: 100%;
  }
}
.cf7_wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.cf7_wrap .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.2rem;
  color: #ff7a7a;
}
.cf7_wrap {
  /* CF7 v6.x が hidden input を fieldset でラップする際のデフォルト枠線除去 */
}
.cf7_wrap fieldset.hidden-fields-container,
.cf7_wrap fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.cf7_wrap .wpcf7-spinner {
  display: none;
}
.cf7_wrap .wpcf7-form.submitting .wpcf7-spinner {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 1rem;
  vertical-align: middle;
}
.cf7_wrap .wpcf7-response-output {
  display: none;
  margin: 2rem 0 0;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
  text-align: center;
}
.cf7_wrap .wpcf7 form.invalid .wpcf7-response-output,
.cf7_wrap .wpcf7 form.unaccepted .wpcf7-response-output {
  display: block;
  border-color: #d04545;
}
.cf7_wrap .wpcf7 form.sent .wpcf7-response-output {
  display: block;
  border-color: #5fa86c;
}

/*-----フォーム導入文（中央寄せ）-----*/
.form_intro {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 3rem;
  max-width: 720px;
}
@media screen and (max-width: 767px) {
  .form_intro {
    font-size: 1.4rem;
    text-align: left;
  }
}

/*-----キャンセルポリシー-----*/
.cancel_policy {
  max-width: 880px;
  margin: 0 auto;
  padding: 4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .cancel_policy {
    padding: 2.4rem 2rem;
  }
}
.cancel_policy p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 767px) {
  .cancel_policy p {
    font-size: 1.4rem;
  }
}
.cancel_policy p strong {
  display: block;
  margin-top: 2rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
}
.cancel_policy p:last-child {
  margin-bottom: 0;
}

/*-----下層 共通CTA（footer手前）-----*/
.page_cta {
  position: relative;
  padding: 10rem 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page_cta {
    padding: 6rem 0;
  }
}
.page_cta .cta_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
.page_cta .content_wrap {
  position: relative;
  z-index: 2;
}
.page_cta .cta_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 900px) {
  .page_cta .cta_inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
}
.page_cta .cta_catch {
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .page_cta .cta_catch {
    font-size: 2.8rem;
  }
}
.page_cta .cta_lead {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 1.4rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .page_cta .cta_lead {
    font-size: 1.3rem;
  }
}
.page_cta .cta_btns {
  display: flex;
  gap: 1.4rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: center;
}

/*-----下層 共通CTA アパレル-----*/
.apparel_cta {
  background: #0a0a0a;
  padding: 8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media screen and (max-width: 767px) {
  .apparel_cta {
    padding: 5rem 0;
  }
}

.apparel_cta_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 900px) {
  .apparel_cta_inner {
    flex-direction: column;
    gap: 3rem;
  }
}

.apparel_cta_gallery {
  display: flex;
  gap: 1.2rem;
  flex: 1;
  max-width: 620px;
}
.apparel_cta_gallery li {
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1/1;
}
.apparel_cta_gallery li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apparel_cta_gallery li:nth-child(n+4) {
  display: none;
}
@media screen and (max-width: 900px) {
  .apparel_cta_gallery {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .apparel_cta_gallery {
    gap: 0.8rem;
  }
  .apparel_cta_gallery li:nth-child(n+3) {
    display: none;
  }
}

.apparel_cta_info {
  flex: 1;
  max-width: 420px;
}
@media screen and (max-width: 900px) {
  .apparel_cta_info {
    max-width: 100%;
    text-align: center;
  }
}

.apparel_cta_en {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}

.apparel_cta_ja {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.8rem;
}

.apparel_cta_desc {
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-top: 2rem;
}

.apparel_cta_btns {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 900px) {
  .apparel_cta_btns {
    align-items: center;
  }
}

.apparel_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.4rem 3.2rem;
  border-radius: 999px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
  min-width: 240px;
}
.apparel_cta_btn:hover {
  opacity: 0.8;
}

.apparel_cta_btn_stores {
  background: linear-gradient(90deg, #ff8a00, #ff6a00);
}

.apparel_cta_btn_ig {
  background: linear-gradient(90deg, #6a11cb, #e040fb);
}

/*-----フォーム送信後の完了画面（現状は page-contact.php のみで使用、クラス名は流用）-----*/
.application_complete {
  margin: 4rem 0;
  padding: 6rem 2.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .application_complete {
    padding: 4rem 1.6rem;
  }
}

.application_complete .complete_ttl {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 2.4rem;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .application_complete .complete_ttl {
    font-size: 2rem;
  }
}

.application_complete .complete_lead {
  font-size: 1.6rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 3rem;
}

.application_complete .complete_summary {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1rem 2.4rem;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 3rem;
  padding: 2rem 2.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .application_complete .complete_summary {
    grid-template-columns: 1fr;
    gap: 0.4rem 0;
    padding: 1.6rem;
  }
}

.application_complete .complete_summary dt {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  align-self: center;
}

.application_complete .complete_summary dd {
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .application_complete .complete_summary dd {
    margin-bottom: 1rem;
  }
}

.application_complete .complete_loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
}

.application_complete .complete_spinner {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: nofacegym_spin 0.8s linear infinite;
}

@keyframes nofacegym_spin {
  to {
    transform: rotate(360deg);
  }
}
.application_complete .complete_countdown {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2.4rem;
}

.application_complete .complete_countdown #complete_count {
  display: inline-block;
  min-width: 1.5em;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  color: #fff;
  margin: 0 0.2rem;
}
