@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
*  download.css
* --------------------------------------------------------------------------------------------------*/
.category_select_wrap{
    padding-top: 90px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.category_select_wrap .label{
    font-size: 1.6rem;
    letter-spacing: .12em;
    margin-right: 25px;
}
.category_select_wrap .form_select{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.category_select_wrap .form_select select{
    -webkit-appearance: none;
    appearance: none;
    width: 454px;
    padding: 15px;
    font-size: 1.6rem;
    letter-spacing: .12em;
    color: #7a7a7a;
    background: #FFF;
    border: none;
    outline: none;
    border-bottom: 1px solid #cfcfcf;
    box-sizing: border-box;
    cursor: pointer;
}

.category_select_wrap .form_select .select_inner{ position: relative;}
.category_select_wrap .form_select .select_inner:after{
    position: absolute;
    display: block;
    content: '';
    right: 7px;
    top: 50%;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid #f7293c;
    border-right: 1px solid #f7293c;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
}

.category_select_wrap .select_btn{
    margin-left: 25px;
    width: 64px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .12em;
    color: #FFF;
    background: #282828;
    padding: 7px 5px;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.post-list_wrap{
    padding-bottom: 103px;
    box-sizing: border-box;
}
.post-list_wrap.post-download .inner{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 45px;
    box-sizing: border-box;
}
.post-list_wrap.post-download .inner:after{
    position: relative;
    display: block;
    content: '';
    width: 32%;
    max-width: 380px;
}

.post-list_wrap.post-download .post{
    width: 32%;
    max-width: 380px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,.08);
    overflow: hidden;
    box-sizing: border-box;
}
.post-list_wrap.post-download .post a{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;

    box-sizing: border-box;
}

.post-list_wrap.post-download .txt_wrap{
    order: 2;
    width: 100%;
    padding: 25px 20px 95px 20px;
    background: #FFF;
    box-sizing: border-box;
}
.post-list_wrap.post-download .post-head .post-ttl{
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: calc(26 / 16);
    margin-bottom: 5px;
    box-sizing: border-box;
}

.post-list_wrap.post-download .post-txt{
    font-size: 1.6rem;
    line-height: calc(26 / 16);
    letter-spacing: .12em;
}
.post-list_wrap.post-download .btn_wrap{
    position: absolute;
    bottom: 35px;
    right: 0;
    left: 0;
    margin: 0 auto;
}
.post-list_wrap.post-download .btn_wrap .btn{
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
    padding: 7px 10px 9px 10px;
    font-size: 1.6rem;
}
.post-list_wrap.post-download .btn_wrap .btn.-arrow:after,
.post-list_wrap.post-download .btn_wrap .btn.-arrow:before{
    right: 13px;
}
.post-list_wrap.post-download .btn_wrap .btn.-arrow:after{ right: 24px;}

.post-list_wrap.post-download .post-img{
    order: 1;
    width: 100%;
    height: 203px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-sizing: border-box;
}


@media screen and (max-width: 767px) {
    .category_select_wrap{
        padding-top: 12vw;
        margin-bottom: 8vw;
        display: block;
    }
    .category_select_wrap .label{
        font-size: 3.467vw;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .category_select_wrap .form_select{width: 100%;}
    .category_select_wrap .form_select .select_inner{
        width: calc(100% - 26vw);
    }
    .category_select_wrap .form_select select{
        width: 100%;
        padding: 12px 0;
        font-size: 3.467vw;
    }
    .category_select_wrap .form_select .select_inner:after{
        margin-top: -1vw;
        width: 2.4vw;
        height: 2.4vw;
    }
    .category_select_wrap .select_btn{
        width: 18vw;
        font-size: 3.2vw;
        padding: 6px 5px;
        border-radius: 18px;
    }

    .post-list_wrap{
        padding: 8vw 0 13.333vw 0;
    }
    .post-list_wrap.post-download .inner{
        display: block;
        margin-bottom: 5vw;
    }
    .post-list_wrap.post-download .inner:after{
        display: none;
      }

    .post-list_wrap.post-download .post{
        width: 100%;
        max-width: inherit;
        margin-bottom: 0;
        border-radius: 8px;
    }
    .post-list_wrap.post-download .post+.post{ margin-top: 7.667vw;}
    .post-list_wrap.post-download .post a{
        display: flex;
    }
    .post-list_wrap.post-download .txt_wrap{
        padding: 6% 5%;
    }
    .post-list_wrap.post-download .post-head .post-ttl{
        font-size: 3.467vw;
    }
    .post-list_wrap.post-download .post-txt{
        font-size: 3.467vw;
    }
    .post-list_wrap.post-download .btn_wrap{
        position: relative;
        bottom: auto;
        margin: 5% auto 0 auto;
    }
    .post-list_wrap.post-download .btn_wrap .btn{
        width: 80%;
        max-width: inherit;
        font-size: 3.467vw;
    }
    .post-list_wrap.post-download .btn_wrap .btn.-arrow:after{ right: 21px;}
    .post-list_wrap.post-download .post-img{
        height: 52vw;
        border-radius: 8px 8px 0 0;
    }

}

/* ------------------------------
    detail
------------------------------ */
.post-detail_wrap{
    padding-top: 90px;
    padding-bottom: 110px;
    box-sizing: border-box;
}

.post-detail_wrap.post-download .post-ttl{
    text-align: center;
    font-size: 3.0rem;
    line-height: calc(53 / 30);
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 25px;
}
.post-detail_wrap.post-download .post-cnts{
    background: #FFF;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,.08);
    box-sizing: border-box;
}

.post-detail_wrap.post-download .post-cnts .post-img{
    width: 39%;
    max-width: 420px;
}
.post-detail_wrap.post-download .post-cnts .post-img img{
    border-radius: 12px;
    overflow: hidden;
}
.post-detail_wrap.post-download .post-cnts .post-txt{
    width: 61%;
    padding-left: 40px;
    box-sizing: border-box;
}
.post-detail_wrap.post-download .post-cnts .post-txt p,
.post-detail_wrap.post-download .post-cnts .post-txt ul{ margin-bottom: 15px;}
.post-detail_wrap.post-download .post-cnts .post-txt ul li{
    position: relative;
    padding-left: 15px;
    box-sizing: border-box;
}
.post-detail_wrap.post-download .post-cnts .post-txt ul li:before{
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    vertical-align: middle;
    content: '・';
}
.post-detail_wrap.post-download .post-cnts .post-txt h2{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: calc(28 / 16);
    letter-spacing: .12em;
}
.post-detail_wrap.post-download .post-cnts .post-txt a,
.post-detail_wrap.post-download .post-cnts .post-txt p,
.post-detail_wrap.post-download .post-cnts .post-txt ul li,
.post-detail_wrap.post-download .post-cnts .post-txt ol li{
    font-size: 1.6rem;
    letter-spacing: .12em;
    line-height: calc(26 / 16);
}
.post-detail_wrap.post-download .post-cnts .post-txt ol li{
    list-style: decimal;
    list-style-position: inside;
}
.post-detail_wrap.post-download .post-cnts .post-txt a{ text-decoration: underline;}
.post-detail_wrap.post-download .post-cnts .post-txt a:hover{ text-decoration: none;}

.post-detail_wrap.post-download .btn_wrap{
    margin: 35px auto 0 auto;
}

@media screen and (max-width: 767px) {
    .post-detail_wrap{
        padding: 12vw 0 13.333vw 0;
    }

    .post-detail_wrap.post-download .post-ttl{
        font-size: 5.333vw;
        margin-bottom: 5%;
    }
    .post-detail_wrap.post-download .post-cnts{
        padding: 5% 5% 10% 5%;
        border-radius: 8px;
    }
    .post-detail_wrap.post-download .flex{ display: block;}
    .post-detail_wrap.post-download .post-cnts .post-img{
        width: 100%;
        max-width: inherit;
    }
    .post-detail_wrap.post-download .post-cnts .post-img img{
        border-radius: 8px;
    }
    .post-detail_wrap.post-download .post-cnts .post-txt{
        width: 100%;
        margin-top: 4%;
        padding-left: 0;
        box-sizing: border-box;
    }
    .post-detail_wrap.post-download .post-cnts .post-txt ul li{
        padding-left: 3vw;
    }
    .post-detail_wrap.post-download .post-cnts .post-txt h2{
        font-size: 3.467vw;
    }
    .post-detail_wrap.post-download .post-cnts .post-txt a,
    .post-detail_wrap.post-download .post-cnts .post-txt p,
    .post-detail_wrap.post-download .post-cnts .post-txt ul li,
    .post-detail_wrap.post-download .post-cnts .post-txt ol li{
        font-size: 3.467vw;
    }

    .post-detail_wrap.post-download .post-cnts .alignright,
    .post-detail_wrap.post-download .post-cnts .alignleft{
        float:none;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }


    .post-detail_wrap.post-download .btn_wrap{
        margin: 8% auto 0 auto;
    }
}

/* ------------------------------
    form
------------------------------ */
.form_wrapper{
    padding-top: 90px;
    padding-bottom: 130px;
    box-sizing: border-box;
}
.form_wrapper .inner{
    max-width: 985px;
}
.form_wrapper .lead{
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: .12em;
    line-height: calc(26 / 16);
    margin-bottom: 35px;
}
.form_wrapper .txt_link_wrap{
    text-align: center;
}
.form_wrapper .txt_link{
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .12em;
    padding-right: 30px;
    box-sizing: border-box;
}

.txt_link_wrap .-arrow:after,.txt_link_wrap .-arrow:before{
    display: inline-block;
    right: 0;
}
.txt_link_wrap .-arrow:after{ right: 11px;}

.form_tbl{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 50px 0 60px 0;
}
.form_tbl th,
.form_tbl td{
    letter-spacing: .12em;
    padding-bottom: 44px;
    box-sizing: border-box;
}

.form_tbl th{
    vertical-align: top;
    width: 245px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.85;
}
.form_tbl th .small{
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
}
.form_tbl td{
    font-size: 1.6rem;
    line-height: calc(26 / 16);
    width: calc(100% - 245px);
}
/* form */
.form_tbl input,
.form_tbl textarea{
    width: 100%;
    font-size: 1.6rem;
    border-bottom: 1px solid #cfcfcf;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    padding: 14px 17px;
    line-height: calc(26 / 16);
    box-sizing: border-box;
}
.form_tbl textarea{
    height: 240px;
    border: 1px solid #cfcfcf;
    resize: vertical;
}
.form_tbl ::placeholder {
    color: #7a7a7a;
    font-size: 1.6rem;
    letter-spacing: .12em;
    font-family: 'Noto Sans JP', sans-serif;
}
/* 旧Edge対応 */
.form_tbl ::-ms-input-placeholder {
    color: #7a7a7a;
    font-size: 1.6rem;
    letter-spacing: .12em;
    font-family: 'Noto Sans JP', sans-serif;
}
/* IE対応 */
.form_tbl :-ms-input-placeholder {
    color: #7a7a7a;
    font-size: 1.6rem;
    letter-spacing: .12em;
    font-family: 'Noto Sans JP', sans-serif;
}
.download-wp23-wrap .form_tbl th {
    width: 100%;
    display: block;
    padding-bottom: 0;
}
.download-wp23-wrap .form_tbl td {
    width: 100%;
    display: block;
    margin-bottom: 0;
}


.form_btn .btn{
    border: none;
    box-shadow: none;
    outline: none;
    padding: 18px 10px 18px 10px;
    transition: .4s;
    cursor: pointer;
}
.form_btn .btn:hover{
    opacity: .7;
}
.wpcf7 form.invalid .wpcf7-response-output{
    border-color: #f7293c;
    font-size: 1.6rem;
    text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output{
    font-size: 1.6rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .form_wrapper{
        padding: 12vw 0 13.333vw 0;
        }
    .form_wrapper .inner{
        max-width: inherit;
    }
    .form_wrapper .lead{
        text-align: left;
        font-size: 3.467vw;
        margin-bottom: 4.667vw;
    }
    .form_wrapper .txt_link_wrap{
        text-align: center;
    }
    .form_wrapper .txt_link{
        font-size: 3.467vw;
        padding-right: 5vw;
    }
    .txt_link_wrap .-arrow:after{ right: 2vw;}

    .form_tbl{
        margin: 6.667vw 0 8vw 0;
    }
    .form_tbl th,
    .form_tbl td{
        display: block;
        padding-bottom: 5%;
    }

    .form_tbl th{
        width: 100%;
        font-size: 4vw;
        padding-bottom: 0;
    }
    .form_tbl th .small{
        font-size: 2.933vw;
    }
    .form_tbl td{
        font-size: 3.467vw;
        width: 100%;
    }
    /* form */
    .form_tbl input,
    .form_tbl textarea{
        font-size: 3.467vw;
        padding: 15px 0;
    }
    .form_tbl textarea{
        margin-top: 20px;
        padding: 15px;
        height: 55vw;
    }
    .form_tbl ::placeholder {
        font-size: 3.467vw;
    }
    /* 旧Edge対応 */
    .form_tbl ::-ms-input-placeholder {
        font-size: 3.467vw;
    }
    /* IE対応 */
    .form_tbl :-ms-input-placeholder {
        font-size: 3.467vw;
    }
    .form_btn.btn_wrap{
        display: block;
    }
    .form_btn.btn_wrap .btn{ margin: 0 auto;}
    .wpcf7 form.invalid .wpcf7-response-output{
        font-size: 3.467vw;
        text-align: left;
    }
}

/* ------------------------------
    form complete
------------------------------ */
.form_wrapper.complete .sec_ttl.headling-a{ font-size: 4.1rem;}
.form_wrapper.complete p{
    font-size: 1.6rem;
    line-height: calc(26 / 16);
    letter-spacing: .12em;
    text-align: center;
}
.form_wrapper.complete p+p{ margin-top: 20px;}

.complete .to_top_btn{ margin: 50px auto 0 auto;}
@media screen and (max-width: 767px) {
    .form_wrapper.complete .sec_ttl.headling-a{ font-size: 6vw;}
    .form_wrapper.complete p{
        text-align: left;
        font-size: 3.467vw;
    }
    .form_wrapper.complete p+p{ margin-top: 5%;}

    .complete .to_top_btn{ margin: 6.667vw auto 0 auto;}

}


/* 追加css */
input[type="radio"] {
    width: 24px;
    height: 24px;
    padding: 0;
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #cfcfcf;
    border-radius: 60px;
}
input[type="radio"]:checked {
    background-color: #666;
}
.wpcf7-radio label {
    position: relative;
}
.wpcf7-radio .wpcf7-list-item-label {
    padding-left: 32px;
}
.wpcf7-select {
    width: 100%;
    padding: 4px 8px;
    margin-top: 15px;
    border: 1px solid #cfcfcf;
    border-radius: 2px;
}