/* common */

* {
    box-sizing: border-box
}

html {
    height: -webkit-fill-available;
    font-size: 16px;
    box-sizing: border-box;
}

body {
    /* min-width: 360px; */
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
    /* 横スクロールを防ぐ */
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
    font-family: "NeueFrutigerWorld-Bold", "FP-こぶりなゴシック StdN W6", sans-serif !important;
    font-variation-settings: "wght" 600, "wdth" 95, "ital" 0;
    font-variant-east-asian: jis90;
    font-feature-settings: "palt", "liga";
    -webkit-font-smoothing: antialiased;
    line-break: strict;
    text-justify: inter-ideograph;
    word-break: normal;
    word-wrap: break-word;
    background-color: #FFFFFF;
    color: #000000;
    text-size-adjust: 100%;
    hyphens: auto;
    -webkit-font-smoothing: antialiased;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    min-height: 100%;
    height: 100%;
}

:root {
    /* タイポグラフィスケール（10段階） */
    --fs-1: clamp(4rem, 10vw, 8rem);
    /* 128px */
    --fs-2: clamp(2.67rem, 5vw, 4rem);
    /* 64px */
    --fs-3: clamp(1.78rem, 4vw, 2.67rem);
    --fs-3a: clamp(1.5rem, 4vw, 2.67rem);
    --fs-3b: clamp(1.14rem, 3.5vw, 2.67rem);
    /* 42.67px */
    --fs-4: clamp(1.5rem, 3.5vw, 2rem);
    /* 32px */
    --fs-5: clamp(1.2rem, 3vw, 1.6rem);
    /* 25.6px */
    --fs-6: clamp(1rem, 2.5vw, 1.33rem);
    /* 21.33px */
    --fs-7: clamp(0.89rem, 2vw, 1.14rem);
    /* 18.29px */
    --fs-8: clamp(0.8rem, 1.8vw, 1rem);
    /* 16px */
    --fs-9: clamp(0.72rem, 1.6vw, 0.89rem);
    /* 14.22px */
    --fs-10: clamp(0.64rem, 1.4vw, 0.8rem);
    /* 12.8px */
}

:root {
    /* 余白スケール（10段階） */
    --space-1: clamp(0.25rem, 1vw, 2rem);
    /* 4px ~ 32px */
    --space-2: clamp(0.5rem, 1.5vw, 3rem);
    /* 8px ~ 48px */
    --space-3: clamp(0.75rem, 2vw, 4rem);
    /* 12px ~ 64px */
    --space-4: clamp(1rem, 2.5vw, 5rem);
    /* 16px ~ 80px */
    --space-5: clamp(1.5rem, 3vw, 6rem);
    /* 24px ~ 96px */
    --space-6: clamp(2rem, 4vw, 8rem);
    /* 32px ~ 128px */
    --space-7: clamp(3rem, 5vw, 10rem);
    /* 48px ~ 160px */
    --space-8: clamp(4rem, 6vw, 12rem);
    /* 64px ~ 192px */
    --space-9: clamp(6rem, 8vw, 16rem);
    /* 96px ~ 256px */
    --space-10: clamp(8rem, 10vw, 20rem);
    /* 128px ~ 320px */
    --space-11: clamp(10rem, 12vw, 24rem);
    /* 160px ~ 384px */
    --space-12: clamp(12rem, 14vw, 28rem);
    /* 192px ~ 448px */
    --space-13: clamp(14rem, 16vw, 32rem);
    /* 224px ~ 512px */
    --space-14: clamp(16rem, 18vw, 36rem);
    /* 256px ~ 576px */
    --space-15: clamp(18rem, 20vw, 40rem);
    /* 288px ~ 640px */
    --space-16: clamp(20rem, 22vw, 44rem);
    /* 320px ~ 704px */
    --space-17: clamp(22rem, 24vw, 48rem);
    /* 352px ~ 768px */
    --space-18: clamp(24rem, 26vw, 52rem);
    /* 384px ~ 832px */
    --space-19: clamp(26rem, 28vw, 56rem);
    /* 416px ~ 896px */
    --space-20: clamp(28rem, 30vw, 60rem);
    /* 448px ~ 960px */
}

