/* =============================================
   main.css - 完全版
   ============================================= */

/* --- 1. CSS変数 --- */
:root {
    --color-primary:   #4a8c3f;
    --color-accent:    #c8a96e;
    --color-text:      #333333;
    --color-text-sub:  #666666;
    --color-bg:        #ffffff;
    --color-bg-light:  #f8f6f1;
    --color-border:    #e0ddd6;
    --font-base:   "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    --font-mincho: "BIZ UDMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
    --container-width: 1100px;
    --container-pad:   clamp(16px, 4vw, 40px);
}

/* --- 2. リセット・ベース --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-base); color: var(--color-text); background-color: var(--color-bg); line-height: 1.8; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- 3. 共通レイアウト --- */
.container { max-width: var(--container-width); margin-inline: auto; padding-inline: var(--container-pad); }
.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }

h1, h2, h3, h4, h5, h6 {
    font-family: "BIZ UDMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif !important;
    font-weight: 500;
    -webkit-text-stroke: 0.6px currentColor;
}

/* --- 4. セクションタイトル --- */
.section-title { font-family: var(--font-mincho); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; color: var(--color-text); line-height: 1.5; }
.section-title::after { content: ''; display: block; width: 40px; height: 3px; background-color: var(--color-primary); margin-top: 12px; }

.about-text__title.section-title {
    font-family: var(--font-mincho);
    font-weight: 400;
    -webkit-text-stroke: 0.6px currentColor;
}
.about-text__title.section-title {
    -webkit-text-stroke: 0.2px currentColor;
}

/* --- 5. ボタン --- */
.btn { display: inline-block; padding: 12px 36px; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.05em; border-radius: 2px; transition: opacity 0.2s ease, background-color 0.2s ease; cursor: pointer; }
.btn--primary { background-color: var(--color-primary); color: #fff; border: 2px solid var(--color-primary); }
.btn--primary:hover { opacity: 0.8; }
.btn--outline { background-color: transparent; color: var(--color-primary); border: 1px solid var(--color-primary); }
.btn--outline:hover { background-color: var(--color-primary); color: #fff; }

/* --- 6. ヘッダー --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-inner {
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: var(--container-pad);
    padding-block: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ロゴ */
.site-logo a {
    display: block;
    line-height: 0;
}

.site-logo img {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 52px;
    object-fit: contain;
}

.site-logo .site-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* グローバルナビ */
.global-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    gap: 4px;
}

.nav-list a {
    display: block;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--color-text);
    border-radius: 2px;
    transition: color 0.2s, background-color 0.2s;
}

.nav-list a:hover,
.nav-list .current-menu-item > a {
    color: var(--color-primary);
    background-color: rgba(74, 140, 63, 0.08);
}

/* ハンバーガーボタン（PCでは非表示・responsive.cssで制御） */
.nav-toggle {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.nav-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- 7. ヒーロースライダー --- */
.hero-section { position: relative; overflow: hidden; }
.hero-slider--sp { display: none; }
.hero-slide__inner { position: relative; width: 100%; }
.hero-slide__img { width: 100%; height: 560px; object-fit: cover; }
.hero-slide__caption { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); width: 90%; text-align: center; color: #fff; font-family: var(--font-mincho); font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.5; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.hero-slider .swiper-button-prev, .hero-slider .swiper-button-next { color: rgba(255,255,255,0.85); }
.hero-slider .swiper-pagination-bullet-active { background-color: #fff; }

/* --- 8. 多久市紹介 --- */
.about-section {
    padding-block: 80px;
    background-color: var(--color-bg-light);
}

.about-text__title {
    text-align: center;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-inline: auto;
}

.about-text__title.section-title::after {
    margin-inline: auto;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin-inline: auto;
}

.about-text__body {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--color-text-sub);
    margin-bottom: 0px;
}

.about-map__img {
    width: 100%;
    height: auto;
}

/* --- 9. 特産品 --- */
.tokusan-section { padding-block: 80px; background-color: var(--color-bg); }
.tokusan-section__title { text-align: center; margin-bottom: 56px; }
.tokusan-section__title::after { margin-inline: auto; }
.tokusan-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.tokusan-item { display: flex; flex-direction: column; }
.tokusan-item__img-wrap { overflow: hidden; border-radius: 4px; aspect-ratio: 1.4 / 1; }
.tokusan-item__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tokusan-item:hover .tokusan-item__img { transform: scale(1.04); }
.tokusan-item__body { padding-top: 20px; flex: 1; }
.tokusan-item__name { font-family: var(--font-mincho); font-size: 1.2rem; font-weight: 500; -webkit-text-stroke: 0.6px currentColor; margin-bottom: 4px; color: var(--color-text); }
.tokusan-item__text { font-size: 0.875rem; line-height: 1.7; color: var(--color-text-sub); text-align: justify; }

/* --- 10. おすすめ返礼品 --- */
.gifts-section { padding-block: 80px; background-color: var(--color-bg-light); }
.gifts-section__title { text-align: center; margin-bottom: 56px; }
.gifts-section__title::after { margin-inline: auto; }
.gifts-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: justify; }
.gifts-item { display: flex; flex-direction: column; background-color: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: box-shadow 0.3s ease, transform 0.3s ease; }
.gifts-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-4px); }
.gifts-item__img-wrap { aspect-ratio: 1 / 1; overflow: hidden; }
.gifts-item__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gifts-item:hover .gifts-item__img { transform: scale(1.04); }
.gifts-item__name { font-size: 1.0rem; font-weight: 400; line-height: 1.6; text-align: center; padding: 16px 16px 0px; color: var(--color-text); flex: 1; }
.gifts-item__links { display: flex; flex-direction: column; gap: 8px; padding: 12px 16px 10px; }
.gifts-item__btn { display: block; text-align: center; padding: 5px 12px; font-size: 1.0rem; font-weight: 600; letter-spacing: 0.04em; border-radius: 2px; transition: opacity 0.2s; margin-bottom:5px; }
.gifts-item__btn:hover { opacity: 0.8; }
.gifts-item__btn--rakuten { background-color: #bf0000; color: #fff; }
.gifts-item__btn--choice  { background-color: #e87722; color: #fff; }
.gifts-section__more { text-align: center; margin-top: 0px; }

/* さとふるボタン（さとふるのブランドカラー：オレンジ） */
.gifts-item__btn--fullnavi {
    background: #1a3a6b;
    color: #fff;
}

.gifts-item__btn--fullnavi:hover {
    background: #122a52;
}

/* --- 11. Instagram --- */
.instagram-section {
    padding-block: 80px;
    background-color: var(--color-bg);
}
.instagram-section__title {
    text-align: center;
    margin-bottom: 40px;
}
.instagram-section__title::after {
    margin-inline: auto;
}
.instagram-feed-wrap {
    width: 100%;
    margin-bottom: 40px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
}

.instagram-section__follow-wrap {
    text-align: center;
}

.instagram-section__follow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 10px 32px;
    border-radius: 2px;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.instagram-section__follow::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a8c3f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.instagram-section__follow:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.instagram-section__follow:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
}

/* --- 12. 寄附の使い道 --- */
.usage-section { padding-block: 80px; background-color: var(--color-bg-light); }
.usage-section__header { max-width: 790px; margin-inline: auto; text-align: center; margin-bottom: 34px; }
.usage-section__title { margin-bottom: 20px; }
.usage-section__title::after { margin-inline: auto; }
.usage-section__lead { font-size: 1.0rem; line-height: 2; color: var(--color-text-sub); }
.usage-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}
.usage-item {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.usage-item:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.usage-item--reverse { direction: rtl; }
.usage-item--reverse > * { direction: ltr; }
.usage-item__img-wrap { overflow: hidden; border-radius: 4px; }
.usage-item__img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.4s ease; margin-bottom: 15px;}
.usage-item__img-wrap:hover .usage-item__img { transform: scale(1.03); }
.usage-item__title { font-family: var(--font-mincho); font-size: 1.2rem; font-weight: 500; -webkit-text-stroke: 0.6px currentColor; color: var(--color-text); margin-bottom: 5px; padding-left: 16px; border-left: 4px solid var(--color-primary); line-height: 1.5; }
.usage-item__text { font-size: 0.875rem; line-height: 1.7; color: var(--color-text-sub); margin: 5px 15px 10px; text-align: justify; }
.usage-section__more { text-align: center; margin-top: 34px; }

