@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Shippori+Antique&display=swap');

:root{
    --text-color: #231815;
    --theme-color: #E60012;
    --light-gray: #EDEDED;
    --gray: #CCCCCC;
    --bg-gray: #F6F6F6;

    --base-font: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

    --transition: .2s;
    --font-inter: "Inter", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --font-shippori: "Shippori Antique", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    
    --padding: 160px;
    --wrap: 1280px;
    --space: calc((100vw - var(--wrap))/2);
}

/* common-css */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

input::placeholder{
	color: #ccc;
}
input::-ms-input-placeholder{
	color: #ccc;
}
input:-ms-input-placeholder{
	color: #ccc;
}

body{
    min-width: 1200px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    color: var(--text-color);
    font-family: var(--base-font);
    line-height: 1.6;
}

.wrap{
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
}

a{
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
@media screen and (min-width: 992px) {
    a:hover{
        opacity: .6;
    }
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.ps-re{
    position: relative;
    z-index: 0;
}
.ps-ab{
    position: absolute;
}
.padding-top{
    padding-top: var(--padding);
}
.padding-top-half{
    padding-top: calc(var(--padding) / 2);
}
.padding-bottom{
    padding-bottom: var(--padding);
}
.padding-tb{
    padding: var(--padding) 0;
}
br.s-up{
    display: none;
}


/* FADE */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 600ms;
}
.fadeinr {
    opacity : 0;
    transform : translate(50px, 0);
    transition : all 600ms;
}
.fadeinb {
    opacity : 0;
    transform : translate(0, -50px);
    transition : all 600ms;
    }

.fadeinl {
    opacity : 0;
    transform : translate(-50px, 0);
    transition : all 600ms;
    }

.fadeino {
    opacity : 0;
    transition : all 600ms;
    }

.ts1 {
    transition-delay: 200ms;
}

.ts2 {
    transition-delay: 400ms;
}

.ts3 {
    transition-delay: 600ms;
}

.ts4 {
    transition-delay: 800ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }

.fadeino.scrollin {
   opacity : 1;
}


/* COMMON */
.pc-none{
    display: none;
}



/* HEADER */
#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0 0 40px;
    transition: var(--transition);
}
.header-logo{
    position: relative;
}
.header-logo__wh{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}
.header-logo img{
    display: block;
    transition: var(--transition);
}
.header-menu{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}
.header-menu nav{
    transition: var(--transition);
    border: 1px solid transparent;
}
.header-menu ul{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.header-menu ul li a{
    font-size: 15px;
    font-weight: 500;
}
.header-menu__btn-item a{
    display: block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    background-color: var(--text-color);
    color: #fff;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
.header-menu__btn-item.bg-color a{
    background-color: var(--theme-color);
}
.header-menu__btn-item.en a{
    font-size: 16px;
}
.header-logo::before{
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    border-bottom-right-radius: 10px;
    background-color: rgb(255 255 255 / .6);
    z-index: -1;
    backdrop-filter: blur(10px);
}


/* HEADER wh */
#header.wh:not(.open) .header-menu ul li a{
    color: #fff;
}
/* #header.wh:not(.open) .header-logo a img{
    opacity: 0;
}
#header.wh:not(.open) .header-logo__wh{
    opacity: 1;
} */


/* HEADER over */
#header.over:not(.open){
    padding: 20px 0 0 20px;
}
#header.over .header-menu nav{
    padding: 3px 30px;
    background-color: #fff;
    border-radius: 30px;
    border-color: var(--theme-color);
}
.nav-toggle-wrap{
    display: none;
}
#header.over:not(.open) .header-logo::before{
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
}


/* FOOTER */
#footer{
    margin-top: 200px;
}
.footer-flex{
    justify-content: space-between;
    align-items: flex-end;
}
.footer-flex__box-en{
    font-size: 58px;
    font-family: var(--font-inter);
}
.footer-flex__box-text{
    font-family: var(--font-shippori);
    font-size: 20px;
}
.footer-flex__btn{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width: 100%;
    max-width: 450px;
    gap: 10px;
}
.footer-flex__btn-item a{
    display: block;
    background-color: var(--text-color);
    color: #fff;
    font-weight: 500;
    text-align: center;
    line-height: 100px;
    position: relative;
}
.footer-flex__btn-item a::before{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 30px;
    width: 14px;
    height: 12px;
    background: url(../img/common/icon-arrow-wh.svg) no-repeat center center / contain;
}
.footer-flex__btn-item.en a{
    font-family: var(--font-inter);
    background-color: var(--theme-color);
}
.footer-content{
    padding: 120px 0 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}
