@charset "utf-8";


:root {
    --color-theme:       #b28845;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #333;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Manrope', 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-gothic: 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-mincho: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 0.75rem;
}

a {
    color: var(--fg-color);
    text-decoration: none;
    transition: opacity 0.5s ease-out;
}
button {
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

@media ( hover: hover ) {
    a:hover, button:hover {
        opacity: 0.5;
    }
}

ul, p {
    line-height: 1.8;
}

section {
    position: relative;
}

em {
    color: var(--color-accent);
    font-style: normal;
}

u {
    font-weight: 700;
    text-decoration-color: #ffec5d;
    text-decoration-thickness: 4px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 0.3em;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}


@media ( max-width: 768px ) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

@media ( min-width: 768.01px ) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}


/* スクロールアニメーション */
.ws-scroll-fadeIn {
    opacity: 0.0;
    /*transform: scale( 0.5, 0.5 ); */
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn.ws-scroll-show {
    opacity: 1.0;
    /* transform: scale( 1.0, 1.0 ); */
}

.ws-scroll-fadeIn-l {
    opacity: 0.0;
    transform: translateX( -200px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-r {
    opacity: 0.0;
    transform: translateX( 200px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-l.ws-scroll-show,
.ws-scroll-fadeIn-r.ws-scroll-show {
    opacity: 1.0;
    transform: translateX( 0 );
}

.ws-scroll-fadeIn-u {
    opacity: 0.0;
    transform: translateY( -200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-d {
    opacity: 0.0;
    transform: translateY( 200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-u.ws-scroll-show,
.ws-scroll-fadeIn-d.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 )  scale( 1.0, 1.0 );
}

.ws-goto-top {
    position: fixed;
    z-index: 20;
    margin: 0;
    padding: 0 0 2px;
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
    width: clamp( 30px, 5.0vw, 60px );
    height: clamp( 30px, 5.0vw, 60px );
    background: var(--color-theme);
    border: 2px solid #fff;
    border-radius: clamp( 15px, 2.5vw, 30px );
    opacity: 0.0;
    transform-origin: right bottom;
    transform: scale( 0.01, 0.01 );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1.0s;
}
.ws-goto-top::before {
    position: absolute;
    content: "";
    left: 40%;
    top: 42%;
    width: 20%;
    height: 20%;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    rotate: -45deg;
}
.ws-goto-top.ws-scroll-show {
    transform: scale( 1.0, 1.0 );
    opacity: 0.9;
}
@media ( hover: hover ) {
    .ws-goto-top:hover {
        opacity: 0.5;
    }
}

.ws-scroll-top-menu {
    opacity: 0.0;
    transform: translateY( -150px );
    transition: 0.5s;
}
.ws-scroll-top-menu.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 );
}



/* 以下サイトごと */

html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: min( 18px, 3.0vw );
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 160px;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--fg-color);
    font-family: var(--font-gothic);
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.0;
    animation: anim-fadein 1.0s ease-out 0s forwards;
    overflow-x: hidden;
}

@keyframes anim-fadein {
    0%   { opacity: 0.0; }
    100% { opacity: 1.0; }
}


/**
 * スマホ用設定
 */
@media ( max-width: 768px ) {

    .mv1 {
        margin: 0 auto;
        width: 100%;
        overflow: hidden;
    }
    .mv1 .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 3;
    }
    .mv1 .mv-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .mv1 .mv-bg-txt {
        position: absolute;
        left: -4%;
        bottom: -10%;
        margin: 0;
        padding: 0;
        width: max-content;
        color: rgb( 0, 0, 0, 0.12 );
        font-size: calc( 226 * 100vw / 1366 );
        font-family: var(--font-alphabet);
        font-weight: 800;
        line-height: 1.0;
    }
    .mv1 .mv-pic {
        position: absolute;
        bottom: 0;
        left: -23%;
        width: 136%;
        height: auto;
    }
    .mv1 .mv-pic img {
        width: 100%;
        height: auto;
    }
    .mv1 .mv-logo {
        position: absolute;
        top: 2%;
        left: 4%;
        width: 19.0%;
        height: auto;
        aspect-ratio: 130 / 46;
    }
    .mv1 .mv-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .mv1 .mv-box {
        position: absolute;
        left: 5%;
        top: 9%;
        margin: 0;
        padding: 0;
        width: 90%;
        color: #fff;
    }
    .mv1 .mv-box .mv-flex {
        margin: 0 0 1.0vw;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4.0vw;
    }
    .mv1 .mv-box .mv-txt1 {
        font-size: 3.6vw;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    .mv1 .mv-box .mv-txt2 {
        padding: 0.6em 0.8em;
        width: max-content;
        font-size: 3.2vw;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
        border: 2px solid #fff;
        border-radius: calc( 5 * 100vw / 1366 );
    }
    .mv1 .mv-box h1 {
        margin: 0.4em 0 0;
        font-size: 12.0vw;
        font-family: var(--font-alphabet);
        font-weight: 900;
        text-align: left;
        line-height: 1.0;
    }
    .mv1 .mv-box .mv-txt3 {
        margin: 1.0vw 0 0;
        font-family: var(--font-alphabet);
        font-weight: 900;
        line-height: 1.0;
        display: flex;
        justify-content: flex-start;
    }
    .mv1 .mv-box .mv-txt3 span {
        font-size: 12.0vw;
        text-align: left;
    }
    .mv1 .mv-box .mv-txt3 sup {
        font-size: 4.0vw;
        align-self: flex-start;
        translate: 0 30%;
    }
    .mv1 .mv-box .mv-txt3 sub {
        font-size: 3.6vw;
        align-self: flex-end;
        translate: 0 -40%;
    }

    main {
        margin: 0 auto;
        width: 100%;
    }

    .mv2 {
        margin: 0 auto;
        padding: 100px 0;
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    .mv2::before {
        position: absolute;
        content: "";
        top: 0%;
        left: -5%;
        width: 118%;
        height: 100%;
        background: url(../images/mv_bg2_sp.png) no-repeat left top / cover, 
        linear-gradient(to bottom, rgba(10,11,66,1), rgba(199,201,240,0));
        z-index: -1;
    }
    .mv2 .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    .mv2 .mv-bg img {
        width: 100%;
        height: auto;
    }
    .mv2 p {
        margin: 0 auto;
        width: 90%;
        max-width: 980px;
        color: var(--fg-color);
        font-size: 18px;
        font-weight: 500;
        line-height: calc( 38 / 18 );
        padding: 30px;
        background:#fff;
        opacity: 0.8;
        border-radius: 10px;
    }
    .mv2 p + p {
        margin-top: 2.0em;
    }

    #program {
        margin: -16.0vw auto 0;
        /*padding: 15.0vw 0 8.0vw;*/
        width: 100%;
        /*background: linear-gradient( 163deg, transparent 30.0vw, #f9fafb 30.0vw );*/
        /*background: linear-gradient(0deg, #abadee, #4706d9);*/
    }
    #program h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        background: linear-gradient(
         to bottom, 
        #004896 50%, /* (rgb(0, 72, 150)) */
        #034285 50%  /* (rgb(3, 66, 133)) */
         );
        -webkit-background-clip: text; 
        background-clip: text;
        -webkit-text-fill-color: transparent; 
        color: transparent;
        font-size: 10.0vw;
        font-family: "magistral", sans-serif;
        font-weight: 700;
        font-style: normal;
        text-align: center;
        letter-spacing: 0.05em;
    }
    #program .program-box {
        position: relative;
        width: 95%;
        background: #fff;
        box-shadow: 4.0vw 4.0vw 10.0vw  #293a4d2e;
        border-top: 0.8vw solid var(--color-theme);
        border-bottom: 0.8vw solid var(--color-theme);
    }
    #program .program-box.left {
        margin: 8.0vw auto 0 0;
        padding: 5.0vw 5.0vw 2.0vw 5%;
        border-right: 0.8vw solid var(--color-theme);
        border-radius: 0 10.0vw 10.0vw 0;
    }
    #program .program-box.right {
        margin: 8.0vw 0 0 auto;
        padding: 5.0vw 5% 2.0vw 5.0vw;
        border-left: 0.8vw solid var(--color-theme);
        border-radius: 10.0vw 0 0 10.0vw;
    }
    #program .program-box .program-info {
        margin: 0 auto 4.0vw;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4.0vw 2.0vw;
    }
    #program .program-box .program-info-wide {
        margin: 0 auto 4.0vw;
    }
    #program .program-box.left .program-info {
        grid-template-columns: 1fr;
    }
    #program .program-box.right .program-info {
        grid-template-columns: 1fr;
    }
    #program .program-box .program-info > div {
        position: relative;
        width: 100%;
    }
    #program .program-box .program-info3 {
        margin: 0 auto 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4.0vw 2.0vw;
    }
    #program .program-box .program-info3 > div {
        position: relative;
        width: 100%;
    }
    #program .program-box.right .program-info3 > div:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    #program .program-box.right .program-info3 > div:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    #program .program-box.right .program-info3 > div:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    #program .program-box .attr {
        margin: calc( -60 * min( 100vw, 980px ) / 980 ) auto 0;
        display: flex;
        align-items: center; /* ▼ "baseline" から "center" に変更 ▼ */
        justify-content: flex-start;
        gap: 0 20px;
    }
    #program .program-box.right .attr {
        justify-content: flex-end;
    }
    #program .program-box .attr .no {
        position: relative;
        width: 99px;
        height: auto;
    }
    #program .program-box .attr .no::before {
        position: absolute;
        content: attr(data-no);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 60px;
        font-family: var(--font-alphabet);
        font-weight: 600;
        display: grid;
        place-items: center;
    }
    #program .program-box .attr .no img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #program .program-box .attr .date {
        width: calc( 100% - 20px - 100px );
        font-size: 25px;
        font-family: var(--font-alphabet);
        font-weight: 700;
        line-height: 1.4;
    }
    #program .program-box .attr .date span.day {
        display: inline-block;
        background: var(--color-theme);
        color: #fff;
        font-size: 0.6em;
        padding: 0.1em 0.2em;
        border-radius: 1px;
        margin-left: 0.25em;
        line-height: 1.2;
        position: relative;
        top: -0.2em;
    }
    #program .program-box .attr .date .time {
        font-size: 0.88em;
        display: block;
    }
    #program .program-box .program-info-wide .attr .date {
        padding: 0 0 0 100px;
        width: calc( 100% - 20px - 100px );
        text-align: center;
    }
    #program .program-box h3 {
        margin: 0.4em auto;
        padding: 0 5%;
        width: 100%;
        color: #e37900;
        font-size: 5vw;
        font-weight: 700;
        text-align: left;
        line-height: calc( 44 / 28 );
    }
     #program .program-box .program-info h3 small {
    font-size: 0.75em;
    line-height: 1.0;
}
    #program .program-box p {
        margin: 0 auto;
        padding: 0 5%;
        width: 100%;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 500;
        text-align: justify;
        line-height: calc( 30 / 16 );
    }
    #program .program-box .program-info > div:nth-child(2) {
        grid-row: 1 / 2;
    }
    #program .program-box .program-info > div.pic {
        grid-row: 2 / 3;
        width: 100%;
        height: auto;
        aspect-ratio: 420 / 420;
        cursor: pointer;
    }
    #program .program-box .program-info > div.pic figure {
        position: relative;
        width: 100%;
        height: 100%;
        background: #eee;
        border-radius: calc( 20 * min( 100vw, 980px ) / 980 );
        overflow: hidden;
    }
    #program .program-box .program-info > div.pic figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: calc( 20 * min( 100vw, 980px ) / 980 );
    }
    #program .program-box:nth-child(5) .program-info > div.pic figure img {
        object-position: center 30%;
    }
    #program .program-box.left .program-info > div .badge {
        position: absolute;
        right: -5%;
        bottom: -5%;
        width: 40%;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        background: var(--color-theme);
        /*border-radius: 100%;*/
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
    #program .program-box.right .program-info > div .badge {
        position: absolute;
        left: -5%;
        bottom: -5%;
        width: 40%;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        background: var(--color-theme);
        /*border-radius: 100%;*/
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
    #program .program-box .program-info3 > div.pic {
        width: 100%;
        height: auto;
        aspect-ratio: 220 / 420;
        cursor: pointer;
    }
    #program .program-box .program-info3 > div.pic figure {
        position: relative;
        width: 100%;
        height: 100%;
        background: #eee;
        border-radius: calc( 20 * min( 100vw, 980px ) / 980 );
        overflow: hidden;
    }
    #program .program-box .program-info3 > div.pic figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: calc( 20 * min( 100vw, 980px ) / 980 );
    }
    #program .program-box.left .program-info3 > div:nth-child(1),
    #program .program-box.right .program-info3 > div:nth-child(3) {
        grid-column: span 2;
    }
    #program .program-box .program-info3 > div.pic[data-target="program-1"] figure img {
        position: absolute;
        top: -12%;
        left: -102%;
        width: 320%;
        max-width: none;
        height: auto;
        aspect-ratio: 440 / 880;
        object-fit: unset;
    }
    #program .program-box .program-info3 > div.pic[data-target="program-8"] figure img {
        object-position: 57% center;
    }
    #program .program-box.left .program-info3 > div.pic:nth-child(2) .badge,
    #program .program-box.right .program-info3 > div.pic:nth-child(1) .badge {
        position: absolute;
        left: -10%;
        bottom: -5%;
        width: 75%;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        background: var(--color-theme);
        /*border-radius: 100%;*/
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
    #program .program-box.left .program-info3 > div.pic:nth-child(3) .badge,
    #program .program-box.right .program-info3 > div.pic:nth-child(2) .badge {
        position: absolute;
        right: -10%;
        bottom: -5%;
        width: 75%;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        background: var(--color-theme);
        /*border-radius: 100%;*/
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
    .triangle {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 15px solid #fff;
    margin-top: 10px;
}
    
    

    #program .program-box .badge {
        color: #fff;
        overflow: hidden;
        text-align: center;
        line-height: 1.0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #program .program-box .badge .txt1 {
        margin: 0;
        font-size: 3.2vw;
        font-family: var(--font-alphabet);
    }
    #program .program-box .badge .txt2 {
        margin: 0.4em 0 0;
        padding: 0;
        font-size: 4.5vw;
        letter-spacing: 0.025em;
    }
    #program .program-box .badge .txt2::after {
        content: " 氏";
        font-size: 2.8vw;
    }
    #program .program-box .badge hr {
        margin: 2.0vw auto;
        width: 80%;
        height: 1px;
        background: #fff;
        border: 0;
    }
    #program .program-box .badge .txt3,
    #program .program-box .badge .txt4 {
        margin: 0;
        padding: 0;
        font-size: 3.2vw;
        font-weight: 500;
    }
    #program .program-box .program-profile {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.5s ease-out;
    }
    #program .program-box .program-profile.show {
        grid-template-rows: 1fr;
    }
    #program .program-box .program-profile > div {
        margin: 0;
        padding: 0;
        border-top: 0;
        display: grid;
        align-items: center;
        grid-template-columns: 1fr;
        gap: 4.0vw 0;
        overflow: hidden;
        transition: padding 0.5s ease-out, border 0.5s ease-out;
    }
    #program .program-box .program-profile.show > div {
        border-top: 1px dashed var(--color-theme);
        padding: 4.0vw 0;
    }
    #program .program-box .program-profile > div > .name h3 {
        margin: 0;
        color: var(--fg-color);
        font-size: 6.0vw;
        font-weight: 500;
        text-align: left;
        letter-spacing: 0.15em;
    }
    #program .program-box .program-profile > div > .name h3::after {
        content: " 氏";
        font-size: 2.8vw;
    }
    /*#program .program-box .program-profile > div > .name h3:first-letter {
        color: #034285;
    }*/
    #program .program-box .program-profile > div > .name p {
        margin: 0;
        color: var(--color-theme);
        font-size: 4.0vw;
        font-weight: 500;
        text-align: left;
    }

    #program .program-box .program-profile > div > .positions .position {
        margin: 0;
        padding: 0.2em 0 0.2em 1.0em;
        color: var(--fg-color);
        font-size: 3.2vw;
        font-weight: 500;
        text-align: left;
        border-left: 3px solid #246baa;
    }
    #program .program-box .program-profile > div > .positions .position + .position {
        margin-top: 0.5em;
    }
    #program .program-box .program-profile > div > p {
        color: var(--fg-color);
        font-size: 3.2vw;
        font-weight: 400;
        line-height: calc( 22.4 / 14 );
    }

    #voice {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 100%;
    }
    #voice h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 10.0vw;
        /*font-family: var(--font-alphabet);*/
        font-family: "magistral", sans-serif;
        font-weight: 700;
        font-style: normal;
        text-align: center;
        letter-spacing: 0.05em;
    }
    #voice .voice-grid {
        margin: 8.0vw auto 0;
        width: 80%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12.0vw 0;
    }
    #voice .voice-grid > div {
        position: relative;
        padding: 10.0vw 5.0vw 5.0vw;
        width: 100%;
        background: #fff;
        border-radius: 10.0vw;
        box-shadow: 0 0 3.0vw #293a4d4c;
    }
    #voice .voice-grid > div .no {
        position: absolute;
        top: 0;
        left: 50%;
        width: 16.0vw;
        height: 16.0vw;
        color: #fff;
        font-size: 8.0vw;
        font-family: var(--font-alphabet);
        font-weight: 500;
        background: linear-gradient(135deg, #c7c7c7, #bfbfbf);
        /*border-radius: 100%;*/
        aspect-ratio: 0.9 / 1;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        display: grid;
        place-items: center;
        translate: -50% -50%;

    }
    #voice .voice-grid > div p {
        margin: 0;
        padding: 0;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 500;
        text-align: justify;
        line-height: calc( 30 / 16 );
    }
    #voice .voice-grid > div p em {
        color: var(--color-theme);
        font-weight: 700;
    }

    #reservation {
        margin: 0 auto;
        padding: 15.0vw 0 0 0; 
        width: 100%;
    }
    #reservation h2 {
        margin: 0 auto 0.2em;
        padding: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 10.0vw;
        /*font-family: var(--font-alphabet);*/
        font-family: "magistral", sans-serif;
        font-weight: 700;
        font-style: normal;
        text-align: center;
        letter-spacing: 0.05em;
    }

    #reservation .mv2 {
        width: 100%;
        background: 
         url(../images/mv_bg2.png) no-repeat center center / cover,
         linear-gradient(to bottom, rgba(10, 11, 66, 0) 0%, rgba(10, 11, 66, .8) 90%);
        padding: 1.0vw 0 10.0vw 0;
        display: flex;
        justify-content: center;
        align-items: center;
     }
    #reservation .mv2::before {
        display: none;
        content: none;
        background: none;
 }
 #reservation .mv2 p {
        margin: 0 auto;
        max-width: 980px; 
        width: 90%;
        padding: 30px;
        background: #fff;
        opacity: 0.8;
        border-radius: 10px;
        box-shadow: none; 
        text-align: center;
        color: #333;
        font-size: 4.0vw;
     }
    #overview {
        margin: 0 auto;
        padding: 8.0vw 0 0;
        width: 100%;
        z-index: 1;
    }
    #overview .overview-box {
        position: relative;
        margin: 0 auto;
        padding: 16.0vw 0 8.0vw;
        width: 90%;
        background: transparent;
        border: 1px solid var(--color-theme);
        border-radius: 5px;
    }
    #overview .overview-box h2 {
        position: absolute;
        top: 0;
        left: 50%;
        margin: 0 auto;
        padding: 0 0.2em;
        width: max-content;
        color: transparent; 
        font-size: 10.0vw;
        font-family: "magistral", sans-serif;
        font-weight: 700;
        font-style: normal;
        text-align: center;
        letter-spacing: 0.05em;
        background: #fff;
        translate: -50% -50%;
        z-index: 1;
    }
    #overview .overview-box h2::before {
        content: 'OVERVIEW'; 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            to bottom, 
            #004896 50%,
            #034285 50%
        );
        -webkit-background-clip: text; 
        background-clip: text;
        -webkit-text-fill-color: transparent; 
        color: transparent;
        z-index: 2;
    }
    #overview .overview-box > dl {
        margin: 0 auto;
        width: 80%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
    #overview .overview-box > dl > dt {
        margin: 0;
        padding: 1.0em 0 0;
        color: #034285;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.05em;
    }
    #overview .overview-box > dl > dd {
        margin: 0.2em 0 0;
        padding: 0 0 1.0em;
        color: var(--fg-color); 
        font-size: 4.0vw;
        font-weight: 400;
        text-align: left;
        letter-spacing: 0.05em;
        border-bottom: 1px solid var(--color-theme);
    }

    footer {
        position: relative;
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 100%;
        background: #034285;
        z-index: 0;
        border-top: 5px solid var(--color-theme);
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 0 5%;
        width: 100%;
    }
    footer .footer-logo {
        margin: 0 auto;
        padding: 0;
        width: 130px;
        height: 46px;
    }
    footer .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .footer-links {
        margin: 2.8vw auto 0;
    }
    footer .footer-links a {
        display: block;
        margin: 0 auto;
        padding: 0.5em 0 0;
        color: #fff;
        font-size: 2.8vw;
        text-align: center;
    }
    footer .copyright {
        margin: 1.0em auto 0;
        padding: 0;
        color: #fff;
        font-size: 2.8vw;
        text-align: center;
    }

}


