@charset "utf-8";

/* ---------------------------------------------------------
　共通クラス
--------------------------------------------------------- */

:root {
  --font-size-s: calc(14 / 16 * 1rem);
  --font-size-m: 1rem;
  --font-size-l: calc(18 / 16 * 1rem);
  --font-size-ll: calc(20 / 16 * 1rem);

  --color-white: hsl(0 0 96%);
  --color-black: hsl(0 0 8%);
  --color-gray: hsl(0 0 80%);
  --color-gray-d: hsl(0 0 60%);
  --color-red: hsl(0 64% 50%);
  --color-red-l: hsl(from var(--color-red) h calc(s - 0) calc(l + 45));
  --color-blue: hsl(218 64% 50%);
  --color-blue-l: hsl(from var(--color-blue) h calc(s - 0) calc(l + 45));
  --color-blue-d: hsl(from var(--color-blue) h calc(s - 0) calc(l - 15));
  --color-day: hsl(176 71% 34%);
  --color-week: hsl(249 55% 39%);
  --color-cell: hsl(221 44% 93%);
  --bg-lightblue: hsl(209 65% 75%);
  --bg-lightgreen: hsl(135 65% 75%);
  --bg-purple: hsl(294 65% 75%);
  --bg-pink: hsl(343 65% 75%);
  --bg-orange: hsl(28 65% 75%);
  --bg-yellow: hsl(61 60% 70%);
  --bg-gray: hsl(0 0 90%);
  --flow-bg: hsl(260 64% 81%);
  --flow-border: hsl(from var(--flow-bg) h calc(s + 10) calc(l - 10));
  --flow-line: hsl(from var(--flow-bg) h calc(s - 15) calc(l - 15));
}

:where(html) {
  scroll-behavior: smooth;
}

:where(body) {
  background: var(--color-black);
  color: var(--color-black);
  font-feature-settings: "palt";
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
}

@font-face {
  font-family: "Subset Font";
  src: url(../font/SmartUI.woff2);
}

:where(p) {
  font-size: var(--font-size-l);
}

.wrapper {
  width: min(95%, 1200px);
  margin-inline: auto;
}

.wrapper-n {
  width: min(85%, 1100px);
  margin-inline: auto;
}

.inner {
  width: min(95%, 800px);
  margin-inline: auto;
}

.inner-w {
  padding-inline: 3%;
}

.inner-n {
  width: min(95%, 600px);
  margin-inline: auto;
}

.inner-ladder {
  padding: 90px 4% 90px 6%;
}

.text-margin {
  margin-bottom: 0.8em;
}

.text-large {
  font-size: var(--font-size-ll);
  font-weight: bold;
}

.text-wide {
  letter-spacing: 1em;
  padding-left: 1em;
}

.single-box {
  position: relative;
  padding-block: 150px;
  border: solid var(--color-black);
  border-width: 0 65px;
  background: var(--color-white);
  overflow: hidden;
}

.ladder-box .container-left {
  margin-right: 20px;
}

.ladder-box .item-left {
  position: relative;
  width: min(100%, 900px);
  background: var(--color-white);
  border-left: 65px solid var(--color-black);
  border-right: 35px solid var(--color-black);
  overflow: hidden;
}

.ladder-box .item-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 20px;
  height: 100%;
  background: var(--color-black);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 10;
}

.ladder-box .item-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 20px;
  height: 100%;
  background: var(--color-black);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 10;
}

.ladder-box .fill {
  background: var(--color-black);
}

.ladder-box .fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ladder-box .container-right {
  display: flex;
  justify-content: flex-end;
  margin-left: 20px;
}

.ladder-box .item-right {
  position: relative;
  width: min(100%, 900px);
  background: var(--color-white);
  border-left: 35px solid var(--color-black);
  border-right: 65px solid var(--color-black);
  overflow: hidden;
}

.ladder-box .item-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 20px;
  height: 100%;
  background: var(--color-black);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 10;
}

.slash-a {
  position: absolute;
  width: 100%;
  height: 180px;
  margin-top: -60px;
  background: var(--color-black);
  clip-path: polygon(0 60px, 100% 0, 100% 60px, 0 100%);
  z-index: 10;
}

.slash-b {
  position: absolute;
  width: 100%;
  height: 180px;
  margin-top: -60px;
  background: var(--color-black);
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 60px);
  z-index: 10;
}

.line-a {
  position: relative;
  width: 100%;
  height: 100px;
  margin-top: -40px;
  margin-bottom: -60px;
  background: var(--color-black);
  clip-path: polygon(0 40px, 100% 0, 100% 40px, 0 100%);
  z-index: 10;
}

.line-b {
  position: relative;
  width: 100%;
  height: 100px;
  margin-top: -40px;
  margin-bottom: -60px;
  background: var(--color-black);
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 40px);
  z-index: 10;
}

.sp-br {
  display: none;
}

.space {
  margin-inline: 0.3em;
}

.title-under {
  margin-bottom: 1.5em;
  font-family: "Subset Font";
  font-size: calc(24 / 16 * 1rem);
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}

