@charset "UTF-8";
/* ==========================================================================
   Reset - Destyle.css をベースにしたリセット設定
   ========================================================================== */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img,
embed,
object,
video {
  vertical-align: middle;
  max-width: 100%;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  border-radius: 0;
  color: inherit;
  background-color: transparent;
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

textarea {
  overflow: auto;
  resize: vertical;
}

table {
  text-align: left;
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  vertical-align: inherit;
  text-align: inherit;
}

canvas {
  display: inline-block;
}

[hidden] {
  display: none;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1023px) {
  .u-desktop-only {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .u-mobile-only {
    display: none !important;
  }
}

/* -------------------------------------------
   スクロールアニメーション（フェードアップ）
------------------------------------------- */
.u-fade-up {
  opacity: 0;
  /* 最初は30pxだけ下にずらして隠しておく */
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  /* * ★プロの技：ただの ease ではなく cubic-bezier を使います。
   * 「最初はスッと現れて、最後はゆっくり止まる」という、
   * 高級ホテルやAppleのサイトで使われる非常にリッチな動きになります。
   */
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  /* JavaScriptでこのクラスが付与されたら表示される */
}
.u-fade-up.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ▼ おまけ：横に並んだ写真を「順番に（ポン、ポン、ポンと）」出したい時用 */
.u-delay-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.u-delay-2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.u-delay-3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.u-delay-4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.u-delay-5 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.u-delay-6 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

/* -------------------------------------------
   スクロールアニメーション 2（奥行きズームアウト）
------------------------------------------- */
.u-fade-zoom {
  opacity: 0;
  /* 最初はほんの少し（5%だけ）拡大しておく */
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  /* ゆったりとした優雅な動き（フェードアップと同じリズム） */
  -webkit-transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}
.u-fade-zoom.is-visible {
  opacity: 1;
  /* 元のサイズ（100%）にピタッと収まる */
  -webkit-transform: scale(1);
          transform: scale(1);
}

.l-header {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 1000;
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}
.l-header__logo {
  width: 240px;
  padding: 20px 0;
}
.l-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.l-header__nav {
  height: 100%;
}
.l-header__nav a {
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.l-header__nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

.l-footer {
  background-color: #333;
  color: #fff;
  padding: 80px 4% 40px;
}
.l-footer__inner {
  max-width: 1100px;
  margin: auto;
}
.l-footer__shops {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .l-footer__shops {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.l-footer__shop {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-footer__shop-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
}
.l-footer__shop-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 480px) {
  .l-footer__shop-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__shop-img {
  width: 140px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-footer__shop-img img {
  width: 100%;
  height: auto;
  display: block;
}
.l-footer__shop-info {
  font-size: 0.85rem;
  line-height: 1.6;
}
.l-footer__shop-info .u-address {
  margin-bottom: 10px;
}
.l-footer__shop-info .u-tel {
  margin-top: 10px;
  font-weight: 500;
}
.l-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}
.l-footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .l-footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.l-footer__brand {
  width: 280px;
}
@media (max-width: 768px) {
  .l-footer__brand {
    width: 100%;
    margin-bottom: 40px;
  }
}
.l-footer__logo {
  width: 200px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .l-footer__logo {
    margin: 0 auto 25px;
  }
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}
.l-footer__contact {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 25px;
}
.l-footer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media (max-width: 768px) {
  .l-footer__nav {
    width: 100%;
    gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer__nav-group h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.l-footer__nav-group h4::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
.l-footer__nav-group ul li {
  margin-bottom: 5px;
}
.l-footer__nav-group ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-footer__nav-group ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.c-btn-map {
  display: inline-block;
  background-color: #9c845a;
  border-radius: 20px;
  color: #fff;
  padding: 6px 20px;
  font-size: 0.75rem;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-btn-map:hover {
  background-color: rgb(178.9634146341, 155.3658536585, 116.0365853659);
}

.c-btn-reserve {
  display: block;
  background-color: #fff;
  color: #333;
  padding: 12px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-btn-reserve:hover {
  opacity: 0.9;
}
.c-btn-reserve strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.c-btn-reserve span {
  font-size: 0.7rem;
  display: block;
  margin-top: 2px;
}

.c-btn-school {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-btn-school:hover {
  background-color: #fff;
  color: #333;
}

/* -------------------------------------------
   フッター SNS＆予約ボタン (.p-footer-sns)
------------------------------------------- */
.p-footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin: 40px 0; /* フッター内の上下の余白 */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* スマホ画面で自動的に縦並びにする魔法 */
}
@media (max-width: 560px) {
  .p-footer-sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; /* スマホでは完全に縦に並べる */
    gap: 15px;
    padding: 0 20px;
  }
}
.p-footer-sns__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 280px; /* ボタンの最大幅 */
  padding: 16px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-footer-sns__btn svg, .p-footer-sns__btn img {
  margin-right: 10px; /* アイコンと文字の隙間 */
}
.p-footer-sns__btn {
  /* -------------------------
     Instagram（白文字・白枠線スタイル）
     ------------------------- */
}
.p-footer-sns__btn--ig {
  background-color: transparent;
  color: #fff; /* ダーク背景に映える白文字 */
  border: 1px solid rgba(255, 255, 255, 0.5); /* 半透明の白枠で上品に */
}
.p-footer-sns__btn--ig:hover {
  background-color: #fff; /* ホバーで背景を白で塗りつぶす */
  color: #333; /* 文字をフッターの背景色と同じにして「抜き文字風」に */
  border-color: #fff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px); /* 少しだけ浮き上がる */
}
.p-footer-sns__btn {
  /* -------------------------
     公式LINE（目立つLINEグリーン）
     ------------------------- */
}
.p-footer-sns__btn--line {
  background-color: #06C755; /* LINE公式ブランドカラー */
  color: #fff;
  border: 1px solid #06C755;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* ダーク背景に馴染む黒い影 */
}
.p-footer-sns__btn--line:hover {
  background-color: #05b34c; /* 少し濃いグリーンへ */
  border-color: #05b34c;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Main Visual
   ========================================================================== */
@-webkit-keyframes p-home-bg-fade {
  0%, 22.22% {
    opacity: 1;
  }
  33.33%, 88.89% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes p-home-bg-fade {
  0%, 22.22% {
    opacity: 1;
  }
  33.33%, 88.89% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-home-head {
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
  position: relative;
}
.p-home-head__bg {
  position: absolute;
  inset: 0;
  background: no-repeat center top/cover;
  opacity: 0;
  -webkit-animation: p-home-bg-fade 18s infinite;
          animation: p-home-bg-fade 18s infinite;
}
.p-home-head__bg--1 {
  background-image: url(/assets/images/home/head_bg01.jpg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.p-home-head__bg--2 {
  background-image: url(/assets/images/home/head_bg02.jpg);
  -webkit-animation-delay: -12s;
          animation-delay: -12s;
}
.p-home-head__bg--3 {
  background-image: url(/assets/images/home/head_bg03.jpg);
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
}
.p-home-head img {
  position: absolute;
  right: 5%;
  bottom: 8%;
  width: 50%;
  max-width: 900px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
@media (max-width: 1023px) {
  .p-home-head img {
    right: 0;
    left: 0;
    bottom: 5%;
    margin: 0 auto;
    width: 85%;
    max-width: none;
  }
}

/* ==========================================================================
   共通タイトルデザイン
   ========================================================================== */
.p-home-about__main-title,
.p-home-campaign__main-title,
.p-home-menu__main-title {
  text-align: center;
  font-size: 45px;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 90px;
  position: relative;
  padding-bottom: 15px;
}
.p-home-about__main-title::after,
.p-home-campaign__main-title::after,
.p-home-menu__main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #333;
}
@media (max-width: 560px) {
  .p-home-about__main-title,
  .p-home-campaign__main-title,
  .p-home-menu__main-title {
    font-size: 32px;
    margin-bottom: 50px;
  }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.p-home-about {
  padding: 100px 0 0 0;
}
.p-home-about__inner {
  width: min(1100px, 100% - 40px);
  margin: auto;
}
.p-home-about__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}
.p-home-about__unit.is-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 560px) {
  .p-home-about__unit {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 30px;
    margin-bottom: 60px;
  }
}
.p-home-about__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-home-about__img img {
  width: 100%;
  height: auto;
}
.p-home-about__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-home-about__sub-title {
  font-size: 28px;
  font-weight: 500;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
@media (max-width: 560px) {
  .p-home-about__sub-title {
    font-size: 22px;
  }
}
.p-home-about__text {
  font-size: 15px;
  line-height: 2;
}
@media (max-width: 375px) {
  .p-home-about__text {
    font-size: 13px;
  }
}

/* ==========================================================================
   Campaign Slider
   ========================================================================== */
/* Campaign Section */
/* ==========================================================================
   撮影 Menu
   ========================================================================== */
.p-home-menu {
  width: 100%;
  padding: 100px 0;
}
.p-home-menu__inner {
  width: min(1100px, 100% - 40px);
  margin: auto;
}
.p-home-menu__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}
@media (max-width: 560px) {
  .p-home-menu__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
.p-home-menu__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 10px;
}
.p-home-menu__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.p-home-menu__item-title {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

/* ==========================================================================
   Contact Area
   ========================================================================== */
.p-home-contact {
  background: #f8f7f2;
  padding: 80px 0;
  text-align: center;
}
.p-home-contact__inner {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}
.p-home-contact__title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 50px;
}
@media (max-width: 560px) {
  .p-home-contact__title {
    font-size: 24px;
  }
}
.p-home-contact__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 560px) {
  .p-home-contact__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-home-contact__buttons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 340px;
  height: 70px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 560px) {
  .p-home-contact__buttons a {
    width: 100%;
    max-width: 340px;
  }
}
.p-home-contact__buttons .en {
  font-size: 20px;
  font-weight: 600;
}
.p-home-contact__buttons .small {
  font-size: 13px;
  margin-top: 0;
}
.p-home-contact .c-btn-reserve {
  background-color: #c2ac8d;
}
.p-home-contact .c-btn-tel {
  background-color: #7d7864;
}
.p-home-contact .c-btn-line {
  background-color: #44b64a;
}
.p-home-contact__info {
  font-size: 14px;
  color: #666;
}

.c-hamburger {
  /* --- 基本設定 --- */
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  cursor: pointer;
  /* ボタンのベースデザイン */
  background-color: #fff;
  border-radius: 50%;
  border: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, background-color 0.3s ease;
  transition: box-shadow 0.4s ease, background-color 0.3s ease, -webkit-box-shadow 0.4s ease;
  /* スマホ・PCの表示切り替え */
  display: none;
}
@media (max-width: 1023px) {
  .c-hamburger {
    display: block !important;
  }
}
.c-hamburger {
  /* --- ★スクロール時（JSで .is-scrolled がついた時） --- */
}
.c-hamburger.is-scrolled {
  /* ここで初めて「濃い影」をつけて浮き上がらせる */
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.c-hamburger {
  /* --- ハンバーガーの3本線 --- */
}
.c-hamburger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  height: 2px;
  background-color: #9c845a;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 2px;
}
.c-hamburger__line::before, .c-hamburger__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  -webkit-transition: inherit;
  transition: inherit;
  border-radius: 2px;
}
.c-hamburger__line::before {
  top: -7px;
}
.c-hamburger__line::after {
  top: 7px;
}
.c-hamburger {
  /* --- クリック時の変化（バツ印） --- */
}
.c-hamburger.is-active {
  background-color: #9c845a; /* 背景を黒に */
  -webkit-box-shadow: none;
          box-shadow: none; /* 開いている時は影を消す */
}
.c-hamburger.is-active .c-hamburger__line {
  background-color: transparent;
}
.c-hamburger.is-active .c-hamburger__line::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff; /* 線を白に */
}
.c-hamburger.is-active .c-hamburger__line::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #fff;
}

/* -------------------------------------------
   共通：キャンペーンスライダー (.c-campaign)
   ※元の .p-home-campaign のデザインを引き継ぎ
------------------------------------------- */
.c-campaign {
  padding: 100px 0;
  overflow: hidden;
  font-size: 0.75rem;
  /* スライダー全体を囲うコンテナ */
}
.c-campaign .swiper-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 50px;
}
.c-campaign {
  /* 各スライド */
}
.c-campaign .swiper-slide {
  height: auto;
}
.c-campaign .swiper-slide img {
  width: 100% !important;
  height: auto !important;
}
.c-campaign {
  /* カード全体のホバーアクション */
}
.c-campaign__card {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-campaign__card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.c-campaign__link {
  display: block;
  text-decoration: none;
  color: #333;
}
.c-campaign__img {
  overflow: hidden;
  line-height: 0;
}
.c-campaign {
  /* タイトル周り（文字が画像にぴったりくっつかないよう少しだけ余白を追加） */
}
.c-campaign__body {
  padding-top: 15px;
}
.c-campaign__title {
  margin: 0;
  font-size: 0.75rem;
}
.c-campaign {
  /* ========================================
     Swiper Pagination Custom (オリジナルのデザイン)
     ======================================== */
}
.c-campaign .swiper-pagination {
  bottom: 0 !important;
}
.c-campaign .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 6px !important;
}
.c-campaign .swiper-pagination .swiper-pagination-bullet-active {
  background: #333;
}

/* -------------------------------------------------------------------------
   ドロワーメニュー (SP用ナビゲーション)
   ------------------------------------------------------------------------- */
.p-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.p-drawer {
  /* --- インナー（スクロール対応） --- */
}
.p-drawer__inner {
  width: 100%;
  height: 100%;
  padding: 80px 20px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.p-drawer {
  /* --- ナビゲーションリスト --- */
}
.p-drawer__nav {
  width: 100%;
}
.p-drawer__list {
  list-style: none;
  padding-bottom: 60px;
}
.p-drawer {
  /* --- 各メニュー項目 --- */
}
.p-drawer__item {
  border-bottom: 1px solid #eee;
}
.p-drawer__item:first-child {
  border-top: 1px solid #eee;
}
.p-drawer {
  /* --- メインリンク（親階層）のデザイン --- */
}
.p-drawer a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 20px 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-drawer a:hover {
  opacity: 0.7;
}
.p-drawer .u-en {
  display: block;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.p-drawer .u-ja {
  display: block;
  font-size: 12px;
  color: #888;
}
.p-drawer {
  /* -------------------------------------------
     アコーディオン（子メニュー開閉）パーツ
     ------------------------------------------- */
}
.p-drawer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.p-drawer__head a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-drawer__toggle {
  width: 50px;
  height: 100%;
  min-height: 60px;
  background: transparent;
  border: none;
  position: relative;
  cursor: pointer;
  border-left: 1px solid #eee;
}
.p-drawer__toggle::before, .p-drawer__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #333;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-drawer__toggle::before {
  width: 12px;
  height: 1px;
}
.p-drawer__toggle::after {
  width: 1px;
  height: 12px;
}
.p-drawer__toggle.is-active::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.p-drawer {
  /* --- 子メニュー（初期状態は非表示） --- */
}
.p-drawer__sub {
  display: none;
  background-color: #fcfbf9;
  padding: 10px 0;
}
.p-drawer__sub li {
  border-bottom: 1px dotted #ddd;
  margin: 0 15px;
}
.p-drawer__sub li:last-child {
  border-bottom: none;
}
.p-drawer__sub li a {
  padding: 15px 10px;
  font-size: 14px;
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-drawer__sub li a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #c2ac8d;
  border-right: 1px solid #c2ac8d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 10px;
  margin-bottom: 2px;
}

/* -------------------------------------------
   PCヘッダーナビゲーション (.l-header__nav)
------------------------------------------- */
.l-header__nav-list .has-child .p-menu-dropdown::before {
  content: "";
  position: absolute;
  top: -30px;
  height: 30px;
  left: -30px;
  right: -30px;
  /* 透明にして見えなくする */
  background-color: transparent;
}
.l-header__nav-list .has-child:hover .p-menu-dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease, visibility 0s ease 0s;
  transition: opacity 0.3s ease, visibility 0s ease 0s;
}

.has-child {
  position: static;
}

.p-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 999;
}
.p-menu-dropdown::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
  display: block;
}
.p-menu-dropdown__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 4%;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-menu-dropdown__list {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-menu-dropdown__item {
  min-width: 0;
  text-align: center;
}
.p-menu-dropdown__item a {
  display: block;
  text-decoration: none;
  color: #333;
}
.p-menu-dropdown__img {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #eee;
  margin-bottom: 10px;
  overflow: hidden;
}
.p-menu-dropdown__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-menu-dropdown .en {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-menu-dropdown .ja {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.has-child:hover .p-menu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-gallery-archive {
  padding: 60px 0 100px;
}
.p-gallery-archive__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

/* 検索フィルターエリア */
.p-gallery-filter {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 30px;
  margin-bottom: 60px;
  border-radius: 4px;
}
.p-gallery-filter__label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-gallery-filter__label::before {
  content: "";
  width: 4px;
  height: 1.2em;
  background: #333;
}
.p-gallery-filter__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 20px;
}
.p-gallery-filter__item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-gallery-filter__item:hover {
  opacity: 0.7;
}
.p-gallery-filter__item input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #333;
}
.p-gallery-filter__reset {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.75rem;
  color: #999;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}
.p-gallery-filter__reset:hover {
  color: #333;
  border-bottom-color: #333;
}

/* 衣装カード一覧 */
.p-gallery-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}
@media (max-width: 1023px) {
  .p-gallery-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .p-gallery-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}

/* 個別のカードスタイル */
.p-gallery-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 10px;
  position: relative;
}
.p-gallery-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.p-gallery-card a {
  text-decoration: none;
  display: block;
}
.p-gallery-card a:hover .p-gallery-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-gallery-card__no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 100px 0;
  color: #888;
}

.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 2000;
}
.p-modal__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.p-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  line-height: 0;
}
.p-modal__image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.p-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.p-modal__close span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
}
.p-modal__close span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* 一覧画像の下のテキスト */
.p-gallery-card__info {
  margin-top: 10px;
  text-align: center;
}
.p-gallery-card__no {
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}
.p-gallery-card__detail {
  font-size: 0.75rem;
  color: #666;
  margin-top: 4px;
}

/* モーダル内のレイアウト */
.p-modal__body {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .p-modal__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-modal__image-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 0;
}
.p-modal__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-modal__no {
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.p-modal__detail {
  font-size: 0.9rem;
  line-height: 1.8;
}

/* -------------------------------------------
   絞り込みフィルター（グループ分け表示）
------------------------------------------- */
.p-gallery-filter__tree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px; /* グループBOX同士の隙間 */
  margin-top: 15px;
}
.p-gallery-filter {
  /* グループごとのまとまりの箱 */
}
.p-gallery-filter__branch {
  background-color: #fff;
  border: 1px solid #f0eee9;
  border-radius: 8px;
  padding: 15px 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.p-gallery-filter {
  /* グループ名（年齢・性別など）の見出し */
}
.p-gallery-filter__branch-title {
  font-weight: bold;
  color: #1a3a3a;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0eee9; /* 下線で区切って見出し感を出す */
}
.p-gallery-filter {
  /* チェックボックスを並べるエリア */
}
.p-gallery-filter__leaves {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.p-gallery-filter__item {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 項目（3歳・男の子など）のスタイル */
}
.p-gallery-filter__item--child {
  font-size: 14px;
  color: #444;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-gallery-filter__item--child:hover {
  opacity: 0.7;
}

.p-gallery-filter {
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 8px;
}
.p-gallery-filter__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}
.p-gallery-filter__item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}
.p-gallery-filter__item input[type=checkbox] {
  width: 16px;
  height: 16px;
}
.p-gallery-filter__reset {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.8rem;
  color: #888;
  text-decoration: underline;
}

.p-single {
  padding-bottom: 100px;
  /* --- 共通インナー幅の上書き --- */
}
.p-single .l-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-single {
  /* --- 1. アイキャッチ画像 --- */
}
.p-single__mv {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 60px;
}
.p-single__thumbnail {
  width: 100%;
  /* インスタ用縦長画像(4:5)対策：PCでは高さを制限してトリミング */
  height: auto;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 560px) {
  .p-single__thumbnail {
    height: auto;
    aspect-ratio: 4/5;
  }
}
.p-single__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.p-single {
  /* --- 2. タイトル周り --- */
}
.p-single__header {
  margin-bottom: 60px;
  text-align: center;
}
.p-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  color: #666;
  font-family: "Montserrat", sans-serif;
}
.p-single__cat {
  background: #c2ac8d;
  color: #fff;
  padding: 4px 15px;
  font-size: 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.p-single__title {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333;
  margin-top: 20px;
  margin-bottom: 0;
}
@media (max-width: 560px) {
  .p-single__title {
    font-size: 24px;
    text-align: left;
    line-height: 1.4;
  }
}
.p-single {
  /* --- 3. 本文スタイル（WordPress本文） --- */
}
.p-single__body {
  margin-bottom: 100px;
}
.p-single .p-entry-content {
  font-size: 16px;
  line-height: 2;
  color: #333;
  /* --------------------------------------------
     見出し (Heading)
  -------------------------------------------- */
}
.p-single .p-entry-content h2 {
  font-size: 26px;
  font-weight: 500;
  color: #333;
  margin: 80px 0 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid #c2ac8d;
  letter-spacing: 0.05em;
}
@media (max-width: 560px) {
  .p-single .p-entry-content h2 {
    font-size: 20px;
    margin: 60px 0 30px;
  }
}
.p-single .p-entry-content h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 60px 0 30px;
  padding-left: 15px;
  border-left: 4px solid #c2ac8d;
}
@media (max-width: 560px) {
  .p-single .p-entry-content h3 {
    font-size: 18px;
    margin: 40px 0 20px;
  }
}
.p-single .p-entry-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #555;
}
.p-single .p-entry-content {
  /* --------------------------------------------
     テキスト・リンク
  -------------------------------------------- */
}
.p-single .p-entry-content p {
  margin-bottom: 2.5em;
}
.p-single .p-entry-content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 340px;
  height: 70px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  background-color: #7d7864;
  margin: 10px auto 30px auto;
  font-weight: 500;
}
.p-single .p-entry-content a:hover {
  opacity: 0.7;
  text-decoration: none;
}
@media (max-width: 560px) {
  .p-single .p-entry-content a {
    width: 100%;
    max-width: 340px;
  }
}
.p-single .p-entry-content .c-btn-line {
  background-color: #44b64a;
}
.p-single .p-entry-content .c-btn-tel {
  background-color: #7d7864;
}
.p-single .p-entry-content .c-btn-reserve {
  background-color: #c2ac8d;
}
.p-single .p-entry-content .c-btn-tabiphoto {
  background-color: #66d1d1;
}
.p-single .p-entry-content strong, .p-single .p-entry-content b {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgba(194, 172, 141, 0.3)));
  background: linear-gradient(transparent 70%, rgba(194, 172, 141, 0.3) 70%);
  font-weight: 700;
}
.p-single .p-entry-content {
  /* --------------------------------------------
     リスト (List)
  -------------------------------------------- */
}
.p-single .p-entry-content ul {
  list-style: none;
  margin: 30px 0 40px;
  padding: 20px 30px;
  background-color: #f9f8f5;
  border-radius: 8px;
}
.p-single .p-entry-content ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 10px;
}
.p-single .p-entry-content ul li:last-child {
  margin-bottom: 0;
}
.p-single .p-entry-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 6px;
  background-color: #c2ac8d;
  border-radius: 50%;
}
.p-single .p-entry-content ol {
  list-style-type: decimal;
  margin: 30px 0 40px;
  padding-left: 1.5em;
}
.p-single .p-entry-content ol li {
  margin-bottom: 10px;
  padding-left: 0.5em;
}
.p-single .p-entry-content ol li::marker {
  color: #c2ac8d;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
.p-single .p-entry-content {
  /* --------------------------------------------
     画像・ギャラリー (Image / Gallery)
  -------------------------------------------- */
}
.p-single .p-entry-content img {
  max-width: 100%;
  height: auto;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin: 40px 0;
}
.p-single .p-entry-content figure {
  margin: 40px 0;
  width: 100%;
}
.p-single .p-entry-content figure figcaption {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 10px;
}
.p-single .p-entry-content figure.aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.p-single .p-entry-content .wp-block-gallery {
  margin: 40px 0;
}
.p-single .p-entry-content .wp-block-gallery .wp-block-image img {
  margin: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-single .p-entry-content {
  /* --------------------------------------------
     テーブル (Table) - 料金表など
  -------------------------------------------- */
}
.p-single .p-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 15px;
}
.p-single .p-entry-content table th, .p-single .p-entry-content table td {
  border-bottom: 1px solid #eee;
  padding: 15px;
  text-align: left;
}
.p-single .p-entry-content table th {
  background-color: #fcfbf9;
  font-weight: 500;
  color: #555;
  width: 30%;
}
@media (max-width: 560px) {
  .p-single .p-entry-content table th, .p-single .p-entry-content table td {
    display: block;
    width: 100%;
  }
  .p-single .p-entry-content table th {
    background: none;
    padding-bottom: 5px;
    color: #c2ac8d;
    border-bottom: none;
  }
  .p-single .p-entry-content table td {
    padding-top: 0;
  }
}
.p-single .p-entry-content {
  /* --------------------------------------------
     ボタン (WordPress Button Block)
  -------------------------------------------- */
}
.p-single .p-entry-content .wp-block-button {
  margin: 50px 0;
  text-align: center;
}
.p-single .p-entry-content .wp-block-button__link {
  display: inline-block;
  background-color: #c2ac8d;
  color: #fff !important;
  text-decoration: none;
  padding: 15px 60px;
  border-radius: 50px;
  -webkit-transition: opacity 0.3s, background-color 0.3s;
  transition: opacity 0.3s, background-color 0.3s;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.p-single .p-entry-content .wp-block-button__link:hover {
  background-color: rgb(176.2228571429, 147.8114285714, 107.7771428571);
  opacity: 1;
  color: #fff;
}
.p-single .p-entry-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 1px solid #c2ac8d;
  color: #c2ac8d !important;
}
.p-single .p-entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: #c2ac8d;
  color: #fff !important;
}
.p-single .p-entry-content {
  /* --------------------------------------------
     引用 (Blockquote)
  -------------------------------------------- */
}
.p-single .p-entry-content blockquote {
  margin: 40px 0;
  padding: 30px;
  background: #fcfbf9;
  border-left: none;
  position: relative;
  text-align: center;
  font-style: italic;
  color: #555;
}
.p-single .p-entry-content blockquote::before {
  content: "“";
  font-family: serif;
  font-size: 60px;
  color: #e5dac8;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}
.p-single .p-entry-content {
  /* --------------------------------------------
     区切り線 (Separator)
  -------------------------------------------- */
}
.p-single .p-entry-content hr.wp-block-separator {
  border: none;
  border-top: 1px solid #eee;
  margin: 60px auto;
  max-width: 100px;
}
.p-single .p-entry-content hr.wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
}
.p-single .p-entry-content hr.wp-block-separator.is-style-dots::before {
  content: "・・・";
  color: #ccc;
  letter-spacing: 0.5em;
}

