@charset "utf-8";

/* _______________________________________

    トップ用 ローディング
__________________________________________ */

.js__loading{ overflow: hidden; }
#loading{
    z-index: 12;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #88ccc4;
    width: 100vw;
    height: 100vh;
}
#loading.js__on{
    opacity: 0;
    transition: all 1.4s linear 0s;
}
.loading_logo{
    transition: all 1.4s linear 0s;
    opacity: 0;
    width: 549px;
}
.loading_logo img{ 
    vertical-align: bottom;
    width: 100%; 
}
.loading_logo.js__on{
    opacity: 1;
}

#snow.js__on{
    transition: all 1.4s linear 0s;
    display: none !important;
}

@media screen and (max-width: 768px){
    #snow{ display: none !important }
}
@media screen and (max-width: 640px){
    .loading_logo{ width: 80%; }
}



/* _______________________________________

    トップ用 メインビジュアル 
__________________________________________ */

.home-mv{
    overflow: hidden;
    position: relative;
    height: 100vh;
}
.home-mv_list{ height: 100%; }
.home-mv_img{ 
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s;
    width: 100vw;
    height: 100vh;
}
.home-mv_img.active{ 
    opacity: 1;
}
.home-mv_img--01{
    background: url('../img/main1.jpg') center center no-repeat;
    background-size: cover;
}
.home-mv_img--02{
    background: url('../img/main2.jpg') center center no-repeat;
    background-size: cover;   
}
.home-mv_img--03{
    background: url('../img/main3.jpg') center center no-repeat;
    background-size: cover;
}
.home-mv_img--04{
    background: url('../img/main4.jpg') center center no-repeat;
    background-size: cover;   
}
.home-mv_img--05{
    background: url('../img/main5.jpg') center center no-repeat;
    background-size: cover;   
}


/* スライダー アニメーション */
#slide_wrapp{
  position: relative;
  overflow: hidden;
}  
.home-mv_img{
	opacity: 0;
	transform: scale(1);
	transition: opacity 2s linear, transform 7.5s linear;
	position: relative;
	z-index: 1;
} 
.home-mv_img:not(:first-child){
	position: absolute;
	top: 0;
	left : 0;
}

.home-mv_img.show_{
	opacity: 1;
}
.home-mv_img.zoom_{
	transform: scale(1.1);
}
.home-mv_img img{
	display: block;
}

@media screen and (min-width: 769px){
	.pg_title{
        font-size: 22px;
        letter-spacing: 0.18em;
        padding: 140px 0 60px 40px;
    }
}

@media screen and (max-width: 768px){
    .home-mv{ 
    	margin-top: 0 !important;
    	margin-bottom: 7.8vw; 
    }
    .home-mv,
    .home-mv_img{
        height: 48vw;
    }
    .pg_title{
        font-size: 3.46vw;
        text-align: center;
        padding: 34vw 0 6.6vw;
    }
}


/* _______________________________________

    トップ用 メインビジュアル - 見出し
__________________________________________ */

.mv_ttl{
    z-index: 2;
    position: absolute;
    top:50%;
    right:30px;
    -webkit-transform: rotate(.03deg) translateY(-50%);
    transform: rotate(.03deg) translateY(-50%);
    color: #fff;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0.18em;
}

@media screen and (max-width: 768px){
    .mv_ttl{ 
        top: 50%;
        right: 2.37vw;
        transform: translateY(-50%);
        font-size: 14px; 
    }
}

/* _______________________________________

    トップ用 メインビジュアル - 季節ボタン
__________________________________________ */

.mv_btnWrap{
    position: absolute;
    right: 30px;
    bottom: 34px;
}

.mv_btn_item{
    display: none;
    cursor: pointer;

    -webkit-transform: rotate(.03deg);
    transform: rotate(.03deg);

    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;

    color: #717171;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.18em;
    background-color: #fff;
    width: 209px;
    padding: 12px 0;
}
.mv_btn_item:hover{
    color: #fff;
    background-color: #978350;
}
.mv_btn_item.active{
    display: block;
}

@media screen and (max-width: 768px){
    .mv_btnWrap{
        right: 2.34vw;
        bottom: 2.6vw;
    }
    .mv_btn_item{ 
        font-size: 2.99vw; 
        width: 31.1vw;
        padding: 2.2vw 0;
    }
}


