@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

.home {
	background: #333333;
	color: #fff;
}
.home a {
color: #fff;}

.archive {
	background: #333333;
	color: #fff;
}
.archive a {
color: #fff;}
.wpcf7-form-control-wrap  input,
.wpcf7-form-control-wrap  select,
.wpcf7-form-control-wrap  textarea {
	width: 100%;
	margin-bottom: 20px;
} 
.search {
	background: #333333;
	color: #fff;
}
.search  a {
	color: #fff;
}
.p-spMenu__nav a {
	color: inherit;
}
/* 送信ボタンスタイル */
.wpcf7-submit {
	width: 100%;
  background-color: #3d3d3d;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (min-width: 769px){
	.wpcf7-submit {
		max-width: 500px;
	}
	.submit-wrapper {
		text-align: center;
	}
}
 .wpcf7-submit:hover {
  opacity: .8;
}
.wpcf7-not-valid-tip {
    margin-top: -15px;
    margin-bottom: 15px;
}
/* 必須マーク */
.required {
  color: #800020; 
  font-weight: bold;
  margin-left: 0.5rem;
}
/* 確認画面 */
.page-id-409 p {
    margin-bottom: 20px;
}
.l-footer__nav li a{
	color: #AAAAAA;
}
/* チェックリスト */

.checklist ul {
  list-style: none;
  padding: 0;
}
.checklist li {
  margin-bottom: 10px;
  background: #f9f9f9;
  padding: 10px;
  border-left: 4px solid #800020;
  border-radius: 4px;
}
.checklist input[type="checkbox"] {
  margin-right: 10px;
}
/* 偏差値チェック */
form#quizForm ol li {
    margin-bottom: 20px;
}
.button-bordeaux {
  background-color: #800020; 
  color: white; 
  padding: 10px 20px; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
}

.button-bordeaux:hover {
  background-color: #660018; 
}
p#scoreComment {
    margin-bottom: 20px;
    font-size: 1.8rem;
}
@media (max-width: 678px) {
	.button-bordeaux-wrapper {
	text-align: center;
}
}
/* LS試験 */
.question {
      margin-bottom: 2em;
      padding: 1em;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
    }
    .result {
      font-weight: bold;
      margin-top: 2em;
      font-size: 1.2em;
      text-align: center;
    }
    .test-button {
      display: block;
      margin: 2em auto;
      padding: 1em 2em;
      font-size: 1em;
      background: #800020;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    .test-button:hover {
      background: #d54b45;
    }
/* SPメニュー */
.c-widget__title.-spmenu {
	background: #333333;
}
/* 検索フォームの文字 */
.home input#wp-block-search__input-1 {
    color: #fff;
}
.archive input#wp-block-search__input-1 {
    color: #fff;
}
.search input#wp-block-search__input-1 {
    color: #fff;
}

/* ブログ村のバナー */

/* =========================
   ランキングバッジ用カスタムCSS
   ========================= */

/* コンテナ */
.rank-badges{
  --gap: 12px;
  --radius: 12px;
  --shadow: 0 6px 14px rgba(0,0,0,.08);
  --shadow-hover: 0 10px 22px rgba(0,0,0,.12);
  --bg: transparent; /* ←背景を消す */
  --text: #1f2937;
  --muted: #6b7280;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap);
  padding: 0; /* ←余白なし */
  border: none; /* ←枠なし */
  background: var(--bg);
}

/* 説明文 */
.rank-copy{
  margin: 0 8px 0 0;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
}

/* バッジ共通 */
.rank-badges .badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1px solid rgba(0,0,0,.05);
  line-height: 1;
}

/* 画像はきれいに表示 */
.rank-badges .badge img{
  display: block;
  height: auto;
  max-height: 40px; /* 小さすぎる/大きすぎるバナーを均す */
}

