@charset "UTF-8";
/* LINEの緑色 */
/* 赤色（価格強調用） */
:root {
  --header-h: 60px;
  --footer-h: 75px;
  --bg-safe-color: #fcfcfc; /* 画像外側の余白色 */
}
@media screen and (max-width: 402px) {
  :root {
    --header-h: 50px;
    --footer-h: 70px;
  }
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* スクロールはSwiperに任せる */
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background-color: var(--bg-safe-color);
}

/* 画像見切れ防止設定 (縦サイズ優先) */
img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* 絶対に見切れさせない */
  vertical-align: bottom;
  pointer-events: none;
}

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

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
}
.l-header__logo {
  margin: 0;
}
.l-header__logo img {
  height: 40px;
  width: auto;
}

.l-main {
  width: 100%;
  height: 100%; /* 画面いっぱい */
  padding-top: var(--header-h);
  box-sizing: border-box; /* paddingを含めて100%にする設定 */
  overflow: hidden;
  position: relative;
}

.l-swiper {
  width: 100%;
  height: 100%;
}

.l-footer {
  position: fixed;
  bottom: -120px; /* 初期状態は隠す */
  left: 0;
  width: 100%;
  height: var(--footer-h);
  background: rgba(255, 255, 255, 0.95);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}
.l-footer.is-visible {
  bottom: 0;
}
.l-footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 400px;
  height: 50px;
  background: #06C755;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 402px) {
  .l-footer__btn {
    height: 40px;
    font-size: 0.9rem;
  }
}
.l-footer__btn:hover {
  opacity: 0.9;
}