.title-square {
  display: inline-block;
  padding: 5px 25px;
  margin-bottom: 60px;
  font-size: calc(24 / 16 * 1rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  border: 8px solid var(--color-black);
  clip-path: polygon(0 3px, 100% 0, calc(100% - 3px) 100%, 0 calc(100% - 2px));
}

.notice {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-style: wavy;
  text-decoration-color: var(--color-red);
}

.asterisk {
  position: relative;
  margin-left: 1.2em;
}

.asterisk::before {
  content: "\0274a";
  position: absolute;
  left: -1.2em;
  display: inline-block;
}

.shadow {
  position: relative;
  width: fit-content;
  margin: 50px 0 0 auto;
  cursor: pointer;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
  transition: all 0.3s;
}

.shadow:hover,
.shadow:has(a:focus) {
  transform: scale(1.1);
}

.register {
  position: relative;
  display: inline-block;
  padding: 15px 30px 15px 60px;
  font-size: var(--font-size-m);
  color: #fff;
  text-align: right;
  background: var(--color-blue);
  clip-path: polygon(
    5px 5px,
    100% 0,
    calc(100% - 10px) 100%,
    0 calc(100% - 5px)
  );
}

.register::before {
  position: absolute;
  top: calc(50% - 0.4em);
  left: 25px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

.register span {
  font-size: var(--font-size-s);
}

.mv {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 580px;
  padding-top: 70px;
}

.mv .page-title {
  position: relative;
  padding: 20px 120px;
  text-align: center;
  font-family: "Subset Font";
  font-size: calc(36 / 16 * 1rem);
  letter-spacing: 0.2em;
  color: #fff;
  opacity: 0;
  transform: scaleX(0);
  filter: blur(5px);
  animation: expandX 1s ease-out forwards;
  z-index: 1;
}

@keyframes expandX {
  to {
    opacity: 1;
    transform: scaleX(1);
    filter: blur(0);
  }
}

.mv .page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.9) 15%,
        rgba(255, 255, 255, 0.9) 85%,
        rgba(255, 255, 255, 0) 100%
      )
      top/100% 2px no-repeat,
    linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.9) 15%,
        rgba(255, 255, 255, 0.9) 85%,
        rgba(255, 255, 255, 0) 100%
      )
      bottom/100% 2px no-repeat,
    linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.7) 15%,
        rgba(0, 0, 0, 0.7) 85%,
        rgba(0, 0, 0, 0) 100%
      )
      100%;
  z-index: -1;
}

.bg-shape {
  position: relative;
  overflow: hidden;
}

.bg-shape::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: brightness(90%);
  clip-path: polygon(
    0 0,
    40% 0,
    0 30%,
    0 80%,
    50% 25%,
    40% 60%,
    85% 15%,
    80% 30%,
    100% 10%,
    100% 100%,
    70% 100%,
    100% 80%,
    100% 30%,
    50% 70%,
    60% 50%,
    20% 85%,
    25% 70%,
    0 95%
  );
}

.slide-left {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}

.slide-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.slide-left.is-active,
.slide-right.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* ---------------------------------------------------------
　ヘッダー
--------------------------------------------------------- */

#header {
  position: fixed;
  height: 110px;
  width: 100%;
  background: var(--color-black);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  z-index: 20;
}

#header .header-logo {
  position: absolute;
  top: 15px;
  left: 25px;
  width: 80px;
  height: 80px;
  z-index: 30;
}

#header .header-logo img {
  width: 100%;
  height: 100%;
}

#header .header-logo:hover img {
  transform: rotateY(360deg);
  transition: all 0.5s ease-in;
}

#header .global-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 90px;
  font-family: "Subset Font";
  font-size: var(--font-size-l);
  transform: rotate(-1deg);
}

#header .global-nav li {
  position: relative;
  margin-inline: 25px;
  text-align: center;
}

#header .global-nav li a {
  position: relative;
  display: block;
  color: var(--color-white);
}

#header .global-nav li a::before {
  content: "";
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: yellow;
  transform: scale(0);
  transition: all 0.5s;
}

#header .global-nav li a::after {
  content: attr(data-en);
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  font-family: "Ubuntu Condensed";
  font-size: var(--font-size-ll);
  color: var(--color-black);
  line-height: 1.3;
  white-space: pre-wrap;
  pointer-events: none;
  transform: scale(0);
  opacity: 0;
  transition: all 0.4s;
  transition-delay: 0.1s;
  z-index: 30;
}

#header .global-nav li a:hover::before,
#header .global-nav li a:focus::before {
  transform: scale(1);
  transition: all 0.3s;
}

#header .global-nav li a:hover::after,
#header .global-nav li a:focus::after {
  transform: scale(1);
  transition: all 0.3s;
  opacity: 1;
}

/* ===== ハンバーガーメニュー ============================== */

.toggle-btn {
  position: fixed;
  top: 25px;
  right: 30px;
  display: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 50;
}

