@charset "UTF-8";

/******************************************************************************
*
* [共通]ヘッダー
*
******************************************************************************/

header.hero_area {
    width: 100vw;
    height: auto;
    position: relative;
}

header.hero_area::before {
    content: "";
    display: block;
    padding-top: 28.6%;
}

header.hero_area .hero_area_inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/header_img.jpg);
    background-size: cover;
    background-position: center;
}


/******************************************************************************
*
* [共通]最重要
*
******************************************************************************/

/*---------------------
* 1
---------------------*/

#mi1 {
    background: -moz-linear-gradient(0% 50% 0deg, rgba(12, 13, 15, 1) 0%, rgba(48, 56, 66, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(12, 13, 15, 1) 0%, rgba(48, 56, 66, 1) 100%);
    background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0, rgba(12, 13, 15, 1)), color-stop(1, rgba(48, 56, 66, 1)));
    background: -o-linear-gradient(0deg, rgba(12, 13, 15, 1) 0%, rgba(48, 56, 66, 1) 100%);
    background: -ms-linear-gradient(0deg, rgba(12, 13, 15, 1) 0%, rgba(48, 56, 66, 1) 100%);
    background: linear-gradient(90deg, rgba(12, 13, 15, 1) 0%, rgba(48, 56, 66, 1) 100%);
    padding: 10px 0;
    position: relative;
}

#mi1::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 15px 0 15px;
    border-color: #333 transparent transparent transparent;
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    margin: auto;
}

#mi1 .mi_lead {
    width: 52%;
    margin: auto;
}

/*---------------------
* 2
---------------------*/

#mi2 {
    background-image: url(../images/mi_bg.jpg);
    padding: 70px 0;
}

#mi2 .mi_img {
    width: 75%;
    margin: auto;
}

/******************************************************************************
*
* [共通]決済情報
*
******************************************************************************/

#info .ct2 {
    margin-top: 60px;
}

#info .ct h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #e50021;
    letter-spacing: 0.1em;
}

#info .ct table {
    width: 100%;
    box-sizing: border-box;
    font-size: 22px;
    font-weight: bold;
}

#info .ct table tr {
    border-bottom: solid 1px #fff;
}

#info .ct table th,
#info .ct table td {
    box-sizing: border-box;
    padding: 15px;
}

#info .ct table th {
    background: #e50021;
    color: #fff;
    width: 250px;
}

#info .ct table td {
    background: #f1f1f1;
    width: 80%;
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
}

/*注意*/

#info ul.attention {
    margin: 50px 0;
}

#info ul.attention li {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    color: #555;
    text-indent: -1em;
    padding-left: 1em;
}

/*ボタン*/

#info .lb {
    width: 50%;
    margin: auto;
}


/******************************************************************************
*
* [共通]流れ
*
******************************************************************************/

#flow {
    background-image: url(../images/flow_bg.jpg);
    background-position: center top;
    background-size: 100%;
}

#flow h2 {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    color: #fff;
    text-align: center;
    font-size: 36px;
    line-height: 1.5;
    font-weight: 800;
    padding: 30px 0;
    margin-bottom: 80px;
    background: -moz-linear-gradient(0% 50% 0deg, rgba(12, 13, 15, 1) 0%, rgba(48, 56, 66, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(12, 13, 15, 1) 0%, rgba(48, 56, 66, 1) 100%);
    background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0, rgba(12, 13, 15, 1)), color-stop(1, rgba(48, 56, 66, 1)));
    background: -o-linear-gradient(0deg, rgba(12, 13, 15, 1) 0%, rgba(48, 56, 66, 1) 100%);
    background: -ms-linear-gradient(0deg, rgba(12, 13, 15, 1) 0%, rgba(48, 56, 66, 1) 100%);
    background: linear-gradient(90deg, rgba(12, 13, 15, 1) 0%, rgba(48, 56, 66, 1) 100%);
    position: relative;
}

#flow h2::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 15px 0 15px;
    border-color: #333 transparent transparent transparent;
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    margin: auto;
}


#flow p {
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
}

#flow p strong {
    font-size: 115%;
}


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

/*1920px以下*/

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

    /*---------------------
    * [共通]ヘッダー
    ---------------------*/

    header.hero_area::before {
        padding-top: 550px;
    }

}

/*960px以下*/

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

    /*---------------------
    * [共通]ヘッダー
    ---------------------*/

    header.hero_area::before {
        padding-top: 78.1%;
    }

    header.hero_area .hero_area_inner {
        background-image: url(../images/header_img_sp.png);
    }

}

/*644px以下*/

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

    /*---------------------
    * 最重要
    ---------------------*/

    #mi1 {
        padding: 10px 0;
    }

    #mi1::before {
        border-width: 12px 10px 0 10px;
        bottom: -11px;
    }

    #mi1 .mi_lead {
        width: 85%;
    }

    #mi2 {
        padding: 40px 0 30px;
    }

    #mi2 .mi_img {
        width: 100%;
    }

    /*---------------------
    * 決済情報
    ---------------------*/

    #info .ct2 {
        margin-top: 30px;
    }

    #info .ct h2 {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    #info .ct table {
        font-size: 14px;
    }

    #info .ct table th,
    #info .ct table td {
        padding: 10px;
        vertical-align: middle;
    }

    #info .ct table th {
        width: 120px;
    }

    #info .ct table td {
        width: -webkit-calc(100% - 120px);
        width: calc(100% - 120px);
    }

    /*注意*/

    #info ul.attention {
        margin: 30px 0 20px;
    }

    #info ul.attention li {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 7px;
    }

    /*ボタン*/

    #info .lb {
        width: 85%;
    }

    /*---------------------
    * 流れ
    ---------------------*/

    #flow {
        background-image: url(../images/flow_bg_sp.jpg);
    }

    #flow h2 {
        font-size: 26px;
        margin-bottom: 40px;
        padding: 22px 0 30px;
    }

    #flow h2::before {
        border-width: 12px 10px 0 10px;
        bottom: -11px;
    }

    #flow p {
        text-align: center;
        font-size: 17px;
    }


}

/*375px以下*/

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

/*360px以下*/

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

/*330px以下*/

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