/*
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-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: 1512px;
    --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_green {
    background: var(--color-green-dark);
}

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

.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;
}

/* 企業・団体の皆様へセクション */
.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%;
    }


    .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,
    .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;
}

.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;
}


.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-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);
}

/* レスポンシブ対応（新着情報ページ） */
@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%;
    }
}

@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;
    }
}


.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);
    }
}

