@charset "UTF-8";

/* =========================
共通
========================= */

@font-face {
  font-family: "UoqMunThenKhung";
  src: url("../css/fonts/UoqMunThenKhung-Regular.woff2") format("woff2"), url("../css/fonts/UoqMunThenKhung-Regular.woff") format("woff"), url("../css/fonts/UoqMunThenKhung-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* colors: */
  --black: #000000;
  --white: #fff;
  --blue: #193c70;
  --red: #ac191b;
  --modalRed: #cd3b27;
  --yellow: #ffd900;
  --green: #368e3c;
  --orange: #fd7700;
  --fz16: clamp(14px, 1.333vw, 16px);
  --fz18: clamp(14px, 1.5vw, 18px);
  --fz20: clamp(16px, 1.666vw, 20px);
  --fz25: clamp(18px, 2.083vw, 25px);
  --fz30: clamp(20px, 2.5vw, 30px);
  --fz50: clamp(26px, 4.1667vw, 50px);
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #f6e8d5;
  font-size: var(--fz20);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.05em;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--black);
  transition: all ease 0.3s;
}
a:hover {
  opacity: 0.9;
}

li {
  list-style: none;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: content-box;
  @media only screen and (max-width: 499px) {
    padding: 0 1rem;
  }
}

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

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

/* Instagramバナー */
.common-insta-wrap {
  text-align: center;
}

.common-insta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin: 0 auto;
  font-size: var(--fz30);
  gap: 2rem;
  padding-block: 0.5rem;
  border-radius: 30px;
  color: var(--white);
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #c87afb 0%, #fba253 45%, #fe077e 100%);
  background-size: 200% auto;
}

.common-insta-btn:hover {
  transform: translateY(-3px);
  background-position: right center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.common-insta-icon {
  max-width: 60px;
}

.common-insta-text {
  display: inline-block;
}

@media (max-width: 900px) {
  .common-insta-icon {
    max-width: 36px;
  }
}
@media only screen and (max-width: 640px) {
  .common-insta-icon {
    max-width: 24px;
  }
  .common-insta-btn {
    max-width: 100%;
    font-size: 15px;
    gap: 4px;
    padding-block: 0.5rem;
  }
}
@media only screen and (max-width: 399px) {
  .common-insta-btn {
    font-size: 12px;
  }
}
@media only screen and (max-width: 359px) {
  .common-insta-btn {
    font-size: 11px;
  }
  .common-insta-icon {
    max-width: 20px;
  }
}

/* 屋台村バナー */
.common-banner-link {
  display: block;
  background-color: var(--red);
  max-width: 700px;
  margin: 0 auto;
  font-size: var(--fz30);
  color: var(--white);
  border-radius: 15px;
  transition: all 0.3s ease;
  transform: translateY(0);
}
.common-banner-link:hover {
  background-color: var(--white);
  color: var(--red);
  border: 0.5px solid var(--red);
  transform: translateY(-4px);
}

/* 両サイトの縦帯 */
.red-side-section {
  position: relative;
}
.red-side-section::before,
.red-side-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(40 / 1200 * 100vw);
  max-width: 42px;
  min-width: 30px;
  background-image: url(../images/body-side-red.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: center top;
  pointer-events: none;
  z-index: 1000;
}

.red-side-section::before {
  left: 0;
}
.red-side-section::after {
  right: 0;
}
@media (max-width: 499px) {
  .red-side-section::before,
  .red-side-section::after {
    min-width: 18px;
  }
}
@media only screen and (max-width: 359px) {
  .red-side-section::before,
  .red-side-section::after {
    min-width: 16px;
  }
}

.white-side-section {
  position: relative;
}
.white-side-section::before,
.white-side-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(40 / 1200 * 100vw);
  max-width: 42px;
  min-width: 30px;
  background-image: url(../images/body-side-white.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: center top;
  pointer-events: none;
  z-index: 1000;
}

.white-side-section::before {
  left: 0;
}
.white-side-section::after {
  right: 0;
}
@media (max-width: 499px) {
  .white-side-section::before,
  .white-side-section::after {
    min-width: 18px;
  }
}
@media only screen and (max-width: 359px) {
  .white-side-section::before,
  .white-side-section::after {
    min-width: 16px;
  }
}

/* 屋台村特設バナー ボタン */
.common-banner-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.common-banner-logo {
  max-width: 350px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 499px) {
  .common-banner-logo {
    width: 40%;
  }
}
/* =========================
ヘッダー メインビジュアル
========================= */

.site-header-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 77vh;
  background-color: var(--blue);
}

.site-header-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-header-nav {
  width: 100%;
  background-color: var(--blue);
  padding-bottom: 50px;
}

.site-header-nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-header-nav-top {
  text-align: center;
}

.site-header-logo-img {
  max-width: 345px;
  margin-top: -50px;
  @media only screen and (min-width: 1440px) {
    max-width: 420px;
  }
}

.site-header-icon-list {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: -50px;
}

.site-header-icon-link {
  display: inline-flex;
  max-width: 57px;
}

.site-header-menu-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
}

.site-header-menu-link {
  display: inline-block;
  font-size: var(--fz20);
  font-family: "UoqMunThenKhung", serif;
  color: var(--white);
  transition: opacity 0.2s ease;
}

.site-header-menu-link:hover,
.site-header-menu-link:focus {
  opacity: 0.7;
}

