﻿@charset "utf-8";
/* CSS Document */
/* ===============================
   Lesson Detail (Common)
=============================== */

.page-lesson-detail {
  background: var(--bg-main);
}

/* Hero */
/*.lesson-hero {
  padding: 100px 0 60px;
  text-align: center;
}

.lesson-hero .en {
  font-family: 'Shippori Mincho', serif;
  color: var(--accent-color);
  letter-spacing: 0.18em;
}

.lesson-hero .ja {
  font-size: 0.8rem;
  margin-top: 6px;
  opacity: 0.7;
}*/

/* Lead */
.lesson-lead {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 2;
}

/* Section */
.lesson-section {
  max-width: 720px;
  margin: 0 auto 64px;
}

.lesson-section h2 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Text */
.lesson-section p {
  line-height: 2;
  margin-bottom: 1.4em;
}

/* List */
.lesson-section ul {
  padding-left: 1.2em;
}

.lesson-section li {
  margin-bottom: 0.8em;
  line-height: 1.5;
}

/* Info Box */
.lesson-info {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  font-size: 0.85rem;
  line-height: 1.8;
}

.lesson-info dt {
  font-weight: normal;
  color: var(--text-sub);
}

.lesson-info dd {
  margin: 0 0 12px;
}


/* CTA */
.lesson-cta {
  text-align: center;
  margin: 80px 0 40px;
}

/*next*/
.lesson-next {
  margin: 100px auto 0;
  padding: 60px 20px;
  text-align: center;
  background: rgba(201,160,99,0.08);
}

.next-lead {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: var(--text-sub);
}

.next-title {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.next-text {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 32px;
}

/*reverse*/
.lesson-reverse {
  margin: 80px auto;
  padding: 48px 20px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.reverse-lead {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-sub);
  margin-bottom: 14px;
}

.reverse-title {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.reverse-text {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--text-sub);
  margin-bottom: 28px;
}

/* 控えめボタン */
.btn-sub {
  border-color: var(--text-sub);
  color: var(--text-sub);
}

.btn-sub:hover {
  background: var(--text-sub);
  color: #fff;
}
/* ===== HARAHERI Lesson Detail ===== */

.hr-lesson-wrap {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ブロック */
.hr-lesson-item {
  display: flex;
  align-items: flex-end; 
  gap: 40px;
  margin-bottom: 80px;
}

/* 交互 */
.hr-lesson-item.reverse {
  flex-direction: row-reverse;
}

/* 画像 */
.hr-lesson-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: 0.5s ease;
}


/*小さい画像*/
.hr-lesson-gallery {
  width: 70%;
  max-width: 240px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 1fr); 
  gap: 6px;
  margin-top: auto;
  margin-left: auto;
/*  margin-bottom: 6px;
*/  opacity: 0.85;
}

.hr-lesson-gallery img:first-child {
  grid-row: span 2;
}
.hr-lesson-gallery img {
  width: 100%;
  height: 100%; 
  object-fit: cover;
  border-radius: 6px;
}

/* ほんのり動き */
.hr-lesson-image img:hover {
  transform: scale(1.02);
}

/* テキスト */
.hr-lesson-content {
  max-width: 360px;
  display: flex;
  flex-direction: column;
}

/* タイトル（既存H2に寄せる） */
.hr-lesson-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: normal;
  letter-spacing: 0.05em;
}

/* 本文 */
.hr-lesson-text {
  font-size: 14px;
  line-height: 1.9;
  color: #555; /* 既存より少し薄め */
  margin-bottom: 10px;
}

/* 価格 */
.menu-price {
  font-size: 0.75rem;
  color: #999;
  margin-left: 10px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* 区切りの余白演出 */
.hr-lesson-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #ddd;
  margin: 60px auto 0;
}

.hr-lesson-item {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s;
}

.hr-lesson-item.show {
  opacity: 1;
  transform: translateY(0);
}


/* コースレッスンの表示 */
.hr-menu-block {
  margin-top: 16px;
}

.hr-menu-heading {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 6px;
}

.hr-menu-block ul {
  padding-left: 1em;
}

/*.hr-menu-block li {
  margin-bottom: 4px;
}

*/.hr-menu-block.option {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px dashed #ccc;
}



/* スマホ */
@media screen and (max-width: 768px) {

  .hr-lesson-item {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
  }

  .hr-lesson-item.reverse {
    flex-direction: column;
  }

  .hr-lesson-image img {
    max-width: 100%;
  }

  .hr-lesson-content {
    text-align: left;
  }
  .hr-lesson-gallery {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 80px 0 40px;
  }

  .page-hero {
    margin-bottom: 48px;
  }
  .lesson-section {
  max-width: 720px;
  margin: 0 20px 64px;
}

}