/**
 * PC用設定
 */
@media ( min-width: 768.01px ) {

    .mv1 {
        margin: 0 auto;
        width: 100%;
        overflow: hidden;
    }
    .mv1 .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    .mv1 .mv-bg img {
        width: 100%;
        height: auto;
    }
    .mv1 .mv-bg-txt {
        position: absolute;
        left: -4%;
        bottom: -10%;
        margin: 0;
        padding: 0;
        width: max-content;
        color: rgb( 0, 0, 0, 0.12 );
        font-size: calc( 226 * 100vw / 1366 );
        font-family: var(--font-alphabet);
        font-weight: 800;
        line-height: 1.0;
    }
    .mv1 .mv-pic {
        position: absolute;
        bottom: 0;
        right: -7%;
        width: calc( 100% * 935 / 1366 );
        height: auto;
    }
    .mv1 .mv-pic img {
        width: 100%;
        height: auto;
    }
    .mv1 .mv-logo {
        position: absolute;
        top: 2%;
        left: 1%;
        width: 9.5%;
        height: auto;
        aspect-ratio: 130 / 46;
    }
    .mv1 .mv-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .mv1 .mv-box {
        position: absolute;
        left: 4%;
        top: 54%;
        margin: 0;
        padding: 0;
        width: max-content;
        color: #fff;
        translate: 0 -50%;
    }
    .mv1 .mv-box .mv-flex {
        margin: 0 0 1.0vw;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1.0vw;
    }
    .mv1 .mv-box .mv-txt1 {
        font-size: calc( 28 * 100vw / 1366 );
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    .mv1 .mv-box .mv-txt2 {
        padding: 0.6em 0.8em;
        width: max-content;
        font-size: calc( 17 * 100vw / 1366 );
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
        border: 2px solid #fff;
        border-radius: calc( 5 * 100vw / 1366 );
    }
    .mv1 .mv-box h1 {
        font-size: calc( 94 * 100vw / 1366 );
        font-family: var(--font-alphabet);
        font-weight: 900;
        text-align: left;
        line-height: 1.0;
    }
    .mv1 .mv-box .mv-txt3 {
        margin: 1.0vw 0 0;
        font-family: var(--font-alphabet);
        font-weight: 900;
        line-height: 1.0;
        display: flex;
        justify-content: flex-start;
    }
    .mv1 .mv-box .mv-txt3 span {
        font-size: calc( 76 * 100vw / 1366 );
        text-align: left;
    }
    .mv1 .mv-box .mv-txt3 sup {
        font-size: calc( 30 * 100vw / 1366 );
        align-self: flex-start;
        translate: 0 30%;
    }
    .mv1 .mv-box .mv-txt3 sub {
        font-size: calc( 19 * 100vw / 1366 );
        align-self: flex-end;
        translate: 0 -40%;
    }

    main {
        margin: 0 auto;
        width: 100%;
    }

    .mv2 {
        margin: 0 auto;
        padding: 100px 0;
        width: 100%;
        overflow: hidden;
    }
    .mv2::before {
        position: absolute;
        content: "";
        top: 0%;
        left: -5%;
        width: 118%;
        height: 100%;
        background: url(../images/mv_bg2.png) no-repeat left top / cover, 
        linear-gradient(to bottom, rgba(10,11,66,1), rgba(199,201,240,0));
        z-index: -1;
    }
    .mv2 .mv-bg {
        margin: 0;
        padding: 0;                      
        width: 100%;
        height: auto;
    }
    .mv2 .mv-bg img {
        width: 100%;
        height: auto;
    }
    .mv2 p {
        margin: 0 auto;
        width: 90%;
        max-width: 980px;
        color: var(--fg-color);
        font-size: 18px;
        font-weight: 500;
        padding: 30px;
        background:#fff;
        opacity: 0.8;
        border-radius: 10px;


    }
    .mv2 p + p {
        margin-top: 2.0em;
    }

    /*#program {
        margin: -16.0vw auto 0;
        padding: 15.0vw 0 80px;
        width: 100%;
        background: linear-gradient( 163deg, transparent 30.0vw, #f9fafb 30.0vw );
    }*/
    #program h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 70px;
        /*font-family: var(--font-alphabet);*/
        font-family: "magistral", sans-serif;
        font-weight: 700;
        font-style: normal;
        text-align: center;
        letter-spacing: 0.05em;
        background: linear-gradient(
        to bottom, 
        #004896 50%,
        #034285 50%);
    -webkit-background-clip: text; 
    background-clip: text;         
    -webkit-text-fill-color: transparent; 
    color: transparent;           
    }
    #program .program-box {
        position: relative;
        width: calc( 50% + min( 50vw, 490px ) );
        background: #fff;
        box-shadow: calc( 20 * min( 100vw, 980px ) / 980 ) calc( 20 * min( 100vw, 980px ) / 980 ) calc( 50 * min( 100vw, 980px ) / 980 ) #293a4d2e;
        border-top: calc( 4 * min( 100vw, 980px ) / 980 ) solid var(--color-theme);
        border-bottom: calc( 4 * min( 100vw, 980px ) / 980 ) solid var(--color-theme);
    }
    #program .program-box.left {
        margin: calc( 60 * min( 100vw, 980px ) / 980 ) auto 0 0;
        padding: calc( 40 * min( 100vw, 980px ) / 980 ) calc( 40 * min( 100vw, 980px ) / 980 ) calc( 20 * min( 100vw, 980px ) / 980 ) calc( 50% - min( 50vw, 490px ) );
        border-right: calc( 4 * min( 100vw, 980px ) / 980 ) solid var(--color-theme);
        border-radius: 0 calc( 50 * min( 100vw, 980px ) / 980 ) calc( 50 * min( 100vw, 980px ) / 980 ) 0;
    }
    #program .program-box.right {
        margin: 60px 0 0 auto;
        padding: calc( 40 * min( 100vw, 980px ) / 980 ) calc( 50% - min( 50vw, 490px ) ) calc( 20 * min( 100vw, 980px ) / 980 ) calc( 40 * min( 100vw, 980px ) / 980 );
        border-left: calc( 4 * min( 100vw, 980px ) / 980 ) solid var(--color-theme);
        border-radius: calc( 50 * min( 100vw, 980px ) / 980 ) 0 0 calc( 50 * min( 100vw, 980px ) / 980 );
    }
    #program .program-box .program-info {
        margin: 0 auto 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 0 10px;
    }
    #program .program-box .program-info-wide {
        margin: 0 auto 40px;
    }
    #program .program-box.left .program-info {
        grid-template-columns: 10fr 7fr;
    }
    #program .program-box.right .program-info {
        grid-template-columns: 7fr 10fr;
    }
    #program .program-box .program-info > div {
        position: relative;
        width: 100%;
    }
    #program .program-box .program-info3 {
        margin: 0 auto 40px;
        display: grid;
        align-items: start;
        gap: 0 10px;
    }
    #program .program-box.left .program-info3 {
        grid-template-columns: 2fr 1fr 1fr;
    }
    #program .program-box.right .program-info3 {
        grid-template-columns: 1fr 1fr 2fr;
    }
    #program .program-box .program-info3 > div {
        position: relative;
        width: 100%;
    }
    #program .program-box .attr {
        margin: calc( -60 * min( 100vw, 980px ) / 980 ) auto 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 20px;
    }
    #program .program-box.right .attr {
        justify-content: flex-end;
    }
    #program .program-box .attr .no {
        position: relative;
        width: 99px;
        height: auto;
    }
    #program .program-box .attr .no img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #program .program-box .attr .no::before {
        position: absolute;
        content: attr(data-no);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 60px;
        font-family: var(--font-alphabet);
        font-weight: 600;
        display: grid;
        place-items: center;
    }
    #program .program-box .attr .date {
        width: calc( 100% - 20px - 100px );
        font-size: 32px;
        font-family: var(--font-alphabet);
        font-weight: 700;
        padding-top: 30px;
        line-height: 1.3;
    }
    #program .program-box .attr .date span.day {
        display: inline-block;
        background: var(--color-theme);
        color: #fff;
        font-size: 0.6em;
        padding: 0.1em 0.2em;
        border-radius: 2px;
        margin-left: 0.25em;
        line-height: 1.2;
        position: relative;
        top: -0.2em;
    }
    #program .program-box .attr .date .time {
        font-size: 0.875em;
        display: block;
    }
    #program .program-box .program-info-wide .attr .date {
        padding: 0 0 0 100px;
        width: calc( 100% - 20px - 100px );
        text-align: center;
    }
    #program .program-box h3 {
        margin: 0.4em auto;
        padding: 0 calc( 40 * min( 100vw, 980px ) / 980 );
        width: 100%;
        color: #e37900;
        font-size: 28px;
        font-weight: 700;
        text-align: left;
        line-height: calc( 44 / 28 );
    }
    #program .program-box .program-info h3 small {
    font-size: 0.8em;
    line-height: 1.0;
}
    #program .program-box p {
        margin: 0 auto;
        padding: 0 calc( 40 * min( 100vw, 980px ) / 980 );
        width: 100%;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 500;
        text-align: justify;
        line-height: calc( 30 / 16 );
    }
    #program .program-box .program-info > div.pic {
        width: 100%;
        height: auto;
        aspect-ratio: 420 / 420;
        cursor: pointer;
    }
    #program .program-box .program-info > div.pic figure {
        position: relative;
        width: 100%;
        height: 100%;
        background: #eee;
        border-radius: calc( 20 * min( 100vw, 980px ) / 980 );
        overflow: hidden;
    }
    #program .program-box .program-info > div.pic figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: calc( 20 * min( 100vw, 980px ) / 980 );
    }
    #program .program-box:nth-child(5) .program-info > div.pic figure img {
        position: absolute;
        top: 0%;
        left: 0%;
        width: 100%;
        max-width: none;
    }
    #program .program-box.left .program-info > div .badge {
        position: absolute;
        right: -5%;
        bottom: -20%;
        width: 45%;
        height: auto;
        aspect-ratio: 0.9 / 1;
        color: #fff;
        background: var(--color-theme);
         /*border-radius: 100%;*/
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 73%, 0% 27%);
    }
    #program .program-box.right .program-info > div .badge {
        position: absolute;
        left: -5%;
        bottom: -20%;
        width: 45%;
        height: auto;
        aspect-ratio: 0.9 / 1; 
        color: #fff;
        background: var(--color-theme);
        /*border-radius: 100%;*/
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 73%, 0% 27%);
    }
    
    #program .program-box .program-info3 > div.pic {
        width: 100%;
        height: auto;
        aspect-ratio: 220 / 420;
        cursor: pointer;
    }
    #program .program-box .program-info3 > div.pic figure {
        position: relative;
        width: 100%;
        height: 100%;
        background: #eee;
        border-radius: calc( 20 * min( 100vw, 980px ) / 980 );
        overflow: hidden;
    }
    #program .program-box .program-info3 > div.pic figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: calc( 20 * min( 100vw, 980px ) / 980 );
    }
    #program .program-box .program-info3 > div.pic[data-target="program-1"] figure img {
        position: absolute;
        top: -12%;
        left: -102%;
        width: 320%;
        max-width: none;
        height: auto;
        aspect-ratio: 440 / 880;
        object-fit: unset;
    }
    #program .program-box .program-info3 > div.pic[data-target="program-6"] figure img {
        object-position: 57% center;
    }
    #program .program-box.left .program-info3 > div.pic:nth-child(2) .badge,
    #program .program-box.right .program-info3 > div.pic:nth-child(1) .badge {
        position: absolute;
        left: -10%;
        bottom: -10%;
        width: 75%;
        height: auto;
        aspect-ratio: 0.9 / 1;
        color: #fff;
        background: var(--color-theme);
        /*border-radius: 100%;*/
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 73%, 0% 27%);
    }
    #program .program-box.left .program-info3 > div.pic:nth-child(3) .badge,
    #program .program-box.right .program-info3 > div.pic:nth-child(2) .badge {
        position: absolute;
        right: -10%;
        bottom: -10%;
        width: 75%;
        height: auto;
        aspect-ratio: 0.9 / 1;
        color: #fff;
        background: var(--color-theme);
        /*border-radius: 100%;*/
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 73%, 0% 27%);
    }

   .triangle {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 20px solid #fff;
    margin-top: 10px;
}
    #program .program-box .badge {
        color: #fff;
        overflow: hidden;
        text-align: center;
        line-height: 1.0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #program .program-box .badge .txt1 {
        margin: 0;
        font-size: 18px;
        font-family: var(--font-alphabet);
    }
    #program .program-box .badge .txt2 {
        margin: 0.4em 0 0;
        padding: 0;
        font-size: 25px;
        letter-spacing: 0.025em;
    }
    #program .program-box .badge .txt2::after {
        content: " 氏";
        font-size: 14px;
    }
    #program .program-box .badge hr {
        margin: 12px auto;
        width: 80%;
        height: 1px;
        background: #fff;
        border: 0;
    }
    #program .program-box .badge .txt3,
    #program .program-box .badge .txt4 {
        margin: 0;
        padding: 0;
        font-size: 16px;
        font-weight: 500;
    }
    #program .program-box .program-profile {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.5s ease-out;
    }
    #program .program-box .program-profile.show {
        grid-template-rows: 1fr;
    }
    #program .program-box .program-profile > div {
        margin: 0;
        padding: 0;
        border-top: 0;
        display: grid;
        align-items: center;
        grid-template-columns: 2fr 3fr;
        gap: 30px 0;
        overflow: hidden;
        transition: padding 0.5s ease-out, border 0.5s ease-out;
    }
    #program .program-box .program-profile.show > div {
        border-top: 1px dashed var(--color-theme);
        padding: calc( 40 * min( 100vw, 980px ) / 980 ) 0;
    }
    #program .program-box .program-profile > div > .name h3 {
        margin: 0;
        color: var(--fg-color);
        font-size: 42px;
        font-weight: 500;
        text-align: left;
        letter-spacing: 0.1em;
        white-space: nowrap;
    }
    #program .program-box .program-profile > div > .name h3::after {
        content: " 氏";
        font-size: 24px;
    }
    /*#program .program-box .program-profile > div > .name h3:first-letter {
        color: #034285;
    }*/
    #program .program-box .program-profile > div > .name p {
        margin: 0;
        color: var(--color-theme);
        font-size: 24px;
        font-weight: 500;
        text-align: left;
    }

    #program .program-box .program-profile > div > .positions .position {
        margin: 0;
        padding: 0.2em 0 0.2em 1.0em;
        color: var(--fg-color);
        font-size: 14px;
        font-weight: 500;
        text-align: left;
        border-left: 3px solid #246baa;
    }
    #program .program-box .program-profile > div > .positions .position + .position {
        margin-top: 1.0em;
    }
    #program .program-box .program-profile > div > p {
        grid-column: span 2;
        color: var(--fg-color);
        font-size: 14px;
        font-weight: 400;
        line-height: calc( 22.4 / 14 );
    }

    #voice {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
    }
    #voice h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 70px;
        /*font-family: var(--font-alphabet);*/
        font-family: "magistral", sans-serif;
        font-weight: 700;
        font-style: normal;
        text-align: center;
        letter-spacing: 0.05em;
        background: linear-gradient(
        to bottom, 
        #004896 50%,
        #034285 50%);
        -webkit-background-clip: text; 
        background-clip: text;
        -webkit-text-fill-color: transparent; 
        color: transparent; 
    }
    #voice .voice-grid {
        margin: 40px auto 0;
        width: 90%;
        max-width: 980px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px 40px;
    }
    #voice .voice-grid > div {
        position: relative;
        padding: 60px calc( 30 * min( 90vw, 980px ) / 980 ) calc( 30 * min( 90vw, 980px ) / 980 );
        width: 100%;
        background: #fff;
        border-radius: calc( 50 * min( 90vw, 980px ) / 980 );
        box-shadow: 0 0 calc( 15 * min( 90vw, 980px ) / 980 ) #293a4d4c;
    }
    #voice .voice-grid > div .no {
        position: absolute;
        top: 0;
        left: 50%;
        width: 90px;
        height: 90px;
        color: #fff;
        font-size: 50px;
        font-family: var(--font-alphabet);
        font-weight: 500;
        background: linear-gradient(135deg, #c7c7c7, #bfbfbf);
        /*border-radius: 100%;*/
        aspect-ratio: 0.9 / 1;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        display: grid;
        place-items: center;
        translate: -50% -50%;
    }
    #voice .voice-grid > div p {
        margin: 0;
        padding: 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 500;
        text-align: justify;
        line-height: calc( 30 / 16 );
    }
    #voice .voice-grid > div p em {
        color: var(--color-theme);
        font-weight: 700;
    }

    #reservation {
        width: 100%; 
        padding: 80px 0 0 0; 
        background: none; 
    }

    #reservation h2 {
        margin: 0 auto 0.2em;
        padding: 0;
        width: 100%;
        max-width: 1024px;
        color: var(--fg-color);
        font-size: 70px;
        font-family: "magistral", sans-serif;
        font-weight: 700;
        font-style: normal;
        text-align: center;
        letter-spacing: 0.05em;
        background: linear-gradient(
        to bottom, 
        #004896 50%,
        #034285 50%);
        -webkit-background-clip: text; 
        background-clip: text; 
        -webkit-text-fill-color: transparent; 
        color: transparent;
    }

    #reservation .mv2 {
        width: 100%;
        background: 
            url(../images/mv_bg2.png) no-repeat center center / cover,
            linear-gradient(to bottom, rgba(10, 11, 66, 0) 0%, rgba(10, 11, 66, .8) 90%);
        padding: 10px 0 100px; 
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #reservation .mv2::before {
        display: none;
        content: none;
        background: none;
    }
    #reservation .mv2 p {
        margin: 0 auto;
        max-width: 980px; 
        width: calc(100% - 40px); 
        padding: 50px; 
        background: #fff;
        opacity: 0.8; 
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        text-align: center;
        color: #333; 
        font-size: 1.2em; 
    }

    #overview {
        margin: 0 auto;
        padding: 80px 0 0;
        width: 100%;
        z-index: 1;
    }
    #overview .overview-box {
        position: relative;
        margin: 0 auto;
        padding: calc( 120 * min( 90vw, 980px ) / 980 ) 0 calc( 80 * min( 90vw, 980px ) / 980 );
        width: 90%;
        max-width: 1024px;
        background: #fff;
        border: 1px solid var(--color-theme);
        border-radius: 5px;
    }
    #overview .overview-box h2 {
        position: absolute;
        top: 0;
        left: 50%;
        margin: 0 auto;
        padding: 0 0.2em;
        width: max-content;
        background: #fff; 
        color: transparent;      
        font-size: 70px;
        font-family: "magistral", sans-serif;
        font-weight: 700;
        font-style: normal;
        text-align: center;
        letter-spacing: 0.05em;
        translate: -50% -50%; 
        z-index: 1;
    }
    #overview .overview-box h2::before {
        content: 'OVERVIEW'; 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            to bottom, 
        #004896 50%,
        #034285 50%);
            
        -webkit-background-clip: text; 
        background-clip: text;
        -webkit-text-fill-color: transparent; 
        color: transparent;
        z-index: 2;
    }
    #overview .overview-box > dl {
        margin: 0 auto;
        width: 80%;
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 0;
    }
    #overview .overview-box > dl > dt {
        margin: 0;
        padding: 1.0em 0;
        color: #034285;
        font-size: 18px;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.05em;
        border-bottom: 1px solid var(--color-theme);
    }
    #overview .overview-box > dl > dd {
        margin: 0;
        padding: 1.0em 0;
        color: var(--fg-color);
        font-size: 18px;
        font-weight: 400;
        text-align: left;
        letter-spacing: 0.05em;
        border-bottom: 1px solid var(--color-theme);
    }

    footer {
        position: relative;
        margin: 0 auto; 
        padding: 140px 0 40px;
        width: 100%;
        background: #034285;
        z-index: 0;
        border-top: 5px solid var(--color-theme);
    }

    footer .footer-wrap {
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        max-width: 1920px;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
    }
    footer .footer-logo {
        padding: 0;
        width: 130px;
        height: 46px;
    }
    footer .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .footer-links a {
        display: inline-block;
        margin: 0 0 0 1.0em;;
        padding: 0;
        color: #fff;
        font-size: 14px;
        text-align: right;
    }
    footer .copyright {
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 14px;
        text-align: right;
    }
}










