@charset "UTF-8";
body {
  font-size: 16px;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
}

#contents {
  width: 1000px;
  margin: 0 auto;
}

#contents a {
  color: #FF080D;
}

#contents a:hover {
  opacity: 0.8;
}


.photo img {
  max-width: 100%;
  text-align: center;
}

.text{
	font-size: 2.0rem;
	text-align: center;
	font-weight: bold;
	margin: 20px 0 30px;
}
.indent {
padding-left:1em;
text-indent:-1em;
}
.indent2 {
padding-left:2em;
text-indent:-1em;
}

.last {
  margin: 50px;
}

.small{
	font-size: 1.2rem;
}

.patop{
	padding-top: 15px;
}

.title2{
padding: 0.5em;/*文字周りの余白*/
  color: #494949;/*文字色*/
  background: #fffaf4;/*背景色*/
  border-left: solid 5px #ffaf58;/*左線（実線 太さ 色）*/
	font-weight: bold;
}

.listimg{
	text-align: center;
	margin: 10px;
}

.listtext{
	font-weight: bold;
	text-align: center;
	font-size: 1.8rem;
}
.listtext1{
	text-align: center;
	margin-top: 5px;
}

.areatitle{
     position: relative;
     padding-left: 0.7em;
     margin: 20px;
	font-size: 1.8rem;
	font-weight: bold;
}

.areatitle:after{
     position: absolute;
     top: 50%;
     left:0;
     transform:translateY(-50%);
     content: '';
     width: 5px;
     height:1.5em;
     background-color: #FF0000;
}



/*ボックス全体*/
.accbox {
    /*margin: 2em 0;*/
    padding: 0;
    max-width: 400px;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding : 13px 12px;
    color: #ffba47;
    font-weight: bold;
    background: #fff2cc;
    cursor :pointer;
    transition: all 0.5s;
}

/*アイコンを表示*/
.accbox label:before {
    content: '\f054';
    font-family: 'FontAwesome';
    padding-right: 8px;
}

/*ラベルホバー時*/
.accbox label:hover {
    background :#ffe9a9;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    background: #fff5eb;
    opacity: 1;
}

.accbox .accshow p {
    margin: 15px 10px}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\f078';
}


*, *:before, *:after {
	box-sizing: border-box;
}
.col_2{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_2 > div{
	width: 50%;
	padding: 10px;
}
@media screen and (max-width: 960px) {
	.col_2 > div{
		width: 100%;
	}
}



/*================================================
 *  タブレット/スマートフォン向けデザイン
 ================================================*/


@media screen and (max-width:799px) {
  #contents {
    width: 100%;
  }
  .area {
    padding: 0 15px;
  }

	.text{
	font-size: 1.5rem;
	margin: 20px 0 30px;
}
	
	
	
	
}