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



/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　tab　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/



/*tabの形状*/
.tab{
	display: flex;
	flex-wrap: wrap;
	width:100%;
	min-width: 960px;
}
@media screen and (max-width:990px){
	.tab{
		display: none;
	}
}


.tab li{
	width:25%;
	text-align: center;
}
.tab li a{
	display: block;
	padding:10px 0px;
	border-bottom: 1px solid #ddd;
	font-size: 1.1em;
	color: #888;
	font-family: 'Hiragino Kaku Gothic Pro W3';
    transition: all .3s;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active{
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
.tab li.active a{
	margin: 0 2em;
	border-bottom: 1px solid #fb8c00;
	color: #fb8c00;
	font-family: 'Hiragino Kaku Gothic Pro W6';
}



/*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


@media screen and (max-width:990px){
	.area{
		display: block;
		opacity: 1;
	}
}

/*========= レイアウトのためのCSS ===============*/



.wrapper{
	width:100%;
	max-width: 960px;
	margin:100px auto 120px auto;
}


.area li{
	padding: 10px; 
	border-bottom: 1px solid #ddd;
}


/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　tab　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/






/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　アコーディオン　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/


h3{
	margin: 20px 0 30px 0;
	font-size: clamp(12px, 3.2vw, 22px);
}
h3::after{
	content: "";
	display: block;
	margin: 10px 0 20px 0;
	width: 100%;
	height: 1px;background: rgb(251,140,0);
	background: linear-gradient(90deg, #fb8c00 20%, #ddd 20%);
}



/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 100%;
    max-width: 550px;
	color: #3d3d3d;
}

@media screen and (max-width:990px){
	.accordion-area{
		margin: 0 auto;
		max-width: 700px;
	}
}



.accordion-area section {
	border: 0px solid #ccc;
}

/*アコーディオンタイトル*/
.top_faq_Q {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 10px 0 10px 0;
    transition: all .5s ease;
}

/*アイコンの＞*/
.top_faq_Q::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
  position: absolute;
    top:42%;
    right: 13px;
    /*矢印の形状*/
    width: 10px;
    height: 10px;
    border-top: 1px solid #A0A0A0;
    border-right: 1px solid #A0A0A0;
    transform: rotate(-45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

.top_faq_Q.close::after{
	transform: rotate(135deg);
}

/*アコーディオンで現れるエリア*/
.top_faq_A {
    display: none;/*はじめは非表示*/
	margin:0 0 15px 1em;
}


.icon_Q, .icon_A{
	fill: #fb8c00;
	stroke-width: 0px;
	width: 12px;
}

#sankaku_W_bg{
	width: 100%;
	background: #e2e2e2;
}
#sankaku_W{
	display: block;
	fill: #fff;
	stroke-width: 0px;
	margin: 0 auto;
	width: 100px;
}

.top_faq > div > p{
	margin: 20px 0 0 0;
	color: #aaa;
	font-size: 12px;
	font-family: 'HiraginoSans-W3';
	
}
.top_faq div p a{
	color: #fb8c00;
}

@media screen and (max-width:990px){
	.top_faq > div > p{
		margin: 20px auto 0 auto;
		width: 95%;
		max-width: 700px;
	}
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　アコーディオン　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/







/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/



/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/



@media screen and (max-width:990px){
}





@media screen and (max-width:990px){
.P{display: none!important;}}
@media screen and (min-width:991px){
.S{display: none!important;}}

