﻿@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. 基本設定・共通 --- */


/* 明朝体が必要な箇所のみ適用 */
.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; }
}

.font90{
font-size:90%;
}



#genre_entertainment{
display:none;
}

/* --- 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;
}

.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;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .reward-header h2 { font-size: 1.6rem; }
  .reward-content-box { padding: 40px 20px; width: 95%; }
  .reward-text-inner h3 { font-size: 1.4rem; }
}


.block-globalnav, .pane-globalnav{
display:none !important;
}

h1{
    margin-top: 0px !important;
}

.h1_copy{
    font-size: 18px;
    font-weight: normal;
background-image: none !important;
    padding-left: 20px !important;
}

@media screen and (max-width: 767px) {
.h1_copy{
padding-top: 0px !important;
}

}

.mg0{
margin:0 auto;
}



.bk_orange{
    background: #dd8200;
}


.wrapper .cmn_tit01 {
    font-size: 18px !important;
      margin: 0;
    padding: 0 !important;
    text-align: left !important;
}

@media screen and (max-width: 767px) {
.wrapper .cmn_tit01 {
margin:0 5px;
}
}

.no_underline{
border-bottom:none !important;
}

.wrapper .no_underline:after {
content:none !important;
}

.wrapper .cmn_column03_img {
    margin-bottom: 0px !important;
}

/* オンマウス時のあしらい */
.ent_card a:hover img {
    opacity: 0.6;
}

/* 黄色のアンダーライン消す */
.wrapper .cmn_tit01_underline:after {
    content: none;
}


/* 注目！カテゴリ */

.cat-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
        margin: 0 auto;
    width: 1060px;
}

.cat-button li {
    width: 48.5%;
    margin: 0 0 20px;
    list-style: none;
    border: 1px solid #aaa;
    border-radius: 10px;
    box-shadow: 0 2px 4px #ddd;
    transition: box-shadow .3s, border .3s;
}

.cat-button li a span {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    padding-left: 0;
    padding-right: 0;
}

.cat-button li:nth-child(1) a {

 background:linear-gradient(to left, transparent 0%, white 70%, white 100%), /* 左から右へ透明→白へ */
        url(/img/usr/top/visual/back_popularsong.jpg) center right no-repeat; /* ここに画像パスを指定 */

}

.cat-button li:nth-child(2) a {
 background:linear-gradient(to left, transparent 0%, white 70%, white 100%), /* 左から右へ透明→白へ */
        url(/img/usr/top/visual/back_utahime.jpg) center right no-repeat; /* ここに画像パスを指定 */

}

.cat-button li:nth-child(3) a {
 background:linear-gradient(to left, transparent 0%, white 70%, white 100%), /* 左から右へ透明→白へ */
        url(/img/usr/top/visual/back_easylistening.jpg) center right no-repeat; /* ここに画像パスを指定 */

}

.cat-button li:nth-child(4) a {
 background:linear-gradient(to left, transparent 0%, white 70%, white 100%), /* 左から右へ透明→白へ */
        url(/img/usr/top/visual/back_lyricsong.jpg) center right no-repeat; /* ここに画像パスを指定 */

}

.cat-button li a {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: 100px;
    border: 2px solid #fff;
    box-sizing: border-box;
    background-size: 100% !important;
    font-family: 'NotoSansJP', sans-serif;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    padding: 34px 0 0 10px;
    text-decoration: none !important;
    transition: color .3s;
}

.cat-button2 a {
    padding: 18px 0 0 10px !important;
}

.cat-button li:hover {
    box-shadow: none;
    border: 1px solid #FF6600;
}

.block-top-feature h2.block-top-title span {
    padding: 5px 0 5px 51px;
    background: url(/img/usr/common/icon_feature.png) left center no-repeat;
    -webkit-background-size: 36px 36px;
    background-size: 36px 36px;
    display: inline-block;
}

.tyumoku{
    text-align: left;
    padding-left: 20px;
}

/*CDカテゴリ */


a.block-genre-category-link-items__link {
    text-align: left;
}

.back_orange{
background-color:#FFF7EB;
}

.block-genre-category-link-items {
    margin: 20px auto 20px;
}

/*カテゴリから探す */

.wrapper .cmn_column04_img {
    margin: 0;
}


.wrapper .cmn_tit01_underline:after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: -3px;
    left: 0;
    height: 3px;
    width: 100%;
    background: #f39800;
}

.alllink{
color: #3776A1;
    text-decoration: underline;
font-weight:bold;
}

.parent {
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
padding:10px;
text-align:center;
}

@media screen and (max-width: 767px) {
.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 10px;
    padding: 10px;
    text-align: center;
}
}

.parent p {
border: solid 1px;
    margin: 0 3px;
    padding: 2px;
    height: 62px;
}

.parent p a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #333;
  transition: background-color .2s;
}

.parent p a:hover {
  background: #f39800;
  color: #fff;
}

#genre_cd, #genre_dvd{
    text-align: left !important;
    padding: 20px 0px 0px !important;
margin-bottom:0px;
border-bottom: solid 1px;
}

@media screen and (max-width: 767px) {
#genre_cd, #genre_dvd{
margin: 0 5px;
}
}


.block-topic-path {
display:none;
}

h2.block-top-title#block_top_cm span {
    padding: 5px 0 5px 51px;
    background: url(../../img/usr/common/icon_tv.png) left center no-repeat;
    -webkit-background-size: 36px 36px;
    background-size: 36px 36px;
    display: inline-block;
    margin-top: 10px;
    font-size: 110%;
}

#block_top_cm{
padding-top:10px;
margin-bottom:10px !important;
}

@media screen and (max-width: 767px) {

#block_top_cm{
    padding-top: 30px !important;
}

.layout_column04 {
    padding: 0 5px;
}

.cate_cd{
padding-top:0px !important;
        padding-left: 40px !important;
}

.block-genre-page--header span{
background-position: left;
}

.mv-wrap{
padding: 0 5px;
}

.wrapper .cmn_column04 {
    grid-template-columns: repeat(2, 1fr);
}

.wrapper .cmn_column04_col01 {
        grid-column: auto;
        border-top: none;
padding-top: 0px;
}

.wrapper .cmn_column04_col01:last-child {
        border-bottom: none;
}

}

.anchor-offset {
  position: relative;
  top: -70px; /* 調整したい高さ*/
  height: 0;
}

@media screen and (max-width: 767px) {
.anchor-offset {
  position: relative;
  top: 0px; /* 調整したい高さ*/
  height: 0;
}

.font85{
font-size:85%;
}

h2.block-top-title#block_top_cm span{
padding: 10px 0 0 0  !important;

}
}

