@charset "UTF-8";
/* =========================================
   _reset.scss  |  Minimal Reset + Base (2025)
   - ブラウザ差を最小限に抑える軽量リセット
   - 本プロジェクトのベース（フォント/カラー/レイアウト共通）を同梱
   ========================================= */
/* ==============================
   Reset / Base (Modern Standard)
   ============================== */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Document */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%; /* Prevent iOS font size inflation */
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  font-size: 16px;
  line-height: 1.6;
}

/* Media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-size: 1rem; /* 16px */
  line-height: 1.6;
}

/* Lists */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Forms */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ========== 変数 ========== */
/* ========== Components ========== */
.btn, .header .nav-list li.btn > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 20px 30px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  box-shadow: 0 10px 24px rgba(34, 40, 49, 0.25);
}
.btn:hover, .header .nav-list li.btn > a:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 36px rgba(34, 40, 49, 0.28);
}
.btn:focus-visible, .header .nav-list li.btn > a:focus-visible {
  outline: 2px solid rgba(255, 211, 105, 0.8);
  outline-offset: 3px;
}
.btn:disabled, .header .nav-list li.btn > a:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

.btn-accent, .header .nav-list li.btn > a {
  background: #FFD369;
  color: #222831;
}

.btn-sm, .header .nav-list li.btn > a {
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
}

.section {
  padding: 50px 0;
  background: transparent;
}
.section .container {
  width: 100%;
  max-width: 1200px;
  padding-inline: clamp(16px, 4vw, 56px);
  margin-inline: auto;
}
.section .container h2 {
  font-size: clamp(1.4rem, 3vw, 4rem);
  margin: 0 auto 20px;
  display: block;
  width: fit-content;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-color: #FFD369;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.section .container p {
  font-size: clamp(0.85rem, 2.5vw, 1.25rem);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 16px;
  color: inherit;
}

.bg-dark {
  background-color: #16181B;
  color: #EEEEEE;
}

.bg-deep {
  background-color: #393E46;
  color: #EEEEEE;
}

.bg-deeper {
  background-color: #2e3542;
  color: #EEEEEE;
}

.bg-sand {
  color: #222831;
  background-color: #D6D3CC;
}

.bg-ink {
  background-color: #222831;
  color: #EEEEEE;
}

.main-visual-swiper .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}
.main-visual-swiper .swiper-pagination-bullet-active {
  background-color: #FFD369;
  opacity: 1;
}

/* =========================================
   Base: プロジェクト共通の土台
   （必要に応じて -base.scss に分離も可）
   ========================================= */
body {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  color: #222831;
  background: #393E46;
}

.header {
  --header-h: clamp(40px, 6.5vh, 65px);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #222831;
  color: #EEEEEE;
}
.header-inner {
  display: flex;
  position: relative;
  height: var(--header-h);
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  height: 100%;
  display: flex;
}
.header .logo .main-logo {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
.header .nav-toggle {
  width: 54px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  background: #16181B;
  border-radius: 20%;
  padding: 10px;
  margin-right: 15px;
  cursor: pointer;
  z-index: 1100;
}
.header .nav-toggle-line {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: #EEEEEE;
  transform-origin: center;
  transition: transform 0.25s, opacity 0.25s;
}
.header .nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 900;
  background-color: #222831;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.4s ease;
}
.header .nav-list {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.header .nav-list li:not(.btn) > a {
  color: #EEEEEE;
  font-weight: 500;
  font-size: 1.25rem;
  display: inline-block;
  padding: 0 10px;
  border-bottom: 2px solid #FFD369;
  transition: color 0.25s ease;
}
.header .nav-list li:not(.btn) > a:hover {
  color: #FFD369;
}
.header .nav-list li.btn > a {
  color: #222831;
  border-bottom: none;
  text-decoration: none;
}
.header .nav-list li.btn {
  padding: 0;
}
.header .nav-list li:last-child:not(.btn) {
  padding: 1.5rem 0 1rem;
}
.header.is-open .nav {
  max-height: calc(100dvh - var(--header-h));
  overflow: auto;
  visibility: visible;
  pointer-events: auto;
  opacity: 0.99;
}
.header.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.header.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.header.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.hero {
  padding: 30px 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), #2e3542);
}
.hero-copy {
  text-align: center;
  padding-inline: 18px;
  color: #EEEEEE;
}
.hero-copy h1 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 2.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-color: #FFD369;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.hero .btn, .hero .header .nav-list li.btn > a, .header .nav-list .hero li.btn > a {
  margin-block: 16px;
}

