/*SP版 ハンバーガーメニュー*/
.SpNavi{
    display: none;
}
@media only screen and (max-width: 890px) {
    /*SP版 ハンバーガーメニュー*/
    .SpNavi{
        position: absolute;
        right: 0;
        top: 0px;
        padding: 10px 10px 25px;
        display: flex
;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 55px;
        height: 60px;
        background-color: #fff;
        border-radius: 0 0 0 5px;
        z-index: 10;
    }
    .SpNavi span{
        height: 3px;
        width: 100%;
        background: #007bb3;
        position: relative;
        transition: 0.4s;
    }
    .SpNavi span:first-child{
        top: 0;
    }
    .SpNavi span:last-child{
        bottom: 0px;
    }
    /*クリック時のレイアウト*/
    .SpNavi.active span:first-child{
        top: 25%;
        transform: rotate(-135deg);
    }
    .SpNavi.active span:nth-child(2){
		display: none;
    }
    .SpNavi.active span:last-child{
        bottom: 25%;
        transform: rotate(135deg);
    }
	.SpNavi span:last-child:after{
		content: "メニュー";
		font-size: 10px;
		letter-spacing: 0;
		color: #2e2e2e;
		position: absolute;
		top: 3px;
		left: 0;
		right: 0;
		margin: auto;
		white-space: nowrap
	}
	.SpNavi.active span:last-child:after{
		display: none;
	}
}

/*ヘッダー*/
header {
 	padding: 0;
	margin: 0; 	
	width: 100%;
	height: 0;
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 10;
}
/*ヘッダー半円の背景*/
header .menu {
	width: 100%;
	/*max-width: 1080px;*/
	margin: 0 auto;
	padding: 26px 30px;
    background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: flex-end;
    position: relative;
}
header .logo {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 25%;
    max-width: 180px;
    display: flex;
    align-items: flex-start;
}
header .logo img{
    width: 100%;
    height: 100%;
}

/*ヘッダーメニューテキスト*/
header .Navi ul {
	width: 100%;
	max-width: 1080px;
	margin-right: auto;
	display: flex;
	align-items: center;
	text-align: right;
}
header .Navi ul li a {
	display: inline-block;
	width: auto;
	padding-right: 15px;
	margin-right: 15px;
	font-size: clamp(15px,2.5vw,17px);
	font-weight: bold;
	letter-spacing: 0.05em;
	color: #007bb3;
	transition: 0.4s;
}
header .Navi ul li:last-child a{
	padding-right: 0;
	margin-right: 0;
	border-right: none;
    display: flex;
    align-items: center;
}
header .Navi ul li a:hover{
	color: #b2d0df;
}

header .Navi ul li.dropDown_menu a.link{
    position: relative;
}
header .Navi ul li.dropDown_menu a.link::after{
    content: "";
    position: absolute;
    bottom: -8px;
    left: 32px;
    width: 5px;
    height: 5px;
    border-right: solid 2px #007bb3;
    border-bottom: solid 2px #007bb3;
    transform: rotate(45deg);
}
@media only screen and (max-width: 890px) {
    header .Navi ul li.dropDown_menu a.link::after{
        display: none;
    }
}

/*ドロップダウンメニュー*/
header .Navi .dropDown {
	position: absolute;
	top: 48px;
	right: 0;
	left: 0;
	margin: 0 calc(50% - 50vw);
	overflow: hidden;
	width: calc(100vw - 8px);
	height: 0px;
	transition: 0.4s;
	background-color: #fff;
	border-radius: 0 0 15px 15px;
	box-shadow: 0 6px 5px 0px rgb(0 0 0 / 10%)
}

.dropDown_menu:hover > .dropDown,
.dropDown_menu:focus > .dropDown {
	height: 325px;
}

header .Navi ul.dropDown_list {
	flex-wrap: wrap;
	/*justify-content: space-between;*/
	text-align: left;
	margin: 15px auto 0;
	padding: 10px 30px 20px;
	max-width: 1080px;
}
header .Navi .dropDown_list li {
	width: 33.3%;
	height: 60px;
	display: flex;
	align-items: center;
	margin: 5px 0 3px;
}
header .Navi .dropDown_list a {
	display: flex;
    font-size: clamp(14px, 2.5vw, 15px);
    width: 100%;
    height: 100%;
    align-items: center;
    color: #825a32;
    line-height: 1.5em;
    padding: 0 0 0 45px;
    border: none;
    position: relative;
    text-align: left;
}
header .Navi .dropDown_list a img {
	height: 32px;
	width: 32px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 5px;
	margin: auto;
}
header .Navi .dropDown_list a:hover {
	color: #b2d0df;
}
header .menu-icon {
    background: url(/asaoyuriclinic/assets/img/links-icon.png) no-repeat center;
    background-size: contain;
    width: 18px;
    height: 18px;
    margin-left: 3px;
    transition: 0.5s;
}
header a:hover .menu-icon {
    background: url(/asaoyuriclinic/assets/img/links-icon2.png) no-repeat center;
    background-size: contain;
}