h1 {
    font-size: var(--fs-2);
    line-height: 1em;
    margin-bottom: 2.67rem;
    /* color: rgba(160, 160, 160); */
    color: #a0a0a0;
}

h2 {
    font-size: var(--fs-3);
    margin-bottom: 0.38em;
    line-height: 1.5;
}

h3 {
    font-size: var(--fs-3a);
    margin-bottom: var(--fs-2);
    line-height: 1.79;
    text-align: justify;
}

h4 {
    font-size: var(--fs-4);
    margin-bottom: 0.38em;
}

h5 {
    font-size: var(--fs-5);
    margin-bottom: 0.38em;
}

p,
li,
dt,
dd {
    font-size: var(--fs-6);
    margin-bottom: .25em;
}

@media (max-width: 768px) {
    dd {
        margin-bottom: 1.25em;
    }
}

/* 小さいフォントサイズ */
.small {
    font-size: var(--fs-7);
    margin-top: .5em;
    /* color: #6f6f6f; */
}

.smaller {
    font-size: var(--fs-8);
}

.smallest {
    font-size: .75em;
}

blockquote {
    margin: 4rem 0;
    padding-left: clamp(1rem, 5vw, 10rem);
}

.caption {
    display: block;
    text-align: right;
    margin-top: 1em;
    margin-right: .75em;
}

.clock {
    vertical-align: middle;
    /* line-height: .9; */
}

dl {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: .5em;
}


input,
button,
textarea,
select {
    -webkit-appearance: none;
    appearance: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
    vertical-align: bottom;
}

svg {
    color: #000000;
    /* 矢印の色を変更 */
    /* width: 1em; */
    /* テキストサイズに合わせて調整 */
    /* height: 1em; */
    vertical-align: middle;
    /* vertical-align: -0.1em; */
    /* テキストとの位置調整 */
}

/* テキストのxハイトに揃えるアイコン */
.icon-inline {
    display: inline-block;
    width: 1ex;
    height: 1ex;
    vertical-align: -0.1ex;
    margin-left: 0.075em;
}

/* ニュース欄の本文内アイコンをxハイトに厳密合わせ */
.icon-inline-news {
    display: inline-block;
    width: 1ex;
    height: 1ex;
    vertical-align: -0.12ex;
    margin-left: 0.075em;
}

.slash {
    margin-left: 0.3em;
    margin-right: 0.3em;
}

.oblique {
    font-style: oblique;
}

.opacity:hover,
.opacity:hover svg {
    color: rgba(160, 160, 160);
}

.gray {
    color: #808080;
    /* color: #a0a0a0; */
}

.profile-name-ja {
    color: #a0a0a0;
}

/* ユーティリティクラス */
.no-margin {
    margin: 0;
}

.line-height-1 {
    line-height: 1;
}

.text-right {
    text-align: right;
}

.white-space-nowrap {
    white-space: nowrap;
}

.alt-font {
    font-family: "Hiragino Sans W6", "Noto Sans JP", sans-serif;
    /* 元だけ別フォント */
    font-weight: 600;
    /* こぶりなW6と同程度 */
    font-size: 0.99em;
}

/* SVG配置用クラス */
.svg-inline {
    vertical-align: -0.125em;
    margin-left: 0.25em;
}

.svg-inline-small {
    vertical-align: -0.125em;
    margin-left: 0.075em;
}

.svg-inline-arrow {
    vertical-align: 0.075em;
    margin-left: 0.1em;
}


/* br-pc: PCでのみ改行表示 */



.br-pc-560 {
    display: inline;
}

@media (max-width: 560px) {
    .br-pc-560 {
        display: none;
    }
}

.br-pc-633 {
    display: inline;
}

@media (max-width: 633px) {
    .br-pc-633 {
        display: none;
    }
}

/* br-sp: SPでのみ改行表示 */

.br-sp-633 {
    display: none;
}

@media (max-width: 633px) {
    .br-sp-633 {
        display: inline;
    }
}

/* hero */

