/*
Theme Name: Yokohama Midori
Theme URI: 
Author: CMS
Author URI: 
Description: WordPress theme for GREEN×EXPO 2027 横浜市民活動フィールド
Version: 1.0.0

/* CSS変数定義 */
:root {
    /* フォントサイズ */
    --base-font-size: 16px;
    
    /* カラー */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-blue: #0167B6;
    --color-blue-dark: #013964;
    --color-pink: #E71875;
    --color-orange: #E85C00;
    --color-green: #009D51;
    --color-green-dark: #149D52;
    --color-cyan: #42BCC5;
    --color-gray-light: #D9D9D9;
    --color-gray: #6F6F6F;
    --color-blue-light: #EDF8FF;
    
    /* 背景色（rgba） */
    --bg-white-transparent: rgba(255, 255, 255, 0.6);
    --bg-green-transparent: rgba(20, 157, 82, 0.09);
    
    /* レイアウト幅 */
    --max-width-container: 2000px;
    --max-width-inner: 1100px;
    
    /* 余白・間隔 */
    --gap-section-inner: 25px;
    
    /* その他 */
    --border-radius-button: 10px;
    --border-radius-nav: 100px;
}

html {
    font-size: var(--base-font-size);
}

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* スマホ用改行（通常時は非表示） */
br.sp {
    display: none;
}

body {
    font-family: 'Noto Sans CJK JP', sans-serif;
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #F0F8FF;
}

/* WordPress管理バー対応 */
body.admin-bar .header-sub__nav-wrapper {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header-sub__nav-wrapper {
        top: 46px;
    }
}

body.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

body.admin-bar .hamburger-btn {
    top: 52px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .hamburger-btn {
        top: 66px;
    }
}

/* 管理バーを常に画面幅100%に（body > div の max-width の影響を受けないように） */
#wpadminbar {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
}

/* ヘッダー（通常時は非表示） */
.header {
    display: none;
}

.header__inner {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0 20px;
}

.header__logo-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 0;
}

.header__logo-wrapper {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.header__logo {
    width: auto;
    height: 35px;
    object-fit: contain;
    display: block;
}

.header__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-blue);
    margin: 0;
    padding: 0;
}

/* 全体レイアウト（管理バーは除外して100%維持） */
body > section,
body > div:not(#wpadminbar) {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
}

/* FVセクション */
.fv {
    position: relative;
    width: 100%;
    max-width: var(--max-width-container);
    height: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.fv__header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.fv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fv__bg-top-wrapper,
.fv__bg-bottom-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    height: 399px;
    overflow: hidden;
}

.fv__bg-top-wrapper {
    top: 0;
}

.fv__bg-bottom-wrapper {
    bottom: 0;
}

.fv__bg-top,
.fv__bg-bottom {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    opacity: 0;
    transition: opacity 1s ease-out, transform 15s ease-out;
}

.fv__bg-top {
    /* background-imageはJavaScriptで設定 */
    transform-origin: center top;
}

.fv__bg-bottom {
    /* background-imageはJavaScriptで設定 */
    transform-origin: center bottom;
}

.fv__bg-top.fade-in,
.fv__bg-bottom.fade-in {
    opacity: 1;
    transform: scale(1.1);
}

/* FVヒーロー文言：画像上・中央線に下端を合わせて下寄せ・右ピッタリ・Roboto・タイポアニメ（文字サイズボタンの影響を受けないようpx指定） */
.fv__hero-title {
    position: absolute;
    bottom: 50%;
    right: -0.06em;
    transform: translateY(0.16em);
    z-index: 2;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1;
    letter-spacing: 0.12em;
    color: var(--color-white);
    white-space: nowrap;
    pointer-events: none;
}

.fv__hero-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.4em);
    animation: fv-hero-char-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-play-state: paused;
}

.fv__hero-title.is-visible .fv__hero-char {
    animation-play-state: running;
}

.fv__hero-char:nth-child(1) { animation-delay: 0.4s; }
.fv__hero-char:nth-child(2) { animation-delay: 0.48s; }
.fv__hero-char:nth-child(3) { animation-delay: 0.56s; }
.fv__hero-char:nth-child(4) { animation-delay: 0.64s; }
.fv__hero-char:nth-child(5) { animation-delay: 0.72s; }
.fv__hero-char:nth-child(6) { animation-delay: 0.8s; }
.fv__hero-char:nth-child(7) { animation-delay: 0.88s; }
.fv__hero-char:nth-child(8) { animation-delay: 0.96s; }
.fv__hero-char:nth-child(9) { animation-delay: 1.04s; }
.fv__hero-char:nth-child(10) { animation-delay: 1.12s; }
.fv__hero-char:nth-child(11) { animation-delay: 1.2s; }
.fv__hero-char:nth-child(12) { animation-delay: 1.28s; }
.fv__hero-char:nth-child(13) { animation-delay: 1.36s; }
.fv__hero-char:nth-child(14) { animation-delay: 1.44s; }
.fv__hero-char:nth-child(15) { animation-delay: 1.52s; }

@keyframes fv-hero-char-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gnav-wrapper {
    position: fixed;
    top: 37px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-width-container);
    z-index: 10;
    pointer-events: none;
}

.gnav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 37px;
    padding: 15px 30px;
    background: var(--color-white);
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: max(50px, calc((100% - var(--max-width-container)) / 2));
    pointer-events: auto;
}

.gnav-item {
    padding: 0;
    line-height: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.gnav-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: var(--color-blue);
    text-decoration: none;
    display: block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    margin: 0;
    padding: 0;
    position: relative;
}

.gnav-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-blue);
}

.gnav-text:hover::after {
    animation: lineRun 0.8s ease-out infinite;
}

@keyframes lineRun {
    0% {
        width: 0;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}

.fv__content {
    position: absolute;
    left: 0;
    top: 0;
    width: 327px;
    height: 800px;
    z-index: 5;
    background: var(--bg-white-transparent);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 19px 15px;
}

.fv__logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18.19px;
    padding: 10px 0 0;
    width: 282.57px;
}

.fv__logo {
    width: 200.53px;
    height: 74.27px;
}

.fv__title-area {
    display: flex;
    flex-direction: column;
    gap: 8.49px;
    width: 100%;
}

.fv__title-main {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.21;
    text-align: center;
    color: var(--color-black);
}

.fv__title-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22.98px;
    line-height: 1.39;
    text-align: center;
    color: var(--color-blue);
}

.fv__line {
    width: 105px;
    height: 1px;
    background: var(--color-cyan);
}

.fv__message {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.73;
    letter-spacing: 0.14em;
    text-align: center;
    color: var(--color-black);
    width: 262px;
}

.fv__font-size {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    width: 100%;
}

.fv__font-size-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.21;
    color: var(--color-blue);
}

.fv__font-size-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fv__font-size-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-blue);
    background: var(--color-white);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-blue);
    padding: 10px;
}

.fv__font-size-btn[data-size="small"] {
    font-size: 11px;
    line-height: 1.21;
}

.fv__font-size-btn[data-size="medium"] {
    font-size: 14px;
    line-height: 1.21;
}

.fv__font-size-btn[data-size="large"] {
    font-size: 18px;
    line-height: 1.21;
}

.fv__font-size-btn.is-active {
    background: var(--color-blue);
    border-color: var(--color-white);
    color: var(--color-white);
}


/* 新着情報セクション */
.news {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 50px 0;
}

.inner {
    width: 100%;
    max-width: var(--max-width-inner);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-section-inner);
    padding: 50px 20px;
}

.news {
    padding: 0;
}

.news__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 128px;
    gap: 0;
}

.news__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-black);
}

.news__title-en {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    text-align: center;
    color: var(--color-pink);
}

.news__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0 0;
    border-top: 1px solid var(--color-gray-light);
}

.news__item {
    display: flex;
    align-items: center;
    gap: 19px;
    padding: 0 0 15px;
    border-bottom: 1px solid var(--color-gray-light);
}

.news__date-area {
    display: flex;
    align-items: center;
    gap: 13px;
}

.news__date {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--color-black);
}

.news__separator {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--color-gray-light);
}

.news__text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--color-black);
    text-decoration: none;
}

.news__text:hover {
    text-decoration: underline;
}

/* ボタン共通スタイル */
.btn_normal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 30px;
    border-radius: var(--border-radius-button);
    text-decoration: none;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.btn_normal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn_normal:hover::before {
    left: 100%;
}

.btn_normal__text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--color-white);
}

.btn_large .btn_normal__text {
    font-size: 1.25rem;
}

.btn_normal__arrow {
    width: 5px;
    height: 9px;
    transition: transform 0.3s ease;
}

.btn_normal:hover .btn_normal__arrow {
    transform: translateX(3px);
}

