@charset "UTF-8";
@import url("style_menu.css");

/* ==========================================================================
   1. ベース設定 & リセット
   ========================================================================== */
body {
    position: relative;
    color: #231815;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

body.no-scroll {
    overflow: hidden;
}

img {
    width: 100%;
    height: auto;
}

main {
    padding: 0;
    flex: 1;
}


/* PCにおけるtelリンクの無効化 */
a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

.link-area {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #231815;
}

/* ==========================================================================
   2. アクセシビリティ & ユーティリティ
   ========================================================================== */
/* スクリーンリーダー用（視覚的に隠す） */
.visually-hidden,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* スキップリンク（キーボード操作用） */
.skip-link {
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 1000;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* --- 表示切り替えユーティリティ --- */
.sp-only {
    display: none !important;
}

.brsp,
.brtab {
    display: none;
}

/* タブレット & スマホ (< 768px) */
@media screen and (max-width: 768px) {
    .brtab {
        display: block;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block !important;
    }
}

/* スマホ (< 600px) */
@media screen and (max-width: 600px) {
    .brpc {
        display: none;
    }

    .brsp {
        display: block;
    }
}

/* 小さなスマホ (< 480px) */
@media screen and (max-width: 480px) {
    .br-pc-tab {
        display: none;
    }
}

/* ==========================================================================
   3. アニメーション & ホバーエフェクト
   ========================================================================== */
/* フェードイン */
.fin {
    opacity: 0;
    transform: translate(0, 10px);
    transition-property: all;
    transition-duration: 1.4s;
}

.fin.sin {
    opacity: 1;
    transform: translate(0, 0);
}

/* ホバー時の画像拡大 */
.scale-image .bg {
    position: relative;
    overflow: hidden;
}

.scale-image .bg img {
    opacity: 1;
    transform: scale(1);
    transition: all .8s;
}

@media (hover: hover) {
    .scale-image:hover .bg img {
        opacity: 0.9;
        transform: scale(1.08);
    }
}


/* ==========================================================================
   4. ヘッダー
   ========================================================================== */
header {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1002;
    width: calc(100% - 32px);
    height: 72px;
}

.header-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #FFF;
    box-shadow: 0px 0px 8px rgba(0, 98, 177, 0.25);
}

.header-content .header-logo {
    position: absolute;
    width: 420px;
    padding: 20px 20px 0;
    display: flex;
    align-items: center;
}

/* ヘッダーロゴスタイル */
header .header-logo .logo {
    position: relative;
    display: inline-block;
    width: 160px;
}

header .header-logo h1 {
    position: absolute;
    left: 198px;
    top: 30px;
    display: inline-block;
    font-size: 14px;
    font-family: var(--en-font);
    font-weight: 600;
    line-height: 1em;
    white-space: nowrap;
}

.header-content .header-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1000px) {
    .header-content .header-logo {
        position: absolute;
        width: 320px;
        padding: 24px 20px 0;
        display: flex;
        align-items: center;
    }

    /* ヘッダーロゴスタイル */
    header .header-logo .logo {
        position: relative;
        display: inline-block;
        width: 120px;
    }

    header .header-logo h1 {
        position: absolute;
        left: 158px;
        top: 30px;
        display: inline-block;
        font-size: 13px;
        font-family: var(--en-font);
        font-weight: 600;
        line-height: 1em;
        white-space: nowrap;
    }

    .header-content .header-logo a {
        display: block;
        width: 100%;
        height: 100%;
    }
}


/* ヘッダーのSP調整 */
@media screen and (max-width: 768px) {
    header {
        top: 0;
        left: 0;
        z-index: 1001;
        width: 100%;
        height: 40px;
        box-sizing: border-box;
    }

    .header-content .header-logo {
        width: 180px;
        padding: 10px 0 0 5px;
    }

    header .header-logo .logo {
        width: 80px;
    }

    header .header-logo h1 {
        top: 11px;
        left: 90px;
        font-size: 0.6rem;
    }

    header .header-logo h1 span {
        display: none;
    }
}

