@charset "utf-8";

:root {
    --c-black: #333;
    --c-white: #fff;
    --c-gray: #A5A5A5;
    --c-blue: #036EB7;
    --c-green: #21C7A1;
    --f-en: "Poppins", sans-serif;
    --f-ja: "Noto Sans JP", sans-serif;
    --w-max: 1320px;
    --w-content: 1050px;
    --w-sp: 90vw;
    --grid-gap: min(30px,4vw);
    --fs-min: clamp(0.45rem, 0.44rem + 0.22vw, 0.65rem);
    --fs-small: clamp(0.688rem, 0.636rem + 0.276vw, 0.813rem);
    --fs-medium: clamp(0.813rem, 0.735rem + 0.414vw, 1rem);
    --fs-large: clamp(1rem, 0.948rem + 0.276vw, 1.125rem);
    --fs-xl: clamp(1.375rem, 1.271rem + 0.552vw, 1.625rem);
    /* ヘッダーの高さ（初期値：JSで上書きされる前の状態をカバー） */
    --header-h: 70px;
}
@media (min-width: 768px) {
    :root {
        --header-h: 80px;
    }
}
html {
    font-size: medium;
}
body {
    line-height: 1;
    font-family: var(--f-en), var(--f-ja);
    line-break: strict;
}
p {
    font-size: var(--fs-medium);
}
body,p,td,th,ol,ul,h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}
ol,ul {
    list-style: none
}
img {
    width: 100%;
    vertical-align: middle;
}
a {
    border: 0;
    text-decoration: none;
    color: var(--c-white);
}
sup {
    font-size: 60%;
    margin-left: -4px;
}
@media (any-hover: hover) {
    a:hover {
        opacity: .8;
    }
}
.through {
    text-decoration: line-through;
}
.fadeIn {
    opacity: 0;
    transform: translateY(20px);
}
.sp {
    display: none;
}
.content_wrapper {
    width: min(var(--w-content),var(--w-sp));
    margin: 0 auto;
    padding-top: min(40px,6vw);
    margin-top: min(190px,19vw);
}
#statement.content_wrapper,
#program.content_wrapper,
#note.content_wrapper,
#contact.content_wrapper,
#supporters.content_wrapper {
    margin-top: min(80px,12vw);
}
    @media (max-width:767px) {
        .sp {
            display: inline-block;
        }
        .pc {
            display: none;
        }
    }

#header {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: var(--c-blue);
    padding: min(15px,3vw) min(35px,4vw);
    box-sizing: border-box;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#header.is-fixed {
    position: fixed;
}
#header.is-hidden {
    transform: translateY(-100%);
}
#header .logo {
    width: min(60px, 12vw);
    /* 画像読み込み前に高さを確保するためのアスペクト比 */
    aspect-ratio: 392.28 / 270.76;
    position: relative;
    z-index: 10001; /* Above navi */
}
.navi > ul {
    display: flex;
    align-items: center;
    column-gap: min(25px,2vw);
    font-size: var(--fs-small);
}

/* Hamburger Setup */
.hamburger {
    display: none;
    position: relative;
    width: 7vw;
    height: 4vw;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10002; /* Above logo and navi */
    padding: 0;
}
.hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--c-white);
    transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 1.75vw; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.open span:nth-child(1) {
    transform: translateY(1.75vw) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-1.75vw) rotate(-45deg);
}
@media (max-width: 767px) {
    .hamburger {
        display: block;
    }
    .navi {
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--c-blue);
        padding: 0 10vw;
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-sizing: border-box;
    }
    .navi.open {
        right: 0;
    }
    .navi > ul {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 7vw;
        font-size: 7vw;
        font-weight: 500;
        text-align: center;
    }
}
body.no-scroll {
    overflow: hidden;
}
#header + * {
    margin-top: var(--header-h);
}

#head {
    position: relative;
    z-index: 3;
}
#head .mv {
    position: relative;
}
#head .mv img {
    width: 100%;
}
/* Splide Arrows */
#head .splide__arrows {
    pointer-events: none;
}
#head .splide__arrow {
    width: min(44px, 8vw);
    height: min(44px, 8vw);
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    position: absolute;
    top: 50%;
    z-index: 2;
    box-sizing: border-box;
}
#head .splide__arrow--prev {
    left: min(20px, 4vw);
    transform: translateY(-50%) translateX(-20px);
}
#head .splide__arrow--next {
    right: min(20px, 4vw);
    transform: translateY(-50%) translateX(20px);
}
/* Hover effect on slide section */
@media (any-hover: hover) {
    #head .mv.splide:hover .splide__arrow {
        opacity: 1;
    }
    #head .mv.splide:hover .splide__arrow--prev,
    #head .mv.splide:hover .splide__arrow--next {
        transform: translateY(-50%) translateX(0);
    }
}
/* Always visible on SP/Tablet */
@media (max-width: 767px) {
    #head .splide__arrow {
        opacity: 1;
    }
    #head .splide__arrow--prev,
    #head .splide__arrow--next {
        transform: translateY(-50%) translateX(0);
    }
}
#head .splide__arrow:hover {
    background-color: var(--c-blue);
    border-color: var(--c-blue);
}
#head .splide__arrow svg {
    fill: #fff;
    width: min(20px, 4vw);
    height: min(20px, 4vw);
}
/* Splide Pagination */
#head .splide__pagination {
    bottom: min(20px, 3vw);
    z-index: 2;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}
#head .splide__pagination__page {
    width: min(8px, 2vw);
    height: min(8px, 2vw);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
    opacity: 1;
}
#head .splide__pagination__page.is-active {
    background: var(--c-blue);
    transform: scale(1.4);
    opacity: 1;
}
#head .hero_bottom {
    width: min(var(--w-max), var(--w-sp));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--c-white);
    padding: min(40px,7vw) 0;
    gap: min(20px,3vw);
    border-bottom: 0.25px solid var(--c-blue);
}
    @media (max-width:767px) {
        #head .hero_bottom {
            flex-direction: column;
            gap: 6vw;
            align-items: stretch;
        }
    }
#head .head_lead {
    opacity: 0;
}
#head .head_lead img {
    width: min(660px, 56vw);
}
    @media (max-width:767px) {
        #head .head_lead img {
            width: 100%;
            height: 100%;
        }
    }
.entry_btn {
    position: relative;
    z-index: 2;
}
.entry_btn a {
    display: block;
    padding: min(18px,4vw) min(132px,10vw);
    font-size: var(--fs-xl);
    font-weight: 500;
    line-height: 1;
    text-align: center;
    background-color: var(--c-blue);
    border: 1px solid var(--c-blue);
    position: relative;
	z-index: 1;
    /* pointer-events: none; */
}
.entry_btn a::after {
    content: "";
    display: block;
    width: min(12px,2.5vw);
    height: min(12px,2.5vw);
    border-right: 1px solid var(--c-white);
    border-bottom: 1px solid var(--c-white);
    transform: rotate(-45deg);
    position: absolute;
    right: min(24px, 5vw);
    top: 50%;
    translate: 0 -50%;
    transition: border .45s cubic-bezier(.785,.135,.15,.86);
}
.entry_btn a::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: var(--c-white);
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform .45s cubic-bezier(.785,.135,.15,.86);
}
    @media (any-hover: hover) {
        .entry_btn a:hover {
            border: 1px solid var(--c-black);
            color: var(--c-black);
            opacity: 1;
        }
        .entry_btn a:hover::before {
            transform-origin: 0% 50%;
            transform: scaleX(1);
        }
        .entry_btn a:hover::after {
            border-right: 1px solid var(--c-black);
            border-bottom: 1px solid var(--c-black);
        }
    }
#head .tagline,
#head .logo,
#head .challenge {
    opacity: 0;
    transform: translateY(50px);
}
#head .session {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: min(8px,1.8vw) min(16px,1.8vw);
    width: min(var(--w-max), var(--w-sp));
    margin: min(30px,6vw) auto;
}
#head .session p {
    font-size: calc( var(--fs-small) * 1.1 );
    font-feature-settings: "palt";
    font-weight: 300;
    line-height: 1.6;
    color: var(--c-blue);
}
#head .session .session_title {
    text-align: center;
    padding: 0 min(1.3vw,5px);
    outline: 0.5px solid var(--c-blue);
    grid-column: 1;
    grid-row: 1 / 3;
    background-color: var(--c-blue);
    color: var(--c-white);
    line-height: 1.8;
}
#head .session .session_text p + p {
    padding-top: min(3px,1vw);
}
#head .session .session_text p:last-child {
    font-size: var(--fs-small);
}
#head .session .session_text a {
    border-bottom: 0.25px solid var(--c-blue);
    color: var(--c-blue);
}

#main_content {
    margin-top: min(120px,18vw);
}
.js_text {
    display: inline-block;
    overflow: hidden;
    font-size: clamp(2.125rem, 1.555rem + 3.039vw, 3.5rem);
    font-weight: 600;
    margin-bottom: min(30px,6vw);
    padding-bottom: min(10px,2vw);
}
.js_text span {
    display: inline-block;
}
#statement .description p {
    font-family: "Noto Serif JP", serif;
    font-size: var(--fs-large);
    color: var(--c-blue);
    line-height: 2.5;
    letter-spacing: 0.1em;
    text-align: center;
    font-weight: 500;
}
#statement .description p:not(:first-of-type) {
    padding-top: min(40px,5vw);
}
#program .lead {
    font-size: var(--fs-medium);
    text-align: justify;
    line-height: 2;
}
#program .team {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: min(60px,10vw) auto;
    position: relative;
    background: url(../../_assets/img/program_circle_bg.svg) center center / 100%  no-repeat;
    width: min(90%,630px);
    height: min(430px,60vw);
}
    @media (max-width:767px) {
        #program .team {
            width: 80vw;
            height: 130vw;
            background: url(../../_assets/img/program_circle_bg_sp.svg) center center / 100%  no-repeat;
            flex-direction: column;
        }
    }
#program .team .team_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#program .team .arrow_r > img {
    width: min(150px,20vw);
}
#program .team .arrow_l > img {
    width: min(120px,28vw);
    mix-blend-mode: multiply;
}
#program .team .team_inou {
    width: min(150px,18vw);
    
}
@media (max-width:767px) {
    #program .team .arrow_r {
        margin-top: 13vw;
    }
    #program .team .arrow_r > img {
        width: 40vw;
    }
    #program .team .arrow_l {
        margin-bottom: 10vw;
    }
    #program .team .arrow_l > img {
        width: 35vw;
        mix-blend-mode: multiply;
    }
    #program .team .team_inou {
        width: 30vw;
    }
}
#program .team .team_box > p {
    padding-top: min(10px,2vw);
    font-size: var(--fs-small);
}
#program h3 {
    text-align: center;
    padding: min(25px,4vw);
    font-size: clamp(1.125rem, 1.068rem + 0.284vw, 1.25rem);
    letter-spacing: 0.12em;
    font-weight: 600;
}
#program .program_subtext {
    line-height: 2;
    text-align: center;
}
#program .program_subtext + .program_subtext {
    padding:min(80px,14vw) 0 min(30px,6vw);
}
#program .program_detail {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: min(30px,4vw);
}
    @media (max-width:767px) {
        #program .program_detail {
            grid-template-columns: 1fr;
        }
    }
#program .program_detail li {
    font-size: var(--fs-large);
    text-align: center;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: min(30px,4vw) 0;
    background-color: var(--c-blue);
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
    font-weight: 600;
    color: var(--c-white);
}
    @media (max-width:767px) {
        #program .program_detail li {
            width: auto;
        }
    }
#program .program_detail::after {
    content: "▼";
    color: var(--c-black);
    text-align: center;
    grid-column: 1 / 4;
}
    @media (max-width:767px) {
        #program .program_detail::after {
            width: auto;
            grid-column: 1;
        }
    }
#program .summary {
    font-size: var(--fs-large);
    line-height: 1.6;
    letter-spacing: 0.12em;
    text-align: center;
    margin-top: min(40px,8vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: min(30px,3vw);
    border: 1.5px solid var(--c-black);
    padding: min(30px,5vw);

}
#program .summary_child {
    margin: min(30px,6vw) 0 min(60px,10vw);
    line-height: 1.6;
    text-align: center;
}
#program .program_comment {
    display: flex;
    gap: min(70px,4vw);
    width: min(var(--w-sp), calc(var(--w-content)/ 1.1 ));
    margin: 0 auto;
}
    @media (max-width:767px) {
        #program .program_comment {
            flex-direction: column;
            gap: 8vw;
        }
    }