/* テキストラベル（任意表示） */
.rank-badges .badge-label{
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

/* ホバー/フォーカス */
.rank-badges .badge:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.rank-badges .badge:focus{
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
}

/* スマホ最適化 */
@media (max-width: 520px){
  .rank-badges{
    flex-direction: column;       /* ←スマホでは縦並びに */
    align-items: flex-start;      /* 左揃え */
    gap: 8px;                     /* アイテム間の余白 */
    padding: 0;
  }
  .rank-copy{
    flex-basis: 100%;
    order: -1;
    margin: 0 0 4px 0;
    font-size: 14px;
  }
  .rank-badges .badge{
    padding: 8px;
    width: 100%;                  /* スマホ時は幅100%にすると整う */
    justify-content: flex-start;
  }
  .rank-badges .badge img{
    max-height: 34px;
  }
  .rank-badges .badge-label{
    display: none; /* スマホは画像だけでスッキリ */
  }
}

/* ダークモード（任意） */
@media (prefers-color-scheme: dark){
  .rank-badges{
    --text: #e5e7eb;
    --muted: #94a3b8;
  }
  .rank-badges .badge{
    background: #111827;
    border-color: rgba(255,255,255,.08);
  }
}

/* メルマガLP */
/* ========== Base & Theme (clean) ========== */
.r0lp{
  --c-bg:#fff;
  --c-text:#1f1f1f;        /* 本文色 */
  --c-accent:#800020;      /* アクセント */
  --c-muted:#656565;
  --c-soft:#f6f6f6;
  --c-dark:#111;
  --radius:6px;
  --shadow:0 10px 24px rgba(0,0,0,.08);
  --shadow-soft:0 6px 16px rgba(0,0,0,.06);
  background:#fff;
  color:var(--c-text);
  font-feature-settings:"palt";
}
.r0lp *{ box-sizing:border-box; }
.r0lp img,.r0lp video{ display:block; max-width:100%; height:auto; }

/* 1200px中央寄せ */
.r0lp .container{
  max-width:1200px; margin-inline:auto;
/*   padding-inline:clamp(16px,3vw,32px); */
	  padding-inline: 0 !important;
}

/* セクション余白 */
.r0lp .sec{ padding:clamp(40px,6vw,72px) 0; }

/* 見出し：左ボーダー／下線装飾は無効化 */
.r0lp .sec-title{ display:flex; align-items:center; gap:12px; margin-bottom:20px; font-weight:700; }
.r0lp .sec-title h2{
  font-size:clamp(22px,2.6vw,32px);
  line-height:1.25; letter-spacing:.02em;
  padding-left:12px; border-left:4px solid var(--c-accent);
  margin-bottom:12px;
}
.r0lp .sec-underline h2::after{ display:none !important; }

/* ピンク風バッジ＆絵文字アイコンは使わない */
.r0lp .badge,
.r0lp i[class^="i-"]::before{ display:none !important; }

/* 強調マーカー（落ち着いた赤） */
.r0lp mark,.r0lp .marker{
  background:linear-gradient(transparent 70%, rgba(128,0,32,.15) 0);
  color:inherit; padding:0 .15em;
}

/* ========== MV（動画100%幅＋コピー） ========== */
.r0lp .mv{
  position:relative; width:100vw; margin-left:50%; transform:translateX(-50%);
  overflow:clip;
}
.r0lp .mv-video{
  width:100vw !important; max-width:100vw !important; height:auto !important;
  aspect-ratio:16/9; object-fit:cover; display:block;
}
@supports not (aspect-ratio:16/9){
  .r0lp .mv-video{ height:56.25vw !important; }
}
.r0lp .mv-overlay{
  position:absolute; inset:0; display:grid; place-items:center; pointer-events:none;
  padding:clamp(16px,4vw,48px);
}
.r0lp .mv-inner{
  pointer-events:auto; text-align:center; color:#1f1f1f;
  max-width:min(100%,1100px); padding:clamp(16px,3vw,28px);
  background:rgba(255,255,255,.8); backdrop-filter:blur(3px);
  border:1px solid rgba(0,0,0,.05); border-radius:var(--radius); box-shadow:var(--shadow);
}
.r0lp .mv-title{ font-size:clamp(28px,5vw,56px); letter-spacing:.02em; margin:0 0 6px; }
.r0lp .mv-copy{ font-size:clamp(14px,2.2vw,18px); color:#333; margin:0 0 16px; }
.r0lp .mv-cta{
  display:inline-block; background:var(--c-accent); color:#fff; text-decoration:none;
  padding:12px 22px; border-radius:999px; font-weight:700;
  transition:transform .08s ease, opacity .2s;
}
.r0lp .mv-cta:hover{ transform:translateY(-1px); }
.r0lp .mv-cta:active{ transform:translateY(0); opacity:.9; }
.r0lp .mv + .container{ margin-top:clamp(16px,3vw,32px); }

/* ========== フル幅背景ブロック ========== */
.r0lp .section-bleed{
  width:100vw; margin-left:50%; transform:translateX(-50%);
  background:#f7f7f7; color:#1f1f1f;
  padding:clamp(40px,6vw,72px) 0;
  border-top:1px solid #eaeaea; border-bottom:1px solid #eaeaea;
}
.r0lp .section-bleed.on-dark{ background:#f7f7f7; color:#1f1f1f; } /* 同一トーンに統一 */
.r0lp .section-bleed .container{
  max-width:1200px; margin-inline:auto; padding-inline:clamp(16px,3vw,32px);
}

/* 任意セクションを画面幅100%にしたい時 */
.r0lp .u-bleed{ width:100vw; margin-left:50%; transform:translateX(-50%); }

/* ========== テキスト・画像 ========== */
.r0lp p{ line-height:1.9; margin:0 0 1.15em; }
.r0lp .img-slot{
  margin:clamp(16px,3vw,28px) 0; border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-soft);
}
.r0lp .img-slot img{ width:100%; height:auto; display:block; outline:1px solid rgba(0,0,0,.05); outline-offset:-1px; }

/* ========== チェックリスト（スクエア弾丸） ========== */
.r0lp .checklist{ list-style:none; padding:0; margin:20px 0 28px; display:grid; gap:12px; }
.r0lp .checklist li{
  position:relative; padding:12px 14px 12px 36px;
  background:#fff; border:1px solid #e0e0e0; border-radius:12px; box-shadow:none;
  color:#222;
}
.r0lp .checklist li::before{
  content:""; position:absolute; left:12px; top:50%; transform:translateY(-50%);
  inline-size:10px; block-size:10px; border-radius:1px; background:var(--c-accent);
}

/* ========== カード（テキスト主役） ========== */
.r0lp .k-cards{
  display:grid; grid-template-columns:repeat(12,1fr);
  gap:clamp(12px,2vw,20px); margin-top:16px;
}
.r0lp .k-card{
  grid-column:span 6;             /* 2列 */
  display:grid; grid-template-columns:1fr; align-items:start; gap:8px;
  background:#fff; border:1px solid #e0e0e0; border-radius:14px;
  padding:16px; box-shadow:0 2px 8px rgba(0,0,0,.05);
  transition:transform .15s ease, box-shadow .15s ease;
}
.r0lp .k-card:hover{ transform:translateY(-2px); box-shadow:var(--shadow); }
.r0lp .k-title{ font-weight:800; letter-spacing:.01em; margin-bottom:4px; color:var(--c-text); }
.r0lp .k-text{ color:#333; font-size:14px; line-height:1.6; }
@media (min-width:920px){ .r0lp .k-card{ grid-column:span 4; } } /* 3列 */

/* ========== CTA ========== */
.r0lp .cta-box{
  background:#fff; border:1px solid #ddd; border-radius:18px;
  padding:clamp(20px,3.2vw,32px); box-shadow:var(--shadow);
}
.r0lp .cta-title{ margin:0 0 8px; font-size:clamp(18px,2.2vw,24px); color:var(--c-text); letter-spacing:.02em; }
.r0lp .cta-note{ color:var(--c-muted); margin-bottom:14px; }
.r0lp .cta-actions{ display:flex; flex-wrap:wrap; gap:12px; }
.r0lp .btn{
  display:inline-flex; align-items:center; gap:8px; text-decoration:none; font-weight:700;
  padding:12px 18px; border-radius:999px;
  border:1px solid #ccc; color:var(--c-text); background:#fff;
  transition:transform .08s ease, box-shadow .2s ease, opacity .2s;
}
.r0lp .btn:hover{ transform:translateY(-1px); box-shadow:var(--shadow-soft); }
.r0lp .btn.primary{ background:var(--c-accent); color:#fff; border:none; }

/* ========== 小要素 ========== */
.r0lp .sec-kicker{ font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:var(--c-accent); margin:22px 0 6px; }
.r0lp h1,.r0lp h2,.r0lp h3{ font-weight:800; }
.r0lp a{ color:var(--c-accent); text-decoration-thickness:2px; text-underline-offset:2px; }

/* ========== アクセシビリティ/テーマ干渉対策 ========== */
@media (prefers-reduced-motion:reduce){
  .r0lp *{ transition:none !important; animation:none !important; }
}
.r0lp .mv,.r0lp .section-bleed,.r0lp .u-bleed{ max-width:none !important; }
.r0lp .mv-video,.r0lp .mv picture,.r0lp .mv img{ width:100vw !important; }

/* ========== ユーティリティ ========== */
.r0lp .center{ text-align:center; }
.r0lp .grid-2{ display:grid; gap:clamp(12px,2vw,24px); grid-template-columns:1fr; }
@media (min-width:900px){ .r0lp .grid-2{ grid-template-columns:1fr 1fr; } }
.r0lp .mt-0{ margin-top:0 !important; }
.r0lp .mb-0{ margin-bottom:0 !important; }
.r0lp .my-0{ margin-block:0 !important; }

.r0lp .sec-kicker { font-size: 1em !important; font-weight: 700;}

/* ===== MVスマホ最適化：動画を全画面、文字は下配置 ===== */
/* ===== スマホ時：動画を高さ100vhで全画面＋文字は動画上に残す ===== */
@media (max-width: 768px) {
  .r0lp .mv {
    position: relative;
    height: 100vh;           /* 画面の高さに合わせる */
    overflow: hidden;
  }

  .r0lp .mv-video {
    width: 100%;
    height: 100vh !important;
    object-fit: cover;        /* 画面いっぱいに収める */
  }

  /* 文字を中央配置のまま残すが、背景を暗くして読みやすく */
  .r0lp .mv-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
/*     background: rgba(0, 0, 0, 0.45); */
    color: #fff;
    padding: 0 20px;
  }

  .r0lp .mv-inner {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.35); /* 背景をさらに薄く重ねる */
    border-radius: 8px;
    padding: 20px;
  }

  .r0lp .mv-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
  }

  .r0lp .mv-copy {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #f5f5f5;
  }

  .r0lp .mv-cta {
    font-size: 14px;
    padding: 10px 18px;
    background: #800020;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
  }

  .r0lp .mv-cta:hover {
    background: #66001a;
  }
}

/* ===== テキストと画像の横並び（2カラム） ===== */
/* ===== split-row の中央余白を解消（PC） ===== */
@media (min-width: 900px) {
  /* 列幅を明示：左は可変、右は420〜560pxで安定 */
  .r0lp .split-row{
    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(420px, 560px);
    align-items: center;
    gap: 24px;                 /* 中央の隙間を適度に */
    margin-top: 8px;
  }

  /* テキスト側は列幅をフルで使う（max-widthを解除） */
  .r0lp .split-text{
    max-width: none;           /* ← ここが効きます */
    min-width: 0;
  }

  /* 画像側：列幅いっぱいを使う（中央余白を作らない） */
  .r0lp .split-row .img-slot{
    margin: 0;
    width: 100%;               /* フィギュア自体を列幅いっぱいに */
    justify-content: flex-start; /* 余白を内側に作らない */
    justify-self: end;         /* 右端に寄せる */
    display: block;
  }
  .r0lp .split-row .img-slot img{
    width: 100%;
    height: auto;
    max-width: 560px;                   /* 列の上限に合わせる */
    inline-size: clamp(420px, 40vw, 560px); /* 画面に応じて可変 */
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }
}

/* タブレットでのバランス（任意・好みで） */
@media (min-width: 900px) and (max-width: 1199px){
  .r0lp .split-row{
    grid-template-columns: minmax(480px, 1fr) minmax(380px, 520px);
    gap: 20px;
  }
}

/* モバイルは縦積み */
@media (max-width: 899px){
  .r0lp .split-row{ display: block; }
  .r0lp .split-row .img-slot{ margin-top: 20px; }
}
/* 仲間募集：本文と画像を横並び（PC） */
@media (min-width: 900px) {
  .r0lp .sec .split-row{
    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(420px, 560px); /* 本文 / 画像 */
    align-items: center;
    gap: 24px;
    margin-top: 8px;
  }
  .r0lp .sec .split-row .split-text{
    max-width: none;  /* 余白が余らないように広がる */
    min-width: 0;
  }
  .r0lp .sec .split-row .img-slot{
    margin: 0;
    width: 100%;
    justify-self: end;    /* 右端寄せ */
  }
  .r0lp .sec .split-row .img-slot img{
    width: 100%;
    height: auto;
    inline-size: clamp(420px, 40vw, 560px); /* 画面に応じて可変 */
    max-width: 560px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }
}

/* タブレットの微調整（任意） */
@media (min-width: 900px) and (max-width: 1199px){
  .r0lp .sec .split-row{
    grid-template-columns: minmax(480px, 1fr) minmax(380px, 520px);
    gap: 20px;
  }
}

/* モバイルは縦積み */
@media (max-width: 899px){
  .r0lp .sec .split-row{ display: block; }
  .r0lp .sec .split-row .img-slot{ margin-top: 20px; }
}

/* --- 旧カードUIを無効化（安全） --- */
.r0lp .k-cards, .r0lp .k-card { display: none !important; }

/* --- 新：アイコン付きリスト --- */
.r0lp .k-list{
  list-style: none;
  margin: 12px 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.r0lp .k-list li{
  position: relative;
  padding-left: 44px;                /* アイコン分の余白 */
  line-height: 1.7;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 14px;
}

/* 左の“アイコン”は疑似要素で。丸にアクセント色の線＋中黒 */
.r0lp .k-list li::before{
  content: "";
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--c-accent);
  box-shadow: inset 0 0 0 4px #fff;    /* 中を白抜き */
}
.r0lp .k-list li::after{
  content: "";
  position: absolute; left: 21px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-accent);
}

