<style>
/* ===================================== */
/*   +mugi LP 基本デザイン（統一版）   */
/* ===================================== */

#mugi-lp{
  --teal:#8dc4c6;
  --ink:#333;
  --soft:#eff6f7;
  --cta:#c1272d;
  --line:#e3e9ea;
  font-family:"Noto Sans JP",sans-serif;
  color:var(--ink);
}
#mugi-lp section{
  max-width:1080px;
  margin:56px auto;
  padding:0 16px;
  box-sizing:border-box;
}
#mugi-lp img{
  max-width:100%;
  height:auto;
  display:block;
  border:none;
}
#mugi-lp .divider{
  border:0;
  border-top:1px solid #e2e2e2;
  margin:40px auto;
  max-width:960px;
}

/* タイトル・テキスト */
#mugi-lp .eyebrow{
  color:var(--teal);
  font-size:18px;
  font-weight:700;
  text-align:center;
  letter-spacing:.06em;
  margin:0 0 8px;
}

#mugi-lp .eyebrow-2{
  font-size:18px;
  font-weight:700;
  text-align:center;
  letter-spacing:.06em;
  margin-bottom:-10px;
}

#mugi-lp .lead-eyebrow{
  font-size:16px;
  color:#555;
  line-height:1.9;
}
#mugi-lp .title{
  font-size:28px;
  font-weight:700;
  text-align:center;
  line-height:1.6;
  margin:0 0 24px;
}

/* =====================
   冒頭：お悩みセクション
   ===================== */
/* 悩みセクション */
.troubles-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.troubles-section .section-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #6cc5c9;
    margin-bottom: 40px;
    line-height: 1.4;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
}

.solution-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.4;
}

.troubles-content {
    display: block;
}

.troubles-list {
    max-width: 100%;
    width: 600px;
    margin: 0px auto;
    margin-bottom: 40px;
}

.trouble-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 5px;
    border-bottom: 5px solid #eee;
}

.trouble-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.trouble-icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.trouble-icon img {
    width: 50px;
    height: auto;
}

.trouble-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.solution-content {
    text-align: center;
}

.solution-text {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
}

.solution-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.solution-image{
    margin-top:20px;
    text-align:center;   /* ← これで中央揃え */
}

.solution-image img{
    display:inline-block;
    margin:0 auto;
}


.solution-image img {
    width: 500px;
    height: auto;
}









/* ブランドストーリー */
.brand-story {
    padding: 80px 0;
}

.brand-subtitle {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #6cc5c9;
    margin-bottom: 10px;
}

.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 50px;
}

.commitments-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* ===== PCレイアウト ===== */
/* 画像左・テキスト右で横並び（参考画像と同じ） */
.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.commitment-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.commitment-image img {
    width: 100%;
    height: auto;
    display: block;
}

.commitment-content {
    flex: 1;
}

.commitment-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.commitment-header img {
    width: 80px;          /* こだわりマークのサイズ */
    height: auto;
    flex-shrink: 0;
}

.commitment-title {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.commitment-text {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin: 0;
}

/* ===== SPレイアウト ===== */
@media (max-width: 768px) {
    .brand-story {
        padding: 50px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .commitments-grid {
        gap: 40px;
    }

    /* 1つずつ縦並びにして、画像 → こだわり丸 → タイトル・テキストの順 */
    .commitment-item {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .commitment-image {
        max-width: 100%;
        width: 100%;
    }

    .commitment-content {
        width: 100%;
        max-width: 100%;
    }

    .commitment-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .commitment-header img {
        width: 80px;
margin-top:-50px;
    }

    .commitment-title {
        font-size: 17px;
        text-align: center;
        line-height: 1.7;
    }

    .commitment-text {
        font-size: 13px;
        line-height: 1.9;
        text-align: center;
        padding: 0 10px;  /* 文章の左右に少し余白 */
    }
}


















/* =====================
   商品ラインナップ
   ===================== */
#mugi-lp .products .title{
  margin-bottom:24px;

}

/* 見出し下にアクセントライン */
#mugi-lp .products .section-title::after {
  content: "";
  display: block;
  width: 80px;               /* 線の長さ */
  height: 6px;               /* 線の太さ */
  background-color: #c7b299; /* ベージュライン */
  margin: 12px auto 28px;    /* 上下の余白 */
  border-radius: 2px;
}

#mugi-lp .products-inner{
  background:#f8f6f4;
  border-radius:24px;
  padding:32px 20px 36px;
  box-sizing:border-box;
padding: 50px;  

}
#mugi-lp .lineup-main{
  text-align:center;
  margin:0 auto 24px;
}
#mugi-lp .lineup-main img{
  max-width:360px;
  margin:0 auto 12px;
}
#mugi-lp .lineup-main h3{
  font-size:18px;
  font-weight:700;
  margin:0 0 4px;
}
#mugi-lp .lineup-main p{
  font-size:14px;
  margin:0;
}