.footer-content__info{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}
.footer-content__info-address{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.footer-content__info-address__map,
.footer-content__info-address__map a{
    font-size: 14px;
    line-height: auto;
}
.footer-content__info-address__map a{
    display: inline-block;
}
.footer-content__info-address__map a img{
    margin-right: 4px;
    position: relative;
    top: -4px;
}
.footer-content__link-flex{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}
.footer-content__link-flex__item,
.footer-content__link-flex__item a{
    font-size: 12px;
    font-weight: 500;
}
.footer-content__link-flex__item a img{
    margin-left: 6px;
    position: relative;
    top: -2px;
}
.footer-content__link-copy{
    text-align: right;
    margin-top: 10px;
    font-size: 12px;
}



/* TOP */
.title{
    margin-bottom: 80px;
}
.title-en{
    font-family: var(--font-inter);
    font-size: 60px;
}
.title-text{
    font-family: var(--font-shippori);
    font-size: 20px;
}
.title-text::before{
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--theme-color);
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: -4px;
}
.flex-content{
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    position: relative;
    justify-content: space-between;
}
.flex-content::before{
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: var(--theme-color);
    z-index: 1;
}
.flex-content__main{
    width: 100%;
    max-width: 900px;
    padding-top: 86px;
}
.flex-content__side-sticky{
    position: sticky;
    top: 140px;
}
.flex-content__side-title__en{
    color: var(--theme-color);
    font-weight: 500;
    font-family: var(--font-inter);
    margin-bottom: 55px;
}
.flex-content__side-title__text{
    padding-left: 40px;
    writing-mode: vertical-rl;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.25em;
}



/* TOP MV */
.mv-pin{
    position: relative;
    z-index: 0;
}
.mv-bg{
    height: 100vh;
    z-index: -1;
    position: sticky;
    top: 0;
}
.mv-bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--text-color);
    opacity: 0.1;
}
.mv-bg__blur{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    backdrop-filter: blur(0px);
}
.mv-bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv-intro{
    margin-top: -100vh;
    height: 100vh;
    position: sticky;
    top: 0;
}
.mv-intro.disabled{
    pointer-events: none;
}
.mv-intro__text{
    font-family: var(--font-shippori);
    font-size: 20px;
    line-height: 1.6;
    position: absolute;
    transform: translate(-50%,-50%);
    top: calc(50% + 120px);
    left: 50%;
    width: max-content;
    color: #fff;
    z-index: 1;
}
.mv-intro__text span{
    font-family: var(--font-inter);
    display: block;
    font-size: 58px;
    line-height: 1.6;
    font-weight: 900;
}
.mv-news{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 504px;
    z-index: 1;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    padding: 40px 60px;
    color: #fff;
}
.mv-news__label{
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 2px;
}
.mv-news__item{
    display: flex;
    gap: 20px;
}
.mv-news__item-date{
    white-space: nowrap;
    font-size: 14px;
    font-family: var(--font-inter);
    position: relative;
    bottom: -2px;
}
.mv-news__item-text{
    font-weight: 500;
}
.mv-news__item-text a{
    display: inline-block;
}
@media screen and (min-width: 992px) {
    .mv-news__item-text a:hover{
        text-decoration: underline;
    }
}
.mv-content{
    height: 200svh;
    padding-top: 100vh;
}
.mv-content__flex{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 110px;
    height: 100%;
}
.mv-content__flex-lead{
    position: relative;
    top: -20px;
    font-size: 36px;
    line-height: 1.7;
    color: #fff;
    font-family: var(--font-shippori);
}
.mv-content__flex-text{
    position: relative;
    bottom: -60px;
    color: #fff;
}


