/*===============================================
●pc用のcssを記述
===============================================*/
@media screen and (min-width : 1180px ){


/*アコーディオン---------------*/
.check{
   display: none;
}

.label{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-bottom: 13px;
    font-family: 'Noto Sans JP', sans-serif;	
}



.accordion_erea{
   display: flex;
   align-items: center;
   height: 0;
   overflow: hidden;
   margin-bottom: 10px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
   transition: 0.5s;
}
	
	
/*アコーディオン動き-----*/	
.check:checked + .label + .accordion_erea{
    height: auto;
    padding-top: 20px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 0px;	
}

	
	
}




/*ここからスマートフォン用環境の設定---------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width : 1179px ){
	
	
/*アコーディオン---------------*/
.check{
   display: none;
}

.label{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}



.accordion_erea{
   display: flex;
   align-items: center;
   height: 0;
   overflow: hidden;
   margin-bottom: 0px;
   transition: 0.5s;
}
	
/*アコーディオン動き-----*/	
.check:checked + .label + .accordion_erea{
    height: auto;
    padding-top: 10px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 0px;	
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}	
