@charset "UTF-8";
/*====================================================*/
/* common */
/*====================================================*/
html{
    font-size: 62.5%;
}
body {
    background-color: #000;
    font-family: 'Zen Old Mincho', serif;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.05em;
}
img {
    max-width: 100%;
}
a {
    display: block;
}
dt {
    font-weight: normal;
}

:root {
    --font-Marcellus: "Marcellus", serif;
    --hover-transition: all .3s ease;
}


/*====================================================*/
/* layout */
/*====================================================*/
.wrap_p {
    padding-left : calc( 80 * 100% / 750 );
    padding-right : calc( 80 * 100% / 750 );
}
.wrap_m {
    margin-left : calc( 80 * 100% / 750 );
    margin-right : calc( 80 * 100% / 750 );
}

@media print,screen and (min-width: 550px) and (max-width:1024px){
    .wrap_p {
        padding-left : calc( 100 * 100% / 1025 );
        padding-right : calc( 100 * 100% / 1025 );
    }
    .wrap_m {
        margin-left : calc( 100 * 100% / 1025 );
        margin-right : calc( 100 * 100% / 1025 );
    }
}
@media print,screen and (min-width: 1025px){
    .wrap_p {
        padding-left : calc( 150 * 100% / 1500 );
        padding-right : calc( 150 * 100% / 1500 );
    }
    .wrap_m {
        margin-left : calc( 150 * 100% / 1500 );
        margin-right : calc( 150 * 100% / 1500 );
    }
}
@media print,screen and (min-width: 1500px){
    .wrap_p {
        padding-left : calc( ( 100% - 1200px ) / 2 );
        padding-right : calc( ( 100% - 1200px ) / 2 );
    }
    .wrap_m {
        margin-left : calc( ( 100% - 1200px ) / 2 );
        margin-right : calc( ( 100% - 1200px ) / 2 );
    }
}


/*====================================================*/
/* header */
/*====================================================*/
#header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}
#header.is_fixed {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    animation-name: anime;
    animation-duration: 0.3s;
}
@keyframes anime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}
#header a {
    transition: var(--hover-transition);
}
#header a:hover {
    opacity: 0.6;
}
#header a span {
    font-weight: 900;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left : calc( 30 * 100% / 750 );
    margin-right : calc( 44 * 100% / 750 );
    padding: 2.5rem 0;
}
.page-front .header-container {
    justify-content: end;
}
.page-front .logo {
    display: none;
}
#header.page-front.is_fixed .header-container {
    justify-content: space-between;
}
#header.is_fixed .logo {
    display: block;
    width: 80px;
}
#header.is_fixed .logo img {
    width: 40%;
}
#header.is_fixed .logo p {
    margin-right: 3px;
    font-size: 5px;
}


.toggle-container {
    position: fixed;
    top: -150vh;
    transition: all 0.3s;
}
.toggle-container.active {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: #000;
    top: 0;
    z-index: 50;
    overflow: auto;
}

@media print,screen and (max-width: 1024px){
    .header-navi {
        display: none;
    }
    .toggle {
        width: 3rem;
        height: 2rem;
        position: relative;
        z-index: 100;
        cursor: pointer;
    }
    .toggle span {
        display: block;
        width: 100%;
        height: 1.5px;
        background-color: #fff;
        position: absolute;
        transition: opacity .3s,transform .3s;
    }
    .toggle span:first-of-type {
        top: 0;
    }
    .toggle span:nth-of-type(2) {
        width: 76%;
        top: 0.9rem;
        right: 0;
    }
    .toggle span:last-of-type {
        width: 58%;
        bottom: 0;
        right: 0;
    }
    /* 閉じる */
    .toggle.active span:first-of-type {
        background-color: #fff;
        top: 50%;
        transform: rotate(45deg);
    }
    .toggle.active span:nth-of-type(2) {
        opacity: 0;
    }
    .toggle.active span:last-of-type {
        width: 100%;
        background-color: #fff;
        top: 50%;
        transform: rotate(-45deg);
    }

    .toggle-inner {
        width: 100%;
        margin-top: 5.5rem;
        margin-left : calc( 50 * 100% / 750 );
        margin-right : calc( 50 * 100% / 750 );
    }
    .toggle-navi {
        margin-top: 2rem;
    }
    .toggle-navi li:not(:last-of-type) {
        margin-bottom: 1.5rem;
    }
    .toggle-navi li:last-of-type {
        margin-bottom: 4.5rem;
    }
    .toggle-navi li a {
        padding-bottom: 1rem;
        font-size: 12px;
        position: relative;
    }
    .toggle-navi li a span {
        display: block;
        margin-bottom: 5px;
        font-size: 16px;
    }
    .toggle-navi > a {
        margin-bottom: 1.5rem;
    }
    .toggle-navi .sns {
        width: 2em;
        height: 2em;
        margin-top: 2rem;
        padding-bottom: 4rem;
    }
}
@media print,screen and (min-width: 1025px){
    .toggle {
        display: none;
    }
    .header-container {
        margin-left : calc( 100 * 100% / 1500 );
        margin-right : calc( 100 * 100% / 1500 );
        padding: 3.5rem 0;
    }

    #header.is_fixed .logo {
        width: 130px;
    }
    #header.is_fixed .logo p {
        font-size: 8px;
    }

    .header-navi ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        font-size: 1.2rem;
        letter-spacing: 0.1em;
        text-align: center;
    }
    .header-navi ul li:nth-of-type(2) {
        margin-right: min(3vw, 40px);
        margin-left: min(3vw, 40px);
    }
    .header-navi ul li:nth-of-type(4) {
        margin-left: min(3vw, 40px);
    }
    .header-navi ul li:nth-of-type(5),
    .header-navi ul li:nth-of-type(7) {
        margin-right: min(2.5vw, 30px);
        margin-left: min(2.5vw, 30px);
    }
    .header-navi li a span {
        display: block;
        margin-bottom: 0.5em;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
    }
    .header-navi .sns {
        width: 2rem;
        height: 2rem;
    }
    .header-navi ul li:last-of-type a {
        padding: 0.5em 1.25em;
        border: 0.5px solid #ccc;
    }
}
@media print,screen and (min-width: 1400px){
    .header-container {
        margin-left : calc( ( 100% - 1300px ) / 2 );
        margin-right : calc( ( 100% - 1300px ) / 2 );
    }
}