.toggle-btn span {
  position: absolute;
  width: 30px;
  height: 3px;
  background: yellow;
  transition: all 0.5s ease-out;
}

.toggle-btn span:nth-child(1) {
  top: 3px;
}
.toggle-btn span:nth-child(2) {
  top: 14px;
}
.toggle-btn span:nth-child(3) {
  top: 25px;
}

.toggle-btn.open span:nth-child(1) {
  transform: translateY(11px) rotate(225deg);
}
.toggle-btn.open span:nth-child(2) {
  transform: scaleX(0);
}
.toggle-btn.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-225deg);
}

.slide-menu {
  visibility: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all 0.3s linear;
  z-index: 40;
}

.toggle-btn.open + .slide-menu {
  visibility: visible;
  opacity: 1;
}

.slide-menu .menu-list {
  position: absolute;
  top: 15%;
  right: 20vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: min(70%, 400px);
  font-family: "Subset Font";
  font-size: calc(22 / 16 * 1rem);
  line-height: 2;
  color: #fff;
  transform: rotate(-3deg);
}

.slide-menu .menu-list li {
  transform: translateX(300px);
  transition: all 0.3s ease-out;
}

.slide-menu .menu-list li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -2em;
  transform: translateY(-50%);
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.slide-menu .menu-list li:nth-of-type(1)::before {
  background-image: url(../img/icon-home.svg);
}
.slide-menu .menu-list li:nth-of-type(2)::before {
  background-image: url(../img/icon-beginner.svg);
}
.slide-menu .menu-list li:nth-of-type(3)::before {
  background-image: url(../img/icon-price.svg);
}
.slide-menu .menu-list li:nth-of-type(4)::before {
  background-image: url(../img/icon-floor.svg);
}
.slide-menu .menu-list li:nth-of-type(5)::before {
  background-image: url(../img/icon-faq.svg);
}
.slide-menu .menu-list li:nth-of-type(6)::before {
  background-image: url(../img/icon-access.svg);
}

.slide-menu .menu-list li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.slide-menu .menu-list li:nth-of-type(2) {
  transition-delay: 0.05s;
}
.slide-menu .menu-list li:nth-of-type(3) {
  transition-delay: 0.1s;
}
.slide-menu .menu-list li:nth-of-type(4) {
  transition-delay: 0.15s;
}
.slide-menu .menu-list li:nth-of-type(5) {
  transition-delay: 0.2s;
}
.slide-menu .menu-list li:nth-of-type(6) {
  transition-delay: 0.25s;
}

.slide-menu.open .menu-list li {
  transform: translateX(0);
}

/* ---------------------------------------------------------
　トップページ
--------------------------------------------------------- */

/* ===== メインビジュアル ============================== */

#top-mv {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 70px;
}

#top-mv .cross-fade {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#top-mv .cross-fade .fade-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: crossFade 18s linear infinite;
}

#top-mv .cross-fade .fade-img:nth-child(1) {
  background-image: url(../img/mv1.jpg);
  background-image: image-set(url("../img/mv1.avif") type("image/avif"));
  animation-delay: 0s;
}
#top-mv .cross-fade .fade-img:nth-child(2) {
  background-image: url(../img/mv2.jpg);
  background-image: image-set(url("../img/mv2.avif") type("image/avif"));
  animation-delay: 6s;
}
#top-mv .cross-fade .fade-img:nth-child(3) {
  background-image: url(../img/mv3.jpg);
  background-image: image-set(url("../img/mv3.avif") type("image/avif"));
  animation-delay: 12s;
}

@keyframes crossFade {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

#top-mv .mv-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
}

#top-mv .mv-logo {
  display: flex;
  align-items: flex-end;
  width: min(100%, 1260px);
  height: 100%;
  padding-inline: 30px 10%;
  vertical-align: bottom;
  margin-inline: auto;
}

#top-mv .mv-logo img {
  width: 700px;
  height: auto;
  max-height: 40vh;
  padding-right: 40px;
  opacity: 0.8;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

/* ===== イントロダクション ============================== */

#intro .fill img {
  width: 100%;
  height: 600px;
}

#intro .open {
  background: var(--bg-lightblue);
}

#intro .open h2 {
  text-decoration-color: var(--bg-lightblue);
}

#intro .diet h2 {
  text-decoration-color: var(--bg-lightgreen);
}

#intro .diet {
  background: var(--bg-lightgreen);
}

#intro .try {
  background: var(--bg-pink);
}

#intro .try h2 {
  text-decoration-color: var(--bg-pink);
}

#intro .try .instagram {
  cursor: pointer;
}

#intro .try .instagram a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  width: fit-content;
  margin: 30px 5% 0 auto;
  padding: 10px 30px;
  font-family: "Ubuntu Condensed";
  font-size: var(--font-size-ll);
  color: #fff;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  border: 2px solid var(--color-black);
  border-radius: 30px;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
  transition: all 0.3s;
}

#intro .try .instagram a:hover {
  transform: scale(1.1);
}

