@charset "UTF-8";
.maintab-Wrap {
	word-break: keep-all;
}
.maintab-Wrap .maintab {
	padding: 2rem 0;
}
.con-tit {
    margin: 17rem 0 4rem 0;
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--red);
}
.txcenter {
    text-align: center;
}
.tabtitle {
	margin: 0 auto 4rem auto;
	width: 100%;
	max-width: 800px;
}
.tabtitle .subtitle {
	margin-bottom: 2rem;
	color: var(--red);
}
.tabtitle .desc {
	font-size: 1.6rem;
}
.faq-wrap {
	margin: 8rem auto 30rem auto;
	width: 100%;
	max-width: 1200px;
}
.faq-category:not(:last-child) {
	margin-bottom: 4.8rem;
}
.faq-category p {
	margin-bottom: 1rem;
	font-size: 2rem;
	font-weight: 700;
}
.faq-category p.desc {
	margin-bottom: 2.4rem;
	font-size: 1.6rem;
}
.faq-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
}
.faq-table thead th {
    padding: 12px 16px;
    border-top: 2px solid #222;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    color: #666;
}
.faq-item {
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}
.faq-item td {
    padding: 20px 16px;
}
.faq-item:hover {
    background: #fafafa;
}
.faq-num {
    width: 60px;
    text-align: center;
    font-weight: bold;
    color: #333;
}
.faq-title {
    font-size: 15px;
    color: #222;
}
.faq-arrow {
    width: 40px;
    text-align: center;
}
.faq-arrow .arrow {
	border: unset;
	border-radius: unset;
	width: fit-content;
	height: fit-content;
	background-color: transparent;
}
.arrow:after {
	content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    transform-origin: center center;
    transition: transform 0.3s ease;
    margin-bottom: 4px;
    background-image: url("/pc/assets/img/arrow_black.svg");
}
.faq-item.is-active .arrow:after {
    transform: rotate(-180deg);
    margin-bottom: 4px;
}
.faq-content td {
    padding: 0;
    background: #f9f9f9;
}
.faq-content .faq-content-inner {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 16px;
}
.faq-content .faq-content-inner {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s linear;
    padding: 0px 44px 0px 76px;
    font-size: 16px;
    line-height: 1.8;
    word-break: keep-all;
}
.faq-content.is-open .faq-content-inner {
    max-height: 800px;
    padding: 20px 44px 20px 76px;
    white-space: pre-line;
}