@charset "utf-8";

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

sup{
	color: red;
}

.accordion-area li{
    margin: 60px 0;
}

.accordion-area section {
	border: 1px solid #FFC1A5;
	border-radius: 5px;
}

/*アコーディオンタイトル*/
.accordion-area .title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: normal;
    padding: 15px 50px 15px 40px;
    transition: all .5s ease;
	margin-bottom: 0;
}

.accordion-area .title span{
	font-size:12px;
}

/*アイコンの＋と×*/
.accordion-area .title::after{
    position: absolute;
}

.accordion-area .title span.question-number{
	position: absolute;
	top:-25px;
    left:-26px;
	padding: 10px;
	background: #FF5000;
	color:white;
	font-weight: bold;
	font-size:20px;
	border-radius: 50px;
	border: 1px solid #FF5000;
}

.accordion-area .title span.question-number2{
	position: absolute;
	top:-25px;
    left:-26px;
	padding: 9px 3px;
	background: #FF5000;
	color:white;
	font-weight: bold;
	font-size:20px;
	border-radius: 50px;
	border: 1px solid #FF5000;
}

.accordion-area .title::after{    
    top:18%;
    left: 95%;
	content: "";
	color:#FF5000;
    font-family: "Font Awesome 5 Free";
    font-size: 2.4rem;
    font-weight: 900;
    margin-left: .25em;
}

@media screen and (max-width: 600px) {
	.accordion-area .title::after{  
    top:32%;
    left: 88%;		
	}
}




/*　closeというクラスがついたら形状変化　*/

.accordion-area .title.close{
    float: none;
    font-weight: normal;
    line-height: 1.5;
    color: #333;
	font-size: 17.5px;
    text-shadow: 0 1px 0 #fff;
    opacity: 1;	
}

.accordion-area .title.close::after{
}

/*アコーディオンで現れるエリア*/
.accordion-area .box {
    display: none;/*はじめは非表示*/
    background: #FFF0E9;
	border:1px solid #FF5000;
	margin:40px 3% 3% 3%;
    padding: 3%;
	border-radius: 5px;
}

.accordion-area .box p{
	margin-bottom: 0;
	word-break: break-all;
}

.tab-wrap {
	background: White;
	box-shadow: 0 0 5px rgba(0,0,0,.1);
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	padding: 0 0 20px;
}

.tab-label {
	color: Gray;
	cursor: pointer;
	flex: 1;
	font-weight: bold;
	order: -1;
	padding: 24px;
	position: relative;
	text-align: center;
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
	user-select: none;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}

.tab-label:hover {
	background: #F2F2F2;
}

.tab-switch:checked + .tab-label {
	color: white;
	background-color: #4E67B2;
}

.tab-label::after {
	background: DeepSkyBlue;
	bottom: 0;
	content: '';
	display: block;
	height: 3px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(100%);
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
	width: 100%;
	z-index: 1;
}

.tab-switch:checked ~ .tab-label::after {
	transform: translateX(-100%);
}

.tab-switch:checked + .tab-label::after {
	opacity: 1;
	transform: translateX(0);
}

.tab-content {
	height:0;
	opacity:0;
	padding: 0 20px;
	pointer-events:none;
	transform: translateX(-30%);
	transition: transform .3s 80ms, opacity .3s 80ms;
	width: 100%;
}

.tab-switch:checked ~ .tab-content {
	transform: translateX(30%);
}

.tab-switch:checked + .tab-label + .tab-content {
	height: auto;
	opacity: 1;
	order: 1;
	pointer-events:auto;
	transform: translateX(0);
}

.tab-wrap::after {
	content: '';
	height: 20px;
	order: -1;
	width: 100%;
}

.tab-switch {
	display: none;
}
