@charset "utf-8";
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}
/*-----------------------------------------------
 * Bace
 * Modal
 * Header
 * Footer
 * Parts
-------------------------------------------------*/
:root {
    --main-color: 31,39,116;
    --main-font-size: min(1.3vw, 22px); /* 16px */
    --min-font-size:  min(1vw, 16px);   /* 12px */
    --title-en-size:  min(2.5vw, 40px); /* 30px */
    --title-ja-size:  min(1.16vw, 20px);/* 14px */
    --cont-width: 78%;
    --cont-maxwidth: 1600px;
    --cubic-bezier-easeOutQuart: 0.25, 1, 0.5, 1;
}
@media screen and (max-width:1024px){
    :root {
        --main-font-size: 2.8vw;
        --min-font-size:  2.6vw;
        --title-en-size:  4.8vw;
        --title-ja-size:  2.4vw;
        --cont-width: 100%;
        --cont-maxwidth: 100%;
    }
}

/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 100;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 200;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 300;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 400;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold");
    font-weight: bold;
}
body{
    -webkit-text-size-adjust: 100%;
    background-color: #fff;
    color: #000;
    font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.07em;
    line-height: 1.8;
    word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #222; }
a:hover{ text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection{
    background: #6ccfee;
    color: #fff;
}
::-moz-selection{
    background: #6ccfee;
    color:#fff;
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background: #d5d5d5;
}
body::-webkit-scrollbar-thumb,
.modalBox::-webkit-scrollbar-thumb,
.header__inner::-webkit-scrollbar-thumb {
    background: rgb(var(--main-color));
}
@media screen and (max-width:1024px){ 
    html{ 
        font-size: 62.5%;
    }
    body{
        font-size: 10px; 
        font-size: 1rem;
    }
    .sp{ display: block; }
    .pc{ display: none; }
    .ah:hover { opacity: 1; }
}

/**
 * font-family
 */
.font-jost {
    font-family: 'Jost', sans-serif;
}

/**
 * main
 */
.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-left: 20.83333%;
    position: relative;
    z-index: 1001;
}
@media screen and (max-width:1024px){
    .main {
        display: block;
        width: 100%;
        margin-left: 0;
    }
}

/**
 * fullWrap
 */
#fullWrap {
    position: relative;
    z-index: 1;
}


/*-----------------------------------------------
 * Modal
-------------------------------------------------*/

/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
    -webkit-overflow-scrolling: touch;
    display: none;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* bg */
.modalBox__bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    pointer-events: none;
}
.modalBox__bg:before {
    content: "";
    background-color: rgba(255,255,255,.8);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform .6s cubic-bezier(var(--cubic-bezier-easeOutQuart));
}
.modalBox__bg.is-active:before {
    transform: translateX(0);
}

/* oneModal */
.oneModal{
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* oneModalIn */
.oneModalIn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    position: relative;
}
.oneModalIn__cont{
    padding: 50px 0;
}
@media screen and (max-width:1024px){
    .oneModalIn{
        min-width: 100%;
    }
    .oneModalIn__cont{
        width: 100%;
        padding: 30px 0;
    }
}

/**
 * closeBtn
 */