#intro .try .instagram img {
  width: 35px;
  height: 35px;
  user-select: none;
}

/* ===== カレンダー ============================== */

#calendar {
  background: var(--bg-purple);
}

#calendar .single-box {
  padding-top: 180px;
}

#calendar h3 {
  margin-left: 4%;
  background: var(--bg-purple);
}

#calendar .google-calendar {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}

/* ---------------------------------------------------------
　初めての方
--------------------------------------------------------- */

/* ===== メインビジュアル ============================== */

#beginner-mv {
  background-image: url(../img/beginner_mv.jpg);
  background-image: image-set("../img/beginner_mv.avif" type("image/avif"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ===== ボルダリングとは ============================== */

#about {
  background: var(--bg-yellow);
}

#about h2 {
  text-decoration-color: var(--bg-yellow);
}

/* ===== 必要なもの ============================== */

#require {
  background: var(--bg-pink);
}

#require h2 {
  text-decoration-color: var(--bg-pink);
}

/* ===== ご利用の流れ ============================== */

#flow {
  background: var(--bg-lightblue);
  font-size: var(--font-size-l);
}

#flow .title-square {
  margin-left: 4%;
  margin-bottom: 110px;
  background: var(--bg-lightblue);
}

#flow .flow-box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: min(150px, 12vw);
}

#flow .flow-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50px);
  width: 150px;
  height: 100%;
  background: var(--flow-line);
}

#flow .flow-box li {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5%;
  height: 200px;
  padding-inline: 3%;
  background: var(--flow-bg);
  border: solid var(--flow-border);
  border-width: 3px 0;
}

#flow .flow-box li::before {
  content: attr(data-num);
  position: absolute;
  top: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: var(--color-white);
  color: var(--color-red);
  font-size: calc(26 / 16 * 1rem);
  font-weight: bold;
  border: 3px solid var(--flow-border);
  border-radius: 50%;
}

#flow .flow-box picture {
  flex-shrink: 0;
  width: min(43%, 300px);
  margin-left: 7%;
}

#flow .flow-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--flow-border);
  border-radius: 50%;
}

#flow .flow-box li p {
  position: relative;
  flex-shrink: 1;
  padding: 30px 40px;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

#flow .flow-box li p::before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: -19px;
  border-top: 10px solid transparent;
  border-right: 20px solid var(--color-white);
  border-bottom: 10px solid transparent;
}

#flow .balloon img,
#flow .balloon p {
  transform: scale(0);
  transition: all 0.8s ease-out;
}

#flow .balloon.is-active img,
#flow .balloon.is-active p {
  transform: scale(1);
}

#flow .balloon.is-active p {
  transition-delay: 0.2s;
}

/* ---------------------------------------------------------
　ご利用料金
--------------------------------------------------------- */

#price,
#price .title-square {
  background: var(--bg-lightblue);
}

#price-mv {
  background-image: url(../img/price_mv.jpg);
  background-image: image-set("../img/price_mv.avif" type("image/avif"));
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: cover;
}

#price p {
  font-size: var(--font-size-l);
}

#price table {
  position: relative;
  margin: 60px auto 0;
  text-align: center;
  letter-spacing: 0.1em;
  border: 3px solid var(--color-black);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

#price table tr:first-child th:first-child {
  border-top-left-radius: 7px;
}
#price table tr:first-child th:last-child,
#price table tr:first-child td:last-child {
  border-top-right-radius: 7px;
}
#price table tr:last-child th:first-child,
#price table tr:last-child td:first-child {
  border-bottom-left-radius: 7px;
}
#price table tr:last-child td:last-child {
  border-bottom-right-radius: 7px;
}

#price table th,
#price table td {
  width: 200px;
  padding-block: 15px;
}

#price table tr th,
#price table tr td {
  border-bottom: 1px solid var(--color-black);
}

#price table tr:last-child th,
#price table tr:last-child td {
  border-bottom: none;
}

#price table tr th:last-child,
#price table tr td:last-child {
  border-right: none;
}

#price table tr th,
#price table tr td {
  border-right: 1px solid var(--color-black);
}

#price table tr:nth-last-child(5) th,
#price table tr:nth-last-child(5) td {
  border-bottom: 2px solid var(--color-black);
}

#price table tr:first-child th,
#price table tr:first-child td {
  border-top: none;
}

#price table tr th:first-child {
  border-right: 2px solid var(--color-black);
}

#price table caption {
  width: fit-content;
  margin-inline: auto;
  padding: 10px 40px;
  margin-bottom: 15px;
  color: #fff;
  font-size: var(--font-size-ll);
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

#price table caption.day {
  background: var(--color-day);
}

#price table caption.week {
  background: var(--color-week);
}

#price table th {
  font-size: var(--font-size-m);
  background: var(--color-cell);
}

#price table td {
  font-size: var(--font-size-l);
}

#price table td::before {
  content: "\00A5";
  margin-right: 0.5em;
}

#price table td.empty::before {
  content: "";
}

