@charset "UTF-8";
/* CSS Document */

body {
    margin-top: 100px;
    background: #FFFFFF;
}


.sec1 {
    position: relative;
}

.sec1 img {
    display: block;
    width: 80%;
    margin-left: auto;
    min-height: 280px;
    object-fit: cover;
    object-position: left;
    border-radius: 20px;
}

.sec1__title {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    text-align: left;
    color: #3B8EC0;
    z-index: 1;
}

.sec1__title strong {
    display: block;
    font-size: 6rem;
    font-family: var(--en);
    font-weight: 800;
    letter-spacing: 16px;
}

.sec1__title h2 {
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: 3px;
}

@media (max-width: 1024px) {

    .sec1__title strong {
        font-size: 4.5rem;
    }

    .sec1__title h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 600px) {

    .sec1 img {
        min-height: 180px;
    }

    .sec1__title strong {
        font-size: 3rem;
        letter-spacing: 12px;
    }

    .sec1__title h2 {
        font-size: 1.4rem;
        letter-spacing: 2.4px;
    }
}




.sec2 {
    padding: 100px 0 0;
}

.sec2__wapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.sec2__wapper__h2 {
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 7rem;
    margin-bottom: 50px;
}

.sec2__wapper__ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 100px;
}

.sec2__wapper__ul__li {
    width: calc(100% / 2 - 25px);
    padding: 30px 5% 20px;
    border-radius: 20px;
    text-align: left;
    box-shadow:
        inset -4px 1px 2px 0 rgba(116, 160, 189, 0.2),
        inset -1px -1px 2px 0 rgba(255, 255, 255, 0.8),
        -5px 5px 5px 0 rgba(116, 160, 189, 0.2),
        5px -5px 10px 0 rgba(255, 255, 255, 0.8),
        -5px -5px 10px 0 rgba(255, 255, 255, 0.8),
        5px 5px 5px 0 rgba(116, 160, 189, 0.2);
}

.sec2__wapper__ul__li__h3 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #3B8EC0;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.sec2__wapper__ul__li__p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sec2__wapper__ul__li a {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    font-family: var(--en);
    color: #3B8EC0;
    padding-bottom: 7px;
    border-bottom: solid 1px #3B8EC0;
    margin: 0 auto;
}

.sec2__wapper__ul__li a span {
    display: block;
    width: 10px;
    height: 3px;
    background: #3B8EC0;
    transition: 0.3s;
    transition-timing-function: ease-out;
}

.sec2__wapper__ul__li a:hover span {
    transform: translateX(20px);
}


@media (max-width: 600px) {
    .sec2__wapper__h2 {
        font-size: 2.6rem;
    }

    .sec2__wapper__ul__li {
        width: 100%;
    }

    .sec2__wapper__ul__li__h3 {
        font-size: 2rem;
    }

    .sec2__wapper__ul__li__p {
        font-size: 1.4rem;
    }

    .sec2__wapper__ul__li a {
        font-size: 1.4rem;
    }
}




.entry {
    padding: 150px 0;
    background-image: url(../images/join/bg1.jpg);
    background-size: cover;
    background-position: center;
}

.entry2 {
    background-image: url(../images/join/bg2.jpg);
}

.entry__wapper {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.entry__wapper__text {
    text-align: left;
    color: #FFFFFF;
    flex: 1;
}

.entry__wapper__text strong {
    display: block;
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    font-family: var(--en);
}

.entry__wapper__text h2 {
    font-size: 2rem;
    letter-spacing: 3px;
    font-weight: 800;

}

.entry__wapper__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 90px;
    font-size: 2.8rem;
    letter-spacing: 1px;
    background: #27A9C7;
    font-weight: 700;
    font-family: var(--en);
    color: #FFFFFF;
    border-radius: 10px;
    box-shadow: inset 1px 1px 2px 0 rgba(255, 255, 255, 0.3), inset -1px -1px 2px 0 rgba(255, 255, 255, 0.3);
    filter: drop-shadow(-6px 6px 12px rgba(255, 255, 255, 0.3)) drop-shadow(6px -6px 12px rgba(255, 255, 255, 0.3)) drop-shadow(-3px -4px 10.7px rgba(255, 255, 255, 0.3)) drop-shadow(2px 2px 8px rgba(255, 255, 255, 0.3));
}


@media (max-width: 767px) {
    .entry__wapper {
        flex-direction: column;
    }
}


@media (max-width: 600px) {

    .entry {
        padding: 100px 0;
    }

    .entry__wapper__text strong {
        font-size: 3rem;
    }

    .entry__wapper__text h2 {
        font-size: 1.6rem;
    }

    .entry__wapper__button {
        font-size: 2.2rem;
        height: 60px;
    }
}




.sec3 {
    padding: 100px 0;
}

