/*
 * anniversary70.css
 * 吉徳 創業70周年記念ページ専用スタイルシート
 * URL: https://www.yoshitoku.co.jp/anniversary70/
 *
 * 使用方法:
 *   wp_enqueue_style('anniversary70', get_template_directory_uri() . '/css/anniversary70.css');
 *   または functions.php にて条件付き読み込み推奨。
 */

/* ===========================================
   CSS カスタムプロパティ（デザイントークン）
   =========================================== */
*{ box-sizing: border-box; }

html{
    margin-top: 0!important;
}
body{
    margin: 0;
}
a{ text-decoration: none; }
#anniversary70-wrap {
    --anniv-gold:        #b8972a;
    --anniv-gold-light:  #d4af37;
    --anniv-gold-pale:   #f5edcf;
    --anniv-red:         #9b1c1c;
    --anniv-red-deep:    #6e1212;
    --anniv-cream:       #faf6ef;
    --anniv-white:       #ffffff;
    --anniv-text:        #371c00;
    --anniv-text-mid:    #5a4a38;
    --anniv-text-light:  #8a7a68;
    --anniv-border:      #e0d5c0;

    --anniv-font-display: 'Noto Serif JP', 'Yu Mincho', '游明朝', YuMincho, 'Hiragino Mincho ProN', serif;
    --anniv-font-body:    'Hiragino Maru Gothic ProN', 'Meiryo', sans-serif;

    --anniv-max-width:   1100px;
    --anniv-gutter:      clamp(16px, 4vw, 40px);

    --anniv-radius-sm:   4px;
    --anniv-radius-md:   8px;
    --anniv-radius-lg:   16px;

    --anniv-transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --anniv-shadow-card: 0 2px 12px rgba(44, 33, 24, 0.10);
    --anniv-shadow-hover:0 6px 24px rgba(44, 33, 24, 0.18);

    font-family: var(--anniv-font-body);
    color: var(--anniv-text);
    background-color: var(--anniv-cream);
    line-height: 1.8;
    background: url(../images/anniversary70/bg.jpg) center top / contain repeat-y;
}
:root {
    --a70-brown       : #371c00;  /* モンチッチ参考サイト準拠 */
    --a70-brown-mask  : rgba(55, 28, 0, 0.60);
    --a70-gold        : #b8972a;
    --a70-border      : #e0d5c0;
    --a70-bg          : #faf6ef;
    --a70-white       : #ffffff;
    --a70-text        : #3a2d1e;
    --a70-text-lt     : #e53400;
    --a70-header-h    : 64px;     /* JS 側で実際の高さを取得する */
    --a70-gap         : 20px;
    --a70-max         : 1280px;
    --a70-ease        : cubic-bezier(0.4, 0, 0.2, 1);
    --a70-shadow      : 0 2px 12px rgba(44, 33, 24, 0.10);
    --a70-shadow-lg   : 0 6px 24px rgba(44, 33, 24, 0.20);
}

/* ===========================================
   ユーティリティ
   =========================================== */
#anniversary70-wrap .pc-only {
    display: none;
}
@media (min-width: 768px) {
    #anniversary70-wrap .pc-only {
        display: inline;
    }
}
.text-center{
    text-align: center;
}


/* =============================================
   HEADER
   ============================================= */
.anniv70-header {
    /* position: sticky; */
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
    /* background-color: var(--a70-red);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25); */
}
 
.anniv70-header__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: var(--a70-max);
    margin: 0 auto;
    padding: 28px 20px 0 44px;
    /* height: var(--a70-header-h); */
}
 
/* ロゴ */
.anniv70-header__logo {
    margin-top: 10px;
}
.anniv70-header__logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
 
.anniv70-header__logo img {
    display: block;
    /* max-height: 40px; */
    width: auto;
}
 
.anniv70-header__logoText {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--a70-white);
    white-space: nowrap;
}
 
/* ヘッダーバッジ */
.anniv70-header__badge {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-shrink: 0;
}
 
.anniv70-header__badgeNum {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--a70-gold-lt);
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
 
.anniv70-header__badgeTh {
    font-family: 'Georgia', serif;
    font-size: 16px;
    color: var(--a70-gold-lt);
    line-height: 1;
}
 
.anniv70-header__badgeLabel {
    font-family: 'Georgia', serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    margin-left: 6px;
}
 
