@charset "UTF-8";

/*********************************
preset variables
*********************************/
:root {
    --fontSize: 16px;
    --linkColor: #408ccb;
    --textColor: #333;
    /* color preset */
    --mainColor: #187fc4;
    --mainColor-gradient: #0b8bee;
    --mainDarkColor: ;
    --mainLightColor: ;
    --subColor: #b03f3f;
    --subDarkColor: #842929;
    --subLightColor: rgb(252, 219, 118);
    /* width preset */
    --gutter: 1.3rem;
    --gap: 3rem;
    --spacing: 1rem;
    --contentWidth: calc(1200px + 2rem);
    /* height preset */
    --headerHeight: 49.6px;
    --mainColor-r: 243;
    --mainColor-g: 116;
    --mainColor-b: 44;
}

.centering {
    padding: 0 1rem;
}

a {
    transition: 0.3s;
}

body {
    padding-top: var(--headerHeight);
}

header {
    background: linear-gradient(to top right, var(--mainColor), var(--mainColor-gradient));
    padding: 0.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /*border-bottom: 3px solid var(--subColor);*/
    /*box-shadow: 0px 1px 6px rgb(0 0 0 / 68%);*/
}

header .header-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
}

header h1 {
    /*font-size: 1.5rem;*/
    font-size: 2.25rem;
    font-weight: 500;
    white-space: nowrap;
}

header a {
    color: #fff;
}

header .header-nav ul {
    display: flex;
    padding-left: 0;
    /*    padding-top: 0.5rem;*/
    padding-bottom: 0.2rem;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

header .header-nav ul li {
    padding-left: 1rem;
    /*font-size: 0.8rem;*/
    font-size: 16px;
    text-align: center;
}

@media only screen and (max-width: 700px) {
    :root {
        --headerHeight: 52px;
    }

    header {
        padding: 0;
    }

    header .header-inner {
        padding: 0;
        align-items: stretch;
        flex-direction: row;
    }

    header h1 {
        display: flex;
        align-items: center;
        font-size: 1.2rem;
        margin-left: 1rem;
    }

    header #toggle-nav {
        display: flex;
        width: 52px;
        height: 52px;
        color: #ffffff;
    }

    header #toggle-nav>svg {
        padding: 6px;
        width: 100%;
        height: 100%;
    }

    header .header-nav {
        width: 100%;
        height: 100vh;
        position: absolute;
        top: calc(var(--headerHeight) + 0px);
        left: 0;
        background-color: rgba(var(--mainColor-r), var(--mainColor-g), var(--mainColor-b), 0.90);
        padding: 1rem 1rem 2rem;
        transform: translateX(200%);
        transition: 0.3s;
    }

    header .header-nav.opened {
        transform: translateX(0);
    }

    header .header-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    header .header-nav ul li {
        font-size: 1rem;
    }

    header .header-nav {
        display: none;
    }

    header .header-nav.opened {
        display: block;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.3rem;
        width: 1.5rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .hamburger-menu span {
        width: 1.5rem;
        height: 0.15rem;
        background: #ffffff;
        border-radius: 10px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: center;
    }

    .hamburger-menu.opened span:nth-child(1) {
        transform: translateY(0.45rem) rotate(45deg);
    }

    .hamburger-menu.opened span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.opened span:nth-child(3) {
        transform: translateY(-0.45rem) rotate(-45deg);
    }
}

/* index.html記述 */
.kasaneru1-2 {
    position: relative;
    text-align: center;
}

.kasaneru1-2 p {
    width: 1024px;
    position: absolute;
    color: #000;
    font-size: 1.8rem;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #DDD;
    opacity: 0.7;
    /*背景を黒に*/
    padding: 1rem;
    /*文字の周りに余白*/
}

@media screen and (max-width: 768px) {
    .kasaneru1-2 p {
        font-size: 1.5rem;
        width: 100%;
    }
}

/*SP END*/

