@charset "UTF-8";

input[type="text"],
input[type="email"],
input[type="tel"] {
    padding: 7px 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background: #fafafa;
    -webkit-appearance: none;
    font-size: 1.6rem;
    font-family: inherit;
    line-height: normal;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    box-shadow: 0px 0px 5px #55ccff;
    border: 1px solid #55ccff;
    background: #ffffff;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 0 15px 0 0;
}

input[type="submit"] {
    border: 1px solid #dd2e1e;
    background: #dd2e1e;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 60px;
    letter-spacing: .1em;
    height: 60px;
    text-align: center;
    width: 320px;
}

input[type="button"] {
    border: 1px solid #CCC;
    background: #EEE;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 60px;
    letter-spacing: .1em;
    height: 60px;
    text-align: center;
    width: 320px;
}

input[type="submit"]:hover,
input[type="button"]:hover {
    opacity: .5;
}

@media screen and ( max-width: 750px ) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 1.4rem;
    }
}

::placeholder {
    color: #c9c9c9;
}

.contact_ttl {
    padding: 100px 0;
    text-align: center;
}

.contact_ttl .item h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.contact_ttl .item p {
    padding: 30px 0 0;
    font-size: 2rem;
    font-weight: 300;
}


.form_wrap {
	width: 1000px;
    margin: 0 auto 100px;
    background: #ffffff;
    box-shadow: 0 0 7px rgba( 0, 0, 0, 0.2 );
    line-height: 1.8;
}

@media screen and ( max-width: 1200px ) {
    .form_wrap {
        width: 95%;
    }
}

@media screen and ( max-width: 750px ) {
    .form_wrap {
        width: 100%;
        margin: 0 auto;
    }
}

.form_wrap .inner {
    width: 90%;
    margin: 0 auto;
    padding: 100px 0;
}

.form_wrap h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.form_wrap .txt {
    margin: 30px 0 50px;
    text-align: center;
    font-size: 1.6rem;
}

.form_wrap .txt p {
    margin: 18px 0 0;
    font-size: 1.6rem;
    line-height: 2;
}

.formArea  {
    font-size: 1.6rem;
}

.formArea .itemBox {
    margin: 0 auto;
    border-bottom: 1px solid #cccccc;
    line-height: 1.8;
}

.formArea .itemBox dt {
    width: 30%;
    float: left;
    padding: 35px 0;
    text-align: left;
    line-height: 2;
    font-weight: 500;
}

.formArea .itemBox dd {
    width: 65%;
    float: right;
    padding: 30px 0;
}

.formArea .itemBox::after,
.formArea .itemBox dt::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.formArea .itemBox dd ul li:first-child label {
    margin-top: 0px;
}

.formArea .itemBox dd ul li label {
    display: block;
    margin-top: 10px;
    padding: 15px 15px;
    border-radius: 3px;
    background: #f0f0f0;
}

.formArea .itemBox dd ul li label:hover {
    cursor: pointer;
    background: #e0e0e0;
}

.formArea .itemBox select {
    position: relative;
    padding: 7px 2%;
    border: 1px solid #cccccc;
    font-size: 1.6rem;
    font-family: inherit;
    line-height: normal;
}

textarea {
    display: block;
    width: calc( 100% - 4% - 2px );
    height: 200px;
    padding: 7px 2%;
    resize: vertical;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background: #fafafa;
    -webkit-appearance: none;
    font-size: 16px;
    font-family: inherit;
    line-height: normal;
}

.formArea .itemBox.address .item {
    padding: 15px 0 0;
}

.formArea .itemBox.address .item:first-of-type {
    padding: 0;
}

.formArea .itemBox.address .addName {
    min-width: 100px;
    padding: 0 0 6px;
    font-size: 1.4rem;
}

.formArea .itemBox.address .box {
    width: auto;
}

.formArea .itemBox.address .box +.box {
    margin: 0 0 0 30px;
}

.formArea .itemBox.address .p-postal-code {
    min-width: 100px;
}

.require,
.optional {
    float: right;
    position: relative;
    top: 2px;
    padding: 7px 8px;
    border-radius: 3px;
    font-size: 1.4rem;
    line-height: 1;
    color:#FFF;
}

.require {
    background: #dd2e1e;
}

.optional {
    background: #c0c0c0;
}

.form_wrap .form_btn {
    text-align: center;
    padding: 60px 0 0;
}

@media screen and ( max-width: 750px ) {
    .contact_ttl {
        padding: 70px 0;
    }

    .contact_ttl .item h1 {
        font-size: 2.5rem;
    }

    .contact_ttl .item p {
        padding: 20px 0 0;
        font-size: 1.8rem;
    }

    .form_wrap .inner {
        padding: 70px 0;
    }

    .form_wrap h2 {
        font-size: 1.8rem;
    }

    .formArea {
        font-size: 1.4rem;
    }

    .formArea .itemBox dt {
        width: auto;
        float: none;
        padding: 25px 0 10px;
        text-align: left;
        font-weight: bold;
    }

    .formArea .itemBox dd {
        width: auto;
        float: none;
        padding: 0px 0 20px 0px;
        font-size: 1.4rem;
    }

    .formArea .itemBox select {
        font-size: 1.4rem;
    }

    .require, .optional {
        float: none;
        position: relative;
        top: -1px;
        left: 15px;
        padding: 3px 6px 4px;
        font-size: 1.2rem;
    }

    .formArea .itemBox.address .addName {
        padding: 0 0 6px;
        font-size: 1.2rem;
    }
}

.tel_contact {
    padding: 0 0 100px;
    text-align: center;
}

.cap_txt {
    margin: 30px 0;
    text-align: center;
    font-size: 1.6rem;
    line-height: 2;
}

.require_txt {
    font-size: 1.6rem;
}

.require_txt span {
    display: inline-block;
    margin: 0 7px 0 0;
    padding: 7px 7px;
    border-radius: 3px;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    background: #dd2e1e;
    color: #FFF;
}

.telBox {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.telBox .telBox_inner {
    margin: 10px 0 0;
    padding: 30px 0;
    border: 1px solid #dd2e1e;
    text-align: center;
}

.telBox .tel_icon {
    position: relative;
    top: 5px;
    width: 45px;
    margin: 0 10px 0 0;
    fill: #dd2e1e;
}

.telBox address a {
    color: #dd2e1e;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1;
}

.telBox small {
    display: block;
    font-size: 1.4rem;
}

@media screen and (min-width: 751px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}

@media screen and ( max-width: 750px ) {
    .cap_txt {
        margin: 20px 0;
        text-align: justify;
        font-size: 1.4rem;
        line-height: 2;
    }

    .require_txt {
        font-size: 1.4rem;
    }

    .require_txt span {
        margin: 0 5px 0 0;
        padding: 6px 7px;
        font-size: 1.3rem;
        font-weight: normal;
    }

    .telBox .tel_icon {
        width: 35px;
    }

    .telBox address a {
        font-size: 3.5rem;
        letter-spacing: .05em;
    }

    .telBox small {
        font-size: 1.3rem;
    }
}

.userName {
    width: 100%;
    max-width: 250px;
    letter-spacing: .1em;
}

.txtInput {
    width: calc( 100% - 4% - 2px );
}

.privacy_area {
    font-size: 1.4rem;
    margin: 50px 0 0;
    text-align: center;
}

.privacy_area strong {
    color: #dd2e1e;
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    padding-bottom: 1em;
}

.privacy_area p {
    line-height: 2;
}

.privacy_wrap {
    padding: 30px 0 0;
}

.privacy_wrap .privacy {
    margin: 0 0 40px;
    padding: 16px 40px;
    height: 230px;
    border: 1px solid #ccc;
    overflow-y: scroll;
    font-size: 1.3rem;
    line-height: 2;
    text-align: left;
}

.privacy_wrap .privacy > * {
    margin: 0 0 15px;
}

.privacy_wrap .privacy > h3 {
    margin: 20px 0 10px;
    font-size: 1.6rem;
    font-weight: bold;
}

.privacy_wrap .privacy > h3 >.num {
    position: relative;
    top: 2px;
    margin: 0 8px 0 0;
    color: #dd2e1e;
    font-size: 2.5rem;
    font-family: din-2014, sans-serif;
    font-weight: 500;
    line-height: 1;
}

.privacy_wrap .privacy ul {
    padding-left: 26px;
    list-style: none;
    line-height: 1.8;
}

.privacy_wrap .privacy ul > li {
    position: relative;
    margin-bottom: 7px;
    line-height: 1.3;
}

.privacy_wrap .privacy ul > li:before {
    content: '・';
    position: absolute;
    top: 0;
    left: -26px;
    width: 26px;
    text-align: center;
}

.privacy_area .agreeblk {
    text-align: center;
    font-size: 1.6rem;
    background: #F6F6F6;
}

.privacy_area .agreeblk .in_check {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 15px 15px;
    border-radius: 3px;
    cursor: pointer;
}

.privacy_area .agreeblk .in_check:hover {
    background: #e0e0e0;
}

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

    .privacy_wrap .privacy {
        margin: 0 0 40px;
        padding: 15px 20px;
        height: 230px;
        border: 1px solid #ccc;
        overflow-y: scroll;
        font-size: 1.3rem;
        line-height: 2;
        text-align: justify;
    }

    .privacy_wrap .privacy > h3 {
        margin: 10px 0 5px;
        font-size: 1.4rem;
        font-weight: bold;
    }

    .privacy_wrap .privacy > h3 >.num {
        position: relative;
        margin: 0 5px 0 0;
        font-size: 2.3rem;
    }

    .privacy_area .agreeblk {
        font-size: 1.4rem;
    }
}


