@charset "utf-8";
body {
    overflow-x: hidden;
}
@media screen and (max-width:767px){
    html, body {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        touch-action: none;
    }
}

.f-en{
    font-family: var(--f-en);
}

/*------------------------------
LOADING
------------------------------*/
#loading {
	position:fixed;
    inset: 0;
	z-index:99999;
	display: flex;
	justify-content: center;
	align-items: center;
    overflow: hidden;
}
@media screen and (max-width:767px) {
	#loading {
		height: 100svh;
	}
}

.loading__bg{
    position: absolute;
    inset: 0;
    width: 100%;
    background: url(../img/top/bg/bg_green1.jpg) repeat-x left center / cover;
    z-index: -1;
}

.loading__visual{
    position: absolute;
    inset: 0;
    z-index: 1000;
    background: url(../img/loading/visual.jpg) no-repeat center bottom; 
    background-size: 100% auto;
}

.loading__book{
    background: url(../img/loading/book.png) no-repeat center center / calc(100% + calc(555/ var(--vw-min) * 100vw)) auto;
    width:100%;
    height:100%;		
}

.loading__logo{
    width: calc(447/ var(--vw-min) * 100vw);
    height: calc(256/ var(--vw-min) * 100vw);
    background: url(../img/logo.png) no-repeat center center / contain;
}
.-start .loading__logo {
    opacity: 0;
    filter: blur(15px);
    transform: scale(1.6);
    transition: opacity .8s ease,filter .8s ease, transform .8s ease;
}
/*-----------------------
fv ani
-----------------------*/
.-start .loading__visual {
  animation: ani_visual 4.5s ease-in-out forwards;
}
@keyframes ani_visual {
	0% {
		background-position: center bottom;
	}
    50% {
		background-position: center top;
	}
    60% {
		background-position: center top;
	}
    85% {
        background-position: center center;
		opacity: 1;
	}
	100% {
		opacity: 0;
        background-position: center center;
	}
}

.-start .loading__book {
  animation:
    ani_bookSize 1.5s ease forwards 4.3s,
    ani_bookFade 0.6s ease-in-out forwards 6.3s;/**/
}
@keyframes ani_bookSize {
    0% {
        background-size: calc(100% + calc(565 / var(--vw-min) * 100vw)) auto;
    }
    5% {
        background-size: 100% auto;
    }
    100% {
        background-size: 100% auto;
        width: min(calc(500 / var(--vw-min) * 100vw), 500px);
    }
}
@keyframes ani_bookFade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


#loading.-start {
  animation: ani_loadingOut 2s ease-in-out forwards 7.2s;
}

@keyframes ani_loadingOut {
  0% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    filter: brightness(2.2);
  }
  100% {
    opacity: 0;
  }
}

/* skip */
.loading__skip{
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10000;
    font-family: var(--f-en);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3b231c;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: min(calc(18 / var(--vw-min) * 100vw), 18px);
    line-height: 1;
    height: min(calc(38 / var(--vw-min) * 100vw), 38px);
    padding: 0 min(calc(24 / var(--vw-min) * 100vw), 24px);
    cursor: pointer;
    padding-top: min(calc(2 / var(--vw-min) * 100vw), 2px);
}
.loading__skip::after{
    content: "";
    border: 1px solid #a89266;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    margin: auto;
    position: absolute;
    inset: 0;
    pointer-events: none;
}
@media screen and (max-width:767px){
    .loading__skip{
        display: none;
    }
}

/* caution */
@media screen and (max-width:767px){
    .start-caution {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index:99998; /* loadingよりも下 */
        transition: opacity .3s ease;
    }
    .start-caution.is-show {
        opacity: 1;
    }
    .start-caution__inner {
        background-color: rgba(0, 0, 0, .65);
        border-radius: calc(12 / var(--vh-min) * var(--fvh));
        padding: calc(24 / var(--vh-min) * var(--fvh));
    }
    .start-caution__icon {
        width: calc(91 / var(--vh-min) * var(--fvh));
        height: calc(82 / var(--vh-min) * var(--fvh));
        margin: 0 auto;
        position: relative;
    }
    .start-caution__icon:before {
        content: "";
        background: url(../img/common/icon/cau_icon.png) no-repeat center / contain;
        width: 100%;
        height: 100%;
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .start-caution.is-show .start-caution__icon:before {
        animation: smooth-move 0.7s ease-in-out 4 alternate;
        animation-fill-mode: forwards;
    }
    @keyframes smooth-move {
        from {
            transform: translateX(-30%); /* 左端からスタート */
        }
        to {
            transform: translateX(30%);  /* 右端までノンストップ */
        }
    }
    .start-caution__inner > p {
        color: #fff;
        font-size: calc(24 / var(--vh-min) * var(--fvh));
        line-height: 1;
        margin-top: 0.5em;
        text-align: center;
    }
}

.bg{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/top/bg/bg_green1.jpg) repeat-x left center / cover;
    z-index: -1;
}


/* frame */
.frame{
     position: fixed;
     width: 100%;
     height: 100vh;
     pointer-events: none;
     z-index: 10;
     inset: 0;
}
.frame__deco{
    display: block;
     width: 100%;
     height: 100%;
     position: relative;
}
.frame__deco::before{
     content: "";
     display: block;
     background: url(../img/deco/deco_reaf_btm.png) no-repeat left bottom / contain;
     width: min(calc(348/ var(--vw-min) * 100vw), 348px);
     height: min(calc(286/ var(--vw-min) * 100vw), 286px);
     position: absolute;
     left: 35px;
     bottom: 0;
}
.frame__deco::after{
     content: "";
     display: block;
     background: url(../img/deco/deco_reaf_top.png) no-repeat right top / contain;
     width: min(calc(453/ var(--vw-min) * 100vw), 453px);
     height: min(calc(258/ var(--vw-min) * 100vw), 258px);
     position: absolute;
     right: 0;
     top: 0;
}
@media screen and (max-width:767px){
    .frame{
        height: var(--fvh);
    }
    .frame__deco::before{
        background-image: url(../img/deco/deco_reaf_btm_sp.png);
        width: calc(338 / var(--vh-min) * var(--fvh));
        height: calc(296 / var(--vh-min) * var(--fvh));
        left: 0;
        bottom: calc(96 / var(--vh-min) * var(--fvh));
    }
    .frame__deco::after{
        background-image: url(../img/deco/deco_reaf_top_sp.png);
        width: calc(338 / var(--vh-min) * var(--fvh));
        height: calc(306 / var(--vh-min) * var(--fvh));
    }
}

