@charset "utf-8";
/* CSS Document */

/* PC時からハンバーガーメニューの場合は#sp_boxのみ削除  */
#open_menu,#sp_box {
	display:none;
}

/*****************************************************************

	色の設定

******************************************************************/
/* ハンバーガーメニューの線 */
#spicon span{
	border-bottom:1px solid #FFF;
}
/* 開閉後、ハンバーガーメニューの色を変更する場合 */
#spicon.m_active span:nth-child(1) {
    /*border-color: #FFF;*/
}
#spicon.m_active span:nth-child(3) {
    /*border-color: #FFF;*/
}
#spicon.m_active:before {
    /*color: #FFF;*/
}
/* 開閉後の背景の色 */
#center_box {
    background-color: #f7f3ef;
}

/**************************************
	ハンバーガーアイコン
***************************************/

#spicon {
	position:fixed;
	right:30px;
	top:30px;
	background-position:50% 0;
	background-repeat:no-repeat;
	background-size:cover;
	width:60px;
	height:60px;
    background-color: #988454;
    border-radius: 10px;
    padding: 20px 15px;
    
	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(10px) rotate(-45deg);
}

#spicon.m_active span:nth-child(2) {
	opacity:0;
}

#spicon.m_active span:nth-child(3) {
    transform: translateY(-8px) rotate(-135deg);
}
/**************************************
	メニューオープン
***************************************/
#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:35px 0 120px;
}
/**************************************
	MENUの中身
***************************************/
.sp_menu_wrapper {
    width: 88%;
    margin: 0 auto;
    position: relative;
}
.sp_logo img {
    width: 300px;
    height: auto;
}
.sp_menu_list {
    margin-top: 40px;
}
.sp_menu_list > ul > li {
    border-bottom: 1px solid #988454;
    padding: 30px 0;
    position: relative;
}
.sp_menu_list > ul > li:nth-child(1) {
    border-top: 1px solid #988454;
}
.sp_first_title {
    color: #988454;
    font-size: 24px;
    letter-spacing: 0.1em;
    position: relative;
}
.sp_first_title .sp_plus {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #988454;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    width: 35px;
    height: 35px;
    color: #988454;
    padding: 0 0 1px 3px;
}
.sp_accordion {
    padding-top: 20px;
    display: none;
}
.sp_inner_flex {
    display: flex;
    justify-content: space-between;
}
.sp_inner_flex > ul {
    width: 50%;
}
.sp_inner_flex > ul li:nth-child(n+2) {
    margin-top: 15px;
}
.sp_btn_flex {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.sp_btn_flex p {
    width: 49%;
}
.sp_btn_flex a {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    position: relative;
    color: #FFF;
    height: 70px;
}
.sp_btn_flex a:after {
    content: "";
    background: url("../images/sp_arrow.webp") left 0/100% 100% no-repeat;
    width: 15px;
    height: 16px;
    position: absolute;
    right: 3px;
    bottom: 3px;
}
.sp_btn_flex .tel a {
    background-color: #a18f63;
    font-size: 24px;
    letter-spacing: 0.02em;
}
.sp_btn_flex .tel a img {
    position: relative;
    top: 2px;
}
.sp_btn_flex .contact a {
    background-color: #666565;
    font-size: 17px;
    letter-spacing: 0.04em;
}
@media only screen and (max-width: 1024px){
#sp_box {
	display:block;
}    

}

@media only screen and (max-width: 768px){
/**************************************
	ハンバーガーアイコン
***************************************/

    
}


