@charset "utf-8";
/* CSS Document */
.page-ttl{ margin-bottom: 0;}
.page-ttl h1{
    position: relative;
    padding: 60px 0;
    color: #1A1311;
    text-align: center;
}
body,
main{ background: #F8F4E1;}
@media(max-width:750px) {
    .page-ttl h1{
        padding: 8% 0;
    }
}
/* ---------------------------------------------
  form
-----------------------------------------------*/

.hidden_form {
    display: none !important;
}

.form_style.inner{
    margin-top: 30px;
    max-width: 630px;
}
.form_style table{}
.form_style table th{
    position: relative;
    padding-bottom: 10px;
}
.form_style table th:before{
    position: relative;
    top: -4px;
    display: inline-block;
    vertical-align: middle;
    content: '■';
}
.form_style table th,
.form_style table td{
    display: block;
    font-size: 3.2rem;
    font-weight: 400;
    width: 100%;
    box-sizing: border-box;
}


.form_style p,
.form_style table td p,
.form_style table td li{
    font-size: 3.2rem;
    font-weight: 400;
}

.form_style table td{ padding-bottom: 45px;}


.input_wrap{
    position: relative;
    width: 100%;
}

.form_style input{
    width: 100%;
    margin-left: -1px;
    background: #FFF;
    padding: 17px;
    font-size: 3.2rem;
	font-weight: 400;
    outline: none;
    box-shadow: none;
    border: 1px solid #707070;
    box-sizing: border-box;
}

.form_style .birthday_wrap input{
    width: 70%;
    max-width: 447px;
}
.form_style .birthday_wrap input:not(:last-of-type){ margin-bottom: 20px;}

.form_style .birthday_wrap label{
    font-size: 3.2rem;
	font-weight: 400;
    margin-left: 30px;
}

/* ラジオボックス */
.radio-input{
    visibility: hidden;
    width: 1px !important;
    padding: 0 !important;
    margin-left: -1px;
}
.radiobox{
    position: relative;
    display: flex;
    align-items: center;
}
.radiobox li+li{ margin-left: 45px;}
.radio-parts{
    padding-right: 60px;
    position:relative;
    font-size: 3.2rem;
    font-weight: 400;
    cursor: pointer;
}

.radio-parts::before{
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    right: 0;
    width: 50px;
    height: 50px;
    background: #FFF;
    border-radius: 100%;
    border: 1px solid #707070;
}
.radio-input:checked + .radio-parts::after{
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #1A1311;
    border-radius: 100%;
}

/* チェックボックス */
.check_wrap{
    display: block;
    width: 100%;
    font-size: 3.2rem;
    font-weight: 400;
    padding: 10px 0 0 0;
    box-sizing: border-box;
}
.check_agree label{ position: relative;}
input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    appearance: none;
    visibility:hidden;
    width:1px;
    padding: 0;
}

input[type=checkbox] + span:before {
    content: "";
    display: block;
    position: absolute;
    top: 11px;
    left: 0;
    width: 50px;
    height: 50px;
    background: #FFF;
    border: 1px solid #707070;
}
input[type=checkbox]:checked + span:before {
    content: "";
    position: absolute;
    top: 11px;
    width: 50px;
    height: 50px;
}
.form_style .check-parts{
    display: block;
    padding-left: 70px;
    position:relative;
    font-size: 3.2rem;
    font-weight: 400;
    cursor: pointer;
}

input[type=checkbox]:checked + span::after{
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 16px;
    width: 16px;
    height: 32px;
    transform: rotate(40deg);
    border-bottom: 3px solid #D80D18;
    border-right: 3px solid #D80D18;
}

.btn_wrap .submit_btn{
    border-radius: 0;
    font-size: 3.2rem;
    font-weight: 400;
    background: #6A3906;
    color: #FFF;
    text-align: center;
    box-shadow: none;
    cursor: pointer;
}
.btn_wrap .back_btn{
    border-radius: 0;
    font-size: 3.2rem;
    font-weight: 400;
    background: #DCDCDC;
    color: #1A1311;
    border: 1px solid #1A1311;
    text-align: center;
    box-shadow: none;
    cursor: pointer;
}
.item-errormsg{
    color: #DC000C;
    display: block;
}

.pull-down{
    position: relative;
    margin-bottom: 20px;
    padding: 17px;
    font-size: 3.2rem;
    background-color: #fff;
    border: 1px solid #1A1311;
    width: 70%;
    max-width: 447px;
    vertical-align: baseline;
}
select {
  background-image: url(../img/common/angle-down.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 20px 3.2rem;
}


@media(max-width:750px) {

    .form_style.inner{
        width: 88%;
        margin-top: 5%;
        max-width: inherit;
    }

    .form_style table th{
        padding-bottom: 10px;
    }
    .form_style table th:before{
        top: -.5vw;
    }
    .form_style p,
    .form_style table th,
    .form_style table td,
    .form_style table td p,
    .form_style table td li{
        font-size: 4.27vw;
    }

    .form_style table td{ padding-bottom: 5%;}

    .form_style input{
        padding: 13px;
        font-size: 4.27vw;
    }

    .form_style .birthday_wrap input:not(:last-of-type){ margin-bottom: 4%;}

    .form_style .birthday_wrap label{
        font-size: 4.27vw;
        margin-left: 4%;
    }

    /* ラジオボックス */
    .radiobox li+li{ margin-left: 7%;}
    .radio-parts{
        padding-right: 9vw;
        font-size: 4.27vw;
    }
    .ie .radio-parts{ top: 1px;}
    .radio-parts::before{
        top: 0;
        right: 0;
        width: 7vw;
        height: 7vw;
    }
    .radio-input:checked + .radio-parts::after{
        top: 1.2vw;
        right: 1.3vw;
        width: 4.4vw;
        height: 4.4vw;
    }

    /* チェックボックス */
    .check_wrap label{ position: relative;}
    .check_wrap{
        font-size: 4.27vw;
        padding: 10px 0 0 0;
        box-sizing: border-box;
    }
    .check_agree label{ position: relative;}
    input[type=checkbox] {
        position: absolute;
        left: 0;
        top: 0;
        appearance: none;
        visibility:hidden;
        width:1px;
        padding: 0;
    }

    input[type=checkbox] + span:before {
        top: 1vw;
        left: 0;
        width: 7vw;
        height: 7vw;
    }
    input[type=checkbox]:checked + span:before {
        top: 1vw;
        width: 7vw;
        height: 7vw;
    }
    .form_style .check-parts{
        padding-left: 10vw;
        font-size: 4.27vw;
    }

    input[type=checkbox]:checked + span::after{
        top: 1.3vw;
        left: 2vw;
        width: 3.2vw;
        height: 5vw;
    }

    .btn_wrap .submit_btn,
    .btn_wrap .back_btn{
        font-size: 4.27vw;
    }

    .pull-down{
        padding: 13px;
        font-size: 4.27vw;
    }
    select {
      background-position: right 13px center;
      background-size: 13px 4.27vw;
    }
}

/* ---------------------------------------------
  form
-----------------------------------------------*/
.confirm .birthday_wrap{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.confirm .birthday_wrap p+p{ margin-left: 40px;}


@media(max-width:750px) {
    .confirm .birthday_wrap p+p{ margin-left: 6%;}



}