.c-heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  font-family: serif;
  line-height: 1.2;
}
@media screen and (max-width: 402px) {
  .c-heading {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.c-heading .u-text-sm {
  font-size: 1rem;
  display: block;
  margin-top: 5px;
  font-family: sans-serif;
  color: #666;
  font-weight: normal;
}

.c-accordion {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
}
.c-accordion__head {
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.c-accordion__head::-webkit-details-marker {
  display: none;
}
.c-accordion__head::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  border: 6px solid transparent;
  border-top-color: #ccc;
  transform: translateY(-25%);
  transition: transform 0.2s;
}
.c-accordion[open] .c-accordion__head::after {
  transform: translateY(-75%) rotate(180deg);
}
.c-accordion__body {
  padding: 15px;
  border-top: 1px dashed #eee;
  font-size: 0.95rem;
  line-height: 1.6;
}

.p-slide {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-slide--img-only {
  width: 100%;
  height: 100%;
}
.p-slide--img-only img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 絶対に見切れさせない設定 */
}
.p-slide--scroll {
  display: flex; /* Flexボックスを使用 */
  flex-direction: column;
  height: 100%;
  overflow-y: auto; /* 縦スクロール有効 */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  /* ▼ 基本（スマホ・ノートPC）: 上揃えにしてスクロールしやすくする */
  justify-content: flex-start;
}
@media screen and (min-width: 1025px) and (min-height: 800px) {
  .p-slide--scroll {
    justify-content: center;
  }
}
.p-slide__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-slide__content {
  position: absolute;
  bottom: 5%; /* 画像の下の方にボタンを配置 */
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.p-container {
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px 120px;
  max-width: 480px;
}
@media screen and (max-width: 402px) {
  .p-container {
    padding: 0 15px 120px;
  }
}
@media screen and (min-width: 2048px) and (min-height: 1200px) {
  .p-container {
    max-width: 750px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* ==========================================
   Step 01: Top Page (画像 + ボタン配置)
   ================================================ */
.step01 {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff; /* 上下に余白が出た場合の背景色 */
  /* 1. 背景画像の設定（絶対に見切れさせない） */
  /* 2. ボタン配置エリア（画像の上に重ねる） */
}
.step01__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.step01__bg img {
  width: 100%;
  height: 100%;
  /* 重要: 縦横比を維持して画面内に「全て」収める */
  object-fit: contain;
  /* ★ここを修正★ 上下左右とも中央に配置 */
  object-position: center center;
}
.step01__content {
  position: absolute;
  /* 画面下からの距離（お好みで調整してください） */
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 10;
  /* ★ここで左右のスペースを作ります★ */
  padding: 0 20px;
  box-sizing: border-box;
  /* ボタンを中央揃え */
  text-align: center;
  /* 縦長の画面で、ボタンが画像からはみ出して下の余白に行っても良い場合は
     このままでOKです。画像の中に収めたい場合は調整が必要です */
}

/* 3. 画像ボタン用のスタイルリセット & アニメーション */
.c-btn-shake {
  display: inline-block;
  background: transparent; /* 背景色なし */
  border: none; /* 枠線なし */
  padding: 0; /* 余白なし */
  box-shadow: none; /* 影なし */
  outline: none;
  /* 震えるアニメーション */
  animation: shake 3s infinite;
  /* 画像自体のサイズ調整 */
}
.c-btn-shake img {
  display: block;
  width: 100%; /* 親要素(padding引いた幅)いっぱいに */
  height: auto;
  max-width: 520px; /* PCなどで大きくなりすぎないように制限 */
  margin: 0 auto; /* 中央配置 */
}

/* 震えるキーフレーム（変更なし） */
@keyframes shake {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  10% {
    transform: translate(-2px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(2px, 2px) rotate(1deg);
  }
  30% {
    transform: translate(-2px, 2px) rotate(-1deg);
  }
  40% {
    transform: translate(2px, -2px) rotate(1deg);
  }
  50% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/* ==========================================
   Step 02: Campaign Content (Style)
   ================================================ */
/* Step 02 固有の背景設定 */
.step02 {
  /* 画像の雰囲気に合わせた和紙っぽいオフホワイト */
  background-color: #fcfbf9;
  /* もしテクスチャ画像があれば以下のように指定 */
  /* background-image: url('../images/bg_paper.jpg'); */
}

/* 上部の見出しエリア */
.p-campaign-header {
  text-align: center;
  margin-bottom: 30px;
}

/* 明朝体風の見出し */
.c-title-serif {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: #333;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 1px solid #333; /* 二重線の下側 */
  padding-bottom: 5px;
  position: relative;
  /* 二重線の上側を作る */
}
.c-title-serif::after {
  content: "";
  position: absolute;
  bottom: 2px; /* 線の間隔 */
  left: 0;
  width: 100%;
  border-bottom: 1px solid #333;
}

.p-campaign-lead {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 1rem;
  line-height: 2;
  color: #555;
}

/* 価格表の枠組み */
.p-campaign-box {
  background: #fff;
  border: 1px solid #ccc;
  padding: 30px 20px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  /* 四隅の飾り（内側の二重線っぽさを表現） */
}
.p-campaign-box::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid #eee;
  pointer-events: none;
}
.p-campaign-box__title {
  text-align: center;
  font-size: 1.3rem;
  margin: 0 0 30px;
  font-family: "Yu Mincho", serif;
  /* 下線装飾 */
  display: inline-block;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* 価格リスト */
.p-price-item {
  margin-bottom: 25px;
  padding: 0 10px;
}
.p-price-item:last-child {
  margin-bottom: 0;
}
.p-price-item__name {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 5px;
  display: flex;
  align-items: center;
  /* 黒い四角アイコン ■ */
}
.p-price-item__name::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #333;
  margin-right: 8px;
}
.p-price-item__val {
  padding-left: 20px; /* インデント */
  font-family: "Times New Roman", "Yu Mincho", serif; /* 数字は明朝系で美しく */
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* 画面が狭いときは折り返し */
  gap: 10px;
}

/* 価格の文字装飾 */
.price-old {
  font-size: 1.2rem;
  color: #888;
  text-decoration: line-through; /* 取り消し線 */
}

.price-arrow {
  font-size: 1rem;
  color: #333;
  margin: 0 5px;
}

.price-new {
  font-size: 1.8rem; /* 大きく強調 */
  color: #c00; /* 赤色 */
  font-weight: bold; /* ここでは太く */
}
.price-new .tax {
  font-size: 0.8rem;
  font-weight: normal;
  color: #333;
  margin-left: 3px;
}

/* ==========================================
   Step 03: Recommend Style
   ================================================ */
/* --- ヘッダー周り --- */
.p-recommend-header {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 402px) {
  .p-recommend-header {
    margin-bottom: 10px;
  }
}
.p-recommend-header .c-title-english {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 2.2rem;
  font-weight: normal;
  margin: 0 0 5px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 402px) {
  .p-recommend-header .c-title-english {
    font-size: 1.8rem;
  }
}
.p-recommend-header .sub-title {
  font-size: 0.9rem;
  font-family: "Yu Mincho", serif;
  color: #666;
  display: block;
}

/* --- コンテンツリスト --- */
.p-point-list {
  display: flex;
  flex-direction: column;
  gap: 40px; /* 項目ごとの間隔 */
}
@media screen and (max-width: 402px) {
  .p-point-list {
    gap: 20px;
  }
}

.p-point-item {
  display: flex;
  align-items: center; /* 垂直方向中央揃え */
  justify-content: space-between;
  gap: 15px; /* 画像とテキストの隙間 */
  /* 画像エリア */
  /* テキストエリア */
  /* --- 文字装飾 --- */
  /* --- 偶数番目のアイテムを反転（右画像・左テキスト） --- */
}
.p-point-item__img {
  width: 48%; /* 画面の約半分 */
  flex-shrink: 0;
}
.p-point-item__img img {
  width: 100%;
  height: auto;
  border-radius: 2px; /* 少しだけ角を丸めるか、なしでもOK */
  display: block;
}
.p-point-item__text {
  width: 48%; /* 残りの半分 */
}
.p-point-item .point-label {
  display: inline-block;
  font-family: "Times New Roman", serif;
  font-size: 1.1rem;
  color: #a68e8e; /* 画像内のブラウン系色 */
  border-bottom: 1px solid #a68e8e;
  margin-bottom: 10px;
  line-height: 1.2;
}
.p-point-item .point-title {
  font-family: "Yu Mincho", serif;
  font-size: 1.3rem; /* 少し大きめに */
  font-weight: normal;
  margin: 0 0 10px;
  line-height: 1.3;
}
@media screen and (max-width: 402px) {
  .p-point-item .point-title {
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 700;
  }
}
.p-point-item .point-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  text-align: justify; /* 両端揃えで綺麗に見せる */
}
@media screen and (max-width: 402px) {
  .p-point-item .point-desc {
    line-height: 1.5;
  }
}
.p-point-item--reverse {
  flex-direction: row-reverse;
}

/* ==========================================
   Step 04: Plan Style
 ================================================ */
/* 背景色（和紙っぽい白） */
.step04,
.step05,
.step06 {
  background-color: #fcfbf9;
}

/* ヘッダー（Step03と共通クラス化しても良いですが、念のため記述） */
.p-plan-header {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 402px) {
  .p-plan-header {
    margin-bottom: 15px;
  }
}
.p-plan-header .c-title-english {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 2.2rem;
  font-weight: normal;
  margin: 0 0 5px;
}
@media screen and (max-width: 402px) {
  .p-plan-header .c-title-english {
    font-size: 1.8rem;
  }
}
.p-plan-header .sub-title {
  font-size: 0.9rem;
  font-family: "Yu Mincho", serif;
  color: #666;
}

/* プランカード */
.p-plan-card {
  background: #fff;
  /* ほんのり影をつけて浮かせる */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  padding: 40px 20px;
  text-align: center;
}
@media screen and (max-width: 402px) {
  .p-plan-card {
    padding: 10px;
  }
}
.p-plan-card__title {
  font-family: "Yu Mincho", serif;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0 0 20px;
  display: inline-block;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  width: 80%; /* 線を少し長めに */
}
@media screen and (max-width: 402px) {
  .p-plan-card__title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}
.p-plan-card__price {
  color: #c00; /* 赤色 */
  margin-bottom: 5px;
}
.p-plan-card__price .price-val {
  font-family: "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: normal;
}
.p-plan-card__price .price-tax {
  font-size: 0.9rem;
  color: #333;
}
.p-plan-card__note {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 30px;
}
@media screen and (max-width: 402px) {
  .p-plan-card__note {
    margin-bottom: 10px;
  }
}
.p-plan-card__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}
@media screen and (max-width: 402px) {
  .p-plan-card__desc {
    font-size: 0.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
}

/* アイコンリスト（2列レイアウト） */
.p-plan-items {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左右均等割り */
  column-gap: 15px; /* 横の間隔 */
  row-gap: 20px; /* 縦の間隔 */
  text-align: left;
}
@media screen and (max-width: 402px) {
  .p-plan-items {
    row-gap: 5px;
  }
}

.p-plan-item {
  display: flex;
  align-items: center;
}
.p-plan-item__icon {
  width: 50px;
  height: 50px;
  background-color: #efece9; /* 薄いベージュの円 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 8px;
}
.p-plan-item__icon img {
  width: 32px; /* アイコンサイズ */
  height: auto;
}
.p-plan-item__text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #333;
  font-family: "Yu Gothic", sans-serif; /* 読みやすさ重視 */
}

/* ==========================================
   Step 07: Gallery Style
   ================================================ */
.step07 {
  background-color: #fff;
}

/* ヘッダー (他のステップと共通化も可能ですが、微調整用に定義) */
.p-gallery-header {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 402px) {
  .p-gallery-header {
    margin-bottom: 20px;
  }
}
.p-gallery-header .c-title-english {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 2.2rem;
  font-weight: normal;
  margin: 0 0 5px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 402px) {
  .p-gallery-header .c-title-english {
    font-size: 1.8rem;
  }
}
.p-gallery-header .sub-title {
  font-size: 0.9rem;
  font-family: "Yu Mincho", serif;
  color: #666;
  letter-spacing: 0.1em;
}

/* ギャラリーグリッド */
.p-gallery-grid {
  display: grid;
  /* 2列均等割り */
  grid-template-columns: 1fr 1fr;
  /* 画像間の隙間 (画像に合わせて少し広めなら10px〜15px、狭めなら5px) */
  gap: 10px;
}
@media screen and (max-width: 402px) {
  .p-gallery-grid {
    gap: 8px;
  }
}
.p-gallery-grid .p-gallery-item {
  width: 100%;
}
.p-gallery-grid .p-gallery-item img {
  width: 100%;
  height: auto;
  vertical-align: bottom; /* 画像下の余白消し */
  border-radius: 2px; /* ほんの少し角を落とす（任意） */
  /* 画像の高さがバラバラでもレイアウトを崩さない設定 */
  object-fit: cover;
}

/* ==========================================
   Step 08: Gallery More Style
   ================================================ */
.step08 {
  background-color: #fff; /* Step07と同じ白背景 */
}

/* Moreボタンエリア */
.p-gallery-more {
  text-align: center;
  margin-top: 40px; /* 画像グリッドとの余白 */
}
@media screen and (max-width: 402px) {
  .p-gallery-more {
    margin-top: 20px;
  }
}

/* Moreボタンのデザイン */
.c-btn-more {
  display: inline-block;
  background-color: #8c6a63; /* 画像から抽出したブラウン系 */
  color: #fff;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 12px 60px;
  border-radius: 30px; /* 丸みのある形状 */
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
  /* ボタンの少し浮いたような影 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid #7a5c55; /* 少し濃い縁取り */
}
@media screen and (max-width: 402px) {
  .c-btn-more {
    font-size: 1rem;
    padding: 8px 60px;
  }
}
.c-btn-more:hover {
  opacity: 0.9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(1px); /* 押したような動き */
}

.p-access__table {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: left;
}
.p-access__table .shop-name {
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 0;
}
.p-access__table dl {
  display: flex;
  margin-bottom: 10px;
}
.p-access__table dl dt {
  width: 80px;
  font-weight: bold;
  flex-shrink: 0;
}
.p-access__table dl dd {
  margin: 0;
}
.p-access__table a {
  text-decoration: underline;
}

/* ==========================================
   Step 09: Photo Item Style
   ================================================ */
.step09 {
  background-color: #fff;
}

/* ヘッダー */
.p-item-header {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 402px) {
  .p-item-header {
    margin-bottom: 20px;
  }
}
.p-item-header .c-title-english {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 2.2rem;
  font-weight: normal;
  margin: 0 0 5px;
}
@media screen and (max-width: 402px) {
  .p-item-header .c-title-english {
    font-size: 1.8rem;
  }
}
.p-item-header .sub-title {
  font-size: 0.9rem;
  font-family: "Yu Mincho", serif;
  color: #666;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 402px) {
  .p-item-header .sub-title {
    font-size: 0.8rem;
  }
}

/* アイテムリスト */
.p-item-list {
  display: flex;
  flex-direction: column;
  gap: 30px; /* アイテム間の余白 */
  margin-bottom: 40px;
}
@media screen and (max-width: 402px) {
  .p-item-list {
    gap: 20px;
    margin-bottom: 10px;
  }
}

/* アイテム行（画像＋テキスト） */
.p-item-row {
  display: flex;
  align-items: flex-start; /* 上揃え */
  gap: 15px;
}

/* 左側：画像エリア */
.p-item-img {
  width: 45%; /* 画面幅の45% */
  flex-shrink: 0;
}
@media screen and (max-width: 402px) {
  .p-item-img {
    width: 40%;
  }
}
.p-item-img img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* うっすら影 */
}

/* 右側：情報エリア */
.p-item-info {
  width: 55%;
  padding-top: 5px; /* 画像と少し高さを合わせる微調整 */
}
.p-item-info .item-title {
  font-family: "Yu Mincho", serif;
  font-size: 1.1rem;
  font-weight: normal;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc; /* タイトル下の線 */
  line-height: 1.4;
}
@media screen and (max-width: 402px) {
  .p-item-info .item-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
}
.p-item-info .item-spec {
  font-size: 0.9rem;
  margin: 0 0 5px;
  color: #333;
}
@media screen and (max-width: 402px) {
  .p-item-info .item-spec {
    font-size: 0.8rem;
  }
}
.p-item-info .item-price {
  font-family: "Times New Roman", sans-serif; /* 数字は見やすく */
  font-size: 1.1rem;
  margin: 0;
  color: #333;
}

/* 注意書き */
.p-item-note {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
  text-align: justify;
}

/* ==========================================
   Step 10: Flow Style
   ================================================ */
.step10 {
  background-color: #fff;
}

/* ヘッダー */
.p-flow-header {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 402px) {
  .p-flow-header {
    margin-bottom: 15px;
  }
}
.p-flow-header .c-title-english {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 2.2rem;
  font-weight: normal;
  margin: 0 0 5px;
}
@media screen and (max-width: 402px) {
  .p-flow-header .c-title-english {
    font-size: 1.6rem;
  }
}
.p-flow-header .sub-title {
  font-size: 0.9rem;
  font-family: "Yu Mincho", serif;
  color: #666;
  letter-spacing: 0.05em;
}

/* フローリスト全体 */
.p-flow-list {
  position: relative;
  padding-left: 10px; /* 全体の左余白 */
  /* 左側の縦線 */
}
.p-flow-list::before {
  content: "";
  position: absolute;
  top: 10px; /* 線の開始位置 */
  bottom: 0; /* 線の終了位置 */
  left: 60px; /* 左端からの距離（STEP文字の右側） */
  width: 1px;
  background-color: #333;
  z-index: 1;
}

/* 個別のステップ */
.p-flow-item {
  position: relative;
  padding-left: 80px; /* 左側のSTEP文字分のスペース確保 */
  margin-bottom: 50px;
  /* 黒い丸ドット */
  /* 左側のSTEP表記エリア */
  /* 右側のコンテンツエリア */
}
@media screen and (max-width: 402px) {
  .p-flow-item {
    padding-left: 70px;
    margin-bottom: 40px;
  }
}
.p-flow-item:last-child {
  margin-bottom: 0;
}
.p-flow-item::after {
  content: "";
  position: absolute;
  top: 8px; /* STEPの数字の高さに合わせる */
  left: 47px; /* 縦線の位置(60px)の中央に合わせる調整 */
  width: 7px;
  height: 7px;
  background-color: #333;
  border-radius: 50%;
  z-index: 2;
}
.p-flow-item__head {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  text-align: center;
  line-height: 1;
}
.p-flow-item__head .step-label {
  display: block;
  font-size: 0.7rem;
  font-family: "Times New Roman", serif;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.p-flow-item__head .step-num {
  display: block;
  font-size: 1.4rem;
  font-family: "Times New Roman", serif;
  font-weight: bold;
}
.p-flow-item__body .flow-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 15px;
  font-family: "Yu Mincho", serif;
}
@media screen and (max-width: 402px) {
  .p-flow-item__body .flow-title {
    font-size: 1rem;
  }
}
.p-flow-item__body .flow-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  margin: 0 0 15px;
}
@media screen and (max-width: 402px) {
  .p-flow-item__body .flow-text {
    font-size: 0.8rem;
  }
}

/* ボタンデザイン（Step08などの色味と合わせる） */
.c-btn-flow {
  display: inline-block;
  background-color: #8c6a63; /* ブラウン系 */
  color: #fff;
  font-size: 0.95rem;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.3s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 402px) {
  .c-btn-flow {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}
.c-btn-flow:hover {
  opacity: 0.9;
}
.c-btn-flow .arrow {
  margin-left: 10px;
  font-family: serif;
}

/* ==========================================
   Step 11: Dress Gallery Style
   ================================================ */
.step11 {
  background-color: #fff;
}

/* ヘッダー */
.p-dress-header {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 402px) {
  .p-dress-header {
    margin-bottom: 15px;
  }
}
.p-dress-header .c-title-english {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 2.2rem;
  font-weight: normal;
  margin: 0 0 5px;
}
@media screen and (max-width: 402px) {
  .p-dress-header .c-title-english {
    font-size: 1.6rem;
  }
}
.p-dress-header .sub-title {
  font-size: 0.9rem;
  font-family: "Yu Mincho", serif;
  color: #666;
  letter-spacing: 0.1em;
}

/* 衣装グリッド */
.p-dress-grid {
  display: grid;
  /* 3列均等割り */
  grid-template-columns: repeat(3, 1fr);
  /* 隙間設定 (横は狭く、縦は文字分広く) */
  column-gap: 8px;
  row-gap: 20px;
}
@media screen and (max-width: 402px) {
  .p-dress-grid {
    row-gap: 8px;
  }
}

/* 個別の衣装アイテム */
.p-dress-item {
  width: 100%;
  /* 品番コード */
  /* 画像エリア */
}
.p-dress-item .dress-code {
  text-align: right;
  font-family: "Times New Roman", serif;
  font-size: 0.7rem; /* 小さく上品に */
  color: #333;
  margin: 0 0 2px; /* 画像との隙間 */
  line-height: 1;
}
.p-dress-item .dress-img {
  width: 100%;
}
.p-dress-item .dress-img img {
  width: 100%;
  height: auto;
  display: block;
  /* 縦長画像の比率を統一したい場合は以下を追加 */
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ==========================================
   Step 12: Kimono Gallery Style
   ================================================ */
.step12 {
  background-color: #fff;
}

/* Moreボタンエリア */
.p-dress-more {
  text-align: center;
  margin-top: 40px; /* グリッドとの余白 */
  padding-bottom: 20px;
}
@media screen and (max-width: 402px) {
  .p-dress-more {
    margin-top: 15px;
    padding-bottom: 10px;
  }
}

/* ==========================================
   Step 14: Access Style
   ================================================ */
.step14 {
  background-color: #fff;
}

/* ヘッダー */
.p-access-header {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 402px) {
  .p-access-header {
    margin-bottom: 20px;
  }
}
.p-access-header .c-title-english {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 2.2rem;
  font-weight: normal;
  margin: 0 0 5px;
}
@media screen and (max-width: 402px) {
  .p-access-header .c-title-english {
    font-size: 1.8rem;
  }
}
.p-access-header .sub-title {
  font-size: 0.9rem;
  font-family: "Yu Mincho", serif;
  color: #666;
  letter-spacing: 0.1em;
}

/* 外観写真 */
.p-access-img {
  margin-bottom: 30px;
}
@media screen and (max-width: 402px) {
  .p-access-img {
    margin-bottom: 10px;
  }
}
.p-access-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 402px) {
  .p-access-img img {
    width: 80%;
    margin: 0 auto;
  }
}

/* ロゴエリア */
.p-access-logo {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 402px) {
  .p-access-logo {
    margin-bottom: 20px;
    width: 70%;
    margin: 0 auto;
  }
}
.p-access-logo .logo-ruby {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  margin-bottom: 5px;
  font-family: "Yu Mincho", serif;
}
.p-access-logo .logo-main {
  width: 180px; /* ロゴサイズ調整 */
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.p-access-logo .logo-deco img {
  width: 150px; /* 装飾線の幅 */
  height: auto;
}

/* 店舗情報リスト */
.p-access-info {
  width: 100%;
  max-width: 400px; /* PC等で広がりすぎないように */
  margin: 0 auto;
}

.p-access-row {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}
@media screen and (max-width: 402px) {
  .p-access-row {
    margin-bottom: 15px;
  }
}

dt {
  width: 90px;
  flex-shrink: 0;
  text-align: center;
  font-family: "Yu Mincho", serif;
  color: #8c6a63; /* ブラウン系 */
  border-bottom: 1px solid #8c6a63; /* 下線 */
  padding-bottom: 5px;
  margin-right: 20px;
  font-size: 0.95rem;
}
@media screen and (max-width: 402px) {
  dt {
    font-size: 0.85rem;
    margin-right: 10px;
  }
}

dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  font-family: "Yu Mincho", serif;
}
@media screen and (max-width: 402px) {
  dd {
    font-size: 0.85rem;
  }
}
dd .tel-link {
  font-family: "Times New Roman", serif;
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 402px) {
  dd .tel-link {
    font-size: 1rem;
  }
}

.u-text-sm {
  font-size: 0.85rem;
}

.u-mb-20 {
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */