@charset "UTF-8";


/* ///////////////////////////////////////////////////////////////////
	ページ全体
/////////////////////////////////////////////////////////////////// */
#wrap {
}


/* ///////////////////////////////////////////////////////////////////
	ヘッダー
/////////////////////////////////////////////////////////////////// */
header{
    background-color: #EA5514;
}


/* ///////////////////////////////////////////////////////////////////
	コンバージョン
/////////////////////////////////////////////////////////////////// */
#cvBox{
	background: url(../common/arw03.png) center top no-repeat;
}


/* ///////////////////////////////////////////////////////////////////
	温泉
/////////////////////////////////////////////////////////////////// */
#onsen-wrap{
    background-color: #fee291;
}

#onsen-wrap .onsen-wrap__inr{
	width: 1000px;
	padding: 50px 0 50px;
	margin: 0 auto;
}

#onsen-wrap .onsen-wrap__title{
    text-align: center;
    margin-bottom: 40px;
}

#onsen-wrap .onsen-wrap__list > li{
    margin-bottom: 3px;
}
    #onsen-wrap .onsen-wrap__list > li:last-child{
        margin-bottom: 0;
    }

/*リンク*/
.onsen-btn{
    position: relative;
    display: block;
    color: #000000;
    text-decoration: none;
    background-color: #FFFFFF;
    border-radius: 8px 30px 30px 8px;
}
    .onsen-btn::before,
    .onsen-btn::after{
        position: absolute;
        content: "";
        left: 0;
        width: 100%;
        height: 0;
        background-color: #FFFFFF;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
        z-index: 0;
    }
    
    .onsen-btn::before{
        top: 50%;
        border-radius: 0 0 30px 8px;
    }
    .onsen-btn::after{
        bottom: 50%;
        border-radius: 8px 30px 0 0;
    }
    
.onsen-btn:hover{
    color: #FFFFFF !important;
}
    .onsen-btn:hover::before,
    .onsen-btn:hover::after{
        height: 50%;
        background-color: #ea1414;
    }

.onsen-btn .onsen-btn__inr{
    position: relative;
    font-size: 138.5%;
    font-weight: bold;
    padding: 10px 50px 10px 48px;
    z-index: 1;
}
    .onsen-btn .onsen-btn__inr::before{
        position: absolute;
        content: "";
        top: 15px;
        left: 15px;
        width: 23px;
        height: 23px;
        background-image: url("../onsen/img/icon_blank.png");
        background-position: left 6px top 7px;
        background-repeat: no-repeat;
        background-size: 10px auto;
        background-color: #c30d23;
        border-radius: 23px;
        box-sizing: border-box;
    }
    .onsen-btn .onsen-btn__inr::after{
        position: absolute;
        content: "";
        top: calc(50% - 5px);
        right: 20px;
        border-style: solid;
        border-width: 5px 0 5px 10px;
        border-color: transparent transparent transparent #c30d23;
    }
    .onsen-btn:hover .onsen-btn__inr::after{
        border-color: transparent transparent transparent #ffffff;
    }
    
.onsen-btn .onsen-btn__inr .onsen-btn__add{
    display: inline-block;
    font-size: 16px;
    margin-left: 1.5em;
}

/*リンクなし*/
.onsen-btn.onsen-btn--none{
    pointer-events: none;
}
    .onsen-btn.onsen-btn--none::before,
    .onsen-btn.onsen-btn--none::after{
        display: none;
    }
    .onsen-btn.onsen-btn--none .onsen-btn__inr::before{
        background: none;
        border: #c30d23 solid 7px;
    }
    .onsen-btn.onsen-btn--none .onsen-btn__inr::after{
        display: none;
    }