.centering-left {
    padding-left: 0px;
}

@media screen and (max-width: 768px) {
    .centering-left {
        padding-left: 1rem;
    }
}

.table-info-timeplace {
    width: 450px;
}

@media screen and (max-width: 768px) {
    .table-info-timeplace {
        width: 350px;
    }
}

@media screen and (max-width: 768px) {
    .name {
        max-width: 75%;
        width: 75%;
        margin-right: auto;
        margin-left: auto;
    }

    .access img {
        max-width: 100%;
        width: 100%;
    }
}


/* ------------------------------------------ mainvisual */
.eyecatch {
    display: block;
    position: relative;
    margin: auto;
    width: 100%;
    max-width: var(--contentWidth);
    max-width: var(--contentWidth);
}

.eyecatch img {
    width: 100%;
}

/* =========================
   Main Visual（背景：静止 or スライドショー対応）
   ========================= */
.mainvisual {
    position: relative;
    width: 100%;
    height: 50vh;
    /* 好きな高さに調整 */
    background-image: url("../img/main.jpg");
    /* フォールバック背景 */
    background-size: cover;
    /* 全体にフィット */
    background-position: center;
    /* 中央寄せ */
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
    margin-top: 0 !important;
}


/* 1299px以上で背景固定＆比率維持 */
@media (min-width: 1299px) {
    .mainvisual {
        height: 90vh;
        background-attachment: fixed;
        background-size: contain;
        /* 常に全体をカバー */
        background-position: center bottom;
        /* 中央配置 */
        background-repeat: no-repeat;
    }

    /* スライド対応時も同様に固定 */
    .mainvisual .mv-slide {
        background-attachment: fixed;
        background-size: contain;
        background-position: center bottom;
    }
}

/* 1980px以上で背景固定＆比率維持 */
@media (min-width: 1980px) {
    .mainvisual {
        height: 90vh;
    }
}




/* 背景スライド用レイヤー（JSが .mv-slide を挿入） */
.mainvisual .mv-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1000ms ease;
    /* フェード時間（JSの fade と合わせる） */
    z-index: 0;
    /* 背景に回す */
}

.mainvisual .mv-slide.is-active {
    opacity: 1;
}

/* キャッチコピー（前面に） */
.mainvisual__catch {
    position: absolute;
    top: 20%;
    left: 5%;
    max-width: 70%;
    color: #e85b11;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.5);
    z-index: 1;
    /* 背景スライドより前面 */
}

@media (max-width: 768px) {
    .mainvisual__catch {
        top: 5%;
    }
}

/* 見出し（袋文字：中オレンジ＋外白） */
.mainvisual__catch h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-style: italic;
    font-weight: bold;
    margin: 0 0 1rem;
    color: var(--textColor);
    /* 中の塗り：オレンジ */
    -webkit-text-stroke: 4px #fff;
    /* 外側の縁：白 */
    text-stroke: 4px #fff;
    -webkit-text-fill-color: var(--textColor);
    /* 塗り色を強制指定 */
    paint-order: stroke fill;
    /* 縁取りを外側に、塗りを上に */
    white-space: normal !important;
    /* 省略記号対策（テーマ干渉回避） */
    overflow: visible !important;
    text-overflow: clip !important;
}

/* 日付（袋文字：中オレンジ＋外白） */
.mainvisual__date {
    font-size: 2.2rem;
    line-height: 1.3;
    display: inline-block;
    margin-top: 0 !important;
    font-weight: bold;
    color: var(--textColor);
    /* 中の塗り：オレンジ */
    -webkit-text-stroke: 4px #fff;
    /* 外側の縁：白 */
    text-stroke: 4px #fff;
    -webkit-text-fill-color: var(--textColor);
    /* 塗り色を強制指定 */
    paint-order: stroke fill;
    /* 縁取りを外側に、塗りを上に */
}

@media (max-width: 768px) {

    .mainvisual__catch h1,
    .mainvisual__date {
        font-size: 1.3rem;
    }
}

/* 右下の三角（前面に） */
.mainvisual__triangle {
    --tri: 220px;
    /* 三角の一辺の長さ */
    --pad: 14px;
    /* 角からの余白（ロゴの逃げ） */
    position: absolute;
    bottom: -1px;
    right: 0;
    width: var(--tri);
    height: var(--tri);
    background: var(--mainColor-gradient);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    display: flex;
    align-items: flex-end;
    /* 右下寄せ */
    justify-content: flex-end;
    padding: var(--pad);
    /* 角に当たらないよう少し内側に */
    z-index: 1;
    /* 背景スライドより前面 */
}

/* ロゴの大きさ/位置微調整 */
.mainvisual__triangle img {
    width: 55%;
    /* ロゴの大きさ（%で調整） */
    height: auto;
    transform: rotate(0deg) translate(4%, 6%);
    /* 隅へ寄せる微調整 */
    transform-origin: bottom right;
    display: block;
}

/* =========================
   テキストアニメーション（タイプライター）
   ========================= */
/* タイプ中の点滅カーソル */
.type-caret {
    display: inline-block;
    border-right: 3px solid #fff;
    /* 目立つ色に変更可 */
    margin-left: 2px;
    height: 1em;
    vertical-align: -0.15em;
    animation: caret-blink 0.8s step-end infinite;
}

@keyframes caret-blink {
    50% {
        border-color: transparent;
    }
}

/* アニメ苦手設定の人にはアニメーション無効化 */
@media (prefers-reduced-motion: reduce) {
    .type-caret {
        animation: none;
        border-right: 0;
    }
}

/* 初期は非表示（JSが開始時に可視化） */
.js .tw-hide {
    visibility: hidden;
}

/* ------------------------------------------ title */
main h2 {
    background: linear-gradient(to top right,
            var(--mainColor) 0%,
            /* 1色目：左端 */
            var(--mainColor) 25%,
            /* 2色目：中央 */
            var(--mainColor-gradient) 60%
            /* 3色目：右端 */
        );
    color: #fff;
    /* font-size: 1.875rem; */
    font-size: 1.25rem;
    margin: 2rem 0;
    padding: 1rem 0;
    /* padding: 2rem 0; */
}

@media (max-width: 768px) {
    main h2 {
        background: linear-gradient(to top right,
                var(--mainColor) 0%,
                /* 1色目：左端 */
                var(--mainColor) 30%,
                /* 2色目：中央 */
                var(--mainColor-gradient) 60%
                /* 3色目：右端 */
            );
    }
}

main h3 {
    /* color: var(--mainColor); */
    color: #000;
    font-size: 1.25rem;
    font-weight: bold;
    /* font-size: 1.875rem; */
    margin: 2.5rem 0 1.25rem;
}

main h4 {
    color: var(--mainColor);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    border-left: 5px solid var(--subColor);
    padding-left: 0.75rem;
}

main h5 {
    background-color: var(--subDarkColor);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

main h6 {
    font-size: 1.1rem;
    font-weight: 500;
    padding-left: 1rem;
    border-left: 7px solid var(--subColor);
    line-height: 1;
    margin-top: 0.5rem;
}

main h6:not(:first-child) {
    margin-top: 1.5rem;
}

@media only screen and (max-width: 700px) {
    main h2 {
        font-size: 1.5rem;
        padding: 1.5rem 0;
    }

    main h3 {
        font-size: 1.5rem;
    }

    main h4 {
        font-size: 1.2rem;
    }
}

.small {
    color: var(--mainColor);
    font-size: 1.25rem;

}

.divide1-3 {
    display: flex;
    gap: 2rem;
}

.divide1-3>div:first-of-type {
    flex-basis: 20%;
}

.divide1-3>div:last-of-type {
    flex-basis: 80%;
}

/* ------------------------------------------ welcome prof */
/* 横並びレイアウト */
.committee {
    margin-top: 60px;
}

.committee .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

/* カード本体 */
.committee .card {
    flex: 1 1 250px;
    max-width: 300px;
    border: 0px solid #ddd;
    background: #fff;
    display: flex;
    flex-direction: column;
    margin: 0px 0px !important;
}

.committee .card {
    display: flex;
    flex-direction: column;
}

.committee .card__body {
    flex: 1;
    /* 本文エリアが伸縮して高さを揃える */
}

/* 画像枠 */
.committee .card__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #f6f6f6;
    line-height: 0;
    /* alt表示時の余白を防止 */
}

