@charset "UTF-8";
/* ==========================================================================
   Beans Net 紹介ページ専用スタイル
   チラシ（BeansNetチラシ_rev3）をHTML+CSSで再現したもの
   配色：ティール系 + ライム（数字・強調）
   ========================================================================== */

.bn {
  /* カラーパレット */
  --bn-teal: #5cb4a1;
  --bn-teal-dark: #2f9384;
  --bn-teal-deep: #34897a;
  --bn-mint: #e9f4f0;
  --bn-mint-2: #d7ebe4;
  --bn-lime: #e4ec55;
  --bn-lime-deep: #c9d23c;
  --bn-ink: #3b3b3b;
  --bn-ink-soft: #5a5a5a;
  --bn-line: #d7e6e0;

  color: var(--bn-ink);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  padding-top: 96px;
  background: #fff;
}

.bn__inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.bn img { max-width: 100%; height: auto; display: block; }

/* ============ ヒーロー ============ */
.bn-hero {
  position: relative;
  background: url("../img/beans-net/hero.png") center 30% / cover no-repeat;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  margin-right: 300px;
}
.bn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(47, 147, 132, .92) 0%,
    rgba(70, 165, 148, .78) 38%,
    rgba(92, 180, 161, .30) 62%,
    rgba(92, 180, 161, 0) 80%);
}
.bn-hero__inner {
  position: relative;
  max-width: 1040px;
  padding: 54px 5% 60px;
  box-sizing: border-box;
}
.bn-hero__lead {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  margin: 0 0 14px;
}
.bn-hero__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}
.bn-hero__title .bn-pill {
  display: inline-block;
  background: #fff;
  color: var(--bn-teal-dark);
  padding: .04em .28em;
  border-radius: 0;
  margin-right: .04em;
}
.bn-hero__title .bn-em { color: var(--bn-lime); }

/* ============ 価格バンド ============ */
.bn-price {
  background: linear-gradient(120deg, var(--bn-teal-dark), var(--bn-teal));
  color: #fff;
  /* 共通ヘッダーの右ナビ(幅300px)分を空ける */
  margin-right: 300px;
}
.bn-price__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 34px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.bn-price__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.bn-price__label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: .06em;
  background: rgba(255, 255, 255, .18);
  border-radius: 0;
  padding: 6px 9px;
  align-self: center;
}
.bn-price__num {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 104px;
  line-height: .9;
  color: var(--bn-lime);
  text-shadow: 0 3px 0 rgba(0, 0, 0, .08);
}
.bn-price__unit {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}
.bn-price__unit small { font-size: 18px; }
.bn-price__sep {
  width: 2px;
  align-self: stretch;
  background: rgba(255, 255, 255, .35);
}

/* ============ 共通：セクション見出しピル ============ */
.bn-secttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  background: var(--bn-teal);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.35;
  border-radius: 0;
  padding: 14px 24px;
  margin: 0 0 28px;
}
.bn-secttl small { display: block; font-size: 14px; font-weight: 700; opacity: .95; }
.bn-secttl::before,
.bn-secttl::after {
  content: "";
  flex: none;
  width: 24px;
  height: 46px;
  background: no-repeat center / contain;
}
.bn-secttl::before { background-image: url("../img/beans-net/laurel-left.png"); }
.bn-secttl::after { background-image: url("../img/beans-net/laurel-right.png"); }

/* ============ 2カラム ============ */
.bn-body { padding: 56px 0 64px; }
/* JS(beans-net 末尾)で「本文が右固定バーに重なるとき」だけ付与される */
.bn-body.is-overlap { margin-right: 300px; }
.bn-cols {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.bn-col { flex: 1 1 0; min-width: 0; }

/* ============ 設備ランキング ============ */
.bn-rank { list-style: none; margin: 0; padding: 0; }
.bn-rank__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--bn-line);
}
.bn-rank__item:last-child { border-bottom: none; }
.bn-rank__medal {
  flex: 0 0 auto;
  width: 56px;
  height: auto;
}
.bn-rank__text {
  flex: 1 1 auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.bn-rank__text small {
  display: inline;
  font-size: 13px;
  font-weight: 700;
  color: var(--bn-ink-soft);
}
.bn-rank__text .bn-rank__free { color: var(--bn-teal-dark); }
.bn-rank__thumb {
  flex: 0 0 auto;
  width: 110px;
  border-radius: 0;
  overflow: hidden;
}
.bn-rank__thumb img { width: 100%; height: 64px; object-fit: cover; }

/* ============ メリット ============ */
.bn-merit { list-style: none; margin: 0; padding: 0; }
.bn-merit__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--bn-line);
}
.bn-merit__item:last-child { border-bottom: none; }
.bn-merit__flag {
  flex: 0 0 auto;
  width: 48px;
  height: auto;
}
.bn-merit__text {
  font-size: 19px;
  font-weight: 800;
  color: var(--bn-ink);
}
.bn-merit__photo {
  margin-top: 18px;
  border-radius: 0;
  overflow: hidden;
}
.bn-merit__photo img { width: 100%; height: 150px; object-fit: cover; }

