@charset "UTF-8";

* {
    box-sizing: border-box;
}

html,
body {
    font-family: sofia-pro, 'Noto Sans JP', "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
    /*自動文字詰め*/
    font-feature-settings: "palt";
    /*英字の折返し*/
    word-break: break-all;
}

html {
    overflow: auto;
}

html.stop {
    overflow: hidden;
}

body {
    overflow: hidden;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    color: #1a1a1a;
    background: #fff;
}

body#under {
    background-color: #e6e6e6;
    background-image: url(../images/bg.jpg);
    background-size: 1500px;
    background-position: left top;
    background-repeat: no-repeat;
}

/*段落・フォント*/

p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    color: #1a1a1a;
    font-family: sofia-pro, 'Noto Sans JP', "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
}



/******************************************************************************
*
* [共通]基本設定
*
******************************************************************************/

/*---------------------
* コンテナ関係
---------------------*/

/*全体*/

article.content_article {
    padding: 80px 0;
}

article.content_article.none_pt {
    padding-top: 0;
}

article.content_article.none_pb {
    padding-bottom: 0;
}

/*内包*/

.wrap {
    width: 960px;
    margin: 0 auto;
}

.middle_wrap {
    width: 1400px;
    margin: 0 auto;
}

/*---------------------
* テキスト関係
---------------------*/

.common_h2 {
    text-align: center;
    margin-bottom: 80px;
}

.common_h2 h2 {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.common_h2 .sub {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
}

/*一般*/

small {
    font-size: 80%;
}

strong {
    font-weight: 900;
}

/*---------------------
* ボタン
---------------------*/

.c_btn a {
    display: block;
    width: 100%;
    width: 240px;
    background: linear-gradient(90deg, rgba(51, 181, 206, 1) 0%, rgba(24, 191, 162, 1) 100%);
    text-align: center;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 15px 0;
    position: relative;
    transition: all 0.5s;
}

.c_btn a i {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    position: relative;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(-25%) rotate(45deg);
    -webkit- transform: translateY(-50%) translateX(-25%) rotate(45deg);
    transition: all 0.5s;
}

.c_btn a i::before,
.c_btn a i::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 0.1em;
}

.c_btn a i::before {
    top: 0;
    left: 0;
    right: 0;
    height: 0.1em;
}

.c_btn a i::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 0.1em;
}

/*ホバー*/

.c_btn a:hover {
    border-radius: 50px;
}

.c_btn a:hover i {
    right: 15px;
}

/*差分*/

.c_btn.w a {
    background: #fff;
    color: #1a1a1a;
}

.c_btn.w a i {
    color: #1a1a1a;
}

.c_btn.b a {
    background: #1a1a1a;
}


/*---------------------
* 画像関係
---------------------*/

.lp_img img {
    display: block;
}

/*枠付き*/

.lp_img.be_border img {
    border: solid 1px #e0e0e0;
}

/*画像補足情報*/

figure figcaption {
    text-align: right;
    font-size: 11px;
    line-height: 2;
    color: #666;
}

/*---------------------
* 動画(埋め込み用)
---------------------*/

.mov {
    width: 100%;
    height: auto;
    position: relative;
}

.mov::before {
    content: "";
    display: block;
    padding-top: 56.2%;
}

.mov iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*---------------------
* 表示関係
---------------------*/

._pc {}

._sp {
    display: none !important;
}


/******************************************************************************
*
* [共通]フッター
*
******************************************************************************/

footer {
    padding: 60px 0;
    background: #fff;
}

footer .footer_menu .logo {
    width: 120px;
    margin: 0 auto 30px;
}

footer .footer_menu .fm_list ul {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

footer .footer_menu .fm_list ul li:nth-child(n+2) {
    margin-left: 40px;
}

footer .footer_menu .fm_list ul li a {
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: color 0.5s;
}

footer .footer_menu .fm_list ul li a:hover {
    color: #11c79d
}

footer .footer_menu .c_btn a {
    margin: auto;
}

/*---------------------
* コピーライト
---------------------*/

footer .copyright {
    padding: 30px 0 0;
}

footer p.copy {
    color: #ceced0;
    font-size: 12px;
    text-align: center;
}





/******************************************************************************
*
* [共通]レスポンシブ対応
*
******************************************************************************/

/*1920px以下*/

@media only screen and (max-width: 1920px) {}

/*1400px以下*/

@media only screen and (max-width: 1400px) {

    /*---------------------
    * [共通]基本設定
    ---------------------*/

    .middle_wrap {
        width: 92%;
    }

}

/*960px以下*/

@media only screen and (max-width: 960px) {

    /*---------------------
    * [共通]基本設定
    ---------------------*/

    .wrap {
        width: 92%;
    }

}

/*644px以下*/

@media only screen and (max-width: 644px) {

    /*---------------------
    * [共通]背景/全体テキスト
    ---------------------*/

    body {
        font-size: 14px;
        line-height: 1.6;
    }

    body#under {
        background-size: 530px;
        background-position: left 0 top 30px;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
    }

    .common_h2 {
        text-align: center;
        margin-bottom: 50px;
    }

    .common_h2 h2 {
        font-size: 40px;
    }

    .common_h2 .sub {
        font-size: 12px;
    }

    /*ボタン*/

    .c_btn a {
        width: 220px;
        font-size: 14px;
        padding: 15px 0 17px;
    }

    .c_btn a i {
        width: 6px;
        height: 6px;
    }

    .c_btn a:hover {
        border-radius: 10px;
    }

    .c_btn a:hover i {
        right: 20px;
    }

    /*---------------------
    * [共通]コンテナ関係
    ---------------------*/

    article.content_article {
        padding: 50px 0;
    }


    /*---------------------
    * [共通]画像関係
    ---------------------*/

    figure figcaption {
        text-align: left;
        font-size: 10px;
        line-height: 1.5;
        margin-top: 5px;
    }

    /*---------------------
    * [共通]表示関係
    ---------------------*/

    ._pc {
        display: none !important;
    }

    ._sp {
        display: block !important;
    }

    /*---------------------
    * [共通]フッター
    ---------------------*/

    footer {
        padding: 50px 0;
    }

    footer .footer_menu .logo {
        width: 100px;
    }

    footer .footer_menu .fm_list ul {
        margin-bottom: 30px;
    }

    footer .footer_menu .fm_list ul li:nth-child(n+2) {
        margin-left: 30px;
    }

    /*コピーライト*/

    footer .copyright {
        padding: 40px 0 0;
    }

    footer p.copy {
        font-size: 10px;
    }


}

/*375px以下*/

@media only screen and (max-width: 375px) {}

/*360px以下*/

@media only screen and (max-width: 360px) {}

/*330px以下*/

@media only screen and (max-width: 330px) {}
