/*
  色を変えたい時は、まずここを変更します。
  --pink: 背景のピンクベージュ
  --blue: 区切りに使う淡い水色
  --ink: 文字と線の色
*/
:root {
  --pink: #f7e9dc;
  --blue: #dcefee;
  --ink: #4d4542;
  --line: #6d6560;
  --white: #fffdf9;
  --green: #22b96f;
  --soft-line: rgba(77, 69, 66, 0.32);
  --wash: rgba(255, 253, 249, 0.42);
  --site-font: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--blue);
  font-family: var(--site-font);
  letter-spacing: 0;
  line-height: 1.85;
}

/* 添付画像で使われている明朝体に、ページ内の書体を統一します */
.page,
.page * {
  font-family: var(--site-font);
}

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

img {
  display: block;
  max-width: 100%;
}

/* ページ全体。PCでも読みやすいように最大幅を決めています */
.page {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 253, 249, 0.2), rgba(255, 253, 249, 0.2)),
    var(--pink);
  box-shadow: 0 18px 42px rgba(77, 69, 66, 0.1);
}

.section {
  position: relative;
  padding: 42px 24px 46px;
  background: var(--pink);
  border-top: 18px solid var(--blue);
}

.section::before {
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 253, 249, 0.72);
  content: "";
}

.section-title,
.band-title {
  margin: 0 0 30px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}

.band-title {
  width: calc(100% + 48px);
  margin: -42px -24px 34px;
  padding: 7px 16px 8px;
  background: var(--blue);
  font-size: 16px;
}

/* ファーストビュー */
.hero {
  /* ステップ1：ファーストビューだけを上品な縦長レイアウトに調整 */
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px 24px 34px;
  background:
    linear-gradient(rgba(255, 253, 249, 0.24), rgba(255, 253, 249, 0.12)),
    var(--pink);
}

.hero__logo {
  /* ステップ1：ロゴ画像に差し替えても収まりやすい白い四角 */
  display: grid;
  place-items: center;
  width: 102px;
  height: 92px;
  margin: 0 auto -2px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(77, 69, 66, 0.055);
}

.hero__logo img {
  width: 82px;
  height: auto;
  max-width: calc(100% - 8px);
  max-height: calc(100% - 8px);
  object-fit: contain;
}

.logo-circle {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px dotted #b9b1ac;
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}

.hero__photo {
  /* ステップ1：トップ写真は後から差し替えても見栄えが保てるアーチ型 */
  width: min(100%, 285px);
  min-height: auto;
  margin: 22px auto 0;
  padding: 7px;
  border-color: rgba(77, 69, 66, 0.36);
  border-radius: 999px 999px 12px 12px;
  background: rgba(255, 253, 249, 0.18);
}

.hero__photo img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: 38% center;
  border-radius: 999px 999px 9px 9px;
}

.hero__text {
  /* ステップ1：文字は中央にまとめ、余白を広めにしています */
  max-width: 326px;
  margin: 0 auto;
  text-align: center;
}

.hero__brand {
  margin: 2px 0 7px;
  font-size: 19px;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.hero__text h1 {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.hero__text p:last-child {
  margin: 12px 0 0;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2;
}

.hero__service-info {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  text-align: center;
}

.hero__service-info h1,
.hero__service-info p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 28px;
}

.hero__service-info h1 {
  font-size: 16px;
  white-space: nowrap;
}

.hero__service-info p,
.hero__text .hero__service-info p {
  font-size: 15px;
}

.hero__text .hero__service-info p:last-child {
  margin: 0;
  line-height: 28px;
}

/* ステップ2：右上に固定される丸型メニューボタンです */
.menu-toggle {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-button {
  position: fixed;
  top: 16px;
  right: max(14px, calc((100vw - 430px) / 2 + 14px));
  z-index: 30;
  display: grid;
  place-items: center;
  align-content: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(77, 69, 66, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 253, 249, 0.86), rgba(255, 253, 249, 0.7)),
    rgba(247, 233, 220, 0.92);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(77, 69, 66, 0.14);
}

.menu-button__lines,
.menu-button__lines::before,
.menu-button__lines::after {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--line);
  content: "";
}

.menu-button__lines {
  position: relative;
  margin-top: 6px;
}

.menu-button__lines::before,
.menu-button__lines::after {
  position: absolute;
  left: 0;
}

.menu-button__lines::before {
  top: -9px;
}

.menu-button__lines::after {
  top: 9px;
}

.menu-button__text {
  margin-top: 14px;
  font-family: var(--site-font);
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: lowercase;
}