/**/
.pagination{
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    /* width: 335px; */
    width: 72px;
    height: 100%;
    z-index: 100;
    background: linear-gradient(rgba(57, 150, 115, 1) 0%, rgba(21, 116, 147, 1) 100%);
    border-radius: 0 24px 24px 0;
    overflow: hidden;
    transition: width .3s ease;
}
@media screen and (min-width:768px){
    .pagination:hover {
        width: 335px;
    }
}
@media screen and (max-width:767px){
    .pagination {
        width: 100%;
        height: calc(96 / var(--vh-min) * var(--fvh));
        border-radius: calc(24 / var(--vh-min) * var(--fvh)) calc(24 / var(--vh-min) * var(--fvh)) 0 0;
        top: auto;
    }
}
.pageNavLists {
    margin-top: 160px;
}
.pageNavLists > li {
    opacity: .6;
    position: relative;
    transition: opacity .3s ease;
}
.pageNavLists > li.is-active {
    opacity: 1;
}
.pageNavLists > li > a {
    display: flex;
    align-items: center;
    color: #f6f2b5;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    padding-left: 72px;
    width: 100%;
    height: 44px;
    position: relative;
}
.pageNavLists > li > a:before {
    content: "";
    background: url(../img/common/icon/icon_nav_hone2.png) no-repeat center / contain;
    width: 22px;
    height: 23px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    z-index: 1;
    opacity: 1;
    transition: opacity .3s ease;
}
.pageNavLists > li > a:after {
    content: "";
    background: url(../img/common/icon/icon_nav_hone1.png) no-repeat center / contain;
    width: 48px;
    height: 21px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    opacity: 0;
    transition: opacity .3s ease;
}
@media screen and (max-width:767px){
    .pageNav {
        width: calc(100vw - calc(160 / var(--vh-min) * var(--fvh)));
        height: 100%;
        overflow: hidden;
        padding-left: calc(38 / var(--vh-min) * var(--fvh));
    }
    .pageNavLists {
        height: 100%;
        display: flex;
        gap: 0 calc(30 / var(--vh-min) * var(--fvh));
        margin-top: 0;
        overflow-x: scroll;
        white-space: nowrap;

        /* --- スクロールバー非表示の設定 --- */
        scrollbar-width: none;/* Firefox用 */
    }
    /* Chrome, Safari用 */
    .pageNavLists::-webkit-scrollbar {
        display: none;
    }
    .pageNavLists > li {
        height: 100%;
    }
    .pageNavLists > li > a {
        height: 100%;
        font-size: calc(24 / var(--vh-min) * var(--fvh));
        padding-left: calc(80 / var(--vh-min) * var(--fvh));
    }
    .pageNavLists > li > a:before {
        width: calc(35 / var(--vh-min) * var(--fvh));
        height: calc(33 / var(--vh-min) * var(--fvh));
        left: calc(34 / var(--vh-min) * var(--fvh));
    }
    .pageNavLists > li > a:after {
        width: calc(72 / var(--vh-min) * var(--fvh));
        height: calc(32 / var(--vh-min) * var(--fvh));
        left: 0;
    }
}
.pageNavLists > li.is-active > a:before {
    opacity: 0;
}
.pageNavLists > li.is-active > a:after {
    opacity: 1;
}
@media screen and (hover: hover) and (pointer: fine) {
    .pageNavLists > li:hover {
        opacity: 1;
    }
}

.pagetop {
    width: 58px;
    height: 56px;
    position: absolute;
    bottom: 24px;
    left: 7px;
}
.pagetop > a {
    display: block;
    background: url(../img/common/icon/pagetop.png) no-repeat center / contain;
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .pagetop {
        width: calc(87 / var(--vh-min) * var(--fvh));
        height: calc(83 / var(--vh-min) * var(--fvh));
        margin: auto;
        top: 0;
        right: calc(30 / var(--vh-min) * var(--fvh));
        bottom: 0;
        left: auto;
    }
}

.areaWrap{
    display: flex;
    flex-direction: row;
    width: max-content;
    height: 100vh;
}
.area{
    flex-shrink: 0;
    width: 1366px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width:767px){
    .areaWrap{
        display: flex;
        height: 100%;
        will-change: transform;
    }
    .area{
        width: 100vw;
        height: 100svh;
    }
}

.deco__pageText {
    background: url(../img/deco/deco_text1.png) no-repeat center / contain;
    width: 110px;
    height: 39px;
    position: absolute;
    top: 60px;
    right: 80px;
}
@media screen and (max-width:767px){
    .deco__pageText {
        width: calc(159 / var(--vh-min) * 100svh);
        height: calc(57 / var(--vh-min) * 100svh);
        top: calc(120 / var(--vh-min) * 100svh);
        right: calc(134 / var(--vh-min) * 100svh);
    }
}

/*---------------------
 FV
--------------------- */
.fvArea{
    justify-content: flex-start;
}
.fvArea__inner{
    width: 1366px;
    padding: 20px 0;
}
.fv__contentsBlockWrap{
    display: flex;
    align-items: center;
    background: url(../img/top/visual/visual_obi.png) no-repeat left center / auto;
    position: relative;
}
.fv__visualBlock{
    width: 761px;
    height: 924px;
    background: url(../img/top/visual/kv_book.png) no-repeat center center / contain;
    position: relative;
    margin-left:-25px;
}
.kvListsWrap{
    border: 4px solid #c1882a;
    width: 587px;
    height: 803px;
    overflow: hidden;
    display: flex;
    position: absolute;
    left: 102px;
    top: 60px;
}
.kvLists{
    width: 100%;
}
.kvItem{
    width: 100%;
    height: 100%;
}
.kvItem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
    .fvArea {
        /* width: calc(var(--fvh) * calc(750 / 1334)); */
        width: 100vw;
    }
    .fvArea__inner{
        width: 100%;
        padding: 0;
    }
    .fv__contentsBlockWrap{
        background: none;
    }
    .fv__visualBlock{
        width: 100%;
        height: auto;
        background: none;
        margin-left: 0;
    }
    .kvListsWrap{
        border: none;
        width: 100%;
        height: auto;
        position: relative;
        left: auto;
        top: auto;
    }
    .kvItem img{
        width: 100%;
        height: 100%;
    }
}