/* 6商品グリッド */
#mugi-lp .grid.six{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
#mugi-lp .grid.six .card{
  text-align:left;
}
#mugi-lp .grid.six .card img{
  margin:0 auto 10px;
}
#mugi-lp .grid.six .card h3{
  font-size:16px;
  font-weight:700;
  margin:0 0 4px;
}
#mugi-lp .grid.six .card p{
  font-size:13px;
  line-height:1.8;
  margin:0;
}





/* =========================
   お客様の声（+mugi LP）
   ========================= */

#mugi-lp .voices {
  max-width: 980px;
  margin: 56px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* タイトルまわり */
#mugi-lp .voices .eyebrow.accent {
  color: #79c8cd;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 4px;
}

#mugi-lp .voices .section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 32px;
}

/* ベース（1件分の枠） */
#mugi-lp .voices .voice {
  position: relative;
  margin: 0 0 32px;
}

/* 吹き出し：人物にかぶりつつ、内側にゆったり余白 */
#mugi-lp .voices .voice .bubble {
  position: relative;
  z-index: 1;
  margin-left: -42px;
  padding: 26px 40px 72px 100px;  /* 右・下は余白多め：テキスト＋バッジ用 */
  background: #fff;
  border: 3px solid #8dc4c6;
  border-radius: 28px;
  box-sizing: border-box;
}

/* イラスト（枠より手前に重ねる） */
#mugi-lp .voices .voice .icon {
  position: relative;
  z-index: 3;
}

#mugi-lp .voices .voice .icon img {
  width: 108px;
  height: auto;
}

/* テキスト */
#mugi-lp .voices .voice .bubble p {
  font-size: 16px;
  line-height: 2.0;
  margin: 0 0 10px;
  text-align: left;
}

/* 年代・属性バッジ（枠の中、左寄せ） */
#mugi-lp .voices .voice .bubble .meta {
  position: absolute;
  left: 100px;
  bottom: 18px;
  background: #8dc4c6;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* ===== スマホ調整（アイコン小さく＆枠線にかぶせる） ===== */
@media (max-width: 768px) {
  #mugi-lp .voices {
    margin: 40px auto;
  }

  #mugi-lp .voices .section-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  /* 1件ごとのレイアウト */
  #mugi-lp .voices .voice {
    position: relative;
    margin-bottom: 28px;
  }

  /* 吹き出し本体：画面ほぼいっぱい＋左側に余白 */
  #mugi-lp .voices .voice .bubble {
    margin-left: 32px;                /* 左に少しだけ寄せる */
    padding: 24px 18px 60px 46px;     /* 左はアイコン分のスペース */
    border-radius: 24px;
  }

  /* アイコン：小さくして枠線に半分かぶせる */
  #mugi-lp .voices .voice .icon {
    position: absolute;
    left: 8px;                        /* 枠から少し外に出す感じ */
    top: 18px;
    z-index: 3;
  }

  #mugi-lp .voices .voice .icon img {
    width: 64px;                      /* PCより小さめ */
    height: auto;
  }

  /* テキスト */
  #mugi-lp .voices .voice .bubble p {
    font-size: 14px;
    line-height: 1.9;
  }

  /* 年齢バッジ：テキスト左揃えのまま、下側に配置 */
  #mugi-lp .voices .voice .bubble .meta {
    left: 46px;                       /* テキストとそろえる */
    bottom: 14px;
    padding: 8px 18px;
    font-size: 13px;
  }
}

