@charset "utf-8";
/* CSS Document */

/* PC時からハンバーガーメニューの場合は#sp_boxのみ削除  */
#open_menu,#sp_box {
	display:none;
}

/*****************************************************************

	色の設定

******************************************************************/
/* ハンバーガーメニューの線 */
#spicon span{
	border-bottom:1px solid #FFF;
}
/* ハンバーガーメニュー【MENU】のテキスト色（いらない場合はdisplay:none;） */
#spicon:before{
    display: none;
}
/* 開閉後の背景の色 */
#center_box {
    background-color: #FFF;
}

/**************************************
	ハンバーガーアイコン
***************************************/

#spicon {
	position:fixed;
	right:0;
	top:0;
	background-position:50% 0;
	background-repeat:no-repeat;
	background-size:cover;
	width:85px;
	height:85px;
    background-color: #beaac5;
    
    padding: 30px 20px;
    
	z-index:9999;
	cursor:pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
#spicon span {
	width:100%;
	transition: all .4s;
}

/* ボタンを押した後のボタンのスタイル */
#spicon.m_active span:nth-child(1) {
    transform: translateY(12px) rotate(-30deg);
}

#spicon.m_active span:nth-child(2) {
	opacity:0;
}

#spicon.m_active span:nth-child(3) {
    transform: translateY(-12px) rotate(-150deg);
}

/**************************************
	メニューオープン
***************************************/
#open_menu {
	background-position:50% 0;
	background-repeat:no-repeat;
	background-size:cover;
	position:fixed;
	z-index:9990;
	top:0;
	left:0;
	width:100%;
}
/***********/
#center_box {
	position:fixed;
	left:0;
	top:0;
	width:100%;
	margin:0;
	height:100%;
	display:block;
	overflow-y:scroll;
	padding:85px 0;
}
/**************************************
	MENUの中身
***************************************/
.sp_menu a {
    color: inherit;
    background-color: #f8f6f9;
    padding: 40px 30px;
    display: block;
    position: relative;
    border-bottom: 1px solid #FFF;
    font-size: 22px;
}
.sp_menu .arrow {
    border: 1px solid #ac88b9;
    border-radius: 50px;
    height: 30px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.sp_information {
    padding: 40px;
}
.sp_add {
    font-size: 20px;
}
.sp_tel {
    background-color: #ac88b9;
    border-radius: 100px;
    padding: 30px;
    text-align: center;
    color: #FFF;
    margin-top: 30px;
}
.sp_tel24 {
    font-size: 18px;
}
.sp_tel_p {
    margin-top: 5px;
}
.sp_tel_p a {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    font-size: 43px;
    color: #FFF;
}
.sp_tel_p img {
    position: relative;
    top: 5px;
}



@media only screen and (max-width: 1024px){
#sp_box {
	display:block;
}    

}

@media only screen and (max-width: 768px){

    .sp_menu a {
        padding: 30px 30px;
        font-size: 22px;
    }
    .sp_menu .arrow {
        height: 25px;
        width: 50px;
    }
    .sp_information {
        padding: 30px;
    }
    .sp_add {
        font-size: 18px;
    }
    .sp_tel {
        padding: 13px 20px 25px;
        margin-top: 30px;
    }
    .sp_tel24 {
        font-size: 18px;
    }
    .sp_tel_p {
        margin-top: 5px;
    }
    .sp_tel_p a {
        column-gap: 10px;
        font-size: 40px;
    }
    .sp_tel_p img {
        position: relative;
        top: 5px;
        width: 22px;
        height: auto;
    }
}