/* ヘッダーナビ */
.anniv70-header__nav ul {
    display: block;
    /* align-items: center; */
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}
 
.anniv70-header__nav a {
    display: block;
    padding: 4px 14px;
    /* font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    border-radius: 2px; 
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;*/
}
 
.anniv70-header__nav a:hover {
    /* color: var(--a70-white);
    background: rgba(255,255,255,0.15); */
    opacity: 0.75;
}
 
/* ハンバーガー（SP用） */
/* .anniv70-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
 
.anniv70-header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--a70-white);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
} */
 
/* ハンバーガー → ✕ */
/* .anniv70-navOpen .anniv70-header__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.anniv70-navOpen .anniv70-header__hamburger span:nth-child(2) { opacity: 0; }
.anniv70-navOpen .anniv70-header__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } */
 
/* SP ドロワーナビ */
/* .anniv70-spNav {
    display: none;
    position: absolute;
    top: var(--a70-header-h);
    left: 0;
    right: 0;
    background: var(--a70-red-deep);
    z-index: 999;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.3s var(--a70-ease), opacity 0.3s;
    pointer-events: none;
}
 
.anniv70-spNav[aria-hidden="false"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
 
.anniv70-spNav ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}
 
.anniv70-spNav a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    color: var(--a70-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
}
 
.anniv70-spNav a:hover {
    background: rgba(255,255,255,0.1);
}
 */


/* ===========================================
   ヒービジュアル
   =========================================== */