.program_comment_title {
    font-size: var(--fs-large);
    display: flex;
    align-items: center;
    gap: min(10px,3vw);
    justify-content: space-between;
    margin: min(110px,14vw) 0 min(40px,8vw);
    font-weight: 500;
}
.program_comment_title::after {
    content: "";
    flex-grow: 1;
    background-color: var(--c-black);
    height: 1.4px;
}
#program .comment_box {
    flex: 1;
}
#program .comment_box > p {
    line-height: 1.8;
    padding-top: min(20px,3vw);
    font-size: calc(var(--fs-small) * 1.2);
    text-align: justify;
}
#program .comment_box > p > span {
    font-size: var(--fs-small);
    line-height: 2.2;
    opacity: .7;
    display: block;
}
#theme .theme_topic {
    gap: min(50px,5vw);
    background: url(../../_assets/img/theme_bg.jpg) center center / cover no-repeat;
    padding: min(70px,7vw) min(130px,5vw) min(160px,20vw);
    color: var(--c-white);
}
    @media (max-width:767px) {
        #theme .theme_topic {
            flex-direction: column;
            align-items: baseline;
            gap: 10vw;
        }
    }
#theme .theme_topic .js_text {
    font-size: clamp(1.625rem, 1.25rem + 1.6vw, 2.75rem);
}
#theme .topic_text {
    flex: 1;
}
#theme .theme_topic h3 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.7rem, 1.518rem + 0.91vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1.44;
}
#theme .theme_text {
    font-family: "Noto Serif JP", serif;
    font-size: var(--fs-large);
    line-height: 2;
    padding: min(40px,4vw) 0 min(40px,9vw);
    text-align: justify;
}
@media (max-width:767px) {
    #theme .theme_text {
        font-size: 3.3vw;
    }
}

#theme .img_item {
    width: 100%;
    max-width: 100%;
}
@media (max-width:767px) {
    #theme .img_item {
        width: 80%;
    }
}
#theme .img_item:nth-child(odd) {
    margin-top: 0;
}
#theme .img_item:nth-child(even) {
    margin-top: min(50px, 6vw);
}
@media (max-width:767px) {
    #theme .img_item:nth-child(even) {
        margin: 0 0 0 auto;
    }
}
#schedule .schedule_title {
    font-size: var(--fs-large);
    display: flex;
    align-items: center;
    gap: min(10px,3vw);
    justify-content: space-between;
    margin:min(80px,5vw) 0 min(10px,1vw);
    font-weight: 500;
}
#schedule .schedule_title::after {
    content: "";
    flex-grow: 1;
    background-color: var(--c-black);
    height: 1.4px;
}
#schedule table {
    width: 100%;
}
    @media (max-width:767px) {
        #schedule table {
            width: 100%;
        }
    }
#schedule table tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: min(30px,2vw) min(30px,5vw);
    font-size: var(--fs-small);
    border-bottom: 0.25px solid rgba(0 0 0 / .5);
    padding: min(32px,3vw) 0;
    opacity: 0;
}
    @media (max-width:767px) {
        #schedule table tr {
            padding: min(40px,6vw) 0;
        }
    }
#schedule table th {
    display: flex;
    /* align-items: center; */
    line-height: 1.5;
    justify-content: flex-end;
    font-weight: normal;
    grid-column: 1;
    text-align: right;
}
    @media (max-width:767px) {
        #schedule table th {
            grid-column: 1 / 5;
            justify-content: flex-start;
        }
    }
#schedule table td {
    grid-column: 2 / 5;
    line-height: 1.5;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
}
    @media (max-width:767px) {
        #schedule table td {
            grid-column: 1 / 5;
        }
    }
#schedule table td img {
    margin-top: 15px;
}
#schedule table td span {
    display: block;
    margin-top: 5px;
    text-align: right;
    font-size: var(--fs-min);
}
#schedule .schedule_notes {
    font-size: var(--fs-small);
    text-align: right;
    padding-top: min(20px,5vw);
}
#schedule table tr.inner {
    font-size: calc(var(--fs-medium) * 0.9);
    border-bottom: none;
    opacity: 0.8;
    padding: min(12px,3vw) 0;
}
    @media (max-width:767px) {
        #schedule table tr.inner {
            margin-left: 0;
            grid-template-columns: 1fr;
            gap: 2vw;
        }
    }