/* _______________________________________

    トップ用 section
__________________________________________ */

.home-sec_ttl{
    -webkit-transform: rotate(.03deg);
    transform: rotate(.03deg);

    color: #978350;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0.18em;
    padding: 27.5px 0;
}

@media screen and (max-width: 768px){
    .home-sec_ttl{ 
        line-height: 1;
        padding: 0;
    }

    .home-sec_ttl--concept{
        margin-bottom: 3.77vw;
    }
    .home-sec_ttl--plan{
        margin-bottom: 7.8vw;
    }
    .home-sec_ttl--menu{
        margin-bottom: 7.8vw;
    }

}

/* _______________________________________

    トップ用 入れ子
__________________________________________ */

.con_box{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 86%;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.con_box:nth-child(odd) .con_box_detail{
    margin-right: 5%;
}
.con_box:nth-child(even){
    flex-direction: row-reverse;
}
.con_box:nth-child(even) .con_box_detail{
    margin-left: 5%;
}
.con_box_detail{
    width: 30%;
}
.con_box_detail_title{
    color: #717171;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.16em;
    margin-bottom: 80px;
}
.con_box_detail_txt{
    color: #717171;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1.6;
    margin-bottom: 80px;
}
.con_box_detail_btn a{
    display: inline-block;
    color: #717171;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.1em 4em 0.5em 0.2em;
    letter-spacing: 0.2em;
}
.con_box_detail_btn a:before{
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 1px;
    background-color: #000;
    -webkit-transition: width 400ms ease-out;
    transition: width 400ms ease-out;
}
.con_box_detail_btn a:after{
    content: "";
    position: absolute;
    display: block;
    right: -.5%;
    bottom: .3em;
    width: 1.2em;
    height: 1px;
    background-color: #000;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
    -webkit-transition: right 400ms ease-out;
    transition: right 400ms ease-out;
}
.con_box_detail_btn a span{
    display: inline-block;
}
.con_box_img{
    width: 65%;
}
.con_box_img img{
    max-width: 100%;
}

@media screen and (min-width: 1024px){
    .con_box_detail_btn a:hover:before{
        width: 110%;
    }
    .con_box_detail_btn a:hover:after{
        right: -10.5%;
    }
}

@media screen and (max-width: 768px){
	.con_box,
    .con_box_detail,
    .con_box_img{
        width: 100%;
    }
    .con_box_detail{
        padding: 0 2.34vw;
    }
    .con_box:nth-child(even) .con_box_detail{
        margin: auto;
    }
    .con_box_img{
        order: -1;
        margin-bottom: 4vw;
    }
    .con_box_img img{ vertical-align: bottom; }

    .con_box_detail_title{
        font-size: 22px;
        margin-bottom: 3vw;
    }

    .con_box_detail_txt{
        margin-bottom: 6vw;
    }

    .con_box_detail_btn{
        text-align: right;
    }
    .con_box_detail_btn a{
        font-size: 14px;
    }
}


/* _______________________________________

    トップ用 コンセプト
__________________________________________ */

.home-concept_inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../img/bg_concept.jpg') center top no-repeat;
    background-size: cover;
    padding: 84px 0 60px;
}
.home-concept_logo{ 
    width: 449px;
    margin-bottom: 31px; 
}
.home-concept_logo img{ width: 100%; }
.home-concept_ttl,
.home-concept_txt,
.home-concept_btn{
    color: #fff;
    text-align: center;
    letter-spacing: 0.18em;
}

.home-concept_ttl{
    font-size: 20px;
    line-height: 1;
    margin-bottom: 20px;
}
.home-concept_txt{
    font-size: 14px;
    line-height: 1.68;
    margin-bottom: 24px;
}
.home-concept_txt{
    max-width: 990px;
    margin-right: auto;
    margin-left: auto;
}

.home-concept_btn{
    width: 300px;
}
.home-concept_btn a{
    display: block;
    transition: all .3s;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    background-color: #978350;
    padding: 13px 0 12px;
}
.home-concept_btn:hover a{
    color: #978350;
    background-color: #fff;
}

