/* CSS Document */
/*全体 --------------------*/
body {
  margin: 0px;
  padding: 0px;
  color: #000;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-align: center
}
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
}
ul {
  list-style-type: none;
}
ol {
  padding-left: 40px;
  padding-bottom: 15px;
}

.contents {
  max-width: 1000px;
  margin: 0 auto;
}

/*リンク --------------------*/
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #999;
}
a:hover img {
opacity: 0.7 ;
}
img:hover {
opacity: 0.7 ;
}

/*インデックス部分*/
.index ul{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding: 0;
}
.index li{
    list-style: none;
}
.index a{
    display: block;
    padding: 0px 10px;
    border-left:  1px solid #999;
    text-decoration: none;

}
.index li:last-child a{
    border-right: 1px solid #999;
}

/*各コーナー余白*/
.section {
  padding: 8% 0 3% 0;
  text-align: center;
  margin: 0 auto;	
}
/*アコーディオン*/
.accordion {
	  max-width: 1000px;
	  width:95%;
	  margin: 0 auto;
	  text-align:left;
}
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 0.7em;
	display: block;
	color: #fff;
	background:#999;
}
.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 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}


/*画面幅1000px以下の設定　--------------------*/
@media screen and (max-width: 999px) {
  body { /*たてバナー非表示*/
    background: none;
  }
}
/*画面幅700px以上の設定（pc）--------------------*/
@media screen and (min-width: 700px) {
  .only_pc { /*pcでは表示*/
    display: block;
  }
  .only_sp { /*pcでは非表示*/
    display: none;
  }
}
/*画面幅700px以下の設定（SP）--------------------*/
@media screen and (max-width: 699px) {
  body {
    font-size: 14px;
  }
  .only_pc { /*spでは非表示*/
    display: none;
  }
  .only_sp { /*spでは表示*/
    display: block;
  }

}