/* ==========================================================================
   5. フッター
   ========================================================================== */
footer {
    background: #F2F6F6;
    width: 100%;
    padding: 0 16px 16px;
    z-index: 2;
}

footer .footer-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: #FFF;
    box-shadow: 0px 0px 8px rgba(0, 98, 177, 0.25);
    z-index: 3;
}

.copyright {
    font-family: var(--en-font);
    font-size: min(1vw, 1.1rem);
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 0.05em;
}

.footer-links {
    position: absolute;
    right: 1%;
    bottom: 10px;
    display: inline-block;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-links ul li {
    position: relative;
    padding: 0 12px;
}

.footer-links ul li:nth-child(-n + 2)::after {
    content: "";
    position: absolute;
    top: 55%;
    right: 0;
    width: 1px;
    height: 12px;
    background: #0F846E;
    transform: translateY(-50%);
}

.footer-links ul li a {
    color: #0F846E;
    font-size: 12px;
    text-decoration: none;
}

@media (hover: hover) {
    .footer-links ul li a:hover {
        text-decoration: underline;
    }
}

/* フッターのSP調整 */
@media screen and (max-width: 768px) {
    footer {
        background: #F2F6F6;
        width: 100%;
        padding: 0 8px 8px;
        z-index: 2;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        padding: 20px 15px 20px 3%;
    }

    .copyright {
        position: relative;
        order: 2;
        width: 100%;
        text-align: center;
        font-size: min(2vw, 0.8rem);
    }

    .footer-links {
        position: relative;
        right: auto;
        bottom: 0;
        order: 1;
        display: inline-block;
        max-width: 400px;
        margin: 0 auto 10px;
    }

    .footer-links ul {
        justify-content: center;

    }

    .footer-links ul li {
        width: 100%;
        text-align: center;
        padding-bottom: 0;
        margin-bottom: 2px;
        line-height: 1.6em;
    }

    .footer-links ul li::after {
        display: none;
    }
}

/* トップへ戻るボタン */
.pagetop {
    all: unset;
    cursor: pointer;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 5;
    width: 64px;
    height: 64px;
    background: url("../img/common_img/totop.svg") no-repeat center center;
    background-size: contain;
    transition: all .3s;
}


@media screen and (max-width: 768px) {
    .pagetop {
        right: 8px;
        bottom: 8px;
        width: 34px;
        height: 34px;
        border: solid 1px #000;
    }
}

/* ==========================================================================
   6. レイアウト共通 (ラッパー、装飾線、ボタン)
   ========================================================================== */
.content-wrap {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
}

.content {
    position: relative;
}

/* 見出し & 装飾 */
.line-top {
    position: relative;
    padding-top: 20px;
    margin-bottom: 30px;
    font-size: min(5vw, 1.2rem);
    font-weight: 500;
    line-height: 1.6em;
    text-align: center;
    color: var(--main-color);
}

.line-top:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 4px;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    transform: translateX(-50%);
}

.line-side {
    position: relative;
    margin-bottom: 30px;
}

.line-side span {
    font-size: min(4vw, 1.5rem);
    font-weight: 500;
    padding: 2px 15px 2px 23px;
    color: #FFF;
    background: #000;
    position: relative;
}

.line-side span::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
}

@media screen and (max-width: 768px) {
    .line-side {
        margin-bottom: 15px;
    }

    .line-side span {
        font-size: min(3.8vw, 1.1rem);
        padding: 2px 12px 3px 20px;
        color: #FFF;
        background: #000;
        position: relative;
    }
}

.box-line {
    position: relative;
    margin-bottom: 20px;
}

.box-line span {
    display: inline-block;
    background: var(--main-color);
    padding: 0 10px;
    font-weight: 500;
    color: #FFF;
    font-size: min(3.5vw, 1.3rem);
}

.box-line::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--main-color);
    left: 0;
    top: 50%;
    z-index: -1;
}

