@charset "UTF-8";
/*********************************************************************

	利用事例ギャラリー（/gallery/）・ご利用ガイド（/guide/）・
	アクセス（/access/）共通スタイル
	2026-07 新規作成（モバイルファースト・BEM）

*********************************************************************/

.galleryPage,
.guidePage,
.accessPage {
  color: #eaeaea;
  line-height: 1.8;
}

.galleryPage .mainTitle01,
.guidePage .mainTitle01,
.accessPage .mainTitle01 {
  padding: 1.8em 0 1.2em;
}

/* セクション共通
----------------------------------------------*/
.subSection {
  padding: 0 0 3.5em;
  scroll-margin-top: 70px;
}

.subSection--alt {
  background: #211816;
}

.subSection__lead {
  max-width: 760px;
  margin: 0 auto 1.5em;
  text-align: center;
  font-size: 0.95rem;
}

.subSection__note {
  max-width: 760px;
  margin: 1.5em auto 0;
  font-size: 0.85rem;
  color: #bdbdbd;
  text-align: center;
}

.subSection__note a,
.subSection__lead a,
.guideFaq a,
.guideSteps a,
.accessInfo a {
  color: #de9c08;
  text-decoration: underline;
}

/* ギャラリー：フィルタ
----------------------------------------------*/
.galleryFilter {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 2em;
  padding: 0;
}

.galleryFilter__button {
  border: 1px solid rgba(222, 156, 8, 0.7);
  background: rgba(0, 0, 0, 0.4);
  color: #f5d9a0;
  border-radius: 50px;
  padding: 0.5em 1.2em;
  font-size: 0.85rem;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.galleryFilter__button:hover {
  background: rgba(222, 156, 8, 0.25);
}

.galleryFilter__button.is-active {
  background: #de9c08;
  color: #1c1c1c;
  font-weight: bold;
}

/* ギャラリー：グリッド
----------------------------------------------*/
.galleryGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.galleryItem {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
}

.galleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  transition: transform 0.3s;
}

.galleryItem:hover img {
  transform: scale(1.05);
}

.galleryItem__tag {
  position: absolute;
  left: 6px;
  bottom: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: #f5d9a0;
  font-size: 0.7rem;
  padding: 0.2em 0.9em;
  border-radius: 50px;
  pointer-events: none;
}

/* ガイド：ステップ
----------------------------------------------*/
.guideSteps {
  list-style: none;
  counter-reset: step;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

.guideSteps__item {
  position: relative;
  counter-increment: step;
  padding: 0 0 1.8em 3.2em;
}

.guideSteps__item::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2em;
  height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #de9c08;
  color: #de9c08;
  font-family: 'Cardo', serif;
  font-size: 1rem;
  box-sizing: border-box;
}

.guideSteps__item::after {
  content: '';
  position: absolute;
  left: 1.1em;
  top: 2.6em;
  bottom: 0.3em;
  width: 1px;
  background: rgba(222, 156, 8, 0.35);
}

.guideSteps__item:last-child::after {
  display: none;
}

.guideSteps__title {
  margin: 0 0 0.4em;
  padding-top: 0.25em;
  font-size: 1.05rem;
  color: #f5d9a0;
}

.guideSteps__text {
  margin: 0;
  font-size: 0.92rem;
}

/* ガイド：ルールリスト
----------------------------------------------*/
.guideRules {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

.guideRules__item {
  position: relative;
  padding: 0.6em 0 0.6em 1.6em;
  font-size: 0.92rem;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
}

.guideRules__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: #de9c08;
}

/* ガイド：簡易テーブル（キャンセル料）
----------------------------------------------*/
.guideTable {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.guideTable th,
.guideTable td {
  padding: 0.9em 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  vertical-align: top;
}

.guideTable thead th {
  background: rgba(222, 156, 8, 0.15);
  color: #f5d9a0;
}

.guideTable tbody th {
  width: 48%;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.05);
}

/* ガイド：FAQ
----------------------------------------------*/
.guideFaq {
  max-width: 760px;
  margin: 0 auto;
}

.guideFaq__question {
  position: relative;
  font-weight: bold;
  color: #f5d9a0;
  padding: 1em 0 0.4em 1.8em;
}

.guideFaq__question::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0.85em;
  color: #de9c08;
  font-family: 'Cardo', serif;
  font-size: 1.1em;
}

.guideFaq__answer {
  position: relative;
  margin: 0 0 0.6em;
  padding: 0 0 1em 1.8em;
  font-size: 0.92rem;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.guideFaq__answer::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: -0.1em;
  color: #8fc1e8;
  font-family: 'Cardo', serif;
  font-size: 1.1em;
}

/* アクセス：基本情報
----------------------------------------------*/
.accessInfo {
  max-width: 760px;
  margin: 0 auto;
}

.accessInfo__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 0.9em 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.accessInfo__row dt {
  font-weight: bold;
  color: #f5d9a0;
  font-size: 0.9rem;
}

.accessInfo__row dd {
  margin: 0;
  font-size: 0.95rem;
}

/* アクセス：地図
----------------------------------------------*/
.accessMap {
  max-width: 860px;
  margin: 0 auto;
}

.accessMap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  border-radius: 4px;
}

/* アクセス：館内ルート（写真つきステップ）
----------------------------------------------*/
.routeSteps {
  list-style: none;
  counter-reset: route;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.routeSteps__item {
  counter-increment: route;
}

.routeSteps__figure {
  margin: 0 0 0.8em;
}

.routeSteps__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.routeSteps__caption {
  position: relative;
  padding: 0.15em 0 0 2.6em;
  font-size: 0.92rem;
}

.routeSteps__caption::before {
  content: counter(route);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.9em;
  height: 1.9em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #de9c08;
  color: #de9c08;
  font-family: 'Cardo', serif;
  box-sizing: border-box;
}

/* CTA共通
----------------------------------------------*/
.subCta {
  background: linear-gradient(180deg, #1c1c1c 0%, #241a10 100%);
  padding: 3em 0;
  text-align: center;
}

.subCta__text {
  margin: 0 0 1.5em;
  font-size: 0.95rem;
}

.subCta__line {
  display: inline-block;
  background: #06C755;
  color: #fff;
  font-weight: bold;
  font-size: 1.05rem;
  padding: 1em 2.5em;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.subCta__line:link,
.subCta__line:visited {
  color: #fff;
  text-decoration: none;
}

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

.subCta__links {
  margin: 1.5em 0 0;
  font-size: 0.88rem;
}

.subCta__links a {
  color: #de9c08;
  text-decoration: underline;
}

/* ユーティリティ（スクリーンリーダー専用見出し）
----------------------------------------------*/
.subU-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* タブレット以上
----------------------------------------------*/
@media (min-width: 768px) {

  .galleryGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .accessInfo__row {
    grid-template-columns: 9em 1fr;
    gap: 0;
  }

  .routeSteps {
    grid-template-columns: repeat(3, 1fr);
  }

  .accessMap iframe {
    height: 420px;
  }

}

/* PC
----------------------------------------------*/
@media (min-width: 1280px) {

  .galleryGrid {
    grid-template-columns: repeat(4, 1fr);
  }

}