/* ===== PC（769px〜） 全員同じ幅に揃える ===== */
@media (min-width: 769px) {

  /* 1件ごとのベース：左にアイコン用の余白を確保 */
  #mugi-lp .voices .voice {
    position: relative;
    display: block;
    padding-left: 160px;      /* ← ここでコンテンツ全体を右に寄せる */
    margin-bottom: 32px;
  }

  /* アイコン：全員まったく同じ位置に配置 */
  #mugi-lp .voices .voice .icon {
    position: absolute;
    left: 48px;               /* 枠線に少しかぶる位置 */
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
  }

  #mugi-lp .voices .voice .icon img {
    width: 118px;
    height: auto;
  }

  /* 吹き出し：幅100%にして「1人目だけ狭い」を解消 */
  #mugi-lp .voices .voice .bubble {
    margin: 0;                /* ← ここで margin-left の影響をリセット */
    width: 100%;
    padding: 26px 40px 72px 40px; /* 左右の内側余白 */
    box-sizing: border-box;
  }

  /* テキスト */
  #mugi-lp .voices .voice .bubble p {
    font-size: 16px;
    line-height: 2.0;
  }

  /* 年齢バッジ：テキストに揃えて左寄せ */
  #mugi-lp .voices .voice .bubble .meta {
    left: 40px;               /* テキストの行頭と揃える */
    bottom: 18px;
    padding: 10px 22px;
    font-size: 14px;
  }
}













/* =====================
   お知らせ（+mugi版）
   ===================== */
#mugi-lp .info__section{
  width: 100%;        /* ← 100%幅に変更 */
  max-width: none;    /* ← 制限解除 */
  margin: 56px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

#mugi-lp .info-inner{
  text-align: center;
}

/* 上のタイトル「『+mugi』からの」 */
#mugi-lp .info__section .eyebrow.accent{
  font-size: 14px;
  letter-spacing: .1em;
  margin: 0 0 2px;    /* ← 余白をさらに狭く */
}

/* 大きいタイトル */
#mugi-lp .info__section .section-title{
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 16px;    /* ← タイトル下の余白を調整 */
}

/* カード背景 */
#mugi-lp .info__section .info-card{
  background: #f7f7f7;
  border-radius: 16px;
  padding: 14px 22px 10px;
  box-sizing: border-box;

  margin: 0 auto;      /* 中央寄せ */
}

/* テーブルの見た目 */
#mugi-lp .info__section .info-table{
  width: 100%;
  border-collapse: collapse;
}

#mugi-lp .info__section .info-table tr + tr{
  border-top: 1px solid #e2e2e2;
}

#mugi-lp .info__section .info-table td{
  padding: 12px 6px;
  font-size: 14px;
  vertical-align: middle;
}

/* 日付 */
#mugi-lp .info__section .info-date-cell{
  width: 140px;
  white-space: nowrap;
  text-align: left;
  color: #999;
}

#mugi-lp .info__section .info-list__date{
  font-size: 13px;
  color: #999;
}

/* テキスト */
#mugi-lp .info__section .info-text-cell{
  text-align: left;
}

#mugi-lp .info__section .info-list__txt{
  color: #555;
  text-decoration: none;
}

#mugi-lp .info__section .info-list__txt:hover{
  text-decoration: underline;
}

/* さらに見る */
#mugi-lp .info__section .info-more{
  margin: 10px 0 0;
  text-align: right;
}

#mugi-lp .info__section .info-more a{
  font-size: 12px;
  color: #777;
  text-decoration: none;
}

#mugi-lp .info__section .info-more a::after{
  content: " ＞";
  font-size: 11px;
}

#mugi-lp .info__section .info-more a:hover{
  text-decoration: underline;
}