/* --- 記事下部ナビゲーション (Previous / Next) --- */
.p-single__nav {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #eee;
}
.p-single__nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
@media (max-width: 560px) {
  .p-single__nav .nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-single__nav .nav-previous,
.p-single__nav .nav-next {
  width: 48%;
}
@media (max-width: 560px) {
  .p-single__nav .nav-previous,
  .p-single__nav .nav-next {
    width: 100%;
  }
}
.p-single__nav .nav-previous a,
.p-single__nav .nav-next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 4px;
  background: #fff;
}
.p-single__nav .nav-previous a:hover,
.p-single__nav .nav-next a:hover {
  border-color: #c2ac8d;
  color: #c2ac8d;
  background: #fcfbf9;
}
.p-single__nav .nav-previous a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-single__nav .nav-previous a::before {
  content: "←";
  margin-right: 10px;
  font-family: serif;
  font-size: 1.2em;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-single__nav .nav-previous a:hover::before {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.p-single__nav .nav-next a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}
.p-single__nav .nav-next a::after {
  content: "→";
  margin-left: 10px;
  font-family: serif;
  font-size: 1.2em;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-single__nav .nav-next a:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.p-single__nav .post-title {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-plan {
  /* 共通インナー */
}
.p-plan .l-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-plan {
  /* -------------------------------------------
     共通パーツ
  ------------------------------------------- */
  /* セクションタイトル */
}
.p-plan__sec-title {
  text-align: center;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, serif;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 50px;
}
.p-plan__sec-title span {
  display: block;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif, sans-serif;
  color: #888;
  letter-spacing: 0.05em;
  margin-top: 10px;
  font-weight: normal;
}
.p-plan__sec-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #c2ac8d;
  margin: 20px auto 0;
}
.p-plan {
  /* セクション余白 */
}
.p-plan__sec {
  padding: 80px 0;
}
@media (max-width: 560px) {
  .p-plan__sec {
    padding: 50px 0;
  }
}
.p-plan {
  /* 共通ボタン */
}
.p-plan__btn-wrap {
  text-align: center;
  margin-top: 40px;
}
.p-plan .c-btn {
  display: inline-block;
  background-color: #c2ac8d;
  color: #fff;
  text-decoration: none;
  padding: 15px 50px;
  border-radius: 50px;
  font-size: 15px;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #c2ac8d;
}
.p-plan .c-btn:hover {
  background-color: #fff;
  color: #c2ac8d;
}
.p-plan .c-btn--small {
  padding: 10px 30px;
  font-size: 14px;
}
.p-plan .c-btn--line {
  background-color: #06C755;
  border-color: #06C755;
}
.p-plan .c-btn--line:hover {
  background: #fff;
  color: #06C755;
}
.p-plan .c-btn--web {
  background-color: #333;
  border-color: #333;
}
.p-plan .c-btn--web:hover {
  background: #fff;
  color: #333;
}
.p-plan {
  /* -------------------------------------------
     各セクション
  ------------------------------------------- */
  /* 1. ヒーロー画像 */
}
.p-plan__hero {
  width: 100%;
  height: 50vh;
  min-height: 350px;
  margin-bottom: 60px;
}
.p-plan__hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.p-plan__hero-none {
  margin-bottom: 50px;
}
.p-plan {
  /* 導入文 */
}
.p-plan__intro {
  text-align: center;
  margin-bottom: 50x;
}
.p-plan__title {
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, serif;
  line-height: 1.3;
}
.p-plan__title span {
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.p-plan__desc {
  font-size: 15px;
  line-height: 2;
  color: #555;
}
.p-plan {
  /* 2. 料金プラン */
}
.p-plan-price {
  background-color: #fcfbf9;
}
.p-plan-price__list {
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.p-plan-price__card {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px;
}
@media (max-width: 560px) {
  .p-plan-price__card {
    padding: 25px;
  }
}
.p-plan-price__head {
  border-bottom: 1px solid #e5dac8;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.p-plan-price__head .name {
  font-size: 22px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-plan-price__head .badge {
  font-size: 13px;
  background: #c2ac8d;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: normal;
}
.p-plan-price__body .price-box {
  margin-bottom: 25px;
}
.p-plan-price__body .price-box .price, .p-plan-price__body .price-box .price-plus {
  font-size: 18px;
  color: #555;
  margin-bottom: 5px;
}
.p-plan-price__body .price-box .price span, .p-plan-price__body .price-box .price-plus span {
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  color: #c2ac8d;
  font-weight: bold;
  margin-left: 10px;
}
.p-plan-price__body .price-box .price-plus {
  font-size: 15px;
}
.p-plan-price__body .price-box .price-plus span {
  font-weight: normal;
  font-size: 21px;
}
.p-plan-price__body .detail-box {
  background: #fcfbf9;
  padding: 20px;
  margin-bottom: 25px;
}
.p-plan-price__body .detail-box h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
.p-plan-price__body .detail-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.p-plan-price__body .text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #b87a62;
}
.p-plan-price__body .note {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}
.p-plan {
  /* 3. オプション */
}
.p-plan-option__wrap {
  max-width: 800px;
  margin: 0 auto;
}
.p-plan-option__table {
  width: 100%;
  border-collapse: collapse;
}
.p-plan-option__table th, .p-plan-option__table td {
  padding: 20px 10px;
  border-bottom: 1px solid #eee;
}
.p-plan-option__table th {
  text-align: left;
  font-weight: 500;
  width: 30%;
}
.p-plan-option__table .price {
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  color: #c2ac8d;
  width: 20%;
}
.p-plan-option__table .detail {
  font-size: 14px;
  color: #666;
}
.p-plan {
  /* 4. ギャラリー */
}
.p-plan-gallery {
  background-color: #fcfbf9;
}
.p-plan-gallery__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 560px) {
  .p-plan-gallery__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.p-plan-gallery__list .item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  /* the_content() が自動出力するタグの余白を消し、枠いっぱいに広げる */
}
.p-plan-gallery__list .item figure, .p-plan-gallery__list .item p, .p-plan-gallery__list .item a {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.p-plan-gallery__list .item {
  /* 画像を正方形の枠に合わせて中央でトリミングする */
}
.p-plan-gallery__list .item img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-plan-gallery__list .item {
  /* クリックできる画像の場合、マウスオーバーで少し拡大させる（任意） */
}
.p-plan-gallery__list .item a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-plan {
  /* 5. CTA（予約） */
}
.p-plan__cta {
  background-color: #e5dac8;
  padding: 60px 0;
  text-align: center;
}
.p-plan__cta-text {
  margin-bottom: 30px;
  font-size: 15px;
}
.p-plan__cta-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media (max-width: 560px) {
  .p-plan__cta-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-plan {
  /* 6 & 7. リンク（アイテム・衣装） */
}
.p-plan-links__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .p-plan-links__grid {
    grid-template-columns: 1fr;
  }
}
.p-plan-links__item {
  text-align: center;
}
.p-plan-links__item .img {
  aspect-ratio: 4/3;
  margin-bottom: 20px;
  background: #eee;
}
.p-plan-links__item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-plan-links__item .title {
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
}
.p-plan-links__item .title span {
  display: block;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  color: #888;
  margin-top: 5px;
}
.p-plan-links__item .text {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.p-plan {
  /* 8. FAQ */
}
.p-plan-faq {
  background-color: #fcfbf9;
}
.p-plan-faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.p-plan-faq__item {
  background: #fff;
  margin-bottom: 15px;
  border: 1px solid #eee;
}
.p-plan-faq__item summary {
  padding: 20px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.p-plan-faq__item summary::-webkit-details-marker {
  display: none;
}
.p-plan-faq__item summary .icon {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
}
.p-plan-faq__item summary .icon::before, .p-plan-faq__item summary .icon::after {
  content: "";
  position: absolute;
  background: #c2ac8d;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-plan-faq__item summary .icon::before {
  width: 14px;
  height: 2px;
}
.p-plan-faq__item summary .icon::after {
  width: 2px;
  height: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-plan-faq__item[open] summary .icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.p-plan-faq__item .answer {
  padding: 0 20px 20px;
}
.p-plan-faq__item .answer p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}
.p-plan {
  /* 9. おすすめポイント */
}
.p-plan-point__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 560px) {
  .p-plan-point__grid {
    grid-template-columns: 1fr;
  }
}
.p-plan-point__grid .item {
  text-align: center;
  padding: 30px 20px;
}
.p-plan-point__grid .item h3 {
  font-size: 16px;
  margin: 15px auto;
  color: #c2ac8d;
  font-weight: 500;
}
.p-plan-point__grid .item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  text-align: left;
}
.p-plan {
  /* 10. メニューリンク */
}
.p-plan-other {
  background-color: #fcfbf9;
}
.p-plan-other__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
.p-plan-other__list li a {
  display: block;
  padding: 10px 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}
.p-plan-other__list li a:hover {
  border-color: #c2ac8d;
  color: #c2ac8d;
}

/* -------------------------------------------
   スマッシュケーキ専用 注意事項＆ショップ情報
------------------------------------------- */
.p-plan-notice {
  margin: 40px auto;
  max-width: 900px;
  /* 注意事項ボックス */
}
.p-plan-notice__box {
  background-color: #fcfbf9;
  border: 1px solid #e5e5e5;
  padding: 40px 50px;
  border-radius: 8px;
  margin-bottom: 40px;
}
@media (max-width: 560px) {
  .p-plan-notice__box {
    padding: 30px 20px;
  }
}
.p-plan-notice__title {
  font-size: 16px;
  font-weight: bold;
  color: #1a3a3a;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-plan-notice__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.p-plan-notice__list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.p-plan-notice__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #888;
}
.p-plan-notice__list li span {
  font-weight: bold;
  color: #333;
}
.p-plan-notice__option {
  font-size: 14px;
  font-weight: bold;
  color: #b87a62;
  text-align: right;
  margin: 0;
  padding-top: 15px;
  border-top: 1px dashed #ccc;
}
.p-plan-notice {
  /* 提携ショップ情報 */
}
.p-plan-notice .p-plan-shop {
  border: 1px solid #9c845a;
  border-radius: 8px;
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (max-width: 560px) {
  .p-plan-notice .p-plan-shop {
    padding: 30px 20px;
  }
}
.p-plan-notice .p-plan-shop__label {
  font-size: 13px;
  color: #9c845a;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 560px) {
  .p-plan-notice .p-plan-shop__label {
    font-size: 12px;
  }
}
.p-plan-notice .p-plan-shop__name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.p-plan-notice .p-plan-shop__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}
.p-plan-notice .p-plan-shop__address {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}
.p-plan-notice .p-plan-shop {
  /* Instagramリンクボタン */
}
.p-plan-notice .p-plan-shop__ig {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 30px;
  background-color: #fff;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-plan-notice .p-plan-shop__ig:hover {
  background-color: #f5f5f5;
  border-color: #999;
}
.p-plan-notice .p-plan-shop__ig::before {
  content: "@";
  margin-right: 8px;
  font-family: sans-serif;
  font-weight: bold;
}

/* ============================================
   七五三専用セクション (.p-plan-753-...)
   ============================================ */
/* --- 1. 撮影基本パックの料金表 --- */
.p-plan-753-basic {
  margin-bottom: 80px;
}
.p-plan-753-basic__desc {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}
.p-plan-753-basic__table-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}
.p-plan-753-basic__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.p-plan-753-basic__table th, .p-plan-753-basic__table td {
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
}
.p-plan-753-basic__table th {
  background-color: #fcfbf9;
  color: #1a3a3a;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.1em;
}
.p-plan-753-basic__table td {
  font-size: 14px;
  color: #333;
}
.p-plan-753-basic__table td strong {
  font-size: 16px;
  color: #1a3a3a;
}
.p-plan-753-basic__table td .small {
  font-size: 13px;
  color: #9c845a;
  display: block;
  margin-top: 5px;
}
@media (max-width: 560px) {
  .p-plan-753-basic__table td .small {
    font-size: 12px;
  }
}
.p-plan-753-basic__table .price {
  font-size: 20px;
  font-weight: bold;
  color: #b87a62;
}
.p-plan-753-basic__table .price span {
  display: block;
  font-size: 13px;
  font-weight: normal;
  color: #888;
  margin-top: 4px;
}
@media (max-width: 560px) {
  .p-plan-753-basic__table .price span {
    font-size: 12px;
  }
}

/* --- 2. カタログ・見積もり ＆ YouTubeエリア --- */
.p-plan-753-special {
  margin-bottom: 80px;
  padding: 60px 0;
  background-color: #faf9f7;
  border-radius: 8px;
  /* ボタンを並べるコンテナ */
}
.p-plan-753-special__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px; /* ボタン同士の隙間 */
  margin-bottom: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* スマホの画面幅では自動で縦並びに折り返す */
  padding: 0 20px;
}
.p-plan-753-special {
  /* 特別ボタンの共通デザイン */
}
.p-plan-753-special .c-btn-special {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #1a3a3a;
  color: #fff;
  padding: 18px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.05em;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 380px; /* 横に広がりすぎないように制限 */
}
.p-plan-753-special .c-btn-special .icon {
  font-size: 20px;
  margin-right: 10px;
}
.p-plan-753-special .c-btn-special:hover {
  background-color: #9c845a;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 560px) {
  .p-plan-753-special .c-btn-special {
    font-size: 14px;
    padding: 16px 20px;
  }
}
.p-plan-753-special {
  /* もし見積もりボタンだけ少し色を変えて目立たせたい場合はこのクラスを活用 */
}
.p-plan-753-special .c-btn-special--accent {
  background-color: #9c845a;
}
.p-plan-753-special .c-btn-special--accent:hover {
  background-color: #1a3a3a;
}
.p-plan-753-special {
  /* スマホでもYouTubeの比率（16:9）を綺麗に保つ魔法のCSS */
}
.p-plan-753-special__youtube {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9; /* ★強制的に16:9の横長にする */
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (max-width: 560px) {
  .p-plan-753-special__youtube {
    padding: 0 10px;
  }
}
.p-plan-753-special__youtube {
  /* WordPressの自動出力で変な余白ができないようにリセット */
}
.p-plan-753-special__youtube iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* -------------------------------------------
   Flow（撮影の流れ）
------------------------------------------- */
.p-plan-flow {
  padding: 80px 0 100px;
  background-color: #faf9f7;
}
.p-plan-flow__list {
  max-width: 700px;
  margin: 0 auto;
}
.p-plan-flow__item {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px 50px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-align: center;
  border: 1px solid #f0eee9;
}
@media (max-width: 560px) {
  .p-plan-flow__item {
    padding: 30px 20px;
  }
}
.p-plan-flow__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}
.p-plan-flow {
  /* 丸いステップ番号 */
}
.p-plan-flow__num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45px;
  height: 45px;
  background-color: #9c845a;
  color: #fff;
  border-radius: 50%;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.p-plan-flow__title {
  font-size: 20px;
  font-weight: bold;
  color: #1a3a3a;
  letter-spacing: 0.1em;
  /* タイトル下の短い区切り線 */
}
.p-plan-flow__title::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #9c845a;
  margin: 15px auto 0;
}
.p-plan-flow__title span {
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  margin-left: 5px;
}
@media (max-width: 560px) {
  .p-plan-flow__title span {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }
}
.p-plan-flow__body p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 560px) {
  .p-plan-flow__body p {
    text-align: left;
  }
}
.p-plan-flow {
  /* 「※」の注意書きテキスト */
}
.p-plan-flow__note {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 15px;
}
.p-plan-flow {
  /* ステップ間の下向き矢印 */
}
.p-plan-flow__arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: #d8d4cb transparent transparent transparent;
  margin: 20px auto;
}