/* アスペクト比ボックス（4:3） */
.committee .card__media::before {
    content: "";
    display: block;
    padding-top: 75%;
    /* 画像比率に応じて変更 */
}

/* 画像をカバー表示 */
.committee .card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 本文部分 */
.committee .card__body {
    padding: 15px;
    text-align: center;
}

.committee .card__name {
    font-weight: bold;
    margin: 0 0 5px;
}

.committee .card__role {
    margin: 0 0 5px;
}

.committee .card__aff {
    margin: 0;
    color: #555;
    font-style: italic;
}

/* ------------------------------------------ Symposium history */
:root {
    --gap: 28px;
    /* カード間の余白 */
    --cap-color: #111;
    --cap-muted: #666;
    --border: #e2e2e2;
}

.history {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 16px 32px;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* PC/タブレットは2列 */
    gap: var(--gap);
}

/* 各アイテム */
.history-item {
    margin: 0;
    display: grid;
    gap: 10px;
    /* キャプションと画像の間 */
    border: 0px solid var(--border);
    padding: 10px;
    background: #fff;
}

/* キャプションは上に表示 */
.history-cap {
    margin: 0;
    color: var(--cap-color);
    line-height: 1.35;
    font-size: clamp(14px, 1.7vw, 16px);
}

.history-cap small {
    color: var(--cap-muted);
}

/* 画像は比率を保って全幅に */
.history-item img {
    width: 100%;
    height: auto;
    /* 画像の元比率を維持 */
    display: block;
    border: 0px solid var(--border);
}

/* スマホは1列に（縦並び） */
@media (max-width: 768px) {
    .history-grid {
        grid-template-columns: 1fr;
    }
}

/* 共通パーツ */
.greeting-title {
    font-weight: 700;
}

.whatsnews-wrap {
    height: 180px;
    overflow-y: scroll;
}

.title-underline {
    border-bottom: 1px solid var(--mainColor);
    padding-bottom: 15px;
    margin-bottom: 40px;
}

table {
    border-top: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    border-spacing: 0;
    width: 100%;
}

th {
    border-bottom: 1px solid #cccccc;
    padding: 0.75rem 1rem;
    font-weight: bold;
    width: 15%;
    vertical-align: middle;
}

@media (max-width: 768px) {
    th {
        width: 120px;
    }
}

th.th-sub {
    background-color: #f7f7f7;
}

td {
    border-bottom: 1px solid #cccccc;
    padding: 0.75rem 1rem;
}

table.border,
table.border th,
table.border td {
    border: 1px solid black;
}

table.cooperation {
    border-bottom: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    border-spacing: 0;
    width: 100%;
}

table.cooperation th {
    background-color: var(--mainColor);
    color: #fff;
    font-weight: 600;
}

table.cooperation tbody tr:nth-child(even) {
    background-color: #d8dfe7;
}

/* テーブル横スクロール */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* 慣性スクロール */
    border: 0px solid #e5e5e5;
    border-radius: 6px;
    padding: 8px;
}

/* テーブルが潰れないよう、必要に応じて幅に余裕を */
.table-scroll>table {
    width: max-content;
    /* コンテンツに合わせた最小幅（横スクロール前提） */
    min-width: 600px;
    /* 列数に合わせて調整、不要なら削除OK */
    border-collapse: collapse;
}