.anniv-hero {
    position: relative;
    min-height: clamp(260px, 40vw, 480px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background:
        linear-gradient(160deg, var(--anniv-red-deep) 0%, var(--anniv-red) 50%, #c0392b 100%); */
    text-align: center;
}

/* 和柄風の背景装飾 */
/* .anniv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(212,175,55,0.06)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(212,175,55,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: auto, auto, 60px 60px;
}

.anniv-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--anniv-cream));
    pointer-events: none;
} */

.anniv-hero__inner {
    position: relative;
    z-index: 1;
    /* padding: var(--anniv-gutter); */
    /* padding-top: 70px; */
    margin-left: 4vw;
}

.anniv-hero__badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* width: clamp(100px, 18vw, 160px);
    height: clamp(100px, 18vw, 160px);
    border-radius: 50%;
    background: radial-gradient(135deg, var(--anniv-gold-light) 0%, var(--anniv-gold) 60%, #8a6d1a 100%);
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 0 0 6px rgba(212, 175, 55, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.4); */
    margin: 0 auto;
    line-height: 1;
    /* animation: anniv-badge-pop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both; */
}

/* @keyframes anniv-badge-pop {
    from { transform: scale(0.6); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
} */

/* .anniv-hero__year {
    display: block;
    font-family: 'Times New Roman', 'Georgia', serif;
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 700;
    color: var(--anniv-white);
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.anniv-hero__label {
    display: block;
    font-family: 'Georgia', serif;
    font-size: clamp(10px, 2vw, 14px);
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-top: 2px;
}

.anniv-hero__title {
    font-family: var(--anniv-font-display);
    font-size: clamp(22px, 5vw, 42px);
    font-weight: 700;
    color: var(--anniv-white);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    margin: 0 0 12px;
    animation: anniv-fade-up 0.7s 0.3s ease both;
}

.anniv-hero__subtitle {
    font-size: clamp(14px, 2.5vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    animation: anniv-fade-up 0.7s 0.5s ease both;
} */

@keyframes anniv-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   コンテナ
   =========================================== */
.anniv-container {
    max-width: var(--anniv-max-width);
    margin: 0 auto;
    padding: 0 var(--anniv-gutter) 25px;
}

/* ===========================================
   セクション共通タイトル
   =========================================== */
.anniv-section-title {
    /* font-family: var(--anniv-font-display);
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 700;
    color: var(--anniv-text); */
    text-align: center;
    margin: 0;
    padding-bottom: 0;
    position: relative;
    line-height: 1;
}
.anniv-section-title + p {
    margin: 0 auto 1em;
}
/* .anniv-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--anniv-gold), var(--anniv-gold-light));
    border-radius: 2px;
} */

/* ===========================================
   イントロ
   =========================================== */
.anniv-intro {
    padding: 0;
    text-align: center;
}

.anniv-intro__inner {
    max-width: 760px;
    margin: -25px auto 0;
    display: flex;
    justify-content: space-between;
}
.anniv-intro__inner .anniv-section-title {
    text-align: left;
    line-height: 1;
}
.anniv-intro__inner .anniv-section-title + p{
}
.anniv-intro__text-block {
    padding-top: 67px;
    padding-left: 20px;
}
.anniv-intro__text {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--anniv-text-mid);
    margin-bottom: 28px;
    line-height: 2;
    text-align: left;
}
.anniv-intro__text p{
    margin-top: 4px;
}
/* .anniv-intro__prev {
    margin-top: 8px;
}

.anniv-prev-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--anniv-gold);
    text-decoration: none;
    border: 1px solid var(--anniv-gold);
    padding: 8px 20px;
    border-radius: 99px;
    transition: all var(--anniv-transition);
}

.anniv-prev-link:hover {
    background: var(--anniv-gold);
    color: var(--anniv-white);
}

.anniv-prev-link__icon {
    font-size: 16px;
    line-height: 1;
} */

.section-inner{
    background: #fff;
    border-radius: 120px;
    padding: 40px 75px 60px;
}
/* ===========================================
   ニュース一覧
   =========================================== */
.anniv-news {
    padding: 40px 0 0;
    /* border-top: 1px solid var(--anniv-border); */
}
.anniv-news .anniv-section-title img{
    margin-left: -2.5em;
}

/* グリッドコンテナ */
.newsMediaList.newsMediaList-grid {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    /* gap 代わりに margin で再現 */
    margin-top:  calc(var(--a70-gap) * -1);
    margin-left: calc(var(--a70-gap) * -1);
}
 
/* -------------------------------------------------------
   アイテム
   PC: 4列 / Tablet: 3列 / SP: 2列
   ------------------------------------------------------- */
.anniv-news__item.newsMediaList_item {
    position: relative;
    width: calc(25% - var(--a70-gap));   /* PC 4列 */
    margin-top:  var(--a70-gap);
    margin-left: var(--a70-gap);
    overflow: hidden;
    background: var(--a70-white);
    /* border: 1px solid var(--a70-border);
    border-radius: 4px;
    box-shadow: var(--a70-shadow);
    transition: box-shadow 0.2s var(--a70-ease), transform 0.2s var(--a70-ease); */
}
 
.anniv-news__item.newsMediaList_item:hover {
    box-shadow: var(--a70-shadow-lg);
    transform: translateY(-3px);
}
 
/* 初期表示外 */
.anniv70-item--hidden {
    display: none !important;
}
 
/* -------------------------------------------------------
   サムネイル（203 × 203 正方形）
   ------------------------------------------------------- */
.newsMediaList_figure.anniv-news__thumb {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 100%;   /* 1:1 アスペクト比 */
    overflow: hidden;
    background: var(--a70-white);
    /* border-bottom: 1px solid var(--a70-border); */
    margin: 0;
}
 
.newsMediaList_img.anniv-news__img {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;          /* 203 × 203 正方形クロップ */
    display: block;
    transition: transform 0.3s var(--a70-ease);
}
 
/* .anniv-news__item:hover .anniv-news__img {
    transform: scale(1.05);
} */
 
/* No Image */
.anniv-news__img--noimage {
    object-fit: none;
    background: #f0e8d8;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--a70-text-lt);
    letter-spacing: 1px;
}
 
/* -------------------------------------------------------
   テキストボディ
   ------------------------------------------------------- */
.newsMediaList_body.anniv-news__body {
    padding: 13px 0 13px 10px;
}
 
.anniv-news__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
 
.anniv-news__date {
    font-size: 12px;
    color: var(--a70-text-lt);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
    white-space: nowrap;
    line-height: 1;
}
 
/* .anniv-news__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--a70-white);
    background: var(--a70-gold);
    padding: 2px 10px;
    border-radius: 22px;
    line-height: 1.5;
} */
 
.newsMediaList_title.anniv-news__title {
    font-size: 12px;
    /* font-weight: 700; */
    line-height: 1.5;
    color: var(--a70-brown);
    margin-top: 8px;
    margin-bottom: 0;
    /* 3行クランプ */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -1px;
}
 
.anniv-news__excerpt {
    font-size: 12px;
    color: var(--a70-text-lt);
    line-height: 1.7;
    /* 2行クランプ */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* -------------------------------------------------------
   ホバーマスク（モンチッチ colorType01 準拠）
   背景色 : rgba(93, 61, 43, 0.85)
   ------------------------------------------------------- */
.newsMediaList_mask {
    display: block !important;
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 5px;
    background: var(--a70-brown-mask);
    z-index: 50;
    opacity: 0;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.anniv-news__item:hover .newsMediaList_mask {
    opacity: 1;
}

.newsMediaList_maskDetail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    width: 100%;
    height: 100%;
    gap: 20px;
}

/* マスク内タイトル（下から浮かび上がる） */
.anniv-news__maskDate{
    position: relative;
    color: var(--a70-white);
    font-size: 12px;
    text-align: left;
    top: 10%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, top 0.4s ease-in-out;
}
.newsMediaList_maskTitle {
    position: relative;
    top: 10%;
    margin: 0;
    color: var(--a70-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    text-align: left;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, top 0.4s ease-in-out;
}

.anniv-news__item:hover .anniv-news__maskDate,
.anniv-news__item:hover .newsMediaList_maskTitle {
    opacity: 1;
    top: 0;
}

/* 詳しくはコチラ */
.newsMediaList_maskMores {
    position: relative;
    top: 10%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, top 0.5s ease-in-out;
}

.anniv-news__item:hover .newsMediaList_maskMores {
    opacity: 1;
    top: 0;
}

.newsMediaList_maskMore {
    display: inline-block;
    padding: 0 20px;
    min-height: 30px;
    line-height: 30px;
    color: var(--a70-white);
    font-size: 13px;
    border: 1px solid var(--a70-white);
    border-radius: 22px;
    transition: color 0.2s ease, background 0.2s ease;
}

.newsMediaList_maskMore:hover {
    color: var(--a70-brown);
    background: var(--a70-white);
}


.anniv-news__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--anniv-white);
    border-radius: var(--anniv-radius-md);
    color: var(--anniv-text-light);
    border: 1px dashed var(--anniv-border);
}
/* ============================================================
   もっと見る / 閉じる  共通（画像ボタン）
   ============================================================ */
.anniv70-moreWrap {
    margin-top: -20px/*32px*/;
    text-align: center;
    /* padding-bottom: 8px; */
}
 
.anniv70-moreBtn {
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
    transition: opacity 0.2s;
}
 
.anniv70-moreBtn:hover {
    opacity: 0.75;
}
 
/* open / close 画像の切り替え */
.anniv70-moreBtn__img--open  { display: inline-block; }
.anniv70-moreBtn__img--close { display: none; }
 
.anniv70-moreBtn.is-close .anniv70-moreBtn__img--open  { display: none; }
.anniv70-moreBtn.is-close .anniv70-moreBtn__img--close { display: inline-block; }
 
.anniv70-moreBtn img {
    /* max-width: 240px; */
    height: auto;
}
/* ===========================================
   ページネーション
   =========================================== */
/* .anniv-pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 20px;
    flex-wrap: wrap;
}

.anniv-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--anniv-border);
    border-radius: var(--anniv-radius-sm);
    text-decoration: none;
    font-size: 14px;
    color: var(--anniv-text-mid);
    background: var(--anniv-white);
    transition: all var(--anniv-transition);
}

.anniv-pagination .page-numbers:hover,
.anniv-pagination .page-numbers.current {
    background: var(--anniv-red);
    border-color: var(--anniv-red);
    color: var(--anniv-white);
} */

/* ===========================================
   商品カード
   =========================================== */
/* .anniv-products {
    padding: 60px 0;
    border-top: 1px solid var(--anniv-border);
}

.anniv-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.anniv-product-card {
    background: var(--anniv-white);
    border-radius: var(--anniv-radius-md);
    box-shadow: var(--anniv-shadow-card);
    overflow: hidden;
    transition: all var(--anniv-transition);
}

.anniv-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--anniv-shadow-hover);
}

.anniv-product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.anniv-product-card__thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--anniv-gold-pale);
}

.anniv-product-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--anniv-transition);
}

.anniv-product-card:hover .anniv-product-card__thumb img {
    transform: scale(1.06);
}

.anniv-product-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--anniv-gold-light), var(--anniv-gold));
    color: var(--anniv-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 99px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.anniv-product-card__info {
    padding: 16px;
}

.anniv-product-card__name {
    font-family: var(--anniv-font-display);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 8px;
    color: var(--anniv-text);
}

.anniv-product-card__price {
    font-size: 14px;
    color: var(--anniv-red);
    font-weight: 700;
    margin: 0;
}

.anniv-products__comingsoon {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--anniv-white);
    border-radius: var(--anniv-radius-md);
    color: var(--anniv-text-light);
    border: 1px dashed var(--anniv-border);
} */

/* ===========================================
   タイムライン
   =========================================== */
.anniv-timeline {
    padding: 50px 0 0;
    /* border-top: 1px solid var(--anniv-border); */
}
#anniv70-history .section-inner {
    padding: 45px 75px 20px 90px;
}