#price table th .hiruyoru {
  font-size: calc(15 / 16 * 1rem);
  font-weight: normal;
  letter-spacing: 0.1em;
}

#price table th span {
  margin-inline: 0.5em;
}

#price table td span {
  display: inline-block;
  width: 7ch;
  margin-inline: auto;
  text-align: right;
}

#price .discount-info {
  margin: 50px 0 0 2em;
  font-size: var(--font-size-s);
}

#price .discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: var(--bg-gray);
  border: 1px solid var(--color-gray);
  border-radius: 20px;
}

#price .discount ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(40%, 220px);
  font-size: var(--font-size-m);
}

#price .discount ul li {
  height: 25px;
  align-content: center;
}

#price .discount ul li:nth-of-type(even) {
  text-align: right;
}

#price .discount ul li:nth-of-type(even)::before {
  content: "\00A5";
}

#price .discount ul li:nth-last-child(2) {
  height: 30px;
  border-top: 1px solid var(--color-black);
}

#price .discount ul li:last-child {
  position: relative;
  height: 30px;
  font-size: calc(26 / 16 * 1rem);
  color: var(--color-blue);
  font-weight: bold;
  border-top: 1px solid var(--color-black);
}

#price .discount .arrow {
  width: 30px;
  height: 30px;
  background: var(--color-gray-d);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

#price .discount .off {
  position: relative;
  align-self: end;
  font-size: calc(56 / 16 * 1rem);
  color: var(--color-blue);
  font-weight: bold;
}

#price .discount .off::before {
  content: "-\00A0\00A5 600";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 180px;
  height: 90px;
  padding: 20px;
  display: grid;
  place-content: center;
  font-size: calc(28 / 16 * 1rem);
  color: #fff;
  background: url(../img/off.svg) no-repeat center;
  background-size: contain;
  transform: rotate(-8deg);
}

#price .discount .balloon::before {
  scale: 0;
  transition: all 0.5s ease-in;
}

#price .discount .balloon.is-active::before {
  scale: 1;
}

/* ---------------------------------------------------------
　施設の紹介
--------------------------------------------------------- */

#floor-mv {
  background-image: url(../img/mv3.jpg);
  background-image: image-set("../img/mv3.avif" type("image/avif"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#floor .ladder-box .item-left {
  padding-block: 120px;
}

#floor .ladder-box .item-right {
  padding-block: 150px;
}

#floor p {
  font-size: var(--font-size-l);
}

#floor .floor-map,
#floor .floor-map .title-square {
  background: var(--bg-lightgreen);
}

#floor .floor-map .map-1f {
  width: fit-content;
  padding: 5%;
  margin: 0 auto 60px;
  background: hsl(209 55% 95%);
  border: 2px solid hsl(209 60% 80%);
  border-radius: 20px;
}

#floor .floor-map .map-1f p {
  margin-left: 25px;
  margin-bottom: 10px;
  font-size: calc(40 / 16 * 1rem);
  font-weight: bold;
  color: hsl(209 50% 50%);
}

#floor .floor-map .map-1f img {
  width: 800px;
}

#floor .floor-map .map-2f {
  width: fit-content;
  padding: 5%;
  margin-inline: auto;
  background: hsl(0 55% 95%);
  border: 2px solid hsl(0 50% 80%);
  border-radius: 20px;
}

#floor .floor-map .map-2f p {
  margin-left: 25px;
  margin-bottom: 10px;
  font-size: calc(40 / 16 * 1rem);
  font-weight: bold;
  color: hsl(0 50% 50%);
}

#floor .floor-map .map-2f img {
  width: 800px;
}

#floor figcaption,
#access .parking figcaption {
  margin-top: 0.3em;
  text-align: center;
  font-size: var(--font-size-l);
}

#floor figure,
#access .parking figure {
  margin: 50px auto 0;
}

#floor figure img,
#access .parking figure img {
  object-fit: cover;
  border: solid var(--color-black);
}

#floor figure:nth-of-type(odd) img,
#access .parking figure:nth-of-type(odd) img {
  clip-path: polygon(
    7px 5px,
    calc(100% - 5px) 0,
    100% 100%,
    0 calc(100% - 5px)
  );
}

#floor figure:nth-of-type(even) img,
#access .parking figure:nth-of-type(even) img {
  clip-path: polygon(
    0 0,
    100% 5px,
    calc(100% - 5px) 100%,
    3px calc(100% - 3px)
  );
}

#floor .wall figure img {
  width: 100%;
  height: 400px;
  border-width: 15px;
}

#floor .moon figure,
#floor .change figure,
#floor .parking figure,
#access .parking figure {
  width: 70%;
}

#floor .shop figure {
  width: 60%;
}

#floor .moon figure img,
#floor .change figure img,
#floor .parking figure img,
#access .parking figure img {
  width: 100%;
  height: 300px;
  border-width: 12px;
}

#floor .shop figure img {
  width: 100%;
  height: 400px;
  border-width: 12px;
}

#floor .wall,
#floor .wall .title-square {
  background: var(--bg-pink);
}