#schedule table tr.border_bottom {
    border-bottom: 1px dashed rgba(0 0 0 / .5);
    margin-bottom: min(20px,2vw);
}
#schedule table tr.border_top {
    border-top: 0.25px solid rgba(0 0 0 / .5);
    margin-top: min(40px,5vw);
}
#lecturer .staff_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 var(--grid-gap);
    position: relative;
    z-index: 2;
    align-items: start;
} 
    @media (max-width:767px) {
        #lecturer .staff_wrapper {
            grid-template-columns: 1fr 1fr;
        } 
    }
#lecturer .staff_card {
    opacity: 0;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
} 
    @media (max-width:767px) {
        #lecturer .staff_card {
            margin-bottom: 5vw;
        } 
    }
#lecturer .staff_card .card_text {
    margin-top: min(16px,2.5vw);
    gap: min(8px,1.5vw);
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
}
#lecturer .staff_card .card_text .campus {
    font-size: var(--fs-small);
    line-height: 1.4;
    opacity: .7;
}
#lecturer .lecture_text {
    font-size: var(--fs-small);
    line-height: 1.6;
    text-align: justify;
    word-break: break-all;
    line-break: strict;
}
#theme-2026.content_wrapper {
    width: min(var(--w-max),100%);
}
#theme-2026 .theme_topic {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: url(../../_assets/img/theme-2026_bg.jpg) center center / cover no-repeat;
    padding: min(70px,7vw) min(130px,5vw);
    color: var(--c-white);
    aspect-ratio: 16 / 9;
    box-sizing: border-box;
}
#theme-2026 .js_text {
    margin-bottom: auto;
}
#theme-2026 .theme_topic h3 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.7rem, 1.518rem + 0.91vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1.5;
}
#theme-2026 .theme_text {
    font-family: "Noto Serif JP", serif;
    font-size: var(--fs-large);
    line-height: 2;
    padding-top: min(20px,4vw);
    text-align: justify;
}
#theme-2026 .entry_btn {
    width: 36%;
    margin-top: min(40px,5vw);
}
    @media (max-width:767px) {
        #theme-2026 .theme_topic h3 {
            margin-top: 12vw;
            font-size: 6vw;
            line-height: 1.4;
        }
        #theme-2026 .theme_text {
            font-size: 3.3vw;
        }
        #theme-2026 .entry_btn {
            width: 100%;
        }
    }
#note_list.content_wrapper {
    padding-top: 0;
    border-bottom: 1px solid  rgba( 0 0 0 / .3);
}
#note_list .list_wrapper {
    width: min(var(--w-content),var(--w-sp));
    margin: min(60px,11vw) auto;
    padding-bottom: min(5px,1vw);
}
#note_list #items_list li {
    margin-bottom: min(20px,6vw);
}
#note_list #items_list li > * {
    color: var(--c-black);
    display: flex;
    align-items: center;
    gap: min(30px,4vw);
}
    @media (max-width:767px) {
        #note_list #items_list li > * {
            flex-direction: column;
            align-items: baseline;
            gap: 1vw;
        }
    }
#note_list #items_list h4 {
    color: var(--c-black);
    font-size: var(--fs-medium);
    font-weight: 500;
    line-height: 1.4;
}
#note_list #items_list time {
    font-size: var(--fs-small);
    opacity: .8;
    line-height: 2;
    width: min(6vw,70px);
}
#note #items_column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: min(50px,6vw);
}
    @media (max-width:767px) {
        #note #items_column {
            grid-template-columns: 1fr 1fr;
            gap: 8vw 6vw;
        }
    }
#note #items_column a {
    color: var(--c-black);
}
#note #items_column h3 {
    font-size: var(--fs-medium);
    margin-top: min(18px,2vw);
    font-weight: 600;
    line-height: 1.4;
}
#note #items_column time {
    font-size: var(--fs-small);
    opacity: .8;
    line-height: 2;
}
#note #items_column li img {
    border: 0.25px solid rgba(165 165 165 / .2);
}