/* --- 13. SNS --- */
.sns-section { padding-block: 30px; background-color: var(--color-bg); }
.sns-section__title { margin-bottom: 48px; }
.sns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: start; }
.sns-col__header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--color-border); }
.sns-col__label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 2px; color: #fff; }
.sns-col__label--facebook  { background-color: #1877f2; }
.sns-col__label--twitter   { background-color: #000; }
.sns-col__label--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sns-col__link { font-size: 0.8rem; color: var(--color-text-sub); text-decoration: underline; transition: color 0.2s; }
.sns-col__link:hover { color: var(--color-primary); }
.sns-col__embed { overflow: hidden; }
.sns-col__embed iframe, .sns-col__embed .fb-page, .sns-col__embed .fb-page span, .sns-col__embed .fb-page iframe { width: 100% !important; max-width: 100% !important; }

/* --- 14. フェードインアニメーション --- */
.js-fadein { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-fadein.is-visible { opacity: 1; transform: translateY(0); }
.js-fadein.delay-1 { transition-delay: 0.1s; }
.js-fadein.delay-2 { transition-delay: 0.2s; }
.js-fadein.delay-3 { transition-delay: 0.3s; }
.js-fadein.delay-4 { transition-delay: 0.4s; }
.js-fadein.delay-5 { transition-delay: 0.5s; }

/* --- 15. ヘッダースクロール・ナビ制御 --- */
.site-header.is-scrolled { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
body.nav-is-open { overflow: hidden; }

/* --- 16. 固定ページ共通 --- */
.page-header { background-color: var(--color-primary); background-size: cover; background-position: center; padding-block: 56px; position: relative; }
.page-header--has-image::before { content: ''; position: absolute; inset: 0; background-color: rgba(0,0,0,0.45); }
.page-header .container { position: relative; z-index: 1; }
.page-header__title { font-family: var(--font-mincho); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; color: #fff; margin-bottom: 16px; }
.breadcrumb__list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb__item { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.breadcrumb__item a { color: rgba(255,255,255,0.8); text-decoration: underline; transition: color 0.2s; }
.breadcrumb__item a:hover { color: #fff; }
.breadcrumb__item + .breadcrumb__item::before { content: '›'; margin-right: 8px; color: rgba(255,255,255,0.6); }
.page-content { padding-block: 72px; }
.entry-content {
    max-width: 800px;
    margin-inline: auto;
    margin-top: 20px;
}
.entry-content h2 { font-family: var(--font-mincho); font-size: 1.5rem; font-weight: 600; margin-block: 48px 20px; padding-left: 16px; border-left: 4px solid var(--color-primary); }
.entry-content h3 { font-size: 1.15rem; font-weight: 600; margin-block: 32px 12px; color: var(--color-text); }
.entry-content p { font-size: 0.95rem; line-height: 2; color: var(--color-text-sub); margin-bottom: 20px; }
.entry-content img { border-radius: 4px; margin-block: 24px; }
.entry-content a { color: var(--color-primary); text-decoration: underline; }
.gifts-page-section { margin-bottom: 64px; }
.gifts-page-section__title { margin-bottom: 40px; }
.contact-wrap { max-width: 680px; margin-inline: auto; }
.contact-wrap__lead { font-size: 0.95rem; line-height: 2; color: var(--color-text-sub); margin-bottom: 40px; text-align: center; }
.contact-form .wpcf7-form label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: var(--color-text); }
.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--color-border); border-radius: 2px; font-size: 0.95rem; font-family: var(--font-base); transition: border-color 0.2s; background-color: #fff; }
.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus { outline: none; border-color: var(--color-primary); }
.contact-form .wpcf7-form textarea { min-height: 160px; resize: vertical; }
.contact-form .wpcf7-form p { margin-bottom: 24px; }
.contact-form .wpcf7-submit { background-color: var(--color-primary); color: #fff; border: none; padding: 14px 48px; font-size: 1rem; font-weight: 600; border-radius: 2px; cursor: pointer; transition: opacity 0.2s; display: block; margin-inline: auto; }
.contact-form .wpcf7-submit:hover { opacity: 0.8; }


/* ============================================
   Footer
============================================ */

.site-footer {
    background-color: antiquewhite;
    color: #fff;
    padding-top: 50px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo img {
    width: 250px;
    height: auto;
}

.footer-address {
    font-style: normal;
    text-align: center;
    line-height: 1.8;
}

.footer-address__org {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 10px;
	color: #000;
}

.footer-address__zip-addr,
.footer-address__tel {
    font-size: 1.0rem;
    margin: 0;
    color: #000;
}

.footer-address__tel a {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
}

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

.footer-address__sep {
    margin: 0 8px;
    color: #888;
}

.footer-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 30px;
}

.footer-nav__item a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

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

.footer-nav__item + .footer-nav__item {
    position: relative;
}

.footer-nav__item + .footer-nav__item::before {
    content: "|";
    position: absolute;
    left: -17px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 0.8rem;
}

.footer-copyright {
    background-color: #7b4f2e;
    text-align: center;
    padding: 4px 20px;
	width: 100%; 
}

.footer-copyright p {
    margin: 0;
    font-size: 0.78rem;
    color: #fff;
    letter-spacing: 0.04em;
}


/* ============================================
   返礼品一覧ページ / gifts-page
============================================ */

.gifts-hero {
    position: relative;
    height: 300px;
    background-image: url('../images/taku_tophenrei_2207.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gifts-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.gifts-hero .page-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.gifts-hero .page-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.breadcrumb {
    background: #f5f5f0;
    padding: 12px 0;
    font-size: 0.85rem;
}

.breadcrumb__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.breadcrumb__item + .breadcrumb__item::before {
    content: '›';
    margin: 0 8px;
    color: #999;
}

.breadcrumb__item a {
    color: #5a7a3a;
    text-decoration: none;
}

.breadcrumb__item a:hover {
    text-decoration: underline;
}

.breadcrumb__item--current {
    color: #666;
}

.gifts-page {
    padding: 40px 0 70px;
}

.gifts-lead {
    text-align: center;
    margin-bottom: 50px;
}

.gifts-lead p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    background: #f8f5ee;
    display: inline-block;
    padding: 14px 28px;
    border-left: 4px solid #5a7a3a;
	border-right: 4px solid #5a7a3a;
    border-radius: 0 4px 4px 0;
}

.gifts-portals__title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 36px;
    position: relative;
    padding-bottom: 14px;
}

.gifts-portals__title span {
    position: relative;
    z-index: 1;
}

.gifts-portals__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #5a7a3a;
    border-radius: 2px;
}

.portal-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portal-grid__item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portal-grid__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.portal-grid__link {
    display: block;
    padding: 18px;
}

.portal-grid__link img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .portal-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gifts-hero {
        height: 200px;
    }
    .portal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .gifts-lead p {
        padding: 12px 16px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .portal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .portal-grid__link {
        padding: 12px;
    }
}


/* =========================================
   ふるさと納税について / page-about
   ========================================= */

.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero::before {
    content: '';
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
}

.page-hero__inner {
    z-index: 1;
    text-align: center;
}

.page-hero__title {
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f5f0;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 24px;
}
@media screen and (max-width: 1024px) {
.container {
    max-width: 95%;
}
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 500;
    -webkit-text-stroke: 0.6px currentColor;
    color: #3a3a2e;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 16px;
    position: relative;
    font-family: "BIZ UDMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
    display: block;
	letter-spacing: 0.1em;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #c8a96e;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-lead__text {
    text-align: center;
    line-height: 2;
    font-size: 1rem;
    color: #444;
}

.about-structure__body {
    background: #fff;
    border-left: 4px solid #c8a96e;
    padding: 24px 20px;
    border-radius: 0 8px 8px 0;
    line-height: 2;
    color: #444;
    width: 90%;
    margin: 0 auto;
}

.about-structure__body strong {
    color: #b85c30;
}

.about-points__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-points__item {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s;
}

.about-points__item:hover {
    transform: translateY(-4px);
}

.about-points__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: #f8f5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-points__icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.about-points__label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #3a3a2e;
    margin-bottom: 10px;
}

.about-points__desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.about-deduction p {
    line-height: 2;
    color: #444;
    background: #fff;
    padding: 24px 20px;
    border-radius: 8px;
    border-left: 4px solid #c8a96e;
    width: 90%;
    margin: 0 auto;
}

.about-manga p {
    text-align: center;
    color: #444;
    margin-bottom: 12px;
    line-height: 150%;
}

.about-manga__btn-wrap {
    text-align: center;
    margin-top: 24px;
}

.btn {
    display: block;
    padding: 5px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, opacity 0.2s;
    letter-spacing: 0.05em;
    width: 30vw;
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
}

.btn02 {
    display: block;
    padding: 5px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, opacity 0.2s;
    letter-spacing: 0.05em;
    width: 30%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
}

.btn-primary {
    background: #c8a96e;
    color: #fff;
    line-height: 140%;
    width: 30%;
    padding: 6px 0 8px 0;
}

.btn-primary:hover {
    opacity: 0.85;
}

.about-sites__lead {
    text-align: center;
    color: #666;
    margin-bottom: 32px;
	font-size: 1.0rem;
    line-height: 150%;
}

.about-sites__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.about-sites__item {
    display: block;
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: center;
}

.about-sites__item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.about-sites__item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 60px;
}

@media (max-width: 768px) {
    .section-padding { padding: 56px 0; }
    .page-hero { height: 220px; }
    .about-points__grid { grid-template-columns: 1fr; }
    .about-sites__grid { grid-template-columns: repeat(2, 1fr); }
    .btn { width: 90%; }
}

@media (max-width: 480px) {
    .about-sites__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .container { max-width: 99%; }
}


/* ============================================
   お問い合わせページ
============================================ */

.page-hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.page-hero__img {
    width: 100%;
    height: 100%;
}
.page-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.page-hero__title {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    white-space: nowrap;
}

.page-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.contact-faq-notice {
    background: #f5f0e8;
    border-left: 4px solid #c8a96e;
    padding: 30px 36px;
    margin-bottom: 60px;
    border-radius: 2px;
}
.contact-faq-notice__heading {
    font-size: 1.15rem;
    font-weight: 400;
    -webkit-text-stroke: 0.6px currentColor;
    color: #5a3e1b;
    margin-bottom: 2px;
}
@media (max-width: 480px) {
.contact-faq-notice__heading {
    text-align: center;
}
}

.contact-faq-notice__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
	text-align: justify;
}
.btn-faq {
    display: inline-block;
    background: #c8a96e;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: background 0.3s;
}
@media (max-width: 480px) {
.btn-faq {
    text-align: center;
	margin: 0 auto;
    width: 100%;
}
}
.btn-faq:hover {
    background: #a8893e;
    color: #fff;
}

.contact-form-section__heading {
    font-size: 1.2rem;
    font-weight: 400;
    -webkit-text-stroke: 0.6px currentColor;
    color: #333;
    border-bottom: 2px solid #c8a96e;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
}
.contact-form-section__lead {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 36px;
    width: 90%;
    margin: 0 auto;
}
.contact-form-section__note {
    display: block;
    margin-top: 8px;
    color: #888;
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.contact-form-wrap .wpcf7 { width: 90%; margin: 0 auto; }
.contact-form-wrap .wpcf7-form table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.contact-form-wrap .wpcf7-form tr { border-bottom: 1px solid #e0d8cc; }
.contact-form-wrap .wpcf7-form th { width: 220px; padding: 16px 12px; background: #faf6ef; font-size: 0.9rem; font-weight: 600; color: #444; vertical-align: middle; text-align: left; }
.contact-form-wrap .wpcf7-form td { padding: 12px 16px; vertical-align: middle; }

.label-required, .label-optional { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 2px 6px; border-radius: 3px; margin-right: 8px; vertical-align: middle; }
.label-required { background: #d94f4f; color: #fff; }
.label-optional { background: #aaa; color: #fff; }

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap select,
.contact-form-wrap textarea { width: 100%; padding: 10px 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 0.95rem; color: #333; background: #fff; box-sizing: border-box; transition: border-color 0.2s; margin-bottom: 10px; }
.contact-form-wrap input[type="text"]:focus,
.contact-form-wrap input[type="email"]:focus,
.contact-form-wrap input[type="tel"]:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus { border-color: #c8a96e; outline: none; box-shadow: 0 0 0 3px rgba(200,169,110,0.15); }
.contact-form-wrap textarea { min-height: 180px; resize: vertical; }

.contact-form-wrap .wpcf7-acceptance { margin: 20px 0; font-size: 0.9rem; }

.contact-form-wrap input[type="submit"],
.contact-form-wrap .wpcf7-submit { display: block; width: 160px; margin: 0px auto 0; background: #c8a96e; color: #fff; border: none; border-radius: 30px; padding: 6px 0; font-size: 1rem; font-weight: 700; cursor: pointer; letter-spacing: 0.08em; transition: background 0.3s; }
.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap .wpcf7-submit:hover { background: #a8893e; }

.contact-form-wrap .wpcf7-form .section-label th { background: #e8e0d0; color: #5a3e1b; font-size: 0.88rem; padding: 10px 12px; }

.contact-form-wrap .wpcf7-not-valid-tip { color: #d94f4f; font-size: 0.82rem; margin-top: 4px; display: block; }
.contact-form-wrap .wpcf7-response-output { margin-top: 20px; padding: 12px 16px; border-radius: 4px; font-size: 0.9rem; }

.contact-privacy { margin-top: 20px; padding: 36px 40px; background: #f9f7f3; border-radius: 4px; }
.contact-privacy__heading { font-size: 1rem; font-weight: 400; -webkit-text-stroke: 0.6px currentColor; color: #5a3e1b; border-bottom: 1px solid #c8a96e; padding-bottom: 10px; margin-bottom: 20px; }
.contact-privacy__body p { font-size: 0.88rem; line-height: 1.8; color: #555; margin-bottom: 16px; }
.contact-privacy__body dl { font-size: 0.88rem; line-height: 1.8; color: #555; }
.contact-privacy__body dt { font-weight: 700; margin-top: 14px; color: #444; }
.contact-privacy__body dd { margin-left: 0; margin-bottom: 8px; }


/* ============================================
   FAQページ
============================================ */

.faq-intro { text-align: center; font-size: 1.2rem; color: #555; margin-bottom: 48px; line-height: 1.8; }

.faq-list { max-width: 800px; margin: 0 auto 70px; }

.faq-item { border-bottom: 1px solid #e0d8cc; }
.faq-item:first-child { border-top: 1px solid #e0d8cc; }

.faq-item__question { display: flex; align-items: center; gap: 14px; width: 100%; padding: 22px 16px; background: none; border: none; cursor: pointer; text-align: justify; font-size: 1rem; font-weight: 700; color: #333; line-height: 1.6; transition: background 0.2s; }
.faq-item__question:hover { background: #faf6ef; }

.faq-item__label { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; font-size: 1.1rem; font-weight: 900; font-family: Georgia, serif; line-height: 1; }
.faq-item__label--q { background: #c8a96e; color: #fff; }
.faq-item__label--a { background: #5a3e1b; color: #fff; }

.faq-item__icon { margin-left: auto; flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-item__icon::before, .faq-item__icon::after { content: ''; position: absolute; background: #c8a96e; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.faq-item__icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-item__icon::after { width: 2px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); }
.faq-item__question[aria-expanded="true"] .faq-item__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-item__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.faq-item__answer:not([hidden]) { display: grid; grid-template-rows: 1fr; }
.faq-item__answer[hidden] { display: grid !important; grid-template-rows: 0fr; visibility: hidden; }
.faq-item__answer > * { overflow: hidden; }

.faq-item__answer-inner { display: flex; gap: 14px; padding: 10px 16px 24px; align-items: flex-start; }

.faq-item__answer-body { flex: 1; font-size: 0.95rem; line-height: 1.9; color: #555; padding-bottom: 4px; }
.faq-item__answer-body p { margin-bottom: 0px; }
.faq-item__answer-body p:last-child { text-align: justify; margin-bottom: 0; }
.faq-item__answer-body a { color: #c8a96e; word-break: break-all; text-decoration: underline; }
.faq-item__answer-body a:hover { color: #a8893e; }

.faq-contact-banner { text-align: center; padding: 48px 20px; background: #f5f0e8; border-radius: 4px; }
.faq-contact-banner__text { font-size: 1.2rem; color: #5a3e1b; font-weight: 500; margin-bottom: 20px; }
.btn-contact { display: inline-block; background: #5a3e1b; color: #fff; padding: 14px 48px; border-radius: 30px; font-size: 0.95rem; font-weight: 700; text-decoration: none; letter-spacing: 0.08em; transition: background 0.3s; }
.btn-contact:hover { background: #3d2a10; color: #fff; }


/* ----------------------------------------
   SNS Section - X（Twitter）カラム
---------------------------------------- */

.sns-col__embed--twitter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 2px 16px;
    min-height: 190px;
}

.sns-col__twitter-text {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: center;
    color: #333;
    margin: 0;
}

.sns-col__twitter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000;
    color: #fff;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 9999px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.sns-col__twitter-btn:hover {
    opacity: 0.75;
}

.sns-col__twitter-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    flex-shrink: 0;
}

/* ----------------------------------------
   SNS Section - LINE カラム
---------------------------------------- */

/* LINEラベルカラー */
.sns-col__label--line {
    background-color: #06C755;
    color: #fff;
}

/* LINEカラム内レイアウト */
.sns-col__embed--line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px 16px;
    min-height: 300px;
}

/* 説明テキスト */
.sns-col__line-text {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: center;
    color: #333;
    margin: 0;
}

/* QRコード画像 */
.sns-col__line-qr {
    display: block;
    width: 160px;
    height: 160px;
    object-fit: contain;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px;
    background: #fff;
}

/* 友だち追加ボタン */
.sns-col__line-btn {
    display: inline-block;
    transition: opacity 0.2s ease;
}
.sns-col__line-btn:hover {
    opacity: 0.8;
}



/* ===========================
   フォント設定（Zen Kaku Gothic New）
   =========================== */
body {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased; /* Mac でより滑らかに */
    -moz-osx-font-smoothing: grayscale;
}

/* 見出しはやや軽めにして柔らかさを強調 */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-weight: 500;
}

/* 小さな補足テキストはさらに細く */
small, .caption, .note {
    font-weight: 300;
}


/* お問い合わせ：同意文の小文字化 */
.agree-note {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 8px;
  margin-left: 10px;
}


/* ============================================
   Hero Section - Smart Slider 3 出し分け
   ============================================ */

/* SP用は初期非表示 */
.hero-slider--sp {
    display: none;
}

/* 768px以下でPC非表示・SP表示に切り替え */
@media (max-width: 768px) {
    .hero-slider--pc {
        display: none;
    }
    .hero-slider--sp {
        display: block;
    }
}

/* Smart Slider が生成するラッパーの余白リセット（必要に応じて調整） */
.hero-slider .n2-section-smartslider {
    margin: 0 !important;
}



/* ============================================
   Gifts Section — 追記分（バッジ・価格）
   既存の .gifts-* スタイルの下に追記してください
   ============================================ */

/* カードを相対配置（バッジ用） */
.gifts-item {
    position: relative;
}

/* おすすめバッジ */

.gifts-item__badge {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    display: inline-block;
    padding: 3px 14px 6px;
    background: #ffd700;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 1px;
    letter-spacing: 0.05em;
    line-height: 1.4;

    /* ふわっと点滅 */
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%   { opacity: 1; }
    50%  { opacity: 0.7; }  /* ← 小さくするほど暗くなります */
    100% { opacity: 1; }
}

/* 価格 */

.gifts-item__price {
    margin: -5px 0 0px;
    font-size: 1.0rem;   /* 「寄付金額」の文字サイズ */
    color: #555;
    font-weight: 500;
    text-align: center;
    vertical-align: baseline; /* 基準 */
}

/* 「寄付金額」テキスト部分を上げる */
.gifts-item__price-label {
    display: inline-block;
    vertical-align: 0.1em;  /* ← 数値を大きくするほど上に上がります */
}

/* 金額部分だけ大きく */
.gifts-item__price-num {
    font-size: 1.8rem;   /* ← ここで金額サイズを調整 */
    font-weight: 700;
    color: #333;
    display: inline-block;   /* transform を効かせるために必要 */
    transform: scaleX(1.2);  /* ← 1.0が標準。1.1〜1.3くらいがおすすめ */
	padding-left: 8px;
}

/* 「円」だけ小さく */
.gifts-item__price-en {
    font-size: 1.0rem;   /* ← ここで「円」のサイズを調整 */
    font-weight: 800;
    display: inline-block;   /* transform を効かせるために必要 */
    transform: scaleX(0.9);  /* ← 1.0が標準 */
}

/* データなし表示 */
.gifts-section__empty {
    text-align: center;
    color: #888;
    padding: 2rem 0;
}



/**
 * お知らせセクション CSS
 * 
 * SP: 1列
 * TAB: 1列
 * PC: 1列
 * 
 * リスト形式でシンプルに表示
 */

/* ===== セクション全体 ===== */
.section-news {
	padding: 50px 20px;
	background: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
}

@media (min-width: 1025px) {
	.section-news {
		padding: 40px 20px;
	}
}

/* ===== セクションヘッダー ===== */
.section-news .section-header {
	margin-bottom: 30px;
	text-align: left;
}

.section-news .section-title {
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--color-primary);
	margin: 0;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-primary);
	display: inline-block;
}

@media (min-width: 1025px) {
	.section-news .section-title {
		font-size: 1.3rem;
	}
}

/* ===== ニュースリスト ===== */
.news-list {
	margin-bottom: 24px;
}

.news-item {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--color-border);
	align-items: flex-start;
	transition: all 0.3s ease;
}

.news-item__author {
		font-size: 0.8rem;
		min-width: 70px;
}

.news-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.news-item:hover {
	padding-left: 8px;
	background-color: rgba(74, 140, 63, 0.02);
}

/* ===== 日付 ===== */
.news-item__date {
	flex-shrink: 0;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-accent);
	white-space: nowrap;
	font-family: 'Courier New', monospace;
}

@media (min-width: 744px) {
	.news-item__date {
		font-size: 0.9rem;
	}
}

/* ===== タイトル ===== */
.news-item__title {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.6;
	flex: 1;
}

@media (min-width: 744px) {
	.news-item__title {
		font-size: 1rem;
	}
}

.news-item__title a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.3s ease;
	display: inline;
	position: relative;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
}

.news-item__title a:hover {
	color: var(--color-primary);
	border-bottom-color: var(--color-primary);
}

/* ===== 空状態 ===== */
.news-empty {
	text-align: center;
	color: var(--color-text-sub);
	font-size: 0.9rem;
	padding: 20px 0;
	margin: 0;
}

/* ===== フッター（もっと見るボタン） ===== */
.news-footer {
	text-align: center;
}

.news-footer .btn {
	display: inline-block;
}

/* ===== レスポンシブ調整 ===== */
@media (max-width: 743px) {
	.section-news {
		padding: 40px 10px;
	}

	.news-item {
		gap: 12px;
		padding: 12px 0;
	}

	.news-item__date {
		font-size: 0.8rem;
		min-width: 70px;
	}
	
	.news-item__author {
		font-size: 0.6rem;
		min-width: 70px;
	}

	.news-item__title {
		font-size: 0.9rem;
	}
}


/* ===== お知らせセクション - 中央揃え調整 ===== */

.section-news .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-news .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-news .section-title {
    display: block;
    margin: 0 auto 30px 0;
    text-align: center;
    padding-bottom: 12px;
}

.news-list {
  max-width: 700px;
  margin: 0 auto 0px;
}

.news-footer {
  text-align: center;
}


/**
 * お知らせ詳細ページ - 本文スタイル
 */

/* ===== 本文コンテンツ ===== */
.news-single__content {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--color-text);
	margin: 32px 0;
	word-break: break-word;
}

@media (min-width: 1025px) {
	.news-single__content {
		font-size: 1.05rem;
		line-height: 1.9;
		margin: 40px 0;
	}
}

.news-single__title {
    font-size: 1.3rem;
    line-height: 130%;
    margin: 5px -1px;
}

/* 本文内の見出し */
.news-single__content h2 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--color-primary);
	margin: 24px 0 12px 0;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--color-accent);
}

@media (min-width: 1025px) {
	.news-single__content h2 {
		font-size: 1.5rem;
		margin: 32px 0 16px 0;
	}
}

.news-single__content h3 {
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 20px 0 10px 0;
}

/* 本文内の段落 */
.news-single__content p {
	margin: 12px 0;
}

.news-single__content p:first-child {
	margin-top: 0;
}

.news-single__content p:last-child {
	margin-bottom: 0;
}

/* 本文内のリスト */
.news-single__content ul,
.news-single__content ol {
	margin: 16px 0 16px 20px;
	padding-left: 20px;
}

@media (min-width: 1025px) {
	.news-single__content ul,
	.news-single__content ol {
		margin: 20px 0 20px 24px;
		padding-left: 24px;
	}
}

.news-single__content li {
	margin: 6px 0;
	line-height: 1.8;
}

/* 本文内のリンク */
.news-single__content a {
	color: var(--color-primary);
	text-decoration: underline;
	transition: opacity 0.3s ease;
}

.news-single__content a:hover {
	opacity: 0.7;
}

/* 本文内の強調 */
.news-single__content strong {
	font-weight: 700;
	color: var(--color-primary);
}

/* 本文内のコード */
.news-single__content code {
	background: var(--color-bg-light);
	padding: 2px 6px;
	border-radius: 3px;
	font-family: 'Courier New', monospace;
	font-size: 0.9em;
}

/* 本文内の引用 */
.news-single__content blockquote {
	margin: 16px 0;
	padding: 12px 16px;
	border-left: 4px solid var(--color-accent);
	background: var(--color-bg-light);
	font-style: italic;
	color: var(--color-text-sub);
}

@media (min-width: 1025px) {
	.news-single__content blockquote {
		margin: 20px 0;
		padding: 16px 20px;
	}
}

/* ===== レスポンシブ調整 ===== */
@media (max-width: 743px) {
	.news-single__content {
		font-size: 0.95rem;
		line-height: 1.7;
		margin: 24px 0;
	}

	.news-single__content h2 {
		font-size: 1.2rem;
		margin: 20px 0 10px 0;
	}

	.news-single__content h3 {
		font-size: 1.05rem;
		margin: 16px 0 8px 0;
	}

	.news-single__content ul,
	.news-single__content ol {
		margin: 12px 0 12px 16px;
		padding-left: 16px;
	}

	.news-single__content blockquote {
		margin: 12px 0;
		padding: 10px 12px;
	}
}



/**
 * お知らせアーカイブページ CSS
 * 
 * archive-news.php 用スタイル
 * 仕切り線（ディバイダー）付きリスト
 */

/* ===== アーカイブコンテナ ===== */
.news-archive {
	max-width: 800px;
	margin: 0 auto;
	padding: 0px 20px;
}

@media (min-width: 1025px) {
	.news-archive {
		padding: 0px 20px;
	}
}

/* ===== セクションタイトル ===== */
.news-archive__title {
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-primary);
	text-align: center;
	margin: 0 0 40px 0;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--color-primary);
}

@media (min-width: 1025px) {
	.news-archive__title {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
}

@media (max-width: 743px) {
	.news-archive__title {
		font-size: 1.5rem;
		margin-bottom: 30px;
	}
}

/* ===== リストコンテナ ===== */
.news-archive__list {
	margin-bottom: 20px;
}

/* ===== リストアイテム ===== */
.news-archive-item {
	padding: 16px 0;
	transition: all 0.3s ease;
}

.news-archive-item:hover {
	padding-left: 8px;
	background-color: rgba(0, 0, 0, 0);
}

/* ===== 日付 ===== */
.news-archive-item__date {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-accent);
	margin-bottom: 6px;
	font-family: 'Courier New', monospace;
}

@media (min-width: 1025px) {
	.news-archive-item__date {
		font-size: 0.9rem;
	}
}

/* ===== タイトル ===== */
.news-archive-item__title {
	margin: 0 0 12px 0;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.6;
}

@media (min-width: 744px) {
	.news-archive-item__title {
		font-size: 1rem;
	}
}

@media (min-width: 1025px) {
	.news-archive-item__title {
		font-size: 1.1rem;
		margin-bottom: 16px;
	}
}

.news-archive-item__title a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.3s ease;
	display: inline;
	position: relative;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
}

.news-archive-item__title a:hover {
	color: var(--color-primary);
	border-bottom-color: var(--color-primary);
}

/* ===== 仕切り線（ディバイダー） ===== */
.news-archive-item__divider {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--color-border),
		transparent
	);
	margin-top: 16px;
}

@media (min-width: 1025px) {
	.news-archive-item__divider {
		margin-top: 20px;
	}
}

.news-archive-item:last-child .news-archive-item__divider {
	display: none;
}

/* ===== ページネーション ===== */
.news-archive__pagination {
	margin: 10px 0;
	text-align: center;
}

@media (min-width: 1025px) {
	.news-archive__pagination {
		margin: 10px 0;
	}
}

.news-archive__pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.news-archive__pagination a,
.news-archive__pagination span {
	display: inline-block;
	padding: 8px 12px;
	min-width: 40px;
	text-align: center;
	text-decoration: none;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.news-archive__pagination a {
	color: var(--color-primary);
	background: transparent;
}

.news-archive__pagination a:hover {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}

.news-archive__pagination .page-numbers.current {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}

.news-archive__pagination .dots {
	padding: 8px 6px;
	border: none;
}

/* ===== 空状態 ===== */
.news-archive__empty {
	text-align: center;
	color: var(--color-text-sub);
	font-size: 1rem;
	padding: 40px 20px;
	margin: 0;
}

@media (min-width: 1025px) {
	.news-archive__empty {
		font-size: 1.1rem;
		padding: 60px 20px;
	}
}

/* ===== トップへ戻るボタン ===== */
.news-archive__back {
	text-align: center;
	margin-top: 10px;
	padding-top: 20px;
	border-top: 1px solid var(--color-border);
}

@media (min-width: 1025px) {
	.news-archive__back {
		margin-top: 10px;
		padding-top: 20px;
	}
}

.news-archive__back .btn {
	display: inline-block;
	min-width: 200px;
}

/* ===== レスポンシブ調整 ===== */
@media (max-width: 743px) {
	.news-archive {
		padding: 0px 5px;
	}

	.news-archive__title {
		margin-bottom: 24px;
	}

	.news-archive-item {
		padding: 12px 0;
	}

	.news-archive-item__title {
		font-size: 0.9rem;
		margin-bottom: 10px;
	}

	.news-archive-item__divider {
		margin-top: 12px;
	}

	.news-archive__pagination {
		margin: 30px 0;
	}

	.news-archive__back {
		margin-top: 10px;
		padding-top: 10px;
	}
}


/* LINE友だち追加ボタン修正CSS */

.sns-col__line-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #00B900;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.sns-col__line-btn:hover {
    background-color: #008e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 185, 0, 0.3);
}

.sns-col__line-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 185, 0, 0.2);
}

.sns-col__line-btn:focus {
    outline: 2px solid #00B900;
    outline-offset: 2px;
}

/* レスポンシブ */
@media (max-width: 744px) {
    .sns-col__line-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sns-col__line-btn {
        padding: 8px 16px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
}