.form_wrap.thx .inner {
    padding: 75px 0;
}

.form_wrap.thx h2 {
    font-size: 4rem;
    font-weight: bold;
    padding: 0 0 20px;
    text-align: center;
    color: #dd2e1e;
}

.thxArea {
    padding: 0 0 50px;
}

.thxArea p {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2;
}

.form_wrap.thx .telBox p {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

@media screen and ( max-width: 750px ) {
    .form_wrap.thx h2 {
        font-size: 2.2rem;
        padding: 0 0 20px;
    }

    .thxArea {
        padding: 0 0 30px;
    }

    .thxArea p {
        font-size: 1.4rem;
        text-align: left;
    }

    .form_wrap.thx .telBox p {
        font-size: 1.4rem;
    }
}

.confirmArea {
    font-size: 1.6rem;
    margin: 0 auto;
    padding: 0 0 50px 0;
}

table.formTable {
    width: 100%;
    margin: 50px auto;
    border-collapse: collapse;
}

table.formTable tr {
    border-top: 1px solid #ccc;
}


table.formTable td,
table.formTable th {
    padding: 30px 20px;
}

table.formTable th {
    width: 30%;
    font-weight: bold;
    text-align: right;
}

.confirmArea h3 {
    margin: 0 0 30px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #dd2e1e;
}

.confirmArea h4 {
    font-size: 1.8rem;
    line-height: 2;
}

p.error_messe {
    margin: 15px 0 0;
    color: #dd2e1e;
}

.form_wrap.confirm form input[type="submit"] {
    float: right;
    width: 280px;
    margin: 0 18% 0 0;
}

.form_wrap.confirm form input[type="button"] {
    float: left;
    width: 150px;
    margin: 0 0 0 18%;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:750px) {
    table.formTable th,
    table.formTable td {
        width: auto;
        display: block;
        padding: 0;
        font-size: 1.3rem;
        text-align: left;
    }

    table.formTable th {
        padding: 20px 20px 0;
        font-size: 1.3rem;
    }

    table.formTable td {
        padding: 5px 20px 20px;
        font-size: 1.4rem;
    }

    form input[type="submit"],
    form input[type="reset"],
    form input[type="button"] {
        display: block;
        width: 100%;
        height: 60px;
        font-size: 1.4rem;
    }
    .confirmArea {
        font-size: 1.4rem;
        padding: 0 0 120px 0;
    }

    .form_wrap.confirm form input[type="submit"] {
        float: none;
        width: 100%;
        margin: 0;
    }

    .form_wrap.confirm form input[type="button"] {
        float: none;
        margin: 30px 0 0;
    }
}

.select {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 50px;
    font-size: 1.6rem;
}

.select ul {
    display:flex;
    margin: 0 auto;
}

.select ul li {
    margin: 0 20px 0 0;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

.select ul li a:hover {
    background-color: #D1101A;
    border: 1px solid #D1101A;
    color: #FFF;
}

.select ul li a {
    display: block;
    padding: 20px 30px;
    border: 1px solid #D1101A;
    color: #D1101A;
    transition: ease .3s;
}

.select ul li p {
    position: relative;
    display: inline-block;
    padding: 20px 30px;
    min-width: 120px;
    max-width: 100%;
    color: #FFF;
    font-weight: bold;
    background: #D1101A;
}

.select ul li p:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #D1101A;
}

@media screen and (max-width:750px) {
    .select ul li {
        margin: 0 10px 0 0;
        text-align:justify;
        font-size: 1.3rem;
        font-weight:500;
    }

    .select ul li a {
        padding: 10px 5px;
    }

    .select ul li p {
        padding: 10px 7px;
        font-weight:500;
    }
}

.rec_btn2nd {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 30px 0 0;
}

.rec_btn2nd-link {
    margin: 0 0 2% 1%;
    width: 32%;
    font-size: 1.6rem;
    text-align: center;
}

.rec_btn {
    position: relative;
    display: block;
    color: #fff;
    background-color: #dd2e1e;
    letter-spacing: 1px;
    padding: 20px 0;
    font-weight: 600;
    line-height: 1.5em;
}

.rec_btn:hover {
    opacity: .5;
}

@media screen and (max-width:750px) {
    .rec_btn2nd-link {
        margin: 0 0 2% 1%;
        width: 49%;
        font-size: 1.4rem;
    }
}