@charset "utf-8";


@font-face {
    font-family: ZenMaruGothic;
    src: url(../../font/ZenMaruGothic-Medium.ttf);
    font-weight: bold;
}

@font-face {
    font-family: ZenMaruGothic;
    src: url(../../font/ZenMaruGothic-Regular.ttf);
    font-weight: 400;
}


/* 文字 */
html {
    font-size: 62.5%;
}

body {
    color: #244A69;
    line-height: calc(26 / 16);
    font-weight: 500;
    font-family: ZenMaruGothic,
        serif;
    font-size: 1.4em;
}

/* 画像 */
img {
    width: 100%;
    height: auto;
}

/* リンク */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    opacity: 0.7;
    cursor: pointer;
}

/* 画面幅 */
.container {
    width: calc(100% - 60px);
    max-width: 1160px;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .container {
        width: calc(100% - 30px);
    }
}

.onlyPC {
    display: block;
}

.onlyPT {
    display: block;
}

.onlyST {
    display: none;
}

.onlySP {
    display: none;
}

@media screen and (max-width: 1279px) {
    .onlyPC {
        display: none;
    }

    .onlyST {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .onlySP {
        display: block;
    }

    .onlyPT {
        display: none;
    }

}

/*==================================
ヘッダー
==================================*/

.header {
    background: #F2F9FD;
}

.header__inner {
    max-width: 1500px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    padding: 0 38px;
    align-items: center;
    align-content: center;
    margin: 0 auto;
}

@media screen and (max-width: 1279px) {
    .header__inner {
        padding: 0 30px;
        height: 80px;
    }
}

@media screen and (max-width:767px) {
    .header__inner {
        padding: 0 15px;
        height: 70px;
        width: 100%;
    }
}

.header__img {
    width: 216px;
}

@media screen and (max-width:1279px) {
    .header__img {
        width: 180px;
    }
}

@media screen and (max-width:767px) {
    .header__img {
        width: 130px;
    }
}

.header__img:hover>img {
    opacity: 1;
}

.header__btn {
    line-height: 1;
    width: 226px;
    height: 46px;
    color: #EA737C;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    font-size: 16px;
    flex-wrap: nowrap;
    gap: 10px;
    border: 1px solid #EA737C;
    border-radius: 100px;
    background: #FFFFFF;
}

.header__btn:hover {
    cursor: pointer;
}

@media screen and (max-width:1279px) {
    .header__btn {
        font-size: 14px;
    }
}

@media screen and (max-width:767px) {
    .header__btn {
        font-size: 12px;
        gap: 6px;
        width: 160px;
        height: 40px;
    }
}

.header__btn--img {
    width: 8px;
    display: inline-block;
}

@media screen and (max-width:767px) {
    .header__btn--img {
        width: 6px;
    }
}


/*==================================
メイン
==================================*/
.main {
    min-height: calc(100vh - 100px - 203px);
    padding: 80px 0;
}

@media screen and (max-width:1279px) {
    .main {
        min-height: calc(100vh - 80px - 196px);
    }
}

@media screen and (max-width:767px) {
    .main {
        min-height: calc(100vh - 70px - 285px);
        padding: 40px 0;
    }
}

.ttl {
    letter-spacing: 0px;
    color: #2879AC;
    text-align: center;
    margin: 0 auto 32px;
    font-size: 32px;
    font-weight: 600;
    font-family: 'ヒラギノ角ゴシック', 'Hiragino Sans', YuGothic, 'Yu Gothic', serif;
}

@media screen and (max-width:1279px) {
    .ttl {
        font-size: 28px;
    }
}

@media screen and (max-width:767px) {
    .ttl {
        font-size: 24px;
        margin-bottom: 16px;
    }
}

.txt {
    font-family: 'ヒラギノ角ゴシック', 'Hiragino Sans', YuGothic, 'Yu Gothic', serif;
    max-width: 800px;
    letter-spacing: 0;
    color: #121936;
    font-size: 18px;
    line-height: 26px;
    margin: auto;
    font-weight: 400;
}

@media screen and (max-width:1279px) {
    .txt {
        font-size: 16px;
    }
}

@media screen and (max-width:767px) {
    .txt {
        font-size: 14px;
    }
}


/*==================================
フッター
==================================*/
.footer {
    padding: 40px 0 60px;
}


@media screen and (max-width:767px) {
    .footer {
        padding: 30px 0 40px;
    }
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

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

@media screen and (max-width:1279px) {
    .footer__left {
        min-width: 315px;
    }
}

@media screen and (max-width:767px) {
    .footer__left {
        min-width: 300px;
        margin-bottom: 30px;
    }
}

.footer__left--top {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: calc(26/20);
}


@media screen and (max-width:1279px) {
    .footer__left--top {
        font-size: 18px;
    }
}

@media screen and (max-width:767px) {
    .footer__left--top {
        font-size: 16px;
        text-align: center;
    }
}

.footer__left--center {
    font-size: 33px;
    line-height: calc(26/33);
    margin-bottom: 15px;
    font-weight: bold;
}

@media screen and (max-width:1279px) {
    .footer__left--center {
        font-size: 30px;
        line-height: calc(26/33);
        margin-bottom: 15px;
        font-weight: bold;
    }
}

@media screen and (max-width:767px) {
    .footer__left--center {
        font-size: 26px;
        text-align: center;
        margin-bottom: 11px;
    }
}

.footer__left--bottom {
    line-height: calc(26/14);
    font-size: 14px;
}

@media screen and (max-width:1279px) {
    .footer__left--bottom {
        font-size: 13px;
    }
}

@media screen and (max-width:767px) {
    .footer__left--bottom {
        text-align: center;
        font-size: 12px;
    }
}


.footer__right {
    font-size: 16px;
    gap: 35px;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
}

@media screen and (max-width:1279px) {
    .footer__right {
        font-size: 14px;
        gap: 20px 20px;
    }

}

@media screen and (max-width:767px) {
    .footer__right {
        gap: 0;
        width: 100%;
        border-bottom: 1px solid #244A69;
    }

    .footer__right a {
        width: 50%;
        text-align: center;
        border-top: 1px solid #244A69;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer__right a:nth-of-type(1),
    .footer__right a:nth-of-type(3) {
        border-right: 1px solid #244A69;
    }

    footer .container {
        width: 100%;
    }
}