.sp-nav,
.sp-nav-btn {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .site-header-media {
    max-height: 50vh;
  }
}
@media only screen and (max-width: 899px) {
  .site-header-icon-link {
    max-width: 40px;
  }
  .site-header-logo-img {
    margin-top: 1rem;
  }

  .site-header-icon-list {
    gap: 1rem;
    margin-top: -30px;
  }
  .site-header-nav-inner {
    gap: 1rem;
  }
  .site-header-menu-list {
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .site-header-media {
    aspect-ratio: 16 / 10;
    max-height: none;
    min-height: 0;
  }

  .site-header-video {
     padding-top: 20%;
  }

  .site-header-nav-inner {
    padding: 1rem 2rem;
    gap: 0;
  }

  .site-header-logo-img {
    width: 55%;
    margin-top: 0;
  }

  .site-header-icon-link {
    max-width: 36px;
  }

  .site-header-menu-list {
    gap: 1rem;
    row-gap: 0;
  }

  .site-header {
    display: flex;
    flex-direction: column;
  }

  .site-header-nav {
    order: 1;
    padding-bottom: 0;
  }

  .site-header-media {
    order: 2;
  }

  .site-header-media {
    aspect-ratio: auto;
    height: auto;
  }

}

@media (max-width: 640px) {
  .site-header-icon-list,
  .site-header-menu {
    display: none;
  }
  .site-header-logo-img {
    width: 33%;
  }
  .site-header-nav-inner {
    position: fixed;
    width: 100%;
    padding: 0.5rem 0;
    gap: 0;
    background: var(--blue);
    z-index: 9999;
  }

  .sp-nav-btn {
    display: block;
    position: fixed;
    right: 16px;
    top: 40px;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 99999;
  }
  .sp-nav-btn span {
    display: block;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: 0.3s;
  }

  /* ドロワー */
  .sp-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--blue);
    padding: 1.5rem;
    z-index: 9999;
    transition: right 0.3s ease;
  }
  .sp-nav.is-open {
    right: 0;
  }

  .sp-nav__menu {
    margin: 0 0 2rem;
    display: grid;
    gap: 1rem;
  }

  .sp-nav__menu a,
  .sp-nav__sns a {
    color: var(--white);
    font-size: var(--fz20);
    font-family: "UoqMunThenKhung", serif;
  }

  .sp-nav__sns {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    display: grid;
    gap: 1rem;
  }

  /* ===== オーバーレイ ===== */
  .sp-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .sp-overlay.is-open {
    display: block;
    opacity: 1;
  }
  html.no-scroll {
    overflow: hidden;
  }

  /* ハンバーガー変形 */
  .sp-nav-btn.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .sp-nav-btn.is-open span:nth-child(2) {
    opacity: 0;
  }
  .sp-nav-btn.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
@media only screen and (max-width: 499px) {
  .sp-nav-btn {
    top: 30px;
  }
}
@media only screen and (max-width: 399px) {
  .sp-nav-btn {
    top: 25px;
  }
}
/* =======================
  つむぐセクション
======================== */

.tsumugu-section {
  padding-top: 25px;
  padding-bottom: 100px;
}

.tsumugu-heading-wrap {
  text-align: center;
  margin-top: 160px;
  margin-bottom: 56px;
}

.tsumugu-heading-img {
  max-width: 457px;
  margin-bottom: 56px;
}

.tsumugu-subtitle {
  font-size: var(--fz30);
  color: var(--blue);
  margin-bottom: 95px;
}

.tsumugu-content {
  position: relative;
  z-index: 99;
}

.tsumugu-text-box {
  position: relative;
  z-index: 999;
  background-color: var(--yellow);
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 110px;
}

.tsumugu-text {
  font-size: var(--fz30);
  font-weight: bold;
  color: var(--blue);
  line-height: 2.1;
  letter-spacing: 0.1em;
  text-align: center;
}

.tsumugu-image {
  position: absolute;
  top: 5%;
  z-index: 10;
  max-height: 720px;
}

@media (max-width: 768px) {
  .tsumugu-heading-wrap {
    margin-top: 100px;
    margin-bottom: 56px;
  }
  .tsumugu-heading-img {
    max-width: 60%;
    margin-bottom: 30px;
  }
  .tsumugu-image {
    position: static;
  }
  .tsumugu-text-box {
    width: 100%;
    padding: 2rem;
  }
  .tsumugu-text {
    line-height: 1.9;
  }
  .tsumugu-subtitle {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 768px) {
  .common-banner-link {
    max-width: 80%;
    font-size: 18px;
  }
}

@media (max-width: 499px) {
  .tsumugu-heading-wrap {
    margin-top: 70px;
    margin-bottom: 36px;
  }
}
@media only screen and (max-width: 399px) {
  .common-banner-link {
    max-width: 85%;
    font-size: 16px;
  }
  .tsumugu-text {
    font-size: 18px;
    line-height: 1.7;
  }
}
@media only screen and (max-width: 359px) {
  .common-banner-link {
    max-width: 85%;
    font-size: 14px;
  }
}

/* =========================
おしらせ
========================= */

.news-section {
  padding: 200px 0;
  background-color: var(--white);
}

.news-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: content-box;
}

.news-title-wrap {
  text-align: center;
  margin-bottom: 80px;
}

.news-title-img {
  max-width: 470px;
  height: auto;
}

.news-list {
  display: flex;
  gap: 7rem;
  margin-bottom: 80px;
}

.news-card {
  width: 25%;
}

.news-card-tag {
  display: inline-block;
  font-size: var(--fz16);
  color: var(--white);
  min-width: 100px;
  padding: 0 8px;
  margin-bottom: 20px;
  text-align: center;
}

.news-card-tag--yataimura {
  background-color: var(--blue);
}

.news-card-tag--event {
  background-color: #ffb300;
}
.news-card-tag--news {
  background-color: var(--green);
}

.news-card-tag--rental {
  background-color: rgba(251, 162, 83, 0.6);
}

.news-card-img-wrap {
  margin-bottom: 30px;
}

.news-card-date {
  font-size: var(--fz20);
  margin-bottom: 4px;
}

.news-card-text {
  font-size: var(--fz20);
}

.news-btn-wrap {
  text-align: center;
  margin-bottom: 64px;
}

.news-btn {
  display: block;
  max-width: 80%;
  margin: 0 auto;
  font-size: var(--fz30);
  background-color: var(--blue);
  color: var(--white);
  border-radius: 50px;
  border: 2px solid transparent;
  padding-block: 0.5rem;
  transition: all 0.3s ease;
}

.news-btn:hover {
  background-color: var(--white);
  color: var(--blue);
  border: 0.5px solid var(--blue);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .news-section {
    padding: 100px 0;
  }
  .news-card {
    width: 31%;
  }
  .news-btn-wrap {
    margin-bottom: 36px;
  }
}