#floor .moon,
#floor .moon .title-square {
  background: var(--bg-orange);
}

#floor .shop,
#floor .shop .title-square {
  background: var(--bg-lightblue);
}

#floor .change,
#floor .change .title-square {
  background: var(--bg-purple);
}

#floor .parking,
#floor .parking .title-square {
  background: var(--bg-yellow);
}

#floor .change .title-square,
#floor .parking .title-square,
#access .parking .title-square {
  margin-bottom: 20px;
}

/* ---------------------------------------------------------
　よくある質問
--------------------------------------------------------- */

#faq-mv {
  background-image: url(../img/faq_mv.jpg);
  background-image: image-set("../img/faq_mv.avif" type("image/avif"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#faq,
#faq .title-square {
  background: var(--bg-purple);
}

#faq .qa-box {
  padding: 20px;
  margin-bottom: 15px;
  border: 3px solid var(--color-gray);
  border-radius: 20px;
  overflow: hidden;
}

#faq p {
  margin-bottom: 0;
}

#faq .qa-box .questions {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  column-gap: 30px;
  margin-bottom: 20px;
}

#faq .qa-box .questions p {
  font-size: var(--font-size-ll);
  font-weight: bold;
  color: var(--color-blue-d);
}

#faq .qa-box .answer {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  column-gap: 30px;
}

#faq .qa-box .answer p {
  font-size: var(--font-size-l);
}

#faq .qa-box .questions span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-left: auto;
  border: 3px solid var(--color-blue);
  border-radius: 50%;
  font-size: calc(28 / 16 * 1rem);
  font-weight: bold;
  background: var(--color-blue-l);
  color: var(--color-blue);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

#faq .qa-box .answer span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-left: auto;
  border: 3px solid var(--color-red);
  border-radius: 50%;
  font-size: calc(24 / 16 * 1rem);
  font-weight: bold;
  background: var(--color-red-l);
  color: var(--color-red);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

/* ---------------------------------------------------------
　アクセス
--------------------------------------------------------- */

#access-mv {
  background-image: url(../img/access_mv.jpg);
  background-image: image-set("../img/access_mv.avif" type("image/avif"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#access .map {
  background: var(--bg-orange);
}

#access .map .title-square {
  background: var(--bg-orange);
}

#access .container {
  display: flex;
  justify-content: space-between;
  height: 450px;
  margin-bottom: 50px;
  font-size: var(--font-size-m);
  background: var(--bg-gray);
  border: 12px solid var(--color-black);
  clip-path: polygon(
    7px 5px,
    calc(100% - 5px) 0,
    100% 100%,
    0 calc(100% - 5px)
  );
}

#access .container .shop-image {
  width: 50%;
  height: 100%;
  border-right: 7px solid var(--color-black);
}

#access .container .shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#access .container .item-right {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: max(50%, 300px);
}

#access .container .item-right .access-logo {
  width: 110px;
  height: 110px;
  border: 2px solid var(--color-black);
  border-radius: 50%;
}

#access address li:first-of-type {
  margin-bottom: 1em;
  text-align: center;
  font-size: var(--font-size-l);
  font-weight: bold;
}

#access .business p {
  text-align: center;
  font-size: var(--font-size-m);
}

#access .business ul {
  display: grid;
  grid-template-columns: 5em 1fr;
  padding: 10px 30px;
  line-height: 2;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 10px;
}

#access .access-info {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5vw;
  margin-top: 20px;
  font-size: var(--font-size-m);
  outline: 3px solid var(--color-black);
  border-radius: 10px;
}

#access .access-info .info-text {
  display: grid;
  place-content: center;
  width: 200px;
  height: 100%;
  padding-block: 10px;
  background: var(--bg-orange);
  border-right: 2px solid var(--color-black);
  text-align: center;
}

#access .google-map {
  width: 100%;
  height: 400px;
  margin-top: 50px;
}

#access .google-map iframe {
  width: 100%;
  height: 400px;
  border: 10px solid var(--color-black);
}

#access .google-map:nth-of-type(1) iframe {
  clip-path: polygon(
    7px 5px,
    calc(100% - 5px) 0,
    100% 100%,
    0 calc(100% - 5px)
  );
}

#access .google-map:nth-of-type(2) iframe {
  clip-path: polygon(
    0 3px,
    100% 5px,
    calc(100% - 3px) calc(100% - 5px),
    0 100%
  );
}

#access .google-map figcaption {
  margin-left: 1em;
  font-size: var(--font-size-s);
}

#access .google-map iframe {
  width: 100%;
  height: 100%;
}

#access .parking {
  background: var(--bg-yellow);
}

#access .parking .ladder-box .item-right {
  padding-top: 150px;
}

#access .parking .title-square {
  background: var(--bg-yellow);
}

/* ---------------------------------------------------------
　フッター
--------------------------------------------------------- */

#footer {
  background: #444;
  background-image: repeating-linear-gradient(
      0deg,
      transparent 0 4px,
      rgba(255, 255, 255, 0.02) 4px 8px
    ),
    url(../img/footer_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
  color: #fff;
}