/* タイトルと補足 */
.r0lp .k-li-title{
  display: block;
  font-weight: 800;
  letter-spacing: .01em;
  margin-bottom: 2px;
  color: var(--c-text);
}
.r0lp .k-li-text{
  display: block;
  color: #333;
  font-size: 14px;
}

/* --- 横並びは既存の .split-row を利用（PC） --- */
@media (min-width: 900px){
  .r0lp .split-row{
    display: grid !important;
    grid-template-columns: minmax(520px,1fr) minmax(420px,560px);
    align-items: center;
    gap: 24px;
    margin-top: 8px;
  }
  .r0lp .split-text{ max-width: none; min-width: 0; }
  .r0lp .split-row .img-slot{ margin: 0; width: 100%; justify-self: end; }
  .r0lp .split-row .img-slot img{
    width: 100%; height: auto;
    inline-size: clamp(420px, 40vw, 560px);
    max-width: 560px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }
}

/* モバイルは縦積み */
@media (max-width: 899px){
  .r0lp .split-row{ display: block !important; }
  .r0lp .split-row .img-slot{ margin-top: 20px; }
}
/* 縦積み2枚 */
.r0lp .img-slot.img-stack {
  display: grid;
  gap: 16px;
}
.r0lp .img-slot.img-stack img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.r0lp .annotation,
.r0lp p .annotation,
.r0lp .wp-block-paragraph .annotation,
.r0lp .split-text p .annotation {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--c-accent, #800020) !important;
  display: inline-block;          /* 行間を安定させる */
  line-height: 1.6;
}