.main-visual .main-visual-swiper,
.main-visual .swiper-slide {
  aspect-ratio: 16/9;
}
.main-visual .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing .container > p {
  color: #222831;
  text-align: center;
}
.pricing .container .pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.pricing .container .pricing-plans .price-card {
  display: flex;
  flex-direction: column;
  background: #EEEEEE;
  border-radius: 12px;
  padding: 20px 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.pricing .container .pricing-plans .price-card .price-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing .container .pricing-plans .price-card .price-value {
  color: #222831;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.pricing .container .pricing-plans .price-card .price-value .price-yen {
  font-size: 1.3rem;
  margin-right: 4px;
  opacity: 0.85;
}
.pricing .container .pricing-plans .price-card .price-value .per-month {
  font-size: 1.3rem;
  color: #16181B;
  margin-left: 4px;
}
.pricing .container .pricing-plans .price-card .price-list {
  text-align: left;
  list-style: disc;
  list-style-position: inside;
  margin-bottom: auto;
}
.pricing .container .pricing-plans .price-card .price-list li {
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #16181B;
}
.pricing .container .pricing-plans .price-card:nth-child(2) {
  border: 4px solid #FFD369;
  background-color: #fffbee;
}
.pricing .container .pricing-plans .price-card .btn, .pricing .container .pricing-plans .price-card .header .nav-list li.btn > a, .header .nav-list .pricing .container .pricing-plans .price-card li.btn > a {
  margin: 20px;
  padding: 16px 24px;
}

.section.facility p {
  text-align: center;
}
.section.facility .facility-lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.section.facility .facility-lists .facility-item {
  background: #222831;
  margin-inline: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.section.facility .facility-lists .facility-item .facility-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 10px;
}
.section.facility .facility-lists .facility-item .facility-body {
  padding: 10px 20px;
}
.section.facility .facility-lists .facility-item .facility-body .facility-type {
  font-size: 0.9rem;
  color: #FFD369;
  text-align: left;
}
.section.facility .facility-lists .facility-item .facility-body .facility-title {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #EEEEEE;
  text-align: left;
  margin: 0 0 16px;
}
.section.facility .facility-lists .facility-item .facility-body .facility-text {
  font-size: 0.75rem;
  text-align: left;
}

.section.equipment p {
  color: #222831;
  text-align: center;
}
.section.equipment .equip-content .equip-lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.section.equipment .equip-content .equip-lists-card {
  background: #EEEEEE;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-inline: 15px;
}
.section.equipment .equip-content .equip-lists-card .equip-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 10px;
}
.section.equipment .equip-content .equip-lists-card .equip-body {
  padding: 10px 20px;
}
.section.equipment .equip-content .equip-lists-card .equip-body h3 {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222831;
  text-align: left;
  margin: 0 0 16px;
}
.section.equipment .equip-content .equip-lists-card .equip-body p {
  font-size: 0.75rem;
  text-align: left;
}
.section.equipment .equip-content .all-equip {
  margin-top: 40px;
  background-color: #EEEEEE;
  border-radius: 12px;
  padding: 30px 40px;
}
.section.equipment .equip-content .all-equip-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}
.section.equipment .equip-content .all-equip-items {
  columns: 1;
  column-gap: 24px;
  list-style: disc;
  list-style-position: inside;
  color: #16181B;
}
.section.equipment .equip-content .all-equip-items li {
  margin-bottom: 4px;
  font-size: 0.85rem;
  break-inside: avoid;
}

