﻿@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@700;900&display=swap');

/* --- 0. 全体設定（ユーキャン通販サイトの可読性を再現） --- */
body {
  /* システムフォントを優先し、マルチデバイスで安定した表示に */
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #333333;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* 100vwによる横揺れを防止 */
}

/* --- 1. 基本設定・共通 --- */
.travel-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* 明朝体が必要な箇所のみ適用 */
.mincho-bold {
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 700;
}

.viewPc { display: block; }
.viewSp { display: none; }

@media screen and (max-width: 767px) {
  .viewPc { display: none !important; }
  .viewSp { display: block !important; }
}


/* --- 2. イントロ（フルワイド・透過イラスト入り） --- */
.intro-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 8px solid #fff;
  border-bottom: 8px solid #fff;
  padding: 60px 20px 80px;
  margin-bottom: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  opacity: 0.5;
  background-image: 
    url("/img/usr/mothersday26/mothers_day_2026_02.png"),
    radial-gradient(#ffdde5 2px, transparent 1px);
  background-repeat: no-repeat, repeat;
  background-position: right 30% bottom -20px, center;
  background-size: 200px auto, 20px 20px;
}

.intro-title {
  font-size: 2.4rem;
  color: #c2185b; /* ボルドー */
  line-height: 1.3;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.intro-label {
  color: #4A7067; /* 提案のグリーン */
  font-size: 1.5rem;
  letter-spacing: 0.3em; 
  font-weight: 800;
  display: inline-block;
  border-bottom: 2px solid #4A7067; 
  padding-bottom: 3px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  /* --- 1. イントロのラベル（グリーンの文字） --- */
  .intro-label {
    font-size: 1.1rem;      /* 1.5rem → 1.1remへ下げ */
    letter-spacing: 0.15em; /* 字間を少し詰めて視認性アップ */
    margin-bottom: 10px;    /* 下との余白調整 */
  }

  /* --- 2. イントロのメインタイトル --- */
  .intro-title {
    font-size: 1.5rem;      /* 1.8rem → 1.5remへ下げ */
    line-height: 1.4;       /* 行間を少し詰める */
    margin-bottom: 20px;    /* 下のテキストとの距離を調整 */
  }
  }


.intro-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: #704238; /* 茶系 */
  line-height: 2.2;
  font-weight: 500; /* ベースウェイト */
  text-align: center;
  text-align-last: center;
  position: relative;
  z-index: 2;
  /* text-shadowによる微細な肉付け（540&#12316;550相当の視覚効果） */
  text-shadow: 0.4px 0 0 #704238, -0.4px 0 0 #704238;
}

