@charset "UTF-8";
/*------------------------------------------
 .pagetitle
------------------------------------------*/
@media (min-width: 768px) {
.pagettl .pagettl-right .f-hma {
	font-size: 5.45vw;
}
}

/*------------------------------------------
 .plan-tab
------------------------------------------*/
.plan-tab {
	border-bottom: 5px solid var(--cyan);
}
.plan-tab .category-inr {
	overflow-x: auto;
	width: 100%;
}
.plan-tab .tab-list {
	display: flex;
	flex-wrap: nowrap;
	width: fit-content;
	margin: 0 auto;
	overflow-y: hidden;
}

.plan-tab .tab-list .tab {
	background-color: var(--wht);
	text-align: center;
	cursor: pointer;
	position: relative;
	min-width: 150px;
}
.plan-tab .tab-list .tab:first-child {
	border-radius: 30px 0 0 0;
}

.plan-tab .tab-list .tab:last-child {
	border-radius: 0 30px 0 0;
}


.plan-tab .tab-list .tab:not(:last-child) {
	border-right: 1px solid rgba(0,0,0,0.15);
}

.plan-tab .tab-list .tab::after {
	content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--cyan);
    border-right: 2px solid var(--cyan);
    position: absolute;
    left: 50%;
    bottom: 15px;
    z-index: 1;
    transform: translateX(-50%) rotate(45deg);
    transition: bottom ease 0.38s;
}
.plan-tab .tab-list .tab .tab-inner {
	display: block;
	line-height: 1.3;
	white-space: nowrap;
}

.plan-tab .tab-list .tab .f-en {
	color: var(--cyan);
}

/* current*/ 
.plan-tab .tab-list .tab.current {
	background-color: var(--cyan);
}
.plan-tab .tab-list .tab.current::after {
	border-color: var(--wht);
}
.plan-tab .tab-list .tab.current .f-en,
.plan-tab .tab-list .tab.current .f-noto {
	color: var(--wht);
} 

/* current以外 */
.plan-tab .tab-list .tab:not(.current)::before {
	content: "";
	display: block;
	width: 0;
	height: 5px;
	background-color: var(--cyan);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

@media (min-width: 768px) {
	.plan-tab .tab-list .tab:not(.current)::before {
		transition: width ease 0.38s;
	}
	.plan-tab .tab-list .tab:not(.current):hover::before {
		width: 70px;
	}
	.plan-tab .tab-list .tab:not(.current):hover::after {
		bottom: 10px;
	}
}
@media (max-width: 767px) {
	.plan-tab .tab-list .tab .tab-inner {
		transform: scale(0.8);
	}
}
@media (max-width: 480px) {
	.plan-tab .tab-list .tab {
		min-width: 130px;

	}
	.plan-tab .tab-list .tab .tab-inner {
		transform: scale(0.75);
	}
	.plan-tab .tab-list .tab .f-noto {
		transform: scale(0.8);
	}
	
}

.panel-area {
	position: relative;
	overflow: hidden;
}
.panel {
	width: 100%;
}

/* ------------------------- */
.area-category .list-category .tab a {
	padding: 20px 15px 35px 15px;
    display: block;
}

.area-category .list-category > li.active {
	color: var(--wht);
	background-color: var(--cyan);
}
.area-category .list-category li.active::after {
	border-color: var(--wht);
}

/* i-plus ----------------- */
.box-question .i-plus {
	width: 30px;
	height: 30px;
	position: absolute;
	display: inline-block;
	top: 50%;
	right: 40px;
    transform: translateY(-50%);
}
.i-plus:before, 
.i-plus:after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: var(--cyan);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
}
.i-plus:after {
    transform: translateY(-50%) rotate(90deg);
    transition: 0.3s;
}
.box-question.active .i-plus:after {
    transform: translateY(-50%) rotate(0deg);
}

/* sbox-faq ----------------- */
#area-faq .sbox-faq {
	margin-bottom: 30px;
}

#area-faq .sbox-faq:last-child {
	border-bottom: 1px solid #d9d9d9;
}

#area-faq .sbox-faq .icn {
	position: absolute;
	left: 3%;
	top: 50%;
    transform: translateY(-50%);
    line-height: 1.0;
}

/* box-question */
.box-question {
	position: relative;
	padding: 40px 110px 40px 110px;
	background-color: rgba(18, 170, 188, 0.08);
	border-bottom: 1px solid rgba(18, 170, 188, 0.6);
}
.box-question:hover {
	cursor: pointer;
}

.name-cat {
	font-size: 1.6rem;
	font-weight: 500;
	color: #000;
}

/* box-answer */
.box-answer {
    letter-spacing: 0.075em;
    position: relative;
    padding: 40px 80px 40px 110px;
    overflow: hidden;
	display: none;
	border-bottom: 1px solid rgba(0,0,0,0.15);
}

@media (min-width: 1200px){
	#area-faq {
		/*max-width: 1140px;
		margin-left: auto;
		margin-right: auto;*/
	}
}

@media (max-width: 1024px){
	.box-question {
		
	}
	.box-question .i-plus {
		right: 20px;
	}
}

@media (max-width: 768px){
	.area-category {
	}
	.list-category {
		display: flex;
    	flex-wrap: wrap;
	}
	.list-category > li {
	}
	
	.list-category > li:nth-child(3n)::after {
		
	}
	.box-question,
	.box-answer {
		padding-left: 75px;
	}
}

@media (max-width: 640px){
	.list-category > li {

	}
	.list-category > li:nth-child(2n)::after {
		
	}
	.box-question,
	.box-answer {
		padding-left: 30px;
		padding-right: 30px;
	}
	.box-question .name-cat {
		margin-bottom: 15px;
		padding-left: 40px;
	}
	.box-question .icn {
	    
	}
	.box-question .i-plus {
		top: 25px;
	    transform: translateY(-0);	
	}
	.box-answer p {
		padding-top: calc(1.5em + 15px);
	}
	#area-faq .sbox-faq .icn {
		top: auto;
		transform: none;
		left: 30px;
	}
}

@media (max-width: 480px){
	.container-fluid.pt120 {
		padding-top: 6rem;
    	padding-top: clamp(6rem, 4.6672rem + 2.78vw, 8rem);
	}
	.plan-tab .tab-list {
		
	}
	.plan-tab .tab-list .tab:not(:last-child) {
		
	}
	.box-question {
		padding-left: 5%;
		padding-right: 5%;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.box-question .name-cat {
	    padding-left: 45px;
	}
	.box-question .i-plus {
		top: 20px;
		right: 5%;
	}
	.box-answer {
	    padding: 20px 5%;
	}
	#area-faq .sbox-faq {
		margin-bottom: 10px;
	}
	#area-faq .sbox-faq .icn {
		left: 5%;
	}
}