.fv__txtBlock{
    width: 584px;
    height: 574px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 78px 0;
    margin-left: 70px;
    position: relative;
}
@media screen and (max-width:767px){
    .fv__txtBlock{
        display: none;
    }
}
.fv__txtBlock:before {
    content: "";
    background: url(../img/top/visual/fv_text1.png) no-repeat center / contain;
    width: 183px;
    height: 12px;
    position: absolute;
    bottom: 20px;
    right: 44px;
}
.fv__txtBlock:after {
    content: "";
    background: url(../img/deco/deco_foot.png) no-repeat center / contain;
    width: 87px;
    height: 101px;
    position: absolute;
    bottom: -90px;
    right: 80px;
}
.fv__logo{
    width: 447px;
    height: 256px;
    background: url(../img/logo.png) no-repeat center center / contain;
    margin-top: -80px;
}

.fv__onair {
    background: url(../img/top/visual/fv_onair.png) no-repeat center / contain;
    width: 727px;
    height: 219px;
}

.fv__decoWrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (max-width:767px){
    .fv__decoWrap {
        display: none;
    }
}
.fv__decoWrap > div {
    background: url() no-repeat center / contain;
    position: absolute;
}
.fv__decoWrap > div.fv__deco1 {
    background-image: url(../img/deco/deco_hane1.png);
    width: 219px;
    height: 205px;
    top: 20px;
    left: 110px;
}
.fv__decoWrap > div.fv__deco2 {
    background-image: url(../img/deco/deco_hane2.png);
    width: 217px;
    height: 131px;
    top: 250px;
    right: -120px;
}
.fv__decoWrap > div.fv__deco3 {
    background-image: url(../img/deco/deco_hane3.png);
    width: 161px;
    height: 105px;
    bottom: 190px;
    right: -60px;
}

/*---------------------
CONTENSTS COMMON
--------------------- */
/*BG book*/
.-book{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}
.-book::after{
    display: block;
    content: "";
    position: absolute;
    margin: auto;
    inset: 0;
    z-index: -1;
}