.dotted-text {
    text-align: center;
}

.dotted-text span {
    display: inline;
    background-image: radial-gradient(circle, #000 40%, transparent 41%);
    background-size: 8px 4px;
    background-position: bottom left;
    background-repeat: repeat-x;
    padding-bottom: 6px;
    line-height: 2em;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

@media screen and (max-width: 768px) {
    .dotted-text span {
        font-size: 15px;
        background-image: radial-gradient(circle, #000 40%, transparent 41%);
        background-size: 5px 3px;
    }
}

/* ==========================================================================
   7. ページ固有コンポーネント
   ========================================================================== */


/* ページヘッダー */
.page-title {
    height: 210px;
    padding: 120px 0 0;
    background: #F2F6F6;
    position: relative;
}

.page-title p {
    position: relative;
    padding-bottom: 5px;
    color: var(--main-color);
    font-size: min(3.3vw, 1rem);
    font-weight: 500;
    line-height: 1.6em;
    text-align: center;
}

.page-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 160px;
    height: 4px;
    background: linear-gradient(90deg, #4BBE8D 0%, #076480 100%);
    transform: translateX(-50%);
}

.page-title h1 {
    position: relative;
    font-size: min(3vw, 1.4rem);
    font-weight: 500;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .page-title {
        height: 110px;
        padding: 50px 0 0;
        background: #F2F6F6;
        position: relative;
    }

    .page-title p {
        position: relative;
        padding-bottom: 1px;
        color: var(--main-color);
        font-size: min(3vw, 0.7rem);
        font-weight: 500;
        line-height: 1.6em;
        text-align: center;
    }

    .page-title:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #4BBE8D 0%, #076480 100%);
        transform: translateX(-50%);
    }

    .page-title h1 {
        position: relative;
        font-size: min(3.6vw, 1.1rem);
        font-weight: 500;
        text-align: center;
    }
}

/* ==========================================================================
   8. 横スクロールコンテナ
   ========================================================================== */
.scroll-box,
.scroll-box-wide {
    position: relative;
    margin-bottom: 30px;
}

/* スクロールヒントテキスト */
.scroll-box:before,
.scroll-box-wide:before {
    content: "横スクロールできます";
    position: absolute;
    left: 50%;
    bottom: 5px;
    z-index: 2;
    display: none;
    /* PCでは初期非表示 */
    padding: 3px 12px;
    background: rgba(0, 0, 0, 0.2);
    color: #FFF;
    font-size: 11px;
    line-height: 1.6em;
    white-space: nowrap;
    opacity: 1;
    transition: all .5s;
    transform: translate(-50%, 0);
}

.scroll-box.on:before,
.scroll-box-wide.on:before {
    opacity: 0;
}

/* レスポンシブスクロールの挙動 */
@media screen and (max-width: 1100px) {
    .scroll-box-wide {
        overflow-x: auto;
        padding-bottom: 40px;
        -webkit-overflow-scrolling: touch;
    }

    .scroll-box-wide:before {
        display: block;
    }

    .scroll-box-wide>div {
        min-width: 1120px;
    }

    .scroll-box-wide::-webkit-scrollbar {
        height: 6px;
    }

    .scroll-box-wide::-webkit-scrollbar-track {
        background: #eee;
        border-radius: 3px;
    }

    .scroll-box-wide::-webkit-scrollbar-thumb {
        border: none;
        border-radius: 3px;
        background: #E2E2E2;
    }
}

@media screen and (max-width: 768px) {
    .scroll-box-wide {
        padding-bottom: 0;
    }

    .scroll-box-wide>div {
        min-width: 900px;
    }
}

@media screen and (max-width: 500px) {
    .scroll-box {
        overflow-x: auto;
        padding-bottom: 40px;
        -webkit-overflow-scrolling: touch;
    }

    .scroll-box:before {
        display: block;
    }

    .scroll-box>div {
        min-width: 600px;
    }

    .scroll-box::-webkit-scrollbar {
        height: 6px;
    }

    .scroll-box::-webkit-scrollbar-track {
        background: #eee;
        border-radius: 3px;
    }

    .scroll-box::-webkit-scrollbar-thumb {
        border: none;
        border-radius: 3px;
        background: #E2E2E2;
    }
}

/* ==========================================================================
   9. モーダル / ダイアログ
   ========================================================================== */


.modal-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 2.5%;
    margin: 30px auto 50px;
}

.modal-buttons li {
    width: 31.33%;
    padding: 30px 10px 20px;
    background: #F2F6F6;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    transition: all .4s;
    position: relative;
}

.modal-buttons li:after {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../img/common_img/modal-zoom-icon.svg');
    width: 24px;
    height: 24px;
    right: 0;
    bottom: 0;
}

.modal-buttons li .case-ttl span {
    display: inline-block;
    background: #000;
    padding: 0 10px;
    color: #FFF;
    position: relative;
    margin-bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.modal-buttons li .ttl {
    text-align: center;
}

.modal-buttons li .detail {
    text-align: center;
    font-size: 80%;
    color: var(--main-color);
}

@media (hover: hover) {
    .modal-buttons li:hover {
        box-shadow: 0 0 2px 0 rgba(10, 98, 101, 0.45);
    }
}

@media screen and (max-width: 768px) {
    .modal-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        margin: 30px auto 50px;
    }

    .modal-buttons li {
        width: 100%;
        padding: 20px 10px 20px;
        margin-bottom: 10px;
    }
}

.trigger-btn {
    cursor: pointer;
}

dialog {
    width: 90%;
    max-width: 1120px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.97);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        display 0.4s ease allow-discrete,
        overlay 0.4s ease allow-discrete;
    margin: auto;
    inset: 0;
}