#footer .container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  padding-top: 120px;
  font-size: var(--font-size-m);
  line-height: 1.7;
}

#footer address ul li:first-of-type {
  margin-bottom: 1em;
  font-size: var(--font-size-l);
}

#footer address ul li:nth-of-type(3) {
  margin-bottom: 0.5em;
}

#footer address img {
  width: 1.1em;
  height: auto;
  margin-right: 10px;
  vertical-align: text-bottom;
}

#footer .phone {
  pointer-events: none;
}

#footer .mail:hover,
#footer .mail:focus {
  text-decoration: underline;
  text-underline-offset: 5px;
}

#footer .business p {
  font-size: var(--font-size-l);
  text-align: center;
  margin-bottom: 1em;
}

#footer .business ul {
  display: grid;
  grid-template-columns: 5em 1fr;
}

#footer .icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px;
}

#footer .icons img {
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}

#footer .icons a {
  position: relative;
}

#footer .icons a::before {
  content: attr(data-icons);
  position: absolute;
  font-size: var(--font-size-s);
  color: #fff;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  #footer .icons a:hover::before,
  #footer .icons a:focus::before {
    top: -15px;
    opacity: 1;
  }
}

#footer .copy {
  padding-bottom: env(safe-area-inset-bottom);
  text-align: center;
  font-size: var(--font-size-s);
}

/* ---------------------------------------------------------
　レスポンシブ
--------------------------------------------------------- */

/* ===== 959px以下 ============================== */

@media (max-width: 959px) {
  .single-box {
    padding-top: 100px;
    padding-bottom: 120px;
    border-width: 0 50px;
  }
  .ladder-box .item-left {
    border-left-width: 45px;
    border-right-width: 25px;
  }

  .ladder-box .item-right {
    border-left-width: 25px;
    border-right-width: 45px;
  }

  .mv .page-title {
    padding: 20px 80px;
    font-size: calc(28 / 16 * 1rem);
  }

  .slash-a {
    height: 130px;
    margin-top: -50px;
    clip-path: polygon(0 50px, 100% 0, 100% 50px, 0 100%);
  }

  .slash-b {
    height: 130px;
    margin-top: -50px;
    clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 50px);
  }

  #header {
    height: 80px;
    clip-path: polygon(0 0, 100% 0, 100% 60px, 0 100%);
  }

  #header .header-logo {
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
  }

  #header .global-nav {
    display: none;
  }

  .toggle-btn {
    display: block;
    top: 15px;
    right: 25px;
  }

  #top-mv {
    padding-top: 60px;
  }

  #flow .flow-box li p {
    padding-block: 20px;
  }

  #footer .mail {
    text-decoration: underline;
    text-underline-offset: 5px;
  }
}

/* ===== 743px以下 ============================== */