@media (max-width: 767px) {
  .news-list {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
  .news-card {
    width: 100%;
    margin-bottom: 5rem;
  }
  .news-card-img {
    max-height: 480px;
    object-position: top;
  }
  .news-title-img {
    max-width: 60%;
  }
}
@media only screen and (max-width: 499px) {
  .news-inner {
    padding: 0 2rem;
  }
  .news-title-wrap {
    text-align: center;
    margin-bottom: 50px;
  }
  .news-section::before,
  .news-section::after {
    min-width: 20px;
  }
  .news-card-img {
    height: auto;
    object-position: top;
  }
  .news-card {
    margin-bottom: 3rem;
  }
  .news-card-img-wrap {
    margin-bottom: 8px;
  }
  .news-section {
    padding: 70px 0;
  }
  .news-btn-wrap {
    margin-bottom: 24px;
  }
  .news-card-tag {
    margin-bottom: 12px;
  }
  .news-btn {
    max-width: 100%;
    font-size: 18px;
    padding-block: 0.3rem;
  }
}
@media only screen and (max-width: 399px) {
  .news-btn {
    font-size: 14px;
  }
}
@media only screen and (max-width: 359px) {
  .news-btn {
    font-size: 12px;
  }
}

/* =========================
おみせ
========================= */

.store-section {
  padding: 120px 0;
}

.store-section-inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 3rem;
  box-sizing: content-box;
}

.store-title-wrap {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}
.store-title-img {
  max-width: 441px;
  margin-bottom: 25px;
}
.store-title-sub {
  font-size: var(--fz30);
  color: var(--blue);
}
.store-title-catch {
  font-size: var(--fz30);
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
  display: flex;
  justify-content: flex-end;
  transform: rotate(-10deg);
}

/* ===== マップ ===== */
.store-map {
  position: relative;
  max-width: 98%;
}

/* 透明リンク領域 */
.store-hotspot {
  position: absolute;
  display: block;
  background: rgba(0, 0, 0, 0);
}
@media (min-width: 901px) {
  .store-hotspot {
    cursor: pointer;
  }
}
@media (max-width: 900px) {
  .store-hotspot {
    pointer-events: none;
  }
}

/* ▼ 座標設定（%単位） */
.store-hotspot--mojoka {
  left: 69%;
  top: 4%;
  width: 2%;
  height: 38%;
}
.store-hotspot--learning {
  left: 65%;
  top: 0%;
  width: 2.5%;
  height: 40%;
}
.store-hotspot--mas {
  left: 55.5%;
  top: 18%;
  width: 2.5%;
  height: 20%;
}

.store-hotspot--kuroda {
  left: 53%;
  top: 41%;
  width: 2.2%;
  height: 30%;
}
.store-hotspot--asanina {
  left: 50.5%;
  top: 0%;
  width: 3.5%;
  height: 30%;
}
.store-hotspot--atarashiya {
  left: 50%;
  top: 40%;
  width: 2%;
  height: 25%;
}
.store-hotspot--hinode {
  left: 45.5%;
  top: 8%;
  width: 2.5%;
  height: 24%;
}
.store-hotspot--karin {
  left: 29.5%;
  top: 2.5%;
  width: 2.5%;
  height: 33%;
}
.store-hotspot--kazemachi {
  left: 27%;
  top: 25.5%;
  width: 2.5%;
  height: 10%;
}
.store-hotspot--kawano {
  left: 20.5%;
  top: 1%;
  width: 4%;
  height: 33%;
}
.store-hotspot--rainbow {
  left: 12%;
  top: 17.5%;
  width: 4%;
  height: 33%;
}
.store-hotspot--tarui {
  left: 15%;
  top: 58%;
  width: 2%;
  height: 42%;
}
.store-hotspot--machihito {
  left: 17.5%;
  top: 58%;
  width: 3.6%;
  height: 38.5%;
}
.store-hotspot--morike {
  left: 22.5%;
  top: 59%;
  width: 2%;
  height: 29%;
}
.store-hotspot--takeya {
  left: 46%;
  top: 56%;
  width: 2%;
  height: 16%;
}
.store-hotspot--oono {
  left: 70%;
  top: 53%;
  width: 2.3%;
  height: 20%;
}
.store-hotspot--tani {
  left: 81.5%;
  top: 54%;
  width: 2.3%;
  height: 29.5%;
}

.store-legend-list {
  display: flex;
  gap: 26px;
  justify-content: flex-end;
  margin-bottom: 60px;
}
.store-legend-chip {
  font-size: var(--fz18);
  color: var(--white);
  padding: 4px 12px;
}
.store-legend-chip--eat {
  background: var(--orange);
}
.store-legend-chip--goods {
  background: var(--green);
}
.store-legend-chip--other {
  background: var(--blue);
}

/* ===== 店舗カード ===== */
.store-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  row-gap: 4.4rem;
  margin-bottom: 5rem;
}
.store-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-card-media {
  position: relative;
  overflow: hidden;
}
.store-card-img {
  width: 100%;
  height: 300px;
  display: block;
  transition: transform 0.35s ease;
  will-change: transform;
}

.store-card:hover .store-card-img,
.store-card:focus-within .store-card-img {
  transform: scale(1.01);
}
.store-card:hover .store-card-media::before,
.store-card:focus-within .store-card-media::before {
  opacity: 0.25;
}
.store-card:hover,
.store-card:focus-within {
  transform: translateY(-2px);
}

.store-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  line-height: 50px;
  padding: 0 50px 0 18px;
  font-size: var(--fz20);
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 50%, 100% 100%, 0 100%);
  box-sizing: border-box;
}
.store-card-badge--lines {
  height: 70px;
  line-height: 35px;
}

.store-card-badge--eat {
  background: var(--orange);
}
.store-card-badge--goods {
  background: var(--green);
}
.store-card-badge--other {
  background: var(--blue);
}

.store-card-body {
  padding: 30px;
  text-align: center;
}
.store-card-title {
  font-size: var(--fz25);
  margin-bottom: 30px;
  color: #444444;
}
.store-card-text {
  font-size: var(--fz18);
  line-height: 1.66;
  color: #444444;
  text-align: left;
}

@media (max-width: 900px) {
  .store-list {
    grid-template-columns: 1fr;
  }
  .store-card-img {
    height: 360px;
  }
}
/* =========================
モーダル（画像なし／テキストのみ）
========================= */
.store-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.store-modal.is-active {
  display: block;
  background: rgba(0, 0, 0, 0.6);
}

.store-modal-dialog {
  position: relative;
  max-width: 500px;
  width: 92%;
  margin: 15vh auto;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.store-modal.is-active .store-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.store-modal-head {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 50%, 100% 100%, 0 100%);
  padding: 4px 120px 4px 16px;
}
.store-modal-head-small {
  white-space: nowrap;
  gap: 16px;
  color: var(--white);
  padding: 0 40px 0 16px;
}