.p-page-hero {
  margin-bottom: 50px;
}
@media (max-width: 560px) {
  .p-page-hero {
    margin-bottom: 30px;
  }
}
.p-page-hero {
  /* 画像エリア */
}
.p-page-hero__img {
  width: 100%;
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
}
.p-page-hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.p-page-hero {
  /* タイトルエリア（白背景部分） */
}
.p-page-hero__title-box {
  text-align: center;
  padding: 50px 20px 0;
  background-color: #fff;
}
@media (max-width: 560px) {
  .p-page-hero__title-box {
    padding: 30px 20px 0;
  }
}
.p-page-hero__title-box .title-en {
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  color: #111;
  letter-spacing: 0.05em;
}
@media (max-width: 560px) {
  .p-page-hero__title-box .title-en {
    font-size: 32px;
  }
}
.p-page-hero__title-box .title-ja {
  display: block;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif, "Noto Sans JP", sans-serif;
  color: #555;
  letter-spacing: 0.2em;
  font-weight: 500;
  position: relative;
  padding-bottom: 30px;
}
.p-page-hero__title-box .title-ja::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background-color: #c2ac8d;
}

.p-item-archive {
  padding: 0 0 100px;
}
.p-item-archive .l-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-item-archive {
  /* -------------------------------------------
     上部：商品カテゴリーナビゲーション
  ------------------------------------------- */
}
.p-item-archive__nav-links {
  margin-bottom: 60px;
  background-color: #f8f8f8;
  padding: 40px 20px;
}
.p-item-archive .p-item-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  list-style: none;
  /* スマホ時は横並びでスクロールさせるか、折り返す設定 */
}
@media (max-width: 560px) {
  .p-item-archive .p-item-nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
}
.p-item-archive .p-item-nav-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 120px;
}
@media (max-width: 560px) {
  .p-item-archive .p-item-nav-list__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.333% - 10px);
            flex: 0 0 calc(33.333% - 10px);
  }
}
.p-item-archive .p-item-nav-list__item a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #333;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-item-archive .p-item-nav-list__item a:hover {
  opacity: 0.7;
}
.p-item-archive .p-item-nav-list__item .img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 10px;
  background-color: #f5f5f5;
  border: 2px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-item-archive .p-item-nav-list__item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-item-archive .p-item-nav-list__item .ja {
  font-size: 13px;
  display: block;
  letter-spacing: 0.05em;
}
.p-item-archive .p-item-nav-list__item {
  /* ★ 現在開いているページのハイライト設定 */
}
.p-item-archive .p-item-nav-list__item.is-active a {
  pointer-events: none;
}
.p-item-archive .p-item-nav-list__item.is-active a .img {
  border-color: #c2ac8d;
}
.p-item-archive .p-item-nav-list__item.is-active a .ja {
  color: #c2ac8d;
  font-weight: bold;
}
.p-item-archive {
  /* -------------------------------------------
     ターム名のタイトル（例：アルバム）
  ------------------------------------------- */
}
.p-item-archive__head {
  margin-bottom: 80px;
  text-align: center;
  background-color: #f2f2f2;
  padding: 80px 20px;
}
.p-item-archive__head .title {
  font-size: 32px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.1em;
  margin: 0;
  /* 以前の茶色い帯スタイルは削除し、シンプルにしました */
}
.p-item-archive {
  /* -------------------------------------------
     以下、商品カード（ジグザグ配置）部分は以前のまま
  ------------------------------------------- */
}
.p-item-archive__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.p-item-archive .p-item-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
  /* ★ここで偶数番目のアイテムを左右反転させています */
}
.p-item-archive .p-item-card:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-item-archive .p-item-card {
  /* スマホ閲覧時は縦積みに戻す */
}
@media (max-width: 560px) {
  .p-item-archive .p-item-card {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 30px;
    margin-bottom: 40px;
  }
}
.p-item-archive .p-item-card {
  /* 画像エリア */
}
.p-item-archive .p-item-card__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
}
@media (max-width: 560px) {
  .p-item-archive .p-item-card__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}