.section.news .news-contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.section.news .news-contents .news-contents-card {
  background: #222831;
  border-radius: 12px;
  overflow: hidden;
  margin-inline: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.section.news .news-contents .news-contents-card .news-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.section.news .news-contents .news-contents-card .news-body {
  padding: 10px 20px;
}
.section.news .news-contents .news-contents-card .news-body-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  line-height: 1;
  margin-bottom: 18px;
}
.section.news .news-contents .news-contents-card .news-body-info .news-date {
  font-size: 0.9rem;
  text-align: left;
  margin: 0;
  line-height: 1;
}
.section.news .news-contents .news-contents-card .news-body-info .badge {
  background-color: #FFD369;
  color: #222831;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
}
.section.news .news-contents .news-contents-card .news-body-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #EEEEEE;
  margin: 0 0 16px;
}
.section.news .news-contents .news-contents-card .news-body-text {
  font-size: 0.75rem;
  text-align: left;
}
.section.news .news-contents .news-contents-card .news-body-link {
  display: inline-block;
  margin-top: 12px;
  color: #FFD369;
  font-weight: 600;
}
.section.news .news-contents .news-contents-card .news-body-link:hover {
  text-decoration: underline;
}
.section.news .news-contents .news-empty {
  text-align: center;
  padding: 40px 0;
  color: #fff;
}
.section.news .news-contents .news-actions {
  text-align: center;
  margin: 30px 15px 0;
  grid-column: 1/-1;
}
.section.news .news-contents .news-actions .btn, .section.news .news-contents .news-actions .header .nav-list li.btn > a, .header .nav-list .section.news .news-contents .news-actions li.btn > a {
  padding: 16px 20px;
  background-color: #FFD369;
  color: #222831;
}
.section.news .news-contents .news-pagination {
  text-align: center;
  margin: 30px 15px 0;
}
.section.news .news-contents .news-pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
}
.section.news .news-contents .news-pagination .page-numbers.current {
  font-weight: 700;
  text-decoration: underline;
}

.section.access .access-content {
  padding: 10px 20px;
}
.section.access .access-content .access-meta {
  margin: 0 0 50px;
}
.section.access .access-content .access-meta .access-info-item {
  display: block;
  padding: 16px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #393E46;
}
.section.access .access-content .access-meta .access-info-item dt {
  font-weight: 600;
  margin-bottom: 6px;
  white-space: nowrap;
}
.section.access .access-content .access-meta .access-info-item dd {
  margin: 0;
}
.section.access .access-map {
  display: block;
  aspect-ratio: 5/3;
  margin: 0 auto;
  width: 90%;
  max-width: 900px;
  height: auto;
}

.footer {
  background: #222831;
  color: #EEEEEE;
  text-align: center;
  padding: 20px 16px 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  font-size: clamp(0.8rem, 1.2vw, 1.25rem);
}
.footer-inner .footer-brand .footer-logo {
  display: inline-block;
  width: 25vw;
  max-width: 200px;
  height: auto;
}
.footer-inner .footer-brand .footer-social {
  margin-top: 12px;
  display: flex;
  justify-content: space-evenly;
}
.footer-inner .footer-brand .footer-social .sns-link {
  display: inline-block;
  width: 5vw;
  max-width: 40px;
  height: auto;
}
.footer-inner .footer-brand .footer-social .sns-link img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-inner .footer-cols {
  columns: 2;
  justify-content: space-evenly;
  text-align: left;
  gap: 30px;
  align-items: center;
}
.footer-inner .footer-cols li {
  margin-bottom: 8px;
}
.footer > p {
  margin: 15px auto 0;
  font-size: 0.75rem;
  opacity: 0.7;
}

.section.personal {
  padding: 50px 12px;
}
.section.personal .container {
  display: grid;
  gap: 24px;
  align-items: center;
}
.section.personal .container .personal-body {
  text-align: left;
}
.section.personal .container .personal-body h2 {
  text-align: left;
  margin: 0 0 12px;
  width: fit-content;
}
.section.personal .container .personal-body p {
  color: #222831;
}
.section.personal .container .personal-body .personal-list {
  list-style: disc;
  padding-left: 18px;
  margin: 12px 0 24px;
  color: #222831;
}
.section.personal .container .personal-body .personal-list li {
  margin-bottom: 6px;
}
.section.personal .container .personal-body .btn, .section.personal .container .personal-body .header .nav-list li.btn > a, .header .nav-list .section.personal .container .personal-body li.btn > a {
  margin-top: 10px;
}
.section.personal .container .personal-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.section.reviews p {
  text-align: center;
}
.section.reviews .review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.section.reviews .review-list .review-card {
  background: #EEEEEE;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.section.reviews .review-list .review-stars {
  display: inline-flex;
  gap: 4px;
  color: #d1c93c;
  font-size: 1.1rem;
}
.section.reviews .review-list .review-stars span {
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  font-weight: 900;
}
.section.reviews .review-list .review-text {
  margin: 0;
  color: #16181B;
  line-height: 1.7;
  font-size: 0.95rem;
}
.section.reviews .review-list .reviewer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section.reviews .review-list .reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
  flex: 0 0 52px;
  border: 3px solid rgba(0, 0, 0, 0.65);
}
.section.reviews .review-list .reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section.reviews .review-list .reviewer-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.section.reviews .review-list .reviewer-meta p {
  margin: 0;
}
.section.reviews .review-list .reviewer-meta .reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.section.reviews .review-list .reviewer-meta .reviewer-role {
  font-size: 0.85rem;
  color: #5b5f65;
}