/*ttl*/
.area__ttlWrap{
    display: inline-block;
    border-radius: 0 min(calc(100/ var(--vw-min) * 100vw), 100px) min(calc(100/ var(--vw-min) * 100vw), 100px) 0;
    border: 2px solid #a89266;
    border-left: unset; 
    padding: 1.5px 1.5px 1.5px 0;
    margin-bottom: 48px;
}
.area__ttl{
    padding:0 80px;
    color: #FFF;
    border-radius: 0 min(calc(100/ var(--vw-min) * 100vw), 100px) min(calc(100/ var(--vw-min) * 100vw), 100px) 0;
    background: linear-gradient(90deg,rgba(21, 116, 147, 1) 0%, rgba(57, 150, 115, 1) 100%);
    position: relative;
    height:72px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.area__ttl__en{
    font-size: 72px;
    font-weight: 800;
    line-height: .64em;
    padding-top: 5px;
    padding-left:35px;
    position: relative;
}
.area__ttl__en::before{
    content: "";
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-mask: url(../img/deco/deco_kira.svg) no-repeat center center / contain;
    mask: url(../img/deco/deco_kira.svg) no-repeat center center / contain;
    background-color: #FFF;
}
@media screen and (max-width:767px){
    .area__ttlWrap {
        margin-top: calc(90 / var(--vh-min) * var(--fvh));
        margin-bottom: calc(64 / var(--vh-min) * var(--fvh));
        margin-left: calc(30 / var(--vh-min) * var(--fvh));
    }
    .area__ttl {
        height: calc(115 / var(--vh-min) * var(--fvh));
        padding: 0 calc(115 / var(--vh-min) * var(--fvh));
    }
    .area__ttl__en{
        font-size: calc(103 / var(--vh-min) * var(--fvh));
        padding-left: calc(42 / var(--vh-min) * var(--fvh));
    }
    .area__ttl__en::before {
        width: calc(32 / var(--vh-min) * var(--fvh));
        height: calc(32 / var(--vh-min) * var(--fvh));
    }
}

/*---------------------
 NEWS
--------------------- */
/* .newsArea{
    padding-left: 5px;
    width: 1277px;
} */
.newsArea .areaContents{
    padding: 0 85px;
}
.newsArea .area__ttl__jp{
    width: min(calc(100/ var(--vw-min) * 100vw), 100px);
    height: min(calc(25/ var(--vw-min) * 100vw), 25px);
    -webkit-mask: url(../img/ttl/ttl_news_jp.svg) no-repeat left center / contain;
    mask: url(../img/ttl/ttl_news_jp.svg) no-repeat left center / contain;
    background-color: #FFF;
    margin-left: min(calc(20/ var(--vw-min) * 100vw), 20px);
}
@media screen and (max-width:767px){
    .newsArea{
        width: auto;
        padding: 9vh 0 15vh;
    }
    .newsArea .areaContents {
        padding: 0 calc(134 / var(--vh-min) * var(--fvh));
    }
    .newsArea .area__ttl__jp {
        width: calc(128 / var(--vh-min) * var(--fvh));
        height: calc(29 / var(--vh-min) * var(--fvh));
        margin-left: calc(20 / var(--vh-min) * var(--fvh));
    }
}

/* .newsArea.-book::after{
    width:1158px;
    height:708px;
    background: url(../img/top/bg/sub_book.png) no-repeat left center;
    background-size: contain;
    left: 85px;
} */
.newsArea__inner{
    background: url(../img/top/bg/sub_book.png) no-repeat left center / contain;
    width:1158px;
    height:708px;
    /* padding-right: min(calc(35/ var(--vw-min) * 100vw), 35px); */
    position: relative;
    margin-left: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsArea__bookin{
    height: 673px;
    width: 100%;
    padding: 50px 18px;
}
@media screen and (max-width:767px){
    .newsArea__inner{
        background-position: center;
        width: calc(calc(var(--fvh) - 24vh) * calc(1651 / 1003));
        height: 100%;
        padding: 0;
        margin-left: calc(var(--fvh) * calc(41 / 1334));
        margin-right: calc(var(--fvh) * calc(41 / 1334));
        margin-top: 0;
    }
    .newsArea__bookin{
        width: 100%;
        height: 100%;
        padding:0;
        margin-left: 0;
    }
}

/* NEWS > contents */
.newsLists{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 432px;
    gap:40px 45px ;
}
@media screen and (max-width:767px){
    .newsLists{
        height: calc(553 / var(--vh-min) * var(--fvh));
        gap: calc(58  / var(--vh-min) * var(--fvh)) calc(70 / var(--vh-min) * var(--fvh));
    }
    .newsItem {
        width: calc(50% - calc(35 / var(--vh-min) * var(--fvh)));
    }
}
.newsItem__link{
    display: flex;
    text-decoration: none;
}
.newsItem__img{
    position: relative;
    width: 180px;
    height: 101px;
    border: 2px solid #FFF;
    background-color: #FFF;
    flex-shrink: 0;
    margin-right:min(calc(25/ var(--vw-min) * 100vw), 25px);
    box-shadow: #8b6c5a 0px 0px 5px;
}
.newsItem__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
    .newsItem__img{
        width: calc(259 / var(--vh-min) * var(--fvh));
        height: calc(145 / var(--vh-min) * var(--fvh));
        margin-right: calc(36 / var(--vh-min) * var(--fvh));
    }
}
.newsItem__img::after{
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    margin: auto;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    border: 2px solid #916e49;
}
.newsItem__img::before{
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    margin: auto;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border: 1px solid #916e49;
}
.newsItem__txt{
    /* width: min(calc(252/ var(--vw-min) * 100vw), 252px); */
    width: 252px;
    display: flex;
    flex-direction: column;
}
.item__date{
    display: block;
    /* font-size: min(calc(16/ var(--vw-min) * 100vw), 16px); */
    font-size: 16px;
    font-family: var(--f-en);
    color: #462f22;
    font-weight: 800;
    border-bottom: 1px solid #462f22;
    margin-bottom: 12px;
    line-height: 30px;
    padding-left: 43px;
    background: url(../img/news/news_data_deco.png) no-repeat left center / 37px auto;
    letter-spacing: 0;
}
.newsItem__ttl{
    overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
    font-size: 16px;
}
@media screen and (max-width:767px){
    .newsItem__txt{
        width: calc(100% - calc(259 / var(--vh-min) * var(--fvh)));
    }
    .item__date{
        font-size: calc(24 / var(--vh-min) * var(--fvh));
        line-height: calc(36 / var(--vh-min) * var(--fvh));
        padding-left: calc(60 / var(--vh-min) * var(--fvh));
        background-size: calc(48 / var(--vh-min) * var(--fvh));
        margin-bottom: calc(16 / var(--vh-min) * var(--fvh));
    }
    .newsItem__ttl{
        font-size: calc(24 / var(--vh-min) * var(--fvh));
    }
}

/* deco */
.newsArea__decoWrap {
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
}
.newsArea__decoWrap > div {
    background: url() no-repeat center / contain;
    position: absolute;
}
.newsArea__decoWrap > div.newsArea__deco1 {
    background-image: url(../img/deco/deco_img1.png);
    width: 113px;
    height: 144px;
    bottom: -60px;
    right: 170px;
}
.newsArea__decoWrap > div.newsArea__deco2 {
    background-image: url(../img/deco/deco_img2.png);
    width: 93px;
    height: 144px;
    bottom: -30px;
    right: 70px;
}
@media screen and (max-width:767px){
    .newsArea__decoWrap > div.newsArea__deco1 {
        width: calc(162 / var(--vh-min) * var(--fvh));
        height: calc(215 / var(--vh-min) * var(--fvh));
        right: calc(254 / var(--vh-min) * var(--fvh));
        bottom: calc(-64/ var(--vh-min) * var(--fvh));
    }
    .newsArea__decoWrap > div.newsArea__deco2 {
        width: calc(134 / var(--vh-min) * var(--fvh));
        height: calc(207 / var(--vh-min) * var(--fvh));
        right: calc(107 / var(--vh-min) * var(--fvh));
        bottom: calc(-14 / var(--vh-min) * var(--fvh));
    }
}

/*---------------------
 INTRODUCTION
 ---------------------*/
.introArea{
    -webkit-mask: url(../img/top/bg/bg_mask.svg) no-repeat left center / cover;
    mask: url(../img/top/bg/bg_mask.svg) no-repeat left center / cover;
    height: 100vh;
    position: relative;
    clip-path: inset(0);
    width: 1108px;
}
@media screen and (max-width:767px){
    .introArea{
        width: auto;
        height: 100svh;
        padding: 9vh 0 15vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
}

/*bg*/
.intro__bg{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/top/bg/bg_intro.jpg) no-repeat center center / cover;
    background-attachment: fixed;
    z-index: -1;
}

.introArea__inner{
    padding: 0 100px;
    position: relative;
    z-index: 1;
}
.introArea__inner.-book::after{
    width: 951px;
    height: 707px;
    background: url(../img/top/bg/intro_book.png) no-repeat left center / contain;
}
.introArea__bookin{
    width: 915px;
    height: 708px;
    margin: 0 auto;
    padding-top: 68px;
    position: relative;
}
@media screen and (max-width:767px){
    .introArea__inner{
        background: url(../img/top/bg/intro_book.png) no-repeat center / contain;
        width: calc(calc(var(--fvh) - 24vh) * calc(1354 / 1004));
        height: 100%;
        padding: 0;
        margin-left: calc(var(--fvh) * calc(137 / 1334));
        margin-right: calc(var(--fvh) * calc(106 / 1334));
    }
    .introArea__inner.-book::after{
        content: none;
    }
    .introArea__bookin{
        width: 100%;
        height: 100%;
        padding-top: 0;
        padding: 0 calc(27 / var(--vh-min) * var(--fvh));
    }
}

/*ttl*/
.introArea .area__ttlWrap{
    width: 100%;
    display: block;
    border-radius: 0;
    border-right: unset;
    border-left: unset; 
    padding: 1.5px 1.5px 1.5px 0;
    margin-bottom: 48px;
}
.introArea .area__ttl{
    padding:0 80px;
    color: #FFF;
    border-radius: 0 0;
    border-right: unset;
    position: relative;
    height:72px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.introArea .area__ttl__jp{
    position: absolute;
    width: 136px;
    height: 35px;
    bottom: -50px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #462f22;
    -webkit-mask: url(../img/ttl/ttl_intro_jp.svg) no-repeat center center / contain;
    mask: url(../img/ttl/ttl_intro_jp.svg) no-repeat center center / contain;
}
@media screen and (max-width:767px){
    .introArea .area__ttlWrap{
        margin-bottom: 0;
        margin-left: 0;
    }
    .introArea .area__ttl{
        height: calc(115 / var(--vh-min) * var(--fvh));
        padding: 0;
    }
    .introArea .area__ttl__jp{
        width: calc(180 / var(--vh-min) * var(--fvh));
        height: calc(38 / var(--vh-min) * var(--fvh));
        bottom: calc(-80 / var(--vh-min) * var(--fvh));
    }
}

/* contents */
.introArea .areaContents{
    display: flex;
    align-items: center;
    padding: 0 120px;
}
.introTxtWrap{
    text-align: center;
    position: relative;
    width: 675px;
    padding: 48px 28px;
    margin-top: 60px;
}
.introTxtWrap::before{
    content: "";
    width: 100%;
    height: 14px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/top/introdction/intro_deco_line.png) no-repeat center top /contain;
}
.introTxtWrap::after{
    content: "";
    width: 100%;
    height: 14px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: url(../img/top/introdction/intro_deco_line.png) no-repeat center bottom /contain;
}
.introTxt{
    font-size: 16px;
}
.introTxt_txt2_img{
    width: 660px;
    height: auto;
}
@media screen and (max-width:767px){
    .introArea .areaContents{
        width: calc(670 / var(--vh-min) * var(--fvh));
        padding: 0;
        margin: calc(80 / var(--vh-min) * var(--fvh)) auto 0;
    }
    .introTxtWrap{
        width: 100%;
        padding: calc(30 / var(--vh-min) * var(--fvh)) 0;
        margin-top: calc(90 / var(--vh-min) * var(--fvh));
    }
    .introTxtWrap::before,
    .introTxtWrap::after {
        height: calc(17 / var(--vh-min) * var(--fvh));
    }
    .introTxt {
        font-size: calc(30 / var(--vh-min) * var(--fvh));
        line-height: 2;
    }
    .introTxt_txt2_img{
        width: calc(699 / var(--vh-min) * var(--fvh));
    }
}

/* deco */
.introArea__decoWrap {
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    z-index: 2;
}
.introArea__decoWrap > div {
    background: url() no-repeat center / contain;
    position: absolute;
}
.introArea__decoWrap > div.introArea__deco1 {
    background-image: url(../img/deco/deco_img3.png);
    width: 240px;
    height: 142px;
    bottom: 0;
    right: 80px;
}
@media screen and (max-width:767px){
    .introArea__decoWrap > div.introArea__deco1 {
        width: calc(347 / var(--vh-min) * var(--fvh));
        height: calc(203 / var(--vh-min) * var(--fvh));
        right: calc(120 / var(--vh-min) * var(--fvh));
        bottom: calc(-60 / var(--vh-min) * var(--fvh));
    }
}

/*---------------------
 STAFF
 ---------------------*/

.staffArea{
    height: 100vh;
    position: relative;
    /* clip-path: inset(0); */
}
@media screen and (max-width:767px){
    .staffArea {
        width: auto;
        height: 100svh;
        padding: 9vh 0 15vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
}

/*bg*/
.staff__bg{
    -webkit-mask: url(../img/top/bg/bg_mask2.svg) no-repeat right center / cover;
    mask: url(../img/top/bg/bg_mask2.svg) no-repeat right center / cover;
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    margin-left: -50px;
}
.staff__bg:before {
    -webkit-mask: url(../img/top/bg/bg_mask.svg) no-repeat left center / cover;
    mask: url(../img/top/bg/bg_mask.svg) no-repeat left center / cover;
    content: "";
    background: url(../img/top/bg/bg_staff.jpg) no-repeat center center / cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (max-width:767px){
    .staff__bg{
        width: calc(100% + calc(80 / var(--vh-min) * var(--fvh)));
        height: 100svh;
        margin-left: calc(-80 / var(--vh-min) * var(--fvh));
    }
}

/* .staffArea{
    padding: 0 92px;
    margin-left: -50px;
} */
.staffArea .areaContents{
    padding: 0 88px;
}
.staffArea .area__ttl__jp{
    width: min(calc(100/ var(--vw-min) * 100vw), 100px);
    height: min(calc(25/ var(--vw-min) * 100vw), 25px);
    -webkit-mask: url(../img/ttl/ttl_sfaff_jp.svg) no-repeat left center / contain;
    mask: url(../img/ttl/ttl_staff_jp.svg) no-repeat left center / contain;
    background-color: #FFF;
    margin-left: min(calc(20/ var(--vw-min) * 100vw), 20px);
}
@media screen and (max-width:767px){
    .staffArea .areaContents{
        padding: 0 calc(134 / var(--vh-min) * var(--fvh));
    }
    .staffArea .area__ttl__jp {
        width: calc(128 / var(--vh-min) * var(--fvh));
        height: calc(29 / var(--vh-min) * var(--fvh));
        margin-left: calc(20 / var(--vh-min) * var(--fvh));
    }
}

/* .staffArea__inner.-book::after{
    width:1158px;
    height:708px;
    background: url(../img/top/bg/sub_book.png) no-repeat left center;
    background-size: contain;
    left: -15px;
} */
.staffArea__inner{
    background: url(../img/top/bg/sub_book.png) no-repeat left center / contain;
    width:1158px;
    height:708px;
    margin-left: -100px;
    position: relative;
    z-index: 1;
}
.staffArea__bookin{
    height: 673px;
    width: 1120px;
    padding:50px 0;
}
@media screen and (max-width:767px){
    .staffArea__inner{
        background-position: center;
        width: calc(calc(var(--fvh) - 24vh) * calc(1651 / 1003));
        height: 100%;
        padding: 0;
        margin-left: calc(var(--fvh) * calc(41 / 1334));
        margin-right: calc(var(--fvh) * calc(110 / 1334));
        margin-top: 0;
    }
    .staffArea__bookin{
        width: 100%;
        height: 100%;
        padding:0;
        margin-left: 0;
    }
}

/* staffLists */
.staffLists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    column-gap: 48px;
    margin-top: 40px;
}
.staffLists__item {
    border-bottom: 1px solid #a89266;
    display: flex;
    align-items: center;
    padding: 8px 0;
}
.staffLists__item > dt {
    color: #399673;
    font-size: 16px;
    letter-spacing: -.06em;
    line-height: 1.5em;
    width: 120px;
}
.staffLists__item > dd {
    display: flex;
    flex-wrap: wrap;
    font-size: 20px;
    width: calc(100% - 120px);
}
.staffLists__item > dd small {
    display: block;
    width: 100%;
    font-size: 12px;
    letter-spacing: -.06em;
    margin-top: -.5em;
}
@media screen and (max-width:767px){
    .staffLists {
        margin-top: calc(80 / var(--vh-min) * var(--fvh));
        column-gap: calc(70 / var(--vh-min) * var(--fvh));
    }
    .staffLists__item {
        padding: calc(10 / var(--vh-min) * var(--fvh)) 0;
    }
    .staffLists__item > dt {
        font-size: calc(24 / var(--vh-min) * var(--fvh));
        width: calc(188 / var(--vh-min) * var(--fvh));
    }
    .staffLists__item > dd {
        font-size: calc(28 / var(--vh-min) * var(--fvh));
        width: calc(100% - calc(188 / var(--vh-min) * var(--fvh)));
    }
    .staffLists__item > dd small {
        font-size: calc(17 / var(--vh-min) * var(--fvh));
    }
}

/* comBtn */
.staffLists__comBtn {
    width: 31px;
    height: 28px;
    display: block;
    position: relative;
    margin-left: 4px;
}
.staffLists__comBtn:before {
    content: "";
    background: url(../img/common/icon/icon_fukidashi.png) no-repeat center / contain;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
@media screen and (max-width:767px){
    .staffLists__comBtn {
        width: calc(45 / var(--vh-min) * var(--fvh));
        height: calc(40 / var(--vh-min) * var(--fvh));
        margin-left: .5em;
    }
}

/* deco */
.staffArea__decoWrap {
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    z-index: 2;
}
.staffArea__decoWrap > div {
    background: url() no-repeat center / contain;
    position: absolute;
}
.staffArea__decoWrap > div.staffArea__deco1 {
    background-image: url(../img/deco/deco_img4.png);
    width: 138px;
    height: 142px;
    bottom: -30px;
    right: 80px;
}
.staffArea__decoWrap > div.staffArea__deco2 {
    background-image: url(../img/deco/deco_img5.png);
    width: 53px;
    height: 52px;
    bottom: 20px;
    right: 240px;
}
.staffArea__decoWrap > div.staffArea__deco3 {
    background-image: url(../img/deco/deco_img6.png);
    width: 115px;
    height: 116px;
    top: -26px;
    right: 200px;
}
@media screen and (max-width:767px){
    .staffArea__decoWrap > div.staffArea__deco1 {
        width: calc(197 / var(--vh-min) * var(--fvh));
        height: calc(203 / var(--vh-min) * var(--fvh));
        right: calc(147 / var(--vh-min) * var(--fvh));
        bottom: calc(-25 / var(--vh-min) * var(--fvh));
    }
    .staffArea__decoWrap > div.staffArea__deco2 {
        width: calc(75 / var(--vh-min) * var(--fvh));
        height: calc(73 / var(--vh-min) * var(--fvh));
        right: calc(387 / var(--vh-min) * var(--fvh));
        bottom: calc(40 / var(--vh-min) * var(--fvh));
    }
    .staffArea__decoWrap > div.staffArea__deco3 {
        width: calc(166 / var(--vh-min) * var(--fvh));
        height: calc(167 / var(--vh-min) * var(--fvh));
        right: calc(302 / var(--vh-min) * var(--fvh));
        top: calc(-12 / var(--vh-min) * var(--fvh));
    }
}

/*---------------------
 BOOKS
 ---------------------*/
.booksArea{
    /* -webkit-mask: url(../img/top/bg/bg_mask.svg) no-repeat left center / auto 100%;
    mask: url(../img/top/bg/bg_mask.svg) no-repeat left center / auto 100%; */
    height: 100vh;
    position: relative;
    /* clip-path: inset(0); */
    width: 1080px;
}
@media screen and (max-width:767px){
    .booksArea{
        width: auto;
        height: 100svh;
        padding: 9vh 0 15vh;
    }
}

/*bg*/
/* .books__bg{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/top/bg/bg_books.png) no-repeat center center / cover;
    background-attachment: fixed;
    z-index: -1;
} */

/* .booksArea{
    padding: 0 92px;
    margin-left: -50px;
} */
.booksArea .areaContents{
    padding: 0 92px;
}
.booksArea .area__ttl__jp{
    width: min(calc(100/ var(--vw-min) * 100vw), 100px);
    height: min(calc(25/ var(--vw-min) * 100vw), 25px);
    -webkit-mask: url(../img/ttl/ttl_books_jp.svg) no-repeat left center / contain;
    mask: url(../img/ttl/ttl_books_jp.svg) no-repeat left center / contain;
    background-color: #FFF;
    margin-left: min(calc(20/ var(--vw-min) * 100vw), 20px);
}
@media screen and (max-width:767px){
    .booksArea .areaContents{
        padding: 0 calc(134 / var(--vh-min) * var(--fvh));
    }
    .booksArea .area__ttl__jp {
        width: calc(128 / var(--vh-min) * var(--fvh));
        height: calc(29 / var(--vh-min) * var(--fvh));
        margin-left: calc(20 / var(--vh-min) * var(--fvh));
    }
}

/* .booksArea__inner.-book::after{
    width:1158px;
    height:708px;
    background: url(../img/top/bg/sub_book.png) no-repeat left center;
    background-size: contain;
    left: -15px;
} */
.booksArea__inner{
    background: url(../img/top/bg/sub_book.png) no-repeat left center / contain;
    width:1158px;
    height: 708px;
    margin-right: -60px;
    position: relative;
    z-index: 1;
}
.booksArea__bookin{
    height: 673px;
    width: 100%;
    padding:50px 18px;
}
@media screen and (max-width:767px){
    .booksArea__inner{
        background-position: center;
        width: calc(calc(var(--fvh) - 24vh) * calc(1651 / 1003));
        height: 100%;
        padding: 0;
        margin-left: calc(var(--fvh) * calc(41 / 1334));
        margin-right: calc(-110 / var(--vh-min) * var(--fvh));
        margin-top: 0;
    }
    .booksArea__bookin{
        width: 100%;
        height: 100%;
        padding: 0;
        margin-left: 0;
    }
}

/* booksLists */
.booksLists {
    display: grid;
    grid-template-columns: 2.22fr 1fr 1fr 1fr 1fr; 
    gap: 10px 30px;
}
.booksLists > li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.booksLists > li a {
    display: block;
    text-decoration: none;

}
.booksLists > li img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 8px #8b6c5a;
}
@media screen and (max-width:767px){
    .booksLists {
        gap: calc(7 / var(--vh-min) * var(--fvh)) calc(44 / var(--vh-min) * var(--fvh));
    }
}

/* 1巻（大きい要素）の指定 */
.booksLists > li:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.booksLists__cap {
  font-size: 14px;
  margin-top: 0.4em;
  text-align: center;
}
@media screen and (max-width:767px){
    .booksLists__cap {
        font-size: calc(24 / var(--vh-min) * var(--fvh));
    }
}

/* パネル毎のz-indexが効かないので、フッター手前のコンテンツにフッター背景配置 */
.footer__bg {
    content: "";
    background: url(../img/top/bg/bg_footer.jpg) no-repeat center / 100%;
    width: 540px;
    height: 1366px;
    margin: auto;
    position: absolute;
    top: 0;
    right: -540px;
    bottom: 0;
    z-index: 0;
}
.footer__bg__inner {
    display: none;
}
@media screen and (max-width:767px){
    .footer__bg {
        background-image: url(../img/top/bg/bg_footer_sp.jpg);
        background-size: cover;
        height: var(--fvh);
        width: calc(750 / var(--vh-min) * var(--fvh));
        right: calc(-750 / var(--vh-min) * var(--fvh));
    }
    .footer__bg__inner {
        display: block;
        width: 100%;
        height: calc(var(--fvh) - calc(96 / var(--vh-min) * var(--fvh)));
        position: absolute;
        top: 0;
        left: 0;
    }
    .footer__bg__inner:before {
        content: "";
        border: 2px solid #a89266;
        width: calc(100% - calc(56 / var(--vh-min) * var(--fvh)));
        height: calc(100% - calc(56 / var(--vh-min) * var(--fvh)));
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        pointer-events: none;
    }
    .footer__bg__inner:after {
        content: "";
        border: 1px solid #a89266;
        width: calc(100% - calc(72 / var(--vh-min) * var(--fvh)));
        height: calc(100% - calc(72 / var(--vh-min) * var(--fvh)));
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        pointer-events: none;
    }
    .footer__bg__frame {
        background-image: url(../img/common/menu/menu_frame1.png), url(../img/common/menu/menu_frame2.png), url(../img/common/menu/menu_frame3.png), url(../img/common/menu/menu_frame4.png);
        background-size: calc(56 / var(--vh-min) * var(--fvh)) calc(56 / var(--vh-min) * var(--fvh));
        background-position: top left, top right, bottom right, bottom left;
        background-repeat: no-repeat;
        width: calc(100% - calc(56 / var(--vh-min) * var(--fvh)));
        height: calc(100% - calc(56 / var(--vh-min) * var(--fvh)));
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

/*-----------------------------------------------
 * Footer
-------------------------------------------------*/
.footer {
    width: 540px;
    position: relative;
}
.footer__inner {
    /* background: url(../img/top/bg/bg_footer.jpg) no-repeat center / contain; */
    width: 100%;
    height: 768px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
@media screen and (max-width:767px){
    .footer {
        width: calc(750 / var(--vh-min) * var(--fvh));
    }
    .footer__inner {
        height: calc(var(--fvh) - calc(96 / var(--vh-min) * var(--fvh)));
        bottom: auto;
    }
}

/* logo */
.footer__logo {
    width: 311px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
}
.footer__logo img {
    width: 100%;
}
@media screen and (max-width:767px){
    .footer__logo {
        width: calc(447 / var(--vh-min) * var(--fvh));
        height: calc(182 / var(--vh-min) * var(--fvh));
        margin-bottom: calc(40 / var(--vh-min) * var(--fvh));
    }
    .footer__logo img {
        width: auto;
        height: 100%;
        object-fit: contain;
    }
}

/* nav */
.footer__navLists > li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__navLists > li:not(:first-child) {
    margin-top: 18px;
}
.footer__navLists > li > a {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-decoration: none;
}
@media screen and (max-width:767px){
    .footer__navLists > li:not(:first-child) {
        margin-top: calc(34 / var(--vh-min) * var(--fvh));
    }
    .footer__navLists > li > a {
        font-size: calc(40 / var(--vh-min) * var(--fvh));
    }
}

/* sns */
.footer__navLists__x {
	background-color: #fff;
	-webkit-mask: url(../img/common/sns/icon_x.svg) no-repeat center / contain;
	mask: url(../img/common/sns/icon_x.svg) no-repeat center / contain;
	display: block;
	width: min(calc(24 / var(--vw-min) * 100vw), 24px);
	height: min(calc(24 / var(--vw-min) * 100vw), 24px);
	margin-left: 0.3em;
	margin-top: -0.1em;
}
@media screen and (max-width:767px){
	.footer__navLists__x {
		width: calc(36 / var(--vh-min) * var(--fvh));
		height: calc(36 / var(--vh-min) * var(--fvh));
	}
}

/* share */
.footer__navShare {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 40px;
}
.footer__navShare > dt {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
}
@media screen and (max-width:767px){
    .footer__navShare {
        margin-top: calc(34 / var(--vh-min) * var(--fvh));
    }
    .footer__navShare > dt {
        font-size: calc(24 / var(--vh-min) * var(--fvh));
    }
}

/* footer__shareLists */
.footer__shareLists {
	display: flex;
    gap: 24px;
    margin-top: 16px;
}
.footer__shareLists__item {
	width: 30px;
	height: 30px;
}
@media screen and (max-width:767px){
    .footer__shareLists {
        gap: calc(30 / var(--vh-min) * var(--fvh));
        margin-top: calc(20 / var(--vh-min) * var(--fvh));
    }
    .footer__shareLists__item {
        width: calc(45 / var(--vh-min) * var(--fvh));
        height: calc(45 / var(--vh-min) * var(--fvh));
    }
}

/* link */
.footer__shareLists__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}
.footer__shareLists__link:before {
	content: "";
	background-color: #a89266;
	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%;
    width: 100%;
    height: 100%;
}

/* 各SNSパーツ */
.footer__shareLists__item.is-x .footer__shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_x.svg);
	mask-image: url(../img/common/sns/icon_x.svg);
}
.footer__shareLists__item.is-facebook .footer__shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_fb.svg);
	mask-image: url(../img/common/sns/icon_fb.svg);
}
.footer__shareLists__item.is-line .footer__shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_line.svg);
	mask-image: url(../img/common/sns/icon_line.svg);
}