/*====================================================*/
/* footer */
/*====================================================*/
#footer {
    width: 100%;
    background-color: #000;
    position: relative;
    z-index: 0;
}
#footer a {
    transition: var(--hover-transition);
}
#footer a:hover {
    opacity: 0.6;
}
.foot-wrap {
    padding-top: 3rem;
    padding-left : calc( 30 * 100% / 750 );
    padding-right : calc( 44 * 100% / 750 );
    position: relative;
    z-index: 10;
}
.foot-left .logo {
    width: min(45vw, 170px);
    margin: auto;
}
.foot-left .logo p {
    margin-left: 1rem;
}
.foot-left .sns {
    width: 1.2rem;
    height: 1.2rem;
    margin: 2rem auto 0;
}
.foot-right {
    margin-top: 3rem;
}
.foot-navi ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.foot-navi ul li {
    width: 7em;
    white-space: nowrap;
}
.foot-navi ul:first-of-type li:nth-of-type(2),
.foot-navi ul:first-of-type li:nth-of-type(6) {
    width: 10em;
}
.foot-navi ul:first-of-type li:nth-last-of-type(-n+3){
    margin-top: 1.5rem;
}
.foot-navi ul:last-of-type {
    margin-top: 1.5rem;
    padding-top: 1.8rem;
    border-top: 0.5px solid #fff;
}
#footer small {
    display: block;
    margin-top: 7rem;
    padding-bottom: 1rem;
    font-size: 9px;
    text-align: center;
}

@media print,screen and (min-width: 1025px){
    .foot-wrap {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-end;
        justify-content: space-between;
        padding-top: 15rem;
        padding-left : calc( 100 * 100% / 1500 );
        padding-right : calc( 100 * 100% / 1500 );
        font-size: 1.2rem;
    }
    .foot-left {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }
    .foot-left .logo {
        width: min(20vw, 220px);
        margin: 0;
    }
    .foot-left .sns {
        width: 2rem;
        height: 2rem;
        margin: 0;
        margin-top: 3.25rem;
        margin-right: 2.5rem;
    }
    .foot-right {
        margin-top: 0;
    }
    .foot-navi ul {
        flex-wrap: nowrap;
    }
    .foot-navi ul li {
        width: auto;
    }
    .foot-navi ul li:not(:last-of-type) {
        margin-right: min(3vw, 75px);
    }
    .foot-navi ul:first-of-type li:nth-of-type(2),
    .foot-navi ul:first-of-type li:nth-of-type(6) {
        width: auto;
    }
    .foot-navi ul:first-of-type li:nth-last-of-type(-n+3){
        margin-top: 0;
    }

    
    #footer small {
        padding-bottom: 3rem;
    }
}
@media print,screen and (min-width: 1500px){
    .foot-wrap {
        margin-left : calc( ( 100% - 1300px ) / 2 );
        margin-right : calc( ( 100% - 1300px ) / 2 );
    }
}


/*====================================================*/
/* 共通 */
/*====================================================*/
/* ロゴ */
.logo {
    display: block;   
}
.logo img {
    width: 50%;
}
.logo p {
    display: inline-block;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: normal;
}
@media print,screen and (min-width: 1025px){
    .logo p {
        font-size: clamp(9px, 1.1vw, 12px);
    }
}

/* 表示・非表示 */
@media print,screen and (max-width: 1024px){
    .pc_only {
        display: none;
    }
}
@media print,screen and (min-width: 1025px){
    .sp_only {
        display: none;
    }
}

.link-btn {
    display: inline-block;
    margin-right: auto;
    font-family: 'Noto Sans JP', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.11em;
    line-height: 1;
}
.link-btn::after {
    content: "";
    display: inline-block;
    margin-left: 1em;
    border-left: 6px solid transparent;
    border-bottom: 6px solid #fff;
}
@media print,screen and (min-width: 1025px){
    .link-btn {
        font-size: 1.8rem;
    }
    .link-btn::after {
        border-left: 12px solid transparent;
        border-bottom: 12px solid #fff;
    }
}


/*====================================================*/
/* ローディングアニメーション */
/*====================================================*/
.loading {
    width: 100vw;
    height: 100vh;
    transition: all 0.5s;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}
.loading.is-active {
    opacity: 0;
    visibility: hidden;
}
.loading-animation {
    width: 100vw;
    height: 100vh;
    transition: all 0.5s;
    background-color: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    /* opacity: 0;
    visibility: hidden; */
}
.loading-animation.is-active {
    opacity: 1;
    visibility: visible;
}
.loading-animation video {
    width: 90%;
    margin: auto;
    animation: puff-out-center 10s ease-out forwards;
}
@keyframes puff-out-center {
    0% {
        width: 90%;
    }
    99% {
        width: 90%;
        background-color: #000;
    }
    100% {
        width: 100%;
        background-color: #fff;
    }
}