@charset "utf-8";

/* おすすめ情報（回遊ボタン） */
#kaiyu_banner {
	position: fixed;
	left: 0;
	bottom: 30px;
	z-index: 888;
}
.color_change #kaiyu_banner { 
    background-color: transparent!important;
}
#kaiyu_banner,
#kaiyu_banner * {
    box-sizing: border-box;
}
#kaiyu_banner img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.kaiyu_box {
    position: relative;
    width: 256px;
    display: flex;
    flex-direction: column-reverse;
    padding: 42px 0 0;
    transition: all 0.5s ease 0s;
}
.color_change .kaiyu_box {
    background-color: transparent!important;
}
#kaiyu_banner.open .kaiyu_box {
    padding: 64px 0 0;
}
.kaiyu_box:before {
    content: "";
    width: 100%;
    height: 100px;
    background-size: 200px auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-image: url("/img/kaiyu/kaiyu_btn-top.png");
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

/* ボタン */
.kaiyu_ttl {
	display: block;
	width: 100%;
}
#btn_kaiyu_open {
    position: relative;
    width: 100%;
	display: block;
    background-color: #E5F1E3;
    border-radius: 0 20px 20px 0;
    border: none;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
#btn_kaiyu_open:before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-image: url("/img/kaiyu/kaiyu_btn-title-deco.png");
    transition: all 0.5s ease 0s;
}
#btn_kaiyu_open img {
    width: 200px;
    height: auto;
}
#kaiyu_banner.open #btn_kaiyu_open {
    border-radius: 0 0 20px 0;
}
#kaiyu_banner.open #btn_kaiyu_open:before {
    width: 170px;
}

/* コンテンツ */
.kaiyu_list {
    position: relative;
	display: none;
	background: #E5F1E3;
	color: #000000;
	padding: 46px 30px 10px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
    border-radius: 0 20px 0 0;
}
#kaiyu_banner.open .kaiyu_list {
	display: block;
}

.kaiyu_list_box2 {
	margin: 0px;
	padding: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.kaiyu_list_box2 a {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	margin: 0 0 8px;
}
.kaiyu_list_box2 a:last-child {
    margin-bottom: 0;
}
.kaiyu_list_box2 a.view--sp {
    display: none;
}
.kaiyu_list_box2 img {
	width: 100%;
	height: auto;
}

#btn_kaiyu_close {
	display: block;
	width: 24px;
	height: 24px;
	margin: 0px;
	padding: 0px;
	border: none;
    background-color: #fff;
	border-radius: 100%;
	color: #707070;
	text-align: center;
    font-weight: bold;
	cursor: pointer;
	position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

#kaiyu_banner_pc {
    position: fixed;
    bottom: 20%;
    right: 0;
    z-index: 777;
    width: 289px;
}
#kaiyu_banner_pc img {
    max-width: 100%;
    height: auto;
}
#btn_kaiyu_banner_pc_close {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 28px;
    height: 28px;
    border: 1px solid #000;
    border-radius: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* ==================================================
スマートフォン
================================================== */
@media screen and (max-width: 1080px) {

    .kaiyu_box {
        width: 256px;
        padding: 0;
    }
    .kaiyu_box:before,
	.kaiyu_ttl {
        display: none;
	}

	#btn_kaiyu_open {
		font-size: 1.2rem;
		line-height: 1.6rem;
		padding: 14px 0px;
	}
    .kaiyu_list {
        border-radius: 0;
    }
    .kaiyu_list_box {
        background: none;
        padding: 0;
    }
    .kaiyu_list_box2 {
        max-width: 600px;
        margin: 0 auto;
        gap: 10px;
    }
    .kaiyu_list_box2 a {
        display: block;
        width: 100%;
    }
    .kaiyu_list_box2 a.view--pc {
        display: none;
    }
    .kaiyu_list_box2 a.view--sp {
        display: block;
        max-width: 100%;
    }
	.kaiyu_list {
		max-width: 100%;
	}

    #kaiyu_banner_pc { 
        display: none;
    }
}
/* ==================================================
スマートフォン ここまで
================================================== */