@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;}
/*-----------------------------------------------
 * Template
 * Header
 * Modal
 * Link
-------------------------------------------------*/
/*-----------------------------------------------
 * Template
-------------------------------------------------*/
body {
    -webkit-text-size-adjust: 100%;
    background-color: #000;
    color: #fff;
    font-family: 'Noto Serif JP', "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 1.8;
    word-wrap: break-word;
}
.pc { display: block; }
.sp { display: none; }
a { color: #fff; }
a:hover { text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection {
    background: #fff;
    color: #000;
}
::-moz-selection {
    background: #fff;
    color:#000;
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
/* font */
.font-garamond { font-family: 'Cormorant Garamond', serif; }
.font-shadow{ text-shadow: 0px 0px 8px rgba(0,0,0,1); }
@media screen and (max-width:768px) { 
    html { 
        font-size: 62.5%;
    }
    body {
        font-size: 10px; 
        font-size: 1rem;
        min-width: 320px;
    }
    .sp { display: block; }
    .pc { display: none; }
    .ah:hover { opacity: 1; }
}
/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
    display: flex;
    flex-direction: column;
    width: 162px;
    pointer-events: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}
@media screen and (max-width:768px) {
    .header {
        width: 100%;
    }
    .header__in {
        -webkit-overflow-scrolling: touch;
        background-color: rgba(0,0,0,.8);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        width: 100%;
        height: 100%;
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 0;
        pointer-events: none;
        transition: all .3s ease-in-out;
    }
    .header.is-active .header__in {
        opacity: 1;
        pointer-events: auto;
    }
    /**
     * Menu trigger
     */
    .header__navBtn {
        background-color: rgba(0,0,0,.6);
        border: 2px solid rgba(255,255,255,.4);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;
    }
    .header__navBtn a {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
    }
    .header__navBtn__lineWrap {
        width: 22px;
        height: 8px;
        margin: auto;
        position: absolute;
        top: 13px;
        right: 0;
        left: 0;
        z-index: 1;
    }
    .header__navBtn--line {
        background-color: #fff;
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        transition: all .3s ease-in-out;
    }
    .header__navBtn--line:before {
        content: "";
        background-color: #fff;
        border-radius: 50%;
        width: 3px;
        height: 3px;
        position: absolute;
        top: -1px;
        right: -1px;
    }
    .header__navBtn--line:nth-child(1) {
        top: 0;
    }
    .header__navBtn--line:nth-child(2) {
        bottom: 0;
    }
    .header__navBtn a.is-active .header__navBtn--line:nth-child(1) {
        top: 4px;
        transform: rotate(20deg);
    }
    .header__navBtn a.is-active .header__navBtn--line:nth-child(2) {
        bottom: 3px;
        transform: rotate(-20deg);
    }
    .header__navBtn--text {
        color: #fff;
        font-size: 11px;
        font-size: 1.1rem;
        line-height: 1.2;
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%) scale(.8);
        z-index: 1;
        transition: all .3s ease-in-out;
    }
    .header__navBtn--text:before {
        content: "Menu";
    }
    .header__navBtn a.is-active .header__navBtn--text:before {
        content: "Close";
    }
}
/**
 * Navigation
 */
.headerNav {
    padding: 27px 0;
}
.headerLogo {
    display: flex;
    justify-content: center;
    width: 162px;
}
.headerLogo img {
    width: 104px;
}
@media screen and (max-width:768px) {
    .headerNav {
        padding: 30px 0;
    }
    .headerLogo {
        display: block;
        width: 146px;
        margin: 0 auto;
    }
    .headerLogo img {
        width: 100%;
    }
}
/**
 * lists
 */
.headerNavLists {
    margin-top: 18px;
}
@media screen and (max-width:768px) {
    .headerNavLists {
        margin-top: 26px;
    }
}
/* item */
.headerNavLists__item > a {
    color: #fff;
    display: block;
    font-size: 16px;
    width: 100%;
    overflow: hidden;
    padding: 8px 0 8px 41px;
    position: relative;
    text-decoration: none;
}
.headerNavLists__item > a:before {
    content: "";
    background-color: #fff;
    display: block;
    width: 0;
    height: 1px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    transition: width .6s cubic-bezier(0.25, 1, 0.5, 1);
}
.headerNavLists__item > a:hover:before,
.headerNavLists__item > a.is-active:before {
    width: 40px;
}
.headerNavLists__item > a:after {
    content: "";
    background-color: #fff;
    border-radius: 50%;
    display: block;
    width: 3px;
    height: 3px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -3px;
    transition: left .6s cubic-bezier(0.25, 1, 0.5, 1);
}
.headerNavLists__item > a:hover:after,
.headerNavLists__item > a.is-active:after {
    left: 40px;
}
.headerNavLists__item > a span {
    display: block;
    transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}
.headerNavLists__item > a:hover span,
.headerNavLists__item > a.is-active span {
    transform: translateX(12px);
}
@media screen and (max-width:768px) {
    .headerNavLists__item {
        width: 100%;
    }
    .headerNavLists__item > a {
        display: flex;
        align-items: center;
        font-size: 1.6rem;
        padding: 12px 0;
    }
    .headerNavLists__item > a:hover:before, .headerNavLists__item > a.is-active:before {
        width: 32%;
        position: relative;
    }
    .headerNavLists__item > a:hover:after,
    .headerNavLists__item > a.is-active:after {
        left: 32%;
    }
    .headerNavLists__item > a span {
        width: 68%;
        margin-left: auto;
        padding-left: 24px;
    }
    .headerNavLists__item > a:hover span, .headerNavLists__item > a.is-active span {
         transform: translateX(0); 
    }
    /* storyNavigation */
    .hsNavLists__item{
        display: flex;
        align-items: center;
        width: 100%;
        font-size: 1.6rem;
    }
    .hsNavLists__item > a {
        display: block;
        width: calc(68% - 24px);
        margin-left: auto;
        padding-left: 48px;
        position: relative;
        padding: 12px 0 12px 24px;
        text-decoration: none;
    }
    .hsNavLists__item > a span {
        display: inline-block;
        position: relative;
    }
    .hsNavLists__item > a span:before {
        content: "";
        background-color: #fff;
        border-radius: 50%;
        width: 3px;
        height: 3px;
        margin: auto;
        position: absolute;
        bottom: -3px;
        right: 0;
        left: 0;
    }
    .hsNavLists__item > a span:after {
        content: "";
        background-color: #fff;
        width: 100%;
        height: 1px;
        margin: auto;
        position: absolute;
        bottom: -2px;
        left: 0;
        transform: scale(0,1);
        transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .hsNavLists__item > a span:hover:after,
    .hsNavLists__item > a.is-active span:after {
        transform: scale(1);
    }
}
/**
 * scroll btn
 */
.scbtn {
    display: flex;
    justify-content: center;
    width: 80px;
    height: 160px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9999;
}
.scbtn__text {
    color: #fff;
    font-size: 12px;
    position: absolute;
    bottom: 40px;
    left: 64px;
    white-space: nowrap;
}
.scbtn__lineWrap {
    width: 3px;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.scbtn__lineWrap:before {
    content: "";
    background-color: rgba(255,255,255,.2);
    display: block;
    width: 1px;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
}
.scbtn__line {
    background-color: #fff;
    width: 1px;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    animation: scrollDown 2.4s ease-in-out infinite;
}
.scbtn__line:after {
    content: "";
    background-color: #fff;
    border-radius: 50%;
    width: 3px;
    height: 3px;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: 0;
    left: -1px;
}
@keyframes scrollDown { 
    0%   { top: -100%; }
    70%, 100% { top: 100%; }
}
@media screen and (max-width:768px) {
    .scbtn {
        width: 40px;
        height: 80px;
    }
    .scbtn__text {
        bottom: 18px;
        left: 45px;
    }
}
/**
 * share
 */
.header__shareWrap {
    display: none;
}
@media screen and (max-width:768px) {
    .header__shareWrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 40px;
    }
    .header__shareWrap dt {
        color: #fff;
        font-size: 14px;
        font-size: 1.4rem;
        margin-right: 14px;
        white-space: nowrap;
    }
    .header__shareWrap .shareLists {
        display: flex;
        justify-content: center;
    }
    .header__shareWrap .shareLists__item {
        width: 36px;
        height: 36px;
        margin: 0 6px;
    }
    .header__shareWrap .shareLists__item a {
        background-repeat: no-repeat;
        background-position: center; 
        background-size: 22px;
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }
    .header__shareWrap .shareLists__item a.shareLists__link--tw {
        background-image: url(../img/common/icon_twitter.svg);
    }
    .header__shareWrap .shareLists__item a.shareLists__link--fb {
        background-image: url(../img/common/icon_facebook.svg);
    }
    .header__shareWrap .shareLists__item a.shareLists__link--line {
        background-image: url(../img/common/icon_line.svg);
    }
}
/*-----------------------------------------------
 * Modal
-------------------------------------------------*/
.modalBox {
    -webkit-overflow-scrolling: touch;
    background: rgba(0,0,0,.75);
    display: none;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.oneModal {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.oneModalIn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    min-width: 1200px;
    min-height: 100%;
    margin: 0 auto;
    position: relative;
}
.oneModalIn__cont {
    padding: 50px 0;
}
@media screen and (max-width:768px) {
    .oneModalIn {
        min-width: 100%;
    }
    .oneModalIn__cont {
        width: 100%;
        padding: 30px 0;
    }
}
/* closeBtn */
.closeBtn {
    width: 100%;
    height: 100%;
    min-width: 1200px;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.closeBtn a {
    background: #000 url(../img/common/close.png) no-repeat 0 0 / 100%;
    display: block;
    width: 80px;
    height: 80px;
    pointer-events: auto;
    position: absolute;
    top: 0;
    right: 0;
}
@media screen and (max-width:768px) {
    .closeBtn {
        min-width: 100%;
    }
    .closeBtn a {
        width: 40px;
        height: 40px;
    }
}
/* common */
.commonIframe {
    width: 100%;
    height: 100%;
    display: block;
}
/* youtube */
.youtubeIframeWrap {
    width: 920px;
    height: 520px;
}
@media screen and (max-width:768px) {
    .youtubeIframeWrap {
        width: 100%;
        height: auto;
        padding-top: 56.25%;
        position: relative;
    }
    .youtubeIframe {
        position: absolute;
        top: 0;
        left: 0;
    }
}
/*-----------------------------------------------
 * Link
-------------------------------------------------*/
/* link-deco */
.deco-icon {
    display: block;
    width: 35px;
    height: 40px;
    position: relative;
    transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}
.deco-icon:before {
    content: "";
    background-image: url(../img/common/deco_allow.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 0;
    display: block;
    width: 100%;
    height: 100%;
}
.deco-icon:after {
    content: "";
    background-image: url(../img/common/deco_star.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 0;
    display: block;
    width: 12px;
    height: 12px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -6px;
}
.link-deco:hover .deco-icon {
    transform: translateX(14px) rotateX(360deg);
}
@media screen and (max-width:768px) {
    .deco-icon {
        width: 22px;
        height: 25px;
    }
    .deco-icon:after {
        width: 6px;
        height: 6px;
        left: -1px;
    }
}