@charset "UTF-8";

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

header.hero_area {
    width: 90%;
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
    margin: 25px auto 0;
    position: relative;
}

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

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

/*ロゴ*/

header.hero_area .logo {
    width: 180px;
    background: #fff;
    padding: 20px 15px;
}

/*ボタン*/

.ha_btn {
    position: relative;
    top: -40px;
}

.ha_btn .wrap {
    background: #fff;
    padding: 30px 0 0;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.ha_btn .btn_t {
    width: 65%;
    margin: 0 auto 10px;
    max-width: 430px;
}

.ha_btn a {
    display: block;
    text-align: center;
    max-width: 700px;
    margin: auto;
    background: linear-gradient(90deg, rgba(236, 154, 174, 1) 0%, rgba(161, 121, 216, 1) 100%);
    font-size: 26px;
    color: #fff;
    font-weight: bold;
    padding: 20px 0 22px;
    border-radius: 50px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.5s;
}

.ha_btn a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/fv/icon.png);
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
    transition: all 0.5s;
}


/******************************************************************************
*
* [共通]特典
*
******************************************************************************/

article.gift {
    background-image: url(../images/gift/bg.jpg);
    background-position: center top;
    background-size: cover;
    margin-top: 100px;
}

article.gift .lead {
    width: 75%;
    margin: 0 auto 80px;
}

article.gift .name {
    width: 60%;
    margin: 30px auto 20px;
}

/*ボタン*/

.gift_btn {
    margin-top: 50px;
}

.gift_btn .btn_t {
    width: 65%;
    margin: 0 auto 10px;
    max-width: 430px;
}

.gift_btn a {
    display: block;
    text-align: center;
    max-width: 700px;
    margin: auto;
    background: linear-gradient(90deg, rgba(236, 154, 174, 1) 0%, rgba(161, 121, 216, 1) 100%);
    font-size: 26px;
    color: #fff;
    font-weight: bold;
    padding: 20px 0 22px;
    border-radius: 50px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.5s;
}

.gift_btn a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/fv/icon.png);
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
    transition: all 0.5s;
}



/******************************************************************************
*
* [共通]詳細
*
******************************************************************************/

/*321*/

#about-jdp .box,
#about .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#about .box .lc {
    width: 50%;
}

#about .box .rc {
    width: 46%;
}

#about .box .rc .logo {
    width: 90%;
}

#about-jdp .box .rc h2,
#about .box .rc h2 {
    font-size: 46px;
    font-weight: bold;
    margin-top: 30px;
}

/*JDP*/

#about-jdp .box {
    flex-flow: row-reverse;
}

#about-jdp .box .lc {
    width: 43%;
}

#about-jdp .box .rc {
    width: 54%;
}

#about-jdp .box .rc .logo {
    width: 80%;
}

/*コラボ*/

#cross {
    background: #eceff6;
}

#cross p {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-top: 50px;
}


/******************************************************************************
*
* [共通]特徴
*
******************************************************************************/

#features .list dl {
    background: #E4EFEC;
    padding: 40px 0 50px;
    position: relative;
}

#features .list dl:nth-child(n+2) {
    margin-top: 30px;
}

#features .list dl::before,
#features .list dl::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
}

#features .list dl::before {
    border-top: solid 1px #054946;
    border-left: solid 1px #054946;
    top: 10px;
    left: 10px;
}

#features .list dl::after {
    border-bottom: solid 1px #054946;
    border-right: solid 1px #054946;
    bottom: 10px;
    right: 10px;
}

/*見出し*/

#features .list dl dt {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #054946;
    margin-bottom: 24px;
}

#features .list dl dt span {
    display: inline-block;
    padding-left: 50px;
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: left 0 top 4px;
}

#features .list dl.l1 dt span {
    background-image: url(../images/features/icon1.png);
}

#features .list dl.l2 dt span {
    background-image: url(../images/features/icon2.png);
}

#features .list dl.l3 dt span {
    background-image: url(../images/features/icon3.png);
}

/*テキスト*/

#features .list dl dd {
    text-align: center;
    font-size: 16px;
}

/*---------------------
* スライダー余白
---------------------*/