/* スマホ調整 */
@media (max-width: 768px){
  #mugi-lp .info__section{
    margin: 40px auto;
    padding: 0 12px;
  }

  #mugi-lp .info__section .section-title{
    font-size: 20px;
    margin-bottom: 12px;
  }

  #mugi-lp .info__section .info-card{
    padding: 12px 14px 8px;
    border-radius: 12px;
  }

  #mugi-lp .info__section .info-table td{
    padding: 8px 4px;
    font-size: 12px;
  }

  #mugi-lp .info__section .info-date-cell{
    width: 96px;
  }
}







/* =====================
   ガイド（画像1個バージョン）
   ===================== */
#mugi-lp .guide{
  max-width: 1080px;
  margin: 30px auto;
  padding: 0 16px;
  text-align: center;
  box-sizing: border-box;
}

/* 上の小見出し */
#mugi-lp .guide .eyebrow{
  color: var(--teal);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

/* タイトル */
#mugi-lp .guide .title{
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 26px;
}

/* 画像1個：中央に大きく表示 */
#mugi-lp .guide .circle-grid{
  display: flex;
  justify-content: center;
  margin: 0 0 24px;
  padding: 0;
}

#mugi-lp .guide .circle-grid img{
  display:block;
  width:100%;         /* 親幅に合わせて縮小 */
  max-width:600px;    /* PCでの上限サイズ */
  height:auto;        /* ← 縦横比を必ず維持 */
  margin:0 auto;
}

/* CTA */
#mugi-lp .guide .cta-wrap{
  text-align: center;
  margin-top: 8px;
}

#mugi-lp .guide .cta{
  display: inline-block;
  padding: 10px 32px;
  min-width: 180px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

#mugi-lp .guide .cta:hover{
  opacity: .9;
}

/* スマホ調整 */
@media (max-width: 768px){
  #mugi-lp .guide{
    margin: 40px auto;
  }

  #mugi-lp .guide .title{
    font-size: 20px;
    margin-bottom: 20px;
  }

  /* スマホでも比率を保ったまま少し小さく */
  #mugi-lp .guide .circle-grid img{
    max-width:260px;   /* 好みに応じて 240〜300px くらいで調整OK */
    width:100%;
    height:auto;
  }

  #mugi-lp .guide .cta{
    min-width: 160px;
    padding: 9px 26px;
    font-size: 13px;
  }
}








/* =====================
   会員特典
   ===================== */
#mugi-lp .member{
  max-width:1080px;
  margin:56px auto;
  padding:0 16px;
  box-sizing:border-box;
}

#mugi-lp .member-inner{
  background:#fff7f4;        /* 全体の淡いピンク */
  border-radius:24px;
  padding:32px 0px 34px 0px;
  text-align:center;
}

#mugi-lp .member-title{
  font-size:22px;
  font-weight:700;
  margin:0 0 22px;
}

/* 4つの特典カード */
#mugi-lp .member-cards{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;                       /* カードの間は線で区切るのでgap 0 */
  margin-bottom:22px;
}

#mugi-lp .member-card{
  padding:0 18px;
  box-sizing:border-box;
  border-left:1px solid #f1c8b9;
}

#mugi-lp .member-card:first-child{
  border-left:none;            /* 左端だけ線ナシ */
}

#mugi-lp .member-card img{
  max-width:140px;
  margin:0 auto 8px;
  display:block;
}

#mugi-lp .member-card p{
  font-size:13px;
  line-height:1.7;
  margin:0;
}

/* 会員登録ボタン：中央のピンクボタン */
#mugi-lp .member .cta-wrap{
  text-align:center;
  margin-top:4px;
}

#mugi-lp .member .cta{
  display:inline-block;
  min-width:200px;
  padding:10px 32px;
  border-radius:999px;
  background:#f58f8f;          /* 添付に近いコーラルピンク */
  color:#fff;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}

#mugi-lp .member .cta:hover{
  opacity:.9;
}