.p-item-archive .p-item-card__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-item-archive .p-item-card {
  /* テキストエリア */
}
.p-item-archive .p-item-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 20px;
}
@media (max-width: 560px) {
  .p-item-archive .p-item-card__content {
    padding: 0 15px;
  }
}
.p-item-archive .p-item-card {
  /* 商品名（記事タイトル） */
}
.p-item-archive .p-item-card__title {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}
.p-item-archive .p-item-card {
  /* 英語サブタイトル */
}
.p-item-archive .p-item-card__en {
  display: block;
  font-size: 14px;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, sans-serif;
  color: #666;
  margin-bottom: 30px;
}
.p-item-archive .p-item-card {
  /* 価格・サイズ表 */
}
.p-item-archive .p-item-card__price {
  font-size: 14px;
  color: #333;
  line-height: 2;
  text-align: left;
  display: inline-block;
  margin-bottom: 20px;
}
.p-item-archive .p-item-card {
  /* 商品説明 */
}
.p-item-archive .p-item-card__desc {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  text-align: left;
}
.p-item-archive {
  /* -------------------------------------------
     ページネーション (Pagination)
  ------------------------------------------- */
}
.p-item-archive__nav {
  margin-top: 80px;
  text-align: center;
}
.p-item-archive__nav .pagination {
  margin: 0;
}
.p-item-archive__nav .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.p-item-archive__nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-item-archive__nav .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  color: #555;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, sans-serif;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-item-archive__nav .page-numbers[href]:hover {
  background-color: #c2ac8d;
  color: #fff;
  border-color: #c2ac8d;
}
.p-item-archive__nav .page-numbers.current {
  background-color: #c2ac8d;
  color: #fff;
  border-color: #c2ac8d;
  pointer-events: none;
}
.p-item-archive__nav .page-numbers.prev, .p-item-archive__nav .page-numbers.next {
  border: none;
  background-color: transparent;
  color: #888;
  font-size: 16px;
}
.p-item-archive__nav .page-numbers.prev:hover, .p-item-archive__nav .page-numbers.next:hover {
  color: #c2ac8d;
  background-color: transparent;
}
.p-item-archive__nav .page-numbers.dots {
  border: none;
  background-color: transparent;
  color: #888;
}