.fixed-btn {
        position: fixed;
        right: 2.0vw;
        bottom: calc( 80px + 2.0vw );
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0;
        width: 6.0em;
        height: 6.0em;
        color: transparent; 
        font-size: clamp( 16px, 4.2vw, 20px );
        font-weight: 500;
        line-height: 1.0;
        white-space: nowrap;
        background: var(--color-theme);       
        aspect-ratio: 0.9 / 1; 
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); 
filter: 
        drop-shadow(0.2em 0.3em 0.8em rgba(0, 0, 0, 0.28))
        drop-shadow(0 1.0em 2.2em rgba(0, 0, 0, 0.15));
        z-index: 10;
}

.fixed-btn::before {
        content: '';
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        background: linear-gradient( to bottom, #004896, #034285 );
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        z-index: 1;
}

.fixed-btn span {
        font-size: 1.0em;
        color: #fff; 
        position: relative;
        width: calc(100% - 10px); 
        
        background: var(--color-theme);
        padding: 0.5em 0; 
        text-align: center; 
        z-index: 2;
}

.fixed-btn span::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 2px;
        background-color: #fff;
}

.fixed-btn span::after {
        content: "";
        position: absolute;
        left: 0; 
        right: 0;
        bottom: 0;
        height: 2px;
        background-color: #fff;
}