.anniv-timeline__list {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    padding-top: 10px;
    padding-left: 80px;
    text-align: center;
}
.anniv-timeline__list img{
    margin-bottom: 25px;
}

/* 縦ライン */
/* .anniv-timeline__list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--anniv-gold-light), var(--anniv-gold), var(--anniv-red));
} */

/* .anniv-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: start;
    padding: 0 0 40px;
}

.anniv-timeline__item:last-child {
    padding-bottom: 0;
} */

/* ドット */
/* .anniv-timeline__item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--anniv-gold);
    border: 2px solid var(--anniv-cream);
    box-shadow: 0 0 0 2px var(--anniv-gold);
    transition: transform var(--anniv-transition);
}

.anniv-timeline__item--current::before {
    width: 14px;
    height: 14px;
    left: -8px;
    top: 6px;
    background: var(--anniv-red);
    box-shadow: 0 0 0 3px var(--anniv-red), 0 0 12px rgba(155,28,28,0.4);
    animation: anniv-pulse 2s ease-in-out infinite;
} */

@keyframes anniv-pulse {
    0%, 100% { box-shadow: 0 0 0 3px var(--anniv-red), 0 0 12px rgba(155,28,28,0.4); }
    50%       { box-shadow: 0 0 0 6px rgba(155,28,28,0.2), 0 0 20px rgba(155,28,28,0.3); }
}