/* ボタンカラー */
.btn_pink {
    background: var(--color-pink);
}

.btn_orange {
    background: var(--color-orange);
}

.btn_green {
    background: var(--color-green-dark);
}

.btn_blue {
    background: var(--color-blue);
}

.btn_gray {
    background: var(--color-gray);
    color: var(--color-white);
    cursor: default;
    pointer-events: none;
}

.btn_gray::before {
    display: none;
}

/* 募集期間外など。closed でグレー表示・矢印非表示・リンクは有効 */
.btn_normal.closed {
    background: var(--color-gray);
    color: var(--color-white);
    pointer-events: auto;
    cursor: pointer;
}

.btn_normal.closed::before {
    display: none;
}

.btn_blue_dark {
    background: var(--color-blue-dark);
}


/* GREEN × EXPO 2027 開催概要セクション */
.outline {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    background: var(--bg-green-transparent);
}


.outline__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
}

.outline__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-black);
}

.outline__title-en {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    text-align: center;
    color: var(--color-green);
}

.outline__content {
    display: flex;
    gap: 29px;
    width: 100%;
    padding: 0;
}

.outline__text-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.outline__description {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
}

.outline__info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0 0;
    border-top: 1px solid var(--color-gray-light);
    min-height: 151px;
}

.outline__info-item {
    display: flex;
    gap: 19px;
    padding: 0 0 15px;
    border-bottom: 1px solid var(--color-gray-light);
}

.outline__info-label-area {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 5px 0 0;
    flex: 0 0 auto;
    width: fit-content;
}

.outline__info-label {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.35;
    color: var(--color-green-dark);
}

.outline__info-separator {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--color-gray-light);
}

.outline__info-value-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.outline__info-value {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.35;
    color: var(--color-black);
    text-align: left;
}

.outline__info-note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--color-black);
    text-align: left;
}

.outline__image-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    width: 443px;
}

.outline__image {
    width: 100%;
    height: 356px;
    border-radius: var(--border-radius-button);
}

.outline__image-caption {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.8;
    text-align: right;
    color: var(--color-gray);
}

.outline__button-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    width: 100%;
    margin-top: 0;
}


.outline__button-note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.8;
    text-align: center;
    color: var(--color-black);
    width: 443px;
    height: 25px;
    margin-top: 0;
}

/* 区切り画像 */
.section-divider {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
}

.section-divider img {
    width: 100%;
    height: auto;
}

.section-divider img {
    width: 100%;
    height: auto;
    display: block;
}

/* 横浜市民活動フィールドとはセクション */
.field {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
}


.field__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
}

.field__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-black);
}

.field__title-en {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    text-align: center;
    color: var(--color-blue);
}

.field__content {
    display: flex;
    gap: 29px;
    width: 100%;
}

.field__text-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.field__subtitle {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.35;
    text-align: center;
    color: var(--color-blue);
}

.field__description {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
}


.field__gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.field__gallery-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.field__gallery-item {
    width: 279px;
    flex: 1;
    min-width: 0;
    line-height: 0;
}

.field__gallery-image {
    width: 100%;
    height: auto;
    aspect-ratio: 279 / 200;
    border-radius: var(--border-radius-button);
    line-height: 0;
}

/* イベントについてセクション */
.events {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    background: rgba(232, 92, 0, 0.06);
}

.events .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-section-inner);
    padding: 50px 20px;
}

.events__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
}

.events__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-black);
}

.events__title-en {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    text-align: center;
    color: var(--color-orange);
}

.events__list {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    max-width: var(--max-width-inner);
    list-style: none;
    margin: 0;
    padding: 0;
}

.events__item {
    flex: 1;
    min-width: 0;
    display: flex;
    background: var(--color-white);
    border-radius: var(--border-radius-button);
    overflow: hidden;
    transition: background 0.25s ease;
}

.events__link {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    text-decoration: none;
    color: var(--color-black);
    transition: background 0.25s ease;
}

.events__item:hover,
.events__link:hover {
    background: rgba(232, 92, 0, 0.06);
}

.events__link:hover .events__item-title {
    text-decoration: underline;
}

.events__image-area {
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
    border-radius: 8px;
}

.events__image {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
    border-radius: 8px;
}

.events__item-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 16px 16px 20px;
}

.events__item-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.events__item-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin: 8px 0 0;
    padding: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.events__date {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-orange);
    margin: 8px 0 0;
    padding: 0;
}

.events__button-area {
    margin-top: 10px;
}

/* 企業・団体の皆様へセクション */
.business {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    background: var(--color-blue-light);
}


.business__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
}

.business__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-black);
}

.business__title-en {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    text-align: center;
    color: var(--color-blue-dark);
}

.business__content {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    width: 100%;
    gap: 29px;
}

.business__description {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    color: var(--color-black);
    flex: 1;
}


/* フッター */
.footer {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    background: var(--color-blue);
}


.footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21px;
    width: 541px;
}

.footer__logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18.11px;
}

.footer__logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.51625rem;
    line-height: 1.21;
    text-align: center;
    color: var(--color-white);
}

.footer__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.71;
    text-align: center;
    color: var(--color-white);
}

.footer__org {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 6px;
}

.footer__org-name {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.06125rem;
    line-height: 1.6;
    text-align: center;
    color: var(--color-white);
}

.footer__org-note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: center;
    color: var(--color-white);
}

.footer__line {
    width: var(--max-width-inner);
    height: 1px;
    background: var(--color-white);
}

.footer__nav {
    width: 698px;
}

.footer__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__nav-item {
    margin: 0;
    padding: 0;
}

.footer__nav-link {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: center;
    color: var(--color-white);
    text-decoration: none;
    white-space: nowrap;
}

.footer__nav-link:hover {
    text-decoration: underline;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer__copyright {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: center;
    color: var(--color-white);
}

.footer__note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.6;
    text-align: center;
    color: var(--color-white);
}

/* レスポンシブ対応 */
@media (max-width: 1000px) {
    body > section,
    body > div:not(#wpadminbar) {
        max-width: 100%;
    }

    .fv {
        height: auto;
        min-height: 800px;
        margin-top: 55px; /* ヘッダー分のスペース */
    }

    .fv__bg-top,
    .fv__bg-bottom {
        width: 100%;
        height: 399px;
    }

    .gnav-wrapper {
        display: none;
    }

    /* ヘッダー固定 */
    .header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--color-white);
        z-index: 90;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .header__inner {
        width: 100%;
        max-width: var(--max-width-container);
        margin: 0 auto;
        padding: 0 20px;
    }

    .header__logo-area {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 10px 0;
    }

    .header__logo-wrapper {
        margin: 0;
        padding: 0;
        line-height: 0;
    }

    .header__logo {
        width: auto;
        height: 35px;
        object-fit: contain;
        display: block;
    }

    .header__title {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 12px;
        line-height: 1.4;
        color: var(--color-blue);
        margin: 0;
        padding: 0;
    }


    /* FV内のヘッダーは非表示 */
    .fv__header {
        display: none;
    }

    .fv {
        display: flex;
        align-items: center;
    }

    .fv__content {
        width: fit-content;
        max-width: 100%;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        justify-content: center;
        height: auto;
        min-height: fit-content;
        padding: 20px 15px;
    }

    .fv__logo-area,
    .fv__line,
    .fv__font-size {
        display: none;
    }

    .fv__message {
        display: block;
        font-size: 20px;
        line-height: 1.5;
        width: fit-content;
        max-width: 100%;
    }



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

    .outline__text-area {
        flex: 1;
    }

    .outline__description {
        width: 100%;
    }

    .outline__image-area {
        width: 100%;
        max-width: 443px;
    }

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

    .field__text-area {
        width: 100%;
        align-items: center;
    }

    .field__gallery {
        width: 100%;
    }

    .field__gallery-row {
        justify-content: center;
    }

    .field__gallery-item {
        width: calc(50% - 5px);
        flex: 1;
        min-width: 0;
    }

    .business__content {
        flex-direction: column;
    }
}

@media (max-width: 1000px) {
    .fv__hero-title {
        font-size: clamp(28px, 4vw, 48px);
    }
}

