@charset "utf-8";
.anc1 {
    top: -160px;
}

.faq_main_msg {
    text-align: center;
    color: #9CACB8;
    margin-bottom: 3.5rem;
    margin-top: 6.25rem;
}
.faq_main_msg > a {
    color: #9CACB8;
}

.cms_cat-faq {}
.cms_cat-faq .cms_cat_inner {
    padding-top: 0;
    padding-bottom: 0;
}
.cms_cat-faq a {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 0;
    margin-left: 20px;
    position: relative;
}
.cms_cat-faq a + a {
    margin-left: 30px;
}
.cms_cat-faq a::before {
    content: '';
	position: absolute;
	top: -6px;
	bottom: 0;
	right: 0px;
	width: 5px;
	height: 5px;
	margin: auto;
	border-top: 2px solid #0279ff;
	border-right: 2px solid #0279ff;
	transform: rotate(135deg);
}
.cms_cat-faq a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 51%;
    left: 51%;
    border-top: 2px solid #0279ff;
    transition: right 400ms cubic-bezier(.165,.84,.44,1), left 400ms cubic-bezier(.165,.84,.44,1);
}

.faq__box {
    padding-top: 110px;
}

.faq__box + .faq__box {
    padding-top: 136px;
}

.faq__ttl {
    font-weight: bold;
	font-size: 18px;
	/* margin-bottom: 34px; */
	padding-bottom: 16px;
	border-bottom: #264966 solid 2px;
	position: relative;
	z-index: 1;
	line-height: 1.2;
	color: #fff;
}
.faq__ttl:before {
    content: "";
    z-index: 1;
    position: absolute;
    background: #0279ff;
    width: 50px;
    height: 2px;
    bottom: -2px;
    left: 0;
}

.faqList {
    border-bottom: 1px solid #264966;
}

/* Q */
.faqList__ttl {
    font-size: 18px;
    position: relative;
    padding: 34px 76px;
    cursor: pointer;
}

.faqList__ttl::before {
    content: "Q.";
    font-size: 30px;
    position: absolute;
    left: 30px;
    /* top: 0; */
    line-height: 1;
    color: #0279FF;
}

/* 開閉アイコン */
.faqList__icon {
    display: inline-block;
    position: absolute;
    width: 15px;
    height: 16px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    vertical-align: middle;
}

.faqList__icon::before,
.faqList__icon::after {
    content: "";
    display: block;
    width: 15px;
    height: 1.5px;
    background: #fff;
    position: absolute;
    right: 50%;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.faqList__icon::after {
    background: #fff;
    -webkit-transform: translate(50%, -50%) rotate(90deg);
    transform: translate(50%, -50%) rotate(90deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.faqList__ttl--open .faqList__icon::after {
    -webkit-transform: translate(50%, -50%) rotate(0deg);
    transform: translate(50%, -50%) rotate(0deg);
}

/* A */
.faqList__detail {
    display: none;
}

.faqList__txt {
    position: relative;
    padding: 34px 76px 0;
    margin-bottom: 34px;
    color: #9DADB9;
}
.faqList__txt::before {
    content: "A.";
    position: absolute;
    left: 30px;
    line-height: 1;
    color: #0279FF;
    font-size: 30px;
}

/* ボタン */
.faq_link {
    display: flex;
    justify-content: center;
    margin: 8rem 0;
}
/* ----------------------------------- */
/* ----------------------------------- */
/* ----------------------------------- */
/* ----------------------------------- */


/* ホバーアクション ----------------------------------- */
@media screen and (min-width: 641px) {
    .cms_cat-faq{}
    .cms_cat-faq a:hover {
        background-color: inherit;
        color: #0375F5;
    }

    .cms_cat-faq a:hover::after {
        left: 0%;
        right: 0%;
    }

    .faqList__ttl::after {
        content: "";
        z-index: -1;
        position: absolute;
      
        background: #172F41;
      
        left: -2px;
        top: -2px;
        bottom: -2px;
        width: 100%;
      
        -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
    }

    .faqList__ttl:hover::after {
        -webkit-transform: scaleX(1);
		-ms-transform: scaleX(1);
		transform: scaleX(1);
		-webkit-transform-origin: left center;
		-ms-transform-origin: left center;
		transform-origin: left center;
    }
}

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

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

/*---------------------------------------------------------
	スマホ
---------------------------------------------------------*/
@media screen and (max-width: 640px) {
    .faq_main_msg {
        margin-top: 42px;
        margin-bottom: 42px;
        text-align: left;
    }

    .cms_cat-faq a {
        margin-left: 0;
    }
    .cms_cat-faq a + a {
        margin-left: 16px;
    }
    
    .faq__box {
        padding-top: 50px;
    }
    
    .faq__box + .faq__box {
        padding-top: 60px;
    }

    .faq__ttl {
        font-weight: bold;
        font-size: 16px;
        padding-bottom: 10px;
    }

    /* Q */
    .faqList__ttl {
        padding: 24px 40px;
        font-size: 16px;
        line-height: 1.5;
    }
    .faqList__ttl::before {
        z-index: 1;
        font-size: 24px;
        left: 10px;
    }

    .faqList__icon {
        right: 14px;
        width: 12px;
        height: 12px;
    }
    .faqList__icon::before,
    .faqList__icon::after {
        width: 12px;
    }


    /* A */
    .faqList__txt {
        padding: 0px 20px 0 40px;
        margin-bottom: 24px;
    }
    .faqList__txt::before {
        font-size: 24px;
        left: 10px;
    }

    /* ボタン */
    .faq_link {
        margin: 48px 0;
    }

    /* ----------------------------------- */

    /* ----------------------------------- */
}
