/* フォント設定 */
main, main * {
  font-family: "Zen Maru Gothic", sans-serif;
}
.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
}
.m-plus-1p-medium {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
}
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
}

/* レイアウト：中央寄せ用 narrow ラッパー */
.wrapper-narrow {
  max-width: 1580px;
  margin: 0 auto;
  padding: 70px 200px;
  box-sizing: border-box;
}

.wrapper-narrow02 {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 16px;
  box-sizing: border-box;
}

/* 全面背景付きのラッパー（黄色など） */
.wrapper-full {
  width: 100%;
  padding: 32px 0;
  background-color: #F8DAB2;
  box-sizing: border-box;
}
.wrapper-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* 見出しスタイル */
.midashi01 {
  font-size: 28px;
  color: #231815;
  margin-bottom: 10px;
}
.midashi02 {
  font-size: 42px;
  font-weight: bold;
  color: #E95062;
  margin-bottom: 24px;
}
.midashi03 {
  font-size: 32px;
  font-weight: bold;
  color: #E95513;
  margin: 36px 0 16px;
}
.midashi04 {
  font-size: 30px;
  font-weight: bold;
  color: #E95513;
  text-align: center;
  margin: 48px 0 24px;
}

/* ボタン */
.button01 {
  border: none;
  background-color: #F6A63E;
  color: #fff;
  text-align: center;
  padding: 12px;
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 24px auto;
  border-radius: 6px;
  font-size: 15px;
}
.button01:hover {
  background: #ffbd9f;
  color: #fff;
}

/* カラム構造 */
.box01margin {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 50px;
}

.box01margin > .box02margin {
  flex: 0 1 50%;
  padding: 8px 16px;
}

.box01margin > .box02margin:first-child {
  text-align: left;
}

/* 共通画像サイズ調整 */
.content-img,
.small-img,
.step-img,
.midashi-img {
  display: block;
  height: auto;
}
.content-img {
  max-width: 440px;
  width: 100%;
}
.small-img {
  max-width: 240px;
  width: 100%;
}
.midashi-img {
  max-width: 720px;
  width: 100%;
}
.step-img {
  max-height: 220px;
  max-width: 100%;
  width: auto;
}