@media (max-width: 768px) {
    .fv {
        height: auto;
        min-height: 600px;
    }

    .fv__hero-title {
        bottom: 0;
        transform: translateY(0);
        font-size: clamp(24px, 5vw, 36px);
    }

    .fv__bg-top-wrapper,
    .fv__bg-bottom-wrapper {
        height: 299px;
    }

    .outline__info-item {
        flex-direction: column;
        gap: 10px;
    }

    .outline__info-label-area {
        padding: 0;
    }

    .outline__info-value-area {
        padding: 0;
    }

    .news__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news__date-area {
        width: 100%;
    }

    .events__list {
        flex-direction: column;
        max-width: 100%;
    }

    .events__item {
        width: 100%;
    }

    .events__image-area {
        width: 100%;
    }

    .section-divider img {
        width: 100%;
        height: auto;
    }

    .inner {
        padding: 30px 20px;
    }

    .footer__top {
        width: 100%;
    }

    .footer__logo {
        font-size: 1.2rem;
    }

    .footer__title {
        font-size: 0.75rem;
    }

    .footer__line {
        width: 100%;
    }

    .footer__nav {
        width: 100%;
    }

    .footer__nav-list {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .footer__nav-link {
        white-space: normal;
        font-size: 0.75rem;
    }

    .footer__bottom {
        width: 100%;
    }

    .footer__org-name {
        font-size: 0.875rem;
    }

    br.sp {
        display: block;
    }

    .footer__org-note {
        font-size: 0.75rem;
    }

    .footer__copyright {
        font-size: 0.75rem;
    }

    .footer__note {
        font-size: 0.625rem;
    }
}

@media (max-width: 480px) {
    .news__title,
    .outline__title,
    .field__title,
    .events__title,
    .business__title {
        font-size: 1.5rem;
    }

    .field__gallery-row {
        width: 100%;
    }

    .field__gallery-item {
        width: calc(50% - 5px);
        flex: 1;
        min-width: 0;
    }

    .outline__image-area,
    .outline__button-note {
        width: 100%;
    }
}

/* ========================================
   下層ページ用スタイル
   ======================================== */

/* ヘッダー（下層ページ用） */
.header-sub {
    position: relative;
    width: 100%;
    max-width: var(--max-width-container);
    height: 320px;
    margin: 0 auto;
    overflow: hidden;
}

.header-sub__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/fv-bg-top.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.header-sub__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.header-sub__content {
    position: relative;
    width: 100%;
    max-width: var(--max-width-container);
    height: 100%;
    margin: 0 auto;
    z-index: 2;
    padding: 30px 55px;
    display: flex;
    flex-direction: column;
}

.header-sub__font-size {
    position: absolute;
    top: 276px;
    right: 55px;
    display: flex;
    align-items: center;
    gap: 19px;
    padding: 10px;
    background: var(--color-white);
    border-radius: 10px 10px 0px 0px;
    width: fit-content;
}

.header-sub__font-size-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.21;
    color: var(--color-blue);
}

.header-sub__font-size-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-sub__font-size-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-blue);
    background: var(--color-white);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-blue);
    padding: 10px;
}

.header-sub__font-size-btn[data-size="small"] {
    font-size: 11px;
    line-height: 1.21;
}

.header-sub__font-size-btn[data-size="medium"] {
    font-size: 14px;
    line-height: 1.21;
}

.header-sub__font-size-btn[data-size="large"] {
    font-size: 18px;
    line-height: 1.21;
}

.header-sub__font-size-btn.is-active {
    background: var(--color-blue);
    border-color: var(--color-white);
    color: var(--color-white);
}

.header-sub__title-area {
    position: absolute;
    left: 71px;
    top: 60%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.header-sub__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.85;
    color: var(--color-white);
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-sub__title-en {
    font-family: 'Crimson Text', serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.35;
    color: #FFD579;
    margin: 0;
    padding: 0;
}

.header-sub__nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

.header-sub__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 15px 30px;
    background: var(--bg-white-transparent);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    width: 1402px;
    max-width: calc(100% - 110px);
    line-height: 24px;
    font-size: 20px;
    min-width: 0;
}

.header-sub__nav-logo-area {
    display: flex;
    align-items: center;
    gap: 33px;
    line-height: 24px;
    font-size: 20px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 1;
    min-width: 0;
}

.header-sub__nav-logo {
    width: 166px;
    height: 61px;
    object-fit: contain;
}

.header-sub__nav-title-area {
    display: flex;
    flex-direction: column;
    gap: 7px;
    line-height: 24px;
    font-size: 20px;
}

.header-sub__nav-title-main {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: var(--color-black);
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.header-sub__nav-title-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--color-blue);
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.header-sub__nav-menu {
    display: flex;
    align-items: center;
    line-height: 19px;
    font-size: 16px;
    flex-shrink: 1;
    min-width: 0;
}

.header-sub__nav-list {
    display: flex;
    align-items: center;
    gap: 37px;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 19px;
    font-size: 16px;
}

.header-sub__nav-item {
    margin: 0;
    padding: 0;
    line-height: 19px;
    font-size: 16px;
}

.header-sub__nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-black);
    text-decoration: none;
    display: block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    margin: 0;
    padding: 10px 0;
    position: relative;
    white-space: nowrap;
}

.header-sub__nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-blue);
}

.header-sub__nav-link:hover::after {
    animation: lineRun 0.8s ease-out infinite;
}

/* 1350px以下で文字サイズを小さく */
@media (max-width: 1350px) {
    .header-sub__nav-title-main {
        font-size: 13px;
        line-height: 16px;
    }

    .header-sub__nav-title-sub {
        font-size: 14px;
        line-height: 17px;
    }

    .header-sub__nav-link {
        font-size: 14px;
        line-height: 17px;
    }
}

/* 1300px以下でgapを小さく */
@media (max-width: 1300px) {
    .header-sub__nav {
        gap: 20px;
    }

    .header-sub__nav-list {
        gap: 20px;
    }
}

/* メインコンテンツ（下層ページ用） */
.main-wrapper {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    background-color: var(--color-white);
}

.about-section {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
}

.about-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0;
}

.about-section__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.about-section__subtitle {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-blue);
    margin: 0;
    padding: 0;
}

.about-section__image-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
}

.about-section__image {
    width: 1000px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1000 / 669;
    border-radius: 20px;
    object-fit: cover;
}

.about-section__image-caption {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.8;
    text-align: right;
    color: #999999;
    margin: 0;
    padding: 0;
    width: 986px;
    max-width: 100%;
}

.about-section__text-area {
    width: 100%;
    padding: 0;
}

.about-section__text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

/* CTAセクション */
.about-section--cta {
    background: var(--color-blue-light);
}

.about-section--cta .about-section__header {
    padding: 0;
}

.about-section--cta .about-section__text-area {
    padding: 0;
}

.about-section--cta .about-section__text {
    text-align: center;
}

.about-section__buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    padding: 0;
    flex-wrap: wrap;
}

.about-section__button-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.about-section__button-note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.35;
    text-align: center;
    color: var(--color-blue);
    margin: 0;
    padding: 0;
}

/* レスポンシブ対応（下層ページ） */
@media (max-width: 1000px) {
    .header-sub {
        height: auto;
        min-height: 200px;
        margin-top: 55px; /* スマホヘッダー分のスペース */
        display: flex;
        align-items: center;
    }

    .header-sub__content {
        padding: 20px;
        gap: 20px;
        justify-content: center;
        align-items: flex-start;
        height: auto;
    }

    .header-sub__font-size {
        display: none;
    }

    .header-sub__title-area {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        align-self: flex-start;
    }

    .header-sub__title {
        font-size: 32px;
    }

    .header-sub__title-en {
        font-size: 18px;
    }

    .header-sub__nav-wrapper {
        display: none;
    }

    .header-sub__nav-logo-area {
        width: 100%;
        justify-content: center;
    }

    .header-sub__nav-menu {
        width: 100%;
        justify-content: center;
    }

    .header-sub__nav-list {
        width: 100%;
        justify-content: center;
    }

    .about-section__image {
        width: 100%;
    }

    .about-section__image-caption {
        width: 100%;
        text-align: center;
    }

    .about-section__buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-section__button-item {
        width: 100%;
        max-width: 274px;
    }
}

@media (max-width: 768px) {
    .header-sub {
        height: auto;
        min-height: 180px;
    }

    .header-sub__title {
        font-size: 24px;
    }

    .about-section__title {
        font-size: 1.5rem;
    }

    .about-section__subtitle {
        font-size: 1.125rem;
    }
}

/* ハンバーガーメニュー */
.hamburger-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: transform 0.3s ease;
}

.hamburger-btn:hover {
    transform: scale(1.05);
}

.hamburger-btn__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.is-active .hamburger-btn__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.is-active .hamburger-btn__line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.is-active .hamburger-btn__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hamburger-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0s 0.4s, opacity 0.3s ease;
}

.hamburger-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: visibility 0s 0s, opacity 0.3s ease;
}

.hamburger-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger-menu.is-open .hamburger-menu__overlay {
    opacity: 1;
}

.hamburger-menu__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-sizing: border-box;
}

.hamburger-menu.is-open .hamburger-menu__content {
    transform: translateX(0);
}

.hamburger-menu__nav {
    padding: 80px 20px 40px;
}

.hamburger-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hamburger-menu__item {
    border-bottom: 1px solid #e0e0e0;
}

.hamburger-menu__item:last-child {
    border-bottom: none;
}

.hamburger-menu__link {
    display: block;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.hamburger-menu__link:hover {
    color: var(--color-blue-dark);
}

.hamburger-menu__link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-blue);
    transition: width 0.3s ease;
}

.hamburger-menu__link:hover::after {
    width: 100%;
}

.hamburger-menu__font-size {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    padding: 30px 20px 20px;
    border-top: 1px solid #e0e0e0;
}

.hamburger-menu__font-size-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.21;
    color: var(--color-blue);
}

.hamburger-menu__font-size-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger-menu__font-size-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-blue);
    background: var(--color-white);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-blue);
    padding: 10px;
}

.hamburger-menu__font-size-btn[data-size="small"] {
    font-size: 11px;
    line-height: 1.21;
}

.hamburger-menu__font-size-btn[data-size="medium"] {
    font-size: 14px;
    line-height: 1.21;
}

.hamburger-menu__font-size-btn[data-size="large"] {
    font-size: 18px;
    line-height: 1.21;
}

.hamburger-menu__font-size-btn.is-active {
    background: var(--color-blue);
    border-color: var(--color-white);
    color: var(--color-white);
}

/* タブレット・スマホ表示 */
@media (max-width: 1000px) {
    .hamburger-btn {
        display: flex;
        top: 2px;
        right: 5px;
    }
}


.news-single-section {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0;
}

.news-single__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.news-single__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.448;
    text-align: center;
    color: var(--color-blue);
    margin: 0;
    padding: 0;
}

.news-single__date {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.448;
    text-align: center;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.news-single__image-area {
    width: 100%;
    padding: 0;
    margin: 0;
}

.news-single__image {
    width: 100%;
    height: 581px;
    object-fit: cover;
    border-radius: 20px;
}

.news-single__content {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* カスタム投稿本文（WordPress エディタ出力）※ .news-single__body 内のみに適用 */
.news-single__body {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
}

.news-single__body p {
    margin: 0 0 1em;
    padding: 0;
}

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

.news-single__body h2 {
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.5;
    color: var(--color-blue);
    margin: 1.5em 0 0.5em;
    padding: 0 0 0.25em;
    border-bottom: 2px solid var(--color-blue);
}

.news-single__body h2:first-child {
    margin-top: 0;
}

.news-single__body h3 {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--color-black);
    margin: 1.25em 0 0.5em;
    padding: 0;
}

.news-single__body ul,
.news-single__body ol {
    margin: 0 0 1em 1.5em;
    padding: 0;
}

.news-single__body ul {
    list-style: disc;
}

.news-single__body ol {
    list-style: decimal;
}

.news-single__body li {
    margin-bottom: 0.25em;
}

.news-single__body li:last-child {
    margin-bottom: 0;
}

.news-single__body a {
    color: var(--color-blue);
    text-decoration: underline;
}

.news-single__body a:hover {
    text-decoration: none;
}

.news-single__body strong {
    font-weight: 700;
}

.news-single__body em {
    font-style: italic;
}

.news-single__body blockquote {
    margin: 1em 0;
    padding: 1em 1.25em;
    background: var(--color-blue-light);
    border-left: 4px solid var(--color-blue);
    font-size: 1rem;
    line-height: 1.8;
}

.news-single__body blockquote p {
    margin: 0;
}

.news-single__body blockquote p + p {
    margin-top: 0.5em;
}

/* テーブル（WordPress 標準のテーブルブロック） */
.news-single__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 1rem;
    line-height: 1.6;
}

.news-single__body th,
.news-single__body td {
    border: 1px solid var(--color-gray-light);
    padding: 0.5em 0.75em;
    text-align: left;
}

.news-single__body th {
    background: var(--color-blue);
    font-weight: 700;
    color: var(--color-white);
}

.news-single__body tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.02);
}

/* 画像の配置（WordPress 標準：alignleft / alignright / aligncenter） */
.news-single__body img.alignleft {
    float: left;
    margin: 0 1.5em 1em 0;
    max-width: 50%;
    height: auto;
}

.news-single__body img.alignright {
    float: right;
    margin: 0 0 1em 1.5em;
    max-width: 50%;
    height: auto;
}

.news-single__body img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

.news-single__body .alignleft {
    float: left;
    margin: 0 1.5em 1em 0;
}

.news-single__body .alignright {
    float: right;
    margin: 0 0 1em 1.5em;
}

.news-single__body .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* 文字の配置（WordPress ブロックエディタ：has-text-align-*） */
.news-single__body .has-text-align-left {
    text-align: left;
}

.news-single__body .has-text-align-center {
    text-align: center;
}

.news-single__body .has-text-align-right {
    text-align: right;
}

/* クラシックエディタ等で使う class 指定 */
.news-single__body p.alignleft,
.news-single__body .text-left {
    text-align: left;
}

.news-single__body p.aligncenter,
.news-single__body .text-center {
    text-align: center;
}

.news-single__body p.alignright,
.news-single__body .text-right {
    text-align: right;
}

/* 回り込み解除 */
.news-single__body .clear,
.news-single__body br.clear {
    clear: both;
    display: block;
    height: 0;
    overflow: hidden;
}

.news-single__text-area {
    width: 100%;
    padding: 0;
    margin: 0;
}

.news-single__text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.news-single__button-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* イベント情報詳細ページ */
.event-single-section {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0;
}

.event-single__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.event-single__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.448;
    text-align: center;
    color: var(--color-blue);
    margin: 0;
    padding: 0;
}

.event-single__date {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.448;
    text-align: center;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.event-single__image-area {
    width: 100%;
    padding: 0;
    margin: 0;
}

.event-single__image {
    width: 100%;
    height: 581px;
    object-fit: cover;
    border-radius: 20px;
}

.event-single__content {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* イベント本文（.event-single__body 内のみ・トンマナ統一） */
.event-single__body {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
}

.event-single__body p {
    margin: 0 0 1em;
    padding: 0;
}

.event-single__body p:last-child {
    margin-bottom: 0;
}

.event-single__body h3 {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--color-blue);
    margin: 1.5em 0 0.5em;
    padding: 0 0 0.25em;
    border-bottom: 2px solid var(--color-blue);
}

.event-single__body h3:first-child {
    margin-top: 0;
}

.event-single__body ul {
    margin: 1em 0 1em 1.5em;
    padding: 0;
    list-style: disc;
}

.event-single__body li {
    margin-bottom: 0.25em;
}

.event-single__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

.event-single__body th,
.event-single__body td {
    border: 1px solid var(--color-gray-light);
    padding: 0.5em 0.75em;
    text-align: left;
}

.event-single__body th {
    background: var(--color-blue);
    font-weight: 700;
    color: var(--color-white);
}

.event-single__body tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.02);
}

/* dl リスト（下線のみ・背景色なし） */
.event-single__body .event-single__dl {
    margin: 1em 0;
    padding: 0;
}

.event-single__body .event-single__dl-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--color-gray-light);
}

.event-single__body .event-single__dl-dt {
    width: 28%;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-black);
    margin: 0;
    padding: 12px 12px 12px 0;
}

.event-single__body .event-single__dl-dd {
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-black);
    margin: 0;
    padding: 12px 0 12px 12px;
}


.event-single__text-area {
    width: 100%;
    padding: 0;
    margin: 0;
}

.event-single__text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.event-single__button-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* 開催概要 */
.event-single__overview {
    width: 100%;
    margin-top: 40px;
}

.event-single__overview-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--color-blue);
    margin: 0 0 20px;
    padding: 0 0 10px;
    border-bottom: 2px solid var(--color-blue);
}

.event-single__overview-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.event-single__overview-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-light);
}


.event-single__overview-label {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-black);
    margin: 0;
    padding: 0;
    flex: 0 0 120px;
}

.event-single__overview-value {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-black);
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
}

/* 申し込み */
.event-single__apply {
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

.event-single__apply-note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin: 0 0 16px;
    padding: 0;
}

.event-single__apply-links-box {
    background: #f0f0f0;
    border-radius: var(--border-radius-button);
    padding: 24px 32px 28px;
    margin-bottom: 24px;
}

.event-single__apply-links-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0 0 16px;
    padding: 0;
    text-align: center;
}

.event-single__apply-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
}

.event-single__apply-links li {
    margin: 0;
    padding: 0;
}

.event-single__apply-links a {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: underline;
}

.event-single__apply-links a:hover {
    text-decoration: none;
}

.event-single__apply-button-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-single__apply-button-area .btn_normal {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.event-single__apply-button-area .btn_normal__text {
    font-size: 1.125rem;
}

.event-single__apply-button-area .btn_normal__arrow {
    width: 6px;
    height: 11px;
}

/* お問い合わせ */
.event-single__contact {
    width: 100%;
    margin-top: 40px;
    padding: 24px;
    background: var(--color-blue-light);
    border-radius: var(--border-radius-button);
}

.event-single__contact-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--color-blue);
    margin: 0 0 12px;
    padding: 0;
}

.event-single__contact-note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-black);
    margin: 0 0 16px;
    padding: 0;
}

.event-single__contact-block {
    margin-bottom: 20px;
    padding: 20px 24px;
    background: var(--color-white);
    border-radius: var(--border-radius-button);
}

.event-single__contact-block:last-child {
    margin-bottom: 0;
}

/* ブロック内はエディタ出力（h4, p, a のみでスタイル） */
.event-single__contact-block h4 {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0 0 12px;
    padding: 0;
}

.event-single__contact-block p {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-black);
    margin: 0 0 4px;
    padding: 0;
}

.event-single__contact-block p:last-child {
    margin-bottom: 0;
}

.event-single__contact-block a[href^="tel:"] {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-blue);
    text-decoration: none;
}

.event-single__contact-block a[href^="tel:"]:hover {
    text-decoration: underline;
}

.event-single__contact-block a[href^="mailto:"] {
    color: var(--color-blue);
    text-decoration: underline;
}

.event-single__contact-block a[href^="mailto:"]:hover {
    text-decoration: none;
}

.procurement-section {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0;
}

.procurement-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.procurement-section__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.448;
    text-align: center;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.procurement-section__subtitle {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.352;
    text-align: center;
    color: var(--color-blue);
    margin: 0;
    padding: 0;
}

.procurement-section__update {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.352;
    text-align: center;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.procurement-section__table-wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
}

.procurement-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--color-blue);
    border-radius: 10px;
    overflow: hidden;
    background: var(--color-white);
}

.procurement-table__head {
    width: 100%;
}

.procurement-table__head-row {
    width: 100%;
}

.procurement-table__head-cell {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
    color: var(--color-white);
    background: var(--color-blue);
    padding: 13px;
    border-right: 1px solid var(--color-white);
}

.procurement-table__head-cell:last-child {
    border-right: none;
}

.procurement-table__head-cell--date:first-of-type {
    width: 140px;
    padding: 13px 10px;
    border-radius: 10px 0 0 0;
}

.procurement-table__head-cell--date {
    width: 140px;
    padding: 13px 10px;
}

.procurement-table__head-cell--subject {
    width: auto;
    padding: 13px 20px;
}

.procurement-table__head-cell--date:last-of-type {
    width: 140px;
    padding: 13px 10px;
}

.procurement-table__head-cell--detail {
    width: 196px;
    padding: 13px 20px;
    border-radius: 0 10px 0 0;
}

.procurement-table__body {
    width: 100%;
}

.procurement-table__body-row {
    width: 100%;
}

.procurement-table__body-row--alt {
    background: #F8F8F8;
}

.procurement-table__body-row--last {
    border-radius: 0 0 10px 10px;
}

.procurement-table__body-cell {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3;
    text-align: left;
    color: var(--color-black);
    padding: 10px;
    vertical-align: top;
}

.procurement-table__body-cell--date {
    width: 140px;
    text-align: center;
    padding: 10px;
}

.procurement-table__body-cell--subject {
    width: auto;
    padding: 10px;
}

.procurement-table__body-cell--detail {
    width: 198px;
    padding: 0 19px;
    text-align: center;
    vertical-align: middle;
}

.procurement-table__subject-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    color: var(--color-black);
    margin: 0 0 7px 0;
    padding: 0;
}

.procurement-table__subject-note {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.3;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.procurement-table__detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 30px;
    background: var(--color-blue);
    border-radius: 10px;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.352;
    text-align: center;
    color: var(--color-white);
    text-decoration: none;
    width: fit-content;
    height: 42px;
}

.procurement-table__detail-btn:hover {
    opacity: 0.8;
}

.procurement-table__detail-btn-text {
    display: inline-block;
}

.procurement-table__detail-btn-arrow {
    width: 5px;
    height: 9px;
    display: inline-block;
}

/* レスポンシブ対応（入札情報・契約情報ページ） */
@media (max-width: 768px) {
    .procurement-section__title {
        font-size: 1.5rem;
    }

    .procurement-section__subtitle {
        font-size: 0.875rem;
    }

    .procurement-section__update {
        font-size: 0.875rem;
    }

    .procurement-table {
        display: block;
        border-radius: 10px;
        border: none;
    }

    .procurement-table__head {
        display: none;
    }

    .procurement-table__body {
        display: block;
    }

    .procurement-table__body-row {
        display: block;
        border: 1px solid var(--color-blue);
        border-radius: 10px;
        margin-bottom: 15px;
        padding: 15px;
        background: var(--color-white);
    }

    .procurement-table__body-row--alt {
        background: #F8F8F8;
    }

    .procurement-table__body-row--last {
        margin-bottom: 0;
        border-radius: 10px;
    }

    .procurement-table__body-cell {
        display: block;
        width: 100%;
        border: none;
        padding: 10px 0;
        text-align: left;
    }

    .procurement-table__body-cell::before {
        content: attr(data-label) ': ';
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        display: block;
        margin-bottom: 5px;
        color: var(--color-blue);
    }

    .procurement-table__body-cell--date {
        text-align: left;
    }

    .procurement-table__body-cell--detail {
        text-align: center;
        padding: 15px 0 0 0;
    }

    .procurement-table__body-cell--detail::before {
        display: none;
    }

    .procurement-table__detail-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* レスポンシブ対応（新着情報詳細ページ） */
@media (max-width: 1000px) {
    .news-single__header {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .news-single__title {
        font-size: 1.5rem;
    }

    .news-single__date {
        font-size: 1.125rem;
    }

    .news-single__image {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .news-single__text {
        font-size: 0.875rem;
    }

    .news-single__body,
    .news-single__body p,
    .news-single__body blockquote {
        font-size: 0.875rem;
    }

    .news-single__body h2 {
        font-size: 1.25rem;
    }

    .news-single__body h3 {
        font-size: 1rem;
    }

    .event-single__header {
        gap: 15px;
    }

    .event-single__title {
        font-size: 1.5rem;
    }

    .event-single__date {
        font-size: 1.125rem;
    }

    .event-single__image {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .event-single__text {
        font-size: 0.875rem;
    }

    .event-single__body p,
    .event-single__body table {
        font-size: 0.875rem;
    }

    .event-single__body h3 {
        font-size: 1.125rem;
    }

    .event-single__body .event-single__dl-row {
        flex-direction: column;
        align-items: stretch;
    }

    .event-single__body .event-single__dl-dt {
        width: 100%;
    }

    .event-single__body .event-single__dl-dd {
        padding-top: 0;
    }

    .event-single__overview-row {
        flex-direction: column;
        gap: 4px;
    }

    .event-single__overview-label {
        flex: none;
    }
}


.news-section {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0;
}

.news-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
}

.news-section__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.news-section__title-en {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    text-align: center;
    color: var(--color-pink);
    margin: 0;
    padding: 0;
}

.news-section__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0 0;
    border-top: 1px solid var(--color-gray-light);
}

.news-section__item {
    display: flex;
    align-items: center;
    gap: 19px;
    padding: 0 0 15px;
    border-bottom: 1px solid var(--color-gray-light);
}

.news-section__date-area {
    display: flex;
    align-items: center;
    gap: 13px;
}

.news-section__date {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--color-black);
}

.news-section__separator {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--color-gray-light);
}

.news-section__text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--color-black);
    text-decoration: none;
}

.news-section__text:hover {
    text-decoration: underline;
}

.news-section__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

.news-section__pagination .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.news-section__pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-section__pagination .nav-links > * {
    margin: 0 5px;
}

.news-section__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    padding: 0 10px;
    margin: 0 5px;
    border: 1px solid var(--color-blue);
    background: var(--color-white);
    color: var(--color-blue);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.news-section__pagination a.page-numbers:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.news-section__pagination .page-numbers.current {
    background: var(--color-blue);
    color: var(--color-white);
    pointer-events: none;
}

.news-section__pagination .page-numbers.dots {
    border: none;
    background: transparent;
    min-width: auto;
    padding: 0 5px;
}

.news-section__pagination-list {
    display: flex;
    gap: 10px;
    margin: 0 auto;
}

.news-section__pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-blue);
    background: var(--color-white);
    color: var(--color-blue);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-section__pagination-item:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.news-section__pagination-item--active {
    background: var(--color-blue);
    color: var(--color-white);
}

