/****************

link

******************/

.point__link {
    display: flex;
    justify-content: space-evenly;
    margin: 80px 0;
}

.point__link a.page-link {
    align-items: center;
    border: 1px solid #D6D6D6;
    border-radius: 4px;
    color: #333;
    display: flex;
    justify-content: center;
    padding: 16px 24px;
    position: relative;
    width: 320px;
}

.point__link a.page-link:hover {
    border: 1px solid #65BFD1;
}

.point__link a.page-link svg {
    color: #65BFD1;
    font-size: 12px;
    position: absolute;
    right: 20px;
}

.point__link a.page-link-current {
    border: 1px solid #65BFD1;
    color: #65BFD1;
}

@media screen and (max-width: 680px) {
    .point__link {
        flex-direction: column;
        margin: 8vw 0 0 0;
    }
    .point__link a.page-link {
        margin: 0 auto 4vw auto;
        width: 70vw;
    }
}


/****************

faq

******************/

.faq {
    padding: 64px 0;
}

.faq--box {
    margin: 48px auto 0 auto;
}

.faq--box li {
    border-top: 1px dashed #C9C9C9;
    padding: 16px 0;
}

.faq--box li:last-child {
    border-bottom: 1px dashed #C9C9C9;
}

.faq--box li span {
    color: #65BFD1;
    font-size: 22px;
    padding-right: 8px;
}

.faq--box li h5.title {
    position: relative;
    cursor: pointer;
    font-weight: normal;
    padding: 16px 32px;
    transition: all .5s ease;
}

.faq--box li h5.title::before,
.faq--box li h5.title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #65BFD1;
}

.faq--box li h5.title::before {
    top: 48%;
    right: 20px;
    transform: rotate(0deg);
}

.faq--box li h5.title::after {
    top: 48%;
    right: 20px;
    transform: rotate(90deg);
}

.faq--box li h5.title.close::before {
    transform: rotate(45deg);
}

.faq--box li h5.title.close::after {
    transform: rotate(-45deg);
}

.faq--box li .answer {
    display: none;
    background: #f3f3f3;
    padding: 32px 40px;
}

.faq--box li .answer p {
    font-weight: 100;
    margin-left: 24px;
    text-indent: -32px;
}

.faq--box li .answer h3 {
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 600;
    font-size: 24px;
    font-style: normal;
    line-height: 38px;
    margin-top: 16px;
    margin-left: 40px;
}

.faq--box li .answer h3 svg {
    font-size: 22px;
    margin-right: 8px;
}

@media screen and (max-width: 680px) {
    .faq {
        padding: 8vw 0;
    }
    .faq--box li {
        padding: 2.1vw;
    }
    .faq--box li h5.title {
        padding: 2.1vw 7.2vw 2.1vw 0;
    }
    .faq--box {
        margin: 3.2vw auto;
    }
    .faq--box li .answer {
        padding: 6.4vw;
    }
}


/****************

consultantion

******************/

.consultantion {
    padding: 120px 0 60px 0;
    position: relative;
}

.consultantion__list {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.consultantion__list h2 {
    font-weight: 500;
    margin-bottom: 24px;
}

.consultantion__list p {
    font-weight: 100;
}

.consultantion__list p span.bold {
    font-weight: 600;
}

.consultantion__list h2:before {
    content: "\f111";
    color: #D3E8EB;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 48px;
    line-height: 32px;
    left: -16px;
    position: absolute;
    z-index: -1;
}

.consultantion__detail {
    padding-top: 120px;
}

.consultantion__box {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-direction: column;
    row-gap: 24px;
}

.consultantion__box--txt p {
    font-weight: 100;
}

.consultantion__box--img .consultantionViewImg {
    border-radius: 8px;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.consultantion__box--detail {
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 24px 32px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;           
}

.consultantion__box--detail ul {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;      
}

@media screen and (max-width: 680px) {
    .consultantion {
        padding: 12vw 0;
    }
    .consultantion__detail {
        padding-top: 8vw
    }
    .consultantion__list h2 {
        padding-left: 3.2vw;
    }
    .consultantion__list h2:before {
        left: -2px;
    }
    .consultantion__box {
        flex-direction: column;
        margin-top: 2.1vw;
    }
    .consultantion__box--detail {
        margin-top: 3.2vw;
        margin-bottom: 3.2vw;
    }
}

/****************

flow

******************/

.flow {
    padding-top: 40px;
}

.flow__list {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.flow__list-box {
    border: 1px solid #65BFD1;
    border-radius: 8px;
    padding: 32px;
}

.flow__list-box p a {
    color: #65BFD1;
    text-decoration: underline;
}

.flow__list-title {
    display: flex;
    column-gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #B7B7B7;
    margin-bottom: 24px;
}

.flow__list-title span {
    background-color: #65BFD1;
    padding: 4px 32px;
    border-radius: 24px;
    color: #fff;
}

.flow__list-icon {
    margin: 0 auto;
}

.flow__list-icon svg {
    color: #65BFD1;
    font-size: 24px;
}

@media screen and (max-width: 680px) {
    .flow__list-title {
        align-items: center;
        flex-direction: column;
        row-gap: 3.2vw;
    }
    .flow__list-title { 
        padding-bottom: 3.2vw;
        margin-bottom: 3.2vw;
    }
    .flow {
        padding-top: 0;
    }
}