.hero {
    position: relative;
    z-index: 999;
    width: 100vw;
    font-weight: 650;
    display: flex;
    flex-direction: column;
    /* 縦方向に配置 */
    justify-content: center;
    /* 垂直方向の中央揃え */
    height: 960px;
    min-height: 640px;
    /* 最小高さを設定してスマホ横長画面での縮小を防ぐ */
    max-height: 100vh;
    max-height: 100dvh;
    /* ビューポートの高さを100%に設定 */
    /* background-color: #000; */
    /* 背景色（必要に応じて変更） */
    overflow: hidden;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--space-4);
    /* background-color: #000; */
    /* 背景色 */
    position: absolute;
    /* 画面上部に固定 */
    top: 0;
    /* 上部に配置 */
    width: 100%;
    /* 横幅を100%に設定 */
    max-width: 1920px;
}

.header-nav {
    display: flex;
    align-items: right;
}

.header-nav a {
    color: #000;
    /* テキスト色 */
    /* text-decoration: none; */
    margin-left: 3rem;
    /* リンク間のスペース */
}

.sp-menu {
    display: none;
    /* デフォルトで非表示 */
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}

.close-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 2rem;
    cursor: pointer;
}

/* 言語切り替えボタン */
.language-switcher {
    display: flex;
    gap: 1rem;
    align-items: center;
    /* margin-top: 1rem; */
}

/* archive */

.archive {
    padding-top: var(--space-8);
    padding-bottom: var(--space-6);
}

.archive-slider {
    position: relative;
    margin-top: var(--space-5);
}

.archive-slider-viewport {
    overflow: hidden;
    background-color: #050505;
    position: relative;
}

@media (hover: hover) and (pointer: fine) {
    .archive-slider-viewport {
        cursor: none;
    }

    .archive-slider-hit {
        cursor: none;
    }
}

.archive-slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(.7, 0, .3, 1);
    will-change: transform;
}

.archive-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.archive-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.archive-slider-hit {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    border: none;
    background: transparent;
    cursor: none;
    padding: 0;
}

.archive-slider-hit-prev {
    left: 0;
}

.archive-slider-hit-next {
    right: 0;
}

.archive-slider-cursor {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.25rem 1.25rem;
    font-size: var(--fs-7);
    /* letter-spacing: 0.5em; */
    text-transform: uppercase;
    color: #fff;
    mix-blend-mode: difference;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-999px, -999px, 0);
    transition: opacity 0.2s ease;
}

.archive-slider.is-cursor-visible .archive-slider-cursor {
    opacity: 1;
}

.archive-slider-cursor.is-prev {
    text-align: left;
}

.archive-slider-cursor.is-next {
    text-align: right;
}

.archive-slider-pagination {
    margin-top: 1rem;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: .5em;
    color: #000;
}

.archive-slider-pagination-separator {
    opacity: 0.75;
}

@media (max-width: 768px) {
    .archive-slider-pagination {
        font-size: var(--fs-9);
        letter-spacing: 0.08em;
        bottom: calc(-1 * var(--space-2));
    }
}

.archive-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(2.75rem, 4vw, 3.5rem);
    height: clamp(2.75rem, 4vw, 3.5rem);
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
}

.archive-slider:hover .archive-slider-arrow,
.archive-slider:focus-within .archive-slider-arrow {
    opacity: 1;
    pointer-events: auto;
}

.archive-slider-arrow:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.archive-slider-prev {
    left: clamp(0.75rem, 2vw, 1.75rem);
}

.archive-slider-next {
    right: clamp(0.75rem, 2vw, 1.75rem);
}

@media (max-width: 768px) {
    .archive-slider-arrow {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 480px) {

    .archive-slider {
        margin-left: calc(var(--space-4) * -1);
        margin-right: calc(var(--space-4) * -1);
    }
}

/* newsセクション内の言語切り替えボタン */
.news .language-switcher {
    justify-content: flex-end;
    margin-top: var(--space-4);
}

/* sp-link_wrapper内の言語切り替えボタン */
.sp-link_wrapper .language-switcher {
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.sp-link_wrapper .language-switcher .lang-btn {
    color: #fff !important;
    font-size: 0.75rem;
    text-transform: none !important;
    letter-spacing: 0.1em;
    /* padding: 0.25rem 0; */
}


.lang-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 0.875rem;
    cursor: pointer;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.05em;
    position: relative;
}

.lang-btn:hover {
    opacity: 0.7;
}

.lang-btn.active {
    opacity: 1;
    font-weight: 700;
}

.lang-btn:not(.active) {
    opacity: 0.5;
}

.lang-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.lang-btn.active::after {
    width: 100%;
}

/* オーバーレイメニュー内の言語切り替えボタン（画面下部固定用） */
.overlay .language-switcher:not(.sp-link_wrapper .language-switcher) {
    position: fixed;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    z-index: 1002;
    margin-top: 0;
}

.overlay .lang-btn {
    color: #fff;
    letter-spacing: 0.05em;
}

/* オーバーレイメニュー内のリンク */
.sp-link_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4) var(--space-4) var(--space-4) var(--space-4);
    padding-top: var(--space-8);
}