/* イベント情報一覧ページ */
.event-section {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0;
    background: var(--color-white);
}

.event-section__title-en {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    text-align: center;
    color: var(--color-orange);
    margin: 0;
    padding: 0;
}

.event-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
}

.event-section__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.event-section__filter {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.event-section__filter-label {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-black);
}

.event-section__filter-select {
    min-width: 200px;
    padding: 10px 36px 10px 14px;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.event-section__filter-select:hover,
.event-section__filter-select:focus {
    border-color: var(--color-blue);
    outline: none;
}

.event-section__list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    max-width: var(--max-width-inner);
    margin: 0 auto;
    list-style: none;
    padding: 15px 0 0;
}

.event-section__list .events__item {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 0;
    max-width: calc(33.333% - 14px);
}

.event-section__list .events__date {
    color: var(--color-orange);
}

.event-section__list .events__item:hover {
    background: rgba(232, 92, 0, 0.06);
}

.event-section__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

.event-section__pagination-list {
    display: flex;
    gap: 10px;
    margin: 0 auto;
}

.event-section__pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    color: var(--color-black);
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 4px;
    text-decoration: none;
}

.event-section__pagination-item:hover {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
}

.event-section__pagination-item--active {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
}

/* ボランティア募集ページ */
.volunteer-section {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 40px 0 60px;
}

/* inner の max-width は共通のまま。子だけ inner 内で横幅いっぱい（align-items:center による幅潰れ防止） */
#volunteer-main .inner {
    align-items: stretch;
    box-sizing: border-box;
}

.volunteer-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    margin-bottom: 40px;
}

.volunteer-section__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.volunteer-section__title-en {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    text-align: center;
    color: var(--color-blue);
    margin: 0;
    padding: 0;
}

/* .inner が align-items: center のため、横並びカードの本文列が幅0＋overflow:hiddenで消えるのを防ぐ */
.volunteer-section .inner > .volunteer-list,
.volunteer-section .inner > .event-section__pagination,
.volunteer-section .inner > .volunteer-section__empty,
.volunteer-section .inner > .volunteer-schedule {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    box-sizing: border-box;
}

/* ボランティア募集要項 詳細ページ */
.volunteer-single-section {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 40px 0 60px;
}

.volunteer-single__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0 0 16px;
    padding: 0;
}

/* 共通：セクション見出し（h2＋英語） */
.section-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-black);
    margin: 0 0 4px;
    padding: 0;
}

.section-title-en {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    text-align: center;
    color: var(--color-blue);
    margin: 0;
    padding: 0;
}

.volunteer-single__lead {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-black);
    margin: 0 0 24px;
    padding: 0;
    text-align: center;
}

.volunteer-single__links-wrap {
    width: 100%;
    border-top: 1px solid var(--color-gray-light);
    border-bottom: 1px solid var(--color-gray-light);
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.volunteer-single__links {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}

.volunteer-single__link-item {
    flex: 0 0 auto;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-blue);
    text-decoration: none;
    padding: 16px 24px;
    white-space: nowrap;
}

.volunteer-single__link-item:hover {
    background: var(--color-blue-light);
    border-radius: var(--border-radius-button);
}

.volunteer-single__link-item.is-current {
    font-weight: 700;
    color: var(--color-black);
    pointer-events: none;
}

.volunteer-single__button-area {
    margin-top: 40px;
}

.volunteer-section__empty {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-black);
    text-align: center;
    margin: 0 0 40px;
    padding: 0;
}

.volunteer-single__list-text {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    box-sizing: border-box;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-black);
    margin: 24px 0 24px;
    padding: 0;
    text-align: center;
}

.volunteer-single__list-text + .volunteer-single__images {
    margin-top: 0;
}

.volunteer-single__content {
    margin-top: 40px;
    padding: 0;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    box-sizing: border-box;
}

.volunteer-single__images + .volunteer-single__content {
    margin-top: 28px;
}

.volunteer-single__text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0 0 24px;
    padding: 0;
}

.volunteer-single__text--large {
    font-size: 1.125rem;
}

.volunteer-single__images {
    display: flex;
    gap: 20px;
    margin: 24px auto 32px;
    padding: 0;
    width: 100%;
    max-width: 720px;
    align-self: center;
    box-sizing: border-box;
    border-radius: var(--border-radius-button);
    overflow: hidden;
    line-height: 0;
}

.volunteer-single__image {
    flex: 1;
    max-width: 50%;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

.volunteer-single__images--single .volunteer-single__image {
    max-width: 100%;
}

.volunteer-single__note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-black);
    text-align: center;
    margin: 0;
    padding: 0;
}

.volunteer-single__note-date {
    color: var(--color-orange);
    font-weight: 500;
}

.volunteer-single__flow {
    margin-top: 48px;
    padding: 32px 24px 40px;
    background: var(--color-blue-light);
    border-radius: 16px;
}

.volunteer-single__flow-header {
    margin-bottom: 24px;
}

.volunteer-single__flow-header .section-title-en {
    margin-top: 4px;
}

.volunteer-single__flow-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.volunteer-single__flow-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    background: var(--color-white);
    border-radius: var(--border-radius-button);
    padding: 20px 16px;
}

.volunteer-single__flow-num {
    flex-shrink: 0;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-blue);
    border-radius: 50%;
}

.volunteer-single__flow-body {
    flex: 1;
    min-width: 0;
    width: 100%;
    text-align: center;
}

.volunteer-single__flow-heading {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0 0 8px;
    padding: 0;
    text-align: center;
}

.volunteer-single__flow-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-black);
    margin: 0 0 8px;
    padding: 0;
    text-align: center;
}

.volunteer-single__flow-link-wrap {
    margin: 0;
    padding: 0;
}

.volunteer-single__flow-link {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-blue);
    text-decoration: underline;
}

.volunteer-single__flow-link:hover {
    text-decoration: none;
}

@media (min-width: 769px) {
    .volunteer-single__flow-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 企業・団体の皆様へページ */
.corporate-section {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 40px 0 60px;
}

.corporate-section .inner {
    align-items: stretch;
}

#corporate-section-sponsor .inner {
    padding-top: 24px;
}

#corporate-section-sponsor .corporate__block-text {
    text-align: center;
}

@media (max-width: 768px) {
    #corporate-section-sponsor .corporate__block-text {
        text-align: left;
    }
}

/* ナビ直後のセクション（sponsorshipページ）も上余白を詰める */
#sponsorship-main #sponsorship-section:first-of-type {
    padding-top: 24px;
}

#sponsorship-main #sponsorship-section:first-of-type .inner {
    padding-top: 24px;
}

.corporate__lead,
.corporate__block {
    width: 100%;
}

.corporate__lead {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-black);
    text-align: center;
    margin: 0 0 40px;
    padding: 0;
}

.corporate__block {
    margin-bottom: 48px;
}

.corporate__block:last-child {
    margin-bottom: 0;
}

.corporate-section--bg {
    background: var(--color-blue-light);
}

/* 企業・団体ページ ナビリンク（横並び） */
.corporate-section--nav {
    padding-bottom: 0;
}

.corporate-section--nav .inner {
    padding-bottom: 0;
}

.corporate__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.corporate__nav-item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    padding-right: 56px;
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--border-radius-button);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.corporate__nav-item:hover {
    border-color: var(--color-blue);
    box-shadow: 0 2px 8px rgba(1, 103, 182, 0.12);
}

.corporate__nav-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--color-blue);
}

.corporate__nav-desc {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-gray);
}

.corporate__nav-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-blue);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.875rem;
}

.corporate__block-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
}

.corporate__block-body {
    padding: 0;
}

.corporate__block-row {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.corporate__block-row .corporate__block-image-area {
    flex-shrink: 0;
    width: 40%;
    max-width: 440px;
    margin: 0;
}

.corporate__block-row .corporate__block-image {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.corporate__block-text-wrap {
    flex: 1;
    min-width: 0;
}

.corporate__block-text-wrap .corporate__block-text:last-of-type {
    margin-bottom: 0;
}

.corporate__block-button-area--center {
    display: flex;
    justify-content: center;
}

.corporate__block-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0 0 16px;
    padding: 0;
}

.corporate__block-text:last-of-type {
    margin-bottom: 12px;
}

.corporate__block-image-area {
    margin: 0 0 24px;
    padding: 0;
}

.corporate__block-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.corporate__block-button-area {
    margin: 0;
    padding: 0;
}

@media (min-width: 769px) {
    .corporate-section--bg .corporate__block-text,
    #corporate-section-contract .corporate__block-text {
        text-align: center;
    }
}

