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

/* =======================================
ブルーの四角枠のアコーディオン
======================================== */

.cp_actab_1 {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	color: #000000;
}
.cp_actab_1 input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.cp_actab_1 label {
	font-weight: normal;
	line-height: 3;
	position: relative;
	display: block;
	padding: 0 0 0 1em;
	cursor: pointer;
	margin: 0 0 1em 0;
	background: #e5f5fd;
    border-left: solid calc((100vw / 800) * 7) #00A0E8;
}

.cp_actab_1 label:hover {
	font-weight: normal;
	line-height: 3;
	position: relative;
	display: block;
	padding: 0 0 0 1em;
	cursor: pointer;
	margin: 0 0 1em 0;
	background: #b1e7fc;
    border-left: solid calc((100vw / 800) * 7) #00A0E8;
}
.cp_actab_1 .cp_actab_1-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
	color: #000000;
	background: #ffffff;
}

/*
.cp_actab_1 .cp_actab_1-content p {
	margin: 1em;
}
*/

/* :checked */
.cp_actab_1 input:checked ~ .cp_actab_1-content {
	max-height: 100%;
}

/* Icon */
.cp_actab_1 label::after {
	line-height: 1.8;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 1.8em;
	height: 1.8em;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	text-align: center;
}

.cp_actab_1 input[type=checkbox] + label::after {
	font-size: 24px;
	content: '+';
}
.cp_actab_1 input[type=checkbox]:checked + label::after {
	transform: rotate(315deg);
}

/* =======================================
＋のアイコンがあるアコーディオン
======================================== */

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    margin:0 auto;
}
.accordion-area section {
}

/*アコーディオンタイトル*/
.accordion-area .title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.accordion-area .title::before,
.accordion-area .title::after{
    position: absolute;
    content:'';
    width: 25px;
    height: 5px;
    background-color: #FFDE00;
    transition: all .5s ease;  
}
.accordion-area .title::before{
    top:105%;
    left: 49%;
    transform: rotate(0deg);    
}
.accordion-area .title::after{    
    top:105%;
    left: 49%;
    transform: rotate(90deg);
}

@media only screen and (max-width: 599px) {
    .accordion-area .title::before{
        top:102%;
        left: 46%;
        transform: rotate(0deg);    
    }
    .accordion-area .title::after{    
        top:102%;
        left: 46%;
        transform: rotate(90deg);
    }    
}

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

/*アコーディオンで現れるエリア*/
.accordion-area .box {
    display: none;/*はじめは非表示*/
    border: dashed 4px #00A0E8;
    border-radius: 20px;
	margin:0%;
    padding: 5%;
}