.dialog-frame {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    max-height: 80vh;
    overflow-y: scroll;
    position: relative;
}

.dialog-inner {
    flex: 1 1 auto;
    padding: 40px;
    height: auto;
    overflow-y: auto;
    overscroll-behavior-y: contain;
}

.dialog-inner .scroll-box {
    width: 85%;
    margin: 0 auto;
}

.dialog-inner .line-side span {
    font-size: min(2vw, 1.3rem);
}

@media screen and (max-width: 768px) {
    .dialog-inner {
        padding: 20px;
    }

    .dialog-inner .scroll-box {
        width: 100%;
        margin: 0 auto;
    }

    .dialog-inner .line-side span {
        font-size: min(4vw, 1rem);
        display: block;
        line-height: 1.4em;
    }
}

dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: display 0.4s allow-discrete, overlay 0.4s allow-discrete, opacity 0.4s ease;
}

/* オープン状態 */
dialog[open] {
    display: block;
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
}

dialog[open]::backdrop {
    opacity: 1;
}

@starting-style {
    dialog[open] {
        opacity: 0;
        transform: scale(0.97);
    }

    dialog[open]::backdrop {
        opacity: 0;
    }
}

dialog:not([open]) {
    display: none;
}

dialog+.backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

._dialog_overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
}

dialog.is-swapping,
dialog.is-swapping::backdrop {
    transition: none !important;
    animation: none !important;
}

dialog[open].is-swapping {
    opacity: 1 !important;
    transform: translateY(0) !important;
}



/* 閉じるボタン */

.fixed-close-btn {
    position: absolute;
    bottom: -35px;
    right: 0;
    z-index: 10;
    color: #FFF;
    font-size: 20px;
    font-family: var(--en-font);
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
}

/* モーダル & リンクのSP調整 */
@media screen and (max-width: 768px) {
    .btn-close {
        padding-right: 25px;
        font-size: 14px;
    }
}

@media (hover: hover) {
    .dialog-bottom-links ul li:hover {
        box-shadow: 0px 0px 2px rgba(0, 98, 177, 0.25);
    }
}