.f_slider {
    width: 100%;
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
    position: relative;
    right: 10px;
    margin-top: 30px;
}

.slider .slide .inner {
    padding: 0 10px;
}

/*---------------------
* スライダー矢印
---------------------*/

/*スライダー矢印*/

.slick-prev,
.slick-next,
.slick-arrow:before {
    width: 50px !important;
    height: 50px !important;
}

.slick-prev,
.slick-next {
    z-index: 2;
}

.slick-prev {
    left: -15px;
}

.slick-next {
    right: -15px;
}

.slick-arrow:before {
    content: "" !important;
    position: absolute;
    top: 0;
    left: 0;
}

.slick-next:before {
    background: url(../images/arrow2.png) !important;
    background-size: cover !important;
}

.slick-prev:before {
    background: url(../images/arrow1.png) !important;
    background-size: cover !important;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0
}


/******************************************************************************
*
* [共通]データ
*
******************************************************************************/

#data {
    background: linear-gradient(90deg, rgba(229, 247, 250, 1) 0%, rgba(253, 237, 238, 1) 100%);
}

#data .data_list .c:nth-child(n+2) {
    margin-top: 30px;
}

#data .data_list .c.c2 {
    display: flex;
    justify-content: space-between;
}

#data .data_list .c.c2 > div {
    width: 48%;
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
}

#data .data_list .c img {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.04);
}



/******************************************************************************
*
* [共通]ターゲット
*
******************************************************************************/

#target .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}


#target .list dl {
    width: 23%;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}

#target .list dl:nth-child(n+5) {
    margin-top: 30px;
}

#target .list dl dt {
    max-width: 130px;
    margin: auto;
}

#target .list dl dd {
    font-size: 18px;
    color: #054946;
    margin-top: 30px;
}

#target .list dl dd.l1 {
    position: relative;
    top: 12px;
}


/******************************************************************************
*
* [共通]声
*
******************************************************************************/

#voice {
    background: linear-gradient(90deg, rgba(229, 247, 250, 1) 0%, rgba(253, 237, 238, 1) 100%);
}

/*---------------------
* スライダー
---------------------*/


#voice .v_slide .slick-track {
    display: flex;
}

#voice .v_slide .slick-slide {
    height: auto !important;
}

#voice .v_slide {
    width: 100%;
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
    position: relative;
    right: 10px;
    margin-top: 30px;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.03));
    transform: translateZ(0);
}

#voice ul.v_slider li.slide {
    padding: 0 10px;
}

#voice ul.v_slider li.slide .inner {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

/*写真*/

#voice ul.v_slider .ava {
    border-bottom-left-radius: 50px;
    overflow: hidden;
    box-shadow: -6px 6px 10px rgba(0, 101, 97, 0.1);
}

/*テキスト*/

#voice ul.v_slider .txt {
    padding: 25px;
}

#voice ul.v_slider .txt .name {
    font-size: 20px;
}

#voice ul.v_slider .txt .name span {
    background: linear-gradient(90deg, rgba(236, 154, 174, 1) 0%, rgba(161, 121, 216, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(236, 154, 174, 1) 0%, rgba(161, 121, 216, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#voice ul.v_slider .txt p {
    font-size: 14px;
    color: #46524b;
    margin-top: 15px;
}

/*ドット*/

.slick-dots {
    bottom: -40px
}

.slick-dots li {
    margin: 0;
}

.slick-dots li button:before {
    color: #ccc;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: #00A78C;
    opacity: 1;
}


/******************************************************************************
*
* [共通]よくある質問
*
******************************************************************************/

#faq {
    background: #333333;
    overflow: hidden;
}

#faq .common_h2 {
    position: relative;
    top: -6px;
}

#faq .common_h2 h2 {
    color: #fff;
    font-size: 36px;
}

/*---------------------
* FAQリスト
---------------------*/

/*リストコンテナ*/

.faq_list ul li {
    padding: 30px;
    background: #fff;
    margin-bottom: 10px;
}

.faq_list ul li:last-child {
    margin-bottom: 0;
}

/*リスト内部*/

.faq_list dl dt,
.faq_list dl dd {
    display: flex;
    justify-content: space-between;
}

