/* 夢コロッケページ専用スタイル（indexの文字サイズ感に合わせる） */

/* セクション見出し（夢コロッケ / キャッチ / 導入） */
.section-head.dream-head {
  padding-bottom: 32px;
}

.dream-title {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 12px;
}

.dream-catch {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 16px;
}

.dream-intro {
  font-size: 15px;
  line-height: 1.9;
  color: var(--base);
  font-weight: normal;
  margin-bottom: 0;
}

/* ４つの秘密 */
.dream-secrets {
  margin-bottom: 40px;
}

/* 4つの秘密・横100％（プリント例の上） */
.dream-secrets-full {
  width: 100%;
  max-width: 100%;
  margin-top: 48px;
  margin-bottom: 48px;
  padding-top: 32px;
  padding-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.dream-secrets-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}

.dream-secrets-full .dream-secret-item {
  margin-bottom: 0;
  padding: 24px 20px;
  background: var(--light-yellow);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.dream-secrets-full .dream-secret-item:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .dream-secrets-row {
    grid-template-columns: 1fr;
  }
}

.dream-secrets-main {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 24px;
}

.dream-secrets-sub {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 28px;
}

.dream-secret-item {
  margin-bottom: 28px;
}

.dream-secret-item:last-of-type {
  margin-bottom: 0;
}

.dream-secret-title {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 茶色い丸の中に白文字で01など（ベース色を参照） */
.dream-secret-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--base);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}

.dream-secret-item p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--base);
  font-weight: normal;
  margin-bottom: 12px;
}

.dream-secret-item p:last-child {
  margin-bottom: 0;
}

.dream-secret-note {
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 12px;
}

/* CTA（小ロット・ご相談） */
.dream-cta {
  margin-top: 40px;
  margin-bottom: 24px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
}

.dream-cta-lead {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 8px;
}

.dream-cta-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--base);
  font-weight: normal;
  margin-bottom: 0;
}

/* サンプル注釈 */
.dream-disclaimer {
  font-size: 13px;
  line-height: 1.8;
  color: var(--base);
  font-weight: normal;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

.product-detail-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.product-detail-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  padding: 14px 0;
}

.product-detail-image img {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}

/* 2枚並んだ場合の上下余白 */
.product-detail-image img + img {
  margin-top: 30px;
}

.product-detail-text h3 {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--base);
  margin-top: 30px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
}
.product-detail-text h3::before {
  content: '●';
  color: #7a3a00;
  margin-right: 8px;
}

.product-detail-text h3:first-child {
  margin-top: 0;
}

.product-detail-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.product-detail-text li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid #fffef5;
}

.product-detail-text li:last-child {
  border-bottom: none;
}

.product-detail-text li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.product-detail-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--base);
  margin-bottom: 24px;
}

.product-detail-lead {
  margin-bottom: 20px;
}

/* 特徴を横並び */
.dream-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.dream-feature-item {
  padding: 20px;
  background: var(--light-yellow);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.dream-feature-item h4 {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--base);
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
}

.dream-feature-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--base);
  margin: 0;
}

@media (max-width: 900px) {
  .dream-features-row {
    grid-template-columns: 1fr;
  }
}

/* 夢コロッケメイン画像 */
.dream-main-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* プリント例ギャラリー */
.dream-image-gallery {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.dream-gallery-title {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
}

.dream-gallery-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dream-gallery-list li {
  margin: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f5f0e6;
}

.dream-gallery-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dream-gallery-note {
  font-size: 13px;
  color: var(--base);
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 768px) {
  .dream-gallery-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 開発ストーリーセクション */
.product-story-section {
  margin-top: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
}

.product-story-section h3 {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  margin-top: 0;
}

.story-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--base);
  margin-bottom: 20px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

/* 実績セクション */
.product-achievement-section {
  margin-top: 0;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
}

.product-achievement-section + .product-achievement-section {
  margin-top: 60px;
}

.product-achievement-section h3 {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  margin-top: 0;
}

#product-list .feature-lead {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 20px;
}

