@charset "UTF-8";
body {
    margin: 0;
}

.-faq .main-hd-cnt {
}

.anchor-link {
    width: 75%;
    margin: 0 auto 70px;
}
.anchor-link-list {
    display: flex;
    justify-content: space-evenly;
}
.link-item {
}
.link-item a {
}

.link-item a:hover {
}

.link-item p {
    color: #ea6876;
	opacity: 1;
    transition: opacity 0.3s;
	font-size: 16px;
    font-weight: bold;
}

.link-item p::after {
	content: '';
    display: inline-block;
    width: 11px;
    height: 9px;
	margin-left: 15px;
    background-image: url('../../img/qa/arrow-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.link-item p:hover{
	opacity: 0.7;
}

#app-select,
#work-env,
#ben-pro,
#other {
    padding-top: 80px;
    margin-top: -80px;
}

.faq {
    padding: 30px 0 100px;
    position: relative;
    width: 100%;
}

.qa-wrap {
    margin-bottom: 80px;
}

.qa-ttl-cnt {
	padding: 15px 25px;
	background: #E5919E;
	margin-bottom: 20px;
}

.qa-ttl {
	font-size: 20px;
	font-weight: bold;
	color: #ffffff;
}

.qa-list {
text-align:left;
}

dt {
    display: flex;
    justify-content: space-between;
    background: #f4f4f4;
    align-items: center;
    cursor: pointer;
    padding: 15px 25px;
    transition: background 0.3s;
}

dt em {
    font-style: normal;
    font-size: large;
    font-weight: 600;
    display: flex;
    align-items: center;
}

dt:hover {
    background-color: #e3e3e3;
}

/* dt .arrow {
    width: 16px;
    height: 16px;
    margin-left: 10px;
    display: inline-block;
    position: relative;
    right: 20px;
    transition: transform 0.3s ease;
    background: url('../img/cmn/arrow.png') no-repeat center;
    background-size: contain;
}

dt.active .arrow {
    transform: rotate(180deg);
} */

dt em::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 31px;
    margin-right: 23px;
    background-image: url('../../img/qa/Q-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.faq dd {
    display: none;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
}

dd.open {
    max-height: 500px;
    padding: 15px;
}

dd em {
    font-style: normal;
    font-size: large;
    display: flex;
    gap: 23px;
    padding: 8px 0px 25px 25px;
}

dd em img {
    width: 26px;
    height: fit-content;
}

dd em::before {
    /* content: '';
    display: inline-block;
    width: 16px;
    height: 18px;
    margin-right: 8px;
    background-image: url('../img/cmn/A-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle; */
}

.qa-list dl {
position: relative;
margin: 0 auto 13px;
/* padding: 15px 80px 15px 0; */
cursor: pointer;
background: #fff;
border-radius: 15px;
}

.qa {
    width: 100%;
    display: block;
    margin: 0 auto;
    transition: 0.4s ease; /
}

.qa:hover {
    /* background-color: #3e9bf33e;
    opacity: 0.8; */
}

.qa-list dl:first-child {
/* border-top: 1px solid #ccc; */
}

.qa-list dl:last-child {
	margin-bottom: 30px;
}

.qa-list dl dt {
	position: relative;
	margin: 0;
}

.qa-list dl dt p {
	font-weight: bold;
}

.qa-list dl dd {
    position: relative;
    display: block;
    max-height: 0;
    margin: 0;
    padding: 0;
    background: #fff;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
}
.qa-list dl dd.open {
    max-height: 1000px;
    margin: 10px 0 0;
}

.qa-list dl dd p {
/* margin: 30px 0 0; */
}
.qa-list dl dd p:first-child {
margin-top: 0;
}

.qa-list normalbutton a {
text-decoration: none;
}

.txt-area {}
.txt-area p {}
.txt-area p a {
    text-decoration: underline;
    color: #0394c9;
}
    

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

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

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

    .anchor-link {
        width: 100%;
        margin-bottom: 10px;
    }

    .anchor-link-list {
        flex-wrap: wrap;
        justify-self: unset;
    }

    .anchor-link-list .link-item {
        width: 75%;
        margin: 0 auto 20px;
    }

    .link-item p {
        text-align: center;
        padding: 15px;
    }

    .faq {
        padding: 0px 0 10px;
        position: relative;
        width: 100%;
    }

    .qa-wrap {
        margin-bottom: 30px;
    }

    .qa > dt span {
        left: -15px;
        bottom: unset;
    }
    dt em {
        padding-left: 0px;
        font-style: normal;
        display: flex;
        font-size: 14px;
    }
	dt em::before {
		width: 27px;
		height: 30px;
		margin-right: 15px;
	}
    .qa-list dl dt {
        padding: 15px;
        width: 100%;
    }
    .qa-list dl dt p {
        width: 100%;
        display: flex;
        align-items: center;
    }
    .qa-list dl {
        padding: 0;
    }
    .qa-list dl dd {
        padding: 0 0 0 15px !important;
    }
    .qa-list dl dd.open {
        max-height: 800px;
        padding: 0px 0px 0px 5px;
        margin: 10px 0 0;
    }
    dd em {
        font-size: 14px;
		gap: 15px;
        padding: 0px;
    }
    dd em img {
        width: 23px;
        height: 31px;
    }
    .txt-area {}
    .txt-area p {
        width: 270px;
    }
    .txt-area p a {
        display: block; /* スマホでリンクをブロック要素に変更 */
        width: 100%; /* 幅を100%にして横幅を調整 */
        word-wrap: break-word; /* 長い単語は折り返し */
    }
}