/* 文字折返しを避けたいセルに .nowrap を付けると便利 */
.nowrap {
    white-space: nowrap;
}

/* ドラッグ中の見た目（任意） */
.table-scroll.dragging {
    cursor: grabbing;
}

.scroll-hint {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin: 6px 0;
}

/* スケジュールテーブル */
#tentative-table table {
    width: 100%;
    table-layout: fixed;
    /* 均等幅にする */
    border-collapse: collapse;
    /* 枠線をスッキリ */
}

#tentative-table table th:first-child {
    width: 160px;
    /* 時間帯の列の幅を固定 */
}

/* Organizer */
.name {
    display: inline-block;
    width: 320px;
    /* 左カラムの固定幅。長い名前に合わせて調整 */
}

.affil {
    display: inline-block;
}




a.button {
    display: block;
    text-align: center;
    max-width: 450px;
    width: 100%;
    margin: 1rem auto;
    padding: 1rem;
    background-color: var(--subColor);
    color: #fff;
    border-radius: 5px;
}

a.button:hover {
    text-decoration: none;
    background-color: var(--subDarkColor);
}

.link-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.link-button a.button {
    width: auto;
    flex-basis: 30%;
}

.right {
    text-align: right;
}

.indent {
    padding-left: 2em;
}

.list-indent {
    padding-left: 3.5em;
    list-style: none;
}

ol.list-none {
    list-style: none;
}

ol.overview {
    padding-left: 0;
}

ul.link-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    list-style-type: square;
}

ul.link-list li {
    padding: 2.5px 0;
    font-size: 1.2rem;
    width: calc(100% / 3);
}

ul.link-list li a {
    color: #000000;
}

ul.dl {
    display: flex;
    margin-bottom: 3rem;
}

ul.dl li {
    padding: 2.5px 0;
    font-size: 1.2rem;
    width: calc(100% / 4);
}

#charges {
    margin-bottom: 0;
}

.charges {
    background-color: var(--subLightColor);
    padding-top: 0.2rem;
}

.charges-nav {
    color: var(--subLightColor);
}

.charges-footernav {
    background-color: var(--subLightColor);
    font-size: 1.3rem;
}

@media only screen and (max-width: 700px) {
    .divide1-3 {
        flex-direction: column-reverse;
    }

    .divide1-3>div:first-of-type {
        align-self: center;
        text-align: center;
    }

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

    .link-button a.button {
        max-width: 250px;
        width: 100%;
    }

    ul.dl {
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }

    ul.dl li {
        width: calc(100% / 2);
        font-size: 1rem;
    }

    table.cooperation {
        width: max-content;
    }

    p.small {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    ul.link-list li {
        width: 100%;
    }

}

/* ------------------------------------------ back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--mainColor, --mainColor-gradient);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    display: none;
    /* 最初は非表示 */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
}

.back-to-top:hover {
    background-color: var(--mainColor-gradient);
}

.fa-adjust {
    position: relative;
    bottom: 2px;
}

/* ------------------------------------------ footer */
footer {
    border-top: solid 0px #cccccc;
    margin-top: 5rem;
    background: linear-gradient(to top right, var(--mainColor), var(--mainColor-gradient));
    color: #fff;
}

.footer-inner {
    display: flex;
    padding: 3rem 1rem;
    justify-content: space-around;
}

.footer-inner>* {
    width: 50%;
}

.footer-meta {
    padding-right: 2rem;
}

.footer-title a {
    color: #fff;
}

.footer-title-h2 {
    font-size: 1.75rem !important;
}

.footer-title span {
    font-size: 0.8rem;
}

.footer-menu {
    padding: 0 2rem;
}

.footer-menu ul {
    display: flex;
    list-style-type: square;
}

.footer-menu ul>div:last-child {
    margin-left: 2rem;
}

.footer-menu ul li {
    width: 250px;
    padding: 0.5rem 0;
    list-style: none;
}