.button {
    display: flex;
    align-items: center;
    gap: min(20px,4vw);
}
.accordion_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.accordion_content.open {
    max-height: 5000px;
    padding-bottom: min(100px,20vw);
}
.accordion_toggle {
    cursor: pointer;
}
.accordion_toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.8rem;
}
.accordion_btn {
    border: none;
    cursor: pointer;
    margin-bottom: min(30px,8vw);
    padding-bottom: min(10px,2vw);
    background-color: var(--c-black);
    border-radius: 40px;
    padding: min(20px,4vw);
}
.accordion_btn::before,
.accordion_btn::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--c-white);
    top: 50%;
    left: 50%;
    transition: transform 0.3s ease;
}
.accordion_btn::before {
    transform: translate(-50%, -50%);
}
.accordion_btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.accordion_btn.open::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.accordion_btn.open::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
#apply > h2 {
    width: 100%;
}
#apply h3 {
    font-size: var(--fs-large);
    display: flex;
    align-items: center;
    font-weight: normal;
    gap: min(15px, 3vw);
    margin-bottom: min(40px,4vw);
}
#apply h3::after {
    content: "";
    flex-grow: 1;
    background-color: var(--c-black);
    height: 1px;
}
#apply .application_item {
    display: grid;
    gap: min(20px,2vw) min(30px,5vw);
    margin-top: min(40px,8vw);
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
#apply .application_item .list_title {
    font-size: clamp(0.675rem, 0.818rem + 0.284vw, 1rem);
    text-align: right;
    font-weight: 600;
    line-height: 2;
}
    @media (max-width:767px) {
        #apply .application_item .list_title {
            text-align: left;
            line-height: 1.8;
            grid-column: 1 / 5;
        }
    }
#apply ul li {
    line-height: 2;
    font-size: var(--fs-medium);
}
#apply .application_item ul {
    grid-column: 2 / 5;
}
    @media (max-width:767px) {
        #apply .application_item ul {
            grid-column: 1 / 5;
        }
    }
#apply .application_item ul li {
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
}
#apply .schedule ul li {
    display: flex;
}
    @media (max-width:767px) {
        #apply .schedule ul li {
            flex-direction: column;
            margin-bottom: 5vw; 
        }
    }
#apply .application_item ul li a {
    border-bottom: 0.25px solid var(--c-blue);
    color: var(--c-blue);
}
#apply .application_item ul li span.fontS {
    font-size: calc(var(--fs-medium) * 0.9);
    padding-top: min(5px,1vw);
    line-height: 1.6;
    display: block;
}
#apply .application_item ul li .month {
    font-size: var(--fs-medium);
    width: min(270px,30vw);
    font-feature-settings: "palt";
}
    @media (max-width:767px) {
        #apply .application_item ul li .month {
            width: 100%;
        }
    }
#apply .application_item .indent {
    text-indent: -1em;
    padding-left: 1em;
}
#apply .notes {
    margin: min(60px,10vw) 0 min(60px,30vw);
}
#apply .entry_btn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4vw var(--grid-gap);
}
#apply .entry_btn a {
    grid-column: 2 / 4;
    padding: min(18px,5vw) 0;
}
    @media (max-width:767px) {
        #apply .entry_btn a {
            grid-column: 1 / 5;
        }
    }
#apply .download_btn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4vw var(--grid-gap);
    z-index: 2;
}
#apply .download {
    grid-column: 2 / 4;
    display: inline-block;
    border: 1px solid var(--c-blue);
    background-color: var(--c-white);
    color: var(--c-blue);
    line-height: 2;
    text-align: center;
    padding: min(8px,2vw) 0;
    width: min(var(--w-sp),350px);
    margin-top: min(3vw,15px);
    transition: color .45s cubic-bezier(.785,.135,.15,.86), border .45s cubic-bezier(.785,.135,.15,.86);
    position: relative;
	z-index: 1;
    box-sizing: border-box;
}
@media (max-width:767px) {
    #apply .download {
        grid-column: 1 / 5;
        width: 100%;
    }
}
#apply .download_btn .download {
    width: 100%;
    margin: min(3vw,20px) auto 0;
    font-size: var(--fs-medium);
}
#apply .download::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: var(--c-blue);
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform .45s cubic-bezier(.785,.135,.15,.86);
}
    @media (any-hover: hover) {
        #apply .download:hover {
            border: 1px solid var(--c-blue);
            color: var(--c-white);
            opacity: 1;
        }
        #apply .download:hover::before {
            transform-origin: 0% 50%;
            transform: scaleX(1);
        }
    }
