/* ==================================================
   Re:Marry 共通CSS（re.marry.jp 専用）
   大人の縁結び｜Re:Marry
================================================== */

/* --------------------
   ベース
-------------------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #ffffff;
  line-height: 1.9;
  font-size: 18px; /* ★ 全体を大きく */
}

a {
  color: inherit;
}

/* --------------------
   ヘッダー
-------------------- */
.remarry-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e2dd;
}

.remarry-inner {
  max-width: 900px;
  margin: auto;
  padding: 24px 24px; /* 少し余裕を持たせる */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.remarry-logo {
  text-decoration: none;
}

.logo-main {
  display: block;
  font-size: 1.5rem; /* ★ 拡大 */
  color: #8a6d4a;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.logo-sub {
  display: block;
  font-size: 0.95rem; /* ★ 拡大 */
  color: #777;
  margin-top: 6px;
}

/* CTA */
.remarry-cta {
  border: 1px solid #8a6d4a;
  color: #8a6d4a;
  padding: 12px 26px; /* ★ 押しやすく */
  border-radius: 24px;
  font-size: 1rem; /* ★ 拡大 */
  text-decoration: none;
  transition: 0.25s;
}

.remarry-cta:hover {
  background: #8a6d4a;
  color: #fff;
}

/* --------------------
   セクション共通
-------------------- */
section {
  max-width: 900px;
  margin: auto;
  padding: 100px 24px; /* ★ 縦余白を広めに */
}

.section-soft {
  background: #faf9f7;
  border-top: 1px solid #e6e2dd;
  border-bottom: 1px solid #e6e2dd;
}

/* 見出し */
h1 {
  font-size: 2.4rem; /* ★ 拡大 */
  font-weight: 500;
  letter-spacing: 0.04em;
}

h2 {
  font-size: 1.85rem; /* ★ 拡大 */
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

/* --------------------
   ファーストビュー
-------------------- */
.fv {
  text-align: center;
  padding: 130px 24px; /* ★ ゆったり */
  background: linear-gradient(
    to bottom,
    #faf9f7 0%,
    #ffffff 70%
  );
}

.fv p {
  color: #666;
  margin-top: 22px;
  font-size: 1.1rem; /* ★ 拡大 */
}

/* --------------------
   共感リスト
-------------------- */
.empathy-list {
  padding-left: 0;
  list-style: none;
}

.empathy-list li {
  margin-bottom: 18px; /* ★ 行間を広げる */
  padding-left: 20px;
  position: relative;
  font-size: 1.05rem; /* ★ 読みやすく */
}

.empathy-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #8a6d4a;
}

/* --------------------
   ボタン共通
-------------------- */
.cta-main {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 40px; /* ★ 押しやすく */
  border-radius: 32px;
  border: 1px solid #8a6d4a;
  color: #8a6d4a;
  font-size: 1.05rem; /* ★ 拡大 */
  text-decoration: none;
  transition: 0.3s;
}

.cta-main:hover {
  background: #8a6d4a;
  color: #fff;
}

/* --------------------
   フッター直前メッセージ
-------------------- */
.footer-message {
  text-align: center;
  padding: 120px 24px;
  background: linear-gradient(
    to top,
    #faf9f7 0%,
    #ffffff 80%
  );
  font-size: 1.45rem; /* ★ 印象的に */
  letter-spacing: 0.08em;
  color: #666;
}

/* --------------------
   フッター
-------------------- */
.remarry-footer {
  background: #faf9f7;
  border-top: 1px solid #e6e2dd;
}

.remarry-footer-inner {
  max-width: 900px;
  margin: auto;
  padding: 70px 24px 50px;
  text-align: center;
}

/* ブランド */
.footer-title {
  font-size: 1.35rem; /* ★ 拡大 */
  color: #8a6d4a;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.footer-sub {
  font-size: 0.95rem; /* ★ 拡大 */
  color: #777;
  margin-top: 8px;
}

/* ナビ */
.footer-nav {
  margin: 34px 0 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-nav a {
  font-size: 1rem; /* ★ 拡大 */
  color: #555;
  text-decoration: none;
}

.footer-nav a:hover {
  opacity: 0.7;
}

/* 注意書き */
.footer-note {
  font-size: 0.95rem; /* ★ 拡大 */
  color: #666;
  line-height: 1.8;
}

/* コピーライト */
.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  padding: 24px 0;
}

/* --------------------
   スマホ最適化
-------------------- */
@media (max-width: 768px) {
  body {
    font-size: 17px; /* ★ スマホでも小さくしすぎない */
  }

  .remarry-inner {
    padding: 20px 18px;
  }

  .logo-main {
    font-size: 1.3rem;
  }

  section {
    padding: 80px 20px;
  }

  .fv {
    padding: 100px 20px;
  }

  .footer-nav {
    gap: 18px;
  }
}
/* ======================================
   フッターナビ外部リンクマーク（確実版）
====================================== */
.footer-nav a::after {
  content: " ↗";
  font-size: 0.85em;
  color: #999;
  margin-left: 4px;
}
/* ======================================
   デュアルCTA（LINE / 電話）
====================================== */
.cta-dual {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-sub {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  border: 1px solid #999;
  color: #555;
  text-decoration: none;
  font-size: 1rem;
  text-align: center;
  transition: 0.25s;
  background: #fff;
}

.cta-sub:hover {
  background: #f2f2f2;
}

.cta-tel {
  display: block;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* スマホ最適化 */
@media (max-width: 768px) {
  .cta-dual {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-sub {
    font-size: 1.05rem;
  }
}
/* ======================================
   LINE・電話 共通CTA
====================================== */
.cta-dual {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

/* 電話ボタン専用調整 */
.cta-phone {
  background: #ffffff;
  color: #8a6d4a;
}

.cta-phone:hover {
  background: #8a6d4a;
  color: #ffffff;
}

/* 電話番号 */
.cta-tel {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* スマホ最適化 */
@media (max-width: 768px) {
  .cta-dual {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-main {
    text-align: center;
  }
}

/* ======================================
   ヘッダーCTA（LINE / 電話）
====================================== */
.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s;
}

/* LINE */
.header-line {
  background: #06C755;
  color: #fff;
}

.header-line:hover {
  opacity: 0.85;
}

/* 電話 */
.header-phone {
  border: 1px solid #8a6d4a;
  color: #8a6d4a;
  background: #fff;
}

.header-phone:hover {
  background: #8a6d4a;
  color: #fff;
}

/* スマホ最適化 */
@media (max-width: 768px) {
  .header-cta {
    gap: 8px;
  }

  .header-btn {
    font-size: 0.85rem;
    padding: 9px 14px;
  }
}
/* ===== 強制表示テスト ===== */
.header-cta {
  display: flex !important;
}

.header-btn {
  display: inline-block !important;
}
/* =====================
   Re:Marry Footer Style
===================== */

.remarry-footer{
  background:#f3ede3;
  padding:50px 20px 20px;
  color:#4a3f35;
  font-size:0.95rem;
}

.remarry-footer-inner{
  max-width:1000px;
  margin:auto;
  text-align:center;
}

.footer-brand{
  margin-bottom:25px;
}

.footer-title{
  font-size:1.1rem;
  font-weight:600;
}

.footer-sub{
  font-size:0.9rem;
  color:#7a6f60;
  margin-top:6px;
}

.footer-nav{
  margin:25px 0;
}

.footer-nav a{
  display:inline-block;
  margin:6px 12px;
  color:#6a5a4a;
  text-decoration:none;
  font-size:0.9rem;
}

.footer-nav a:hover{
  text-decoration:underline;
}

.footer-note{
  font-size:0.85rem;
  color:#7a6f60;
  margin-top:20px;
  line-height:1.7;
}

.footer-copy{
  margin-top:30px;
  font-size:0.8rem;
  color:#999;
  border-top:1px solid #e0d8cc;
  padding-top:15px;
}
/* ===== 情報ブロック ===== */

.info-block{
  background:#fff;
  padding:30px;
  margin-bottom:25px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.info-block h3{
  font-size:1.2rem;
  margin-bottom:15px;
  color:#6a5a4a;
}

/* ===== 利用者の声 ===== */

.voice-block{
  background:#faf6f0;
  padding:30px;
  margin-bottom:25px;
  border-left:4px solid #bfa36a;
  border-radius:8px;
}

.voice-block span{
  display:block;
  margin-top:12px;
  font-size:0.9rem;
  color:#7a6f60;
}
.footer-call{
  text-align:center;
  padding:40px 20px;
  background:#faf6f0;
}

.footer-phone-btn{
  display:inline-block;
  padding:16px 36px;
  background:#ffffff;
  border:2px solid #c9a646;
  color:#4a3f35;
  text-decoration:none;
  border-radius:50px;
  font-size:1.05rem;
  letter-spacing:1px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.footer-phone-btn strong{
  font-size:1.3rem;
  color:#b8922c;
  letter-spacing:2px;
}

.footer-phone-btn:hover{
  background:#f6efe3;
  transform:translateY(-2px);
}

.phone-icon{
  font-size:1.2rem;
  margin-right:6px;
}
