/* PCでは <br class="sp-br"> を無効化 */
.sp-br { display: none; }

/* スマホだけ改行として効かせる */
@media (max-width: 767px) {
  .sp-br { display: inline; } /* <br> は inline でOK（実質改行） */
}

/* ===== 信頼感セクション ===== */
.trust-section {
  background: #ffffff;
  border-top: 1px solid #e5e8ec;          /* ヒーローとの区切り線 */
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem) 1.5rem;
  text-align: center;
}

.trust-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .02em;
  color: #002b45; /* 落ち着いたダークブルー */
  margin-bottom: 1.2rem;
}

.trust-copy {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: #4b5966;
  margin: 0 auto 2rem;
  max-width: 900px;
 margin-bottom: 0;
}
/* ────────────────────────────
   スマホ (例: 〜600px) だけ左寄せ
   ────────────────────────────*/
@media (max-width: 600px) {

  /* ❶ テキストだけ左揃えで OK の場合 */
  .trust-copy {
    text-align: left;
  }

  /* ❷ ブロック自体も左寄せにしたい場合
       ↑の text-align に加えて margin を上書き */
  /*
  .trust-copy {
    text-align: left;
    margin-left: 0;    // 左端に
    margin-right: 0;   // 右マージンもゼロ
  }
  */
}

/* 強調用・赤文字 */
.accent-red {
  color: #d21617;     /* ブランドレッドなどに合わせて変更可 */
  font-weight: 600;   /* 任意。強調度合いに応じて調整 */
}

/* ===== CTA Banner ===== */
.cta-banner {
  --c-bg: #b0e0d8;      /* 背景色 (好みで調整)   */
  --c-text: #001a2b;    /* 文字色                 */
  --c-btn-bg: #ffffff;  /* ボタン背景             */
  --c-btn-hover: #001a2b; /* ボタン hover 背景   */
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1rem, 3vw, 2rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--c-bg);
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(0,0,0,.06);
  min-height: 180px;          /* 厚みを “薄め” に */
  overflow: hidden;
  max-width: 1100px; 
  margin-inline: auto;

}

/* 表紙画像 ------------------------*/
.cta-img img {
  width: clamp(84px, 12vw, 120px);
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* テキスト ------------------------*/
.cta-text {
  flex: 1 1 auto;
}

.cta-title {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.35;
  margin: 0 0 .4em;
}

/* 説明文 */
.cta-desc {
  font-size: clamp(.9rem, 1.8vw, 1rem);
  color: var(--c-text);
  line-height: 1.5;
  margin: 0;
}

/* ボタン ------------------------*/
.cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: .7em 1.7em;
  background: var(--c-btn-bg);
  color: var(--c-text);
  font-weight: 600;
  font-size: 1rem;
}

/* ========== CTA Banner ========== */
.cta-banner{
  /* カスタムプロパティ ------------- */
  --c-bg:        #b0e0d8;  /* 背景色   */
  --c-text:      #001a2b;  /* 文字色   */
  --c-btn-bg:    #ffffff;  /* ボタン   */
  --c-btn-hover: #001a2b;  /* ボタン :hover */
  
  /* 共通レイアウト ---------------- */
  display:flex;
  align-items:center;
  gap:clamp(1rem,3vw,2rem);
  padding:clamp(1rem,3vw,2rem) clamp(1.25rem,4vw,2.5rem);
  background:var(--c-bg);
  border-radius:16px;
  box-shadow:0 3px 8px rgb(0 0 0 / .06);
  /* サイズ感 */
  min-height:clamp(140px,20vw,180px); /* 画面幅に応じて可変 */
  max-width:1100px;
  margin-inline:auto;
  overflow:hidden;
  /* アニメーション準備（任意） */
  transition:background .3s ease;
}

/* ――― 表紙画像 ――― */
.cta-img img{
  width:clamp(72px,18vw,120px);
  height:auto;
  flex-shrink:0;
  border-radius:4px;
  box-shadow:0 4px 10px rgb(0 0 0 / .15);
}

/* ――― テキスト ――― */
.cta-text{
  flex:1 1 0;
  min-width:0;              /* 長い単語で横スクロールさせない */
}
.cta-title{
  font-size:clamp(1.1rem,2.4vw,1.4rem);
  font-weight:700;
  color:var(--c-text);
  line-height:1.35;
  margin:0 0 .35em;
}
.cta-desc{
  font-size:clamp(.88rem,1.8vw,1rem);
  color:var(--c-text);
  line-height:1.5;
  margin:0;
}