.sp-link_wrapper a {
    color: #fff;
    text-decoration: none;
    margin-bottom: var(--fs-3);
}

.sp-link_wrapper h4 {
    margin: 0;
    line-height: 1;
}

.sp-link_wrapper img {
    margin: 0.38em 0;
    width: 100%;
    height: var(--fs-5);
}

/* .sp-link_wrapper a[href="#bug"] {
    position: fixed;
    bottom: var(--space-4);
    left: var(--space-4);
    z-index: 1002;
    margin: 0;
} */

/* .sp-link_wrapper a[href="#top"] img {
    height: 2.5em;
    width: auto;
} */


/* ボタン共通スタイル */
.close-btn,
.sp-menu {
    background: none;
    border: none;
    cursor: pointer;
}

.close-btn {
    color: #fff;
    font-size: var(--fs-3);
}

/* ハンバーガーメニュー */
.sp-menu {
    position: fixed;
    top: var(--space-4);
    right: var(--space-4);
    z-index: 1001;
    display: flex;
    width: var(--fs-3);
    height: var(--fs-3);
    align-items: center;
    justify-content: center;
}

.menu-icon {
    position: relative;
    width: var(--fs-3);
    height: var(--fs-3);
}

.menu-icon .line {
    position: absolute;
    width: var(--fs-3);
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-icon .line-1 {
    top: 20px;
    left: 0;
}

.menu-icon .line-2 {
    top: 20px;
    left: 0;
    transform: rotate(90deg);
}

/* メニュー開閉アニメーション */
.sp-menu[aria-expanded="true"] .line-1 {
    transform: rotate(45deg);
}

.sp-menu[aria-expanded="true"] .line-2 {
    transform: rotate(135deg);
}

/* オーバーレイメニュー */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.overlay.show {
    display: flex;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

#nav-menu {
    overflow-y: auto;
}

.bg {
    display: block;
    position: relative;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-position: 55% center;
    background-size: cover;
}

/* WebP対応ブラウザではWebP画像を優先表示 */
@supports (background-image: url(../img/bg.webp)) {
    .bg {
        background-image: url(../img/bg.webp);
    }
}



.title {
    /* color: #000; */
    /* テキスト色 */
    text-align: center;
    /* テキストを中央揃え */
    /* font-size: max(23.5vw, 100%); */
    /* font-weight: 650; */
    /* ビューポートの幅に基づくフォントサイズ */
    /* width: 100%; */
    /* 横幅を100%に設定 */
    white-space: nowrap;
    /* テキストを折り返さない */
    position: absolute;
    /* 絶対位置に設定 */
    top: 21%;
    /* 縦方向の中央に配置 */
    left: var(--space-5);
    /* 横方向の中央に配置 */
    /* transform: translate(-50%, -50%); */
    /* 中央に配置するための変換 */
    box-sizing: border-box;
    /* パディングやボーダーを含めた幅の計算 */
    /* padding: var(--space-4) var(--space-4) 0; */
    /* 上下のパディングを var(--space-4) に、左右のパディングを var(--space-4) に設定 */
    z-index: 999;
    /* タイトルのz-indexを低く設定 */
    width: clamp(9rem, 24vw, 27rem);
}

.info {
    /* color: #000; */
    /* テキスト色 */
    text-align: center;
    /* テキストを中央揃え */
    /* font-size: max(23.5vw, 100%); */
    /* font-weight: 650; */
    /* ビューポートの幅に基づくフォントサイズ */
    /* width: 100%; */
    /* 横幅を100%に設定 */
    white-space: nowrap;
    /* テキストを折り返さない */
    position: absolute;
    /* 絶対位置に設定 */
    bottom: var(--space-4);
    /* 縦方向の中央に配置 */
    right: var(--space-3);
    /* width: 22vw; */
    /* 横方向の中央に配置 */
    /* transform: translate(-50%, -50%); */
    /* 中央に配置するための変換 */
    box-sizing: border-box;
    /* パディングやボーダーを含めた幅の計算 */
    /* padding: var(--space-4) var(--space-4) 0; */
    /* 上下のパディングを var(--space-4) に、左右のパディングを var(--space-4) に設定 */
    z-index: 999;
    /* タイトルのz-indexを低く設定 */
    width: clamp(9rem, 24vw, 27rem);
}

/* main */

main {
    max-width: 100%;
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    /* gap: calc((100% - 50% * 2) / 2); */
    padding: 0 var(--space-4);
    margin: auto;
    max-width: 1920px;
    min-height: calc(100dvh - 24rem);
    overflow: hidden;
}

section {
    margin-bottom: var(--space-12);
}

.section_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6) var(--space-10);
}