.modal-store-image {
  position: relative;
}
.store-modal-head--red {
  background: var(--modalRed);
}
.store-modal-head--navy {
  background: var(--blue);
}
.store-modal-head--green {
  background: var(--green);
}

.store-modal-badge {
  font-size: 18px;
  line-height: 1.6;
  padding: 6px 8px;
}
.store-modal-title {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.store-modal-head-small .store-modal-title {
  font-size: 20px;
}

.store-modal-content {
  padding: 26px 2rem 10px;
}
.store-modal-qr-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 60%;
  margin-top: 26px;
}
.store-modal-text {
  font-size: 16px;
  line-height: 1.9;
  color: #444444;
}

.store-modal-head-small .store-modal-text {
  font-size: 16px;
}
.store-modal-lead {
  margin: 0 0 12px 0;
}
.store-modal-text-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 45px;
}

.store-modal-text-content.qr-double {
  padding: 0 1rem;
  gap: 0;
}
.store-modal-content.qr-double-content {
  padding: 26px 0.75rem 10px;
}
.store-modal-lead {
  width: 60%;
}
.store-modal-lead.qr-double-lead {
  width: 100%;
}

.store-modal-lead.modal-sns-none {
  width: 100%;
}
.store-modal-qr {
  width: 25%;
  margin: 4px;
}
.store-modal-qr-wrap .store-modal-qr {
  width: 100%;
}

.store-modal-sep {
  border: none;
  height: 2px;
  margin: 14px 0 16px;
  background: #dddddd;
}
.store-modal-sep--modalRed {
  background: var(--modalRed);
}
.store-modal-sep--navy {
  background: var(--blue);
}
.store-modal-sep--green {
  background: var(--green);
}

.store-modal-info p {
  margin: 0 0 8px 0;
}

.store-modal-link-title {
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 16px;
}
.store-modal-text-link {
  color: var(--modalRed);
  text-decoration: underline;
}
.store-modal-text-link:hover {
  opacity: 0.7;
}

.store-modal-foot {
  display: flex;
  justify-content: flex-end;
  padding: 14px 16px 18px;
  margin-top: -3rem;
}
.store-modal-foot.qr-double-foot {
  margin-top: 0;
}
.store-modal-close {
  background: #ffffff;
  border: 1px solid #444444;
  padding: 4px 36px;
  font-size: 14px;
  cursor: pointer;
}
.store-modal-close:hover {
  background: #f0f0f0;
}