.closeBtn{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 2;
}
@media screen and (max-width:1024px){
    .closeBtn{
        width: 6vw;
        height: 6vw;
        top: 6vw;
        right: 6vw;
    }
}
.closeBtn a{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.closeBtn a:before {
    content: "";
    background-color: rgba(var(--main-color),1);
    width: 100%;
    height: 100%;
    -webkit-mask-image: url(../img/common/close.svg);
    mask-image: url(../img/common/close.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: transform .3s ease-in-out;
}
.closeBtn a:hover:before {
    content: "";
    transform: rotate(180deg);
}

/**
 * iframe
 */
/* common */
.commonIframe{
    width: 100%;
    height: 100%;
    display: block;
}

/* youtube */
.youtubeIframeWrap {
    width: 70%;
    max-width: 159.993vh;
    position: relative;
}
@media screen and (max-width:1024px){
    .youtubeIframeWrap {
        width: 100%;
        max-width: 100%;
    }
}
.youtubeIframeWrap:before{
    content: "";
    display: block;
    padding-top: 56.25%;
    z-index: 0;
}
.youtubeIframe{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/**
 * imgModal
 */
.imgModal__imgWrap {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 80px 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.imgModal__imgWrap img {
    max-width: 1024px;
    height: 100%;
    object-fit: contain;
    pointer-events: auto;
}
@media screen and (max-width:1024px){
    .imgModal__imgWrap {
        height: auto;
        padding: 24px;
        position: relative;
        top: auto;
        left: auto;
    }
    .imgModal__imgWrap img {
        max-width: 100%;
        height: auto;
    }
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
    width: 20.83333%;
    height: 100vh;
    min-height: 630px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
@media screen and (max-width:1024px){
    .header {
        width: 100%;
        height: auto;
        min-height: auto;
    }
    .header:before {
        content: "";
        background-color: rgba(var(--main-color),1);
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        z-index: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform .6s cubic-bezier(var(--cubic-bezier-easeOutQuart));
    }
    .header.is-active:before {
        transform: translateX(0);
    }
}

/* inner */
.header__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
}
@media screen and (max-width:1024px){
    .header__inner {
        -webkit-overflow-scrolling: touch;
        display: block;
        width: 100%;
        height: 100%;
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        padding: 12vw 0;
        opacity: 0;
        pointer-events: none;
        z-index: 1;
        transition: opacity .5s ease-in-out;
    }
    .header.is-active .header__inner {
        transition-delay: .4s;
        opacity: 1;
        pointer-events: auto;
    }
}

/**
 * headerNav
 */
.headerNav {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}
@media screen and (max-width:1024px){
    .headerNav {
        height: auto;
        position: relative;
        top: auto;
        z-index: 1;
    }
}

/* logo */
.headerNav__logo {
    width: 90px;
    height: 90px;
    margin: auto;
    position: absolute;
    top: 40px;
    right: 0;
    left: 0;
}
.headerNav__logo a {
    display: block;
    width: 100%;
    height: 100%;
}
@media screen and (max-width:1024px){
    .headerNav__logo {
        width: 21.3vw;
        height: 21.3vw;
        margin-bottom: 12vw;
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        transform: translateY(0%) !important;
    }
}

/* img */
.headerNav__logo--img {
    background-color: rgba(var(--main-color),1);
    display: block;
    width: 100%;
    height: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}
@media screen and (max-width:1024px){
    .headerNav__logo--img {
        background-color: #d5d5d5;
    }
}

/**
 * headerNavLists
 */
.headerNavLists {
    margin-top: auto;
    padding: 0 13% 40px;
}
@media screen and (max-width:1024px){
    .headerNavLists {
        padding: 0 8vw 0;
    }
}

/* item */
.headerNavLists__item:first-child {
    display: none;
}
.headerNavLists__item:not(:nth-child(2)) {
    margin-top: 6px;
}
.headerNavLists__item a {
    color: rgba(var(--main-color),1);
    display: block;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-decoration: none;
}
@media screen and (max-width:1024px){
    .headerNavLists__item:not(:nth-child(2)) {
        margin-top: 3vw;
    }
    .headerNavLists__item a {
        color: #d5d5d5;
        font-size: 5.86vw;
    }
}

/* span */
.headerNavLists__item a span {
    position: relative;
}
.headerNavLists__item a span:before {
    content: "";
    background-color: rgba(var(--main-color),1);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}
.headerNavLists__item a:hover span:before,
.headerNavLists__item a.is-active span:before {
    transform-origin: left top;
    transform: scale(1, 1);
}
@media screen and (max-width:1024px){
    .headerNavLists__item a span:before {
        background-color: #d5d5d5;
    }
}

/**
 * navBtn
 */
@media screen and (max-width:1024px){
    .header__navBtnWrap {
        background-color: #fff;
        border-radius: 50%;
        width: 13.3vw;
        height: 13.3vw;
        position: absolute;
        top: 2.6vw;
        right: 2.6vw;
        z-index: 2;
    }
    .header__navBtn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: relative;
    }
    .header__navBtn__lineWrap {
        width: 6vw;
        height: 3.1vw;
        position: relative;
    }
    .header__navBtn--line {
        border-radius: 0.46vw;
        background-color: rgba(var(--main-color),1);
        display: block;
        width: 100%;
        height: 1vw;
        margin: auto;
        position: absolute;
        transition: all .3s ease-in-out;
    }
    .header__navBtn--line:nth-child(1) {
        top: 0;
    }
    .header__navBtn--line:nth-child(2) {
        bottom: 0;
    }
    .header__navBtn.is-active .header__navBtn--line:nth-child(1) {
        top: 1vw;
        transform: rotate(45deg);
    }
    .header__navBtn.is-active .header__navBtn--line:nth-child(2) {
        bottom: 1.12vw;
        transform: rotate(-45deg);
    }
}


/*-----------------------------------------------
 * Footer
-------------------------------------------------*/
.footer {
    margin-left: 20.83333%;
    padding: 80px 0;
    position: relative;
    z-index: 1001;
}
@media screen and (max-width:1024px){
    .footer {
        margin-left: 0;
        padding: 6.66666vw 0;
    }
}

/* copyright */
.copyright {
    color: rgba(var(--main-color),1);
    display: block;
    font-size: 14px;
    text-align: center;
}
@media screen and (max-width:1024px){
    .copyright {
        font-size: 2.1vw;
    }
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/

/**
 * shareLists
 */
.shareLists {
    display: flex;
}

/* item */
.shareLists__item {
    width: 60px;
    height: 60px;
}

/* link */
.shareLists__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}
.shareLists__link:before {
    content: "";
    background-color: #000;
    display: block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    transition: background-color .4s ease;
}
.shareLists__link:hover:before {
    background-color: #ff0000;
}

/* 各SNSパーツ */
.shareLists__item.is-twitter .shareLists__link:before {
    width: 26px;
    height: 26px;
    -webkit-mask-image: url(../img/common/icon_tw.svg);
    mask-image: url(../img/common/icon_tw.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
    width: 26px;
    height: 26px;
    -webkit-mask-image: url(../img/common/icon_fb.svg);
    mask-image: url(../img/common/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
    width: 26px;
    height: 26px;
    -webkit-mask-image: url(../img/common/icon_line.svg);
    mask-image: url(../img/common/icon_line.svg);
}