﻿
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ベース設定 */
.l-container-wrap {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic",
    "Yu Gothic UI", "Yu Gothic Medium", "Meiryo", sans-serif;
  line-height: 1.8;
  color: #333;
}

/* 明朝体クラス */
.mincho {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho",
    "YuMincho", "Times New Roman", serif;
}

/* 共通レイアウト */
.main-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 共通要素 */
img {
  width: 100%;
  height: auto;
}

/* パンくずリスト */
.breadcrumb-container {
  margin: 20px 0;
}

.breadcrumb {
  font-size: 12px;
  color: #666;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* セクションタイトル */
.section-title {
  font-size: 28px;
  font-weight: 500;
  color: #222;
  text-align: center;
  margin-bottom: 25px;
}

/* サブタイトル */
.subtitle {
  font-size: 20px;
  color: #444;
  text-align: center;
  margin-bottom: 10px;
}

/* 説明文 */
.description {
  font-size: 15px;
  color: #666;
  text-align: center;
  margin-bottom: 25px;
}

/* 区切り線 */
.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 60px 0 40px;
}

/* ボタン */
.slider-container .btn {
  background: #c99e03;
  color: #fff;
  padding: 12px 40px;
  border: none;
  font-size: 14px;
  text-decoration: none;
  display: block;
  text-align: center;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  opacity: 0.7;
  color: #fff;
}

/* ヒーローセクション */
.hero-section {
  margin-bottom: 60px;
}

.hero-image img {
  margin-bottom: 40px;
}

.hero-text {
  text-align: center;
}

.hero-text .description {
  text-align: center;
  margin: 0 auto;
}

/* コンテンツ画像 */
.content-image {
  margin: 40px 0;
}

/* スライダーセクション */
.slider-section {
  margin: 40px 0;
}

.slider-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 15px 0;
}

.slider-item {
  min-width: 250px;
  text-align: center;
  flex-shrink: 0;
}

.slider-item .image-container {
  width: 250px;
  height: 250px;
  overflow: hidden;
  margin: 0 auto 12px;
  border-radius: 4px;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-item h4 {
  font-size: 13px;
  font-weight: 300;
  color: #222;
  margin-bottom: 15px;
}

.slider-item p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.slider-item .btn {
  padding: 10px 50px;
  font-size: 12px;
  display: inline-block;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .slider-section {
    margin: 20px 0;
  }

  .slider-container {
    gap: 12px;
    padding: 10px 0;
  }

  .slider-item {
    min-width: 180px;
  }

  .slider-item .image-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 8px;
  }

  .slider-item h4 {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .slider-item p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .slider-item .btn {
    padding: 10px 40px;
    font-size: 12px;
  }
}

/* mobile対応 */
@media (max-width: 768px) {
  .hero-section .description,
  .text-section .description {
    text-align: left;
  }
}

/* テキストセクション */
.text-section {
  margin: 60px 0;
}

/* 風味・香りレベル */
.level {
  text-align: center;
}

.level dt {
  color: #222;
  font-size: 90%;
  line-height: 1;
}

.level-image {
  width: 146px;
  height: 49px;
  display: block;
  margin: 15px auto;
}

/* 余白の設定 */
.target-div {
  padding-top: 0;
  padding-bottom: 5rem;
}