.faq_list dl dt {
    position: relative;
    padding-right: 40px;
    cursor: pointer;
}

.faq_list dl dt::before {
    content: "+";
    position: absolute;
    top: -2px;
    right: 0;
    font-size: 30px;
    line-height: 1;
    font-weight: 100;
}

.faq_list dl dt.open::before {
    content: "−";
}

.faq_list dl dt .txt {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 900;
}

.faq_list dl i {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    top: 4px;
}

.faq_list dl i.q {
    background-image: url(../images/faq/q.png);
}

.faq_list dl i.a {
    background-image: url(../images/faq/a.png);
}

.faq_list dl .txt {
    width: 92%;
    width: -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    font-size: 15px;
}

.faq_list dl dd {
    margin-top: 15px;
    padding-top: 15px;
    border-top: solid 1px #ccc;
    display: none;
}

.faq_list dl dd.open {
    display: flex;
}



/******************************************************************************
*
* [共通]メッセージ
*
******************************************************************************/

#message {
    background-color: #ECEFF6;
    background-image: url(../images/message/photo.jpg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 950px;
    padding-top: 60px;
}

#message .title {
    max-width: 80%;
    max-width: 800px;
    margin-bottom: 50px;
}

#message .text {
    width: 60%;
    max-width: 700px;
}

#message .text p {
    font-size: 18px;
    font-weight: 600;
    line-height: 2;
}

#message .text .name {
    width: 150px;
    margin-left: auto;
    margin-top: 50px;
    opacity: 0.5;
}





/******************************************************************************
*
* [共通]STEP
*
******************************************************************************/

#step_fv {
    width: 90%;
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
    margin: 25px auto 0;
    position: relative;
}

#step_fv::before {
    content: "";
    display: block;
    padding-top: 28%;
}

#step_fv .ha_inner {
    background-image: url(../images/step/head/bg.jpg);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

/*ロゴ*/

#step_fv .logo {
    width: 130px;
    background: #fff;
    padding: 20px;
}

/*テキスト*/

#step_fv .ha_inner .text {
    width: 90%;
    max-width: 960px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}

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

.step {
    position: relative;
    top: -40px;
}

.step .wrap {
    width: 1050px;
    background: #fff;
    padding: 60px 40px 0;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

/*コンテナ*/

.step .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step .list dl {
    width: 31%;
    background: #fff;
    position: relative;
    border-radius: 10px;
    padding: 50px 10px 20px;
    border: solid 1px #e6e6e6;
}

.step .list dl::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/step/arrow.png);
    background-size: cover;
    position: absolute;
    right: -25px;
    top: 40%;
}

.step .list dl:last-child::before {
    opacity: 0;
}

.step .list dl:nth-child(n+4) {
    margin-top: 60px;
}

/*ナンバリング*/

.step .list dl dt .num {
    width: 55px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -26px;
}

/*サムネイル*/

.step .list dl dt .thum {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

/*見出し*/

.step .list dl dd h2 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #054946;
}

.step .list dl dd p {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    margin-top: 12px;
}

/*補足*/

.step .list dl dd ul.attention {
    margin-top: 12px;
}

.step .list dl dd ul.attention li {
    font-size: 10px;
    line-height: 1.5;
    text-indent: -1em;
    padding-left: 1em;
    color: #666;
}

/*ボタン*/

.step a {
    display: block;
    text-align: center;
    max-width: 700px;
    margin: auto;
    background: linear-gradient(90deg, rgba(236, 154, 174, 1) 0%, rgba(161, 121, 216, 1) 100%);
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    padding: 15px 0 16px;
    border-radius: 50px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.5s;
    margin-top: 15px;
}

.step a::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url(../images/step/head/icon.png);
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
    transition: all 0.5s;
}

.step a:hover {
    opacity: 0.7;
}

.step a:hover::before {
    right: 10px;
}



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

/*1920px以下*/

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

    /*---------------------
    * [共通]ヘッダー(通常LPの場合)
    ---------------------*/

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

}

/*1400px以下*/

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

