@charset "UTF-8";

main section{
    padding: 0.3em;
}

h1{
 font-size: 2rem;
 text-align: center;
 margin:1.5em 0;
}
h2 a{
	text-decoration: underline!important;
}
h1 br.sp{
	display: none;
}
@media screen and (max-width:480px) {
h1 br.sp{
	display: block;
}
}
h2{
    font-size: 1.6rem;
    margin: 0.5em;
	line-height: 1.3em;
}

h3{
    font-size: 1.2rem;
    margin: 0.5em;
}

.fl{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5em ;
}

.fl li.left{
    width:49%;
}
.fl li.left span{
	background: rgba(0,137,167,.7);
	color: rgba(255,255,255,1.00);
	font-weight: bold;
	padding: 0.5em;
	border-radius: 5px;
	display: block;
	width: fit-content;
	margin-bottom: 1em;
}

ul.list{
    display: flex;
}
ul.list li{
    padding: 0.5em;
	width: 48%;
}
ul.list li img{
    width:100%;
}
ul.list{
 padding: 1em;
 margin-top: 3em;;
}

.fl li.imgbox{
    text-align: center;
    width:48%;
}

@media screen and (max-width:480px) {
    h1{
        font-size: 1.8rem;
    }
    h2{
        font-size: 1.5rem;
    }
    h3{
        font-size: 1rem;
    }
   .fl{
       flex-direction:column;
}
.fl li.left{
    width:100%;
}
.fl li.left ul.list{
    padding: 0;
}

.fl li.left ul.list li{
    font-size: 0.8rem;
    margin-bottom: 1em;
}

.fl li.imgbox{
    width:100%;
}
.fl li.imgbox img{
    width:100%;
}
}



/*タブ切り替え*/
section.typeA{
	display: flex;
	flex-wrap: wrap;
}
section.typeA::after {
	content: '';
	width: 100%;
	height: 3px;
	order: -1;
	display: block;
	background: rgba(0,137,167,.7);
}
section.typeA .tabLabel {	/* タブ */
	margin-right: 3px;
	padding: 24px 12px;
	flex: 1;
	order: -1;
	border-radius: 3px 3px 0 0;
	color: #444;
	background: rgba(0,137,167,.3);
	transition: .5s ;
	cursor: pointer;
	text-align: center;
	font-weight: bold;
	
}
section.typeA .tabLabel:nth-last-of-type(1){ margin-right: 0; }
section.typeA input {		/* ラジオボタン非表示 */
	display: none;
}
section.typeA .content {	/* 本文 */
	width: 100%;
	height: 0;
	opacity: 0;
}
/*アクティブ設定*/
section.typeA input:checked + .tabLabel {
	color: #fff;
	background: rgba(0,137,167,.7);
}
section.typeA input:checked + .tabLabel + .content {
	padding: 15px;
	height: auto;
	overflow: auto;
	box-shadow: 0 0 5px rgba(0,0,0,.2);
	transition: .5s opacity;
	opacity: 1;
}
@media screen and (max-width:480px) {
section.typeA .tabLabel {	/* タブ */
	margin: 3px auto;
	flex: none;
	width: 40%;
}
}

h3 img{
	width: 100%;
}
h3 img.pc{
	display: block;
}
h3 img.sp{
	display: none;
}
@media screen and (max-width:800px) {
h3 img.pc{
	display: none;
}
h3 img.sp{
	display: block;
}
section.typeA .tabLabel {	/* タブ */
	margin-right: 0px;
	flex: none;
	width: 94%;
	margin-bottom: 0.5em;
}
}