@media screen and (max-width: 768px){
    .home-concept_inner{
        background-color: #fff;
        background-image: none;
        padding: 7.8vw 2.34vw 6.6vw;
    }
    .home-concept_logo{ width: 58.9vw; }
    .home-concept_logo img{ width: 100%; }
    .home-concept_ttl, 
    .home-concept_txt{ 
        color: #000; 
        width: 100%;
    }

    .home-concept_ttl{
        font-size: 16px;
    }
    .home-concept_txt{
        font-size: 14px;
    }

    .home-concept_btn{
        width: 60%;
        margin: 7.815vw auto;
    }
    .home-concept_btn a{
        font-size: 16px;
    }
}

@media screen and (max-width: 480px){
    .home-concept_logo{ margin-bottom: 7.81vw; }
    .home-concept_ttl{ 
        font-size: 3.8vw; 
        margin-bottom: 4.3vw;
    }
    .home-concept_txt{ font-size: 3.125vw; }
}


/* _______________________________________

    トップ用 プラン
__________________________________________ */

.home-plan{
    margin-bottom: 80px;
}
.home-plan_category{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}
.home-plan_category_item{
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    -webkit-transform: rotate(.03deg);
    transform: rotate(.03deg);
    color: #717171;
    text-decoration: none;
    letter-spacing: 0.18em;
}
.home-plan_category_item:after{
    content: '｜';
    display: inline-block;
    -webkit-transform: rotate(.03deg);
    transform: rotate(.03deg);
    color: #717171;
    margin: 0 8px;
}
.home-plan_category_item:last-child:after{
    display: none;
}
.home-plan_category_item span{
    display: inline-block;
    font-size: 14px;
    white-space: nowrap;
}
.home-plan_category_item span:after{
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background-color: #90a3ad;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.home-plan_category_item:hover span:after{
    width: 100%;
}
.home-planList{
    position: relative;
    display:  flex;
    justify-content: space-between;
    width: 100%;
    max-width: 990px;
    margin: 0 auto;
}
.home-planList .ib{
    width: 240px;
}
.home-planList .ib a{
    color: #717171;
    font-weight: 500;
    text-decoration: none;
}
.home-planList .ib .img{
    vertical-align: bottom;
    margin-bottom: 5px;
}
.home-planList .ib .img img{
    width: 100%;
}
.home-planList .ib .img + p{
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1.38;
}

/* english chinese */
.home-plan_btn{
    width: 80%;
    max-width: 360px;
    margin: 0 auto;
}
.home-plan_btn a{
    display: block;
    transition: all .3s;
    color: #fff;
    font-size: 17px;
    text-align: center;
    text-decoration: none;
    background-color: #978350;
    padding: 13px 0 12px;
}

p.slick-slide{
    font-size: 12px;
    min-width: 100%;
}
.slick-list {
    width: 100%;
    margin-right: -10px;  /* ガター分ネガティブマージン */
}
.slick-track{
    margin: 0;
}
.slick-slide {
    margin-right: 10px;  /* ガター */
}
.plan-arrow{
    z-index: 10;
    cursor: pointer;
    position: absolute;
    top: 50%;
    background: url('../img/arrow_plan.png') center center no-repeat;
    background-size: contain;
    width: 25px;
    height: 21px;
}
.plan-prev{
    left: -45px;
    transform: rotate(180deg);
}
.plan-next{
    right: -45px;
}

.mix{ display: none; }
.plan-reco{ display: block }

@media screen and (max-width: 1080px){
    .home-planList{
        width: 80%;
        max-width: 990px;
    }
     .home-planList_item{
        width: 31.28%;
    }
    .home-planList_item img{ width: 100%; }
}

@media screen and (max-width: 768px){

    .home-plan_category_item{
        display: flex;
    }
    .home-planList{
        width: 85%;
        max-width: 100%;
        margin: 0 auto 7.29vw;
    }
   
    .home-planList_name{ 
        font-size: 1.68vw; 
        line-height: 1.25;
    }
}

@media screen and (max-width: 480px){

    .home-plan_category_item{ font-size: 3.2vw; }

    .home-planList{
        width: 80%;
    }
    .plan-arrow{ width: 22px; }
    .plan-prev{
        left: -8.2vw;
    }
    .plan-next{
      right: -8.2vw;
    }
    .home-planList_name{
        font-size: 3.2vw;
    }
}

