@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.5;
    color: #333;
    letter-spacing: 0.1rem;
    margin-top: 0 !important;
}

.q_font {
    font-family: "Quicksand", sans-serif;
}

.m_font {
    font-family: "Marcellus", serif;
}

.main {
    padding-top: 80px;
}

img,
picture {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.container {
    max-width: 1070px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.section_title_en {
    font-size: 70px;
    line-height: 1;
    letter-spacing: 0.1rem;
    font-weight: 300;
    text-align: center;
}

.font_blue {
    color: #3eb6cf;
}

.section_title_ja {
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: 0.1rem;
    text-align: center;
    font-weight: normal;
}

.section_desc {
    margin-top: 20px;
    text-align: center;
}

.btn {
    display: block;
    font-size: 18px;
    letter-spacing: 0.1rem;
    color: #3eb6cf;
    padding-top: 23px;
    padding-bottom: 22px;
    width: 350px;
    border: 2px solid #3eb6cf;
    position: relative;
    margin: 50px auto 0;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fff;
}

.btn::after {
    content: "";
    width: 29px;
    height: 7px;
    position: absolute;
    top: 50%;
    right: 23px;
    transform: translate(-50%, -50%) rotate(0);
    background-image: url(../../images/btn_arrow.svg);
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .btn:hover {
        color: #fff;
        background-color: #3eb6cf;
    }

    .btn:hover::after {
        right: 15px;
        background-image: url(../../images/btn_arrow_hover.svg);
    }

    /* 画面外にいる状態 */
    .fadein {
        opacity: 0;
        transform: translate(0, 200px);
        transition: all 1s;
    }

    /* 画面内に入った状態 */
    .fadein.scrollin {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@media (max-width: 768px) {
    .main {
        padding-top: 50px;
    }

    .section {
        padding: 50px 0;
    }

    .section_title_en {
        font-size: 28px;
    }

    .section_title_ja {
        margin-top: 5px;
        font-size: 14px;
    }

    .section_desc {
        font-size: 14px;
    }

    .btn {
        font-size: 15px;
        letter-spacing: 0.1rem;
        color: #3eb6cf;
        padding-top: 10px;
        padding-bottom: 10px;
        width: 213px;
        border: 1px solid #3eb6cf;
        position: relative;
        margin: 30px auto 0;
    }

    .btn::after {
        content: "";
        width: 21px;
        height: 5px;
        position: absolute;
        top: 50%;
        right: 21px;
        transform: translate(-50%, -50%) rotate(0);
        background-image: url(../../images/btn_arrow.svg);
    }
}