/* ステップ2：丸ボタンを押した時だけ開くメニューです */
.page-menu {
  position: fixed;
  top: 108px;
  right: max(14px, calc((100vw - 430px) / 2 + 14px));
  z-index: 25;
  display: grid;
  gap: 7px;
  width: min(232px, calc(100vw - 28px));
  padding: 13px;
  border: 1px solid rgba(77, 69, 66, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 253, 249, 0.9), rgba(255, 253, 249, 0.78)),
    var(--pink);
  box-shadow: 0 14px 30px rgba(77, 69, 66, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.menu-toggle:checked ~ .menu-button .menu-button__lines {
  background: transparent;
}

.menu-toggle:checked ~ .menu-button .menu-button__lines::before {
  top: 0;
  transform: rotate(38deg);
}

.menu-toggle:checked ~ .menu-button .menu-button__lines::after {
  top: 0;
  transform: rotate(-38deg);
}

.menu-toggle:checked ~ .page-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-menu__item {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 40px;
  padding: 8px 26px 8px 14px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background:
    linear-gradient(rgba(255, 253, 249, 0.24), rgba(255, 253, 249, 0.12)),
    rgba(255, 253, 249, 0.16);
  font-size: 13.5px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  box-shadow:
    inset 0 0 0 6px rgba(255, 253, 249, 0.1),
    0 8px 18px rgba(77, 69, 66, 0.035);
}

.page-menu__item span {
  position: relative;
  z-index: 1;
}

/* ステップ2：丸枠の中に控えめな内側の線を足しています */
.page-menu__item::before {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(77, 69, 66, 0.12);
  border-radius: 999px;
  content: "";
}

.page-menu__item::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(77, 69, 66, 0.62);
  border-right: 1px solid rgba(77, 69, 66, 0.62);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.page-menu__item:active {
  transform: translateY(1px);
}

.page-menu__group {
  display: grid;
  gap: 6px;
}

.page-menu__group summary {
  list-style: none;
  cursor: pointer;
}

.page-menu__group summary::-webkit-details-marker {
  display: none;
}

.page-menu__group[open] > summary::after {
  transform: translateY(-50%) rotate(135deg);
}

.page-menu__subitems {
  display: grid;
  gap: 6px;
  padding: 0 10px 2px;
}

.page-menu__subitems a {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid rgba(77, 69, 66, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.38);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
}

/*
  以前の2つだけのリンク用CSSです。
  HTMLからは外しましたが、後で戻したい時のために残しています。
*/
.hero__nav {
  display: grid;
  gap: 9px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.hero__nav a {
  justify-self: center;
  padding: 1px 10px;
}

/* 上が丸い写真枠。画像差し替え後も雰囲気が残ります */
.arch-frame {
  position: relative;
  padding: 7px;
  border: 1px solid var(--soft-line);
  border-radius: 999px 999px 0 0;
}

.arch-frame::before,
.arch-frame::after {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  background: rgba(77, 69, 66, 0.72);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.arch-frame::before {
  left: -5px;
}

.arch-frame::after {
  right: -5px;
}

/* お悩み */
.worries {
  overflow: hidden;
  padding: 0;
}

.worries-image {
  display: block;
  width: 105.3%;
  max-width: none;
  height: auto;
}

/* サービス導線 */
.services {
  padding: 0;
}

.services-image-wrap {
  position: relative;
}

.services-image {
  display: block;
  width: 100%;
  height: auto;
}

.services-image-link {
  position: absolute;
  bottom: 0;
  width: 38%;
  height: 24%;
  border-radius: 999px;
}

.services-image-link--visit {
  left: 9%;
}

.services-image-link--lesson {
  right: 8%;
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 12px;
  border-bottom: 1px solid rgba(77, 69, 66, 0.28);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
}

.text-link--center {
  display: table;
  margin-right: auto;
  margin-left: auto;
}

/* 着物レンタル */
.rental,
.furisode {
  /* ステップ4：写真付きプランカードが見やすいよう余白を少し広げます */
  padding-bottom: 48px;
}

.item-grid {
  display: grid;
  gap: 16px;
}

.item-grid--three {
  /* ステップ4：参考画像のように、3つを同じ大きさで横に並べます */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.item-grid--three .rental-item:last-child {
  grid-column: auto;
  justify-self: auto;
  width: auto;
}

.rental-item,
.plan-card {
  /* ステップ4：画像・プラン名・説明文・リンクをまとめる小さなカード */
  padding: 12px 12px 16px;
  border: 1px solid rgba(77, 69, 66, 0.16);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.18);
  text-align: center;
  box-shadow: 0 10px 20px rgba(77, 69, 66, 0.035);
}

.rental-item h3,
.plan-card h3 {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}

.rental-item p,
.plan-card p {
  margin: 8px 0 0;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  line-height: 1.85;
  text-align: left;
}

.rental-item .text-link,
.plan-card .text-link {
  margin-top: 12px;
}

.rental-item {
  /* ステップ4：着物レンタルは参考画像に近い、写真枠と名前だけの見せ方にします */
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.rental-item h3 {
  margin-top: 10px;
  font-size: 17px;
  letter-spacing: 0.16em;
}

.rental-item p {
  display: none;
}

.rental-item .text-link {
  display: none;
}

.rental-photo-link {
  display: grid;
  justify-items: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.rental-photo-link:focus-visible {
  outline: 2px solid rgba(77, 69, 66, 0.55);
  outline-offset: 5px;
  border-radius: 50% / 44%;
}

.small-photo {
  width: 100%;
  aspect-ratio: 0.68;
  padding: 7px;
  overflow: hidden;
  background-color: var(--white);
  background-position: center;
  background-size: cover;
  border-color: rgba(77, 69, 66, 0.42);
  border-radius: 50% / 44%;
  box-shadow:
    inset 0 0 0 7px rgba(255, 253, 249, 0.42),
    0 0 0 6px rgba(255, 253, 249, 0.16);
}

.small-photo::before,
.small-photo::after {
  width: 7px;
  height: 7px;
  background: rgba(77, 69, 66, 0.74);
}

/* 着物レンタルの写真です。差し替える時は url(...) の画像名を変更します */
.photo-hakama {
  background-image: url("../images/top-rental-hakama.jpg");
  background-position: center 44%;
}

.photo-houmongi {
  background-image: url("../images/top-rental-houmongi.jpg");
  background-position: center 42%;
}

.photo-yukata {
  background-image: url("../images/top-rental-yukata.jpg");
  background-position: center center;
}

/* 成人式振袖 */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 22px;
  width: min(100%, 340px);
  margin: 0 auto;
}

.plan-card h3 {
  margin: 10px 0 0;
  font-size: 11.4px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.65;
  white-space: nowrap;
}

.plan-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.plan-photo {
  aspect-ratio: 1.62;
  border: 0;
  border-radius: 0;
  background-color: var(--white);
  background-position: center;
  background-size: cover;
  box-shadow: none;
}

.plan-photo-link {
  display: block;
  width: 100%;
}

.plan-photo--rental {
  background-image: url("../images/top-furisode-rental.jpg");
  background-position: center center;
}

.plan-photo--ceremony {
  background-image: url("../images/top-furisode-ceremony.jpg");
  background-position: center center;
}

.plan-photo--rental-shoot {
  background-image: url("../images/top-furisode-rental-shoot.jpg");
  background-position: center center;
}

.plan-photo--bring {
  background-image: url("../images/top-furisode-bring.jpg");
  background-position: center center;
}

.furisode-more {
  margin: 28px auto 0;
  padding-bottom: 2px;
}

/* FAQ */
.faq {
  /* ステップ5：質問一覧が読みやすいよう、上下の余白を少し広げます */
  padding-bottom: 50px;
}

.faq .section-title {
  margin-bottom: 28px;
}

.faq-list {
  /* ステップ5：JavaScriptなしのシンプルなFAQ一覧 */
  display: grid;
  gap: 0;
  width: min(100%, 330px);
  margin: 0 auto;
  font-size: 15px;
  border-top: 1px solid rgba(77, 69, 66, 0.16);
}

.faq-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(77, 69, 66, 0.16);
}

.faq-list dt,
.faq-list dd {
  margin: 0;
}

.faq-list dt {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(77, 69, 66, 0.28);
  border-radius: 50%;
  color: rgba(77, 69, 66, 0.74);
  font-size: 13px;
  line-height: 1;
}

.faq-list dd {
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.faq .text-link {
  margin-top: 22px;
  padding-bottom: 2px;
}

/* お問い合わせ */
.contact {
  /* ステップ6：参考画像の配置に合わせ、QRとお問い合わせを横並びにしています */
  padding: 32px 22px 36px;
  font-family: var(--site-font);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  width: min(100%, 360px);
  margin: 0 auto;
}

.qr-box {
  /* ステップ6：QR画像に差し替えてもきれいに収まる白い枠 */
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  padding: 5px;
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--green);
  font-family: var(--site-font);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  box-shadow: none;
  overflow: hidden;
}

.qr-box img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.qr-box--instagram img {
  object-fit: contain;
}

.circle-card--contact {
  /* ステップ6：添付されたお問い合わせアイコンを表示します */
  display: block;
  width: 100%;
  max-width: none;
  min-height: auto;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.circle-card--contact::before {
  content: none;
}

.circle-card--contact img {
  width: 122%;
  max-width: none;
  height: 122%;
  object-fit: cover;
  transform: translate(-9%, -9%);
}

.circle-card--contact:hover {
  transform: none;
}

.contact-note {
  margin: 20px 0 0;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 4px auto 0;
  color: rgba(77, 69, 66, 0.76);
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-align: center;
}

.contact-info::before,
.contact-info::after {
  content: none;
}

/* kimono-Seikaについて */
.about-page {
  padding-bottom: 28px;
}

.about-header {
  position: relative;
  min-height: 152px;
  padding: 104px 24px 24px;
  background: var(--pink);
}

.about-header h1 {
  width: auto;
  margin: 0 auto;
  color: #825137;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  white-space: nowrap;
}

.about-back {
  position: absolute;
  top: 22px;
  left: 24px;
  font-family: var(--site-font);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}

.about-content {
  padding: 0 30px;
}

.about-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
}

.about-message {
  padding: 0;
  border-bottom: 0;
}

.about-message + .about-message {
  padding-top: 0;
}

.about-message h2,
.about-styles__heading h2 {
  display: block;
  margin: 0 auto 24px;
  padding: 7px 8px;
  background: #ead5ca;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: center;
}

.about-message p,
.about-profile p,
.about-styles__heading p,
.about-style p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 2.05;
}

.about-message p {
  width: min(100%, 310px);
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.about-profile {
  position: relative;
  grid-column: 1 / -1;
  width: min(100%, 350px);
  margin: 0 auto;
}

.about-profile img {
  display: block;
  width: 100%;
  height: auto;
}

.about-profile__text {
  position: absolute;
  inset: 12% 11%;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.about-profile__text h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.about-profile__text p {
  margin: 0;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.85;
}

.about-styles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.about-styles__heading {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  text-align: center;
}

.about-styles__heading h2 {
  width: min(100%, 250px);
  margin: 0 auto 12px;
  font-size: 17px;
}

.about-style {
  display: block;
  min-width: 0;
  margin: 0;
  text-align: center;
}

.about-style__photo {
  width: 100%;
  aspect-ratio: 0.82;
  border-radius: 999px 999px 5px 5px;
  background-color: rgba(255, 253, 249, 0.5);
  background-position: center;
  background-size: cover;
}

.about-style__photo--salon {
  background-image: url("../images/about-style-salon.jpg");
  background-position: 46% center;
}

.about-style__photo--visit {
  background-image: url("../images/about-style-visit.jpg");
  background-position: 56% center;
}

.about-style__photo--studio {
  background-image: url("../images/about-style-studio.jpg");
  background-position: center 45%;
}

.about-style h3 {
  margin: 8px 0 7px;
  padding: 4px 2px;
  border: 0;
  border-radius: 999px;
  background: #f3cfc2;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  white-space: nowrap;
}

.about-style p {
  font-size: 10.5px;
  line-height: 1.65;
}

.about-style p span {
  white-space: nowrap;
}

.about-studio-break--pc-only {
  display: none;
}

.about-contact {
  display: block;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  background: #a45d2c;
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
}

/* 出張着付けページ */
.visit-page {
  padding-bottom: 28px;
}

.detail-header {
  position: relative;
  min-height: 84px;
  padding: 0;
  background: var(--pink);
}

.visit-content {
  padding: 0 28px;
}

.visit-content section {
  margin-top: 48px;
}

.visit-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 0 !important;
}

.visit-photo {
  background-color: rgba(255, 253, 249, 0.55);
  background-position: center;
  background-size: cover;
}

.visit-photo--main {
  width: min(100%, 280px);
  margin: 0 auto;
  aspect-ratio: 1;
  border: 7px solid rgba(255, 253, 249, 0.72);
  background-image: url("../images/visit-header.jpg");
  background-position: center;
}

.visit-intro__text h2 {
  display: table;
  margin: 0 auto 10px;
  padding: 2px 12px;
  background: #f3c7c4;
  font-size: 19px;
  font-weight: 500;
}

.visit-intro__text p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.95;
  text-align: center;
}

.visit-intro__pc-break {
  display: none;
}

.visit-area {
  padding: 18px 28px 22px;
  background: var(--white);
  text-align: center;
}

.visit-area h2 {
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 500;
}

.visit-area p {
  margin: 3px 0 12px;
  color: #222;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

.visit-area__nerima,
.visit-area__row div {
  display: grid;
  place-items: center;
  min-height: 64px;
  font-size: 16px;
  font-weight: 500;
}

.visit-area__nerima {
  background: #ffe99d;
  color: #f48732;
}

.visit-area__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.visit-area__musashino {
  background: #b9c6fa;
  color: #243dc2;
}

.visit-area__suginami {
  background: #f3b9df;
  color: #d11675;
}

.visit-area__nakano {
  background: #d9fbbd;
  color: #4a9d28;
}

.visit-price h2,
.visit-hair h2,
.visit-flow h2 {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.visit-price__tax {
  color: #000;
  font-size: 16px;
}

.visit-price h2 {
  position: relative;
  padding-bottom: 12px;
}

.visit-price h2::after,
.visit-hair::before,
.visit-flow::before {
  display: block;
  width: calc(100% - 20px);
  height: 2px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 999px;
  background: #d7b7a3;
  content: "";
}

.visit-price h2::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.visit-hair::before,
.visit-flow::before {
  margin-bottom: 22px;
}

.price-group {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
}

.price-group h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
}

.price-group > .price-list {
  margin-top: 32px;
}

.price-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
}

.price-list dt,
.price-list dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.price-list dd {
  transform: translateX(-1em);
}

.price-list--children {
  width: calc(100% - 84px);
  margin: 42px 0 0 auto;
}

.visit-price__note {
  margin: 38px 0 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.visit-hair h2 {
  text-align: left;
}

.visit-hair__body {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 16px;
  align-items: center;
}

.price-list--hair {
  margin-left: 52px;
}

.visit-hair__note {
  margin: 28px 0 0;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
  white-space: nowrap;
}

.visit-photo--hair {
  aspect-ratio: 0.7;
  border: 5px solid rgba(255, 253, 249, 0.72);
  background-image: url("../images/visit-hair-photo.jpg");
  background-position: center center;
}

.visit-flow__body {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 16px;
  align-items: end;
}

.visit-flow ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visit-flow li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
}

.visit-flow li span {
  font-size: 15px;
  font-weight: 500;
}

.visit-flow li b {
  font-size: 14px;
  font-weight: 500;
}

.visit-photo--flow {
  aspect-ratio: 1.45;
  background-image: url("../images/visit-flow-photo.jpg");
  background-position: center center;
}

.visit-flow > p {
  margin: 28px 0 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* よくある質問ページ */
.faq-page {
  padding-bottom: 28px;
}

.faq-content {
  padding: 0 28px 34px;
}

.faq-hero {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 230px);
  margin: 0 auto 44px;
}

.faq-hero img {
  width: 100%;
  height: auto;
}

/* 元の円・葉の装飾を保ったまま「Q&A」だけを「FAQ」へ置き換えます */
.faq-hero__faq-label {
  position: absolute;
  top: 62%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 30%;
  min-height: 12%;
  padding: 0 2px;
  color: #4d4542;
  background: #f9ede2;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.faq-detail-list {
  display: grid;
  gap: 16px;
}

.faq-detail-item summary {
  position: relative;
  display: block;
  margin: 0;
  padding: 0 32px 8px 0;
  border-bottom: 1px solid rgba(77, 69, 66, 0.5);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.8;
  cursor: pointer;
  line-break: strict;
  list-style: none;
  overflow-wrap: break-word;
  text-wrap: pretty;
  word-break: normal;
}

.faq-detail-item summary::-webkit-details-marker {
  display: none;
}

/* 2行目以降が「Q.」の真下に入らないように揃えます */
.faq-detail-item summary > span {
  display: block;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.faq-detail-item summary::after {
  position: absolute;
  right: 7px;
  bottom: 9px;
  content: "⌄";
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.faq-detail-item[open] summary::after {
  content: "⌃";
}

.faq-answer {
  padding: 12px 0 0 18px;
}

.faq-answer p,
.faq-answer li {
  margin: 0;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-break: strict;
  line-height: 1.9;
  overflow-wrap: break-word;
  text-wrap: pretty;
  word-break: normal;
}

.faq-answer p + p {
  margin-top: 0;
}

/* 回答本文を「A.」の後ろと同じ位置に揃えます */
.faq-answer > p {
  padding-left: 1.5em;
}

.faq-answer > p:first-child {
  text-indent: -1.5em;
}

.faq-answer > .faq-answer__heading {
  font-weight: 600;
}

.faq-nowrap {
  white-space: nowrap;
}

.faq-nowrap--compact {
  font-size: inherit;
  letter-spacing: -0.04em;
}

.faq-pc-break {
  display: none;
}

.faq-answer ol {
  display: grid;
  gap: 3px;
  margin: 8px 0 0;
  padding-left: 1.3em;
}

.faq-contact-mini {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  align-items: center;
  width: min(100%, 320px);
  margin: 14px auto 0;
}

.faq-mini-qr-list {
  display: grid;
  grid-template-columns: repeat(2, 62px);
  gap: 8px;
}

.faq-mini-qr {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 4px;
  box-sizing: border-box;
  background: var(--white);
  overflow: hidden;
}

.faq-qr-thumb {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.faq-mini-qr img,
.faq-qr-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-contact-mini a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
  white-space: nowrap;
}

.faq-closing {
  margin: 42px 0 18px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.9;
  text-align: center;
  white-space: nowrap;
}

/* 成人式振袖ページ */
.furisode-page {
  padding-bottom: 28px;
}

.furisode-content {
  padding: 0 28px 34px;
}

.furisode-content section {
  position: relative;
  margin-top: 50px;
}

.furisode-intro {
  margin-top: 0 !important;
  padding: 0 12px;
  text-align: center;
}

.furisode-intro h1 {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* 成人式・振袖タイトル右側の桜飾り */
.title-decoration--furisode {
  left: calc(100% + 7px);
  width: 44px;
}

.furisode-intro p,
.furisode-rental-detail p,
.furisode-plan p,
.furisode-set-plan p,
.furisode-flow p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2;
  text-align: center;
}

.furisode-intro__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  gap: 12px;
  align-items: center;
}

.furisode-intro__photo {
  grid-column: 2;
  grid-row: 1;
  width: 76px;
  aspect-ratio: 0.78;
  border: 5px solid rgba(255, 253, 249, 0.74);
  object-fit: cover;
  object-position: center;
  transform: translateX(12px);
}

.furisode-intro__body p {
  grid-column: 1;
  grid-row: 1;
}

/* 「当日のお支度まで」を上の行へつなぎ、中央揃えで表示します */
.furisode-intro__support-line {
  position: relative;
  left: 50%;
  display: block;
  width: max-content;
  white-space: nowrap;
  transform: translateX(-50%);
}

.furisode-rental-detail h2 {
  display: table;
  margin: 0 auto 18px;
  padding: 4px 24px;
  border-radius: 999px;
  background: #f3c7c4;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.furisode-rental-price {
  margin-top: 24px !important;
  font-size: 14px !important;
}

.furisode-rental-set {
  margin-top: 8px !important;
  font-size: 13.5px !important;
}

.furisode-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 32px;
  width: min(100%, 310px);
  margin: 34px auto 0;
}

.furisode-kimono {
  position: relative;
  display: block;
  aspect-ratio: 0.62;
  border: 7px solid var(--white);
  background-color: var(--white);
  background-position: center;
  background-size: cover;
  box-shadow: 0 3px 8px rgba(77, 69, 66, 0.08);
}

.furisode-kimono::before {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 14px;
  height: 8px;
  border-radius: 999px;
  background: rgba(77, 69, 66, 0.16);
  content: "";
}

.furisode-kimono::after {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  height: 12px;
  background: rgba(255, 253, 249, 0.78);
  content: "";
}

.furisode-kimono--image {
  overflow: hidden;
  background: var(--white);
}

.furisode-kimono--image::before,
.furisode-kimono--image::after {
  display: none;
}

.furisode-kimono--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  /* 番号・サイズ表記を残し、写真の外側の余白だけを表示上で切り取ります */
  transform: scale(1.38);
}

.furisode-kimono--01 {
  background-image: linear-gradient(145deg, #fff8f3, #d9b9b0 45%, #a9877a);
}

.furisode-kimono--02 {
  background-image: linear-gradient(145deg, #fff6f0, #e7b7bd 42%, #b8565b);
}

.furisode-kimono--03 {
  background-image: linear-gradient(145deg, #fffdf4, #d6e7df 42%, #709db4);
}

.furisode-kimono--04 {
  background-image: linear-gradient(145deg, #fff8f4, #cde5d5 42%, #d66f73);
}

.furisode-kimono--05 {
  background-image: linear-gradient(145deg, #fff7f1, #d9c1bd 42%, #99847e);
}

.furisode-kimono--06 {
  background-image: linear-gradient(145deg, #fff3e9, #d79a70 42%, #b64f37);
}

.kimono-lightbox-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.kimono-lightbox-thumb {
  display: block;
  cursor: pointer;
}

.kimono-lightbox-thumb .furisode-kimono,
.kimono-lightbox-thumb .hakama-photo {
  display: block;
}

/* 成人式・振袖の一覧写真だけ、下側のサイズ表記まで見える切り抜き量にします */
.kimono-lightbox-thumb .furisode-kimono--image img {
  transform: scale(1.22);
}

.kimono-lightbox {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(77, 69, 66, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  cursor: pointer;
}

.kimono-lightbox .furisode-kimono,
.kimono-lightbox .hakama-photo {
  width: min(72vw, 280px);
  max-height: 78vh;
  border-width: 10px;
  box-shadow: 0 18px 46px rgba(77, 69, 66, 0.28);
  cursor: default;
}

/* 拡大表示では、番号と下側のサイズ表記が切れないよう切り取り量を弱めます */
.kimono-lightbox .furisode-kimono--image img {
  transform: scale(1.18);
}

.kimono-lightbox-toggle:checked ~ .kimono-lightbox {
  opacity: 1;
  pointer-events: auto;
}

.furisode-plan,
.furisode-set-plan,
.furisode-bring-plan {
  width: min(100%, 340px);
  margin-right: auto;
  margin-left: auto;
  padding: 18px 18px 20px;
  border: 2px solid rgba(91, 72, 65, 0.72);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.1);
  box-shadow:
    inset 0 0 0 4px rgba(247, 235, 224, 0.9),
    inset 0 0 0 5px rgba(91, 72, 65, 0.52),
    0 2px 7px rgba(77, 69, 66, 0.1);
  text-align: center;
}

.furisode-plan {
  min-height: 226px;
}

.furisode-plan h2,
.furisode-set-plan h2,
.furisode-bring-plan h2,
.furisode-flow h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: center;
}

.furisode-price {
  margin-bottom: 8px !important;
  font-size: 14px !important;
}

.furisode-plan ul,
.furisode-set-plan ul,
.furisode-bring-plan ul {
  display: inline-grid;
  gap: 5px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.furisode-plan li,
.furisode-set-plan li,
.furisode-bring-plan li {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.furisode-plan li::before,
.furisode-set-plan li::before,
.furisode-bring-plan li::before {
  content: "・";
}

.furisode-note {
  margin-top: 10px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.furisode-flow-note {
  margin-top: 24px !important;
}

.furisode-return-text {
  margin-top: 22px !important;
  font-size: 12.5px !important;
  line-height: 1.9 !important;
}

.furisode-plan-small-note {
  margin-top: 12px !important;
  font-size: 11.5px !important;
  line-height: 1.8 !important;
}

.furisode-plan-photo {
  position: absolute;
  right: 12px;
  z-index: 1;
  display: block;
  width: 66px;
  height: 78px;
  border: 5px solid rgba(255, 253, 249, 0.76);
  object-fit: cover;
  pointer-events: none;
}

.furisode-plan-photo--day {
  top: 112px;
}

.furisode-plan-photo--shoot {
  right: 14px;
  top: 126px;
  bottom: auto;
  height: 92px;
  object-position: center;
}

.furisode-plan--shoot {
  min-height: 286px;
  padding-bottom: 54px;
}

.furisode-plan--shoot .furisode-plan-small-note {
  position: absolute;
  right: 14px;
  bottom: 16px;
  left: 14px;
  z-index: 2;
  margin: 0 !important;
}

.furisode-flow ol {
  display: grid;
  gap: 7px;
  width: min(100%, 310px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.furisode-flow li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: start;
  text-align: left;
}

.furisode-flow li span,
.furisode-flow li b {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.furisode-flow--wide ol {
  width: min(100%, 350px);
}

.furisode-set-plan__body {
  display: block;
  margin-top: 18px;
}

.furisode-bring-plan {
  position: relative;
  min-height: 276px;
  padding-right: 18px;
  padding-bottom: 54px;
  text-align: center;
}

.furisode-bring-plan h2,
.furisode-bring-plan p {
  text-align: center;
}

.furisode-bring-plan ul {
  margin-right: auto;
  margin-left: auto;
}

.furisode-bring-plan__text {
  position: static;
  z-index: 2;
}

.furisode-bring-plan__text h2,
.furisode-bring-plan__text .furisode-price {
  position: relative;
  left: -14px;
}

.furisode-bring-plan__text ul {
  position: relative;
  left: -30px;
}

.furisode-bring-photo {
  position: absolute;
  top: 92px;
  right: 12px;
  z-index: 1;
  width: 110px;
  height: 132px;
  border: 5px solid rgba(255, 253, 249, 0.82);
  border-radius: 50%;
  object-fit: cover;
  object-position: 48% center;
  pointer-events: none;
}

.furisode-bring-plan .furisode-note {
  position: absolute;
  right: 14px;
  bottom: 18px;
  left: 14px;
  margin: 0 !important;
  text-align: center;
}

.furisode-bring-flow {
  display: block;
}

.furisode-return-note {
  width: min(100%, 360px);
  margin: 22px auto 0;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}

.furisode-bottom-note {
  margin: 14px 0 18px;
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

/* PC版の「ご利用の流れ」枠内でだけ使う補足文 */
.furisode-flow-note--pc {
  display: none;
}

/* 卒業袴ページ */
.hakama-page {
  padding-bottom: 28px;
}

.hakama-content {
  display: flex;
  flex-direction: column;
  padding: 0 28px 34px;
}

.hakama-intro {
  order: 1;
  text-align: center;
}

.hakama-intro h1 {
  position: relative;
  display: inline-block;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.hakama-intro p,
.hakama-plan p,
.hakama-plan li {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2;
  text-align: center;
}

.title-decoration {
  position: absolute;
  top: 50%;
  left: calc(100% + 8px);
  display: block;
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
}

.title-decoration--hakama {
  width: 72px;
  left: calc(100% + 4px);
}

.title-decoration--houmongi {
  width: 40px;
}

.hakama-gallery {
  order: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 34px;
  width: min(100%, 292px);
  margin: 32px auto 30px;
}

.hakama-gallery article {
  position: relative;
}

.hakama-photo {
  position: relative;
  display: block;
  aspect-ratio: 0.62;
  border: 8px solid var(--white);
  background-color: var(--white);
  background-position: center;
  background-size: cover;
  box-shadow: 0 5px 14px rgba(77, 69, 66, 0.08);
}

.hakama-photo::before {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 15px;
  height: 9px;
  border-radius: 999px;
  background: rgba(77, 69, 66, 0.14);
  content: "";
}

.hakama-photo::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  height: 13px;
  background: rgba(255, 253, 249, 0.8);
  content: "";
}

.hakama-photo--image {
  overflow: hidden;
  background: var(--white);
}

.hakama-photo--image::before,
.hakama-photo--image::after {
  display: none;
}

.hakama-photo--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 浴衣ページのみ：番号と写真全体が見切れないように、画像を枠内に収めます */
.yukata-gallery {
  gap: 40px 24px;
  width: min(100%, 340px);
}

.yukata-gallery .hakama-photo--image img {
  object-fit: contain;
}

/* スマホ表示：卒業袴・訪問着の写真内の番号や文字が見切れないようにします */
@media (max-width: 430px) {
  .hakama-gallery .hakama-photo--image img,
  .houmongi-gallery .hakama-photo--image img {
    object-fit: contain;
  }
}

.hakama-photo--01,
.hakama-photo--07,
.hakama-photo--13 {
  background-image: linear-gradient(145deg, #fff8f3, #d8bdb5 46%, #a48176);
}

.hakama-photo--02,
.hakama-photo--08,
.hakama-photo--14 {
  background-image: linear-gradient(145deg, #fff6f0, #e8b6c2 44%, #bd6870);
}

.hakama-photo--03,
.hakama-photo--09,
.hakama-photo--15 {
  background-image: linear-gradient(145deg, #fffdf4, #d6e9df 44%, #73a6bd);
}

.hakama-photo--04,
.hakama-photo--10,
.hakama-photo--16 {
  background-image: linear-gradient(145deg, #fff8f4, #cfe8d8 44%, #d77775);
}

.hakama-photo--05,
.hakama-photo--11,
.hakama-photo--17 {
  background-image: linear-gradient(145deg, #fff7f1, #dbc5c0 44%, #98837d);
}

.hakama-photo--06,
.hakama-photo--12,
.hakama-photo--18 {
  background-image: linear-gradient(145deg, #fff3e9, #de9d71 44%, #b95038);
}

.kimono-lightbox .hakama-photo {
  width: min(74vw, 300px);
}

.hakama-plan {
  order: 2;
  width: min(100%, 340px);
  margin: 54px auto 0;
  padding: 16px 16px 18px;
  border: 2px solid rgba(91, 72, 65, 0.72);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.1);
  box-shadow:
    inset 0 0 0 4px rgba(247, 235, 224, 0.9),
    inset 0 0 0 5px rgba(91, 72, 65, 0.52),
    0 2px 7px rgba(77, 69, 66, 0.1);
  text-align: center;
}

.hakama-plan h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: center;
}

.hakama-price {
  margin-bottom: 16px !important;
  font-size: 15px !important;
  white-space: nowrap;
}

.hakama-plan ul {
  display: inline-grid;
  gap: 5px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.hakama-plan li {
  text-align: left;
}

.hakama-plan li::before {
  content: "・";
}

.hakama-note {
  margin-top: 22px !important;
  font-size: 12.5px !important;
}

.hakama-catalog-intro {
  order: 3;
  margin-top: 38px;
  text-align: center;
}

.hakama-catalog-intro h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 26px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.hakama-catalog-intro h2 img {
  position: absolute;
  top: 50%;
  right: calc(100% + 7px);
  width: 48px;
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
}

.hakama-catalog-intro p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2;
  text-align: center;
}

.hakama-catalog-intro p + p {
  margin-top: 18px;
}

.hakama-content > .hakama-gallery {
  order: 4;
  margin-top: 30px;
}

.hakama-flow {
  order: 5;
  margin-top: 0;
  text-align: center;
}

.hakama-flow h2 {
  margin: 0 0 22px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.7;
}

.hakama-flow ol {
  display: grid;
  gap: 13px;
  width: min(100%, 330px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.hakama-flow li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: start;
}

.hakama-flow li span,
.hakama-flow li b {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.hakama-flow > p {
  margin: 22px auto 0;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}

.hakama-content > .about-contact {
  order: 6;
}

/* 訪問着ページ */
.houmongi-page {
  padding-bottom: 28px;
}

.houmongi-intro,
.houmongi-plan {
  position: relative;
}

.houmongi-butterflies {
  position: absolute;
  z-index: 0;
  display: block;
  width: 112px;
  height: auto;
  pointer-events: none;
}

.houmongi-intro p,
.houmongi-plan h2,
.houmongi-plan p,
.houmongi-plan ul {
  position: relative;
  z-index: 1;
}

.houmongi-butterflies--intro {
  right: 6px;
  bottom: -24px;
}

.houmongi-butterflies--plan {
  right: 4px;
  bottom: 34px;
  width: 136px;
}

.hakama-catalog-intro h2 .houmongi-catalog-flower {
  right: calc(100% + 9px);
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.houmongi-photo--01,
.houmongi-photo--07,
.houmongi-photo--13 {
  background-image: linear-gradient(145deg, #fff8f3, #d8bdb5 46%, #a48176);
}

.houmongi-photo--02,
.houmongi-photo--08,
.houmongi-photo--14 {
  background-image: linear-gradient(145deg, #fff6f0, #e8b6c2 44%, #bd6870);
}

.houmongi-photo--03,
.houmongi-photo--09,
.houmongi-photo--15 {
  background-image: linear-gradient(145deg, #fffdf4, #d6e9df 44%, #73a6bd);
}

.houmongi-photo--04,
.houmongi-photo--10,
.houmongi-photo--16 {
  background-image: linear-gradient(145deg, #fff8f4, #cfe8d8 44%, #d77775);
}

.houmongi-photo--05,
.houmongi-photo--11,
.houmongi-photo--17 {
  background-image: linear-gradient(145deg, #fff7f1, #dbc5c0 44%, #98837d);
}

.houmongi-photo--06,
.houmongi-photo--12,
.houmongi-photo--18 {
  background-image: linear-gradient(145deg, #fff3e9, #de9d71 44%, #b95038);
}

/* 浴衣ページ */
.yukata-page {
  padding-bottom: 28px;
}

.yukata-intro,
.yukata-plan {
  position: relative;
}

/* 浴衣ページの表示順：案内 → 料金プラン → カタログ案内 → 写真18枚 → ご利用の流れ */
.yukata-catalog-intro {
  order: 4;
  margin-top: 38px;
}

.hakama-catalog-intro h2 .yukata-catalog-water-balloons {
  right: calc(100% + 8px);
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.yukata-content > .yukata-gallery {
  order: 5;
  margin-top: 30px;
}

.yukata-plan {
  order: 2;
}

.yukata-plan--full {
  order: 3;
}

.yukata-flow {
  order: 6;
  margin-top: 48px;
}

.yukata-content > .about-contact {
  order: 7;
}

.yukata-gallery-note {
  order: 4;
  width: calc(100% + 32px);
  margin: 0 -16px 30px;
}

.yukata-gallery-note p {
  margin: 0;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.7;
  text-align: left;
  white-space: nowrap;
}

.yukata-gallery-note p + p {
  margin-top: 2px;
}

.yukata-intro__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 10px;
  align-items: center;
  text-align: left;
}

.hakama-intro .yukata-intro__lead {
  margin: 0 0 8px;
  text-align: left;
}

.yukata-intro__lead span {
  display: block;
  white-space: nowrap;
}

.yukata-intro__text p {
  text-align: left;
}

.yukata-intro__text h2 {
  margin: 10px 0 3px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.yukata-intro__text ul {
  width: max-content;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.yukata-intro__text li {
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
}

.yukata-intro__text li::before {
  content: "・";
}

.yukata-intro__photo {
  width: 100px;
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: center;
}

.title-decoration--yukata {
  left: auto;
  right: calc(100% + 6px);
  width: 34px;
}

.yukata-photo--01,
.yukata-photo--07,
.yukata-photo--13 {
  background-image: linear-gradient(145deg, #fff8f3, #d9c9ee 45%, #8d73b6);
}

.yukata-photo--02,
.yukata-photo--08,
.yukata-photo--14 {
  background-image: linear-gradient(145deg, #fff9ef, #cce6ed 44%, #6ba1b2);
}

.yukata-photo--03,
.yukata-photo--09,
.yukata-photo--15 {
  background-image: linear-gradient(145deg, #fffdf3, #f3d4ba 44%, #d28756);
}

.yukata-photo--04,
.yukata-photo--10,
.yukata-photo--16 {
  background-image: linear-gradient(145deg, #fff7f1, #d7e4c6 44%, #83a269);
}

.yukata-photo--05,
.yukata-photo--11,
.yukata-photo--17 {
  background-image: linear-gradient(145deg, #fff8f6, #dfc5d1 44%, #a36e90);
}

.yukata-photo--06,
.yukata-photo--12,
.yukata-photo--18 {
  background-image: linear-gradient(145deg, #fff9ef, #e8d7b6 44%, #c39a4d);
}

.yukata-campaign {
  margin-bottom: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.yukata-plan__campaign-title {
  position: relative;
  z-index: 2;
  font-size: 14px !important;
  white-space: nowrap;
}

.yukata-plan .yukata-plan__free {
  color: #c55c52;
}

.yukata-plan__price {
  margin-top: 18px !important;
}

.yukata-plan {
  margin-top: 38px;
}

.yukata-plan + .yukata-plan {
  margin-top: 54px;
}

/* 浴衣着付け料無料キャンペーンの案内枠 */
.yukata-plan--campaign-message {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
}

.hakama-plan .yukata-plan__campaign-message {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #bf5148;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 2.2;
  text-align: center;
}

.yukata-plan__campaign-message span {
  display: block;
  white-space: nowrap;
}

.yukata-plan__campaign-pc-break {
  display: none;
}

.yukata-decoration {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
}

.yukata-decoration--left {
  top: 8px;
  left: 8px;
  width: 142px;
}

.yukata-decoration--right {
  right: 8px;
  bottom: 12px;
  width: 118px;
}

.yukata-plan--full {
  min-height: 260px;
  padding: 14px 16px 42px;
  text-align: center;
}

.yukata-plan--full .yukata-fullset-title {
  position: relative;
  z-index: 2;
  margin: 0 0 4px;
  font-size: 16px;
  text-align: center;
}

.yukata-fullset-content {
  position: relative;
  z-index: 2;
  width: 170px;
  margin: 0 auto;
  text-align: center;
}

.hakama-plan .yukata-fullset-price {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.4;
  white-space: nowrap;
}

.yukata-fullset-content h2 {
  margin-bottom: 3px;
  font-size: 13.5px;
  line-height: 1.5;
}

.yukata-fullset-content ul {
  gap: 0;
  line-height: 1.45;
}

.yukata-full-illustration {
  position: absolute;
  bottom: 5px;
  left: -42px;
  z-index: 1;
  width: 188px;
  height: auto;
  pointer-events: none;
}

.yukata-decoration--full-left {
  display: none;
}

.yukata-decoration--full-right {
  right: 8px;
  bottom: 2px;
  z-index: 0;
  width: 110px;
}

.yukata-plan--full h2,
.yukata-plan--full p,
.yukata-plan--full ul {
  position: relative;
  z-index: 2;
  color: inherit;
  font-family: inherit;
}

.hakama-flow .yukata-flow__note {
  display: block;
  text-align: center;
}

.yukata-flow__note span {
  display: none;
}

.hakama-flow .yukata-flow__note b {
  display: block;
  font-size: 12.5px;
  line-height: 1.9;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 374px) {
  .yukata-intro__body {
    grid-template-columns: minmax(0, 1fr) 90px;
    gap: 8px;
  }

  .yukata-intro__photo {
    width: 90px;
  }

  .yukata-full-illustration {
    left: -46px;
    width: 178px;
  }
}

/* お問い合わせページ */
.contact-page {
  padding-bottom: 34px;
}

.contact-page-content {
  padding: 0 28px 34px;
}

.contact-lead {
  margin-top: 0;
}

.contact-lead h1 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
}

.contact-lead p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2;
}

.contact-lead p + p {
  margin-top: 24px;
}

.contact-pc-break {
  display: none;
}

.contact-sns {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin: 18px 0 22px;
}

/*
  お問い合わせフォームページのPC表示だけを横長レイアウトにします。
  文章・QRコード・入力項目・送信方法はスマホ版と共通です。
*/
@media (min-width: 900px) {
  body.contact-page-body {
    padding: 0;
  }

  .contact-page {
    width: min(100%, 1440px);
    padding-bottom: 52px;
  }

  .contact-page .detail-header {
    min-height: 84px;
  }

  .contact-page .about-back {
    top: 26px;
    left: max(42px, calc((100% - 1200px) / 2));
    font-size: 42px;
  }

  .contact-page .menu-button {
    display: none;
  }

  .contact-page .page-menu {
    position: absolute;
    top: 24px;
    right: auto;
    left: 50%;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 72px);
    max-width: 1320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .contact-page .page-menu__item {
    min-height: 38px;
    padding: 6px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }

  .contact-page .page-menu__item::before,
  .contact-page .page-menu__item::after {
    content: none;
  }

  .contact-page .page-menu__group {
    position: relative;
    display: block;
  }

  .contact-page .page-menu__subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 180px;
    padding: 10px;
    border: 1px solid rgba(77, 69, 66, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 10px 24px rgba(77, 69, 66, 0.1);
    transform: translateX(-50%);
  }

  .contact-page .contact-page-content {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 56px;
    width: min(100%, 1260px);
    margin: 0 auto;
    padding: 42px 58px 48px;
    border: 1px solid rgba(77, 69, 66, 0.12);
    border-radius: 20px;
    background: rgba(255, 253, 249, 0.26);
  }

  .contact-page .contact-lead {
    padding: 18px 12px;
  }

  .contact-page .contact-lead h1 {
    margin-bottom: 30px;
    font-size: 26px;
  }

  .contact-page .contact-lead p {
    font-size: 14px;
    line-height: 2;
  }

  .contact-page .contact-pc-break {
    display: block;
  }

  .contact-page .contact-sns {
    gap: 28px;
    margin-top: 34px;
  }

  .contact-page .contact-sns__item {
    width: 125px;
  }

  .contact-page .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
    padding: 30px 34px;
  }

  .contact-page .contact-page-content > .wpcf7 {
    min-width: 0;
  }

  .contact-page .contact-form fieldset,
  .contact-page .contact-field--wide,
  .contact-page .contact-form__note,
  .contact-page .contact-submit,
  .contact-page .wpcf7-response-output {
    grid-column: 1 / -1;
  }

  .contact-page .contact-form fieldset {
    min-width: 0;
    writing-mode: horizontal-tb;
  }

  .contact-page .contact-form legend,
  .contact-page .contact-form fieldset label {
    width: auto;
    writing-mode: horizontal-tb;
    white-space: normal;
  }

  .contact-page .contact-form legend {
    width: 100%;
    white-space: nowrap;
  }

  .contact-page .contact-form fieldset:first-child {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 22px;
  }

  .contact-page .contact-form fieldset:first-child legend {
    grid-column: 1 / -1;
  }

  .contact-page .contact-field textarea {
    min-height: 180px;
  }

  .contact-page .contact-form__note {
    font-size: 11.5px;
  }
}

.contact-sns__item {
  display: grid;
  place-items: center;
  width: 82px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-sns__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 22px 20px 24px;
  border: 1px solid rgba(77, 69, 66, 0.16);
  background: rgba(255, 253, 249, 0.42);
}

.contact-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend,
.contact-field > span {
  display: block;
  margin: 0 0 7px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-submit {
  font-family: var(--site-font);
}

.contact-form fieldset label {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  min-width: 0;
}

.contact-form fieldset .wpcf7-form-control {
  display: grid;
  gap: 8px;
}

.contact-form .wpcf7-list-item {
  display: block;
  margin: 0;
}

.contact-form .wpcf7-list-item label {
  display: flex;
  gap: 7px;
  align-items: center;
}

.contact-form input[type="checkbox"],
.contact-form input[type="radio"] {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--ink);
}

.contact-field {
  display: block;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(77, 69, 66, 0.2);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
}

.contact-field input[type="date"] {
  max-width: 100%;
  min-width: 0;
  appearance: auto;
}

.contact-field input,
.contact-field select {
  min-height: 38px;
  padding: 6px 8px;
}

.contact-field textarea {
  min-height: 220px;
  padding: 8px;
  resize: vertical;
}

.contact-date {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.contact-date + .contact-date {
  margin-top: 8px;
}

.contact-date span {
  font-size: 13px;
  font-weight: 500;
}

.contact-form__note {
  margin: 2px 0 0;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.8;
}

.contact-submit {
  display: block;
  width: min(100%, 230px);
  min-height: 48px;
  margin: 4px auto 0;
  border: 0;
  background: #111;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.contact-form .wpcf7-spinner {
  grid-column: 1 / -1;
  margin: 0 auto;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
}

.contact-form .wpcf7-response-output {
  margin: 0;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.7;
}

.contact-form-setup-note {
  align-self: start;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(77, 69, 66, 0.16);
  background: rgba(255, 253, 249, 0.42);
  font-size: 13px;
  line-height: 1.8;
}

/* キャンセルポリシーページ */
.policy-page {
  padding-bottom: 28px;
}

.policy-content {
  padding: 0 28px 34px;
}

.policy-section {
  text-align: center;
}

.policy-section + .policy-section {
  margin-top: 54px;
}

.policy-section h1,
.policy-section h2 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.policy-section h2 {
  font-size: 16px;
}

.policy-section p,
.policy-section li {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 2;
}

.policy-section p + p {
  margin-top: 18px;
}

.policy-fee-list {
  display: inline-grid;
  gap: 9px;
  margin: 28px auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.policy-fee-list li::before {
  content: "・";
}

.policy-note {
  margin-top: 2px !important;
}

.policy-section--damage {
  position: relative;
}

.policy-fee-list--damage {
  margin: 0;
}

.policy-damage-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: end;
  width: min(100%, 300px);
  margin: 24px auto 20px;
}

.policy-damage-layout .policy-fee-list {
  justify-self: center;
  text-align: left;
}

.policy-bow {
  justify-self: end;
  width: 34px;
  height: auto;
}

.policy-section--late-fee p {
  font-size: 13.5px;
  letter-spacing: 0.01em;
  line-height: 2;
}

/* 着付け教室ページ */
.lesson-page {
  padding-bottom: 28px;
}

.lesson-content {
  padding: 0 34px;
}

.lesson-content section {
  margin-top: 58px;
}

.lesson-intro {
  display: block;
  width: min(100%, 260px);
  margin-right: auto;
  margin-left: auto;
  margin-top: 0 !important;
  text-align: center;
}

.lesson-intro__text h1 {
  display: table;
  margin: 0 auto 12px;
  padding: 4px 9px;
  border-radius: 14px;
  background: #f3c7c4;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.lesson-intro__text p,
.lesson-rental p,
.lesson-course p,
.lesson-course li {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

.lesson-photo {
  background-color: rgba(255, 253, 249, 0.5);
  background-position: center;
  background-size: cover;
}

.lesson-photo--intro {
  display: none;
  aspect-ratio: 0.68;
  border-radius: 999px 999px 0 0;
  background-image: linear-gradient(135deg, #f5eee5, #bdd6cd 48%, #ac887d);
}

.lesson-rental h2 {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.lesson-rental__body {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 18px;
  align-items: center;
}

.lesson-photo--rental {
  aspect-ratio: 0.78;
  border-radius: 999px 999px 0 0;
  background-image: url("../images/lesson-rental-photo.jpg");
  background-position: center center;
  transform: translateX(8px);
}

.lesson-course {
  display: block;
  width: min(calc(100% + 12px), 340px);
  margin-right: auto;
  margin-left: auto;
  padding: 18px 18px 20px;
  border: 2px solid rgba(91, 72, 65, 0.72);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.18);
  box-shadow:
    inset 0 0 0 4px rgba(247, 235, 224, 0.9),
    inset 0 0 0 5px rgba(91, 72, 65, 0.52),
    0 2px 7px rgba(77, 69, 66, 0.1);
}

.lesson-course__text {
  min-width: 0;
  text-align: center;
}

.lesson-course h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.lesson-course h3 {
  margin: 6px 0 10px;
  font-size: 14px;
}

.lesson-course .lesson-recommend {
  margin-top: 10px;
}

.lesson-course ul {
  display: grid;
  gap: 2px;
  width: fit-content;
  margin: 8px auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.lesson-course li {
  padding-left: 1em;
  text-indent: -1em;
}

.lesson-course li::before {
  margin-right: 3px;
  content: "✓";
}

.lesson-photo--trial,
.lesson-photo--problem,
.lesson-photo--three,
.lesson-photo--professional {
  display: none;
}

.lesson-photo--trial {
  background-image: linear-gradient(135deg, #eee9db, #cdbb9f 55%, #927863);
}

.lesson-photo--problem {
  background-image: linear-gradient(135deg, #f0e6db, #c4d8ca 48%, #9e7b70);
}

.lesson-photo--three {
  background-image: linear-gradient(135deg, #ead5d0, #b2a58e 48%, #714c36);
}

.lesson-photo--professional {
  background-image: linear-gradient(135deg, #eee4d6, #c8b196 48%, #8a6d58);
}

.lesson-photo.lesson-photo--custom {
  display: block;
  width: 100%;
  min-height: 180px;
  border-radius: 999px 999px 0 0;
}

.lesson-course--details {
  display: block;
}

.lesson-course-box {
  display: none;
}

.lesson-course-box h3 {
  margin-top: 0;
}

.lesson-course-box p {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.65;
}

.lesson-course-box strong {
  font-size: 12px;
}

.lesson-course-box small {
  font-size: 10px;
}

.lesson-flow h2 {
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.lesson-flow__body {
  display: grid;
  grid-template-columns: 1fr 78px;
  gap: 14px;
  align-items: end;
}

.lesson-flow ol {
  display: grid;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lesson-flow li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 10px;
}

.lesson-flow li span,
.lesson-flow li b {
  font-size: 14px;
  font-weight: 500;
}

.lesson-photo--flow {
  aspect-ratio: 1;
  background-image: url("../images/lesson-flow-photo.jpg");
  background-position: center center;
}

.lesson-flow__contact-note {
  margin: 22px 0 0;
  font-size: 14px;
  text-align: center;
}

.lesson-contact {
  margin-top: 14px !important;
  text-align: center;
}

.lesson-contact > p {
  margin: 0 0 14px;
  font-size: 14px;
}

.lesson-contact .about-contact {
  margin-top: 0;
}

/* とても狭いスマホでも文字が詰まりすぎないように調整します */
@media (max-width: 374px) {
  .hero {
    padding-inline: 18px;
    gap: 14px;
  }

  .hero__logo {
    width: 90px;
    height: 78px;
  }

  .hero__photo {
    width: min(100%, 260px);
  }

  .hero__photo img {
    height: 245px;
  }

  .hero__text h1 {
    font-size: 20px;
  }

  .hero__service-info h1 {
    font-size: 13px;
  }

  .hero__service-info p,
  .hero__text .hero__service-info p {
    font-size: 15px;
  }

  .menu-button {
    top: 12px;
    right: 12px;
    width: 82px;
    height: 82px;
  }

  .menu-button__lines,
  .menu-button__lines::before,
  .menu-button__lines::after {
    width: 31px;
  }

  .page-menu {
    top: 102px;
    right: 12px;
    width: min(224px, calc(100vw - 24px));
    padding: 12px;
  }

  .page-menu__item {
    min-height: 39px;
    font-size: 13px;
  }

  .page-menu__item::after {
    right: 14px;
  }

  .circle-card--contact {
    width: 100%;
    min-height: auto;
  }

  .item-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .rental-item,
  .item-grid--three .rental-item:last-child {
    grid-column: auto;
    width: auto;
  }

  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
    width: 100%;
  }

  .plan-card {
    width: auto;
  }

  .plan-card h3 {
    font-size: 11.4px;
  }

  .furisode-more {
    font-size: 13px;
  }

  .about-header {
    min-height: 146px;
    padding: 102px 18px 22px;
  }

  .about-header h1 {
    font-size: 25px;
  }

  .about-content {
    padding: 0 24px;
  }

  .about-overview {
    gap: 38px;
  }

  .about-message h2 {
    font-size: 17px;
  }

  .about-message p {
    font-size: 15px;
  }

  .about-profile {
    width: 100%;
  }

  .about-style h3 {
    font-size: 10.5px;
  }

  .about-style p {
    font-size: 10.5px;
  }

  .visit-content {
    padding: 0 20px;
  }

  .visit-photo--main {
    width: min(100%, 260px);
  }

  .visit-area {
    padding-right: 18px;
    padding-left: 18px;
  }

  .visit-area__row {
    gap: 8px;
  }

  .visit-area__row div {
    font-size: 14px;
  }

  .price-list--hair {
    margin-left: 30px;
  }

  .visit-hair__body {
    grid-template-columns: 1fr 78px;
    gap: 12px;
  }

  .visit-hair__note {
    font-size: 9px;
  }

  .lesson-content {
    padding: 0 20px;
  }

  .lesson-intro {
    width: min(100%, 250px);
  }

  .lesson-intro__text h1 {
    font-size: 14px;
  }

  .lesson-rental__body {
    grid-template-columns: 1fr 84px;
    gap: 14px;
  }

  .lesson-course {
    width: min(calc(100% - 4px), 340px);
    padding: 16px 14px 18px;
  }

  .lesson-course--details {
    display: block;
  }

  .lesson-course-box {
    width: min(100%, 230px);
    margin: 8px auto 0;
  }

  .hakama-content {
    padding: 0 22px 34px;
  }

  .hakama-gallery {
    gap: 38px 32px;
    width: min(100%, 286px);
  }

  /* スマホ表示のみ：卒業袴・訪問着の番号や文字が見切れないように、画像全体を枠内に収めます */
  .hakama-gallery .hakama-photo--image img,
  .houmongi-gallery .hakama-photo--image img {
    object-fit: contain;
  }

  .yukata-gallery {
    gap: 36px 24px;
    width: min(100%, 330px);
  }

  .hakama-intro p,
  .hakama-plan p,
  .hakama-plan li {
    font-size: 13px;
  }
}

/* PCで見た時は中央にスマホ画面のように表示します */
@media (min-width: 700px) {
  body {
    padding: 32px 0;
  }

  .page-menu {
    left: calc(50% - 215px);
  }
}

/* 指定7ページの内容を、レイアウトを保ったまま上部から18px下げます */
.lesson-content,
.hakama-content,
.furisode-content,
.contact-page-content,
.policy-content {
  padding-top: 18px;
}

/*
  トップページのPC表示だけを横長レイアウトにします。
  HTMLの文章・画像・リンクはスマホ版と共通です。
*/
@media (min-width: 900px) {
  body.home-page {
    padding: 0;
  }

  .page--home {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 1440px);
  }

  .page--home .hero,
  .page--home .rental,
  .page--home .furisode,
  .page--home .faq,
.page--home .home-news,
  .page--home .contact {
    grid-column: 1 / -1;
  }

  .page--home .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    align-items: center;
    gap: 80px;
    min-height: 100vh;
    padding: 112px max(64px, 8vw) 64px;
  }

  .page--home .hero__photo {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .page--home .hero__photo img {
    height: 410px;
  }

  .page--home .hero__text {
    width: 100%;
    max-width: 520px;
    margin: 0;
  }

  .page--home .hero__brand {
    margin-bottom: 20px;
    font-size: 34px;
    letter-spacing: 0.2em;
  }

  .page--home .hero__service-info {
    gap: 18px;
    margin-top: 0;
  }

  .page--home .hero__service-info h1 {
    font-size: 18px;
  }

  .page--home .hero__service-info p,
  .page--home .hero__text .hero__service-info p {
    font-size: 16px;
  }

  .page--home .menu-button {
    display: none;
  }

  .page--home .page-menu {
    position: absolute;
    top: 24px;
    right: auto;
    left: 50%;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 72px);
    max-width: 1320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .page--home .page-menu__item {
    min-height: 38px;
    padding: 6px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }

  .page--home .page-menu__item::before,
  .page--home .page-menu__item::after {
    content: none;
  }

  .page--home .page-menu__group {
    position: relative;
    display: block;
  }

  .page--home .page-menu__subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 180px;
    padding: 10px;
    border: 1px solid rgba(77, 69, 66, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 10px 24px rgba(77, 69, 66, 0.1);
    transform: translateX(-50%);
  }

  .page--home .section {
    padding: 64px max(64px, 8vw) 70px;
  }

  .page--home .worries,
  .page--home .services {
    display: flex;
    align-items: center;
    padding: 24px 28px;
  }

  .page--home .worries-image,
  .page--home .services-image-wrap {
    width: min(100%, 600px);
    margin: 0 auto;
  }

  .page--home .worries-image {
    max-width: 600px;
    clip-path: inset(0 3px 0 0);
  }

  .page--home .band-title {
    width: calc(100% + max(128px, 16vw));
    margin: -64px max(-8vw, -128px) 46px;
    padding: 12px 20px;
    font-size: 22px;
  }

  .page--home .item-grid--three {
    gap: 52px;
    width: min(100%, 980px);
    margin: 0 auto;
  }

  .page--home .small-photo {
    width: min(100%, 250px);
  }

  .page--home .rental-photo-link {
    width: min(100%, 250px);
  }

  .page--home .rental-item h3 {
    margin-top: 14px;
    font-size: 19px;
  }

  .page--home .plan-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    width: min(100%, 1100px);
  }

  .page--home .plan-card h3 {
    font-size: 13px;
  }

  .page--home .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 54px;
    width: min(100%, 900px);
    border-top: 0;
  }

  .page--home .faq-list div:nth-child(-n + 2) {
    border-top: 1px solid rgba(77, 69, 66, 0.16);
  }

  .page--home .contact-grid {
    gap: 60px;
    width: min(100%, 720px);
  }

  .page--home .contact-note {
    margin-top: 28px;
  }
}

/*
  kimono-SeikaについてページのPC表示だけを横長レイアウトにします。
  文章・画像・装飾はスマホ版と共通です。
*/
@media (min-width: 900px) {
  body.about-page-body {
    padding: 0;
    background: var(--pink);
  }

  .about-page {
    width: min(100%, 1440px);
    padding-bottom: 52px;
  }

  .about-page .about-header {
    min-height: 174px;
    padding: 102px max(80px, 8vw) 32px;
  }

  .about-page .about-header h1 {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding-left: 54px;
    font-size: 34px;
    text-align: left;
  }

  .about-page .about-back {
    top: 104px;
    left: max(42px, calc((100% - 1200px) / 2));
    font-size: 42px;
  }

  .about-page .menu-button {
    display: none;
  }

  .about-page .page-menu {
    position: absolute;
    top: 24px;
    right: auto;
    left: 50%;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 72px);
    max-width: 1320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .about-page .page-menu__item {
    min-height: 38px;
    padding: 6px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }

  .about-page .page-menu__item::before,
  .about-page .page-menu__item::after {
    content: none;
  }

  .about-page .page-menu__group {
    position: relative;
    display: block;
  }

  .about-page .page-menu__subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 180px;
    padding: 10px;
    border: 1px solid rgba(77, 69, 66, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 10px 24px rgba(77, 69, 66, 0.1);
    transform: translateX(-50%);
  }

  .about-page .about-content {
    padding: 0 max(72px, 8vw);
  }

  .about-page .about-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px;
    align-items: start;
    width: min(100%, 1200px);
    margin: 0 auto;
  }

  .about-page .about-message {
    padding-top: 24px;
  }

  .about-page .about-message + .about-message {
    padding-top: 24px;
  }

  .about-page .about-message h2 {
    margin-bottom: 26px;
    font-size: 18px;
  }

  .about-page .about-message p {
    width: min(100%, 320px);
    font-size: 15px;
    line-height: 2.1;
  }

  .about-page .about-profile {
    grid-column: auto;
    width: min(100%, 350px);
  }

  .about-page .about-styles {
    gap: 58px;
    width: min(100%, 920px);
    margin: 66px auto 0;
    padding-top: 52px;
    border-top: 0;
  }

  .about-page .about-styles__heading {
    margin-bottom: 6px;
  }

  .about-page .about-styles__heading h2 {
    width: min(100%, 380px);
    font-size: 19px;
  }

  .about-page .about-styles__heading p {
    font-size: 15px;
  }

  .about-page .about-style__photo {
    width: min(100%, 250px);
    margin: 0 auto;
    aspect-ratio: 0.9;
  }

  .about-page .about-style h3 {
    width: min(100%, 250px);
    margin: 10px auto 9px;
    font-size: 18px;
  }

  .about-page .about-style p {
    font-size: 15px;
    line-height: 1.8;
  }

  .about-page .about-studio-break--pc-hidden {
    display: none;
  }

  .about-page .about-studio-break--pc-only {
    display: block;
  }

  .about-page .about-contact {
    width: min(100%, 380px);
    margin: 42px auto 0;
  }
}

/*
  出張着付けページのPC表示だけを横長レイアウトにします。
  文章・料金・画像はスマホ版と共通です。
*/
@media (min-width: 900px) {
  body.visit-page-body {
    padding: 0;
  }

  .visit-page {
    width: min(100%, 1440px);
    padding-bottom: 52px;
  }

  .visit-page .detail-header {
    min-height: 84px;
  }

  .visit-page .about-back {
    top: 26px;
    left: max(42px, calc((100% - 1200px) / 2));
    font-size: 42px;
  }

  .visit-page .menu-button {
    display: none;
  }

  .visit-page .page-menu {
    position: absolute;
    top: 24px;
    right: auto;
    left: 50%;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 72px);
    max-width: 1320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .visit-page .page-menu__item {
    min-height: 38px;
    padding: 6px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }

  .visit-page .page-menu__item::before,
  .visit-page .page-menu__item::after {
    content: none;
  }

  .visit-page .page-menu__group {
    position: relative;
    display: block;
  }

  .visit-page .page-menu__subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 180px;
    padding: 10px;
    border: 1px solid rgba(77, 69, 66, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 10px 24px rgba(77, 69, 66, 0.1);
    transform: translateX(-50%);
  }

  .visit-page .visit-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 70px;
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0 40px;
  }

  .visit-page .visit-content section {
    margin-top: 0;
  }

  .visit-page .visit-intro {
    grid-column: 1 / -1;
    grid-template-columns: minmax(280px, 0.75fr) minmax(540px, 1.25fr);
    gap: 82px;
    min-height: 340px;
    padding: 8px 70px 30px;
  }

  .visit-page .visit-photo--main {
    width: min(100%, 320px);
  }

  .visit-page .visit-intro__text h2 {
    margin-bottom: 18px;
    font-size: 23px;
  }

  .visit-page .visit-intro__text p {
    font-size: 15px;
    line-height: 2.1;
    text-align: left;
  }

  .visit-page .visit-intro__sp-break {
    display: none;
  }

  .visit-page .visit-intro__pc-break {
    display: inline;
  }

  .visit-page .visit-area {
    align-self: start;
    padding: 28px 36px 32px;
  }

  .visit-page .visit-area h2 {
    font-size: 20px;
  }

  .visit-page .visit-area p {
    margin: 5px 0 16px;
    font-size: 11px;
  }

  .visit-page .visit-area__nerima,
  .visit-page .visit-area__row div {
    min-height: 76px;
    font-size: 18px;
  }

  .visit-page .visit-price {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    column-gap: 28px;
    align-content: start;
  }

  .visit-page .visit-price h2,
  .visit-page .visit-price__note {
    grid-column: 1 / -1;
  }

  .visit-page .price-list--children {
    align-self: start;
    width: 100%;
    margin: 32px 0 0;
  }

  .visit-page .price-list--children dt {
    white-space: nowrap;
  }

  .visit-page .visit-price__note {
    margin-top: 28px;
  }

  .visit-page .visit-hair,
  .visit-page .visit-flow {
    padding: 0 28px;
  }

  .visit-page .visit-hair h2,
  .visit-page .visit-flow h2 {
    font-size: 20px;
  }

  .visit-page .visit-hair::before {
    display: none;
  }

  .visit-page .visit-hair h2 {
    position: relative;
    padding-bottom: 12px;
    font-size: 18px;
    text-align: center;
  }

  .visit-page .visit-hair h2::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: calc(100% - 20px);
    height: 2px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 999px;
    background: #d7b7a3;
    content: "";
  }

  .visit-page .visit-hair__body {
    grid-template-columns: 1fr 110px;
    gap: 24px;
  }

  .visit-page .visit-hair__note {
    font-size: 10.5px;
  }

  .visit-page .visit-flow__body {
    grid-template-columns: 1fr 120px;
    gap: 24px;
  }

  .visit-page .visit-flow li {
    grid-template-columns: 88px 1fr;
  }

  .visit-page .visit-flow li span,
  .visit-page .visit-flow li b {
    font-size: 15px;
  }

  .visit-page .about-contact {
    grid-column: 1 / -1;
    width: min(100%, 380px);
    margin: 0 auto;
  }
}

/*
  着付け教室ページのPC表示だけを横長レイアウトにします。
  文章・画像・コース内容はスマホ版と共通です。
*/
@media (min-width: 900px) {
  body.lesson-page-body {
    padding: 0;
  }

  .lesson-page {
    width: min(100%, 1440px);
    padding-bottom: 54px;
  }

  .lesson-page .detail-header {
    min-height: 84px;
  }

  .lesson-page .about-back {
    top: 26px;
    left: max(42px, calc((100% - 1200px) / 2));
    font-size: 42px;
  }

  .lesson-page .menu-button {
    display: none;
  }

  .lesson-page .page-menu {
    position: absolute;
    top: 24px;
    right: auto;
    left: 50%;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 72px);
    max-width: 1320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .lesson-page .page-menu__item {
    min-height: 38px;
    padding: 6px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }

  .lesson-page .page-menu__item::before,
  .lesson-page .page-menu__item::after {
    content: none;
  }

  .lesson-page .page-menu__group {
    position: relative;
    display: block;
  }

  .lesson-page .page-menu__subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 180px;
    padding: 10px;
    border: 1px solid rgba(77, 69, 66, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 10px 24px rgba(77, 69, 66, 0.1);
    transform: translateX(-50%);
  }

  .lesson-page .lesson-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 56px;
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 28px 54px 0;
  }

  .lesson-page .lesson-content section {
    margin-top: 0;
  }

  .lesson-page .lesson-intro,
  .lesson-page .lesson-rental {
    width: 100%;
    min-height: 330px;
    margin: 0;
    padding: 42px 44px;
    border: 1px solid rgba(91, 72, 65, 0.12);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.23);
  }

  .lesson-page .lesson-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .lesson-page .lesson-intro__text h1 {
    margin-bottom: 24px;
    padding: 7px 16px;
    border-radius: 18px;
    font-size: 19px;
  }

  .lesson-page .lesson-intro__text p,
  .lesson-page .lesson-rental p,
  .lesson-page .lesson-course p,
  .lesson-page .lesson-course li {
    font-size: 14px;
    line-height: 2;
  }

  .lesson-page .lesson-rental {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .lesson-page .lesson-rental h2 {
    margin-bottom: 25px;
    font-size: 20px;
  }

  .lesson-page .lesson-rental__body {
    grid-template-columns: 1fr 145px;
    gap: 30px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .lesson-page .lesson-photo--rental {
    transform: none;
  }

  .lesson-page .lesson-course {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 330px;
    margin: 0;
    padding: 30px 36px;
  }

  .lesson-page .lesson-course h2 {
    font-size: 20px;
  }

  .lesson-page .lesson-course h3 {
    margin: 10px 0 13px;
    font-size: 17px;
  }

  .lesson-page .lesson-course .lesson-recommend {
    margin-top: 14px;
  }

  .lesson-page .lesson-course--details {
    display: flex;
  }

  .lesson-page .lesson-course-box {
    display: none;
  }

  .lesson-page .lesson-flow {
    grid-column: 1 / -1;
    padding: 38px 50px;
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.2);
  }

  .lesson-page .lesson-flow h2 {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .lesson-page .lesson-flow__body {
    grid-template-columns: 1fr 150px;
    gap: 44px;
    align-items: center;
    max-width: 880px;
    margin: 0 auto;
  }

  .lesson-page .lesson-flow ol {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .lesson-page .lesson-flow li {
    display: flex;
    min-height: 108px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(91, 72, 65, 0.3);
    border-radius: 50%;
    text-align: center;
  }

  .lesson-page .lesson-flow li span,
  .lesson-page .lesson-flow li b {
    font-size: 14px;
  }

  .lesson-page .lesson-contact {
    grid-column: 1 / -1;
    margin-top: -6px !important;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .lesson-page .lesson-flow__contact-note {
    margin: 30px 0 0;
    font-size: 14px;
  }

  .lesson-page .lesson-contact .about-contact {
    width: min(100%, 380px);
    margin-right: auto;
    margin-left: auto;
  }
}

/*
  卒業袴ページのPC表示だけを横長レイアウトにします。
  写真の拡大表示、文章、画像はスマホ版と共通です。
*/
@media (min-width: 900px) {
  body.hakama-page-body {
    padding: 0;
  }

  .hakama-page {
    width: min(100%, 1440px);
    padding-bottom: 54px;
  }

  .hakama-page .detail-header {
    min-height: 84px;
  }

  .hakama-page .about-back {
    top: 26px;
    left: max(42px, calc((100% - 1200px) / 2));
    font-size: 42px;
  }

  .hakama-page .menu-button {
    display: none;
  }

  .hakama-page .page-menu {
    position: absolute;
    top: 24px;
    right: auto;
    left: 50%;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 72px);
    max-width: 1320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .hakama-page .page-menu__item {
    min-height: 38px;
    padding: 6px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }

  .hakama-page .page-menu__item::before,
  .hakama-page .page-menu__item::after {
    content: none;
  }

  .hakama-page .page-menu__group {
    position: relative;
    display: block;
  }

  .hakama-page .page-menu__subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 180px;
    padding: 10px;
    border: 1px solid rgba(77, 69, 66, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 10px 24px rgba(77, 69, 66, 0.1);
    transform: translateX(-50%);
  }

  .hakama-page .hakama-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 56px;
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 26px 54px 0;
  }

  .hakama-page .hakama-intro,
  .hakama-page .hakama-plan {
    width: 100%;
    min-height: 330px;
    margin: 0;
    padding: 38px 42px;
  }

  .hakama-page .hakama-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(91, 72, 65, 0.12);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.23);
  }

  .hakama-page .hakama-intro h1 {
    margin-bottom: 24px;
    font-size: 27px;
  }

  .hakama-page .title-decoration--hakama {
    width: 82px;
    left: calc(100% + 8px);
  }

  .hakama-page .hakama-intro p,
  .hakama-page .hakama-plan p,
  .hakama-page .hakama-plan li {
    font-size: 14px;
  }

  .hakama-page .hakama-plan {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hakama-page .hakama-plan h2 {
    margin-bottom: 12px;
    font-size: 21px;
  }

  .hakama-page .hakama-price {
    margin-bottom: 17px !important;
    font-size: 17px !important;
  }

  .hakama-page .hakama-note {
    margin-top: 18px !important;
  }

  .hakama-page .hakama-catalog-intro {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .hakama-page .hakama-catalog-intro h2 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .hakama-page .hakama-catalog-intro h2 img {
    right: calc(100% + 10px);
    width: 58px;
  }

  .hakama-page .hakama-catalog-intro p + p {
    margin-top: 0;
  }

  .hakama-page .hakama-gallery,
  .hakama-page .hakama-content > .hakama-gallery {
    grid-column: 1 / -1;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px 18px;
    width: 100%;
    margin: 0;
  }

  .hakama-page .hakama-photo {
    border-width: 8px;
  }

  .hakama-page .hakama-gallery .hakama-photo--image img {
    object-fit: contain;
    object-position: center;
  }

  .hakama-page .kimono-lightbox {
    padding: 12px;
  }

  .hakama-page .kimono-lightbox .hakama-photo {
    width: min(90vw, 60vh);
    max-height: calc(100vh - 24px);
  }

  .hakama-page .hakama-flow {
    grid-column: 1 / -1;
    margin-top: 0;
    padding: 38px 44px 34px;
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.22);
  }

  .hakama-page .hakama-flow h2 {
    margin-bottom: 28px;
    font-size: 20px;
  }

  .hakama-page .hakama-flow ol {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: none;
  }

  .hakama-page .hakama-flow li {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(91, 72, 65, 0.3);
    border-radius: 50%;
    text-align: center;
  }

  .hakama-page .hakama-flow li span,
  .hakama-page .hakama-flow li b {
    font-size: 13px;
    line-height: 1.6;
  }

  .hakama-page .hakama-flow > p {
    margin-top: 24px;
  }

  .hakama-page .hakama-content > .about-contact {
    grid-column: 1 / -1;
    width: min(100%, 380px);
    margin: -4px auto 0;
  }
}

/*
  訪問着ページのPC表示だけを横長レイアウトにします。
  卒業袴ページと同じ基本構成で、文章・画像・拡大表示はスマホ版と共通です。
*/
@media (min-width: 900px) {
  body.houmongi-page-body {
    padding: 0;
  }

  .houmongi-page {
    width: min(100%, 1440px);
    padding-bottom: 54px;
  }

  .houmongi-page .detail-header {
    min-height: 84px;
  }

  .houmongi-page .about-back {
    top: 26px;
    left: max(42px, calc((100% - 1200px) / 2));
    font-size: 42px;
  }

  .houmongi-page .menu-button {
    display: none;
  }

  .houmongi-page .page-menu {
    position: absolute;
    top: 24px;
    right: auto;
    left: 50%;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 72px);
    max-width: 1320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .houmongi-page .page-menu__item {
    min-height: 38px;
    padding: 6px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }

  .houmongi-page .page-menu__item::before,
  .houmongi-page .page-menu__item::after {
    content: none;
  }

  .houmongi-page .page-menu__group {
    position: relative;
    display: block;
  }

  .houmongi-page .page-menu__subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 180px;
    padding: 10px;
    border: 1px solid rgba(77, 69, 66, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 10px 24px rgba(77, 69, 66, 0.1);
    transform: translateX(-50%);
  }

  .houmongi-page .houmongi-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 56px;
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 26px 54px 0;
  }

  .houmongi-page .houmongi-intro,
  .houmongi-page .houmongi-plan {
    width: 100%;
    min-height: 350px;
    margin: 0;
    padding: 38px 42px;
  }

  .houmongi-page .houmongi-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(91, 72, 65, 0.12);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.23);
  }

  .houmongi-page .houmongi-intro h1 {
    margin-bottom: 24px;
    font-size: 27px;
  }

  .houmongi-page .title-decoration--houmongi {
    width: 48px;
    left: calc(100% + 10px);
  }

  .houmongi-page .houmongi-intro p,
  .houmongi-page .houmongi-plan p,
  .houmongi-page .houmongi-plan li {
    font-size: 14px;
  }

  .houmongi-page .houmongi-butterflies--intro {
    right: 26px;
    bottom: 18px;
  }

  .houmongi-page .houmongi-plan {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .houmongi-page .houmongi-plan h2 {
    margin-bottom: 12px;
    font-size: 21px;
  }

  .houmongi-page .hakama-price {
    margin-bottom: 17px !important;
    font-size: 17px !important;
  }

  .houmongi-page .hakama-note {
    margin-top: 18px !important;
  }

  .houmongi-page .houmongi-butterflies--plan {
    right: 22px;
    bottom: 42px;
  }

  .houmongi-page .houmongi-catalog-intro {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .houmongi-page .houmongi-catalog-intro h2 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .houmongi-page .hakama-catalog-intro h2 .houmongi-catalog-flower {
    right: calc(100% + 10px);
    width: 58px;
    height: 58px;
  }

  .houmongi-page .houmongi-catalog-intro p + p {
    margin-top: 0;
  }

  .houmongi-page .houmongi-gallery,
  .houmongi-page .houmongi-content > .houmongi-gallery {
    grid-column: 1 / -1;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px 18px;
    width: 100%;
    margin: 0;
  }

  .houmongi-page .houmongi-gallery .hakama-photo {
    border-width: 8px;
  }

  .houmongi-page .houmongi-gallery .hakama-photo--image img {
    object-fit: contain;
    object-position: center;
  }

  .houmongi-page .kimono-lightbox {
    padding: 12px;
  }

  .houmongi-page .kimono-lightbox .hakama-photo {
    width: min(90vw, 60vh);
    max-height: calc(100vh - 24px);
  }

  .houmongi-page .houmongi-flow {
    grid-column: 1 / -1;
    margin-top: 0;
    padding: 38px 44px 34px;
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.22);
  }

  .houmongi-page .houmongi-flow h2 {
    margin-bottom: 28px;
    font-size: 20px;
  }

  .houmongi-page .houmongi-flow ol {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: none;
  }

  .houmongi-page .houmongi-flow li {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(91, 72, 65, 0.3);
    border-radius: 50%;
    text-align: center;
  }

  .houmongi-page .houmongi-flow li span,
  .houmongi-page .houmongi-flow li b {
    font-size: 13px;
    line-height: 1.6;
  }

  .houmongi-page .houmongi-flow > p {
    margin-top: 24px;
  }

  .houmongi-page .houmongi-content > .about-contact {
    grid-column: 1 / -1;
    width: min(100%, 380px);
    margin: -4px auto 0;
  }
}

/*
  浴衣ページのPC表示だけを横長レイアウトにします。
  浴衣固有の3つの案内枠を横並びにし、文章・画像・拡大表示はスマホ版と共通にします。
*/
@media (min-width: 900px) {
  body.yukata-page-body {
    padding: 0;
  }

  .yukata-page {
    width: min(100%, 1440px);
    padding-bottom: 54px;
  }

  .yukata-page .detail-header {
    min-height: 84px;
  }

  .yukata-page .about-back {
    top: 26px;
    left: max(42px, calc((100% - 1200px) / 2));
    font-size: 42px;
  }

  .yukata-page .menu-button {
    display: none;
  }

  .yukata-page .page-menu {
    position: absolute;
    top: 24px;
    right: auto;
    left: 50%;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 72px);
    max-width: 1320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .yukata-page .page-menu__item {
    min-height: 38px;
    padding: 6px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }

  .yukata-page .page-menu__item::before,
  .yukata-page .page-menu__item::after {
    content: none;
  }

  .yukata-page .page-menu__group {
    position: relative;
    display: block;
  }

  .yukata-page .page-menu__subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 180px;
    padding: 10px;
    border: 1px solid rgba(77, 69, 66, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 10px 24px rgba(77, 69, 66, 0.1);
    transform: translateX(-50%);
  }

  .yukata-page .yukata-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
    gap: 42px 28px;
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 26px 54px 0;
  }

  .yukata-page .yukata-intro,
  .yukata-page .yukata-plan {
    width: 100%;
    min-height: 360px;
    margin: 0;
    padding: 28px 26px;
    overflow: hidden;
  }

  .yukata-page .yukata-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(91, 72, 65, 0.12);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.23);
  }

  .yukata-page .yukata-intro h1 {
    margin-bottom: 18px;
    font-size: 27px;
  }

  .yukata-page .hakama-intro .yukata-intro__lead {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.9;
    text-align: center;
  }

  .yukata-page .yukata-intro__body {
    grid-template-columns: minmax(0, 1fr) 100px;
    gap: 14px;
    width: 100%;
  }

  .yukata-page .yukata-intro__text {
    min-width: 0;
  }

  .yukata-page .yukata-intro__text p {
    font-size: 13px;
    white-space: nowrap;
  }

  .yukata-page .yukata-intro__photo {
    width: 100px;
    max-width: 100%;
  }

  .yukata-page .yukata-plan--campaign-message,
  .yukata-page .yukata-plan--full {
    display: flex;
    min-height: 360px;
    margin-top: 0;
    align-items: center;
    justify-content: center;
  }

  .yukata-page .yukata-plan__campaign-pc-break {
    display: initial;
  }

  .yukata-page .yukata-plan--full {
    flex-direction: column;
    padding-bottom: 45px;
  }

  .yukata-page .yukata-plan + .yukata-plan {
    margin-top: 0;
  }

  .yukata-page .yukata-decoration--left {
    width: 145px;
  }

  .yukata-page .yukata-decoration--right {
    width: 120px;
  }

  .yukata-page .yukata-full-illustration {
    left: -38px;
    width: 190px;
  }

  .yukata-page .yukata-decoration--full-right {
    width: 118px;
  }

  .yukata-page .yukata-catalog-intro {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .yukata-page .yukata-catalog-intro h2 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .yukata-page .hakama-catalog-intro h2 .yukata-catalog-water-balloons {
    right: calc(100% + 10px);
    width: 62px;
    height: 62px;
  }

  .yukata-page .yukata-catalog-intro p {
    line-height: 1.9;
  }

  .yukata-page .yukata-catalog-intro p + p {
    margin-top: 0;
  }

  .yukata-page .yukata-gallery,
  .yukata-page .yukata-content > .yukata-gallery {
    grid-column: 1 / -1;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px 18px;
    width: 100%;
    margin: 0;
  }

  .yukata-page .yukata-gallery .hakama-photo {
    border-width: 8px;
  }

  .yukata-page .yukata-gallery .hakama-photo--image img {
    object-fit: contain;
    object-position: center;
  }

  .yukata-page .kimono-lightbox {
    padding: 12px;
  }

  .yukata-page .kimono-lightbox .hakama-photo {
    width: min(90vw, 60vh);
    max-height: calc(100vh - 24px);
  }

  .yukata-page .yukata-flow {
    grid-column: 1 / -1;
    margin-top: 0;
    padding: 38px 44px 34px;
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.22);
  }

  .yukata-page .yukata-flow h2 {
    margin-bottom: 28px;
    font-size: 20px;
  }

  .yukata-page .yukata-flow ol {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: none;
  }

  .yukata-page .yukata-flow li:not(.yukata-flow__note) {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(91, 72, 65, 0.3);
    border-radius: 50%;
    text-align: center;
  }

  .yukata-page .yukata-flow li span,
  .yukata-page .yukata-flow li b {
    font-size: 13px;
    line-height: 1.6;
  }

  .yukata-page .yukata-flow .yukata-flow__note {
    grid-column: 1 / -1;
    order: 2;
    margin-top: 6px;
  }

  .yukata-page .yukata-flow > p {
    margin-top: 8px;
  }

  .yukata-page .yukata-content > .about-contact {
    grid-column: 1 / -1;
    width: min(100%, 380px);
    margin: -4px auto 0;
  }
}

/*
  成人式・振袖ページのPC表示だけを横長レイアウトにします。
  各料金プランと対応する流れを同じ形式で左右に並べます。
*/
@media (min-width: 900px) {
  body.furisode-page-body {
    padding: 0;
  }

  .furisode-page {
    width: min(100%, 1440px);
    padding-bottom: 54px;
  }

  .furisode-page .detail-header {
    min-height: 84px;
  }

  .furisode-page .about-back {
    top: 26px;
    left: max(42px, calc((100% - 1200px) / 2));
    font-size: 42px;
  }

  .furisode-page .menu-button {
    display: none;
  }

  .furisode-page .page-menu {
    position: absolute;
    top: 24px;
    right: auto;
    left: 50%;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 72px);
    max-width: 1320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .furisode-page .page-menu__item {
    min-height: 38px;
    padding: 6px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }

  .furisode-page .page-menu__item::before,
  .furisode-page .page-menu__item::after {
    content: none;
  }

  .furisode-page .page-menu__group {
    position: relative;
    display: block;
  }

  .furisode-page .page-menu__subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 180px;
    padding: 10px;
    border: 1px solid rgba(77, 69, 66, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 10px 24px rgba(77, 69, 66, 0.1);
    transform: translateX(-50%);
  }

  .furisode-page .furisode-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 56px;
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 26px 54px 0;
  }

  .furisode-page .furisode-content section {
    margin-top: 0;
  }

  .furisode-page .furisode-intro {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 48px;
    align-items: center;
    min-height: 310px;
    padding: 36px 90px;
    border: 1px solid rgba(91, 72, 65, 0.12);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.23);
  }

  .furisode-page .furisode-intro h1 {
    grid-column: 2;
    justify-self: center;
    width: max-content;
    margin-bottom: 22px;
    font-size: 27px;
  }

  .furisode-page .title-decoration--furisode {
    left: calc(100% + 2px);
    width: 58px;
  }

  .furisode-page .furisode-intro__body {
    display: contents;
  }

  .furisode-page .furisode-intro__photo {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 190px;
    border-width: 7px;
    transform: none;
  }

  .furisode-page .furisode-intro__body p {
    grid-column: 2;
    grid-row: 2;
    font-size: 14px;
  }

  .furisode-page .furisode-rental-detail {
    grid-column: 1 / -1;
    padding: 38px 54px 48px;
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.18);
    text-align: center;
  }

  .furisode-page .furisode-rental-detail h2 {
    margin-bottom: 18px;
    padding: 6px 28px;
    font-size: 21px;
  }

  .furisode-page .furisode-rental-detail p {
    font-size: 14px;
  }

  .furisode-page .furisode-rental-break--pc-hidden {
    display: none;
  }

  .furisode-page .furisode-rental-price {
    margin-top: 22px !important;
    font-size: 17px !important;
  }

  .furisode-page .furisode-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 34px;
    width: min(100%, 780px);
    margin-top: 32px;
  }

  .furisode-page .furisode-kimono {
    border-width: 10px;
  }

  .furisode-page .kimono-lightbox-thumb .furisode-kimono--image img,
  .furisode-page .kimono-lightbox .furisode-kimono--image img {
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .furisode-page .kimono-lightbox {
    padding: 12px;
  }

  .furisode-page .kimono-lightbox .furisode-kimono {
    width: min(90vw, 60vh);
    max-height: calc(100vh - 24px);
  }

  .furisode-page .furisode-plan,
  .furisode-page .furisode-set-plan,
  .furisode-page .furisode-bring-plan,
  .furisode-page .furisode-flow {
    width: 100%;
    min-height: 340px;
    margin: 0;
    padding: 34px 38px;
  }

  .furisode-page .furisode-plan,
  .furisode-page .furisode-set-plan,
  .furisode-page .furisode-bring-plan {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .furisode-page .furisode-plan h2,
  .furisode-page .furisode-set-plan h2,
  .furisode-page .furisode-bring-plan h2,
  .furisode-page .furisode-flow h2 {
    margin-bottom: 11px;
    font-size: 19px;
  }

  .furisode-page .furisode-price {
    margin-bottom: 10px !important;
    font-size: 16px !important;
  }

  .furisode-page .furisode-plan li,
  .furisode-page .furisode-set-plan li,
  .furisode-page .furisode-bring-plan li {
    font-size: 13.5px;
  }

  .furisode-page .furisode-plan--shoot {
    padding-bottom: 34px;
  }

  .furisode-page .furisode-plan--shoot .furisode-plan-small-note {
    position: static;
    margin-top: 13px !important;
  }

  .furisode-page .furisode-plan-photo {
    right: 22px;
    top: auto;
    bottom: 28px;
    width: 92px;
    height: 108px;
  }

  .furisode-page .furisode-flow {
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.22);
    text-align: center;
  }

  .furisode-page .furisode-flow ol,
  .furisode-page .furisode-flow--wide ol {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: 100%;
    max-width: none;
  }

  .furisode-page .furisode-flow li {
    grid-template-columns: 78px 1fr;
    gap: 13px;
  }

  .furisode-page .furisode-flow li span,
  .furisode-page .furisode-flow li b {
    font-size: 13px;
    line-height: 1.7;
  }

  .furisode-page .furisode-return-text,
  .furisode-page .furisode-flow-note {
    margin-top: 20px !important;
  }

  .furisode-page .furisode-set-plan__body {
    margin-top: 0;
  }

  .furisode-page .furisode-return-note {
    grid-column: 1 / -1;
    width: 100%;
    margin: -24px auto 0;
  }

  .furisode-page .furisode-flow .furisode-flow-note--pc {
    display: block;
    width: 100%;
    margin: 18px auto 0 !important;
    font-size: 11.5px !important;
    line-height: 1.8 !important;
  }

  .furisode-page .furisode-flow--wide + .furisode-return-note,
  .furisode-page .furisode-flow--bring + .furisode-bottom-note {
    display: none;
  }

  .furisode-page .furisode-bring-plan {
    padding-right: 170px;
    padding-bottom: 34px;
  }

  .furisode-page .furisode-bring-plan__text {
    width: 100%;
  }

  .furisode-page .furisode-bring-plan__text h2,
  .furisode-page .furisode-bring-plan__text .furisode-price,
  .furisode-page .furisode-bring-plan__text ul {
    position: static;
  }

  .furisode-page .furisode-bring-photo {
    top: 91px;
    right: 28px;
    width: 130px;
    height: 155px;
    border-width: 6px;
  }

  .furisode-page .furisode-bring-plan .furisode-note {
    position: static;
    margin-top: 13px !important;
  }

  .furisode-page .furisode-bottom-note {
    grid-column: 1 / -1;
    margin: -24px 0 0;
  }

  .furisode-page .furisode-content > .about-contact {
    grid-column: 1 / -1;
    width: min(100%, 380px);
    margin: -4px auto 0;
  }
}

/*
  よくある質問ページのPC表示だけを横長レイアウトにします。
  質問・回答・開閉機能はスマホ版と共通です。
*/
@media (min-width: 900px) {
  body.faq-page-body {
    padding: 0;
  }

  .faq-page {
    width: min(100%, 1440px);
    padding-bottom: 52px;
  }

  .faq-page .detail-header {
    min-height: 84px;
  }

  .faq-page .about-back {
    top: 26px;
    left: max(42px, calc((100% - 1200px) / 2));
    font-size: 42px;
  }

  .faq-page .menu-button {
    display: none;
  }

  .faq-page .page-menu {
    position: absolute;
    top: 24px;
    right: auto;
    left: 50%;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 72px);
    max-width: 1320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .faq-page .page-menu__item {
    min-height: 38px;
    padding: 6px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }

  .faq-page .page-menu__item::before,
  .faq-page .page-menu__item::after {
    content: none;
  }

  .faq-page .page-menu__group {
    position: relative;
    display: block;
  }

  .faq-page .page-menu__subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 180px;
    padding: 10px;
    border: 1px solid rgba(77, 69, 66, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 10px 24px rgba(77, 69, 66, 0.1);
    transform: translateX(-50%);
  }

  .faq-page .faq-content {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    column-gap: 68px;
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 42px 64px 48px;
    border: 1px solid rgba(91, 72, 65, 0.1);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.2);
  }

  .faq-page .faq-hero {
    align-self: start;
    width: min(100%, 270px);
    margin: 18px 0 0;
  }

  .faq-page .faq-hero img {
    width: 100%;
  }

  .faq-page .faq-hero__faq-label {
    font-size: 21px;
  }

  .faq-page .faq-detail-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-page .faq-detail-item summary {
    min-height: 58px;
    padding: 13px 42px 12px 4px;
    font-size: 15px;
    line-height: 1.75;
  }

  .faq-page .faq-detail-item summary br {
    display: none;
  }

  .faq-page .faq-detail-item summary::after {
    right: 10px;
    bottom: 17px;
  }

  .faq-page .faq-answer {
    padding: 16px 24px 8px 28px;
  }

  .faq-page .faq-answer p,
  .faq-page .faq-answer li {
    font-size: 14px;
  }

  .faq-page .faq-answer p + p {
    margin-top: 8px;
  }

  .faq-page .faq-answer br {
    display: none;
  }

  .faq-page .faq-answer .faq-pc-break {
    display: block;
  }

  .faq-page .faq-contact-mini {
    width: min(100%, 390px);
    margin-top: 18px;
  }

  .faq-page .faq-closing {
    grid-column: 1 / -1;
    margin: 40px 0 18px;
    font-size: 13px;
  }

  .faq-page .faq-content > .about-contact {
    grid-column: 1 / -1;
    width: min(100%, 380px);
    margin: 0 auto;
  }
}

/*
  キャンセルポリシーページのPC表示だけを横長にします。
  項目の順番と文章はスマホ版と共通です。
*/
@media (min-width: 900px) {
  body.policy-page-body {
    padding: 0;
  }

  .policy-page {
    width: min(100%, 1440px);
    padding-bottom: 42px;
  }

  .policy-page .detail-header {
    min-height: 84px;
  }

  .policy-page .about-back {
    top: 26px;
    left: max(42px, calc((100% - 1200px) / 2));
    font-size: 42px;
  }

  .policy-page .menu-button {
    display: none;
  }

  .policy-page .page-menu {
    position: absolute;
    top: 24px;
    right: auto;
    left: 50%;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 72px);
    max-width: 1320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .policy-page .page-menu__item {
    min-height: 38px;
    padding: 6px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }

  .policy-page .page-menu__item::before,
  .policy-page .page-menu__item::after {
    content: none;
  }

  .policy-page .page-menu__group {
    position: relative;
    display: block;
  }

  .policy-page .page-menu__subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 180px;
    padding: 10px;
    border: 1px solid rgba(77, 69, 66, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 10px 24px rgba(77, 69, 66, 0.1);
    transform: translateX(-50%);
  }

  .policy-page .policy-content {
    width: min(100%, 1220px);
    margin: 0 auto;
    padding: 20px 46px 30px;
    text-align: center;
  }

  .policy-page .policy-section + .policy-section {
    margin-top: 34px;
  }

  .policy-page .policy-section h1,
  .policy-page .policy-section h2 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .policy-page .policy-section h2 {
    font-size: 17px;
  }

  .policy-page .policy-section p,
  .policy-page .policy-section li,
  .policy-page .policy-section--late-fee p {
    font-size: 13.5px;
    line-height: 1.9;
  }

  .policy-page .policy-section p + p {
    margin-top: 12px;
  }

  .policy-page .policy-fee-list {
    gap: 5px;
    margin: 17px auto;
  }

  .policy-page .policy-damage-layout {
    width: auto;
    margin: 15px auto;
  }

  .policy-page .policy-section p br {
    display: none;
  }

  .policy-page .policy-section p .policy-pc-break {
    display: block;
  }

  .policy-page .policy-content > .about-contact {
    width: min(100%, 380px);
    margin: 46px auto 0;
  }
}

/* PC版：下層ページのヘッダーとトップへ戻るボタンを共通化 */
@media (min-width: 900px) {
  .about-page .about-header {
    min-height: 84px;
    padding: 0;
  }

  .about-page .about-back {
    top: 26px;
  }

  .about-page .about-header h1 {
    position: absolute;
    top: 110px;
    left: 50%;
    width: min(calc(100% - 144px), 1200px);
    padding-left: 0;
    transform: translateX(-50%);
  }

  .about-page .about-content {
    padding-top: 100px;
  }
}

.about-back {
  z-index: 40;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}

/* WordPress移行中だけ表示する確認用メッセージ */
.wordpress-preparation-note {
  grid-column: 1 / -1;
  margin: auto;
  padding: 24px;
  color: var(--ink);
  text-align: center;
}

/* トップページ：お知らせ */
.home-news {
  padding-top: 38px;
  padding-bottom: 42px;
}

.home-news .section-title {
  margin-bottom: 10px;
}

.home-news__description {
  margin: 0 auto 24px;
  font-size: 13px;
  line-height: 1.9;
  text-align: center;
}

.home-news__grid {
  display: grid;
  gap: 10px;
}

.home-news__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--soft-line);
  background: rgba(255, 253, 249, 0.34);
  font-size: 13px;
  line-height: 1.6;
}

.home-news__item time {
  white-space: nowrap;
}

.home-news__item span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.home-news__item i,
.home-news__button i {
  font-style: normal;
  font-size: 22px;
  line-height: 1;
}

.home-news__button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  width: min(100%, 280px);
  min-height: 48px;
  margin: 22px auto 0;
  padding: 10px 18px;
  background: #75645b;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
}

/* お知らせ一覧・投稿 */
.news-page {
  padding-bottom: 40px;
}

.news-page .detail-header {
  position: relative;
  min-height: 84px;
  background: var(--pink);
}

.news-archive {
  display: grid;
  gap: 36px;
  padding: 42px 30px 60px;
  border: 1px solid rgba(77, 69, 66, 0.12);
  border-radius: 22px 22px 0 0;
}

.news-archive__title {
  position: relative;
  display: grid;
  width: min(100%, 280px);
  aspect-ratio: 1;
  margin: 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 25px;
  letter-spacing: 0.08em;
  text-align: center;
}

.news-archive__title::before,
.news-archive__title::after {
  position: absolute;
  left: -13px;
  width: 42px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 100% 0 100% 0;
  background: var(--pink);
  content: "";
  transform: rotate(24deg);
}

.news-archive__title::before {
  top: 24%;
}

.news-archive__title::after {
  top: 35%;
  transform: rotate(-36deg);
}

.news-archive__list {
  min-width: 0;
}

.news-list-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--soft-line);
}

.news-list-item time {
  white-space: nowrap;
}

.news-list-item__title {
  overflow-wrap: anywhere;
}

.news-list-item__arrow {
  font-size: 28px;
  line-height: 1;
}

.news-empty {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--soft-line);
  text-align: center;
}

.news-archive .navigation.pagination {
  margin-top: 28px;
  text-align: center;
}

.news-article {
  padding: 50px 30px 64px;
}

.news-article h1 {
  margin: 0 0 30px;
  color: #825137;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.news-article__image {
  margin-bottom: 32px;
}

.news-article__image img {
  width: 100%;
  height: auto;
}

.news-article__content {
  font-size: 15px;
  line-height: 2;
  text-align: left;
  overflow-wrap: anywhere;
}

.news-article__content > :first-child {
  margin-top: 0;
}

.news-article__content > :last-child {
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .home-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  body.post-type-archive-news,
  body.single-news {
    background: var(--pink);
  }

  .news-page {
    width: min(100%, 1440px);
    box-shadow: none;
  }

  .news-page .detail-header {
    min-height: 84px;
  }

  .news-page .about-back {
    top: 26px;
    left: max(48px, calc((100% - 1200px) / 2));
  }

  .news-page .page-menu {
    position: absolute;
    top: 24px;
    right: auto;
    left: 50%;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 72px);
    max-width: 1320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .news-page .menu-toggle,
  .news-page .menu-button {
    display: none;
  }

  .news-page .page-menu__item {
    min-width: 0;
    min-height: 38px;
    padding: 6px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }

  .news-page .page-menu__item::before,
  .news-page .page-menu__item::after {
    content: none;
  }

  .news-page .page-menu__group {
    position: relative;
    display: block;
  }

  .news-page .page-menu__subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 180px;
    padding: 10px;
    border: 1px solid rgba(77, 69, 66, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 10px 24px rgba(77, 69, 66, 0.1);
    transform: translateX(-50%);
  }

  .news-archive {
    grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.4fr);
    gap: 70px;
    align-items: start;
    width: min(calc(100% - 80px), 1200px);
    min-height: 610px;
    margin: 0 auto;
    padding: 90px 72px 100px;
  }

  .news-archive__title {
    width: min(100%, 330px);
    margin-top: 4px;
    font-size: 31px;
  }

  .news-list-item {
    min-height: 88px;
    font-size: 20px;
  }

  .news-list-item__title {
    font-size: 20px;
  }

  .news-empty {
    padding: 30px 0;
    font-size: 17px;
  }

  .news-article {
    width: min(calc(100% - 144px), 1200px);
    margin: 0 auto;
    padding: 52px 0 90px;
  }

  .news-article h1 {
    margin-bottom: 34px;
    font-size: 38px;
  }

  .news-article__image {
    width: min(100%, 900px);
    margin-bottom: 36px;
  }

  .news-article__content {
    width: min(100%, 900px);
    font-size: 18px;
  }
}

@media (max-width: 374px) {
  .home-news__item {
    grid-template-columns: 1fr auto;
  }

  .home-news__item time {
    grid-column: 1 / -1;
  }

  .news-list-item {
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
  }

  .news-list-item time {
    grid-column: 1 / -1;
  }
}
/* お知らせ一覧：よくある質問と同じ円・葉・渦巻きの装飾を使用 */
.news-archive__title {
  border: 0;
  border-radius: 0;
  background: url("../images/faq-icon-transparent.png") center / contain no-repeat;
}

.news-archive__title::before {
  inset: 34% 18% 31% 23%;
  z-index: 1;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: var(--pink);
  transform: none;
}

.news-archive__title::after {
  content: none;
}

.news-archive__title span {
  position: relative;
  z-index: 2;
}

.news-archive__title--custom {
  background: none;
}

.news-archive__title--custom::before,
.news-archive__title--custom::after {
  content: none;
}

.news-archive__title--custom img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 900px) {
  .news-archive__title {
    width: min(100%, 270px);
    margin-top: 18px;
    font-size: 27px;
  }
}