.sec3__wapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.sec3__wapper__h2 {
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.sec3__wapper__p {
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.sec3__wapper__small {
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 500;
    display: block;
    margin-bottom: 50px;
}

.sec3__wapper__ul {
    max-width: 800px;
    margin: 0 auto 100px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.sec3__wapper__ul__li {
    position: relative;
    display: flex;
    gap: 50px;
    align-items: center;
}

.sec3__wapper__ul__li::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 57px;
    width: 28px;
    height: 13px;
    background: #CDCDCD;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.sec3__wapper__ul__li:last-child:after {
    content: none;
}

.sec3__wapper__ul__left {
    width: 150px;
}

.sec3__wapper__ul__right {
    flex: 1;
}

.sec3__wapper__ul__right__top {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: solid 1px #3B8EC0;
    margin-bottom: 20px;
}

.sec3__wapper__ul__right__top img {
    width: auto;
    height: 20px;
}

.sec3__wapper__ul__right__top h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3B8EC0;
    line-height: 1;
    letter-spacing: 3px;
}

.sec3__wapper__ul__right__p {
    text-align: left;
    letter-spacing: 1px;
    line-height: 2;
    font-weight: 700;
}

.sec3__wapper__center {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    line-height: 2;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.sec3__wapper__center ul {
    list-style: inside;
}

.sec3__wapper__bottom {
    background-image: url(../images/join/bg3.jpg);
    background-repeat: repeat;
    padding: 80px 5%;
    border-radius: 20px;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 1px;
}

.sec3__wapper__bottom h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.sec3__wapper__bottom p {
    line-height: 2;
}


@media (max-width: 600px) {
    .sec3__wapper__h2 {
        font-size: 2.6rem;
    }

    .sec3__wapper__p {
        font-size: 1.4rem;
        margin: 0;
        text-align: left;
        line-height: 1.75;
    }

    .sec3__wapper__small {
        font-size: 1.4rem;
        text-align: left;
        line-height: 1.75;
        font-weight: 700;
    }

    .sec3__wapper__ul__left {
        width: 125px;
    }

    .sec3__wapper__ul__li {
        gap: 40px;
    }

    .sec3__wapper__ul__right__top h3 {
        font-size: 1.8rem;
    }

    .sec3__wapper__ul__right__top {
        margin-bottom: 10px;
    }

    .sec3__wapper__ul__right__top img {
        height: 18px;
    }

    .sec3__wapper__ul__right__p {
        font-size: 1.4rem;
    }

    .sec3__wapper__ul {
        gap: 50px;
    }

    .sec3__wapper__ul__li::after {
        left: 47px;
        bottom: -30px;
    }

    .sec3__wapper__center {
        font-size: 1.4rem;
    }

    .sec3__wapper__bottom h3 {
        font-size: 1.8rem;
    }

    .sec3__wapper__bottom p {
        font-size: 1.4rem;
        text-align: left;
    }
}




.sec4 {
    padding-top: 100px;
}

.sec4__wapper {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.sec4__wapper h2 {
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 50px;
    font-family: var(--en);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__question {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 10px;
    background: #F6F9FC;
    cursor: pointer;
    text-align: left;
    box-shadow:
        inset 1px 1px 2px 0 rgba(255, 255, 255, 0.3),
        inset -1px -1px 2px 0 rgba(207, 222, 232, 0.5),
        -5px 5px 10px 0 rgba(116, 160, 189, 0.2),
        5px -5px 10px 0 rgba(186, 211, 228, 0.2),
        -5px -5px 10px 0 rgba(255, 255, 255, 0.9),
        5px 5px 13px 0 rgba(204, 225, 240, 0.9);
    border-radius: 10px;
}

.faq__q {
    margin-right: 16px;
    font-weight: 700;
    font-size: 15px;
    color: #2aa9e0;
}

.faq__text {
    flex: 1;
    font-weight: 700;
    line-height: 1.6;
    color: #2aa9e0;
}

.faq__icon {
    position: relative;
    width: 12px;
    height: 12px;
    margin-left: 16px;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: #2aa9e0;
    transition: 0.3s;
}

.faq__icon::before {
    width: 12px;
    height: 2px;
}

.faq__icon::after {
    width: 2px;
    height: 12px;
}

.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
    background: #F6F9FC;
    border-radius: 10px;
    box-shadow: inset 1px 1px 2px 0 rgba(255, 255, 255, 0.3), inset -1px -1px 2px 0 rgba(207, 222, 232, 0.5), -5px 5px 10px 0 rgba(116, 160, 189, 0.2), 5px -5px 10px 0 rgba(186, 211, 228, 0.2), -5px -5px 10px 0 rgba(255, 255, 255, 0.9), 5px 5px 13px 0 rgba(204, 225, 240, 0.9);
}

.faq__answer-inner {
    overflow: hidden;
}

.faq__answer p {
    padding: 30px 5%;
    line-height: 2;
    text-align: left;
}

/* 開いている状態 */
.faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
}

.faq__item.is-open .faq__icon::after {
    transform: rotate(90deg);
    opacity: 0;
}


@media (max-width: 600px) {
    .faq__answer p {
        font-size: 1.4rem;
    }
}



.spbr {
    display: none;
}

@media (max-width: 600px) {
    .spbr {
        display: block;
    }
}