.p-gallery-archive {
  padding: 60px 0 100px;
  /* ★ 追加：商品ページと同じインナー幅（1100px）に合わせる */
}
.p-gallery-archive .l-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-gallery-archive {
  /* -------------------------------------------
     カテゴリー絞り込みフィルター (お宮参り / 七五三 など)
  ------------------------------------------- */
}
.p-gallery-archive__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin-bottom: 60px;
  padding: 0;
}
.p-gallery-archive__filter-item a {
  display: block;
  padding: 10px 25px;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  text-decoration: none;
  color: #555;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif, sans-serif;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-gallery-archive__filter-item a:hover {
  border-color: #c2ac8d;
  color: #c2ac8d;
}
.p-gallery-archive__filter-item.is-active a {
  background-color: #c2ac8d;
  border-color: #c2ac8d;
  color: #fff;
  pointer-events: none;
}
.p-gallery-archive {
  /* -------------------------------------------
     ギャラリー画像リスト（正方形グリッド）
  ------------------------------------------- */
}
.p-gallery-archive__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 560px) {
  .p-gallery-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.p-gallery-archive {
  /* 1枚の画像の枠 */
}
.p-gallery-archive__item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  background-color: #fcfbf9;
}
.p-gallery-archive__item figure, .p-gallery-archive__item p, .p-gallery-archive__item a {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.p-gallery-archive__item img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-gallery-archive__item a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* -------------------------------------------
   画像拡大モーダル (.p-gallery-modal)
------------------------------------------- */
.p-gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* 初期状態は透明＆クリック無効 */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s;
  transition: opacity 0.4s ease, visibility 0.4s;
  /* 表示用のクラスがついた時 */
}
.p-gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.p-gallery-modal {
  /* 黒い半透明の背景 */
}
.p-gallery-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.p-gallery-modal {
  /* 中央の画像エリア */
}
.p-gallery-modal__content {
  position: relative;
  z-index: 10000;
  max-width: 90%;
  max-height: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-gallery-modal__content img {
  max-width: 100%;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.p-gallery-modal {
  /* 閉じるボタン（×マーク） */
}
.p-gallery-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 768px) {
  .p-gallery-modal__close {
    top: -35px;
    right: 0;
  }
}
.p-gallery-modal__close {
  /* バツ印の2本の線 */
}
.p-gallery-modal__close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-gallery-modal__close span:nth-child(1) {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.p-gallery-modal__close span:nth-child(2) {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.p-gallery-modal__close:hover span {
  background-color: #c2ac8d;
}

/* ギャラリー一覧の画像を「クリックできるよ」と見せるためのCSS */
.p-gallery-archive__item {
  cursor: pointer;
}

/* -------------------------------------------
   パパママ着物専用の外部カタログ案内
------------------------------------------- */
.p-gallery-external {
  margin-bottom: 50px;
  padding: 35px 20px;
  background-color: #faf9f7; /* 薄い背景色で目立たせる */
  border-radius: 8px;
  text-align: center;
  border: 1px solid #f0eee9;
}
.p-gallery-external__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-gallery-external__note {
  font-size: 16px;
  font-weight: bold;
  color: #1a3a3a;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
@media (max-width: 560px) {
  .p-gallery-external__note {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.p-gallery-external {
  /* 七五三ページと同じようなリッチなボタンデザイン */
}
.p-gallery-external__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #9c845a; /* アクセントカラー（ゴールド系） */
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.05em;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 450px;
}
.p-gallery-external__btn .icon {
  font-size: 20px;
  margin-right: 10px;
}
.p-gallery-external__btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background-color: #1a3a3a; /* ホバーでメインカラーに反転 */
}
@media (max-width: 560px) {
  .p-gallery-external__btn {
    font-size: 14px;
    padding: 16px 20px;
  }
}

/* -------------------------------------------
   パンくずリスト (.p-breadcrumb)
------------------------------------------- */
.p-breadcrumb {
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 0 20px;
}
@media (max-width: 560px) {
  .p-breadcrumb {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}
.p-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  color: #888;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, sans-serif;
  letter-spacing: 0.05em;
}
.p-breadcrumb__item a {
  color: #555;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.p-breadcrumb__item a:hover {
  color: #c2ac8d;
}
.p-breadcrumb__item .current {
  color: #c2ac8d;
}
.p-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #ccc;
  font-size: 10px;
  font-family: sans-serif;
}

.p-about {
  padding-bottom: 100px;
  /* 共通インナー */
}
.p-about .l-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-about {
  /* -------------------------------------------
     共通セクションタイトル
  ------------------------------------------- */
}
.p-about__sec-title {
  font-size: 28px;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, sans-serif;
  color: #1a3a3a;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.p-about__sec-title span {
  display: block;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif, sans-serif;
  color: #555;
  margin-top: 5px;
  font-weight: normal;
}
.p-about__sec-title--center {
  text-align: center;
  margin-bottom: 50px;
}
.p-about {
  /* -------------------------------------------
     1. Message（コンセプト）
  ------------------------------------------- */
}
.p-about-message {
  padding: 40px 0 80px;
}
.p-about-message__text {
  text-align: center;
  font-size: 14px;
  line-height: 2.6;
  color: #333;
  letter-spacing: 0.1em;
}
.p-about-message__text p {
  margin: 0;
}
@media (max-width: 560px) {
  .p-about-message__text {
    font-size: 13px;
    line-height: 2.2;
    text-align: left;
  }
}
.p-about {
  /* -------------------------------------------
        2. Studio（店舗案内：リッチ版）
     ------------------------------------------- */
}
.p-about-studio {
  margin-top: 40px;
  background-color: #fcfbf9;
  padding: 80px 0 100px;
}
.p-about-studio__access-text strong {
  color: #1a3a3a;
  font-weight: bold;
}
.p-about-studio__access-text .note {
  display: block;
  margin-top: 10px;
  padding: 10px;
  background-color: #fff;
  border-left: 2px solid #9c845a;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
.p-about-studio__item {
  background-color: #fff;
  padding: 50px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
@media (max-width: 560px) {
  .p-about-studio__item {
    padding: 30px 20px;
  }
}
.p-about-studio {
  /* --- 上部：情報エリア --- */
}
.p-about-studio__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
  margin-bottom: 35px;
}
@media (max-width: 560px) {
  .p-about-studio__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.p-about-studio__head-right {
  text-align: right;
}
@media (max-width: 560px) {
  .p-about-studio__head-right {
    text-align: left;
  }
}
.p-about-studio__name {
  font-size: 24px;
  font-weight: bold;
  color: #1a3a3a;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.p-about-studio__subname {
  font-size: 13px;
  font-weight: bold;
  color: #888;
}
.p-about-studio__info {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}
.p-about-studio {
  /* --- 中部：外観・内観エリア --- */
}
.p-about-studio__facilities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 560px) {
  .p-about-studio__facilities {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-about-studio__photo {
  width: 50%;
  margin: 0;
}
@media (max-width: 560px) {
  .p-about-studio__photo {
    width: 100%;
  }
}
.p-about-studio__photo img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.p-about-studio__photo figcaption {
  display: block;
  font-size: 13px;
  color: #888;
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, sans-serif;
}
.p-about-studio {
  /* --- 下部：ギャラリーエリア --- */
}
.p-about-studio__gallery {
  padding: 30px 0;
  border-radius: 4px;
}
@media (max-width: 560px) {
  .p-about-studio__gallery {
    padding: 20px 15px;
  }
}
.p-about-studio__gallery-title {
  font-size: 14px;
  color: #9c845a;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, sans-serif;
}
.p-about-studio__gallery-title::before, .p-about-studio__gallery-title::after {
  content: " - ";
  color: #ccc;
}
.p-about-studio__gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 560px) {
  .p-about-studio__gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.p-about-studio__gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-about-studio__gallery-grid img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.p-about-studio {
  /* --- アクセス案内セクション --- */
}
.p-about-studio__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 45px;
  padding: 25px;
  background-color: #faf9f7;
  border-radius: 4px;
}
@media (max-width: 560px) {
  .p-about-studio__access {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    padding: 20px;
  }
}
.p-about-studio__access-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about-studio__access-title {
  font-size: 15px;
  font-weight: bold;
  color: #1a3a3a;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.05em;
}
.p-about-studio__access-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background-color: #9c845a;
  margin-right: 10px;
}
.p-about-studio__access-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.p-about-studio {
  /* --- 近隣スポットセクション --- */
}
.p-about-studio__spots {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px dashed #eee;
}
.p-about-studio__spots-title {
  font-size: 16px;
  font-weight: bold;
  color: #1a3a3a;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 0.1em;
}
.p-about-studio__spots-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
}
@media (max-width: 560px) {
  .p-about-studio__spots-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.p-about-studio__spots-item {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-about-studio__spots-item:hover {
  border-color: #9c845a;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.p-about-studio__spots-item strong {
  display: block;
  color: #1a3a3a;
  margin-bottom: 5px;
  font-size: 15px;
}
.p-about {
  /* -------------------------------------------
     3. Company（会社概要）
  ------------------------------------------- */
}
.p-about-company {
  padding: 80px 0 0;
}
.p-about-company__dl {
  border-top: 1px solid #eee;
  margin-bottom: 80px;
}
.p-about-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 25px 0;
}
@media (max-width: 560px) {
  .p-about-company__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
  }
}
.p-about-company__row dt {
  width: 220px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  letter-spacing: 0.1em;
}
@media (max-width: 560px) {
  .p-about-company__row dt {
    width: 100%;
    margin-bottom: 10px;
    color: #9c845a;
  }
}
.p-about-company__row dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.p-about-company__recruit {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.p-about-company__recruit a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-about-company__recruit a:hover {
  opacity: 0.7;
}
.p-about-company__recruit img {
  width: 100%;
  height: auto;
  border: 1px solid #eee;
}
.p-about {
  /* -------------------------------------------
     Brands（オリジナルブランド）
  ------------------------------------------- */
}
.p-about-brand {
  padding: 80px 0;
  background-color: #fff;
}
.p-about-brand__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 560px) {
  .p-about-brand__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.p-about-brand__item {
  width: 50%;
  text-decoration: none;
  color: #333;
  display: block;
}
@media (max-width: 560px) {
  .p-about-brand__item {
    width: 100%;
  }
}
.p-about-brand__item .p-about-brand__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 240px; /* ボタンの最低幅（お好みで調整） */
  padding: 18px 40px;
  background-color: transparent; /* 背景は透明 */
  color: #1a3a3a; /* 文字色はメインカラー */
  border: 1px solid #1a3a3a; /* メインカラーの細い枠線 */
  border-radius: 50px; /* 優しい丸み */
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* 右側の矢印（>）をCSSで作る */
}
.p-about-brand__item .p-about-brand__link::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 15px;
  border-top: 1px solid #1a3a3a;
  border-right: 1px solid #1a3a3a;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-about-brand__item .p-about-brand__link {
  /* ========================================
  ホバー（マウスカーソルを乗せた時）の動き
  ======================================== */
}
.p-about-brand__item .p-about-brand__link:hover {
  background-color: #1a3a3a; /* 背景をメインカラーで塗りつぶす */
  color: #fff; /* 文字を白に */
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* うっすら影をつける */
  /* 矢印の動き */
}
.p-about-brand__item .p-about-brand__link:hover::after {
  border-color: #fff; /* 矢印も白に変更 */
  -webkit-transform: rotate(45deg) translate(3px, -3px);
          transform: rotate(45deg) translate(3px, -3px); /* 矢印を右にスライド */
}
.p-about-brand__item {
  /* ホバー時の美しいアニメーション */
}
.p-about-brand__item:hover .p-about-brand__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-about-brand__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 25px;
}
.p-about-brand__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-about-brand__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-about-brand__name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  color: #1a3a3a;
}
.p-about-brand__desc {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.p-about-brand__link {
  font-size: 13px;
  font-weight: bold;
  color: #888;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.p-about-brand__link::after {
  content: "→";
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* -------------------------------------------
   共通コンポーネント: Google Maps ボタン
------------------------------------------- */
.c-btn-map {
  display: inline-block;
  background-color: #444;
  color: #fff;
  font-size: 13px;
  padding: 13px 35px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 0.1em;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-btn-map:hover {
  background-color: #9c845a;
  color: #fff;
}

/* -------------------------------------------
   About スタジオギャラリー
------------------------------------------- */
.p-about-studio__gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PCは横に4枚並べるなど、お使いの設定に合わせてください */
  gap: 15px;
}
@media (max-width: 560px) {
  .p-about-studio__gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* スマホは2列など */
    gap: 10px;
  }
}

.p-about-studio__gallery-link {
  display: block;
  overflow: hidden; /* 画像がはみ出さないようにする */
  border-radius: 4px; /* 優しい角丸 */
  cursor: pointer;
}
.p-about-studio__gallery-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-filter 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-filter 0.4s ease;
  transition: transform 0.4s ease, filter 0.4s ease;
  transition: transform 0.4s ease, filter 0.4s ease, -webkit-transform 0.4s ease, -webkit-filter 0.4s ease;
}
.p-about-studio__gallery-link {
  /* マウスを乗せた時の美しいズームエフェクト */
}
.p-about-studio__gallery-link:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08); /* ほんの少しだけ拡大 */
  -webkit-filter: brightness(0.85);
          filter: brightness(0.85); /* ほんの少しだけ暗くして「押せる感」を出す */
}