dialog a:focus,
dialog button:focus,
dialog .js-close:focus {
    outline: none;
}

dialog a,
dialog button,
dialog .js-close {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}



/* === インフォメーション === */

.info-btn {
    position: relative;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    margin-bottom: 15px;
    transition: all .4s;
}

.top-link-list li a {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.top-link-list li a p {
    font-size: min(1.5vw, 1rem);
    line-height: 1.6em;
    padding: 15px 0;
}

.top-recommend ul li a p span,
.top-link-list li a p span,
.top-link-list-sub li a p span,
.info-btn a p span {
    color: var(--main-color);
    display: block;
    font-size: 80%;
}

/* 矢印アイコン共通 */
.top-recommend ul li::before,
.top-link-list li a::before,
.info-btn a::before {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 10px;
    height: 10px;
    background: url(../img/common_img/arrow-green.svg) no-repeat center/contain;
    z-index: 2;
}

.info-menu {
    padding: 0 0 80px;
    background: #F2F6F6;
    position: relative;
    z-index: 3;
}

.info-menu-block01 .info-btn {
    max-width: 540px;
    margin: 50px auto 0;
}

.info-menu-block01 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px auto 30px;
    gap: 0 .5%;
}

.info-menu-block01 ul li {
    width: 19%;
    background: #2986B2;
    margin-bottom: .51%;
    position: relative;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    transition: .4s;
}

.info-menu-block01 ul li:last-child {
    background: #3D8D71;
}

.info-menu-block01 ul li a p {
    font-size: min(1.1vw, 0.79rem);
    padding: 2px 3px 2px 8px;
    color: #FFF;
}

.info-menu-block01 ul li::before {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 10px;
    height: 10px;
    background: url(../img/common_img/arrow-white.svg) no-repeat center/contain;
}

.info-menu-block02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 2%;
}

.info-menu-block02 .info-btn {
    width: 31.33%;
}

