@charset "UTF-8";

html {
    font-size: 16px;
    /*ゴシック */
    font-family: 'Noto Sans JP', "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    /* 明朝 */
    /* font-family: 'Noto Serif JP', serif; */
    color: #333;
    font-weight: 400;
    letter-spacing: 0.1rem;
    line-height: 1.5;
}

/* コンテンツ幅 */
.inner {
    max-width: 1080px;
    width: calc(100% - 40px);
    margin: 0 auto;
}
/* セクション間 */
section {
    padding: 80px 0;
}

/* スマホのみ表示 */
.sp_only {
    display: none;
}
main {
    margin-top: 80px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .sp_only {
        display: block;
    }
    .pc_only {
        display: none !important;
    }
    main {
        margin-top: 50px;
    }
}



/* 共通パーツ */
.font-quicksand {
    font-family: "Quicksand", sans-serif;
    font-weight: 300;
}
.font-marcellus {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
}
.color-blue {
    color: #3EB6CF;
}
.sectionTitle {
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
}
.sectionTitle .text {
    font-size: 70px;
    line-height: 1;
}
.sectionTitle .title {
    font-size: 18px;
    margin-top: 10px;
}
.sectionTitle .text2 {
    margin-top: 20px;
}
.btn {
    display: block;
    width: 350px;
    border: 2px solid #3EB6CF;
    background: #fff;
    text-align: center;
    font-size: 18px;
    color: #3EB6CF;
    letter-spacing: .1em;
    line-height: 1;
    padding: 23px 0;
    margin: 60px auto 0;
    position: relative;
    transition: .3s;
}
.btn::after {
    content: "";
    display: inline-block;
    background-image: url(../../images/icon-arrow-blue.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 29px;
    height: 6px;
    position: absolute;
    top: 47%;
    right: 28px;
    transform: translateY(-50%);
}
.btn:hover {
    color: #fff;
    background: #3EB6CF;
}
.btn:hover::after {
    background-image: url(../../images/icon-arrow-white.svg);
    right: 23px;
}
@media screen and (min-width: 769px) {
    body {
        min-width: 1200px;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    .sectionTitle {
        margin-bottom: 30px;
    }

    .sectionTitle .text {
        font-size: 28px;
    }

    .sectionTitle .title {
        font-size: 14px;
        margin-top: 5px;
    }

    .sectionTitle .text2 {
        margin-top: 20px;
        font-size: 14px;
    }
    .btn {
        width: 213px;
        border: 1px solid #3EB6CF;
        font-size: 15px;
        padding: 11px 0;
        margin: 30px auto 0;
    }
    .btn::after {
        width: 21px;
        height: 4px;
    }
}