@media only screen and (max-width: 767px) {
  .store-section {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  .store-modal-title {
    font-size: 18px;
  }
  .store-modal-head-small .store-modal-title {
    font-size: 18px;
  }

  .store-modal-badge {
    font-size: 14px;
  }
  .store-modal-lead {
    width: 65%;
  }
  .store-modal-head {
    white-space: nowrap;
    gap: 10px;
    padding: 4px 120px 4px 10px;
  }
  .store-modal-text-content {
    gap: 2rem;
  }
  .store-modal-content {
    padding: 20px 1rem 10px;
  }
  .store-modal-foot {
    padding: 4px 16px 18px;
    margin-top: 0;
  }
  .store-modal-qr-wrap {
    width: 100%;
    gap: 4rem;
  }
  .store-modal-head-small {
    gap: 8px;
    padding: 0 36px 0 16px;
  }
  .store-title-catch {
    font-size: 14px;
    margin-block: 2rem;
  }
  .store-title-img {
    max-width: 60%;
    margin-bottom: 16px;
  }
  .store-legend-list {
    gap: 1rem;
    margin-block: 2rem;
  }
  .store-card-img {
    height: auto;
  }
  .store-card-body {
    padding: 0.75rem 1rem;
  }
  .store-card-title {
    margin-bottom: 1rem;
  }
  .store-list {
    row-gap: 4rem;
    margin-bottom: 3.5rem;
  }
  .store-card-badge {
    height: 35px;
    line-height: 35px;
  }
}
@media only screen and (max-width: 499px) {
  .store-section-inner {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 399px) {
  .store-modal-title,
  .store-modal-head-small .store-modal-title {
    font-size: 14px;
  }
  .store-modal-badge {
    font-size: 12px;
  }
  .store-modal-content {
    padding: 16px 1rem 5px;
  }
  .store-modal-lead {
    font-size: 14px;
    margin: 0;
  }
  .store-modal-info {
    font-size: 14px;
  }
  .store-modal-close {
    font-size: 12px;
  }
  .store-card-badge {
    height: 30px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 359px) {
  .store-modal-text-content.qr-double {
    padding: 0 0.3rem;
  }
  .store-modal-head-small .store-modal-badge {
    font-size: 10px;
  }
  .store-modal-head-small .store-modal-lead,
  .store-modal-head-small .store-modal-info {
    font-size: 12px;
  }
}

/* =========================
ひもとく
========================= */
.himotoku-section {
  background-color: var(--blue);
  padding-top: 160px;
}

.himotoku-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: content-box;
  text-align: center;
  color: var(--white);
}

.himotoku-title {
  margin-bottom: 30px;
}
.himotoku-title-img {
  max-width: 528px;
}

.himotoku-subtitle {
  font-size: var(--fz30);
}

.himotoku-history-head {
  position: relative;
}
.himotoku-history {
  display: block;
  background-color: var(--yellow);
  font-size: var(--fz50);
  font-weight: bold;
  color: var(--blue);
  line-height: 1.4;
  padding: 24px 36px;
  text-align: center;
  margin-top: 235px;
  margin-bottom: 100px;
}

.himotoku-figure {
  position: absolute;
  height: auto;
  pointer-events: none;
  z-index: 999;
}
.himotoku-figure-left {
  max-width: 211px;
  left: 2%;
  bottom: 118px;
}
.himotoku-figure-right {
  max-width: 178px;
  right: 2%;
  bottom: 30px;
}

.history-block {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 150px;
}
.history-block:last-child {
  margin-bottom: 50px;
}
.history-col-left {
  width: 45%;
}
.history-col-right {
  width: 52%;
}
.history-badge {
  font-size: var(--fz20);
  color: var(--yellow);
  border: 1px solid var(--yellow);
  max-width: 80%;
  margin: 0 auto 1rem;
  padding: 8px 16px;
}
.history-title {
  font-size: var(--fz30);
  color: var(--yellow);
  line-height: 2;
  margin-bottom: 24px;
}
.history-text {
  font-size: var(--fz20);
  font-weight: 300;
  line-height: 2;
  text-align: left;
  margin-bottom: 60px;
}
.history-side-content {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 50px;
}
.history-side-content__third {
  align-items: end;
}
.history-photos {
  width: 50%;
}
.hisotory-right-text {
  width: 55%;
  text-align: left;
}
.hisotory-right-image {
  width: 55%;
  text-align: left;
}
.hisotory-right-image img {
  max-width: 150px;
}
.history-side-title {
  font-size: var(--fz20);
  margin-top: -5px;
}
.history-side-title span {
  display: block;
  font-size: var(--fz18);
  font-weight: 300;
  line-height: 1.6;
}
.history-side-list {
  margin-top: 1rem;
}
.history-side-item {
  font-size: var(--fz16);
  font-weight: 300;
}
.action-plan-badge {
  max-width: 33%;
}
.action-plan-lead {
  font-size: var(--fz20);
  font-weight: 300;
  text-align: left;
  margin-bottom: 45px;
}
.action-plan-board {
  background-color: var(--white);
  color: var(--blue);
  border-radius: 29px;
  padding: 1.5rem 3rem;
}

.action-plan-board-title {
  font-size: var(--fz30);
  line-height: 1;
  margin-bottom: 30px;
}

.action-plan-chip-list {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 1rem;
}

.action-plan-chip {
  display: inline-block;
  background-color: var(--yellow);
  color: var(--blue);
  font-weight: bold;
  font-size: var(--fz20);
  border-radius: 20px;
  padding: 0 36px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.action-plan-chip:hover {
  transform: translateY(-2px);
}

.slogan-logo {
  max-width: 320px;
  margin-top: 48px;
  transform: rotate(-15deg);
}
.slogan-visual {
  margin-bottom: 10rem;
  text-align: center;
}

.slogan-message {
  position: relative;
  background: var(--yellow);
  padding-block: 2rem;
  text-align: center;
}
.slogan-people {
  position: absolute;
  top: -70%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1000px;
  z-index: 10;
}
.slogan-message p {
  font-size: var(--fz30);
  font-weight: bold;
  color: var(--blue);
  line-height: 2;
  text-align: center;
}
.himotoku-cta {
  padding: 70px 0 100px;
}
@media only screen and (max-width: 1023px) {
  .himotoku-section {
    padding-top: 120px;
  }
  .himotoku-figure-left {
    bottom: 95px;
  }
  .himotoku-history {
    margin-top: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .himotoku-section {
    padding-top: 80px;
  }
  .himotoku-history {
    padding: 16px 0px;
    margin-top: 100px;
  }
  .himotoku-title-img {
    max-width: 70%;
  }
  .himotoku-figure-left {
    width: 33%;
    left: -5%;
    bottom: 60px;
  }
  .himotoku-figure-right {
    width: 33%;
    right: -6%;
    bottom: 33px;
  }
  .history-block {
    flex-direction: column;
    margin-bottom: 70px;
  }
  .history-col-left {
    width: 100%;
  }
  .history-text {
    margin-bottom: 30px;
  }
  .history-side-content {
    gap: 0.8rem;
    margin-bottom: 36px;
  }

  .history-photos {
    width: 75%;
  }

  .hisotory-right-text {
    width: 100%;
  }
  .hisotory-right-image {
    width: 100%;
  }
  .history-col-right {
    width: 100%;
    margin-top: 1rem;
  }
  .action-plan-badge {
    max-width: 80%;
  }
  .slogan-visual {
    margin-bottom: 2rem;
    text-align: center;
  }
  .slogan-logo {
    width: 60%;
    margin-top: 0;
  }
  .slogan-people {
    top: -26%;
    width: 90%;
  }
  .slogan-message {
    padding: 2rem 1rem;
  }
}
@media only screen and (max-width: 499px) {
  .himotoku-history {
    font-size: 22px;
    margin-bottom: 60px;
  }
  .himotoku-inner {
    padding: 0 2rem;
  }
  .history-title {
    margin-bottom: 16px;
  }
  .history-text {
    margin-bottom: 20px;
  }
  .history-block {
    margin-bottom: 40px;
  }
  .history-side-list {
    margin-top: 0;
  }
  .hisotory-right-image img {
    max-width: 100px;
  }
  .action-plan-lead {
    margin-bottom: 30px;
  }
  .action-plan-board {
    padding: 2rem;
  }
  .action-plan-board-title {
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .action-plan-chip-list {
    max-width: 100%;
  }
  .action-plan-chip {
    min-width: 240px;
    padding: 0.5rem;
  }
}
@media only screen and (max-width: 399px) {
  .himotoku-history {
    font-size: 20px;
  }
  .slogan-people {
    top: -25%;
  }
  .slogan-message p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 359px) {
  .slogan-message p {
    font-size: 15px;
  }
  .history-text {
    font-size: 14px;
  }
  .history-side-item {
    font-size: 12px;
    font-weight: 300;
  }
  .action-plan-chip {
    min-width: 200px;
    padding: 0;
  }
}

/* =========================
つかう
========================= */
.rent-section {
  padding-block: 180px;
  letter-spacing: 0.1em;
}
.rent-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: content-box;
}

.rent-title {
  text-align: center;
  margin-bottom: 86px;
}
.rent-title-img {
  max-width: 421px;
}

.rent-hero {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-bottom: 50px;
}

.rent-lead {
  font-size: var(--fz30);
  color: var(--blue);
  font-weight: bold;
  line-height: 2.3;
  text-align: center;
}

.rent-cta {
  text-align: center;
  margin: 40px 0 93px;
}
.rent-cta-btn {
  max-width: 80%;
  margin: 0 auto;
  display: block;
  background: var(--blue);
  font-size: var(--fz30);
  line-height: 2;
  color: var(--white);
  font-weight: bold;
  padding: 18px 36px;
  border-radius: 22px;
}
.rent-schedule {
  margin-bottom: 72px;
}
.rent-heading {
  margin-bottom: 64px;
}
.rent-heading-arcade {
  margin-bottom: 32px;
}
.rent-heading-inner {
  display: block;
  text-align: center;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding-block: 4px;
  font-weight: bold;
}
.rent-legend-head {
  font-size: var(--fz20);
  font-weight: bold;
  color: #444444;
  border-bottom: 1px solid #444444;
}
.rent-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: var(--fz16);
  margin: 24px 0 50px;
}
.rent-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fz16);
  font-weight: bold;
}
.rent-legend-item__pink {
  color: #fe077e;
}
.rent-legend-item__green {
  color: #368e3c;
}
.rent-legend-item__purple {
  color: #a216ff;
}
.rent-legend-item__blue {
  color: #193c70;
}

.dot {
  display: inline-block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
}
.dot--pink {
  background: #fe077e;
}
.dot--green {
  background: #368e3c;
}
.dot--purple {
  background: #a216ff;
}
.dot--blue {
  background: #193c70;
}

.rent-table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  overflow: hidden;
}
.rent-table th,
.rent-table td {
  border: 0.5px solid #444444;
  padding: 4px;
  text-align: center;
  vertical-align: middle;
  font-size: var(--fz20);
  font-weight: normal;
}
.rent-table thead th {
  background-color: var(--blue);
  font-size: var(--fz20);
  color: var(--white);
  font-weight: 500;
  width: 8%;
}

