.wrapper{
    max-width:600px;
    margin:0px auto;
    padding:80px 0px;
}

.mainS{	
	margin-bottom:15px;
}


.linkhp{
    display:block;
	margin-top:10px
}
h1{
	color: #515151;
	text-align:center;
	line-height: 1;
}

h2{
	margin-block-end: 0.2em;
}

.mainT span{
  display: block;
  font-size: medium;
  margin-top: 5px;
  text-align: center;
}


p {
	line-height: 1.2;
	width: 100%;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
	margin-left: 0px;
	margin: 0px;
	padding:0;
	color: #515151;
	text-indent: 1em;
}





footer{
	font-size: small;
	color: #444;
	text-align: left;
}


.fnav li{
	display: inline-block;
	padding-left: 0;
	margin-left: 0;
}

.fnav ul{
	padding-left: 0;
}


/*アコーディオン用の設定*/

/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding-left:  1em;
	padding-right:  1em;
	padding-bottom:  0.5em;
	padding-top:  0.1em;
	display: block;
	color: #fff;
	background:#168199;
	margin-top:5px;
	margin-bottom:0px;
	
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 10px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:10px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}
 

/*　スマホ対応　*/


@media screen and (max-width:480px) {

	.wrapper{
	    margin:0px auto;
	    padding-top:15px;
	    padding-left:2px;
	    padding-right:2px;
    }

p {
	line-height: 1.2;
	width: 100%;
	display: inline-block;
	padding-right: 0px;
	box-sizing: border-box;

}

}
 