/* news */

.news-list {
    border-top: 1.5px solid #000;
}


.news-list-item {
    cursor: pointer;
    backface-visibility: hidden;
    border-bottom: 1.5px solid #000;
    padding: var(--fs-6) 0;
    /* line-height: 1em; */
}

/* アコーディオン */
.accordion-item {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.accordion-content:hover {
    color: rgba(160, 160, 160);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-content {
    flex: 1;
}

.accordion-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    min-width: 2px;
    min-height: 2px;
    border-radius: 2px;
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: #000;
    width: var(--fs-4);
    height: var(--fs-4);
}

.accordion-button[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.accordion-panel.active {
    max-height: 2000px;
    opacity: 1;
}

.accordion-body {
    padding: var(--fs-6) 0 0 0;
    font-size: var(--fs-7);
    line-height: 1.6;
}

/* パルスアニメーション */
.pulse-dot {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    color: #000;
    margin-right: 0.25em;
}

@keyframes pulse {
    0% {
        transform: scale(1.25);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.25);
    }
}


.news-list-item>a {
    margin-top: var(--fs-8);
}


.news-list-date {
    font-size: var(--fs-8);
    margin: 0;
}

.news-list-title {
    font-size: var(--fs-6);
    margin: 0;
}

/* ニュース内: 箇条書き直後の段落に余白を付与 */
.news .accordion-body ul+p {
    margin-top: var(--fs-6);
}

/* date */

/* tickets */

.tickets dt,
.tickets dd {
    font-size: var(--fs-5);
    margin-bottom: .25em;
}

.tickets li::marker {
    content: "・" " ";
    -webkit-font-smoothing: none;
}

.button_wrapper {
    display: flex;
    grid-column: 2 / 4;
    justify-content: space-between;
    width: 100%;
    flex-direction: column;
}

.button {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.button_inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 1cap;
    color: #ffffff;
    background-color: #000000;
    white-space: nowrap;
    vertical-align: top;
    /* background-color: #fff; */
    border-radius: .5rem;
    /* border: 2px solid #19191c; */
    margin: 0;
}

.button_inner:hover,
.button_inner:hover svg {
    /* color: #003498; */
    color: #fff;
    background-color: rgba(160, 160, 160);
}

.button-tickets {
    padding: var(--fs-3a);
}

/* venue */
.map {
    margin: var(--fs-4) 0;
}

.button-map {
    padding: var(--fs-6);
}


/* caution */
.caution p {
    border-left: 2px solid #000;
    padding-left: var(--space-4);
    margin-left: 0;
}

/* credit */

.profile-title-wrapper {
    display: flex;
    margin-bottom: 4rem;
}

h2.profile-title {
    margin: 0;
}

.profile_inner {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 8rem;
}


.profile-title-wrapper:after {
    content: "";
    display: inline-block;
    flex: 1;
    height: 1.5px;
    background: #000;
    margin: auto;
    margin-left: .3em;
}

.profile-img {
    margin-bottom: var(--fs-6);
}

/* footer */

footer {
    position: relative;
}

footer .small {
    margin: 0;
}

/* footer .opacity:hover,
footer .opacity:hover svg {
    color: #a0a0a0;
} */

.footer_inner {
    display: grid;
    grid-template-columns: repeat(3);
    gap: 2rem;
    width: 100%;
    max-width: 1920px;
    /* height: 20rem; */
    padding: var(--fs-2) var(--space-4);
    margin: auto;
    /* color: #fff; */
}

.footer_inner h1 {
    display: flex;
    flex-wrap: wrap;
    grid-column: 1 / 4;
    row-gap: .5rem;
    align-content: flex-start;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.footer-about {
    display: flex;
    flex-wrap: wrap;
    grid-column: 1 / 4;
    row-gap: .5rem;
    align-content: flex-start;
}

.footer-img {
    grid-column: 1 / 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* align-items: flex-end; */
    /* gap: 1em; */
}

.footer-img img {
    /* max-width: 200px; */
    height: auto;
}

/* デフォルト：モバイル用画像を表示、デスクトップ用画像を非表示 */
.footer-img-desktop {
    display: none;
}

.footer-caption-desktop {
    display: none !important;
}

.img-caption {
    font-size: var(--fs-8);
    line-height: 1.5;
    /* align-items: flex-end; */
    text-align: end;

    /* max-width: 2em; */
    padding-top: 1em;
}


.footer-SNS {
    flex-direction: column;
    grid-column: 1 / 1;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    text-decoration: underline;
}

.footer-lang {
    flex-direction: column;
    grid-column: 3 / 3;
    display: flex;
    flex-wrap: wrap;
    /* row-gap: .5rem; */
    align-content: flex-start;
}

.footer-copyright {
    flex-direction: column;
    grid-column: 1 / 4;
    display: flex;
    flex-wrap: wrap;
    /* row-gap: .5rem; */
    align-content: flex-start;
}

@media screen and (min-width: 480px) {

    .news-list-item a,
    .accordion-content {
        display: flex;
    }

    .news-list-date {
        width: 22%;
        font-size: var(--fs-6);
    }

    .news-list-title {
        width: 78%;
    }

}

/* スマホの横長画面での特別な処理 */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 500px;
        min-height: 500px;
        max-height: 500px;
    }
}