/* TOP ABOUT */
.top-about{
    padding: var(--padding) 0;
    background-color: var(--bg-gray);
}
.top-about__flex{
    justify-content: space-between;
}
.top-about__flex-box__sticky{
    position: sticky;
    top: 140px;
}
.top-about__flex-content{
    width: 100%;
    max-width: 730px;
}
.top-about__flex-content__item{
    padding: 60px 0;
    border-top: 1px solid var(--light-gray);
    position: relative;
}
.top-about__flex-content__item:last-child{
    padding-bottom: 0;
}
.top-about__flex-content__item::before{
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 20px;
    height: 1px;
    z-index: 1;
    background-color: var(--theme-color);
}
.top-about__flex-content__item-flex{
    justify-content: space-between;
}
.top-about__flex-content__item-flex__box{
    width: 100%;
    max-width: 370px;
    display: flex;
    flex-direction: column;
}
.top-about__flex-content__item-flex__img{
    width: 100%;
    max-width: 200px;
}
.top-about__flex-content__item-flex__img img{
    clip-path: inset(0 100% 0 0);
    transition: .4s;
}
.top-about__flex-content__item-flex__img.scrollin img{
    clip-path: inset(0 0 0 0);
}
.top-about__flex-content__item-flex__img img{
    border-radius: 10px;
}
.top-about__flex-content__item-num{
    color: var(--theme-color);
    font-weight: 500;
    font-family: var(--font-inter);
    margin-bottom: 14px;
}
.top-about__flex-content__item-num span{
    font-size: 11px;
    display: inline-block;
    background-color: var(--theme-color);
    width: 33px;
    text-align: center;
    line-height: 20px;
    color: #fff;
    border-radius: 13px;
    margin-left: 6px;
    position: relative;
    top: -2px;
}
.top-about__flex-content__item-flex__box-name{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 22px;
}
.top-about__flex-content__item-flex__box-text{
    text-align: right;
}
.top-about__flex-content__item-flex__box-text span{
    display: inline-block;
    text-align: left;
}
.top-about__flex-content__item-flex__box-btn{
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}
.top-about__flex-content__item-flex__box-btn__toggle,
.top-about__flex-content__item-flex__box-btn__link a{
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 500;
}
.top-about__flex-content__item-flex__box-btn__toggle{
    background-color: var(--text-color);
    font-family: var(--font-inter);
    font-size: 14px;
    position: relative;
    cursor: pointer;
    line-height: 30px;
    transition: var(--transition);
}
.top-about__flex-content__item-flex__box-btn__toggle span{
    width: 10px;
    height: 10px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 15px;
}
.top-about__flex-content__item-flex__box-btn__toggle span::before,
.top-about__flex-content__item-flex__box-btn__toggle span::after{
    content: "";
    position: absolute;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 1px;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transition: var(--transition);
}
.top-about__flex-content__item-flex__box-btn__toggle span::after{
    transform: translate(-50%,-50%) rotate(-90deg);
}
.top-about__flex-content__item-flex__box-btn__toggle.active{
    background-color: #eee;
    color: var(--text-color);
}
.top-about__flex-content__item-flex__box-btn__toggle.active span::before,
.top-about__flex-content__item-flex__box-btn__toggle.active span::after{
    background-color: var(--text-color);
}
.top-about__flex-content__item-flex__box-btn__toggle.active span::after{
    transform: translate(-50%,-50%) rotate(0);
}
.top-about__flex-content__item-flex__box-btn__link a{
    background-color: var(--theme-color);
    font-size: 13px;
    border: 1px solid var(--theme-color);
    line-height: 28px;
    height: 30px;
    position: relative;
}
.top-about__flex-content__item-flex__box-btn__link a::before{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 14px;
    width: 9px;
    height: 9px;
    background: url(../img/common/icon-arrow-wh.svg) no-repeat center center / contain;
    z-index: 1;
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .top-about__flex-content__item-flex__box-btn__link a:hover{
        opacity: 1;
    }
    .top-about__flex-content__item-flex__box-btn__link a:hover::before{
        right: 8px;
    }
}
.top-about__flex-content__item-hidden{
    padding-top: 80px;
}
.top-about__flex-content__item-hidden__lead{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 30px;
}
.top-about__flex-content__item-hidden__schedule{
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
}
.top-about__flex-content__item-hidden__schedule-ttl{
    font-weight: bold;
    margin-bottom: 30px;
}
.top-about__flex-content__item-hidden__schedule-ttl::before{
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--theme-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    top: -2px;
}
.top-about__flex-content__item-hidden__schedule-list dl{
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dashed var(--gray);
    padding: 14px 0;
}
.top-about__flex-content__item-hidden__schedule-list dl:first-child{
    padding-top: 0;
}
.top-about__flex-content__item-hidden__schedule-list dl:last-child{
    padding-bottom: 0;
    border-bottom: none;
}
.top-about__flex-content__item-hidden__schedule-list dl dt{
    width: 90px;
}
.top-about__flex-content__item-hidden__schedule-list dl dt span{
    border: 1px solid var(--text-color);
    border-radius: 13px;
    display: inline-block;
    width: 70px;
    line-height: 21px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-inter);
    position: relative;
    top: -2px;
}
.top-about__flex-content__item-hidden__schedule-list dl dd{
    width: calc(100% - 90px);
    font-size: 14px;
}
.top-about__flex-content__item-sp{
    display: none;
}