/* プライバシーポリシー用のスタイル */
.p-privacy {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  color: #333;
  line-height: 1.8;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.p-privacy h3 {
  font-size: 18px;
  color: #1a3a3a; /* メインカラー（深いグリーン） */
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.p-privacy p {
  margin-bottom: 20px;
}
.p-privacy ul {
  margin-bottom: 20px;
  padding-left: 1.5em;
}
.p-privacy ul li {
  margin-bottom: 8px;
}
.p-privacy {
  /* お問い合わせ窓口のボックス */
}
.p-privacy__contact {
  background-color: #fcfbf9;
  border: 1px solid #e5e5e5;
  padding: 30px;
  border-radius: 4px;
  margin-top: 30px;
}
.p-privacy__contact p {
  margin-bottom: 10px;
}
.p-privacy__contact p:last-child {
  margin-bottom: 0;
}
.p-privacy__contact strong {
  font-size: 16px;
}

.p-costume-top {
  padding-bottom: 100px;
}
.p-costume-top__categories {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 80px;
}
.p-costume-top__categories .l-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-costume-top__recent {
  padding-bottom: 40px;
}

/* -------------------------------------------
   カテゴリーパネル (Category Grid)
------------------------------------------- */
.p-costume-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 560px) {
  .p-costume-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.p-costume-category-grid__item {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  aspect-ratio: 4/3;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  /* ホバー時の美しいズームアクション */
}
.p-costume-category-grid__item:hover .p-costume-category-grid__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-costume-category-grid__item:hover .p-costume-category-grid__name h3 {
  color: #9c845a;
}
.p-costume-category-grid__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  /* 画像を少し暗くして文字を読みやすくする黒いベール */
}
.p-costume-category-grid__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.p-costume-category-grid__name {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  z-index: 2;
}
.p-costume-category-grid__name h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 560px) {
  .p-costume-category-grid__name h3 {
    font-size: 15px;
  }
}
.p-costume-category-grid__name span {
  font-size: 11px;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, sans-serif;
  letter-spacing: 0.15em;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  display: inline-block;
}