/* bnrLists */
.footer__bnrLists {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 326px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}
.footer__bnrLists img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:767px){
    .footer__bnrLists {
        width: auto;
        margin-top: calc(60 / var(--vh-min) * var(--fvh));
    }
    .footer__bnrLists > li {
        width: calc(470 / var(--vh-min) * var(--fvh));
        height: calc(150 / var(--vh-min) * var(--fvh));
    }
    .footer__bnrLists > li a {
        display: block;
        width: 100%;
        height: 100%;
    }
}

/* copy */
.footer__copy {
    color: #fff;
    font-size: 12px;
    letter-spacing: 0;
    text-align: center;
    margin-top: 30px;
}
@media screen and (max-width:767px){
    .footer__copy {
        font-size: calc(17 / var(--vh-min) * var(--fvh));
        margin-top: calc(40 / var(--vh-min) * var(--fvh));
    }
}


/*------------------------------
LOADING
------------------------------*/
#loading {
	position:fixed;
    inset: 0;
	z-index:99999;
	display: flex;
	justify-content: center;
	align-items: center;
    overflow: hidden;
}
@media screen and (max-width:767px) {
	#loading {
		height: 100svh;
	}
}

.loading__bg{
    position: absolute;
    inset: 0;
    width: 100%;
    background: url(../img/top/bg/bg_green1.jpg) repeat-x left center / cover;
    z-index: -1;
}