/* ――― ボタン ――― */
.cta-btn{
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  gap:.45em;
  padding:.7em 1.8em;
  border-radius:6px;
  background:var(--c-btn-bg);
  color:var(--c-text);
  font-weight:600;
  font-size:1rem;
  text-decoration:none;     /* <a>で使う場合 */
  transition:background .25s ease,color .25s ease;
}
.cta-btn:hover,
.cta-btn:focus-visible{
  background:var(--c-btn-hover);
  color:#fff;               /* コントラストを確保 */
}

/* =======================
   ❶ スマホ向けレイアウト
   =======================*/
@media (max-width: 600px){
  .cta-banner{
    flex-direction:column;          /* 縦積み */
    text-align:center;
  }
  .cta-img img{
    width:clamp(84px,26vw,120px);   /* 画像を少し大きめに */
  }
  .cta-btn{
    margin-top:1rem;                /* ボタンを下に分離 */
    width:100%;                     /* 全幅にしてタップしやすく */
    justify-content:center;
  }
}

/* =======================
   ❷ 大きめタブレット以上
   =======================*/
@media (min-width: 1000px){
  .cta-title{
    font-size:1.5rem;               /* 余裕があればタイトルを少し拡大 */
  }
  .cta-btn{
    font-size:1.05rem;
  }
}

/* =======================
   ❸ 親コンテナが狭い場合だけ
      行内折返しを許可 (CQ)
   =======================*/
@container style(size < 500px){
  .cta-banner{
    flex-wrap:wrap;                 /* 画像・テキストがはみ出す時だけ折返し */
  }
}


/* ===== core ===== */
.speech-simple{
  display:flex;
  gap:32px;
  max-width:1100px;
  margin:60px auto 64px;
  padding:0 20px;
  font-family:system-ui,sans-serif;
  color:#002b55;
}

/* 左: 画像 --------------------------------------------------*/
.ss-img{
  flex:0 0 40%;       /* ←★ 画面幅の40%で固定（grow 0, shrink 0） */
  max-width:480px;    /* 最大幅はこれ以上に広がらない */
}
.ss-img img{
  width:100%;
  border-radius:6px;
}

/* 右: テキスト ----------------------------------------------*/
.ss-body{
  flex:1 1 0;         /* ←★ 残りスペースをすべて受け持つ */
}

.ss-title{font-size:28px;margin:0 0 16px;}
.ss-lead {
	font-size:15px;
	line-height:1.7;
	margin:0 0 20px;
}
/* スマホ (例：幅 〜600px) でだけ .ss-lead を左揃え */
@media (max-width: 600px) {
  .ss-lead {
    text-align: left;
  }
}

.ss-list {
	margin:0 0 24px;
	padding:0;
	list-style:inside disc;
}
/* スマホ (例: 〜600px) だけ左寄せ */
@media (max-width: 600px) {
  .ss-list {
    /* 箇条書き全体を左端に寄せる ------------- */
    list-style-position: outside;  /* inside だと折返しでずれるため */
    margin-left: 0;                /* デフォルト余白を打ち消す */
    padding-left: 1.2em;           /* バレット分だけ軽くインデント */
    text-align: left;              /* 念のため左揃えを明示 */
  }
}

.ss-link {font-weight:600;text-decoration:none;}

/* レスポンシブ（縦並び）--------------------------------------*/
@media (max-width:768px){
  .speech-simple{flex-direction:column;text-align:center;}
  .ss-img      {flex:0 0 auto;max-width:100%;}
}

/* --- ボタン化した ss-link ----------------------------*/
.ss-link{
  display: inline-block;          /* インライン → ブロック化 */
  padding: 0.55em 1.6em;          /* 余白（上下 / 左右）   */
  border: 2px solid currentColor; /* 線だけボタン           */
  border-radius: 9999px;          /* Pill 形状（角丸大）    */
  font-weight: 600;
  text-decoration: none;
  line-height: 1;                 /* 文字を中央に寄せる     */
  transition: background .25s ease, color .25s ease;
}

.ss-link:hover{
  background: #002b55;            /* ホバー時に塗りつぶし   */
  color:#fff;                     /* 文字を白に反転          */
}
/* ===== 出版・ドラマ監修実績 ===== */
.credits {
  padding: 4rem 1rem;
  background:#fafafa;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.credits__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.credits__title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: .05em;
}