#corporate-section-sponsor .corporate__block-button-area,
.corporate-section--bg .corporate__block-button-area,
#corporate-section-contract .corporate__block-button-area {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .corporate__nav {
        flex-direction: column;
    }

    .corporate__nav-item {
        min-width: auto;
    }

    .corporate__block-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .corporate__block-row .corporate__block-image-area {
        width: 100%;
        max-width: none;
    }
}

/* 企業協賛のご案内ページ */
.sponsorship-section {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 40px 0 60px;
}

.sponsorship-section .inner {
    align-items: stretch;
}

.sponsorship-section--bg {
    background: var(--color-blue-light);
}

.sponsorship__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}

.sponsorship__body {
    width: 100%;
}

.sponsorship__text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0 0 1.5em;
    padding: 0;
}

.sponsorship__text:last-child {
    margin-bottom: 0;
}

.sponsorship__menu {
    margin: 0;
    padding: 0;
}

.sponsorship__menu-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
}

.sponsorship__menu-block {
    margin-bottom: 40px;
}

.sponsorship__menu-block:last-of-type {
    margin-bottom: 24px;
}

.sponsorship__menu-heading {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0 0 16px;
    padding: 0 0 8px;
    border-bottom: 3px solid var(--color-blue);
}

.sponsorship__menu-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0 0 16px;
    padding: 0;
}

.sponsorship__menu-note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin: 0 0 16px;
    padding: 0;
}

.sponsorship__menu-sub {
    margin-top: 20px;
}

.sponsorship__menu-sub-heading {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0 0 8px;
    padding: 0;
}

.sponsorship__menu-sub .sponsorship__menu-text {
    margin-bottom: 8px;
}

.sponsorship__menu-sub .sponsorship__menu-note {
    margin-bottom: 8px;
}

.sponsorship__menu-sub .sponsorship__menu-note:last-child {
    margin-bottom: 0;
}

.sponsorship__table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 0;
}

.sponsorship__table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    background-color: #fff;
}

.sponsorship__table th,
.sponsorship__table td {
    border: 1px solid var(--color-gray-light);
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
}

.sponsorship__table th {
    font-weight: 700;
    background: var(--color-blue);
    color: var(--color-white);
}

.sponsorship__table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.sponsorship__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sponsorship__list li {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0;
    padding: 14px 18px 14px 20px;
    background: var(--color-white);
    border-radius: var(--border-radius-button);
    border-left: 4px solid var(--color-blue);
}

.sponsorship__note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-black);
    text-align: center;
    margin: 0;
    padding: 0;
}

/* 協賛特典 */
.sponsorship__benefits-header {
    margin-bottom: 32px;
}

.sponsorship__benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sponsorship__benefits-item {
    padding: 20px;
    background: var(--color-blue-light);
    border-radius: 8px;
    border-left: 4px solid var(--color-blue);
}

.sponsorship__benefits-heading {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0 0 12px;
    padding: 0;
}

.sponsorship__benefits-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0 0 8px;
    padding: 0;
}

.sponsorship__benefits-item .sponsorship__menu-note {
    margin-bottom: 0;
}

.sponsorship__benefits-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 32px;
}

.sponsorship__benefits-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.sponsorship__benefits-table th,
.sponsorship__benefits-table td {
    border: 1px solid var(--color-gray-light);
    padding: 12px 16px;
    text-align: left;
    vertical-align: middle;
}

.sponsorship__benefits-table thead th {
    font-weight: 700;
    background: var(--color-blue);
    color: var(--color-white);
}

.sponsorship__benefits-table tbody th {
    font-weight: 700;
    background: #fff;
    color: var(--color-black);
    width: 28%;
}

.sponsorship__benefits-table tbody td {
    background: #fff;
}

.sponsorship__benefits-table .sponsorship__benefits-table-sub {
    background: var(--color-blue-light);
    font-weight: 700;
    width: auto;
}

/* 協賛申込方法 */
.sponsorship__apply-header {
    margin-bottom: 32px;
}

.sponsorship__apply-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sponsorship__apply-block {
    margin: 0;
}

.sponsorship__apply-heading {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0 0 12px;
    padding: 0 0 8px;
    border-bottom: 3px solid var(--color-blue);
}

.sponsorship__apply-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sponsorship__apply-list li {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0 0 8px;
    padding: 0;
}

.sponsorship__apply-list li:first-child {
    margin-top: 0;
}

.sponsorship__apply-list li:last-child {
    margin-bottom: 0;
}

.sponsorship__apply-list a {
    color: var(--color-blue);
    text-decoration: underline;
}

.sponsorship__apply-list a:hover {
    text-decoration: none;
}

.sponsorship__apply-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0 0 8px;
    padding: 0;
}

.sponsorship__apply-block .sponsorship__menu-note {
    margin-top: 8px;
    margin-bottom: 0;
}

/* お申し込みまでの流れ（吹き出しつながり） */
.sponsorship__flow-header {
    margin-bottom: 32px;
}

.sponsorship__flow-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.sponsorship__flow-item {
    position: relative;
    width: 100%;
    padding: 20px 24px 28px;
    background: var(--color-blue-light);
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

/* 吹き出しのしっぽ（薄い水色・下向き・中央） */
.sponsorship__flow-item::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -16px;
    width: 0;
    height: 0;
    margin-left: -18px;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 16px solid var(--color-blue-light);
    z-index: 1;
}

.sponsorship__flow-item:last-child::after {
    display: none;
}

.sponsorship__flow-item + .sponsorship__flow-item {
    margin-top: 24px;
}

.sponsorship__flow-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-blue);
    border-radius: 50%;
}

.sponsorship__flow-body {
    flex: 1;
    min-width: 0;
}

.sponsorship__flow-heading {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0 0 8px;
    padding: 0;
}

.sponsorship__flow-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

/* 協賛に関するお問い合わせ（ネイビー背景） */
.sponsorship-section--navy {
    background: var(--color-blue-dark);
}

.sponsorship__contact {
    width: 100%;
    text-align: center;
    padding: 0;
}

.sponsorship__contact-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.45;
    color: var(--color-white);
    margin: 0 0 12px;
    padding: 0;
}

.sponsorship__contact-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-white);
    margin: 0 0 24px;
    padding: 0;
}

.sponsorship__contact-button-area {
    display: flex;
    justify-content: center;
}

/* 白ボタン（ネイビー文字・太字・大きめ） */
.btn_white {
    background: var(--color-white);
}

.btn_white .btn_normal__text {
    color: var(--color-blue-dark);
    font-weight: 700;
    font-size: 1.125rem;
}

.btn_white .btn_normal__icon {
    color: var(--color-blue-dark);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn_white:hover .btn_normal__icon {
    transform: translateX(3px);
}

.btn_white::before {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-title-en {
        font-size: 0.875rem;
    }

    .sponsorship__table th,
    .sponsorship__table td {
        padding: 10px 12px;
        font-size: 0.875rem;
    }
}

.volunteer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.volunteer-card {
    display: flex;
    align-items: stretch;
    gap: 32px;
    margin: 0;
    padding: 0;
    background: var(--color-white);
    border-radius: var(--border-radius-button);
    overflow: hidden;
    border: 1px solid var(--color-gray-light);
}

.volunteer-card__image-area {
    flex-shrink: 0;
    width: 320px;
    max-width: 40%;
    overflow: hidden;
    line-height: 0;
}

.volunteer-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}

.volunteer-card__body {
    flex: 1;
    min-width: 0;
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.volunteer-card__label {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-blue);
    margin: 0;
    padding: 0;
}

.volunteer-card__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.volunteer-card__text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.volunteer-card__meta {
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.volunteer-card__meta-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.volunteer-card__meta-row dt {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-black);
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.volunteer-card__meta-row dd {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.volunteer-card__button-area {
    margin-top: auto;
    padding-top: 16px;
}

/* 募集スケジュール（予定） */
.volunteer-schedule {
    width: 100%;
    margin: 60px auto 0;
    padding-top: 48px;
}

.volunteer-schedule__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-black);
    margin: 0 0 40px;
    padding: 0;
}

/* timeline（.volunteer-schedule内のみ・他CSSとバッティング防止） */
.volunteer-schedule .timeline {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: fit-content;
    max-width: 100%;
    position: relative;
}

/* 縦線を1本でつなぐ（丸の中心に合わせる） */
.volunteer-schedule .timeline::before {
    content: '';
    position: absolute;
    left: 160px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e5e5d1;
}

.volunteer-schedule .timeline > li {
    margin-bottom: 60px;
}

.volunteer-schedule .timeline-date {
    margin: 0;
    padding: 0;
}

.volunteer-schedule .timeline-content {
    margin: 0;
    padding: 0;
}

.volunteer-schedule .timeline-content ol {
    padding-left: 0;
    list-style-position: inside;
    margin: 0 0 0.5em;
    font-size: 1.125rem;
}