/*SP版 ロゴ*/
@media only screen and (max-width: 890px) {
    header .logo{
		position: absolute;
        top: 5px;
        left: 5px;
        width: 35%;
        max-height: 85px;
    }
}
/*SP版 メニュー表示*/
@media only screen and (max-width: 890px) {
	header .menu{
		transition: 0.4s;
        background-color: transparent;
	}
	.menu.open{
		padding: 135px 10px 15px;
		background: #fff;
		box-shadow: 0 0 30px 0px rgb(0 0 0 / 40%);
        border: 5px solid #007bb3;
	}
	.menu.open:before{
		content: "";
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,0.3);
		z-index: -1;
	}
    .Navi{
        display: none;
    }
    .open .Navi{
    	width: 100%;
    	display: block;
    }
    .open .Navi ul{
    	flex-wrap: wrap;
    }
    .open .Navi ul li{
        width: 100%;
        text-align: left;
	    border-bottom: 1px solid #007bb3;
    }
    .open .Navi ul li:last-child{
        border-bottom: none;
    }
    .open .Navi ul li.three{
        width: 100%;
        border: none;
    }
    .open .Navi li a{
    	font-size: 17px;
    	width: 100%;
    	border-right: none;
    	padding: 18px 0 18px 8px;
    }
    li.three a.link{
        padding: 12px 0 6px 12px;
    }
    .open .Navi li a:before{
    	content: "\025b6";
    	color: #007bb3;
    	font-size: 70%;
    	margin-right: 4px;
    }
    /*診療案内サブメニュー*/
    .open .Navi .dropDown_menu{
    	width: 100%;
    }
    .open .Navi .dropDown{
    	position: initial;
        overflow: initial;
        height: auto;
        width: 100%;
        margin: auto;
        box-shadow: none;
    }
    .open .Navi ul.dropDown_list{
    	padding: 0;
    	margin: 0 auto 20px;
    	justify-content: space-between;
    }
    .open .Navi ul.dropDown_list li{
    	width: 100%;
    	height: auto;
        border: none;
        border-top: dashed 1px #007bb3;
        padding-top: 8px;
    }
    .open .Navi ul.dropDown_list li a{
    	padding: 0 0 0 12px;
    	margin: 0;
    	text-align: left;
        font-size: 90%;
		font-weight: normal;
    }
    .open .Navi ul.dropDown_list li a:before{
    	content: "●";
    }
    .open .Navi ul.dropDown_list li a img{
		display: none;
	}
	.one{order: 1;}
	.two{order: 2;}
	.three{order: 5;}
	.four{order: 3;}
	.five{order: 4;}
}


/*PC版のWEB予約スティッキー*/
.PC-sticky {
	position: absolute;
    right: 0px;
    top: 130px;
    width: 55px;
    height: 205px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
	border-radius: 15px 0 0 15px;
	transition: 0.4s;
}
.PC-sticky:hover {
	width: 70px;
}
.PC-sticky a {
	width: 100%;
	height: 100%;
	font-weight: bold;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	color: transparent;
	background: url(/sayuri/assets/img/reserve-sticky.svg) no-repeat left center;
	background-size: cover;
}
@media only screen and (max-width: 890px) {
	.PC-sticky {
		display: none;
	}
}

/*SP版のWEB予約スティッキー*/
.SP-box,
.SP-sticky {
	display: none;
}
@media only screen and (max-width: 890px) {
    .SP-box {
        display: block;
        width: fit-content;
        height:  fit-content;
        position: relative;
    }    
	.SP-sticky {
		position: fixed;
		bottom: 10px;
		left: 0px;
		right: 0px;
		margin: auto;
		display: flex;
		height: 60px;
		width: calc(100% - 20px);
		box-shadow: 0 0 30px 0px rgb(0 0 0 / 40%);
        border-radius: 10px;
        overflow: hidden;
		z-index: -2;
	}
	.SP-sticky a{
		display: flex;
		align-items: center;
		justify-content: center;
		letter-spacing: normal;
		border-right: solid 1px #fff;
	}
    .SP-sticky a p{
        text-align: center;
    }
	.SP-sticky a.tel-reserve{
        font-size: 13px;
		width: 60%;
		background: #fff;
        align-items: center;
        flex-wrap: wrap;
        line-height: 1;
        padding: 4px 0;
	}
	.SP-sticky a.tel-reserve strong{
		display: block;
		font-size: 24px;
		font-weight: bold;
		letter-spacing: normal;
        margin-bottom: -5px;
	}
	.SP-sticky a.web-reserve{
		width: 40%;
		background: #007bb3;
	}
	.SP-sticky a.web-reserve p{
		color: #fff;
		font-size: 14px;
        line-height: 1.5em;
		font-weight: bold;
		letter-spacing: normal;
	}
}

/*フッター*/
footer {
	width: 100%;
}
footer .reserve {
	width: 100%;
	padding: 50px;
	margin: 0 auto;
}
footer .bottom {
	padding: 25px;
	background-color: #c8c8c8;
}