@charset "utf-8";
/*ハンバーガー*/

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 1200;
}
@media all and (min-width:576px){
	.menu-btn{
		top: 15px;
	}}
@media all and (min-width:768px){
	.menu-btn{
		top: 20px;
	}}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #333;
    position: absolute;
	transition: 0.5s;}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn{
	width: 20%;
	right: 0;
	top: 0;
	height: 80px;
	justify-content: flex-end;
	padding-right:30px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	display: block;
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
	transition: 0.5s;
	background-color: #333;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
	transition: 0.5s;
	background-color: #333;
}
#menu-btn-check {
    display: none;
}
.menu-content{
	padding-top: 60px;
	/*overflow: scroll;*/
}
/*横にずれるのを防ぐ*/
.menu-content {
overflow-x: hidden!important;
overflow-y: scroll!important;
}
.menu-content page-menu {
    padding: 0 20px;
	}
header .menu-content page-menu{
	padding-bottom: 200px;
}
header .menu-content .menu-form{
	padding-bottom: 0;
    background-color: #fff;
}
header .menu-content .menu-form .sitesearch{
    width: 80%;
    padding-top: 20px;
}

.menu-content .page-menu li {
    list-style: none;
}
.menu-content .page-menu li a {
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
    color:#333;
    text-decoration: none;
    padding: 5px 15px 5px 5px;
    position: relative;
}
.menu-content .page-menu li a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 16px;
}
.menu-content .page-menu li a:last-child::before {
    content: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 1000;
    background-color: rgba(167, 204, 231,0.95);
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
.hamburger_tel{
	text-align: center;
}
.hamburger_tel-icon{
	width :15%;
	height: auto;
	padding-bottom: 5px;
}
.hamburger_tel-text{
	width :65%;
	height: auto;
}
.hamburger-icon,.hamburger-text{
	display: inline-block;
	float: right;
}
.menu-form{
    width: 100%;
	clear: both;
}
.menu-form button{
	text-align: right;
}

.menu-form .header_contact button{
    display: flex;
   /* flex-wrap: wrap;*/
font-size: 200%;
}
.menu-form .header_contact button img{
	height: 40px;
}
@media screen and (max-width: 368px) {
	.menu-form .header_contact button{
	text-align: right;
	}}
@media screen and (min-width: 369px) {
	.menu-form .header_contact button{
	text-align: center;
	}}
    

/*ここからアコーディオン*/
.menu-content li{
	font-family: "myfont_M","HiraKakuProN-W6", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
.toggle {
	display: none;
}
.Label {		/*タイトル*/
    padding:1rem 0 ;
    display: block;
    color: #333;
    border-bottom: solid 2px #333;
    position: relative;
}
.Label::before{		/*タイトル横の矢印*/
    content:"";
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top:calc( 50% - 3px );
    right: 10px;
    transform: rotate(135deg);
}
.Label,
.content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.content {
    height: 0;
    overflow: hidden;
}
header .toggle:checked + .Label + .content {	/*開閉時*/
	height: 0;
    transition: all .3s;
    padding:0.5rem 0 ;
}


/*サイドナビ*/
#sidenav{
	padding-left: 1rem;
}
aside .toggle:checked + .Label + .content {	/*開閉時*/
    height: auto;
    transition: all .3s;
    padding:0.5rem 0 ;
}
#sidenav .Label,.sidenav_list li a{
	text-align: center;
	border-bottom: none;
	background-color: #b2e5e5;
}
#sidenav .Label:hover,#sidenav .accordion .content a:hover,.sidenav_list li a:hover{
	opacity: 0.7;
}
#sidenav .accordion .content{
	padding: 0;
}
#sidenav .accordion .content a{
	text-align: center;
	background-color: #e8ffff;
	font-size: 15px;
	padding:0.5rem;
	color: #333;
}
.sidenav_list li a{
	padding: 0.5rem;
	color: #333;
}

.calender_title{
	margin-top: 1.5rem;
	font-size: 110%;
	font-weight: bold;
	border-bottom: dashed 2px #b2e5e5;
}
