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

body {
	font-size: 14px;
	background-color: rgba(232,229,220,1.00);
	margin: 0;
	padding: 0;
}
body .container {
	background-color: rgba(255,255,255,1.00);
	width: 80%;
	margin: 90px auto 0;
	padding: 10px;
}
.fontcolorcloccared {
	color: rgba(173,52,65,1.00);
}
.note {
	font-size: 0.8rem;
	color: rgba(0,0,0,0.80)
}
.marker_yellow {
background: linear-gradient(transparent 60%, rgba(255,255,0,0.5) 60%);
}
.marker_red {
background: linear-gradient(transparent 60%, rgba(255,0,0,0.5) 60%);
}
.redunderlinedot {
border-bottom: 1px #FF0000 dotted;
}
.acordionmenu h4 {
	font-size: 1.2rem;
}
.acordionmenu p {
	margin: 0;
}
.acordionmenu p a {
	border-bottom: dotted 1px rgba(173,52,65,1.00);
}
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    margin:0 auto;
	padding: 0;
}

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

.accordion-area section {
	border: 1px solid rgba(173,52,65,1.00);
}

/*アコーディオンタイトル*/
h3.title {
	font-family: bokutoh-rera, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.6rem;
	color: rgba(173,52,65,1.00);
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: normal;
	background-color: rgba(251,250,240,1.00);
    transition: all .5s ease;
	margin: 0;
	padding: 0 0 0 40px;
}

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

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

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

.acordionmenu {
	width: 98%;
}
/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    /** background: #f3f3f3; 220105**/
	/** margin:0 3% 3% 3%; 220112**/
    padding: 2%;
}
@media screen and (max-width: 768px) {
	body {
		width: 100vw;
	}
	body .container {
		width: 100vw;
		margin: 90px 0 0;
		padding: 0;
	}
	.accordion-area {
		width: 100%;
	}