
/************************************
** QA
************************************/



.tab-4 {
    display: flex;
    flex-wrap: wrap;
justify-content: center;
width: 100%;
margin-bottom: 0;
}

.tab-4 > label {
display: flex;
/*flex: 1 1; 等間隔*/
    order: -1;
    position: relative;
    width: 10em;
    padding: .7em .5em;
    background-color: #F5F5F5;
    color: #000;
	justify-content: center;
font-weight: 600;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

@media screen and (max-width: 640px) {
.tab-4 > label {
    width: calc(100% / 5);
	font-size: 70%;
    padding: .7em 0em;
}
}

.tab-4 > label:hover,
.tab-4 label:has(:checked) {
    background-color: #ff8484;
    color: #fff;
}

.tab-4 label:has(:checked)::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 9px;
    background-color: #ff8484;
    content: '';
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.tab-4 input {
    display: none;
}

.tab-4 > div {
    display: none;
    width: 100%;
    padding: 0;
	padding-top: 1.5em;
}

.tab-4 label:has(:checked) + div {
    display: block;
}


dl.qa-8 {
margin: 0;
padding: 0;
}
.qa-8 dt {
margin: 0;
padding: 0;
    margin-bottom: 16px;
    color: #333333;
    font-weight: 600;
}

.qa-8 dt::before,
.qa-8 dd::before {
    margin-right: .4em;
}

.qa-8 dt::before {
    content: "Q.";
}

.qa-8 dd {
    margin: 0 0;
	margin-bottom: 40px;
    padding: 1em 1.5em;
    background-color: #f2f2f2;
    color: #333333;
}

@media screen and (max-width: 640px) {
.qa-8 dd {
	margin-bottom: 32px;
}
}
dl.qa-8 dd:last-child {
margin-bottom: 0;
}

.qa-8 dd::before {
    content: "A.";
}