#apply .closed,
#apply .entry_wrap {
    position: relative;
}
.entry_wrap {
    margin-top: min(60px,10vw);
}
/* #apply .entry_wrap::after {
    content: "エントリー受付は終了いたしました";
    white-space: pre-line;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 100%;
    background-color: rgba(221, 221, 221, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translate(-50%, -50%);
    line-height: 1.6;
    font-size: var(--fs-medium);
    z-index: 4;
}
#apply .closed::after {
    content: "エントリー受付は終了いたしました";
    white-space: pre-line;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(221, 221, 221, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translate(-50%, -50%);
    line-height: 1.6;
    font-size: var(--fs-medium);
    z-index: 4;
}
@media (max-width:767px) {
    #apply .entry_wrap::after {
        width: 100%;
    }
} */
#archive #theme.content_wrapper {
    padding-top: 0;
    margin-top: 0;
}
#faq .faq_area + .faq_area {
    margin-top: min(100px,18vw);
}
#faq .faq_text {
    font-size: var(--fs-large);
    display: flex;
    align-items: center;
    font-weight: normal;
    gap: min(15px, 3vw);
    margin: min(20px,2vw) 0 min(50px,6vw);
    opacity: 0;
}
#faq .faq_text::after {
    content: "";
    flex-grow: 1;
    background-color: var(--c-black);
    height: 1px;
}
#faq .faq_item {
    border-bottom: 0.25px solid rgba(0 0 0 / .5);
    font-size: var(--fs-medium);
    opacity: 0; 
    text-align: justify;
    margin-bottom: min(40px,6vw);
}
#faq .faq_item:last-of-type {
    border: none;
}
#faq .question {
    padding-bottom: min(20px,2vw);
    line-height: 1.8;
}
#faq .faq_area .answer {
    margin-bottom: min(40px,6vw);
    line-height: 1.8;
    font-size: calc( var(--fs-small) * 1.1);
    opacity: .6;
}
#contact .contact_box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 var(--grid-gap);
    position: relative;
    z-index: 2;
}
#contact .contact_box p {
    grid-column: 1 / 5;
    line-height: 1.4;
    font-size: var(--fs-large);
}
#contact .contact_box p > span {
    font-size: var(--fs-small);
    line-height: 1;
}
#contact .contact_btn {
    grid-column: 1 / 3;
}
    @media (max-width:767px) {
        #contact .contact_btn {
            grid-column: 1 / 5;
        }
    }
#contact .contact_btn a {
    display: block;
    background-color: var(--c-black);
    border: 1px solid var(--c-black);
    padding: min(18px,5.5vw) 0;
    text-align: center;
    margin-top: min(20px,6vw);
    font-size: var(--fs-large);
    transition: color .45s cubic-bezier(.785,.135,.15,.86), border .45s cubic-bezier(.785,.135,.15,.86);
    position: relative;
	z-index: 1;
}
#contact .contact_btn a::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: var(--c-white);
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform .45s cubic-bezier(.785,.135,.15,.86);
}
    @media (any-hover: hover) {
        #contact .contact_btn a:hover {
            color: var(--c-black);
            opacity: 1;
        }
        #contact .contact_btn a:hover::before {
            transform-origin: 0% 50%;
            transform: scaleX(1);
        }
    }
#supporters .supporters_box {
    margin: min(90px,20vw) 0 0;
}
#supporters .supporters_box h3 {
    font-size: clamp(1.5rem, 1.33rem + 0.852vw, 1.875rem);
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: min(15px, 3vw);
    margin-bottom: min(40px,6vw);
}
#supporters .supporters_box h3::after {
    content: "";
    flex-grow: 1;
    background-color: var(--c-black);
    height: 1px;
}
#supporters .supporters_box .company {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4vw var(--grid-gap);
    margin-top: min(20px,4vw);
}
    @media (max-width:767px) {
        #supporters .supporters_box .company {
            grid-template-columns: 1fr 1fr;
        }
    }
#supporters .supporters_box .company .logo {
    transition: transform .45s cubic-bezier(.785,.135,.15,.86);
}
    @media (any-hover: hover) {
        #supporters .supporters_box .company .logo:hover {
            transform: scale(1.01);
        }
    }
#supporters .supporters_box .company .logo img {
    height: min(52px,11vw);
    object-fit: contain;
}
#footer {
    text-align: center;
    margin: min(120px,28vw) 0 min(60px,15vw);
    position: relative;
    z-index: 2;
}
#footer .footer_name {
    width: min(43vw,220px);
    margin: min(30px,4vw) auto min(50px,13vw)
}
#footer .copyright {
    font-size: clamp(0.625rem, 0.568rem + 0.284vw, 0.75rem);
}