.loading__visual{
    position: absolute;
    inset: 0;
    z-index: 1000;
    background: url(../img/loading/visual.jpg) no-repeat center bottom; 
    background-size: 100% auto;
}

.loading__book{
    background: url(../img/loading/book.png) no-repeat center center / calc(100% + calc(555/ var(--vw-min) * 100vw)) auto;
    width:100%;
    height:100%;		
}

.loading__logo{
    width: calc(447/ var(--vw-min) * 100vw);
    height: calc(256/ var(--vw-min) * 100vw);
    background: url(../img/logo.png) no-repeat center center / contain;
}
.-start .loading__logo {
    opacity: 0;
    filter: blur(15px);
    transform: scale(1.6);
    transition: opacity .8s ease,filter .8s ease, transform .8s ease;
}
/*-----------------------
fv ani
-----------------------*/
.-start .loading__visual {
  animation: ani_visual 4.5s ease-in-out forwards;
}
@keyframes ani_visual {
	0% {
		background-position: center bottom;
	}
    50% {
		background-position: center top;
	}
    60% {
		background-position: center top;
	}
    85% {
        background-position: center center;
		opacity: 1;
	}
	100% {
		opacity: 0;
        background-position: center center;
	}
}

.-start .loading__book {
  animation:
    ani_bookSize 1.5s ease forwards 4.3s,
    ani_bookFade 0.6s ease-in-out forwards 6.3s;/**/
}
@keyframes ani_bookSize {
    0% {
        background-size: calc(100% + calc(565 / var(--vw-min) * 100vw)) auto;
    }
    5% {
        background-size: 100% auto;
    }
    100% {
        background-size: 100% auto;
        width: min(calc(500 / var(--vw-min) * 100vw), 500px);
    }
}
@keyframes ani_bookFade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


#loading.-start {
  animation: ani_loadingOut 2s ease-in-out forwards 7.2s;
}

@keyframes ani_loadingOut {
  0% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    filter: brightness(2.2);
  }
  100% {
    opacity: 0;
  }
}