.featured-book {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.featured-book__img {
  width: 200px;
  flex-shrink: 0;
  border-radius: .25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.featured-book__body {
  flex: 1;
}

.featured-book__title {
  font-size: 1.4rem;
  margin: 0 0 .5rem;
}

.featured-book__desc {
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.cta-btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border: 2px solid #002b45;          /* brand red */
  border-radius: 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .25s, color .25s;
  color:#002b45;
}

.cta-btn:hover {
  background:#002b45;
  color:#fff;
}

/* ——— 5-book gallery ——— */
.book-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(140px,1fr));
  gap: 1.5rem;
  margin: 0 0 3rem;
  list-style: none;
  padding: 0;
}

.book-gallery img {
  width: 100%;
  border-radius: .25rem;
  box-shadow: 0 3px 8px rgba(0,0,0,.08);
}

/* ——— Drama list (titles only) ——— */
.drama-list{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:1.25rem;
	margin-top:20px;
}
.drama-list__item{
  font-size:1.05rem; line-height:1.6; border-left:4px solid #2F6DDB;
  padding-left:1rem;
}
.drama-title{ font-weight:700; }
.drama-copy{ color:#555; }

/* ——— Responsive tweaks ——— */
@media (max-width:768px){
  .featured-book{flex-direction:column;align-items:center;text-align:center;}
  .featured-book__img{width:60%;max-width:260px;}
}

/* ——— Responsive tweaks ——— */
@media (max-width: 768px) {
  .featured-book {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .featured-book__img {
    width: 60%;
    max-width: 260px;
  }
}

/* ===== president-greeting.css ===== */
.president-greeting {
  background:#FFF;
  padding:3rem 1rem;
  font-family:"Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
}

.pg-inner {
  max-width:1100px;
  margin:0 auto;
}

.pg-title {
  font-size:2rem;
  font-weight:700;
  text-align:center;
  margin:0 0 2rem;
  letter-spacing:0.05em;
}

.pg-message {
  font-size:1rem;
  line-height:1.8;
  margin:0 0 2.5rem;
  text-align:justify;
}

.pg-profile {
  display:flex;
  align-items:center;
  gap:1.5rem;
  flex-wrap:wrap;          /* 狭い幅では縦並び */
}

.pg-text {
flex:0 1 auto;         /* 写真より先に折り返す */
  min-width:200px;
}

.pg-name {
  font-size:1.125rem;
  font-weight:600;
  line-height:1.5;
  margin:0;
}

.pg-name .pg-name-en {
  font-size:0.875rem;
  font-weight:400;
  color:#666;
}

.pg-photo {
  flex:0 0 160px;
  width:160px;
  height:160px;
  margin:0;
}

.pg-photo img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;       /* 円形マスク */
  border:3px solid #fff;
  box-shadow:0 2px 6px rgba(0,0,0,0.12);
}

/* 小さめデバイス用調整 */
/* 小さめデバイス用調整 */
@media (max-width: 599px){
  .pg-title   { font-size:1.625rem; }
  .pg-message { font-size:0.9375rem; }

  /* ← flex-basis も 120px に */
  .pg-photo{
    flex: 0 0 120px;   /* ★ここを追加・上書き */
    width:120px;
    height:120px;
  }
}

:root{
  --c-brand: #002b55;   /* ボタン線&塗りの基調色 */
  --c-bg:    #f2f8fa;   /* セクション背景（淡いシアン系）*/
}

/* ===== CTA セクション本体 ===== */
.contact-cta{
  background: var(--c-bg);
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  margin: 0 auto 64px;
  max-width: 800px;     /* 任意：ページ幅に合わせて調整 */
}

/* 見出し行 */
.cta-lead{
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-brand);
  margin: 0 0 12px;
}

/* 本文行 */
.cta-text{
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 24px;
}

/* ボタン行 */
.cta-actions{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 角丸の線付きボタン ---------------*/
.cta-btn{
  display: inline-block;
  padding: 0.75em 1.8em;
  border: 2px solid var(--c-brand);
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  color: var(--c-brand);
  transition: background .25s ease, color .25s ease;
}

/* 塗りありバージョン（primary） */
.primary{
  background: var(--c-brand);
  color: #fff;
}

/* ホバー共通 */
.cta-btn:hover{
  background: var(--c-brand);
  color: #fff;
}

/* レスポンシブ・フォント調整（任意） */
@media (max-width: 480px){
  .cta-lead { font-size: 1.2rem; }
  .cta-text { font-size: 0.9rem; }
}