/* YouTubeラッパー */
.youtube-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.youtube-container {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.youtube-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 使用リスト */
.use_list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.use_list li {
  padding-left: 1.2em;
  text-indent: -1.2em;
  margin-bottom: 6px;
  line-height: 1.5;
}

.step-note {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin: 40px auto;
  line-height: 1.8;
  max-width: 720px;
  padding: 0 16px;
}

/* STEPリスト全体 */
.step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-box {
  background: #fff5e8;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.step-arrow::after {
  content: "▼";
  font-size: 20px;
  color: #F28C28;
  margin-top: 8px;
}

.step-label {
  display: inline-block;
  background: linear-gradient(to bottom, #f05a28, #d84315);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

/* レスポンシブ対応 */
/* --- スマホ最適化用のブラッシュアップCSS --- */

@media screen and (max-width: 600px) {

  /* 基本余白・マージン調整 */
  .wrapper-narrow,
  .wrapper-narrow02,
  .wrapper-full,
  .wrapper-inner {
    padding: 24px 12px;
  }

  /* 見出しサイズ調整 */
  .midashi01 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .midashi02 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .midashi03 {
    font-size: 20px;
    margin: 24px 0 12px;
  }

  .midashi04 {
    font-size: 18px;
    margin: 32px 0 16px;
  }

  /* テキストサイズの最適化 */
  p, li, .step-note, .pf-info-list {
    font-size: 14px !important;
    line-height: 1.7;
  }

  /* ボタンサイズ・レイアウト調整 */
  .button01,
  .pf-button {
    font-size: 14px;
    padding: 10px 16px;
    width: 100%;
    max-width: 280px;
    margin: 16px auto;
  }

  /* 画像調整 */
  .content-img,
  .small-img,
  .step-img,
  .midashi-img {
    max-width: 100%;
    height: auto;
  }

  .step-img {
    max-height: 120px;
  }

  .small-img {
    max-width: 200px;
    margin: 0 auto;
  }

  /* カラム → 縦積み */
  .box01margin {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .box01margin > .box02margin {
    padding: 0;
    width: 100%;
    text-align: center;
  }

  /* STEP構成の補足調整 */
  .step-box {
    padding: 12px;
  }

  .step-label {
    font-size: 13px;
    padding: 4px 10px;
  }

  .step-arrow::after {
    font-size: 14px;
    margin: 8px 0;
  }

  /* YouTubeラッパー */
  .youtube-container {
    padding: 0;
    max-width: 100%;
  }

  /* 最下部セクション：画像とテキスト */
  .pf-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 24px 12px;
    gap: 24px;
  }

  .pf-button {
    font-size: 13px;
  }

  .pf-image {
    max-width: 100px;
    height: auto;
    margin: 0 auto;
  }
}

body, html, main {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* --- ポケットファーマシー最終セクション --- */
/* セクション全体レイアウト */
.pf-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 880px;
  margin: 40px auto 80px;
  padding: 30px 50px;
  gap: 40px;
  flex-wrap: wrap;
  background: #fff5e8;
}

/* 左側テキストエリア */
.pf-text-box {
  flex: 1;
  min-width: 380px;
  padding-top: 8px;
}

.pf-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

/* ボタン */
.pf-button {
  display: inline-block;
  background-color: #F6A63E;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 20px;
  transition: background-color 0.3s;
}
.pf-button:hover {
  background-color: #ffbd9f;
}

/* 情報リスト */
.pf-info-list {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

/* 右側画像 */
.pf-image-box {
  flex-shrink: 0;
}

.pf-image {
  max-width: 150px;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  /* 最下部セクション：画像とテキスト */
  .pf-wrapper {
    flex-direction: column;
    text-align: center; /* ← 追加：全体中央寄せ */
    padding: 24px 12px;
    gap: 24px;
  }

  .pf-image-box {
    width: 100%;
    display: flex;
    justify-content: center; /* ← 追加：画像ボックス内の中央寄せ */
  }

  .pf-image {
    max-width: 100px;
    height: auto;
    margin: 0 auto; /* ← 追加：保険的に中央寄せ */
  }

  .pf-button {
    font-size: 13px;
  }
}


/*⑦メリットリストのCSS*/
.feature-box {
  display: flex;
  align-items: center;
  background: #fff5e8;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
  gap: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.feature-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

@media screen and (max-width: 600px) {
  .feature-box {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .feature-icon {
    width: 40px;
    margin-bottom: 8px;
  }

  /* スマホでは必ず「文字 → 写真」にする */
.box01margin > .box02margin { order: 1; }
.box01margin > .content-img  { order: 2; }

}

/* 左右均等に見せる */
.box01margin > img.midashi-img,
.box01margin > .box02margin {
  flex: 1 1 50%;
}

/* Tablet: 601px–1024px */
@media screen and (min-width: 601px) and (max-width: 1024px) {

  /* ラッパーの余白を縮める */
  .wrapper-narrow { padding: 40px 48px; }
  .wrapper-narrow02 { padding: 28px 24px; }
  .wrapper-full { padding: 28px 0; }
  .wrapper-inner { padding: 0 24px; }

  /* タイポ少し落とす */
  .midashi01 { font-size: 22px; }
  .midashi02 { font-size: 32px; }
  .midashi03 { font-size: 26px; }
  .midashi04 { font-size: 24px; }

  /* カラム間の詰まりを緩和 */
  .box01margin { gap: 32px; }

  /* 画像は控えめ、テキスト面に広さを */
  .content-img { max-width: 360px; width: 100%; }
  .box01margin > .box02margin { flex: 1 1 55%; }
  /* 画像側に固定幅を与えて崩れ防止（必要なら） */
  .box01margin > img.content-img { flex: 0 0 40%; }

  /* ボタンは幅取りすぎない */
  .button01 { max-width: 360px; }

  /* STEPは2列に（今1列固定になってる 今現在は1列固定にしているがカラム操作を1→2にすることで2列も叶う　その場合は矢印を消さないといけない） */
  .step-list { 
    grid-template-columns: repeat(1, 1fr);
    gap: 24px 24px;
    max-width: 960px;
  }
  .step-img { max-height: 180px; }

  /* メリットBOXは横並び維持しつつ詰める */
  .feature-box { padding: 14px 16px; gap: 12px; }

  /* 最下部セクションの横並びを保ちつつ余白調整 */
  .pf-wrapper { 
    padding: 24px 28px; 
    gap: 28px; 
    max-width: 960px;
  }
  .pf-text-box { min-width: 0; }
  .pf-image { max-width: 120px; }
}

/* ついでに誤字修正（既出） */
.box01margin > img.midashi-img,
.box01margin > .box02margin { flex: 1 1 50%; }

/*主な機能　追記2025.8.12*/

/* 主な機能ブロック */
.features{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:40px;
  align-items:center;
  background:#fff;
  border-radius:16px;
  padding:32px;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}
.features__eyebrow{
  font-size:12px;
  letter-spacing:.12em;
  color:#F6A63E;
  font-weight:700;
  margin:0 0 6px;
}
.features__title{ margin:0 0 16px; }
.features__media img{
  width:100%;
  max-width:480px;
  display:block;
  border-radius:14px;
  object-fit:cover;
}
.feature-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:14px 18px;
}

.feature-list {
  grid-template-columns: 1fr !important; /* 強制1列 */
}

/* span指定が残っている場合を解除 */
.feature-list li,
.feature-wide {
  grid-column: auto !important;
}

.feature-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  background:#fff5e8;
  border-radius:12px;
  padding:12px 14px 12px 44px;
  position:relative;
  line-height:1.5;
}
.feature-list li::before{
  content:"";
  position:absolute;
  left:12px; top:12px;
  width:20px; height:20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23F6A63E'/%3E%3Cpath d='M10.1 15.2 6.9 12l-1.4 1.4 4.6 4.6 8-8-1.4-1.4-6.6 6.6z' fill='white'/%3E%3C/svg%3E") no-repeat center/contain;
}
.f-title{ font-weight:700; color:#231815; }
.f-desc{ display:block; font-size:13px; color:#555; }

/* 「処方せんGO」は横幅広めで強調 */
.feature-wide{ grid-column: span 2; }

/* タブレット */
@media (max-width: 1024px){
  .features{ padding:24px; gap:28px; grid-template-columns: 1fr 1fr; }
}

/* スマホ：文字→画像、1列カード */
@media (max-width: 600px){
  .features{ grid-template-columns: 1fr; padding:20px; gap:20px; }
  .features__body{ order:1; text-align:left; }
  .features__media{ order:2; }
  .feature-list{ grid-template-columns: 1fr; gap:12px; }
  .feature-wide{ grid-column: auto; }
}

/* オンライン服薬指導セクション専用の微調整 */
.box01margin.tele{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* ← 左強め・右やや小さめ */
  align-items: center;
  gap: 40px;
}

/* テキスト面の読みやすさ */
.box01margin.tele .midashi03{ margin: 0 0 10px; }
.box01margin.tele .content01{
  max-width: 56ch;          /* 行幅を適正化 */
  line-height: 1.9;
  color:#444;
  text-wrap: balance;
}

/* ボタンは左寄せ（セクション内だけ） */
.box01margin.tele .button01{
  margin: 16px 0 0;         /* auto をやめて左寄せ */
  max-width: 360px;         /* 幅を少しだけ絞る */
  box-shadow: 0 6px 14px rgba(246,166,62,.18);
}

/* 画像は角丸＋トリミングを安定させる */
.box01margin.tele .content-img{
  width: 100%;
  max-width: 520px;         /* 画像の存在感を少し抑えるなら 480〜520px */
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

/* タブレット以下：縦積み＋「テキスト→画像」の順に */
@media (max-width: 900px){
  .box01margin.tele{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .box01margin.tele .box02margin{ order:1; }
  .box01margin.tele .content-img{ order:2; max-width: 100%; }
  .box01margin.tele .button01{ width:100%; max-width:320px; }
}

/* ❻ 処方せんGOセクション 専用調整 */
.wrapper-full .box01margin{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* 画像＜テキスト の比率 */
  align-items: center;
  gap: 48px;
  margin-top: 24px;
}
.wrapper-full .midashi03{
  text-align: center;      /* 見出しを中央に */
  margin: 0 0 24px;
}
.wrapper-full .content-img{
  width: 100%;
  max-width: 560px;        /* 画像の出しゃばりを抑える */
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.wrapper-full .box02margin .content01{
  max-width: 60ch;         /* 行幅を適正に */
  line-height: 1.9;
  color: #333;             /* ベージュ背景での可読性UP */
  text-wrap: balance;
}

/* モバイル：縦積み＆「テキスト → 画像」 */
@media (max-width: 900px){
  .wrapper-full .box01margin{ grid-template-columns: 1fr; gap: 20px; }
  .wrapper-full .box01margin .box02margin{ order: 1; text-align: left; }
  .wrapper-full .box01margin .content-img{ order: 2; max-width: 100%; }
}

/* ❾ まとめセクション */
.wrapper-full.summary .box01margin{
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

/* 左文章部分 */
.wrapper-full.summary .box02margin:first-child{
  text-align: left;
}
.wrapper-full.summary .content01{
  font-size: 1.05rem;
  margin-bottom: 1em;
  color: #333;
}

/* 箇条書き：チェックアイコン付き */
.wrapper-full.summary .use_list{
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}
.wrapper-full.summary .use_list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.4em;
}
.wrapper-full.summary .use_list li::before{
  content: "";
  position: absolute;
  left: 0; top: 0.35em;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23F6A63E'/%3E%3Cpath d='M10.1 15.2 6.9 12l-1.4 1.4 4.6 4.6 8-8-1.4-1.4-6.6 6.6z' fill='white'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* 右画像部分 */
.wrapper-full.summary .content-img{
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* スマホ：縦積み＆順番入れ替え */
@media (max-width: 900px){
  .wrapper-full.summary .box01margin{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wrapper-full.summary .box02margin:first-child{ order: 1; }
  .wrapper-full.summary .box02margin:last-child{ order: 2; }
  .wrapper-full.summary .content-img{ max-width: 100%; }
}

/* ❾ まとめセクション：箇条書きの重なり修正 */
.wrapper-full.summary .use_list{
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}
.wrapper-full.summary .use_list li{
  position: relative;
  /* ↓ 共通の text-indent を打ち消す */
  text-indent: 0 !important;
  padding-left: 34px;        /* 余裕を少し増やす */
  line-height: 1.9;
}
.wrapper-full.summary .use_list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;               /* 行の中で縦位置を調整 */
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23F6A63E'/%3E%3Cpath d='M10.1 15.2 6.9 12l-1.4 1.4 4.6 4.6 8-8-1.4-1.4-6.6 6.6z' fill='white'/%3E%3C/svg%3E") no-repeat center/contain;
}

/*日本語の不用意な途中改行の抑制（タイトルなど）*/
.f-title, .midashi03 { white-space: nowrap; }
@media (max-width: 360px){ .f-title, .midashi03 { white-space: normal; } }
/*文章幅の適正化（長文段落だけ）*/
.content01 { max-width: 60ch; text-wrap: balance; line-height: 1.9; }
/*小見出しの行間を少し詰める*/
.midashi03 { margin: 0 0 14px; }
/*フッター直前の「ポケットファーマシー」情報欄*/
footer .mini, .pf-info-list { line-height: 1.8; }