.section.coaches .coach-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.section.coaches .coach-card {
  background: #222831;
  border-radius: 12px;
  padding: 18px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.section.coaches .coach-photo {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
}
.section.coaches .coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section.coaches .coach-body {
  text-align: left;
}
.section.coaches .coach-body .coach-name {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
}
.section.coaches .coach-body .coach-role {
  margin: 0 0 6px;
  color: #FFD369;
  font-weight: 600;
}
.section.coaches .coach-body .coach-bio {
  margin: 0;
  font-size: 0.85rem;
}

.section.shop-list {
  padding-inline: 5vw;
}
.section.shop-list .shop-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(34, 40, 49, 0.12);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  margin: 24px auto;
  background: #EEEEEE;
  max-width: 1200px;
}
.section.shop-list .shop-card .shop-img {
  overflow: hidden;
  margin: 0;
  height: 220px;
  max-height: 300px;
}
.section.shop-list .shop-card .shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section.shop-list .shop-card .shop-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}
.section.shop-list .shop-card .shop-info .shop-area {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
  color: #222831;
  text-decoration: underline #FFD369 3px;
  text-underline-offset: 8px;
}
.section.shop-list .shop-card .shop-info .shop-address,
.section.shop-list .shop-card .shop-info .shop-phone,
.section.shop-list .shop-card .shop-info .shop-detail {
  margin: 0;
  color: #3e4248;
  line-height: 1.6;
}
.section.shop-list .shop-card .shop-info .shop-detail {
  font-weight: 700;
  color: #16181B;
}

.section.faq {
  background: #D6D3CC;
}
.section.faq .faq-item {
  background: #EEEEEE;
  border-radius: 12px;
  border-left: 4px solid #FFD369;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.section.faq .faq-question {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222831;
}
.section.faq .faq-answer {
  margin: 0;
  color: #4b4f55;
  line-height: 1.7;
}