/* ===== スマホの左右安全余白（背景は100%のまま、中身だけ余白） ===== */
@media (max-width: 899px){
  .r0lp .section-bleed .container,
  .r0lp .u-bleed .container {
    padding-inline: 16px !important;  /* ここでスマホの左右余白を確保 */
  }

  /* 画像が端に張り付かないように微調整（任意） */
  .r0lp .section-bleed .img-slot{
    margin-left: 0;
    margin-right: 0;
    border-radius: 8px;
  }
}
.r0lp .img-slot.img-double img:first-child {
  margin-bottom: 10px;
}

/* 投稿下部のCTA */
/* CTAボックス */
.newsletter-cta{
  text-align:center;
  border:2px solid #800020;
  border-radius:12px;
  padding:32px 20px;
  margin-top:60px;
  box-shadow:0 4px 16px rgba(0,0,0,.06);
}
.newsletter-copy{
  font-size:18px; font-weight:600; color:#333;
  margin-bottom:18px; line-height:1.7;
}
.newsletter-btn{
  display:inline-flex; align-items:center; gap:10px;
  background:#800020; color:#fff; font-weight:700; text-decoration:none;
  padding:14px 28px; border-radius:999px;
  transition:all .2s ease; font-size:16px;
}
.newsletter-btn:hover{ background:#a00028; transform:translateY(-2px); }

/* メールアイコン（SVGをCSSで挿入・KSES対策） */
.newsletter-btn .mail-ico{
  width:26px; height:26px; display:inline-block; flex:0 0 26px;
  background-repeat:no-repeat; background-size:contain; background-position:center;
  /* 白ストロークの封筒アイコン */
  background-image:url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\
<rect x='3' y='5' width='18' height='14' rx='2' ry='2'/>\
<polyline points='3 7 12 13 21 7'/>\
</svg>");
}

/* ダーク背景の記事に置く可能性がある場合（任意）：色を反転したいとき */
.dark .newsletter-btn{ background:#fff; color:#800020; }
.dark .newsletter-btn .mail-ico{
  background-image:url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23800020' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\
<rect x='3' y='5' width='18' height='14' rx='2' ry='2'/>\
<polyline points='3 7 12 13 21 7'/>\
</svg>");
}

.newsletter-btn:hover {
  background: #a00028;
  transform: translateY(-2px);
}

/* 会員限定コンテンツログイン画面 */

.page-id-1210 .link-text {
	display: none !important;
}
