
/*** お問い合わせページ ***/
.pc{
    display: block;
}
.sp{
    display: none;
}
@media screen and (max-width:767px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}
/* formスタイルのリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
  display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

/* contact */
.content .contact{
    width: 100%;
    padding: 0 20px;
    color: #333333;
}
.content .contact a:hover{
    text-decoration: none;
}
.contact_container{
    width: 100%;
    max-width: 960px;
    margin: 64px auto 0;
}
.contact_container_title{
    font-size: 3.6rem;
    text-align: center;
    font-weight: bold;
}
.contact_container_step{
    margin-top: 15px;
}
.contact_container_lead{
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 40px;
}
.contact_container_note{
    font-size: 1.2rem;
    text-align:left;
    margin-top: 40px;
    margin-bottom:10px;
}
.contact_container_note span{
    color: #ff0000;
}
.contact_container_contents{
    width: 100%;
    margin: 40px auto 0;
}
.contact_container_contents._mt0{
    width: 100%;
    margin: 0 auto 0;
}

.contact_caution_area{
    text-align:left;
}
.contact_caution_title{
   font-weight:bold;
   font-size:1.6rem;
   max-width: 100%;
   margin: 0;
   padding-bottom: 5px;
}
.contact_caution_list{
    list-style: none;
}
.contact_caution_list li{
    margin: 10px 0 0 13px;
    line-height: 1.4em;
    list-style-type: disc;
}
.contact_caution_list a{
    text-decoration:underline;
}
.contact_caution_list a:hover{
    text-decoration:none;
}
@media screen and (max-width:767px) {
.content .contact{
        padding: 0 10px;
    }
    .contact_container{
        width: 100%;
        margin: 32px auto 0;
    }
    .contact_container_title{
        font-size: 2.4rem;
    }
    .contact_container_lead{
        font-size: 1.3rem;
        line-height: 1.4;
        margin-top: 20px;
    }
    .contact_container_contents{
        width: 100%;
        margin: 24px auto 0;
    }
    .contact_caution_title{
        padding: 0 0 5px 0;
     }
}