/*960px以下*/

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

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

    header.hero_area {
        width: -webkit-calc(100% - 20px);
        width: calc(100% - 20px);
        margin: 10px auto 0;
    }

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

    header.hero_area .ha_inner {
        background-image: url(../images/fv/fv_sp.jpg);
    }

    /*ロゴ*/

    header.hero_area .logo {
        width: 80px;
        padding: 10px;
        position: relative;
        top: -1px;
        left: -1px;
        opacity: 0;
    }

    /*ボタン*/

    .ha_btn {
        top: -20px;
    }

    .ha_btn .wrap {
        width: 89%;
        padding: 10px 0 0;
        border-radius: 20px;
    }

    .ha_btn a {
        width: 93%;
        font-size: 18px;
        border-radius: 500px;
    }

    .ha_btn a::before {
        width: 15px;
        height: 15px;
        right: 15px;
    }

    .gift_btn a {
        width: 93%;
        font-size: 18px;
        border-radius: 500px;
    }

    .gift_btn a::before {
        width: 15px;
        height: 15px;
        right: 15px;
    }


}

/*644px以下*/

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


    article.gift {
        background-image: url(../images/gift/bg_sp.jpg);
        background-position: center top;
        background-size: cover;
        margin-top: 50px;
    }

    article.gift .lead {
        width: 100%;
        margin: 0 auto 50px;
    }

    article.gift .name {
        width: 80%;
        margin: 30px auto 10px;
    }

    .gift_btn {
        margin-top: 20px;
    }


    /*---------------------
    * [共通]詳細
    ---------------------*/

    #about-jdp {
        margin-top: 40px
    }

    #about-jdp .box,
    #about .box {
        display: block;
    }

    #about .box .lc {
        width: 80%;
        margin: auto;
    }

    #about-jdp .box .rc,
    #about .box .rc {
        width: 100%;
        position: relative;
    }

    #about .box .rc .logo {
        width: 50%;
        position: absolute;
        top: -50%;
        opacity: 0.5;
    }

    #about-jdp .box .rc h2,
    #about .box .rc h2 {
        font-size: 24px;
        margin-top: 0px;
    }

    /*JDP*/

    #about-jdp .box .lc {
        width: 70%;
        margin-left: auto;
    }

    #about-jdp .box .rc .logo {
        width: 45%;
        position: absolute;
        top: -35%;
        opacity: 0.5;
    }

    /*コラボ*/

    #cross p {
        font-size: 14px;
        margin-top: 30px;
    }

    /*---------------------
    * [共通]特徴
    ---------------------*/

    #features .list dl {
        padding: 30px 15px 32px;
    }


    #features .list dl:nth-child(n+2) {
        margin-top: 20px;
    }

    #features .list dl::before,
    #features .list dl::after {
        width: 20px;
        height: 20px;
    }

    #features .list dl::before {
        top: 8px;
        left: 8px;
    }

    #features .list dl::after {
        bottom: 8px;
        right: 8px;
    }

    /*見出し*/

    #features .list dl dt {
        font-size: 20px;
        margin-bottom: 20px;
    }

    #features .list dl dt span {
        padding-left: 30px;
        background-size: 25px;
        background-position: left 0 top 3px;
    }

    /*テキスト*/

    #features .list dl dd {
        font-size: 14px;
    }

    /*スライダー矢印*/

    .slick-prev,
    .slick-next,
    .slick-arrow:before {
        width: 35px !important;
        height: 35px !important;
    }

    .slick-prev {
        left: -3px;
    }

    .slick-next {
        right: -3px;
    }

    /*---------------------
    * [共通]データ
    ---------------------*/

    #data {
        margin-top: 40px
    }

    #data .common_h2 h2 {
        font-size: 26px;
    }

    #data .data_list .c:nth-child(n+2) {
        margin-top: 20px;
    }

    #data .data_list .c.c2 {
        display: block;
    }

    #data .data_list .c.c2 > div {
        width: 100%;
        width: -webkit-calc(100%);
        width: calc(100%);
    }

    #data .data_list .c.c2 > div:nth-child(2) {
        margin-top: 20px;
    }

    /*---------------------
    * [共通]ターゲット
    ---------------------*/

    #target .list dl {
        width: 48%;
        border-radius: 12px;
        padding: 20px 0;
    }

    #target .list dl:nth-child(n+3) {
        margin-top: 20px;
    }

    #target .list dl dt {
        max-width: 100px;
    }

    #target .list dl dd {
        font-size: 14px;
        margin-top: 15px;
    }

    #target .list dl dd.l1 {
        top: 10px;
    }

    #target .list dl.last dd.l1 {
        top: 0;
        padding: 11px 0;
    }


    /*---------------------
    * [共通]声
    ---------------------*/

    #voice {
        margin-top: 40px;
    }

    /*スライダー*/

    #voice .v_slide {
        width: 100%;
        width: -webkit-calc(100% + 10px);
        width: calc(100% + 10px);
        position: relative;
        right: 5px;
    }

    #voice ul.v_slider li.slide {
        padding: 0 5px;
    }

    #voice ul.v_slider li.slide .inner {
        border-radius: 12px;
    }

    /*写真*/

    #voice ul.v_slider .ava {
        border-bottom-left-radius: 30px;
        box-shadow: -3px 3px 6px rgba(0, 101, 97, 0.1);
    }

    /*テキスト*/

    #voice ul.v_slider .txt {
        padding: 15px;
    }

    #voice ul.v_slider .txt .name {
        font-size: 16px;
    }

    #voice ul.v_slider .txt p {
        font-size: 12px;
        margin-top: 10px;
    }

    /*---------------------
    * よくある質問
    ---------------------*/

    #faq .common_h2 {
        top: -5px;
        margin-bottom: 40px;
    }

    #faq .common_h2 .big_en img {
        margin-bottom: -10px;
    }

    #faq .common_h2 h2 {
        font-size: 26px;
    }

    /*FAQリスト*/

    .faq_list ul li {
        padding: 15px;
    }

    .faq_list dl dt {
        padding-right: 20px;
    }

    .faq_list dl dt::before {
        top: 2px;
        right: 0;
        font-size: 20px;
    }

    .faq_list dl dt .txt {
        font-size: 16px;
    }

    .faq_list dl i {
        width: 20px;
        height: 20px;
        top: 3px;
    }

    .faq_list dl .txt {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
        font-size: 13px;
    }

    /*---------------------
    * [共通]メッセージ
    ---------------------*/

    #message {
        background-image: url(../images/message/photo_sp.jpg);
        background-size: contain;
        background-position: top;
        padding-top: 50px;
    }

    #message .title {
        width: 70%;
        margin-bottom: 50px;
        position: relative;
        left: -5px;
    }

    #message .text {
        width: 100%;
    }

    #message .text p {
        font-size: 13px;
    }

    #message .text .name {
        width: 90px;
        margin-top: 50px;
    }



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

    #step_fv {
        width: -webkit-calc(100% - 20px);
        width: calc(100% - 20px);
        margin: 30px auto 0;
    }

    #step_fv::before {
        padding-top: 75%;
    }

    #step_fv .ha_inner {
        background-image: url(../images/step/head/bg_sp.jpg);
    }

    /*ロゴ*/

    #step_fv .logo {
        width: 70px;
        padding: 10px;
        position: relative;
        top: -1px;
        left: -1px;
    }

    /*テキスト*/

    #step_fv .ha_inner .text {
        width: 65%;
        position: absolute;
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
        -webkit- transform: translateY(-50%);
    }

    /*メイン*/

    .step {
        top: 0;
        margin-top: 60px;
    }

    .step .wrap {
        width: 85%;
        padding: 0;
        border-radius: 0;
    }

    /*コンテナ*/

    .step .list dl {
        width: 100%;
        padding: 40px 15px 20px;
        border: solid 1px #e6e6e6;
    }

    .step .list dl::before {
        transform: rotate(90deg);
        right: 0;
        left: 0;
        margin: auto;
        top: inherit;
        bottom: -32px;
    }

    .step .list dl:nth-child(n+2) {
        margin-top: 65px;
    }

    /*ナンバリング*/

    .step .list dl dt .num {
        width: 45px;
        top: -22px;
    }

    /*サムネイル*/

    .step .list dl dt .thum {
        margin-bottom: 12px;
    }

}

/*375px以下*/

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

/*360px以下*/

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

/*330px以下*/

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