@charset "UTF-8"; /* CSS Document */
/* btn ----------------------------*/
/* footer ----------------------------*/
/* toTop ----------------------------*/
#toTop {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 0;
    right: 0;
    color: #fff;
    cursor: pointer;
    display: none;
    z-index: 999;
    text-align: center;
    background: #1d4b79;
    animation: toTop-animation 0.3s ease forwards;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#toTop > span {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -7px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border: solid #fff;
    transform: rotate(-45deg);
    border-width: 1px 1px 0 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

#toTop:hover > span {
    top: 30%;
}

@media screen and (max-width: 480px) {
    #toTop {
        width: 50px;
        height: 50px;
    }

    #toTop > i {
        line-height: 50px;
        font-size: 2.0rem;
    }
}

@keyframes toTop-animation {
    from {
        opacity: 0;
        transform: translateY(101%);
        -webkit-transform: translateY(101%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}

@-webkit-keyframes toTop-animation {
    from {
        opacity: 0;
        -webkit-transform: translateY(101%);
        transform: translateY(101%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}



.ban-reserve {
    position: fixed;
    right: 0;
    top: 160px;
    z-index: 9999;
    width: 170px;
    height: 110px;
    overflow: hidden;
    border-radius: 55px 0px 0px 55px;
}

.ban-reserve a {
    background-color: rgba(0,0,0,1);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-top: 6px;
    transition: all 0.28s ease;
}
.ban-reserve a:hover {
    background-color: rgba(0,0,0,0.8);
}

.ban-reserve a .c-box {
    color: #fff;
    display: block;
    width: 100%;
    /* height: 100%; */
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.ban-reserve a .c-box .text-en {
    display: block;
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: 0.2em;
}

.ban-reserve a .c-box .text-jp {
    line-height: 1;
}

@media (max-width: 991px) {
	.ban-reserve {
	    position: fixed;
	    right: 0;
	    top: 100px;
	    z-index: 9999;
	    width: 95px;
	    height: 60px;
	    overflow: hidden;
	    border-radius: 55px 0px 0px 55px;
	}
	
	.ban-reserve a {
	    /* background-color: rgba(0,0,0,1); */
	    /* width: 100%; */
	    /* height: 100%; */
	    /* display: flex; */
	    /* align-items: center; */
	    /* justify-content: center; */
	    padding-left: 13px;
	    padding-top: 4px;
	    /* transition: all 0.28s ease; */
	}
	.ban-reserve a:hover {
	    background-color: rgba(0,0,0,0.8);
	}
	
	.ban-reserve a .c-box {
	    color: #fff;
	    display: block;
	    width: 100%;
	    /* height: 100%; */
	    display: flex;
	    align-items: center;
	    flex-wrap: wrap;
	    justify-content: center;
	    text-align: center;
	}
	
	.ban-reserve a .c-box .text-en {
	    display: block;
	    line-height: 0.9;
	    font-weight: 400;
	    letter-spacing: 0.18em;
	    font-size: 18px;
	}
	
	.ban-reserve a .c-box .text-jp {
	    line-height: 1;
	    letter-spacing: -0.01em;
	    font-size: 11px;
	}
}



/* 共通セクションタイトル */
.sec-title {
    display: table;
    margin: 0 auto;
    position: relative;
    padding-bottom: 10px;
}

.sec-title .text {
    display: block;
    line-height: 1.1;
    letter-spacing: 0.08em;
}

.sec-title:after {
	content: "";
	display: block;
	width: 45px;
	height: 3px;
	background-color: #1d4b79;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 0;
}


/* 共通セクションタイトル2 */
.sec-title-tp2 {
    display: table;
    margin: 0 auto;
    position: relative;
    padding-bottom: 10px;
}

.sec-title-tp2 .text {
    display: block;
    line-height: 1.1;
    letter-spacing: 0.08em;
    color: #fff;
}

.sec-title-tp2:after {
	content: "";
	display: block;
	width: 45px;
	height: 3px;
	background-color: #fff;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 0;
}



/* 共通ボタン btn-tp01 */
.btn-tp01 {
	display: table;
	margin: 0 auto;
	width: 225px;
	height: 35px;
}
.btn-tp01 a {
	display: block;
	background-color: #1d4b79;
	text-align: center;
	position: relative;
}
.btn-tp01 a:hover {
	display: block;
	background-color: #00a0e8;
}
.btn-tp01 a .text {
	display: block;
	color: #fff;
	line-height: 30px;
	padding-top: 5px;
	letter-spacing: 0.25em;
}
.btn-tp01 a .arrow {
	display: table;
	position: absolute;
	right: 32px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
    transition: all 0.28s ease;
}
.btn-tp01 a:hover .arrow {
	right: 25px;
}
.btn-tp01 a .arrow span {
	display: block;
	width: 15px;
	height: 2px;
	background-color: #fff;
	position: relative;
}
.btn-tp01 a .arrow span:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 7px;
	border-color: transparent transparent transparent #ffffff;
	right: -7px;
	top: -2px;
}


/* 共通ボタン btn-tp02 */
.btn-tp02 {
	display: table;
	width: 225px;
	height: 35px;
}
.btn-tp02 .b-wrap {
	display: block;
	background-color: #fff;
	text-align: center;
	position: relative;
	cursor: pointer;
}
.btn-tp02 .b-wrap .text {
	display: block;
	color: #1d4b79;
	line-height: 30px;
	padding-top: 5px;
	letter-spacing: 0.25em;
    transition: all 0.28s ease;
}
.btn-tp02 .b-wrap:hover .text {
	display: block;
	color: #00a0e8;
	line-height: 30px;
	padding-top: 5px;
	letter-spacing: 0.25em;
}
.btn-tp02 .b-wrap .arrow {
	display: table;
	position: absolute;
	right: 32px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
    transition: all 0.28s ease;
}
.btn-tp02 .b-wrap:hover .arrow {
	right: 25px;
}
.btn-tp02 .b-wrap .arrow span {
	display: block;
	width: 15px;
	height: 2px;
	background-color: #1d4b79;
	position: relative;
}
.btn-tp02 .b-wrap .arrow span:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 7px;
	border-color: transparent transparent transparent #1d4b79;
	right: -7px;
	top: -2px;
}
.btn-tp02 .b-wrap:hover .arrow span {
	background-color: #00a0e8;
}
.btn-tp02 .b-wrap:hover .arrow span:after {
	border-color: transparent transparent transparent #00a0e8;
}



/* 共通ボタン btn-tp03 */
.btn-tp03 {
	display: table;
	margin: 0 auto;
	width: 225px;
	height: 35px;
}
.btn-tp03 a {
	display: block;
	background-color: #000;
	text-align: center;
	position: relative;
}
.btn-tp03 a:hover {
	display: block;
	background-color: #604c3f;
}
.btn-tp03 a .text {
	display: block;
	color: #fff;
	line-height: 30px;
	padding-top: 5px;
	letter-spacing: 0.25em;
}
.btn-tp03 a .arrow {
	display: table;
	position: absolute;
	right: 32px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
    transition: all 0.28s ease;
}
.btn-tp03 a:hover .arrow {
	right: 25px;
}
.btn-tp03 a .arrow span {
	display: block;
	width: 15px;
	height: 2px;
	background-color: #fff;
	position: relative;
}
.btn-tp03 a .arrow span:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 7px;
	border-color: transparent transparent transparent #ffffff;
	right: -7px;
	top: -2px;
}





/* 共通アニメーション
========================= */
/* fade in ----------------------------------------*/
.fadein {
    opacity : 0.0;
    transform : translate(0, 50px);
    transition : 800ms;
}

.fadein.activein {
    opacity : 1;
    transform : translate(0, 0px);
}

/* show order ----------------------------------------*/
#showOrder01 .order-box {
    transform: translateX(-10%);
    opacity: 0;
    transition : 100ms;
}