.achievement-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


.development-products .product-achievement-section h3 {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  margin-top: 0;
}

.development-products .achievement-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#product-list .achievement-item.achievement-item-full {
  width: 100%;
}
#product-list .inner > .achievement-item.achievement-item-full {
  background: transparent;
  padding: 0;
}

#product-list .achievement-content-vertical {
  grid-template-columns: 1fr;
}
#product-list .achievement-content-vertical .achievement-item-full h4 {
  padding-left: 16px;
  border-left: 4px solid var(--yellow);
  margin-bottom: 12px;
}

.achievement-item {
  padding: 20px;
  background: var(--light-yellow);
  border-radius: 8px;
}

#product-list .achievement-jisseki .achievement-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.development-products .achievement-item h4 {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 0px;
  margin-top: 0;
}

/* 「形もサイズも、思いのままに。」の見出しを少し大きく */
.development-products .achievement-item-large-title h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.achievement-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--base);
  margin: 0;
}

/* アンケートセクション */
.product-survey-section {
  margin-top: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
}

.product-survey-section h3 {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  margin-top: 0;
}

.survey-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}

.survey-placeholder {
  padding: 40px;
  background: var(--light-yellow);
  border-radius: 8px;
  text-align: center;
}

.survey-placeholder p {
  font-size: 16px;
  color: var(--base);
  margin: 0;
}

/* お問い合わせボタン */
.product-contact-btn-wrapper {
  margin-top: 40px;
  text-align: center;
}

#product-list .product-contact-btn {
  position: relative;
  display: inline-block;
  background: var(--base);
  color: #fff;
  padding: 16px 70px 16px 58px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
}

#product-list .product-contact-btn::before {
  content: '';
  position: absolute;
  top: calc(50% - 0.75px);
  right: 20px;
  transform: translateY(calc(-50% - 0.75px)) rotate(30deg);
  width: 6px;
  height: 1.5px;
  background-color: #fff;
  transition: 0.3s;
}

#product-list .product-contact-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 1.5px;
  background-color: #fff;
  transition: 0.3s;
}

#product-list .product-contact-btn:hover {
  background: var(--deep-red);
}

#product-list .product-contact-btn:hover::before {
  right: 15px;
}

#product-list .product-contact-btn:hover::after {
  right: 15px;
}

@media (max-width: 767px) {
  .dream-title {
    font-size: 24px;
  }

  .dream-catch {
    font-size: 16px;
  }

  .dream-intro {
    font-size: 14px;
  }

  .dream-secrets-main {
    font-size: 18px;
  }

  .dream-secrets-sub {
    font-size: 15px;
  }

  .dream-secret-title {
    font-size: 16px;
  }

  .dream-secret-item p {
    font-size: 14px;
  }

  .dream-cta-lead {
    font-size: 15px;
  }

  .dream-cta-sub {
    font-size: 14px;
  }

  .dream-disclaimer {
    font-size: 12px;
    padding: 12px 16px;
  }

  .product-detail-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .product-detail-image {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .product-detail-text h3 {
    font-size: 20px;
    margin-top: 24px;
  }
  
  .product-detail-text p {
    font-size: 15px;
  }

  .product-story-section,
  .product-achievement-section,
  .product-survey-section {
    padding: 24px 16px;
    margin-top: 30px;
  }

  .product-story-section h3,
  .product-achievement-section h3,
  .product-survey-section h3 {
    font-size: 20px;
  }

  .story-content p {
    font-size: 15px;
  }

  .achievement-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achievement-item {
    padding: 16px;
  }

  .achievement-item h4 {
    font-size: 16px;
  }

  .achievement-item p {
    font-size: 14px;
  }

  .survey-placeholder {
    padding: 30px 20px;
  }

  .survey-placeholder p {
    font-size: 15px;
  }

  #product-list .product-contact-btn {
    padding: 14px 50px 14px 36px;
    font-size: 15px;
  }
}
