@charset "utf-8";
/* CSS Document */

/*----------------------

	mainvisual

-----------------------*/


#mainvisual{
	width: 100%;
	height:255px;
	position: relative;
	background: url(../img/nav_back.gif);
	
}

.blog-title{
	position: relative;
	margin-top: 55px;
	width: 100vw;
	height: 200px;
}

.blog-title p{
	position: absolute;
	top: 30%;
	right: 18%;
	font-size: 150%;
	color: #fff;
	background: rgba(0,102,0, .8);
	padding: 5px 10%;
	border-radius: 10px;
	line-height: 28px;
	z-index: 10;
	text-align: center;
}

.blog-title p span{
	font-size: 50%;
}
.blog-title img{
   width: 100%;
	height: 200px;
	position: absolute;
	object-fit: cover;
}
.bg01{
	width: 100%;
	height: 10px;
	background: url(../img/nav_back.gif);	
}

/*---------------------------------------------------

				content
				
-----------------------------------------------------*/

.content{
	width: 100%;
}

.wrapper{
	width: 96%;
	margin: 30px auto;
}

.orange{
	color: #F60;
	font-weight: bold;	
}

.text01{
	font-weight: bold;
	text-align: center;
	font-size: 120%;	
}

.text02{
	text-align: center;	
	font-size: 100%;
	padding-top: 10px;
}
.text03{
	padding: 10px 0 30px;
	font-size: 95%;	
}


.list01{
	padding: 10px 0 20px;	
}

.list01 >li{
	font-size: 95%;
	padding: 5px;
	list-style: disc;
    list-style-position: inside;
	line-height: 1.7;
	letter-spacing: 1.5px;
	color: #1f371f;
	text-indent: -1.5em;
    padding-left: 1.5em;
}

.list01 >li a{
	color: #060;
	border-bottom: 1px solid #060;	
}

.list01 >li a:hover{
	color: #f60;
	border-bottom: 1px solid #f60;	
}


.about{
	width: 94%;
	border: 2px solid #cce0cc;
	margin: 30px auto 0;
}

.about h3{
	border-bottom: 2px solid #cce0cc;
	text-align: center;
	padding-bottom: 10px;
	padding-top: 10px;
}

.about h3:after{
	width: 0;
}

.about-list{
	padding: 10px 10px 0;	
	
}

.about-list >li{
	font-size: 95%;
	padding: 5px;	
	list-style-type: disc;
    list-style-position: inside;
	text-indent: -1.5em;
    padding-left: 1.5em;
}

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 2px solid #cce0cc;
}

/*アコーディオンタイトル*/
.list-title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:105%;
    font-weight: bold;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
	color: #1f371f;
}

/*アイコンの＋と×*/
.list-title::before,
.list-title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #cce0cc;
    
}
.list-title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.list-title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.list-title.close::before{
	transform: rotate(45deg);
}

.list-title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f9fcf9;
	margin:0 3% 3% 3%;
    padding: 3%;
}