@charset "UTF-8";
/* =============================================================
   icd-trial-banner.css — 体験会LP（/icd/trial/）へ送るバナー
   HTMLの原本は scripts/trial-banner.mjs。
   色はLPに合わせる：生成り #f3f1e8 ／ 墨緑 #1e2a22 ／ 葉 #4f6b52 ／ 真鍮 #a98f5c

   注意：このサイトは html{font-size:62.5%}（1rem=10px）。
   素の span/div は 10px で出るので、文字の大きさは全部ここで指定する。
   記事の中では .ic-article a { text-decoration:underline !important } が
   効くので、バナー全体の a はそれより強いセレクタで打ち消す。

   器の幅：トップは約300px、記事の中は約250px（375px端末）。
   スマホは葉を短文の横にだけ置き、見出し・本文・ボタンは全幅にする。
   （葉の列を縦に長く取ると、記事の中では見出しが1文字ずつ折れる）
   ============================================================= */

.itb,
.ic-article a.itb,
.ic-article a.itb:visited,
.ic-article a.itb:hover {
  display: block;
  position: relative;
  box-sizing: border-box;
  margin: 40px 0 0;
  padding: 18px 18px 20px;
  background: #f3f1e8;
  border: 1px solid rgba(169, 143, 92, .5);
  border-radius: 12px;
  color: #1e2a22 !important;
  font-weight: 400;
  text-decoration: none !important;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}
.itb:hover,
.ic-article a.itb:hover {
  box-shadow: 0 12px 28px rgba(30, 42, 34, .14);
  transform: translateY(-2px);
}
.itb:focus-visible { outline: 2px solid #7a6134; outline-offset: 3px; }
.itb .ib { display: inline-block; }

/* 器：スマホは「見出し帯 ／ 短文＋葉 ／ 本文」。
   PCは「見出し帯 ／ 本文・縦書き・葉」の3列。 */
.itb__in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  grid-template-areas:
    "eb eb"
    "ld lf"
    "bd bd";
  gap: 4px 12px;
  align-items: center;
}
.itb__eyebrow {
  grid-area: eb;
  display: block;
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #7a6134;
}

.itb__lead {
  grid-area: ld;
  align-self: center;
  display: block;
  margin: 0;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.6;
  color: #4f6b52;
}

.itb__body { grid-area: bd; min-width: 0; margin-top: 6px; }
.itb__t {
  display: block;
  margin: 0 0 6px;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .02em;
  color: #1e2a22;
}
.itb__d {
  display: block;
  margin: 0 0 4px;
  font-size: 1.32rem;
  line-height: 1.8;
  color: #3a463d;
}
.itb__m {
  display: block;
  margin: 0 0 14px;
  font-size: 1.2rem;
  letter-spacing: .06em;
  line-height: 1.6;
  color: #66705f;
}
.itb__btn,
.ic-article a.itb .itb__btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1e2a22;
  color: #fff !important;
  font-size: 1.44rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
  transition: background .2s ease;
}
.itb__btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  margin-top: 1px;
}
.itb:hover .itb__btn { background: #4f6b52; }

.itb__leaf,
.ic-article .itb__leaf {
  grid-area: lf;
  display: block;
  width: 92px;
  height: auto;
  margin: 0;
  align-self: center;
  justify-self: end;
}

/* ── PC ─────────────────────────────────────── */
@media screen and (min-width: 768px) {
  .itb,
  .ic-article a.itb,
  .ic-article a.itb:visited,
  .ic-article a.itb:hover { padding: 30px 36px 32px; }
  .itb__in {
    grid-template-columns: minmax(0, 1fr) auto 190px;
    grid-template-areas:
      "eb eb eb"
      "bd ld lf";
    gap: 8px 30px;
  }
  .itb__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    letter-spacing: .14em;
    margin-bottom: 10px;
  }
  .itb__eyebrow::after { content: ""; flex: 1; min-width: 12px; height: 1px; background: #a98f5c; opacity: .55; }
  /* 縦書き。LPのファーストビューと同じ並び（葉の左に立つ） */
  .itb__lead {
    writing-mode: vertical-rl;
    height: 200px;
    font-size: 2.0rem;
    letter-spacing: .16em;
    line-height: 1.6;
    color: #1e2a22;
  }
  .itb__lead .ib { display: block; }
  .itb__body { margin-top: 0; }
  .itb__t { font-size: 2.6rem; margin-bottom: 10px; }
  .itb__d { font-size: 1.44rem; }
  .itb__m { font-size: 1.24rem; margin-bottom: 18px; }
  .itb__btn, .ic-article a.itb .itb__btn {
    display: inline-flex;
    width: auto;
    min-height: 48px;
    padding: 0 28px;
    font-size: 1.48rem;
  }
  .itb__leaf, .ic-article .itb__leaf { width: 190px; justify-self: center; }
}

/* ── トップページでの器（tp-more などと同じ幅） ── */
.tp-trial {
  max-width: 1200px;
  margin: 34px auto 0;
  padding: 0 40px;
  box-sizing: border-box;
}
.tp-trial .itb { margin-top: 0; }
@media screen and (max-width: 767px) {
  .tp-trial { padding: 0 16px; margin-top: 22px; }
}
