/******************************************
/* 共通クラス
*******************************************/
.cl-flex{
	display: flex;	
	flex-direction: row;
}

.cl-title{
	background-image:url(../images/index_notice_wall.png) ;
    background-repeat: no-repeat;
    background-size: 100% 100%;
	font-size: x-large;
	margin-top: 10px;
	margin-bottom: 10px;
}

.cl-text-padding{
	padding: 5px;
}

.cl-pic-border{
	border: dashed 2px;
}

@media screen and (max-width:767px){
	.cl-flex{
		flex-direction: column;
	}
}

/******************************************
/* ページ全体の幅と背景
*******************************************/
body{
    background-image:url(../images/body_background.png) ;
	width: 942px;
	margin: auto;
}

@media (max-width:940px){
	body{
		width: 98%;
	}
}

/******************************************
/* ヘッダーを固定
*******************************************/
#header{
    background-image:url(../images/body_background.png) ;
	position:sticky;
	top:0;
	background-color: white;
	padding-top: 10px;
	padding-bottom: 5px;
}

/******************************************
/* ロゴ・お問い合わせ	
*******************************************/
#index_logo{
	display:flex;
	justify-content:space-between;	
	align-items: flex-end;
	margin-left: 5px;
}

/*
#index_sitelogo img{
	width: 205px;
	height: 50px;
}

#index_inqlogo img{
	width: 235px;
	height: 108px;
}
*/
@media (max-width:767px){
	#index_logo{
		margin-right: 5px;
	}
}
@media (max-width:584px){
	#index_sitelogo img{
		object-fit:contain;
		width: 50vw;
		height: auto;
	}	
	#index_inqlogo img{
		object-fit:contain;
		width: 40vw;
		height: auto;
	}		
}
/******************************************
/* メニュー
*******************************************/
#drawer-toggle {
	display: none;
}

.menu_sp{
	display: none;
}

.menu ul{
	display: flex;
	list-style: none;
	padding-left: 0px;
	margin: 0 3px 0 5px;
	justify-content:space-around;
}	

.menu li{
	width: 156px;
	height: 51px;
}

.menu li span{
	display: none;
}

/******************************************
/* メニュー（スマホ対応）
*******************************************/
@media screen and (max-width:767px){
	/* 見出し */
	.menu_sp{
		display:flex;
		background-color:palegreen;
		margin: 0 5px;
		cursor: pointer;
		height: 50px;
	}
		
	.hamburger {
		position:relative;
		top: 10px;
		left: 10px;
		width: 30px;
		margin-right: 20px;
		z-index: 20;
	}
	
	.hamburger span {
		display: block;
		height: 3px;
		width: 100%;
		background-color:darkgreen;
		margin: 5px 0;
		transition: 0.4s;
	}
	
	/* バツ印に変化するスタイル */
	#drawer-toggle:checked + .menu_sp .menu_bar:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}
	
	#drawer-toggle:checked + .menu_sp .menu_bar:nth-child(2) {
		opacity: 0;
	}
	
	#drawer-toggle:checked + .menu_sp .menu_bar:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}

	.hamburger_caption{
		display: flex;			/*テキストを上下中央揃え*/
		align-items: center;	/*テキストを上下中央揃え*/
		color:darkgreen;
		font-size: x-large;
		font-weight: bold;
	}
  
	/* メニュー全体のスタイル */
	.menu {
		position: fixed;
		/*top: 0;*/
		left: -100%; /* 初期状態では画面の外に隠れている */
		width: 200px;
		/*height: 100%;*/
		/*background-color: bisque;*/
		transition: left 0.5s ease; /* スライドインのアニメーション */
		padding: 0px;
		box-sizing: border-box;
		z-index: 10;
	}

	/* メニューが開いているとき */
	#drawer-toggle:checked ~ .menu {
		left: 9px;
	}
	
	/* メニューリストのスタイル */
	.menu ul {
		display: inline;
		list-style-type: none;
		margin: 0;
	}
	
	.menu li {
		
		width: 100%;
		border-top: 1px solid #444;
		background-color: bisque !important;
		height: 50px;
	}
	
	.menu li img{
		/*width: 157px;*/
		display: none;
	}
	.menu li a {
		text-decoration: none;
	}
	.menu li span{
		font-size:x-large;
		/*text-align: center;*/
		display: flex;			/*テキストを上下中央揃え*/
		align-items: center;	/*テキストを上下中央揃え*/
		height: 50px;
		padding-left: 15px;
	}
}

/******************************************
/* パンくずリスト（スマホの場合のみ表示）
*******************************************/
.breadcrumb{
	display: none;
}

@media screen and (max-width:767px){
	.breadcrumb{
		font-size: x-large;
		height: 50px;
		background-color: aquamarine;
		padding-left: 10px;
		display: flex;			/*テキストを上下中央揃え*/
		align-items: center;	/*テキストを上下中央揃え*/
	}	
}

/******************************************
/* main部分
*******************************************/
main{
	margin-left: 5px;
	margin-right: 5px;
}

/******************************************
/* フッター
*******************************************/
footer{
	text-align: center;
}

footer img{
    width: auto;
    height: 100px;
}

@media (max-width:767px){
	footer{
		margin-bottom: 20px;	
	}
	footer img{
		height: auto;
	}
}
