/*css*/
.breadcrumb a {
    color: #333333;
    text-decoration: none;
}

.anchorlink {
    margin: 0 0 10px;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

.anchorlink li {
    border: 1px solid #159D38;
    border-radius: 5px;
    font-size: 1.4rem;
    width: 24%;
    height: 50px;
    text-align: center;
    position: relative;
}
.anchorlink li div {
    width: 100%;
    height: 50px;
    display: grid;
    place-items:center;
}
.anchorlink li a {
    width: 100%;
    color: #159D38;
    text-decoration: none;
    display: block;
    height: 16px;
    padding: 15px 0 17px;
}
.anchorlink li.joint a {
    height: 38px;
    padding: 5px 0 7px;
}
.anchorlink li::before {
    font-family: "Font Awesome 5 Free";
    content: '\f078';
    font-weight: 900;
    position: absolute;
    top:40%;
    right:6px;
    color: #159D38;
}

h1::after {
    content: "FAQ";
}


.contents a {
    color: #159D38;
    text-decoration: underline;
}

.contents dt:first-child {
    border-top: none;
}
.contents dt {
    border-top: 1px solid #E3E3E3;
}
.contents dt {
    font-size: 1.6rem;
    margin: 0;
    padding: 24px 0 0 56px;
    position: relative;
}
.contents dd {
    font-size: 1.3rem;
    margin: 0;
    padding: 24px 0 34px 56px;
    position: relative;
}
.contents dt::before ,
.contents dd::before {
    font-family:  "Prompt";
    margin-right: 20px;
    color: #159D38;
    font-size: 2rem;
    position: absolute;
    left: 26px;
}
.contents dt::before {
    content: "Q";
    top: 20px;
}
 .contents dd::before {
    content: "A";
    top: 20px;
}
h3.additional {
    display: inline-block;
    background: #159D38;
    font-size: 1.6rem;
    font-weight: normal;
    padding: 14px 32px;
    border-radius: 32px;
    color: #ffffff;
    margin-bottom: 0;
}

dl:last-child {
    margin-bottom: 100px;
}