/* RAW-FIT 基本デザイン */

/* --- ベーススタイル --- */
        :root {
            --primary-color: #2b3a30; /* アースグリーン */
            --accent-color: #d4a373;  /* ゴールドベージュ（アクセント） */
            --dark-color: #1a1a1a;    /* チャコールグレー */
            --light-color: #faf9f6;   /* オフホワイト（背景） */
            --white: #ffffff;
            --gray: #707070;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', sans-serif;
        }

        body {
            background-color: var(--light-color);
            color: var(--dark-color);
            line-height: 1.6;
        }

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

        li {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- ヘッダー --- */
        header {
            background-color: var(--white);
            border-bottom: 1px solid #e0e0e0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 2px;
            color: var(--primary-color);
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        /* --- ヒーローセクション --- */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('https://unsplash.com') no-repeat center center/cover;
            height: 80vh;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
        }

        .hero-content {
            width: 100%;
        }

        .hero h1 {
            font-size: 48px;
            letter-spacing: 4px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero p {
            font-size: 18px;
            letter-spacing: 1px;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--white);
            padding: 15px 40px;
            font-size: 16px;
            font-weight: bold;
            letter-spacing: 1px;
            border-radius: 4px;
            transition: background-color 0.3s, transform 0.2s;
        }

        .btn:hover {
            background-color: #bd8e60;
            transform: translateY(-2px);
        }

        /* --- セクション共通 --- */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 28px;
            letter-spacing: 2px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .section-subtitle {
            text-align: center;
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 50px;
            letter-spacing: 1px;
        }

        /* --- 特徴（3つのこだわり） --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: var(--white);
            padding: 40px 30px;
            text-align: center;
            border-radius: 6px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .feature-card p {
            font-size: 14px;
            color: var(--gray);
            text-align: left;
            line-height: 1.8;
        }

        /* --- スターターセット（イチオシ） --- */
        .starter-pack {
            background-color: #f0ede6;
        }

        .starter-flex {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .starter-image {
            flex: 1;
            min-width: 300px;
        }

        .starter-image img {
            width: 100%;
            border-radius: 6px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .starter-info {
            flex: 1;
            min-width: 300px;
        }

        .starter-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .starter-info ul {
            margin-bottom: 30px;
        }

        .starter-info li {
            font-size: 15px;
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .starter-info li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        .price-box {
            margin-bottom: 30px;
        }

        .price-label {
            font-size: 12px;
            color: var(--gray);
        }

        .price-amount {
            font-size: 32px;
            font-weight: bold;
            color: var(--dark-color);
        }

        .price-note {
            font-size: 12px;
            color: #c94a4a;
            font-weight: bold;
        }

        /* --- コンセプト --- */
        .concept-text {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 16px;
            line-height: 2;
            color: #333;
        }

        /* --- フッター --- */
        footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 40px 0;
            text-align: center;
            font-size: 12px;
            letter-spacing: 1px;
        }

        footer p {
            color: #888;
        }

        /* --- レスポンシブ対応 --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 32px; }
            .hero p { font-size: 14px; }
            .starter-flex { flex-direction: column; gap: 30px; }
            .nav-links { gap: 15px; }
            .nav-links a { font-size: 12px; }
        }

/* スターターセット追加スタイル */

/* ページ全体のスクロールをなめらかにする設定 */
html {
  scroll-behavior: smooth;
}

/* リンクテキストの見た目調整 */
.scroll-link {
  color: #007bff;
  text-decoration: underline;
  font-weight: bold;
}
.scroll-link:hover {
  color: #0056b3;
}

/* 選択エリア全体のボックス */
.starter-set-box {
  margin: 40px auto 20px;
  padding: 25px;
  max-width: 500px;
  border: 2px solid #333;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.starter-set-box h3 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
}

/* 各選択項目の間隔 */
.selection-group {
  margin-bottom: 20px;
}
.selection-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 14px;
}

/* プルダウンの装飾 */
#flavor-select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
}

/* サイズのラジオボタン本体は非表示にする */
.size-options input[type="radio"] {
  display: none;
}

/* サイズ選択用の横並びボタン */
.size-options {
  display: flex;
  gap: 15px;
}
.size-button {
  flex: 1;
  text-align: center;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.size-button:hover {
  background-color: #f5f5f5;
}

/* ボタンが選択（チェック）されたときのデザイン */
.size-options input[type="radio"]:checked + .size-button {
  border-color: #333;
  background-color: #333;
  color: #fff;
  font-weight: bold;
}

/* 申し込みボタン（サンプル） */
.submit-button {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #e63946;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}
.submit-button:hover {
  background-color: #cb2d3a;
}

/* 商品画像プレビュー */
.selection-preview-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.selection-preview-row .selection-control {
  flex: 1;
  margin-bottom: 0;
  min-width: 0;
}

.selection-preview-row select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
}

.product-preview {
  width: 180px;
  height: 180px;
  flex: 0 0 180px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #888;
  font-size: 12px;
  line-height: 1.5;
}

.product-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .selection-preview-row {
    gap: 10px;
  }

  .product-preview {
    width: 130px;
    height: 130px;
    flex-basis: 130px;
  }
}


/* ABOUT BRAND visual section */
.about-brand-visual {
  padding: 0;
  margin: 0;
  background: #f7f7f5;
}

.about-brand-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-brand-visual img {
    width: 100%;
    height: auto;
  }
}