/* -------------------------------------------
   新着衣装 (Recent Grid)
------------------------------------------- */
.p-costume-top__recent .l-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-costume-recent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 560px) {
  .p-costume-recent-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.p-costume-recent-grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-costume-recent-grid__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 12px;
  background-color: #f5f5f5;
}
.p-costume-recent-grid__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-costume-recent-grid__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 12px;
  padding: 0 5px;
}
.p-costume-recent-grid__info .cat {
  color: #1a3a3a;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.p-costume-recent-grid__info .size {
  color: #888;
  font-size: 11px;
}

.p-item-top {
  padding-bottom: 100px;
}
.p-item-top__categories {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 80px;
}
.p-item-top__categories .l-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-item-top__recent {
  padding-bottom: 40px;
}

/* -------------------------------------------
   カテゴリーパネル (Category Grid)
------------------------------------------- */
.p-item-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 560px) {
  .p-item-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.p-item-category-grid__item {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  aspect-ratio: 4/3;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  /* ホバー時の美しいズームアクション */
}
.p-item-category-grid__item:hover .p-item-category-grid__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-item-category-grid__item:hover .p-item-category-grid__name h3 {
  color: #9c845a;
}
.p-item-category-grid__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  /* 画像を少し暗くして文字を読みやすくする黒いベール */
}
.p-item-category-grid__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.p-item-category-grid__name {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  z-index: 2;
}
.p-item-category-grid__name h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 560px) {
  .p-item-category-grid__name h3 {
    font-size: 15px;
  }
}
.p-item-category-grid__name span {
  font-size: 11px;
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, sans-serif;
  letter-spacing: 0.15em;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  display: inline-block;
}

/* -------------------------------------------
   新着商品 (Recent Grid)
------------------------------------------- */
.p-item-top__recent .l-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-item-recent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}
@media (max-width: 560px) {
  .p-item-recent-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
  }
}
.p-item-recent-grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: #333;
}
.p-item-recent-grid__item:hover .p-item-recent-grid__img img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.p-item-recent-grid__item:hover .p-item-recent-grid__title {
  color: #9c845a;
}
.p-item-recent-grid__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  border: 1px solid #eee;
}
.p-item-recent-grid__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-item-recent-grid__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0 5px;
}
.p-item-recent-grid__info .cat {
  color: #888;
  font-size: 11px;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}
.p-item-recent-grid__title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

/* -------------------------------------------
   アイテム：絞り込みフィルター (.p-item-filter)
------------------------------------------- */
.p-item-filter {
  margin-bottom: 40px;
  text-align: center;
}
.p-item-filter__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.p-item-filter__item {
  cursor: pointer;
  /* デフォルトの丸いラジオボタン（⚪︎）は隠す */
}
.p-item-filter__item input[type=radio] {
  display: none;
}
.p-item-filter__item {
  /* ボタンの見た目（タグ風デザイン） */
}
.p-item-filter__item span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 24px;
  background-color: #fff;
  border: 1px solid #e0ddd7;
  border-radius: 50px; /* コロンとした角丸に */
  font-size: 14px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.p-item-filter__item {
  /* 選択されている時 ＆ マウスが乗った時 */
}
.p-item-filter__item input[type=radio]:checked + span, .p-item-filter__item:hover span {
  background-color: #1a3a3a; /* テーマのメインカラーに反転 */
  color: #fff;
  border-color: #1a3a3a;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* -------------------------------------------
   モーダル：閉じるボタン (.p-modal__close)
------------------------------------------- */
.p-modal__close {
  position: absolute;
  top: -50px; /* モーダルの白い箱の「外側右上」に配置する場合 */
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #fff; /* 白い丸背景 */
  border-radius: 50%; /* 完全な丸にする */
  border: none;
  cursor: pointer;
  z-index: 100; /* 一番手前に来るように */
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  /* スマホ画面での位置調整（画面端にくっつきすぎないように） */
}
@media (max-width: 560px) {
  .p-modal__close {
    top: -45px;
    right: 5px;
    width: 36px;
    height: 36px;
  }
}
.p-modal__close {
  /* マウスを乗せた時のアクション（少し回転して色が変わる） */
}
.p-modal__close:hover {
  background-color: #f8f6f0; /* テーマの薄い背景色に変化 */
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); /* クルッと90度回る上品なアニメーション */
}
.p-modal__close {
  /* ========================================
     バツ印（×）をCSSの線で作る
     ======================================== */
}
.p-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px; /* バツのサイズ */
  height: 2px; /* 線の細さ（上品に見せるため細めに） */
  background-color: #333; /* バツの色（ダークグレー） */
  /* 1本目の線を45度傾ける（ / ） */
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  /* 2本目の線を交差させる（ \ ） */
}
.p-modal__close span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg); /* 1本目に対して90度傾けて十字を作る */
}

/* -------------------------------------------
   モーダル：前へ・次へボタン (.p-modal__nav)
------------------------------------------- */
.p-modal__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 100;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-modal__nav:hover {
  background-color: #fff;
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1); /* 乗せると少しフワッと大きくなる */
}
.p-modal__nav {
  /* 矢印（くの字）をCSSで作る */
}
.p-modal__nav span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
.p-modal__nav--prev {
  left: -60px; /* PC時はモーダルの外側に配置 */
}
.p-modal__nav--prev span {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
          transform: translate(-30%, -50%) rotate(-135deg);
}
.p-modal__nav--next {
  right: -60px; /* PC時はモーダルの外側に配置 */
}
.p-modal__nav--next span {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
}
.p-modal__nav {
  /* スマホ画面での位置調整（モーダルの中に収める） */
}
@media (max-width: 560px) {
  .p-modal__nav {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.85);
  }
  .p-modal__nav--prev {
    left: 10px;
  }
  .p-modal__nav--next {
    right: 10px;
  }
  .p-modal__nav span {
    width: 10px;
    height: 10px;
  }
}