/* ============ CTA / お問い合わせ（エディトリアル・シャープ） ============ */
.bn-cta {
  position: relative;
  /* フラットなティール。ブロブ状グラデは使わず、直線基調の落ち着いた背景 */
  background: linear-gradient(135deg, var(--bn-teal-dark) 0%, var(--bn-teal-deep) 60%, #1f6e60 100%);
  color: #fff;
  padding: 92px 24px 100px;
  overflow: hidden;
}
/* 旧・斜め帯の装飾は廃止 */
.bn-cta::before { content: none; }

.bn-cta__box {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* CONTACT：細い罫線で挟んだ控えめなラベル（エディトリアルの定石） */
.bn-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .34em;
  color: rgba(255, 255, 255, .85);
  margin: 0 0 24px;
}
.bn-cta__eyebrow::before,
.bn-cta__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, .45);
}

/* 吹き出し白箱＋三角を撤去し、素のヘッドラインに */
.bn-cta__msg {
  display: block;
  background: none;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.6;
  margin: 0 0 40px;
}
.bn-cta__msg::after { content: none; }

.bn-cta__sub { font-size: 16px; font-weight: 500; color: rgba(255, 255, 255, .85); margin: 0 0 32px; }

/* 角丸なしの長方形ボタン：白地ティール文字。ホバーで反転、矢印が右へスライド */
.bn-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: min(560px, 100%);
  box-sizing: border-box;
  background: #fff;
  color: var(--bn-teal-deep);
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  padding: 24px 56px;
  border: 2px solid #fff;
  border-radius: 0;
  transition: background .25s ease, color .25s ease;
}
.bn-cta__btn:hover { background: transparent; color: #fff; opacity: 1; }
.bn-cta__arrow {
  position: absolute;
  right: 26px;
  font-size: 12px;
  line-height: 1;
  transition: transform .25s ease;
}
.bn-cta__btn:hover .bn-cta__arrow { transform: translateX(5px); }

/* 連絡先：角丸・影なしのフラットな白カード。細いティールの天罫だけでアクセント */
.bn-cta__info {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  align-content: center;
  margin: 56px auto 0;
  max-width: 720px;
  background: #fff;
  color: var(--bn-ink);
  border-top: 3px solid var(--bn-teal);
  border-radius: 0;
  padding: 32px 40px;
  text-align: left;
}
.bn-cta__infoMain {
  flex: 1 1 240px;
  padding-right: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bn-cta__company { font-weight: 800; font-size: 19px; margin: 0 0 4px; }
.bn-cta__dept { font-size: 14px; color: var(--bn-ink-soft); margin: 0; }
.bn-cta__contact {
  flex: 1 1 280px;
  padding-left: 36px;
  border-left: 1px solid var(--bn-line);
  font-size: 15px;
  padding-block: 10px;
  display: flex;
}
.bn-cta__contact p { display: flex; align-items: center; margin: 0 0 10px; line-height: 1.6; }
.bn-cta__contact p:last-child { margin-bottom: 0; }
.bn-cta__lbl {
  flex: 0 0 auto;
  display: inline-block;
  min-width: 52px;
  text-align: center;
  background: var(--bn-teal-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 9px;
  border-radius: 0;
  margin-right: 12px;
}
.bn-cta__contact a { color: var(--bn-ink); text-decoration: none; word-break: break-all; transition: color .2s; }
.bn-cta__contact a:hover { color: var(--bn-teal-deep); }

/* 利用規約への控えめなテキストリンク */
.bn-cta__terms { margin: 28px 0 0; font-size: 15px; }
.bn-cta__terms a {
  color: rgba(255, 255, 255, .85);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
  text-underline-offset: 2px;

  &:hover {
    text-decoration: none;
  }
}
.bn-cta__terms a:hover { color: #fff; }

/* 電話番号：スマホのときだけ発信可能（PCではタップ不可のテキスト扱い） */
.bn-tel { pointer-events: none; cursor: text; }

/* ==========================================================================
   中間幅（右ナビ表示中で本文が狭い 769〜1120px）
   ========================================================================== */
@media screen and (min-width: 769px) and (max-width: 1120px) {
  .bn-hero { min-height: 420px; }
  .bn-hero__inner { padding: 44px 5% 48px; }
  .bn-hero__lead { font-size: 20px; }
  .bn-hero__title { font-size: 30px; line-height: 1.5; }

  .bn-price__inner { gap: 24px; padding: 28px 20px; }
  .bn-price__num { font-size: 72px; }
  .bn-price__unit { font-size: 24px; }

  /* 本文2カラムは縦積みに */
  .bn-cols { flex-direction: column; gap: 40px; }

  .bn-cta__msg { font-size: 25px; }
  .bn-cta__info { flex-direction: column; align-items: stretch; max-width: 560px; }
  /* 縦積み時は flex-basis が高さ扱いになるためコンテンツ高さに戻す */
  .bn-cta__infoMain { flex: 0 0 auto; padding-right: 0; margin-bottom: 16px; }
  .bn-cta__contact { flex: 0 0 auto; padding-left: 0; border-left: none; border-top: 1px solid var(--bn-line); padding-top: 16px; }
}

/* ==========================================================================
   スマホ（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .bn { padding-top: 72px; }

  /* スマホは右ナビが非表示になるため右マージンを解除（全幅） */
  .bn-hero,
  .bn-price,
  .bn-body { margin-right: 0; }

  /* スマホでは電話番号をタップで発信可能にする */
  .bn-tel { pointer-events: auto; cursor: pointer; color: var(--bn-teal-dark); }

  .bn-hero { min-height: 400px; background-position: 85% 25%; }
  .bn-hero::before {
    background: linear-gradient(165deg,
      rgba(47, 147, 132, .95) 0%,
      rgba(70, 165, 148, .82) 50%,
      rgba(92, 180, 161, .40) 100%);
  }
  .bn-hero__inner { padding: 36px 22px 40px; }
  .bn-hero__lead { font-size: 21px; line-height: 1.5; margin: 0 0 12px; }
  .bn-hero__title { font-size: 27px; line-height: 1.55; }
  .bn-hero__title .bn-pill { padding: .06em .26em; }

  /* 価格バンド：ラベル幅と数字の開始位置を揃えて整列 */
  .bn-price__inner { flex-direction: column; align-items: center; gap: 6px; padding: 30px 24px; }
  .bn-price__sep { display: none; }
  .bn-price__item {
    width: 100%;
    max-width: 300px;
    justify-content: flex-start;
    gap: 14px;
    padding: 4px 0;
  }
  .bn-price__label { flex: 0 0 52px; width: 52px; }
  .bn-price__num { font-size: 72px; }
  .bn-price__unit { font-size: 22px; }
  .bn-price__unit small { font-size: 15px; }

  .bn-rank__item,.bn-merit__item{
    padding: 12px 5%;
  }

  .bn-body { padding: 0px; }
  .bn-cols { flex-direction: column; gap: 44px; }

  .bn-secttl { font-size: 18px; padding: 12px 48px;margin-bottom: 0; }

  .bn-rank__text { font-size: 16px; }
  .bn-rank__thumb { width: 88px; }
  .bn-rank__thumb img { height: 54px; }

  .bn-merit__text { font-size: 17px; }
  .bn-merit__photo img { height: 180px; }

  .bn-cta { padding: 60px 20px 68px; }
  .bn-cta__eyebrow { font-size: 12px; margin-bottom: 18px; }
  .bn-cta__msg { font-size: 22px; }
  .bn-cta__sub { font-size: 15px; }
  .bn-cta__btn { width: 100%; font-size: 17px; padding: 20px 48px; }
  .bn-cta__info { flex-direction: column; align-items: stretch; max-width: 100%; padding: 24px 24px; }
  /* 縦積み時は flex-basis が高さ扱いになるためコンテンツ高さに戻す */
  .bn-cta__infoMain { flex: 0 0 auto; padding-right: 0; margin-bottom: 16px; }
  .bn-cta__contact { flex: 0 0 auto; padding-left: 0; border-left: none; border-top: 1px solid var(--bn-line); padding-top: 16px; }
}