.anniv-timeline__year {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--anniv-gold);
    line-height: 1.4;
    text-align: right;
    padding-top: 2px;
}

.anniv-timeline__item--current .anniv-timeline__year {
    color: var(--anniv-red);
}

.anniv-timeline__content {
    background: var(--anniv-white);
    border-radius: var(--anniv-radius-md);
    padding: 18px 20px;
    box-shadow: var(--anniv-shadow-card);
    border-left: 3px solid var(--anniv-gold-pale);
}

.anniv-timeline__item--current .anniv-timeline__content {
    border-left-color: var(--anniv-red);
    background: #fff8f8;
}

.anniv-timeline__content h3 {
    font-family: var(--anniv-font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--anniv-text);
    margin: 0 0 8px;
}

.anniv-timeline__content p {
    font-size: 14px;
    color: var(--anniv-text-mid);
    line-height: 1.7;
    margin: 0;
}

.anniv-timeline__content a {
    color: var(--anniv-red);
    text-decoration: none;
    border-bottom: 1px solid rgba(155,28,28,0.3);
}

.anniv-timeline__content a:hover {
    border-bottom-color: var(--anniv-red);
}

/* ===========================================
   シェアボタン
   =========================================== */
.anniv-share {
    padding: 60px 0 20px;
    border-top: 1px solid var(--anniv-border);
    text-align: center;
}

.anniv-share__buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.anniv-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--anniv-transition);
    border: none;
    cursor: pointer;
}

.anniv-share__btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.anniv-share__btn--twitter {
    background: #000;
    color: #fff;
}
.anniv-share__btn--twitter:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.anniv-share__btn--facebook {
    background: #1877f2;
    color: #fff;
}
.anniv-share__btn--facebook:hover {
    background: #0d6de0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24,119,242,0.4);
}

.anniv-share__btn--line {
    background: #06c755;
    color: #fff;
}
.anniv-share__btn--line:hover {
    background: #05b34d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6,199,85,0.4);
}


/* =============================================
   FOOTER
   ============================================= */
.anniv70-footer {
    /* background-color: var(--a70-brown); */
    margin-top: 0 /*80px*/;
}
 
.anniv70-footer__inner {
    max-width: var(--a70-max);
    margin: 0 auto;
    padding: 40px 20px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
        "logo nav sns"
        "copy copy copy";
    align-items: center;
    gap: 20px 32px;
}
 
/* ロゴ */
.anniv70-footer__logo {
    grid-area: logo;
}
 
.anniv70-footer__logo img {
    max-height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
 
.anniv70-footer__logoText {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--a70-white);
}
 
