@charset "UTF-8";
:root {
  --washi:#F3EEE1; /* 生成り・和紙 */
  --washi-deep:#EAE2D0;
  --sumi:#26201A; /* 墨 */
  --sumi-soft:#4A4038;
  --kin:#A9832F; /* 金/からし */
  --kin-deep:#9C6A26;
  --aka:#7C2E2A; /* 弁柄・暖簾の赤 */
  --ai: #2E3D4E; /* 器や敷布から拾った深藍 */
  --card:#FFFCF5;
  --line: rgba(38,32,26,0.12);
  --shadow: 0 6px 20px rgba(38,32,26,0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--washi);
  color: var(--sumi);
  line-height: 1.7;
}

.badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--kin-deep);
  padding: 8px 10px;
  border-radius: 3px;
}

.ribbon-featured { /* 一番推したい・通年のフラッグシップ用 */
  background: var(--aka);
}

/* ---------- header note ---------- */
.note {
  background: var(--sumi);
  color: var(--washi);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 8px 16px;
}

/* ---------- page head ---------- */
.page-head {
  padding: 40px 20px 20px;
  text-align: center;
}
.page-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--kin-deep);
  margin-bottom: 10px;
}
.page-head h1 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 0.06em;
}
.page-head p {
  color: var(--sumi-soft);
  font-size: 14px;
  margin: 0;
}

/* ---------- sticky anchor nav ---------- */
.course-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 238, 225, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 16px;
  -webkit-overflow-scrolling: touch;
}
.course-nav a {
  display: inline-block;
  color: var(--sumi-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  margin-right: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}
.course-nav a:hover, .course-nav a:focus-visible {
  border-color: var(--kin);
  color: var(--kin-deep);
}

/* ---------- signature: 木札(きふだ) comparison strip ---------- */
.compare-wrap {
  padding: 0 16px 8px;
  max-width: 1160px;
  margin: 0 auto 50px;
}
.compare-wrap .compare-head {
  text-align: center;
  margin-bottom: 22px;
}
.compare-wrap .compare-head .eyebrow {
  margin-bottom: 6px;
}
.compare-wrap .compare-head h2 {
  font-size: clamp(20px, 3vw, 26px);
  margin: 0 0 6px;
}
.compare-wrap .compare-head p {
  font-size: 13px;
  color: var(--sumi-soft);
  margin: 0;
}

.tanzaku-row {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 14px;
  padding-bottom: 8px;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
  -webkit-overflow-scrolling: touch;
}
.tanzaku-row .tanzaku {
  flex: 0 0 24%;
  scroll-snap-align: start;
}

@media (max-width: 920px) {
  .tanzaku-row .tanzaku {
    flex: 0 0 35%;
    scroll-snap-align: start;
    min-width: 200px;
  }
}
.tanzaku {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tanzaku:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(38, 32, 26, 0.16);
}
.tanzaku h3 {
  font-size: 17px;
  margin: 2px 0 0;
  line-height: 1.4;
  font-weight: bold;
}
.tanzaku .period {
  font-size: 12px;
  color: var(--sumi-soft);
}
.tanzaku .price, .tanzaku .period {
  margin-top: auto;
}
.tanzaku .price .num {
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--aka);
  margin-right: 3px;
}
.tanzaku .price .unit {
  font-size: 12px;
  color: var(--sumi-soft);
}
.tanzaku .meta {
  display: flex;
  justify-content: end;
  font-size: 12px;
  color: var(--sumi-soft);
}
.tanzaku a.jump {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--kin-deep);
  text-decoration: none;
  border: 1px solid var(--kin-deep);
  border-radius: 999px;
  padding: 8px 10px;
  margin-top: 2px;
}
.tanzaku a.jump:hover {
  background: var(--aka);
  color: #fff;
}
.tanzaku a.jump::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.swipe-hint {
  display: none;
  text-align: center;
  font-size: 11px;
  color: var(--sumi-soft);
  margin-top: 10px;
}

@media (max-width: 920px) {
  .swipe-hint {
    display: block;
  }
}
/* ---------- detail sections ---------- */
.detail-wrap {
  max-width: 920px;
  margin: 50px auto 0;
  padding: 0 16px 60px;
}
.detail-wrap .course-card {
  scroll-margin-top: 64px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 34px;
  overflow: hidden;
}
.detail-wrap .course-card .photo {
  position: relative; /* 追加：子要素の絶対配置の基準にする */
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden; /* はみ出た画像を隠す */
  background-color: #d8cba4; /* 画像読込前のプレースホルダー色として残す */
}
.detail-wrap .course-card .photo:not(:has(img)) {
  aspect-ratio: 6/1;
  background: linear-gradient(135deg, #f8f5ed 0%, #ebe0c5 55%, #d8cba4 100%);
}
.detail-wrap .course-card .photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.detail-wrap .course-card .photo .badge {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  padding: 14px;
  font-size: 14px;
}
.detail-wrap .course-card .body {
  padding: 22px 24px 26px;
}
.detail-wrap .course-card .title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
  position: relative;
}
@media (min-width: 768px) {
  .detail-wrap .course-card .title-row {
    padding-left: 1.4rem;
  }
}
.detail-wrap .course-card .title-row h3 {
  font-size: 20px;
  margin: 0;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .detail-wrap .course-card .title-row h3 {
    display: contents;
  }
}
.detail-wrap .course-card h3 {
  font-size: 20px;
  margin: 0;
  display: block;
  width: 100%;
}
.detail-wrap .course-card .price-line {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--aka);
  white-space: nowrap;
}
.detail-wrap .course-card .price-line small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--sumi-soft);
  margin-left: 4px;
}
.detail-wrap .course-card .period {
  font-size: 12px;
  color: var(--sumi-soft);
  margin-bottom: 14px;
}
.detail-wrap .course-card .course-summary {
  margin-bottom: 14px;
  color: var(--aka);
}
.detail-wrap .course-card .menu {
  font-size: 13.5px;
  color: var(--sumi-soft);
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn.primary {
  background: var(--aka);
  color: #fff;
}
.btn.primary:hover {
  background: #5c1f1c;
}
.btn.ghost {
  background: transparent;
  color: var(--sumi);
  border: 1px solid var(--line);
}
.btn.ghost:hover {
  border-color: var(--kin-deep);
  color: var(--kin-deep);
}

.back-to-compare {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--sumi-soft);
  text-decoration: none;
  margin: -14px auto 40px;
}
.back-to-compare:hover {
  color: var(--kin-deep);
}

footer.callout {
  background: var(--sumi);
  color: var(--washi-deep);
  text-align: center;
  padding: 30px 16px 40px;
  font-size: 12px;
}
footer.callout .annot {
  max-width: 640px;
  margin: 0 auto 14px;
  opacity: 0.75;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .course-name::before {
    content: "";
    background: url(../../images/decorations/hishigata.png) no-repeat;
    position: absolute;
    display: block;
    background-size: contain;
    background-position-x: center;
    width: 100%;
    height: 100px;
    left: calc(0px - 49%);
    top: -30px;
    transform: scale(0.18);
  }
}/*# sourceMappingURL=honten-course.css.map */