@media (max-width: 743px) {
  :root {
    --font-size-l: calc(17 / 16 * 1rem);
    --font-size-ll: calc(18 / 16 * 1rem);
  }

  .title-under {
    font-size: calc(22 / 16 * 1rem);
  }

  .title-square {
    padding: 3px 15px;
    font-size: calc(20 / 16 * 1rem);
    border-width: 7px;
  }

  .wrapper {
    width: 100%;
  }

  .inner {
    width: 80%;
  }

  .inner-ladder {
    padding: 90px 4% 90px 4%;
  }

  .inner-w {
    padding-inline: 0;
  }

  .slash-a {
    height: 100px;
    margin-top: -35px;
    clip-path: polygon(0 35px, 100% 0, 100% 35px, 0 100%);
  }

  .slash-b {
    height: 100px;
    margin-top: -35px;
    clip-path: polygon(0 0, 100% 35px, 100% 100%, 0 35px);
  }

  .line-a {
    height: 60px;
    margin-top: -20px;
    margin-bottom: -40px;
    clip-path: polygon(0 20px, 100% 0, 100% 20px, 0 100%);
  }

  .line-b {
    height: 60px;
    margin-top: -20px;
    margin-bottom: -40px;
    clip-path: polygon(0 0, 100% 20px, 100% 100%, 0 20px);
  }

  .single-box {
    padding-block: 80px;
    border: none;
  }

  .ladder-box .container-left,
  .ladder-box .container-right {
    margin-inline: 0;
  }

  .ladder-box .item-left,
  .ladder-box .item-right {
    margin-inline: 0;
    border: none;
  }

  .ladder-box .item-left::before,
  .ladder-box .item-left::after,
  .ladder-box .item-right::before,
  .ladder-box .item-right::after {
    width: 0;
  }

  .sp-br {
    display: block;
  }

  .mv {
    height: 400px;
  }

  .mv .page-title {
    padding: 12px 60px;
    font-size: calc(24 / 16 * 1rem);
  }

  .slide-menu .menu-list {
    font-size: calc(20 / 16 * 1rem);
  }

  #intro .fill img {
    height: 350px;
  }

  #intro .try .instagram img {
    width: 30px;
    height: 30px;
  }

  #calendar .single-box {
    padding-top: 120px;
  }

  #flow .title-square {
    margin-bottom: 70px;
  }

  #flow .flow-box::before {
    width: 100px;
  }

  #flow .flow-box li::before {
    top: -30px;
    width: 45px;
    height: 45px;
    font-size: calc(24 / 16 * 1rem);
  }

  #flow .flow-box picture {
    width: 180px;
    height: 180px;
    margin-left: 0;
  }

  #flow .flow-box li p {
    padding: 15px 20px;
  }

  #flow .flow-box li p::before {
    top: calc(50% - 7px);
    left: -13px;
    border-top: 7px solid transparent;
    border-right: 14px solid var(--color-white);
    border-bottom: 7px solid transparent;
  }

  #price table th span {
    margin-inline: 0;
  }

  #price table td::before {
    margin-right: 0.1em;
  }

  #price .discount {
    flex-direction: column;
    gap: 50px;
    padding-inline: 30px;
  }

  #price .discount ul {
    width: 100%;
  }

  #price .discount .arrow {
    transform: rotate(90deg);
  }

  #price .discount .off {
    align-self: center;
    width: 300px;
    text-align: right;
    font-size: calc(48 / 16 * 1rem);
  }

  #price .discount .off::before {
    top: -50px;
    left: 0;
    width: 140px;
    font-size: calc(22 / 16 * 1rem);
  }

  #floor .ladder-box .item-left {
    padding-block: 100px;
  }

  #floor .ladder-box .item-right {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  #floor .title-square {
    margin-left: 4%;
  }

  #floor .floor-map .map-1f,
  #floor .floor-map .map-2f {
    padding: 10px;
    border-width: 2px 0 2px 0;
    border-radius: 0;
  }

  #floor .floor-map .map-1f p,
  #floor .floor-map .map-2f p {
    margin-bottom: 0;
    font-size: calc(36 / 16 * 1rem);
  }

  #floor figure,
  #access .parking figure {
    margin-top: 40px;
  }

  #floor .wall figure img {
    height: 300px;
  }

  #floor .moon figure,
  #floor .change figure,
  #floor .parking figure,
  #access .parking figure {
    width: 90%;
  }

  #floor .moon figure img,
  #floor .change figure img,
  #floor .parking figure img,
  #access .parking figure img {
    height: 200px;
  }

  #floor .shop figure img {
    height: 250px;
  }

  #faq .title-square {
    margin-left: 4%;
  }

  #faq .qa-box {
    padding: 15px;
    margin-inline: 2%;
  }

  #faq .qa-box .questions,
  #faq .qa-box .answer {
    grid-template-columns: 60px 1fr;
    column-gap: 20px;
  }

  #faq .qa-box .questions span {
    width: 60px;
    height: 60px;
  }

  #access .map .single-box {
    padding-bottom: 120px;
  }

  #access .parking .ladder-box .item-right {
    padding-top: 120px;
  }

  #access .title-square {
    margin-left: 4%;
  }

  #access .container .shop-image {
    display: none;
  }

  #access .container .item-right {
    gap: 10px;
    width: 100%;
    padding-block: 20px;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 2px rgba(0, 0, 0, 1);
    background-image: url(../img/shop_image.jpg);
    background-image: image-set(
      url("../img/shop_image.avif") type("image/avif")
    );
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: overlay;
  }

  #access .container .item-right .business ul {
    color: var(--color-black);
    text-shadow: none;
  }

  #access .container .item-right .access-logo {
    width: 80px;
    height: 80px;
  }

  #access .access-info {
    grid-template-columns: 30% 1fr;
  }

  #access .access-info .info-text {
    width: auto;
  }

  #access .google-map {
    height: 250px;
  }

  #access .google-map:nth-of-type(1) iframe,
  #access .google-map:nth-of-type(2) iframe {
    border: solid var(--color-black);
    border-width: 10px 0 10px 0;
    clip-path: polygon(0 0, 100% 3px, 100% 100%, 0 calc(100% - 3px));
  }

  #footer {
    background-size: 160%;
  }

  #footer .container {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-top: 100px;
  }

  #footer .phone {
    line-height: 3;
    pointer-events: auto;
    text-decoration: underline;
    text-underline-offset: 5px;
  }
}

/* ---------------------------------------------------------
　アニメーションOFF
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .slide-left,
  .slide-right {
    opacity: 1;
    transform: none;
  }

  .toggle-btn span,
  .slide-menu {
    transition: 0s;
  }

  #header .header-logo:hover img {
    transform: scale(1.1);
  }

  .slide-menu .menu-list li {
    transform: none;
    transition: 0s;
  }

  @keyframes crossFade {
    0% {
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    30% {
      opacity: 1;
    }
    40% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }

  .mv .page-title {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  #flow .balloon img,
  #flow .balloon p {
    transform: none;
  }

  #price .discount .balloon::before {
    scale: 1;
  }
}