/* TOP PEOPLE */
.top-people{
    position: relative;
    z-index: 0;
    background-color: var(--bg-gray);
    padding-bottom: calc(var(--padding) * 0.625);
    padding-left: 40px;
}
.top-people::before{
    content: "";
    z-index: -1;
    background-color: var(--theme-color);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 57.859%;
}
.top-people__inner{
    padding: var(--padding) var(--space) calc(var(--padding) * 0.625) calc(var(--space) - 40px);
    background-color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.top-people__flex,
.top-data__flex{
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.top-people__flex-title,
.top-data__flex-title{
    margin-bottom: 0;
}
.top-people__flex-text,
.top-data__flex-text{
    text-align: right;
}
.top-people__grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.top-people__grid-item__thumb{
    position: relative;
}
.top-people__grid-item__thumb a{
    display: block;
}
@media screen and (min-width: 992px) {
    .top-people__grid-item__thumb a:hover{
        opacity: 1;
    }
    .top-people__grid-item__thumb a:hover .top-people__grid-item__thumb-img img{
        transform: scale(1.1);
    }
}
.top-people__grid-item__thumb-lead{
    position: absolute;
    padding: 0 40px 60px;
    bottom: 0;
    left: 0;
    width: 100%;
}
.top-people__grid-item__thumb-lead span{
    background-color: #fff;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.6;
    display: inline-block;
    padding: 1px 6px;
    margin-bottom: 4px;
}
.top-people__grid-item__thumb-lead span:last-child{
    margin-bottom: 0;
}
.top-people__grid-item__thumb-img{
    position: relative;
    padding-top: 127.7777%;
    overflow: hidden;
    border-radius: 10px;
}
.top-people__grid-item__thumb-img::before {
    content: "";
    width: 40px;
    height: 30px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    background: url(../img/common/icon-youtube.svg) no-repeat center center / contain;
    z-index: 1;
}
.top-people__grid-item__thumb-img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
    transform: scale(1.1);
}
.top-people__grid-item__thumb-img.scrollin img{
    transform: scale(1);
}
.top-people__grid-item__meta{
    padding: 20px 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.top-people__grid-item__meta + .top-people__grid-item__meta{
    padding-top: 5px;
}
.top-people__grid-item__meta-name{
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    font-family: var(--font-inter);
}
.top-people__grid-item__meta-tag{
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: flex-start;
    justify-content: flex-start;
}
.top-people__grid-item__meta-tag span{
    background-color: var(--text-color);
    color: #fff;
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    padding: 2px 10px;
    line-height: 1.6;
}


/* TOP DATA */
.top-data .wrap{
    position: relative;
}
.top-data__illust{
    position: absolute;
    top: calc((var(--padding) * -1) - 60px);
    right: 0;
    z-index: 1;
}
.top-data__grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.top-data__grid-item{
    border-radius: 10px;
    border: 1px solid var(--text-color);
    padding: 30px 40px 20px 30px;
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
}
.top-data__grid-item__label{
    font-weight: bold;
    position: relative;
    padding-left: 14px;
}
.top-data__grid-item__label::before{
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    border-radius: 50%;
    background-color: var(--theme-color);
    width: 6px;
    height: 6px;
}
.top-data__grid-item__label small{
    font-size: 12px;
}
.top-data__grid-item__data{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    margin-top: auto;
}
.top-data__grid-item__data-text.adjust{
    margin-top: -40px;
}
.top-data__grid-item__data-text__elm{
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    font-family: var(--font-inter);
}
.top-data__grid-item__data-text__elm span{
    font-size: 60px;
    line-height: 1.6;
    color: var(--theme-color);
    font-weight: normal;
}
.top-data__grid-item__data-text__elm span.padding{
    padding-left: 10px;
}
.top-data__grid-item__data-text__elm small{
    font-size: 18px;
}
.top-data__grid-item__data-text__elm:not(:first-child){
    margin-top: -16px;
}
.top-data__grid-item__att{
    position: absolute;
    top: 36px;
    right: 41px;
    font-size: 12px;
}


/* TOP MESSAGE */
.top-message__cont-box{
    padding: 40px 0;
    border-bottom: 1px dashed var(--gray);
}
.top-message__cont-box:first-child{
    padding-top: 0;
}
.top-message__cont-box__lead{
    /* font-size: 22px; */
    font-size: 20px;
    font-weight: 600;
    /* margin-bottom: 20px; */
}
.top-message__cont-box__lead span{
    color: var(--theme-color);
    margin-right: 12px;
}

/* TOP OUTLINE */
.top-outline__cont dl{
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px dashed var(--gray);
}
.top-outline__cont dl:first-child{
    padding-top: 0;
}
.top-outline__cont dl dt{
    width: 100%;
    max-width: 190px;
    font-weight: 500;
    padding-left: 20px;
}
.top-outline__cont dl dd{
    width: 100%;
    max-width: calc(100% - 190px);
}
.top-outline__cont-map{
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 16px;
    margin-left: 40px;
}
.top-outline__cont-map::before{
    content: "";
    width: 12px;
    height: 15px;
    position: absolute;
    top: 4px;
    left: 0;
    background: url(../img/common/icon-pin.svg) no-repeat center center / contain;
}
.top-outline__more{
    margin-top: 30px;
}
.top-outline__more a{
    margin-left: auto;
    width: 100%;
    max-width: 180px;
    line-height: 30px;
    background-color: var(--theme-color);
    color: #fff;
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    position: relative;
}
.top-outline__more a::before{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 14px;
    width: 9px;
    height: 9px;
    background: url(../img/common/icon-arrow-wh.svg) no-repeat center center / contain;
    z-index: 1;
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .top-outline__more a:hover{
        opacity: 1;
    }
    .top-outline__more a:hover::before{
        right: 8px;
    }
}



/* TOP NEWS */
.top-news__cont-box{
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px dashed var(--gray);
}
.top-news__cont-box:nth-of-type(n + 4){
    display: none;
}
.top-news__cont-box:first-child{
    padding-top: 0;
}
.top-news__cont-box__date{
    width: 100%;
    max-width: 100px;
    font-size: 12px;
    font-family: var(--font-inter);
    padding-left: 20px;
    position: relative;
    bottom: -4px;
}
.top-news__cont-box__item{
    width: 100%;
    max-width: calc(100% - 100px);
}
.top-news__cont-box__item-ttl span{
    display: inline-block;
    cursor: pointer;
}
@media screen and (min-width: 992px) {
    .top-news__cont-box__item-ttl a:hover{
        text-decoration: underline;
    }
}
.top-news__cont-box__item-ttl.link{
    position: relative;
    padding-right: 25px;
}
.top-news__cont-box__item-ttl.link::before{
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    width: 12px;
    height: 12px;
    z-index: 1;
    background: url(../img/common/icon-blank.svg) no-repeat center center / contain;
}
.top-news__cont-box__item-text{
    padding-top: 4px;
    font-size: 14px;
}



/* TOP FAQ */
.top-faq__cont-box{
    padding: 20px 0;
    border-top: 1px solid var(--light-gray);
    cursor: pointer;
}
.top-faq__cont-box__num{
    font-weight: 500;
    font-family: var(--font-inter);
    color: var(--theme-color);
    margin-bottom: 10px;
}
.top-faq__cont-box__num span{
    margin-left: 6px;
    color: #fff;
    background-color: var(--theme-color);
    border-radius: 13px;
    width: 33px;
    line-height: 20px;
    text-align: center;
    font-size: 11px;
    font-family: var(--font-inter);
    font-weight: 500;
    display: inline-block;
    position: relative;
    top: -2px;
}
.top-faq__cont-box__ttl{
    position: relative;
}
.top-faq__cont-box__ttl span{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-color: var(--text-color);
    transition: var(--transition);
}
.top-faq__cont-box__ttl span::before,
.top-faq__cont-box__ttl span::after{
    content: "";
    position: absolute;
    transform: translate(-50%,-50%);
    width: 41.66666%;
    height: 1px;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transition: var(--transition);
}
.top-faq__cont-box__ttl span::after{
    transform: translate(-50%,-50%) rotate(-90deg);
}
.top-faq__cont-box.active .top-faq__cont-box__ttl span{
    background-color: #eee;
}
.top-faq__cont-box.active .top-faq__cont-box__ttl span::before,
.top-faq__cont-box.active .top-faq__cont-box__ttl span::after{
    background-color: var(--text-color);
}
.top-faq__cont-box.active .top-faq__cont-box__ttl span::after{
    transform: translate(-50%,-50%) rotate(0);
}
.top-faq__cont-box__answer{
    padding-top: 20px;
}
.top-faq__cont-box__answer > span{
    font-weight: 500;
    font-family: var(--font-inter);
    color: var(--theme-color);
    display: block;
    margin-bottom: 10px;
}


/* TOP GALLERY */
.top-gallery{
    position: relative;
    z-index: 0;
    padding: 116px 0 95px;
}
.top-gallery__back{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 100%;
    z-index: -1;
}
.top-gallery__front-slider__item{
    width: 4526px;
    margin-right: 60px;
}
.top-gallery__front-slider .slick-track{
    width: calc((4526px * 5) + (60px * 5)) !important;
}
.top-gallery__back-slider__item{
    width: 4514px;
    margin-right: 50px;
}
.top-gallery__back-slider .slick-track{
    width: calc((4514px * 5) + (50px * 5)) !important;
}


/* TOP REQUIREMENTS */
.top-requirements{
    padding: 60px 0;
    background-color: var(--theme-color);
}
.top-requirements__grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.top-requirements__grid-item a{
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}
@media screen and (min-width: 992px) {
    .top-requirements__grid-item a:hover{
        opacity: 1;
        transform: scale(0.98);
    }
    .top-requirements__grid-item a:hover .top-requirements__grid-item__img img{
        transform: scale(1.1);
    }
}
.top-requirements__grid-item__box{
    width: calc(100% - 160px);
    padding: 20px 20px 0 20px;
    position: relative;
}
.top-requirements__grid-item__box-num{
    color: var(--theme-color);
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-inter);
    margin-bottom: 15px;
}
.top-requirements__grid-item__box-ttl{
    padding-left: 10px;
    font-weight: bold;
}
.top-requirements__grid-item__box-ttl span{
    font-weight: 200;
}
.top-requirements__grid-item__box-arrow{
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--text-color) url(../img/common/icon-arrow-wh.svg) no-repeat center center / 10px;
}
.top-requirements__grid-item__img{
    width: 160px;
    overflow: hidden;
}
.top-requirements__grid-item__img img{
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}