/* ナビ */
.anniv70-footer__nav {
    grid-area: nav;
    margin: auto;
}
 
.anniv70-footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
 
.anniv70-footer__nav a {
    display: inline-block;
    padding: 4px 12px;
    /* font-size: 13px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
    border-right: 1px solid rgba(255,255,255,0.2); */
}
 
/* .anniv70-footer__nav li:first-child a { border-left: 1px solid rgba(255,255,255,0.2); } */
 
.anniv70-footer__nav a:hover {
    /* color: var(--a70-white); */
    opacity: 0.75;
}
 
/* SNS */
.anniv70-footer__sns {
    grid-area: sns;
    display: flex;
    gap: 10px;
    align-items: center;
}
 
.anniv70-footer__snsLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: background 0.2s;
}
 
.anniv70-footer__snsLink:hover {
    background: rgba(255,255,255,0.3);
}
 
.anniv70-footer__snsLink svg {
    width: 16px;
    height: 16px;
    fill: var(--a70-white);
    display: block;
}
 
/* コピーライト */
.anniv70-footer__copy {
    grid-area: copy;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}
 
.anniv70-footer__copy p {
    margin: 0;
    font-size: 11px;
    /* color: rgba(255,255,255,0.6); */
    letter-spacing: 0.5px;
}


/* ===========================================
   レスポンシブ：タブレット
   =========================================== */
/* @media (max-width: 900px) {
    .anniv-news__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .anniv-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
} */

/* ===========================================
   レスポンシブ：スマートフォン
   =========================================== */
/* @media (max-width: 767px) {
    .anniv-intro__inner{
        flex-direction: column;
    }
    .anniv-hero__badge {
        margin-bottom: 14px;
    }

    .anniv-news__list {
        grid-template-columns: 1fr;
    }

    .anniv-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .anniv-timeline__list {
        padding-left: 16px;
    }

    .anniv-timeline__item {
        grid-template-columns: 64px 1fr;
        gap: 12px;
    }

    .anniv-timeline__year {
        font-size: 16px;
    }

    .anniv-share__buttons {
        flex-direction: column;
        align-items: center;
    }

    .anniv-share__btn {
        width: 200px;
        justify-content: center;
    }
} */

/* ===========================================
   アクセシビリティ: モーション低減設定
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    #anniversary70-wrap *,
    #anniversary70-wrap *::before,
    #anniversary70-wrap *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ===========================================
   single
   =========================================== */
.single img {
    width: auto;
    height: 100%;
}

.single #anniversary70-wrap {
    padding-top: 90px;
}

.single .wrap {
    width: 80%;
    margin: 0 auto;
}
.single .white {
    background: #fff;
    padding: 10px 60px 30px;
}
.single #column {
    padding: 30px 120px;
}
.single #column time{
    font-size: 17px;
    color: #e53400;
}
.single h1 {
    font-size: 21px;
    margin: 10px 0 20px;
    line-height: 1;
}
.anniv70-single__thumb {
    text-align: center;
}
.anniv70-single__thumbImg {
    display: block;
    max-width: 613px;    /* 横長画像の最大表示幅 */
    max-height: 613px;   /* 縦長画像の最大表示高さ */
    width: auto;
    height: auto;
    margin: 0 auto 20px; /* 中央揃え + 下余白 */
}

.single .content{
    white-space: pre-wrap;
    line-height: 1.55;
    padding: 15px 0;
}
.single .share.flex {
    display: flex;
    width: 100%;
    background: #ffebd5;
    padding: 13px;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.anniv70-single__shareLabel {
    padding-right: 10px;
    padding-left: 10px;
}
.single .wrap + .wrap{
    margin-top: 50px;
}
.single .archive-category{
    margin-bottom: 20px;
}
.single .anniv-news__item.newsMediaList_item{
    width: calc(21% - var(--a70-gap));
}

.content .red{
    color: #e53400;
}
.content a[target="_blank"] {
    color: #e53400;
}
.content a.chain{
    color: inherit;
    display: flex;
    gap: 5px;
    align-items: center;
}
.content a.chain::after{
    content: "";
    background: url(../images/anniversary70/icon-chain.png) center / contain no-repeat;
    width: 15px;
    height: 17px;
}
.content .flex{
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.content .flex img{
    width: calc(50% - 30px);
}
.content hr {
    border-top: 2px dotted var(--anniv-text);
}