/* -------------------------------------------
   プティパ（Petit Pas）専用スタイル
------------------------------------------- */
.p-petitpas {
  padding-bottom: 100px;
  margin: 0 auto;
  /* 共通セクションタイトル */
}
.p-petitpas__sec-title {
  text-align: center;
  font-size: 22px;
  color: #1a3a3a;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.p-petitpas__sec-title span {
  color: #9c845a; /* ★の色 */
}
.p-petitpas {
  /* 1. コンセプト */
}
.p-petitpas__concept {
  text-align: center;
  margin-bottom: 80px;
}
.p-petitpas__concept-title {
  font-size: 24px;
  color: #9c845a;
  margin-bottom: 25px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.p-petitpas__concept-text {
  font-size: 15px;
  line-height: 2;
  color: #444;
}
.p-petitpas {
  /* 2. 対象メニュー（タグリスト風） */
}
.p-petitpas__events {
  margin-bottom: 80px;
  background-color: #faf9f7;
  padding: 60px 0;
}
.p-petitpas .p-petitpas-timeline {
  position: relative;
  display: block !important;
  max-width: 880px;
  margin: 0 auto;
  /* 中央を通る「成長の線」 */
}
.p-petitpas .p-petitpas-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: #9c845a;
  opacity: 0.4;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 560px) {
  .p-petitpas .p-petitpas-timeline::before {
    left: 35px;
  }
}
.p-petitpas .p-petitpas-timeline {
  /* 各メニューのブロック */
}
.p-petitpas .p-petitpas-timeline__item {
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  width: 50% !important;
  max-width: 50% !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  margin-bottom: 40px;
  text-decoration: none;
}
.p-petitpas .p-petitpas-timeline__item:last-child {
  margin-bottom: 0;
}
.p-petitpas .p-petitpas-timeline__item {
  /* ホバー時の写真のアクション */
}
.p-petitpas .p-petitpas-timeline__item:hover .p-petitpas-timeline__img img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.p-petitpas .p-petitpas-timeline__item:hover .p-petitpas-timeline__img {
  border-color: #9c845a;
}
.p-petitpas .p-petitpas-timeline__item {
  /* -------------------------
     PC：奇数番目（左側）
     ------------------------- */
}
.p-petitpas .p-petitpas-timeline__item:nth-child(odd) {
  margin-left: 0 !important;
  margin-right: auto !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
  padding-right: 40px !important;
}
.p-petitpas .p-petitpas-timeline__item:nth-child(odd) .p-petitpas-timeline__info {
  text-align: right;
  padding-right: 25px;
}
.p-petitpas .p-petitpas-timeline__item:nth-child(odd) .p-petitpas-timeline__point {
  right: 0 !important;
  left: auto !important;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.p-petitpas .p-petitpas-timeline__item:nth-child(odd):hover .p-petitpas-timeline__point {
  background-color: #1a3a3a;
  -webkit-transform: translate(50%, -50%) scale(1.4);
          transform: translate(50%, -50%) scale(1.4);
}
.p-petitpas .p-petitpas-timeline__item {
  /* -------------------------
     PC：偶数番目（右側）
     ------------------------- */
}
.p-petitpas .p-petitpas-timeline__item:nth-child(even) {
  margin-left: 50% !important;
  margin-right: 0 !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  padding-left: 40px !important;
}
.p-petitpas .p-petitpas-timeline__item:nth-child(even) .p-petitpas-timeline__info {
  text-align: left;
  padding-left: 25px;
}
.p-petitpas .p-petitpas-timeline__item:nth-child(even) .p-petitpas-timeline__point {
  left: 0 !important;
  right: auto !important;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-petitpas .p-petitpas-timeline__item:nth-child(even):hover .p-petitpas-timeline__point {
  background-color: #1a3a3a;
  -webkit-transform: translate(-50%, -50%) scale(1.4);
          transform: translate(-50%, -50%) scale(1.4);
}
.p-petitpas .p-petitpas-timeline__item {
  /* -------------------------
     スマホ用（一直線に並べる）
     ※修正点：奇数・偶数両方を指定してPCの命令を完全に上書きします
     ------------------------- */
}
@media (max-width: 560px) {
  .p-petitpas .p-petitpas-timeline__item:nth-child(odd), .p-petitpas .p-petitpas-timeline__item:nth-child(even) {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important; /* すべて画像左・テキスト右に戻す */
    padding-left: 80px !important;
    padding-right: 0 !important;
    margin-bottom: 35px;
  }
  .p-petitpas .p-petitpas-timeline__item:nth-child(odd) .p-petitpas-timeline__info, .p-petitpas .p-petitpas-timeline__item:nth-child(even) .p-petitpas-timeline__info {
    text-align: left !important;
    padding-left: 20px !important;
    padding-right: 0 !important;
  }
  .p-petitpas .p-petitpas-timeline__item:nth-child(odd) .p-petitpas-timeline__point, .p-petitpas .p-petitpas-timeline__item:nth-child(even) .p-petitpas-timeline__point {
    left: 35px !important; /* 縦線の位置 */
    right: auto !important;
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
  }
  .p-petitpas .p-petitpas-timeline__item:nth-child(odd):hover .p-petitpas-timeline__point, .p-petitpas .p-petitpas-timeline__item:nth-child(even):hover .p-petitpas-timeline__point {
    -webkit-transform: translate(-50%, -50%) scale(1.4) !important;
            transform: translate(-50%, -50%) scale(1.4) !important;
  }
}
.p-petitpas .p-petitpas-timeline {
  /* 線の上の丸いポインター */
}
.p-petitpas .p-petitpas-timeline__point {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 3px solid #9c845a;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}
.p-petitpas .p-petitpas-timeline {
  /* まん丸のサムネイル画像 */
}
.p-petitpas .p-petitpas-timeline__img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  background-color: #fff;
}
@media (max-width: 560px) {
  .p-petitpas .p-petitpas-timeline__img {
    width: 90px;
    height: 90px;
    border-width: 3px;
  }
}
.p-petitpas .p-petitpas-timeline__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.p-petitpas .p-petitpas-timeline {
  /* テキスト部分 */
}
.p-petitpas .p-petitpas-timeline__info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-petitpas .p-petitpas-timeline__info .sub {
  display: block;
  font-size: 13px;
  color: #9c845a;
  margin-bottom: 5px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (max-width: 560px) {
  .p-petitpas .p-petitpas-timeline__info .sub {
    font-size: 11px;
    margin-bottom: 3px;
  }
}
.p-petitpas .p-petitpas-timeline__info .title {
  font-size: 20px;
  color: #1a3a3a;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 560px) {
  .p-petitpas .p-petitpas-timeline__info .title {
    font-size: 16px;
  }
}
.p-petitpas .p-petitpas-timeline__info {
  /* お客様が追加された説明文用スタイル */
}
.p-petitpas .p-petitpas-timeline__info .text {
  font-size: 13px;
  color: #1a3a3a;
}
@media (max-width: 560px) {
  .p-petitpas .p-petitpas-timeline__info .text {
    font-size: 12px;
    line-height: 1.5;
  }
}
.p-petitpas {
  /* 3. 含まれるもの */
}
.p-petitpas__includes {
  margin-bottom: 80px;
}
.p-petitpas__includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 560px) {
  .p-petitpas__includes-grid {
    grid-template-columns: repeat(2, 1fr); /* スマホは2列 */
  }
}
.p-petitpas__includes-grid .card {
  background-color: #fff;
  border: 1px solid #f0eee9;
  border-radius: 8px;
  padding: 30px 15px;
  text-align: center;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.p-petitpas__includes-grid .card .icon {
  font-size: 35px;
  margin-bottom: 15px;
}
.p-petitpas__includes-grid .card h4 {
  font-size: 14px;
  color: #1a3a3a;
  margin-bottom: 10px;
  border-bottom: 1px solid #9c845a;
  padding-bottom: 10px;
  display: inline-block;
}
.p-petitpas__includes-grid .card p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}
.p-petitpas__includes-note {
  text-align: center;
  font-size: 14px;
  color: #9c845a;
  margin-top: 20px;
  font-weight: bold;
}
.p-petitpas {
  /* 4. 料金プランカード（BABY4 / BABY6） */
}
.p-petitpas__plans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* ▼ PCでは横並びにする（初期値のrowになります） */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  margin: 0 auto 40px auto;
  max-width: 1100px;
  padding: 0 20px;
  /* ▼ スマホでは縦並びに戻す */
}
@media (max-width: 560px) {
  .p-petitpas__plans {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-petitpas__plan-card {
  /* ▼ 2つのカードの幅を均等（50%ずつ）にする */
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  border: 2px solid #9c845a;
  border-radius: 12px;
  overflow: hidden;
  /* （以下、既存のスタイルそのまま） */
}
.p-petitpas__plan-card .head {
  background-color: #9c845a;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.p-petitpas__plan-card .head .plan-name {
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, sans-serif;
  font-size: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.p-petitpas__plan-card .head .plan-desc {
  font-size: 14px;
}
.p-petitpas__plan-card .body {
  padding: 40px;
}
@media (max-width: 560px) {
  .p-petitpas__plan-card .body {
    padding: 25px 20px;
  }
}
.p-petitpas__plan-card .price-list {
  margin-bottom: 30px;
}
.p-petitpas__plan-card .price-list dt {
  font-size: 16px;
  font-weight: bold;
  color: #1a3a3a;
  margin-bottom: 5px;
  border-left: 4px solid #9c845a;
  padding-left: 10px;
}
.p-petitpas__plan-card .price-list dd {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 15px;
  padding-left: 14px;
}
@media (max-width: 560px) {
  .p-petitpas__plan-card .price-list dd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
.p-petitpas__plan-card .price-list dd .price {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}
.p-petitpas__plan-card .price-list dd .normal-price {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}
.p-petitpas__plan-card .bonus {
  background-color: #faf9f7;
  padding: 25px;
  border-radius: 8px;
}
.p-petitpas__plan-card .bonus h4 {
  text-align: center;
  color: #9c845a;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 15px;
}
.p-petitpas__plan-card .bonus ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-petitpas__plan-card .bonus ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}
.p-petitpas__plan-card .bonus ul li:last-child {
  border-bottom: none;
}
.p-petitpas__plan-card .bonus ul li span {
  font-weight: bold;
  color: #d9534f;
}
.p-petitpas {
  /* 5. オプション（ロケーション） */
}
.p-petitpas__options {
  text-align: center;
}
.p-petitpas__options-title {
  font-size: 20px;
  color: #1a3a3a;
  margin-bottom: 10px;
}
.p-petitpas__options-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.p-petitpas__options-box {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #f0eee9;
  padding: 30px 50px;
  border-radius: 8px;
  text-align: left;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
@media (max-width: 560px) {
  .p-petitpas__options-box {
    display: block;
    padding: 25px 20px;
  }
}
.p-petitpas__options-box .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  font-size: 16px;
  font-weight: bold;
}
.p-petitpas__options-box .row .price {
  color: #9c845a;
}
.p-petitpas__options-box .note {
  font-size: 12px;
  color: #888;
  margin-top: 15px;
}

/* -------------------------------------------
   予約ページ：店舗選択 (.p-reserve)
------------------------------------------- */
.p-reserve {
  padding: 60px 0 100px;
  background-color: #faf9f7; /* 優しい背景色 */
}
@media (max-width: 560px) {
  .p-reserve {
    padding: 40px 0 60px;
  }
}
.p-reserve__head {
  text-align: center;
  margin-bottom: 50px;
}
.p-reserve__title {
  font-size: 24px;
  color: #1a3a3a;
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 560px) {
  .p-reserve__title {
    font-size: 20px;
  }
}
.p-reserve__desc {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}
@media (max-width: 560px) {
  .p-reserve__desc {
    font-size: 13px;
  }
}
.p-reserve {
  /* カードを並べるコンテナ */
}
.p-reserve__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .p-reserve__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    padding: 0 15px;
  }
}

/* -------------------------------------------
   店舗カード単体 (.p-reserve-card)
------------------------------------------- */
.p-reserve-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; /* 2つのカードを同じ幅（50%）にする */
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  /* ホバー時のアクション：フワッと浮き上がる */
}
.p-reserve-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.p-reserve-card:hover .p-reserve-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-reserve-card:hover .p-reserve-card__btn {
  background-color: #1a3a3a;
  color: #fff;
  border-color: #1a3a3a;
}
.p-reserve-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-reserve-card__img {
  width: 100%;
  aspect-ratio: 16/9; /* 綺麗な横長比率を保つ */
  overflow: hidden;
}
.p-reserve-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.p-reserve-card__body {
  padding: 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 560px) {
  .p-reserve-card__body {
    padding: 25px 20px;
  }
}
.p-reserve-card__label {
  font-family: "Montserrat", "Futura", "Helvetica Neue", Arial, sans-serif, sans-serif;
  font-size: 14px;
  color: #9c845a; /* ゴールドなどのアクセントカラー */
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  display: block;
}
.p-reserve-card__name {
  font-size: 20px;
  color: #1a3a3a;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media (max-width: 560px) {
  .p-reserve-card__name {
    font-size: 18px;
  }
}
.p-reserve-card__btn {
  margin-top: auto; /* ボタンをカードの一番下に押し下げる */
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #9c845a;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  color: #9c845a;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* 外部サイト（Zoho）へ飛ぶことを示す小さなアイコンをCSSで付与 */
}
.p-reserve-card__btn::after {
  content: "→";
  margin-left: 8px;
  font-family: sans-serif;
}/*# sourceMappingURL=style.css.map */