/* MODAL */
#overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-color);
    opacity: 0.7;
    z-index: 9998;
    display: none;
}
#modal{
    position: fixed;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    z-index: 9999;
    width: 100%;
    max-width: 1060px;
    border-radius: 10px;
    background-color: #fff;
    display: none;
}
.modal-content{
    position: relative;
}
.modal-content__inner{
    padding: 80px 80px 110px;
    overflow-y: scroll;
    max-height: 85svh;
}
.modal-content__close{
    position: absolute;
    right: 20px;
    z-index: 1;
    background-color: #eee;
    text-align: center;
    width: 100%;
    max-width: 180px;
    line-height: 30px;
    font-size: 14px;
    font-family: var(--font-inter);
    font-weight: 500;
    cursor: pointer;
}
.modal-content__close::before{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 15px;
    width: 10px;
    height: 1px;
    background-color: var(--text-color);
}
.modal-content__close.top{
    top: 20px;
}
.modal-content__close.bottom{
    bottom: 20px;
}
.modal-content__ttl{
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
}
.modal-content__ttl::before{
    content: "";
    width: 20px;
    height: 1px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
}
.modal-content__data dl{
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dashed #eee;
    padding: 20px 0;
}
.modal-content__data dl dt{
    font-weight: 500;
    width: 190px;
    padding-left: 20px;
}
.modal-content__data dl dd{
    width: calc(100% - 190px);
}
.modal-content__data dl dd span{
    color: var(--theme-color);
}
.modal-content__entry{
    margin-top: 60px;
}
.modal-content__entry a{
    display: block;
    font-weight: 500;
    font-family: var(--font-inter);
    color: #fff;
    background: var(--theme-color) url(../img/common/icon-arrow-wh.svg) no-repeat calc(100% - 30px) center / 14px;
    line-height: 60px;
    text-align: center;
    position: relative;
}
.modal-content__entry2{
    margin-top: 30px;
}
.modal-content__entry2 a{
    display: block;
    font-weight: 500;
    font-family: var(--font-inter);
    color: #fff;
    background: var(--text-color) url(../img/common/icon-arrow-wh.svg) no-repeat calc(100% - 30px) center / 14px;
    line-height: 60px;
    text-align: center;
    position: relative;
}

.modal-video-inner {
    width: 50%;
    
}
@media (max-width: 768px) {
    .modal-video-inner {
        width: 90%;
    }
}