.section.contact {
  background: #393E46;
  color: #EEEEEE;
}
.section.contact .container {
  padding-inline: clamp(16px, 5vw, 64px);
  display: grid;
  gap: 24px;
}
.section.contact .contact-body {
  text-align: center;
}
.section.contact .contact-body h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}
.section.contact .contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}
.section.contact .contact-list span {
  display: inline-block;
  min-width: 70px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section.contact .contact-form {
  display: grid;
  gap: 14px;
}
.section.contact .wpcf7 form {
  display: grid;
  gap: 14px;
}
.section.contact .wpcf7 form p {
  margin: 0;
}
.section.contact .wpcf7 form br {
  display: none;
}
.section.contact .wpcf7 .form-group {
  display: grid;
  gap: 2px;
  position: relative;
}
.section.contact .form-group {
  display: grid;
  gap: 2px;
  position: relative;
}
.section.contact .form-group label {
  font-weight: 600;
}
.section.contact .form-group input,
.section.contact .form-group textarea {
  width: 100%;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #EEEEEE;
}
.section.contact .form-group textarea::placeholder {
  color: rgba(238, 238, 238, 0.6);
}
.section.contact .form-group .textarea-wrap {
  position: relative;
}
.section.contact .form-group .textarea-wrap p {
  position: relative;
  margin: 0;
}
.section.contact .form-group .textarea-wrap br {
  display: none;
}
.section.contact .form-group .textarea-wrap textarea {
  padding: 12px 14px 28px;
}
.section.contact .form-group .textarea-wrap .text-counter {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 0.8rem;
  color: rgba(238, 238, 238, 0.6);
  pointer-events: none;
}

.section.signup p {
  color: #222831;
  text-align: center;
}
.section.signup .wpcf7 form p {
  text-align: left;
  margin: 0;
  max-width: none;
  width: 100%;
}
.section.signup .wpcf7 form > .form-row + .form-row,
.section.signup .wpcf7 form > .form-row + .form-agree,
.section.signup .wpcf7 form > .form-agree + .form-submit {
  margin-top: 20px;
}
.section.signup .signup-form {
  display: grid;
  gap: 32px;
  margin-top: 20px;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}
.section.signup .form-row {
  display: grid;
  gap: 20px;
  width: 100%;
}
.section.signup .form-row--full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}
.section.signup .form-row--full > .form-group {
  grid-column: 1/-1;
}
.section.signup .form-group {
  display: grid;
  gap: 10px;
  justify-items: stretch;
  width: 100%;
}
.section.signup .form-group > p {
  margin: 0;
  width: 100%;
}
.section.signup .form-group label {
  font-weight: 600;
  text-align: left;
  justify-self: start;
}
.section.signup .form-group input,
.section.signup .form-group select,
.section.signup .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(34, 40, 49, 0.2);
  background: #fff;
  color: #222831;
}
.section.signup .form-group textarea {
  resize: vertical;
}
.section.signup .form-group .textarea-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.section.signup .form-group .textarea-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.section.signup .form-group .textarea-wrap textarea {
  padding: 12px 14px 28px;
}
.section.signup .form-group .textarea-wrap p {
  position: relative;
  margin: 0;
  width: 100%;
}
.section.signup .form-group .textarea-wrap br {
  display: none;
}
.section.signup .form-group .textarea-wrap .text-counter {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 0.8rem;
  color: rgba(34, 40, 49, 0.6);
  pointer-events: none;
}
.section.signup .form-group .required {
  color: rgba(255, 9, 9, 0.65);
  margin-left: 6px;
  font-size: 0.85rem;
}
.section.signup .form-group .error {
  color: #ff0909;
  font-size: 0.85rem;
  margin-left: 6px;
}
.section.signup .form-group > .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.section.signup .form-group .wpcf7-form-control {
  width: 100%;
}
.section.signup .form-group .wpcf7-form-control-wrap select,
.section.signup .form-group .wpcf7-form-control-wrap input,
.section.signup .form-group .wpcf7-form-control-wrap textarea {
  width: 100%;
}
.section.signup .form-agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.section.signup .form-agree .wpcf7-form-control-wrap {
  display: inline-flex;
  align-items: center;
}
.section.signup .form-agree .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.section.signup .form-agree .wpcf7-list-item-label {
  display: inline;
}
.section.signup .form-agree br {
  display: none;
}
.section.signup .form-agree label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section.signup .form-agree .required {
  color: rgba(255, 9, 9, 0.65);
  margin-left: 6px;
  font-size: 0.85rem;
  display: inline;
}
.section.signup .form-agree input[type=checkbox] {
  width: auto;
  padding: 0;
}
.section.signup .form-submit {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.section.signup .form-submit p {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.section.signup .form-submit .wpcf7-submit {
  margin: 0 auto;
}

@media (min-width: 700px) {
  .header {
    --header-h: 5.5vh;
  }
  .header .nav-toggle {
    display: none;
  }
  .header .nav-list {
    padding: 0;
    margin-right: 16px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
  }
  .header .nav {
    position: static;
    max-height: none;
    overflow: visible;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
    transition: none;
    z-index: auto;
    grid-column: 3;
    justify-self: end;
  }
  .section.hero .hero-copy {
    margin: 50px auto 30px;
    padding-inline: 6vw;
    max-width: 950px;
  }
  .section.hero .hero-copy h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 4rem;
    margin-bottom: 30px;
  }
  .main-visual {
    padding: 0 8vw 20px;
  }
  .section.personal .container {
    grid-template-columns: 1.1fr 1fr;
  }
  .section.shop-list .shop-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 260px;
  }
  .section.shop-list .shop-card .shop-img {
    height: 100%;
  }
  .shop-card:nth-of-type(2) .shop-img {
    order: 2;
  }
  .shop-card:nth-of-type(2) .shop-info {
    order: 1;
  }
  .section.contact .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    padding-inline: 10vw;
    max-width: 1200px;
  }
  .section.contact .container .contact-body {
    text-align: left;
  }
  .section.contact .container .contact-body h2 {
    margin: 0 0 20px;
  }
  .section.signup .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }
  .section.equipment .equip-content .all-equip-items {
    columns: 2;
  }
  .section.access .access-content .access-meta {
    margin-inline: 15%;
  }
  .section.access .access-content .access-meta .access-info-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    column-gap: 32px;
    align-items: center;
    justify-items: start;
  }
  .section.access .access-content .access-meta .access-info-item dt {
    margin-bottom: 0;
  }
  .section.access .access-map {
    width: 75%;
  }
  .footer-inner .footer-cols {
    columns: 3;
    align-items: center;
    gap: 50px;
    font-size: 1rem;
    margin-right: 20%;
    margin-bottom: 8vh;
  }
}
@media (min-width: 960px) {
  .section.equipment .equip-content .all-equip-items {
    columns: 3;
  }
  .footer-inner .footer-cols {
    margin-left: 15%;
  }
}

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