@charset "utf-8";
@import "anime.css";
/*
------------
faq.css
------------
*/
.ani_trigger {}

/*
------------
index.html
------------
*/
#header_title {
	background: url("../../images/content/news/headerBg.webp") no-repeat center top;
	background-size: cover;
}
#container {
	background: #f2f2f2;
	padding: 25px 0 0 0;
}
/* news_cont */
#faq_cont {
	width: 100vw;
	position: relative;
	padding: 0 0 150px 0;
    font-feature-settings: "palt";
    z-index: 1;
    opacity: 0;
    animation-name: auto_opacity_anime01;
    animation-timing-function: ease;
    animation-duration: .5s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}
#faq_cont::after {
	content: "";
	width: 114px;
	height: 232px;
    background: #eeb127;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	position: absolute;
	bottom: 0;
	right: 0;
    z-index: -1;
}
#faq_cont .inner {
	width: 1000px;
	margin: 85px auto 0 auto;
}
#faq_cont .inner h3 {
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: 0.2em;
	line-height: 1.4;
	margin: 0 0 20px 0;
	padding: 0 0 0 30px;
	position: relative;
}
#faq_cont .inner h3::before {
	content: "";
	width: 1em;
	height: 1em;
	background: #eeb127;
	position: absolute;
	top: -5px;
	left: 0;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
}
#faq_cont .inner .list {
	border-bottom: 1px solid #000;
	margin: 0 0 100px 0;
}
#faq_cont .inner .list .item {
	border-top: 1px solid #000;
}
#faq_cont .inner .list .item h4 {
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.4;
	cursor: pointer;
	position: relative;
	background: #fff;
	padding: 15px 30px;
}
#faq_cont .inner .list .item h4.open {
	border-bottom: none;
}
#faq_cont .inner .list .item h4 span.ico {
	position: absolute;
	top: 50%;
	right: 2rem;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}
#faq_cont .inner .list .item h4 span.ico::before,
#faq_cont .inner .list .item h4 span.ico::after {
	content: "";
	position: absolute;
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
}
#faq_cont .inner .list .item h4 span.ico::before {
	border-top: 2px solid #000;
	width: 20px;
	height: 0;
	top: 0;
	bottom: 0;
	right: 0;
}
#faq_cont .inner .list .item h4 span.ico::after {
	border-left: 2px solid #000;
	width: 0;
	height: 20px;
	top: 0;
	bottom: 0;
	right: 9px;
	transition: .25s ease;
}
#faq_cont .inner .list .item h4.open span.ico::after {
	height: 0;
}
#faq_cont .inner .list .item .answer {
	display: none;
	padding: 35px 30px;
	line-height: 1.6;
	letter-spacing: 0.075em;
}
#faq_cont .inner .list .item .answer a {
	color: #eb3300;
}
#faq_cont .inner .list .item .answer a:hover {
	text-decoration: underline;
}
@media only screen and (max-width: 768px) {
    #faq_cont {
        padding: 0 0 75px 0;
    }
    #faq_cont::after {
        width: 30vw;
        height: 30vw;
    }
    #faq_cont .inner {
        width: 85vw;
        margin: 40px auto 0 auto;
        display: block;
    }
    #faq_cont .inner h3 {
        font-size: 1rem;
        margin: 0 0 20px 0;
        padding: 0 0 0 20px;
        letter-spacing: 0.15em;
    }
    #faq_cont .inner .list {
        margin: 0 0 60px 0;
    }
    #faq_cont .inner .list .item h4 {
        padding: 15px 40px 15px 20px;
        font-size: 0.9rem;
    }
    #faq_cont .inner .list .item h4 span.ico {
        right: 1rem;
        width: 10px;
        height: 10px;
        margin-top: -5px;
    }
    #faq_cont .inner .list .item h4 span.ico::before {
        width: 10px;
    }
    #faq_cont .inner .list .item h4 span.ico::after {
        height: 10px;
        right: 4px;
    }
    #faq_cont .inner .list .item .answer {
        padding: 25px 20px;
        font-size: 0.9rem;
    }
    }