.volunteer-schedule .timeline-content p {
    margin: 0;
    padding: 0;
}

.volunteer-schedule .timeline-content ol + p {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-blue);
}

/* for Desktop */
@media (min-width: 640px) {
    .volunteer-schedule .timeline > li {
        overflow: hidden;
        margin: 0;
    }

    .volunteer-schedule .timeline-date {
        width: 140px;
        float: left;
        margin-top: 20px;
        padding: 0;
    }

    .volunteer-schedule .timeline-content {
        position: relative;
        width: calc(100% - 160px);
        float: left;
        margin-left: 20px;
        margin-top: 20px;
        padding-left: 30px;
        box-sizing: border-box;
    }

    /* 丸を線の中心にぴったり重ねる（線3pxの中心に12px丸の中心を合わせる） */
    .volunteer-schedule .timeline-content::before {
        content: '';
        position: absolute;
        left: -4.5px;
        top: 8px;
        width: 12px;
        height: 12px;
        background: var(--color-blue);
        border-radius: 100%;
    }
}

.volunteer-schedule__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.volunteer-schedule__btn {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.volunteer-schedule__btn .btn_normal__text {
    font-size: 1.125rem;
}

.volunteer-schedule__pdf-link {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-size: 0.9375rem;
    color: var(--color-blue);
    text-decoration: underline;
}

.volunteer-schedule__pdf-link:hover {
    text-decoration: none;
}

/* レスポンシブ対応（新着情報ページ） */
@media (max-width: 1000px) {
    .news-section {
        padding: 30px 0;
    }

    .news-section__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-section__date-area {
        width: 100%;
    }

    .volunteer-card {
        flex-direction: column;
        gap: 0;
    }

    .volunteer-card__image-area {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 10;
    }

    .volunteer-card__body {
        padding: 20px 20px 24px;
    }

    .volunteer-schedule {
        margin-top: 48px;
        padding-top: 40px;
    }

    .volunteer-schedule__actions {
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .news-section__title {
        font-size: 1.5rem;
    }

    .news-section__title-en {
        font-size: 0.875rem;
    }

    .news-section__date {
        font-size: 1rem;
    }

    .news-section__separator {
        font-size: 1rem;
    }

    .news-section__text {
        font-size: 1rem;
    }

    .news-section__pagination-item,
    .news-section__pagination .page-numbers {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
}

/* レスポンシブ対応（イベント情報一覧ページ） */
@media (max-width: 1000px) {
    .event-section__list .events__item {
        flex: 1 1 calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .event-section {
        padding: 30px 0;
    }

    .event-section__title {
        font-size: 1.5rem;
    }

    .event-section__title-en {
        font-size: 0.875rem;
    }

    .event-section__list .events__item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .event-section__pagination-item {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .volunteer-section {
        padding: 24px 0 40px;
    }

    .volunteer-section__header {
        margin-bottom: 28px;
    }

    .volunteer-section__title {
        font-size: 1.5rem;
    }

    .volunteer-section__title-en {
        font-size: 0.875rem;
    }

    .volunteer-list {
        gap: 32px;
    }

    .volunteer-card__body {
        padding: 16px 16px 20px;
    }

    .volunteer-card__title {
        font-size: 1.125rem;
    }

    .volunteer-schedule__title {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }

    .volunteer-schedule {
        margin-top: 40px;
        padding-top: 32px;
    }

    .volunteer-schedule__btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

.procurement-single-section {
    width: 100%;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0;
}

.procurement-single__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}


.procurement-single__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.procurement-single__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.448;
    text-align: center;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.procurement-single__update {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.352;
    text-align: center;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.procurement-single__item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.procurement-single__item-label {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.448;
    text-align: left;
    color: var(--color-black);
    background: #F8F8F8;
    border-left: 3px solid var(--color-blue);
    padding: 10px 20px;
    width: 100%;
    margin: 0;
}


.procurement-single__item-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.448;
    text-align: left;
    color: var(--color-black);
    margin: 0;
    padding: 0;
    flex: 1;
    align-self: stretch;
}

.procurement-single__item-text--contact {
    font-size: 1.125rem;
    line-height: 1.778;
}

.procurement-single__info-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.procurement-single__link {
    color: var(--color-black);
    text-decoration: underline;
    transition: text-decoration 0.3s ease;
}

.procurement-single__link:hover {
    text-decoration: none;
}


.procurement-single__info-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.procurement-single__info-label {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.448;
    text-align: left;
    color: var(--color-black);
    border-bottom: 1px solid var(--color-black);
    padding-bottom: 10px;
    margin: 0;
    width: 100%;
}

.procurement-single__info-label--no-border {
    border-bottom: none;
    padding: 0;
}

.procurement-single__info-value {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2;
    text-align: left;
    color: var(--color-black);
    margin: 0;
    padding: 0;
    width: 100%;
}

.procurement-single__info-group-nested {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.procurement-single__info-value-nested {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.procurement-single__info-nested-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.procurement-single__info-nested-value--no-border {
    padding: 0 0 0 20px;
    margin: 0;
}

.procurement-single__info-nested-row--with-label {
    border-left: none;
    padding: 0;
    margin: 0;
}

.procurement-single__info-nested-row--with-label .procurement-single__info-nested-label {
    border-left: 3px solid var(--color-black);
    padding: 0 0 0 20px;
    width: 100%;
    margin: 0;
}

.procurement-single__info-nested-row--with-label .procurement-single__info-nested-value {
    padding: 0 0 0 23px;
    width: 100%;
    margin: 0;
    line-height: 2.1875;
}

.procurement-single__info-nested-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.procurement-single__info-nested-label {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.448;
    text-align: left;
    color: var(--color-black);
    flex-shrink: 0;
    width: 200px;
    padding: 0;
}

.procurement-single__info-nested-value {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.448;
    text-align: left;
    color: var(--color-black);
    flex: 1;
    padding: 0;
}

.procurement-single__info-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.448;
    text-align: left;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.procurement-single__qa-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid var(--color-black);
    margin-top: 10px;
}
.procurement-single__doc-list {
    list-style: disc;
    margin: 0;
    padding-left: 1.5em;
}

.procurement-single__doc-list li {
    margin-bottom: 0.5em;
}

.procurement-single__doc-list li:last-child {
    margin-bottom: 0;
}
.procurement-single__qa-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    border-bottom: 1px solid var(--color-black);
}
.procurement-single__qa-table--flow .procurement-single__qa-label {
    text-align: left;
}

.procurement-single__qa-row:last-child {
    border-bottom: none;
}

.procurement-single__qa-row:first-child {
    border-top: none;
}

.procurement-single__qa-label {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2;
    text-align: center;
    color: var(--color-black);
    background: #F8F8F8;
    border-right: 1px solid var(--color-black);
    padding: 10px;
    flex-shrink: 0;
    width: 200px;
}

.procurement-single__qa-value {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2;
    text-align: left;
    color: var(--color-black);
    flex: 1;
    padding: 10px 20px;
}

.procurement-single__contact-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid var(--color-black);
    margin-top: 10px;
}

.procurement-single__contact-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    border-bottom: 1px solid var(--color-black);
}

.procurement-single__contact-row:last-child {
    border-bottom: none;
}

.procurement-single__contact-row:first-child {
    border-top: none;
}

.procurement-single__contact-label {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2;
    text-align: center;
    color: var(--color-black);
    background: #F8F8F8;
    border-right: 1px solid var(--color-black);
    padding: 10px;
    flex-shrink: 0;
    width: 200px;
}

.procurement-single__contact-value {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2;
    text-align: left;
    color: var(--color-black);
    flex: 1;
    padding: 10px 20px;
}

/* レスポンシブ対応（入札情報・契約情報詳細ページ） */
@media (max-width: 768px) {
    .procurement-single__item {
        flex-direction: column;
    }

    .procurement-single__item-label {
        width: 100%;
        border-left: none;
        border-bottom: 3px solid var(--color-blue);
    }

    .procurement-single__item-content {
        padding: 15px 0;
    }

    .procurement-single__info-nested-item {
        flex-direction: column;
        border-left: none;
        padding: 0;
    }

    .procurement-single__qa-row {
        flex-direction: column;
    }

    .procurement-single__qa-label {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--color-black);
    }

    .procurement-single__contact-row {
        flex-direction: column;
    }

    .procurement-single__contact-label {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--color-black);
    }
}

.event_232_btn{
    text-decoration: none;
    display: flex;
    flex: 1 1 45%;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background-color: #2e7d32;
    transition: 0.3s ease;
    border-radius: 6px;
}
.event_232_btn:hover{
    background-color: #c5e1a5;
    color: #2e7d32;
}
