@charset "UTF-8";

/* ------------------------------------------------------------
   contact - style.css
------------------------------------------------------------ */
/*
* 00 -subhead
* 01 -form contents
* 02 -confirm contents
* 03 -completion contents
*/


/* 00 -subhead
------------------------------------------------------------ */
.subhead::before{ background-image: url(../img/subhead.jpg); opacity: 0.7; }

/* 01 -form contents
------------------------------------------------------------ */
.company__contents{ margin: 10% 0; }
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}


.form__box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 2px #d9d8d7; 
}
.form__box .form__tit {
    width: 38%;
    text-align: left;
    font-weight: bold;
    padding: 30px 0;
}
.form__box .form__text { width: 62%; padding: 30px 0; }
.form__box .form__text p { font-size: 1.3rem; margin: 10px 0; }

.contact__form form { margin: 65px auto 130px; }

.form__required { position: relative; }

.form__required::after {
    content: "必須";
    display: inline-block;
    width: 50%;
    max-width: 79px;
    background: #333;
    color: #fff;
    font-size: 13px;
    line-height: 13px;
    text-align: center;
    font-weight: normal;
    border-radius: 2px;
    padding: 5px 0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 25px;
    margin-left: 18px;
}

input[type="text"],
textarea,
input[type="number"],
input[type="tel"],
input[type="email"] {
    border: none;
    border-radius: 4px;
    padding: 10px 10px;
    background: #eeeeee;
    border: solid 1px #ccc;
}

input::placeholder {
    color: #959392;
    font-size: 80%;
    font-weight: 100;
    letter-spacing: 0.2rem;
}

select {
    width: 15em;
    border-radius: 4px;
    height: 30px;
    background: #eeeeee;
    border: none;
}

input[type="email"] { width: 95%; }

input[type="tel"] { margin-right: .5em; width: 5em; }
input[type="text"] { width: 95%; }
textarea { width: 95%; resize: auto; }
.formtxt { margin-top: 30px; }
.btnbox {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    max-width: 680px;
    margin: auto;
}

.btnbox .form_btn { width: 48%; }
.form_btn { margin: 30px auto; }
.form_btn input {
    color: #333;
    background: #fff url(../../common/img/arrow_black_right.png) no-repeat right 15px center/ 60px auto;
    border: none;
    border: solid 1px #333;
    border-radius: 0;
    position: relative;
    display: block;
    padding: 20px;
    transition: all 0.4s ease-in-out;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    width: 100%;
}
.form_btn a{ text-decoration: none; }
.form_btn input:hover {
    background-color: #333;
    background-image: url(../../common/img/arrow_white_right.png);
    color: #fff;
}


/* 02 -confirm contents
------------------------------------------------------------ */

/* 03 -completion  contents
------------------------------------------------------------ */
    #completion .more__btn{ margin: 30px auto; }



@media screen and (min-width: 1090px) and (max-width: 1300px) {
    /* ▼PC用================================================================== */
    
    /* 01 -form contents
    ------------------------------------------------------------ */

    /* 02 -confirm contents
    ------------------------------------------------------------ */

    /* 03 -completion  contents
    ------------------------------------------------------------ */

    
    /* ▲PC用================================================================== */
}

@media screen and (min-width: 768px) and (max-width: 1089px) {

    /* ▼Tab用================================================================= */
    
    
    /* 01 -form contents
    ------------------------------------------------------------ */

    /* 02 -confirm contents
    ------------------------------------------------------------ */

    /* 03 -completion  contents
    ------------------------------------------------------------ */

    
    

    /* ▲Tab用================================================================= */
}

@media screen and (min-width: 0px) and (max-width: 767px) {
    /* ▼SP用================================================================ */
    
    
    /* 01 -form contents
    ------------------------------------------------------------ */

    .form__box{
        display: block;
        border-bottom: none; 
    }
    .form__box .form__tit {
        width: auto;
        padding: 20px;
        background: #f2f2f2;
    }
    .form__box .form__text { width: auto; padding: 20px 0; }
    
    input[type="text"],
    textarea,
    input[type="number"],
    input[type="tel"],
    input[type="email"] {
        background: #fff;
    }
    .btnbox { display: block; }
    .btnbox .form_btn{ width: 90%; }

    /* 02 -confirm contents
    ------------------------------------------------------------ */

    /* 03 -completion  contents
    ------------------------------------------------------------ */

    
    

    /* ▲SP用================================================================ */
}