/* --- 3. セクション見出し --- */
.h2-title {
  font-size: 2rem;
  color: #c2185b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

/* 左右に配置する小さなひし形の飾り */
.h2-title::before,
.h2-title::after {
  content: '';
  width: 12px;
  height: 12px;
  background-color: #f48fb1; /* 少し明るめのピンク */
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* --- 4. 商品カード（2枚×2段） --- */
.card-wrapper.two-cols-large {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto 50px;
  max-width: 1000px;
}

.travel-card {
  width: calc(50% - 15px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  border: 1px solid #fce4ec;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.travel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.12);
}

.card-img-wrap img { width: 100%; display: block; }
.card-body { padding: 30px 20px; text-align: center; }

.card-title {
  font-size: 1.7rem;
  color: #d81b60;
  margin-bottom: 15px;
  line-height: 1.7;
  font-weight: 700;
}

.card-sub {
  font-size: 1.3rem;
  color: #5d4037;
  line-height: 1.6;
}

.card-footer {
  padding: 0 20px 30px;
  margin-top: auto;
  text-align: center;
}

/* --- 5. 読み物（由来） --- */
.column-section {
  margin: 100px 0;
  padding: 80px 0;
  background-color: #fffafb;
  position: relative;
}

.column-section::before,
.column-section::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background: #f48fb1;
}
.column-section::before { top: 0; }
.column-section::after { bottom: 0; }

.column-box-fixed {
  max-width: 900px;
  margin: 0 auto !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column-title {
  font-size: 2.1rem;
  color: #c2185b;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
}

.column-content-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
}

.column-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.column-text p {
  font-size: 1.15rem;
  color: #5d4037; /* ★少しだけ濃い茶色に変更（可読性アップ） */
  line-height: 2.1;
  margin-bottom: 1.5em;
  font-weight: 500; /* ★標準より一段階太いウェイトを指定 */
  
  /* ★ もしこれでも細ければ、ここにも微弱な肉付けを追加 */
  text-shadow: 0.2px 0 0 #5d4037; 
}

.column-img img {
  border: 10px solid #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  width: 240px;
}

/* --- 6. フッターライン --- */
.footer-line {
  border-top: 2px solid #fce4ec;
  position: relative;
  margin: 100px auto 150px;
  max-width: 1100px;
}

.footer-text-inner {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 15px 40px; /* 上下パディングを少し増やして安定感を */
  color: #704238;
  font-weight: 550; /* 必要に応じて500＋text-shadowに調整してください */
  font-size: 1.2rem;
  line-height: 1.8;
  width: 85%;
  max-width: 800px; /* 広がりすぎ防止 */
  box-sizing: border-box;
  
  /* --- 中央揃えの設定 --- */
  text-align: center;
  display: flex;          /* 中身を上下左右中央にするための追加 */
  justify-content: center;
  align-items: center;
}

/* --- 7. レスポンシブ --- */
@media screen and (max-width: 767px) {
  .intro-title { font-size: 1.8rem; }
  .h2-title { font-size: 1.5rem; }
  .two-cols-large .travel-card { width: 100%; max-width: 400px; }
  .column-content-flex { flex-direction: column; gap: 30px; text-align: center; }
  .column-img img { width: 220px; }
  .footer-text-inner { font-size: 1rem; top: -55px; width: 90%; }
  
  /* スマホでの肉付けを少し抑える（滲み防止） */
  .intro-text {
    font-size: 1.1rem;
    text-shadow: 0.3px 0 0 #704238;
  }
}

/* --- 自分へのご褒美セクション（オレンジ系リッチ版） --- */
.reward-section {
  padding: 100px 20px;
  /* 背景を白からごく薄いエクリュベージュへのグラデーションに */
  background: radial-gradient(#fff 60%, #fff8ed 100%); 
}

.reward-header h2 {
  font-size: 2.2rem;
  color: #e67e22; /* メインアクセント：テラコッタオレンジ */
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

/* タイトルの上下のラインもオレンジに */
.reward-header h2::before,
.reward-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #e67e22; /* オレンジ */
}
.reward-header h2::before { top: -20px; }
.reward-header h2::after { bottom: -20px; }

.intro-p {
  font-size: 1.2rem;
  line-height: 2.1;
  color: #704238; /* 茶系を継続 */
  margin-bottom: 50px;
}

/* メインのメッセージボックス */
.reward-content-box {
  background-color: #fff8ed; /* 薄いエクリュベージュ */
  padding: 50px 40px;
  border-radius: 4px; 
  margin: 50px auto;
  max-width: 850px;
  position: relative;
  /* 額縁風の枠線をオレンジベージュ系に */
  border: 1px solid #e0c5a3;
  box-shadow: 0 0 0 6px #fff8ed, 0 0 0 7px #e0c5a3; 
}

/* 四隅の飾り（クオーテーションマーク）の色をゴールド系に */
.reward-content-box::before {
  content: '“';
  position: absolute;
  top: 10px; left: 20px;
  font-size: 5rem;
  color: #f7e1b5; /* アプリコットゴールドの薄い色 */
  font-family: serif;
}

.reward-text-inner h3 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 25px !important;
  color: #e67e22 !important; /* キャッチコピーもテラコッタオレンジに */
}

.reward-text-inner p {
  font-size: 1.15rem;
  line-height: 2.3;
  color: #5d4037; /* 茶系テキスト */
  text-align: center;
}

.section-subtext {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: #e67e22 !important; /* 最後の一押しもオレンジに */
  /* アンダーライン風マーカーをアプリコットゴールドに */
  background: linear-gradient(transparent 70%, #fceed3 70%); 
  display: inline-block;
  padding: 0 10px;
}