@media screen and (min-width: 768px) {

    dl {
        flex-direction: row;
    }

    dt {
        margin-right: .5em;
    }

    dt,
    dd {
        display: inline;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        min-height: -webkit-fill-available;
    }

}

@media screen and (min-width: 1080px) {

    .profile_inner {
        display: grid;
        grid-template-columns: 31.8rem 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }
}

@media screen and (min-width: 1280px) {

    .button_wrapper {
        display: flex;
        grid-column: 2 / 4;
        gap: 2rem;
        justify-content: space-between;
        width: 100%;
        flex-direction: row;
    }

    .footer_inner {
        grid-template-columns: repeat(4);
        /* gap: 0; */
    }

    .footer_inner h1 {
        grid-column: 1 / 2;
        row-gap: .5rem;
    }

    .footer-about {
        grid-column: 1 / 2;
        row-gap: .5rem;
        /* align-content: flex-start; */
        order: 1;
    }

    .footer-img {
        grid-column: 1 / 3;
        order: 3;
    }

    /* デスクトップ用画像を表示、モバイル用画像を非表示 */
    .footer-img-mobile {
        display: none;
    }

    .footer-img-desktop {
        display: block;
    }

    /* デスクトップ用キャプションはJSの言語切替で制御（ここで強制表示しない） */
    /* .footer-caption-desktop { display: block !important; } */

    .footer-SNS {
        grid-column: 4 / 4;
        order: 2;
        row-gap: .5rem;
        /* flex-direction: row; */
    }

    .footer-SNS a {
        margin-right: 1em
    }


    .footer-lang {
        grid-column: 4 / 4;
        order: 6;
    }

    .footer-copyright {
        grid-column: 1 / 4;
        order: 5;
    }
}

/* caption containers visibility */
.img-caption-mobile {
    display: block;
}

.img-caption-desktop {
    display: none;
}

@media screen and (min-width: 1280px) {
    .img-caption-mobile {
        display: none !important;
    }

    .img-caption-desktop {
        display: block !important;
    }
}