/* .footer-menu ul li::before {
    content: '';
    display: inline-block;
    width: .4em;
    height: .4em;
    margin-right: .5em;
    vertical-align: .2em;
    background: #000;
} */

.footer-menu ul li a {
    color: #fff;
}

.browser_guide {
    border: solid 1px #000000;
    width: max-content;
}

.browser_guide>div {
    display: flex;
}

.browser_guide>div>p {
    width: 200px;
}

.browser_guide>div:first-child {
    border-bottom: solid 1px #000000;
}

.browser_guide>div>div {
    border-left: solid 1px #000000;
}

.browser_guide>div>div>p:first-child {
    border-bottom: solid 1px #000000;
}

.browser_guide p {
    padding: 0.5rem;
    margin-bottom: 0;
}

ol.donation-abstract li+li {
    margin-top: 1rem;
}

@media only screen and (max-width: 700px) {
    .sp-hide {
        visibility: hidden;
        opacity: 0
    }

    .sp-visible {
        visibility: visible;
        opacity: 1
    }

    .sp-none {
        display: none !important
    }

    .rdx-btn {
        display: block
    }

    .footer-inner {
        flex-direction: column-reverse;
        align-items: center;
        padding: 1rem;
    }

    .footer-inner>* {
        width: 100%;
    }

    .footer-menu {
        padding: 0;
        margin-bottom: 2rem;
    }

    .footer-menu ul {
        justify-content: space-around;
    }

    .footer-menu ul li {
        width: auto;
    }

}

/*************************************
* END only for sp START only for pc
*************************************/
@media print,
screen and (min-width: 700px) {
    .pc-hide {
        visibility: hidden;
        opacity: 0
    }

    .pc-visible {
        visibility: visible;
        opacity: 1
    }

    .pc-none {
        display: none !important
    }

}

.welcome-message {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.welcome-message img {
    max-width: 200px;
    object-fit: contain;
}

@media only screen and (max-width: 700px) {
    .welcome-message {
        display: block;
    }

    .welcome-message img {
        max-width: 75%;
        width: 75%;
        margin: 0 auto;
    }

    .topics dl dd,
    .Presentation dl dd {
        flex-basis: 90%;
    }
}

.chairman {
    text-align: right;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    width: 1.5rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-menu span {
    width: 1.5rem;
    height: 0.15rem;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: center;
}

.hamburger-menu.opened span:nth-child(1) {
    transform: translateY(0.45rem) rotate(45deg);
}

.hamburger-menu.opened span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.opened span:nth-child(3) {
    transform: translateY(-0.45rem) rotate(-45deg);
}

#global-nav.opened {
    transform: translateX(0);
}


/* venue */
.img-flex {
    display: flex;
    justify-content: space-around;
}

.img-flex img {}

@media only screen and (max-width: 1000px) {
    .img-flex {
        flex-direction: column;
    }

    .img-flex img {
        width: 100%;
    }

    .img-flex img:nth-child(2) {
        margin-top: 1rem;
    }
}


/* -------------------------- 改行調整 */
.bpts_br_sp_no {
    display: block;
}

@media only screen and (max-width: 700px) {
    .bpts_br_sp_no {
        display: none;
    }
}

.bpts_br_pc_no {
    display: none;
}

@media only screen and (max-width: 700px) {
    .bpts_br_pc_no {
        display: block;
    }
}


/* -------------------------- scroll bar */
/* 全体のスクロールバー */
::-webkit-scrollbar {
    width: 10px;
    /* 横スクロール時は height */
}

/* スクロールの背景 */
::-webkit-scrollbar-track {
    background: #f0f0f0;
    /* トラック色 */
}

/* スクロールバー本体 */
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--mainColor), var(--mainColor-gradient));
    /* つまみ色 */
    border-radius: 5px;
}

/* ホバーしたとき */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--mainColor), var(--mainColor-gradient));
    /* 濃い色 */
}