.info-btn a {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-btn a p {
    font-size: min(1.5vw, 1rem);
    line-height: 1.6em;
    padding: 15px 0;
    text-align: center;
}



@media screen and (max-width: 768px) {
    .info-menu {
        padding-bottom: 50px;
    }

    .info-menu-block01 ul {
        margin: 2% auto 20px;
        gap: 1%;
    }

    .info-menu-block01 ul li {
        width: 49%;
        margin-bottom: 1%;
    }

    .info-menu-block01 ul li a p {
        font-size: min(2.7vw, 0.9rem);
    }

    .info-menu-block02 .info-btn {
        width: 100%;
    }

    .info-btn a p {
        font-size: min(3.2vw, 1rem);
        padding: 10px 0;
    }

    .info-btn a::before,
    .info-menu-block01 ul li::before {
        bottom: 5px;
        right: 5px;
    }
}

@media (hover: hover) {

    .info-menu-block01 .info-btn:hover,
    .info-menu-block01 ul li:hover,
    .info-menu-block02 .info-btn:hover {
        box-shadow: 0 0 2px 0 rgba(10, 98, 101, 0.45);
    }
}

.related-btns {
    background: #F2F6F6;
    padding: 60px 0;
    margin-top: 80px;
}

.related-btns .content-wrap>.title {
    text-align: center;
    color: var(--main-color);
    font-size: min(4vw, 1.2rem);
    top: -30px;
    margin-bottom: -30px;
    position: relative;
}

.related-btns .content-wrap>.title::before {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    width: 80px;
    height: 4px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.related-btns ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 2%;
    margin: 20px auto 0;
}

.related-btns ul li {
    width: 23%;
    height: 120px;
    padding: 0 5px;
    position: relative;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    transition: all .4s;
}

.related-btns ul li a {
    text-align: center;
    text-decoration: none;
    color: #231815;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-btns ul li a p {
    font-size: min(1.5vw, 1rem);
    line-height: 1.6em;
}

.related-btns ul li a p span {
    display: block;
    font-size: min(1vw, 0.7rem);
    color: var(--main-color);
}

.related-btns ul li:before {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 10px;
    height: 10px;
    background-image: url(../img/common_img/arrow-green.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .related-btns .content-wrap>.title {
        font-size: min(4.4vw, 1.1rem);
        top: -30px;
        margin-bottom: -10px;
        position: relative;
    }

    .related-btns ul {
        max-width: 300px;
        margin: 0 auto;
    }

    .related-btns ul li {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .related-btns ul li a p {
        padding: 10px 0;
        font-size: min(3.6vw, 1rem);
    }

    .related-btns ul li a p span {
        font-size: min(3vw, 0.8rem);
    }
}



@media (hover: hover) {
    .related-btns ul li:hover {
        box-shadow: 0 0 2px 0 rgba(10, 98, 101, 0.45);
    }
}




/* --- 共通設定（PC・基本スタイル） --- */
:root {
    /* PC時のヘッダー高さ */
    --header-h: 110px;
}

/* メニューエリア基本 */
.nav-placeholder {
    width: 100%;
    padding: 0 0;
}



/* --- コンテンツ --- */
section.inner-section {
    padding-top: calc(var(--header-h) - 30px);
}


@media screen and (max-width: 768px) {
    section.inner-section {
        padding-top: calc(var(--header-h));
    }

}


.wipe {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 2.0s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    display: inline-block;
    white-space: nowrap;
}

.wipe.is-visible {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
}




/* --- タブコンテンツ --- */
.tab-wrap {
    margin: 40px auto 0;
}

.tab-nav {
    display: flex;
    width: 100%;
    padding: 0 10%;
    border-bottom: solid 1px #000;
    height: 60px;
    align-items: flex-end;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    opacity: 0.8;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-color: #000;
}

.tab-btn:hover {
    opacity: 1;
}

.tab-btn.active {
    height: 60px;
    opacity: 1;
    cursor: default;
    background: linear-gradient(to right, #43cea2, #185a9d);
}

.tab-content {
    padding: 40px 0;
    min-height: 200px;
    background: #fff;
}

.content-panel {
    display: none;
}

.content-panel.active {
    display: block;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .tab-wrap {
        margin: 20px auto 0;
    }

    .tab-nav {
        display: flex;
        width: 100%;
        padding: 0 10%;
        border-bottom: solid 1px #000;
        height: 40px;
        align-items: flex-end;
    }

    .tab-btn {
        flex: 1;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        text-decoration: none;
        cursor: pointer;
        transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
        opacity: 0.8;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

    .tab-btn:hover {
        opacity: 1;
    }

    .tab-btn.active {
        height: 40px;
        opacity: 1;
        cursor: default;
    }

    .tab-content {
        padding: 30px 0;
        min-height: 200px;
        background: #fff;
    }
}


.dot-list {
    position: relative;
}

.dot-list li {
    position: relative;
    padding-left: 15px;
    line-height: 1.6em;
    padding-bottom: 5px;
}

.dot-list li:before {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--main-color);
    width: 8px;
    height: 8px;
    left: 0;
    top: 0.6em;
}


.outline {
    width: 100%;
}

.outline>tbody {
    width: 100%;
    border-collapse: collapse;
}

.outline>tbody>tr>th,
.outline>tbody>tr>td {
    padding: 20px 15px;
    text-align: left;
    vertical-align: top;
}

.outline>tbody>tr>th {
    width: 23%;
    font-weight: 500;
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
}

.outline>tbody>tr>td {
    width: 77%;
    border-bottom: solid 1px #A8C0C6;
}

.outline>tbody>tr>td p {
    margin: 0 0 10px 0;
}

.outline>tbody>tr>td p:last-child {
    margin-bottom: 0;
}

.note {
    font-size: 0.9em;
}

.outline>tbody>tr>td a {
    color: var(--main-color);
}

.outline>tbody>tr>td a:hover {
    text-decoration: underline;
}

.outline>tbody>tr>td .orange {
    color: #E57345;
}

.outline>tbody>tr>td .small {
    display: block;
    font-size: 11px;
    line-height: 1.5em;
    padding: 5px 0 0;
}

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

    .outline,
    .outline>tbody,
    .outline>tbody>tr,
    .outline>tbody>tr>th,
    .outline>tbody>tr>td {
        display: block;
        width: 100%;
    }

    .outline>tbody>tr>th {
        border-bottom: none;
        padding: 15px 2% 0 3%;
    }

    .outline>tbody>tr:first-child>th {
        padding-top: 0;
    }

    .outline>tbody>tr>td {
        padding: 0 2% 15px 2%;
    }
}



.gmenuBoxWrap .info-menu {
    padding: 0 0;
    background: none;
    position: relative;
    z-index: 3;
    width: 100%;
}

.gmenuBoxWrap .info-menu-ttl {
    padding: 20px 0 0;
}

.gmenuBoxWrap .info-menu-block01 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding-top: 10px;
    gap: 0 .5%;

}

.gmenuBoxWrap .info-menu-block01 ul li {
    width: 19%;
    background: #2986B2;
    margin-bottom: .51%;
    position: relative;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    transition: .4s;
}

.gmenuBoxWrap .info-menu-block01 ul li:last-child {
    background: #3D8D71;
}

.gmenuBoxWrap .info-menu-block01 ul li a {
    text-align: left !important;
}

.gmenuBoxWrap .info-menu-block01 ul li a p {
    font-size: min(1.1vw, 0.79rem);
    padding: 2px 3px 2px 8px;
    color: #FFF;
    text-align: left !important;
}

.gmenuBoxWrap .info-menu-block01 ul li::before {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 10px;
    height: 10px;
    background: url(../img/common_img/arrow-white.svg) no-repeat center/contain;
}

.gmenuBoxWrap .info-menu-block01 ul li::after {
    display: none;
}



@media screen and (max-width: 768px) {
    .info-menu {
        padding-bottom: 50px;
    }

    .gmenuBoxWrap .info-menu-block01 ul {
        margin: 2% auto 20px;
        gap: 1%;
    }

    .gmenuBoxWrap .info-menu-block01 ul li {
        width: 49%;
        margin-bottom: 1%;
    }

    .gmenuBoxWrap .info-menu-block01 ul li a p {
        font-size: min(2.7vw, 0.9rem);
    }

    .gmenuBoxWrap .info-menu-block01 ul li::before {
        bottom: 5px;
        right: 5px;
    }
}


.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

dialog.vimeo-modal {
    width: 90%;
    max-width: 1000px;
    padding: 0;
    border: none;
}

dialog.vimeo-modal .dialog-inner {
    padding: 0;
}

.vimeo-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2%;
}

.vimeo-links-item {
    box-sizing: border-box;
    width: calc((100% - 6%) / 4);
    margin-bottom: 4%;
    position: relative;
}

.vimeo-links-item .bg:before {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../img/common_img/play-icon.png');
    width: 50px;
    height: 50px;
    bottom: 10px;
    right: 10px;
    z-index: 3;
}

.vimeo-links-item p {
    font-size: 1.1rem;
    padding: 5px 0 0;
    display: flex;
    align-items: center;
}

.vimeo-links-item p span {
    color: var(--main-color);
    font-family: var(--en-font);
    font-size: 15px;
    font-weight: 600;
    padding-left: 15px;
}

@media screen and (max-width: 1023px) {
    .vimeo-links-item {
        box-sizing: border-box;
        width: calc((100% - 4%) / 3);
        margin-bottom: 4%;
    }
}

@media screen and (max-width: 768px) {
    .vimeo-links-item {
        box-sizing: border-box;
        width: calc((100% - 2%) / 2);
        margin-bottom: 3%;
    }

    .vimeo-links-item p {
        font-size: 0.8rem;
        padding: 0 0;
    }

    .vimeo-links-item p span {
        font-size: 10px;
    }
}