/* ===== スマホ・タブレット調整 ===== */
@media (max-width: 900px){
  #mugi-lp .member-inner{
    padding:28px 5px 30px;
  }

  /* 2列×2段に */
  #mugi-lp .member-cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
    row-gap:18px;
  }

  #mugi-lp .member-card{
    border-left:none;
    border-top:1px solid #f1c8b9;
    padding:12px 12px 0;
  }

  #mugi-lp .member-card:nth-child(1),
  #mugi-lp .member-card:nth-child(2){
    border-top:none; /* 上段は線ナシ */
  }
}

@media (max-width: 600px){
  /* 1列にして読みやすく */
  #mugi-lp .member-cards{
    grid-template-columns:1fr;
  }

  #mugi-lp .member-card{
    border-top:1px solid #f1c8b9;
    padding:12px 6px 0;
  }

  #mugi-lp .member-card:first-child{
    border-top:none;
  }

  #mugi-lp .member-title{
    font-size:20px;
    margin-bottom:18px;
  }

  #mugi-lp .member .cta{
    min-width:180px;
    font-size:13px;
  }
}



/* ==========================
   会員特典 タイトル（添付再現版）
   ========================== */

/* タイトル本体 */
#mugi-lp .member-title{
  font-size:32px;
  font-weight:700;
  color:#e8817f;          /* 添付の濃いめピンク寄りコーラル */
  text-align:center;
  margin:0 0 12px;
  line-height:1.1;
  position:relative;
}

/* 下の太いライン */
#mugi-lp .member-title::after{
  content:"";
  display:block;
  width:170px;           /* ラインの長さ ※変更可 */
  height:12px;           /* ラインの太さ */
  background:#f5e7d3;    /* ベージュライン */
  margin:10px auto 24px; /* 上下余白 */
  border-radius:2px;
}

/* スマホ調整 */
@media(max-width:768px){
  #mugi-lp .member-title{
    font-size:26px;
    margin-bottom:8px;
  }
  #mugi-lp .member-title::after{
    width:130px;
    height:10px;
    margin:8px auto 18px;
  }
}








/* =====================
   クロージング（最終版）
   ===================== */

#mugi-lp .closing{
  text-align:center;
  margin:56px auto;
  padding:0 16px;
  box-sizing:border-box;
}

#mugi-lp .closing .title{
  margin-bottom:20px;
  font-size:26px;
  font-weight:700;
  line-height:1.6;
}

/* PC・スマホ共通：縦横比を必ず維持 */
#mugi-lp .closing-img{
  display:block;
  width:100%;
  max-width:550px;         /* PCでの上限 */
  height:auto !important;  /* ← これが最重要！！ */
  margin:0 auto;
}

/* =====================
   スマホ（〜768px）
   ===================== */
@media (max-width:768px){
  #mugi-lp .closing{
    margin:40px auto;
  }

  #mugi-lp .closing .title{
    font-size:20px;
    margin-bottom:16px;
  }

  /* スマホ版画像：比率維持＋少し小さめ */
  #mugi-lp .closing-img{
    max-width:320px;        /* スマホでの最大幅 */
    width:100%;
    height:auto !important; /* ← 再度強制しておく */
  }
}





/* =====================
   スマホ調整
   ===================== */
@media (max-width:768px){
  #mugi-lp section{
    margin:40px auto;
  }
  #mugi-lp .title{
    font-size:22px;
  }
  #mugi-lp .eyebrow{
    font-size:15px;
  }
  #mugi-lp .trouble-list li{
    font-size:13px;
  }
 






  #mugi-lp .products-inner{
    padding:24px 14px 28px;
  }
  #mugi-lp .lineup-main img{
    max-width:100%;
  }
  #mugi-lp .grid.six{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  #mugi-lp .circle-grid{
    flex-wrap:wrap;
  }
  #mugi-lp .member-cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:480px){
  #mugi-lp .grid.six{
    grid-template-columns:1fr;
  }
  #mugi-lp .member-cards{
    grid-template-columns:1fr;
  }
}





#mugi-lp .closing-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
margin-top:50px;
}
#mugi-lp.closing-card img{
  border-radius:10px;
}

</style>