.rent-table--schedule .rent-table-week {
  font-size: var(--fz20);
  font-weight: 500;
  color: #444444;
  width: 8%;
}

/* 料金表特化 */
.rent-fee {
  margin-bottom: 72px;
}
.rent-table--fee {
  margin-top: 36px;
}
.rent-table--fee thead th {
  background: var(--blue);
}
.rent-table-col1 {
  text-align: left;
}
.rent-notes-wrap {
  max-width: 80%;
  margin: 0 auto;
}

.rent-notes {
  font-size: var(--fz18);
  font-weight: normal;
  line-height: 1.66;
  margin: 12px 0 20px;
  color: #444444;
}
.rent-notes li {
  list-style: "※ ";
  margin-left: 1em;
}

/* アーケード利用 */
.rent-arcade {
  text-align: center;
}
.rent-arcade-lead {
  font-size: var(--fz25);
  font-weight: bold;
  line-height: 2.4;
  color: #444444;
  margin-bottom: 35px;
}
.rent-arcade-text {
  font-size: var(--fz20);
  font-weight: normal;
  line-height: 2;
  text-align: center;
  margin-bottom: 54px;
}

.rent-contact-banner {
  background: var(--blue);
  color: #fff;
  text-align: center;
  border-radius: 18px;
}
.rent-contact-text {
  font-size: var(--fz25);
  font-weight: 400;
  color: var(--white);
  line-height: 2;
}
.rent-contact-text span {
  font-size: var(--fz30);
  font-weight: bold;
  color: var(--yellow);
  line-height: 1.66;
}
.rent-contact-btn {
  display: block;
  padding: 24px 48px;
  border-radius: 30px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.rent-contact-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 899px) {
  .rent-table {
    width: 95%;
  }
  .rent-section {
    padding-block: 120px;
  }
  .rent-legend {
    gap: 4px 12px;
    margin: 16px 0 20px;
  }
  .dot {
    width: 12px;
    height: 12px;
  }
  .rent-fee {
    margin-bottom: 56px;
  }
  .rent-heading {
    margin-bottom: 50px;
  }
  .rent-heading-arcade {
    margin-bottom: 24px;
  }
  .rent-arcade-lead {
    margin-bottom: 24px;
  }
  .rent-arcade-text {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .rent-title-img {
    max-width: 55%;
  }
}

@media (max-width: 560px) {
  .rent-section {
    padding-block: 90px;
  }
  .rent-title {
    margin-bottom: 64px;
  }
  .rent-hero {
    margin-bottom: 36px;
  }
  .rent-cta {
    margin: 36px 0 72px;
  }
  .rent-cta-btn {
    max-width: 100%;
    padding: 8px 12px;
    line-height: 1.7;
  }
  .rent-heading {
    margin-bottom: 30px;
  }
  .rent-table {
    width: 100%;
  }
  .rent-table--schedule .rent-table-week {
    width: 15%;
  }
  .rent-schedule {
    margin-bottom: 30px;
  }
  .rent-table--fee {
    margin-top: 16px;
  }
  .rent-notes-wrap {
    max-width: 95%;
  }
  .rent-fee {
    margin-bottom: 40px;
  }
  .rent-arcade-text {
    margin-bottom: 33px;
  }

  .rent-contact-btn {
    padding: 8px 0px;
  }
  .himotoku-cta {
    padding: 40px 0 50px;
  }
}
@media only screen and (max-width: 499px) {
  .rent-inner {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 399px) {
  .rent-section {
    padding-block: 70px;
  }
  .rent-heading {
    text-align: center;
    line-height: 1.6;
  }
  .sp-only.rent-sp-only {
    display: block;
  }
  th.rent-table-col1 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 359px) {
  .rent-lead,
  .rent-heading-inner,
  .rent-cta-btn,
  .rent-arcade-lead,
  .rent-arcade-text,
  .rent-contact-text,
  .rent-contact-text span {
    font-size: 16px;
  }
  .rent-table--schedule .rent-table-week {
    font-size: 14px;
  }
}

/* =========================
なんでも
========================= */
.inquiry-hero {
  padding-block: 140px;
  background: var(--white);
  text-align: center;
  color: #444444;
}

.inquiry-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: content-box;
}

.inquiry-hero__title img {
  max-width: 512px;
  height: auto;
  margin-bottom: 3rem;
}

.inquiry-hero__subtitle {
  font-size: var(--fz30);
  font-weight: normal;
  margin-bottom: 45px;
}

.inquiry-hero__lead {
  font-size: 18px;
  color: #6b7177;
  line-height: 1.9;
  margin-bottom: 25px;
}

.inquiry-hero__tel {
  display: inline-flex;
  align-items: self-end;
  transition: 0.2s;
}

.inquiry-hero__tel:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.inquiry-hero__tel-icon {
  max-width: 50px;
  margin-right: 20px;
}

.inquiry-hero__tel-number {
  font-size: var(--fz50);
  font-weight: bold;
  line-height: 1;
}

.inquiry-hero__staff {
  font-size: var(--fz20);
  font-weight: normal;
  line-height: 2;
  margin: 1rem 0 3rem;
}

.inquiry-hero__note {
  font-size: var(--fz20);
  font-weight: normal;
  line-height: 2;
}

.inquiry-hero__divider {
  width: 100%;
  border: none;
  border-top: 1px solid #444444;
  margin-top: 4rem;
}
/* ============ Inquiry Form ============ */
.inquiry-form {
  padding-top: 7rem;
}

.inquiry-form__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.inquiry-form__row {
  margin-bottom: 30px;
}

.inquiry-form__label {
  font-size: var(--fz20);
  font-weight: 500;
  margin-bottom: 10px;
}

.inquiry-form__req {
  font-size: var(--fz16);
  color: #fa0000;
  font-weight: 500;
}
.inquiry-form__opt {
  font-size: var(--fz16);
}
.inquiry-form__mini {
  font-size: var(--fz16);
}

.inquiry-form__input,
.inquiry-form__textarea {
  width: 100%;
  border: 1px solid #1b1f28;
  border-radius: 15px;
  padding: 8px 16px;
  font-size: var(--fz20);
  outline: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  box-sizing: border-box;
}

.inquiry-form__input {
  height: 70px;
}

.inquiry-form__input:focus,
.inquiry-form__textarea:focus {
  border-color: #1b3e63;
  box-shadow: 0 0 0 3px rgba(27, 62, 99, 0.12);
}

.inquiry-form__hint {
  margin-top: 8px;
  font-size: var(--fz16);
  line-height: 1.875;
}

.inquiry-form__check {
  display: inline-block;
  margin-right: 1rem;
  font-size: var(--fz20);
  line-height: 2;
}
.inquiry-form__check input {
  margin-right: 2px;
}

.inquiry-form__checks {
  margin-top: 4px;
}

.inquiry-form__guide {
  font-size: var(--fz16);
  line-height: 1.9375;
  padding-left: 2em;
  margin-bottom: 3rem;
}
.inquiry-form__guide li {
  margin-bottom: 4px;
  list-style: disc;
}
.inquiry-form__textarea {
  height: 250px;
}
.inquiry-form__privacy {
  border: 1px solid #000000;
  border-radius: 30px;
  padding: 1rem;
  text-align: center;
}
.inquiry-form__privacy-title {
  font-size: var(--fz20);
  line-height: 1.875;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.inquiry-form__privacy-text {
  max-width: 90%;
  margin: 0 auto;
  font-size: var(--fz16);
  line-height: 1.875;
  text-align: left;
}

.inquiry-form__privacy-row {
  margin-block: 100px;
}

.inquiry-form__row--submit {
  text-align: center;
  margin-bottom: 0;
}

.inquiry-form__submit {
  display: inline-block;
  width: 50%;
  padding: 12px 24px;
  font-size: var(--fz30);
  font-weight: bold;
  color: var(--white);
  background: var(--blue);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.inquiry-form__submit:hover {
  background-color: var(--white);
  color: var(--blue);
  border: 0.5px solid var(--blue);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}
@media only screen and (max-width: 767px) {
  .inquiry-hero {
    padding-block: 70px;
  }
  .inquiry-hero__title img {
    max-width: 70%;
    margin-bottom: 3rem;
  }
  .inquiry-hero__subtitle {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 640px) {
  .inquiry-form {
    padding-top: 4rem;
  }

  .inquiry-form__input {
    height: 52px;
    padding: 6px 12px;
  }
  .inquiry-form__row {
    margin-bottom: 25px;
  }
  .inquiry-form__textarea {
    height: 200px;
    padding: 14px 16px;
  }

  .inquiry-form__hint {
    font-size: 13px;
  }
  .inquiry-form__guide {
    margin-bottom: 2rem;
  }
  .inquiry-form__check {
    font-size: 14px;
    margin-right: 12px;
  }
  .inquiry-form__label {
    margin-bottom: 6px;
  }
  .inquiry-form__privacy-row {
    margin-block: 25px;
  }
  .inquiry-form__privacy {
    padding: 18px;
    border-radius: 14px;
  }
  .inquiry-hero__tel-icon {
    max-width: 30px;
    margin-right: 8px;
  }
  .inquiry-hero__staff {
    margin: 1rem 0 2rem;
  }
  .inquiry-hero__divider {
    margin-top: 3rem;
  }
  .inquiry-form__submit {
    width: 65%;
    margin-top: 1rem;
  }
}

/* =========================
しつもん
========================= */
.faq-section {
  padding: 150px 0 100px;
}
.faq-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: content-box;
  color: #444444;
}
.faq-title-wrap {
  text-align: center;
}
.faq-title {
  margin-bottom: 38px;
}
.faq-title-img {
  max-width: 527px;
}
.faq-lead {
  font-size: var(--fz30);
  font-weight: normal;
  line-height: 2;
  margin-bottom: 25px;
}

.faq-note {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  border: 1px solid #444444;
}

.faq-group {
  margin-top: 45px;
}
.faq-group-toggle {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 16px 24px;
  background: var(--blue);
  color: var(--yellow);
  border: none;
  border-radius: 30px;
  font-size: var(--fz20);
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.faq-group-toggle:last-child {
  margin-bottom: 0;
}
/* ===== Q&A list ===== */
.faq-list {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 48px;
}
.faq-q {
  font-size: var(--fz20);
  font-weight: bold;
  color: var(--blue);
  margin-block: 1rem;
}
.faq-q-label {
  display: inline-block;
  margin-right: 6px;
}

.faq-a {
  border: 1px solid var(--blue);
  border-radius: 30px;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.faq-a p {
  font-size: var(--fz18);
  line-height: 1.94;
}

.faq-a img {
  max-width: 93px;
}

@media only screen and (max-width: 1023px) {
  .faq-group-toggle {
    width: 90%;
  }
  .faq-list {
    max-width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .faq-title-img {
    max-width: 65%;
  }
  .faq-group-toggle {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 499px) {
  .faq-inner {
    padding: 0 2rem;
  }
  .faq-list {
    max-width: 95%;
  }
  .faq-a img {
    max-width: 150px;
  }
  .faq-a {
    padding: 1rem 2rem;
    gap: 1rem;
  }
  .faq-group-toggle {
    padding: 12px 16px;
  }
  .faq-section {
    padding: 75px 0 90px;
  }
  .faq-group {
    margin-top: 36px;
  }
  .faq-item {
    margin-bottom: 25px;
  }
  .faq-q {
    margin-block: 0.5rem;
  }
  .faq-note {
    width: 93%;
  }
}
@media only screen and (max-width: 399px) {
  .faq-list {
    max-width: 100%;
  }
  .faq-lead {
    font-size: 16px;
  }
}
/* =========================
まっぷ
========================= */

.map-section {
  background-color: var(--white);
  padding-top: 100px;
  padding-bottom: 270px;
}
.map-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: content-box;
}
.map-section__title {
  text-align: center;
  margin-bottom: 70px;
}
.map-section__title-img {
  max-width: 374px;
}
.map-section__lead {
  max-width: 90%;
  margin: 0 auto;
  font-size: var(--fz20);
  line-height: 2;
  text-align: left;
}

.map-section__badge {
  margin-block: 27px;
  text-align: center;
}
.map-section__badge img,
.distance-section__badge img,
.frame-section__badge img {
  max-width: 200px;
}

.map-section__access {
  margin-bottom: 120px;
}

.map-section__figure {
  margin: 0;
}
.map-section__image {
  width: 100%;
  margin-bottom: 50px;
}
.access-box__heading {
  display: inline-block;
  background-color: rgba(25, 60, 112, 0.3);
  width: 200px;
  height: 50px;
  font-size: var(--fz20);
  font-weight: normal;
  color: var(--white);
  display: flex;
  align-items: center;
  padding-left: 2em;
  clip-path: polygon(0 0, 100% 0%, 45% 220%, 0% 100%);
}

.access-box__list {
  max-width: 95%;
  margin: 12px 0 36px;
  margin-left: auto;
}

.access-box__list li {
  font-size: var(--fz18);
}

.map-section__distance {
  margin-bottom: 135px;
}
.distance-section__badge {
  text-align: center;
  margin-bottom: 75px;
}
.frame-section__badge {
  text-align: center;
  margin-bottom: 42px;
}
.frame-section__map {
  width: 100%;
  height: 500px;
  margin-bottom: 10px;
}
.frame-section__text {
  font-size: var(--fz20);
  font-weight: normal;
  text-align: center;
}
.frame-section__text span {
  font-size: var(--fz18);
}
@media only screen and (max-width: 767px) {
  .frame-section__map {
    height: 250px;
  }
  .map-section__badge img,
  .distance-section__badge img,
  .frame-section__badge img {
    max-width: 33%;
  }
  .map-section__title-img {
    max-width: 50%;
  }
  .map-section__title {
    margin-bottom: 50px;
  }
  .map-section__access {
    margin-bottom: 70px;
  }
  .map-section__distance {
    margin-bottom: 75px;
  }
}
@media only screen and (max-width: 499px) {
  .map-section {
    padding-top: 80px;
    padding-bottom: 110px;
  }
  .map-section__inner {
    padding: 0 2rem;
  }
  .map-section__lead {
    max-width: 100%;
  }
  .map-section__badge img,
  .distance-section__badge img,
  .frame-section__badge img {
    max-width: 40%;
  }
  .access-box__heading {
    width: 150px;
    height: 40px;
  }
  .frame-section__badge {
    margin-bottom: 30px;
  }
  .distance-section__badge {
    margin-bottom: 30px;
  }
  .map-section__image {
    margin-bottom: 30px;
  }
  .access-box__list {
    margin: 12px 0 25px;
  }
}

/* =========================
フッター
========================= */

.site-footer {
  background: var(--blue);
  color: var(--white);
  padding: 54px 0 34px;
}
.site-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: content-box;
  text-align: center;
}

.site-footer__symbol img {
  max-width: 230px;
}

.site-footer__org {
  font-size: var(--fz20);
  margin-top: 1rem;
}
.site-footer__mail {
  line-height: 1;
}
.site-footer__mail a {
  font-size: var(--fz16);
  color: var(--white);
}
.site-footer__mail a:hover,
.site-footer__mail a:focus {
  text-decoration: underline;
}

.footer-nav {
  margin: 28px 0 26px;
}
.footer-nav__list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.footer-nav__item a {
  font-size: var(--fz20);
  font-family: "UoqMunThenKhung", serif;
  color: var(--white);
  transition: opacity 0.2s ease;
}
.footer-nav__item a:hover,
.footer-nav__item a:focus {
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin: 70px 0 48px;
}

.footer-social__link img {
  max-width: 50px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-social__link img:hover,
.footer-social__link img:focus {
  opacity: 0.8;
  transform: translateY(-4px);
}

.site-footer__yatai img {
  max-width: 180px;
  margin-bottom: 25px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-footer__yatai img:hover,
.site-footer__yatai img:focus {
  opacity: 0.95;
  transform: translateY(-4px);
}

.site-footer__note {
  font-size: var(--fz16);
}
.site-footer__copy-right {
  font-size: var(--fz16);
  margin-block: 1rem;
}
@media (max-width: 960px) {
  .footer-nav__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .footer-social {
    gap: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer__symbol img {
    max-width: 33%;
  }
  .site-footer__yatai img {
    max-width: 25%;
  }
  .footer-social__link img {
    max-width: 36px;
  }
  .footer-social {
    margin: 36px 0 36px;
  }
}

@media (max-width: 499px) {
  .site-footer {
    padding: 45px 0 34px;
  }
  .site-footer__inner {
    padding: 0 2rem;
  }
  .footer-nav__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-footer__symbol img {
    max-width: 55%;
  }
  .site-footer__yatai img {
    max-width: 40%;
  }
  .footer-social {
    gap: 32px;
    margin: 30px 0 30px;
  }
}
@media only screen and (max-width: 359px) {
  .footer-nav__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer__mail a {
    word-break: break-all;
  }
  .site-footer__symbol img {
    max-width: 70%;
  }
  .site-footer__yatai img {
    max-width: 40%;
  }
}

/* ===== トップへ戻るボタン ===== */
.pagetop {
  position: fixed;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%) translateY(20px);
  display: block;
  z-index: 999;
  width: 90px;
  height: 90px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.pagetop img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pagetop:hover img {
  transform: translateY(-6px) scale(1.05);
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .pagetop {
    width: 72px;
    height: 72px;
    bottom: 36px;
  }
}

@media (max-width: 768px) {
  .pagetop {
    left: auto;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    transform: translateY(20px);
  }
  .pagetop.is-visible {
    transform: translateY(0);
  }
}
@media (max-width: 399px) {
  .pagetop {
    width: 48px;
    height: 48px;
    bottom: 16px;
  }
}

@media (max-width: 360px) {
  .pagetop {
    width: 45px;
    height: 45px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pagetop,
  .pagetop img {
    transition: none;
  }
}