/* step */
.step{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.step_item{
    color: #ff0000;
    font-size: 1.6rem;
    font-weight: bold;
    border: solid 3px #ff0000;
    padding: 10px 0;
    width: 200px;
    line-height: 1;
    border-radius: 8px;
}
.step_item._isActive{
    color: #ffffff;
    background-color: #ff0000;
}
.step_arrow{
    margin: 0 6px;
    width: 20px;
    height: auto;
}
@media screen and (max-width:767px) {
    .step_item{
        font-size: 1.4rem;
        border: solid 2px #ff0000;
        padding: 8px 0;
        width: 96px;
        border-radius: 4px;
    }
    .step_arrow{
        margin: 0 4px;
        width: 14px;
        height: auto;
    }
}

/* form */
.form{
    background-color: #eef3f4;
    padding: 50px 32px 50px 40px;
}
.form._mt25{
    margin-top:25px;
}
.form_item{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.form_item + .form_item{
    margin-top: 20px;
}
.form_item_title{
    text-align: left;
    width: 288px;
    min-width: 288px;
    height: 48px;
    line-height: 48px;
    font-size: 1.6rem;
    font-weight: bold;
}
.form_item_input{
    flex: 1;
    text-align: left;
    font-size: 1.6rem;
}
.form_item_input_name{
    font-weight: bold;
    margin-right: 15px;
}
input + .form_item_input_name{
    margin-left: 20px;
}
.form_item_input_check + .form_item_input_check{
    margin-top: 8px;
}
.form_check{
    margin: 32px auto 0;
    text-align: center;
}
.form_check p{
    margin-bottom: 10px;
}
@media screen and (max-width:767px) {
    .form_check p{
        letter-spacing: -0.05em;
    }
  }

.form_button{
    margin: 36px auto 0;
    text-align: center;
}
.required{
    color: #ff0000;
    padding: 5px 9px;
    border: solid 2px #ff0000;
    font-weight: normal;
    font-size: 1.4rem;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}
.attention{
    color:#666666;
    margin-top: 12px;
    font-size: 1.4rem
}
@media screen and (max-width:767px) {
    .form{
        background-color: #eef3f4;
        padding: 24px 16px 32px;
    }
    .form_item{
        display: block;
    }
    .form_item + .form_item{
        margin-top: 24px;
    }
    .form_item_title{
        width: auto;
        min-width: auto;
        height: auto;
        line-height: 22px;
    }
    .form_item_input{
        margin-top: 8px;
    }
    .form_item_input_name{
        font-weight: bold;
        margin-right: 4px;
    }
    input + .form_item_input_name{
        margin-left: 6px;
    }
    .form_check{
        margin: 20px auto 0;
        }
    .form_button{
        margin: 30px auto 0;
    }
    .required{
        padding: 3px 6px;
        border: solid 2px #ff0000;
        font-size: 1.2rem;
        border-radius: 4px;
        margin-left: 4px;
        vertical-align: bottom;
    }
    .attention{
        color:#666666;
        margin-top: 6px;
        font-size: 1.2rem
    }
}

/* input */
.input{
    width: 100%;
    padding: 16px;
    font-size: 1.6rem;
    border-radius: 4px;
    line-height: 1;
    height: 48px;
    background-color: #ffffff;
    border: solid 2px #cccccc;
}
.input._xsmall{
    width: 100px;
}
.input._small{
    width: 178px;
}
.input._medium{
    width: 200px;
}
.input._large{
    width: 300px;
}
.input::placeholder {
    color: #cccccc;
}

@media screen and (max-width:900px) {
    .input._medium{
        width: 150px;
    }
}
@media screen and (max-width:767px) {
    .input{
        width: 100%;
        padding: 8px 10px;
        border-radius: 4px;
        height: auto;
        line-height: 1;
    }
    .input._xsmall{
        width: 96px;
    }
    .input._small{
        width: 110px;
    }
    .input._medium{
        width: 120px;
    }
    .input._large{
        width: 100%;
    }
}
@media screen and (max-width:320px) {
    .input._medium{
        width: 102px;
    }
}

/* select */
.select {
    width: 100%;
    position: relative;
    padding: 16px;
    font-size: 1.6rem;
    border-radius: 4px;
    line-height: 1;
    border: solid 2px #cccccc;
    background-color: #ffffff;
    background-image: url(../img/contact/arrow_select.png);
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 14px auto;
    cursor: pointer;
}
.select._small {
    width: 300px;
}
@media screen and (max-width:767px) {
    .select {
        width: 100%;
        padding: 12px 16px;
        border-radius: 4px;
        height: auto;
        background-position: right 12px center;
        background-size: 12px auto;
    }
    .select._small {
        width: 100%;
    }
}

/* textarea */
.textarea{
    width: 100%;
    padding: 16px;
    font-size: 1.6rem;
    border-radius: 4px;
    line-height: 1;
    height: 208px;
    background-color: #ffffff;
    border: solid 2px #cccccc;
}
@media screen and (max-width:767px) {
    .textarea{
        width: 100%;
        height: 120px;
        padding: 8px 10px;
    }
}

/* checkbox */
.check {
}
.check_box {
  display: inline-block;
  vertical-align: middle;
}
.check_label{
    display: inline-block;
    font-size: 1.6rem;
    vertical-align: middle;
}
.check_label._small{
    font-size: 1.4rem;
}
input[type="checkbox"] + .check_box::before {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  padding: 0;
  margin-right: 4px;
  background-color: #ffffff;
  border: solid 2px #cccccc;
  border-radius: 2px;
}
input[type="checkbox"]:checked + .check_box::before {
  background-image: url("../img/contact/check.png");
  background-size: 14px auto;
  background-repeat: no-repeat;
  background-position: center;
}


@media screen and (max-width:767px) {
    .check_label{
        font-size: 1.4rem;
        width: auto;
        max-width: calc(100% - 38px);
    }
    input[type="checkbox"] + .check_box::before {
        width: 20px;
        height: 20px;
    }
    input[type="checkbox"]:checked + .check_box::before {
        background-size: 12px auto;
    }
}


/* button */
.button{
    display: block;
    margin: 0 auto;
    width: 295px;
    height: 72px;
    border-radius: 36px;
    padding: 26px 0;
    line-height: 1;
    border: 3px solid #000;
    background: #ffee00;
    font-size: 1.6rem;
    font-weight: bold;
    color: #333333;
}
.button._disabled{
    background: #fff;
}
.button._send{
    background-color: #ff0000;
    color: #ffffff;
}
.button._back{
    background-color:#ffffff;
    border: solid 1px #cccccc;
    font-weight: normal;
    color: #666666;
    padding: 28px 0;
}
@media screen and (max-width:767px) {
    .button{
        width: 260px;
        height: 60px;
        border-radius: 30px;
        padding: 19px 0;
        border: 2px solid #000;
    }
    .button._back{
        padding: 21px 0;
    }
}

/* お問い合わせ内容確認 */
/* confirm */
.confirm{
    border: solid 2px #cccccc;
    padding: 50px 32px 50px 40px;
}
.confirm_item{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.confirm_item + .confirm_item{
    margin-top: 20px;
}
.confirm_item_title{
    text-align: left;
    width: 288px;
    min-width: 288px;
    height: 48px;
    line-height: 48px;
    font-size: 1.6rem;
    font-weight: bold;
}
.confirm_item_input{
    width: 100%;
    text-align: left;
    font-size: 1.6rem;
}
.confirm_item_input_name{
    font-weight: bold;
    margin-right: 15px;
}
.text + .confirm_item_input_name{
    margin-left: 20px;
}
.text{
    display: inline-block;
    width: 100%;
    text-align: left;
    padding: 16px;
    font-size: 1.6rem;
    border-radius: 4px;
    line-height: 1;
    background-color: #f6f6f6;
}
.text._xsmall{
    width: 100px;
}
.text._small{
    width: 178px;
}
.text._medium{
    width: 200px;
}
.text._large{
    width: 300px;
}
.text._free{
    height: 208px;
}
.confirm_check{
    margin: 32px auto 0;
    text-align: center;
}
.confirm_button{
    margin: 36px auto 0;
    text-align: center;
}
@media screen and (max-width:939px) {
    .text._medium{
        width: 150px;
    }
}
@media screen and (max-width:767px) {
    .confirm{
        padding: 24px 16px 32px;
    }
    .confirm_item{
        display: block;
    }
    .confirm_item + .confirm_item{
        margin-top: 24px;
    }
    .confirm_item_title{
        line-height: 22px;
        margin-bottom: 8px;
        height: auto;
    }
    .confirm_item_input_name{
        font-weight: bold;
        margin-right: 4px;
    }
    .text + .confirm_item_input_name{
        margin-left: 6px;
    }
    .text{
        width: 100%;
        padding: 16px;
        border-radius: 4px;
        height: auto;
    }
    .text._xsmall{
        width: 96px;
    }
    .text._small{
        width: 110px;
    }
    .text._medium{
        width: 110px;
    }
    .text._large{
        width: 100%;
    }
    .text._free{
        height: 120px;
    }
    .confirm_check{
        margin: 20px auto 0;
    }
    .confirm_button{
        margin: 30px auto 0;
    }
}
@media screen and (max-width:320px) {
    .text._medium{
        width: 96px;
    }
}

/* 送信完了 */
/* complete */
.complete{
    border: solid 2px #cccccc;
    padding: 32px 32px 40px;
    font-size: 1.3rem;
    text-align: left;
}
.complete_button{
    margin: 32px auto 0;
    text-align: center;
}
@media screen and (max-width:767px) {
    .complete{
        padding: 16px 16px 24px;
        font-size: 1.2rem;
    }
    .complete_button{
        margin: 20px auto 0;
        text-align: center;
    }
}
