@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Asap+Condensed:600');

/*additional reset
---------------------------------------------------*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body.safari #content, body.safari #footer {/*サファリでリンク先から戻った時文字が拡大する対応*/
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    margin: 0;
    font-size: 17px;
    background-color: #fbf4ea;
}

a:hover,
a:active {
    text-decoration: none;
}
img{
    width: 100%;
    vertical-align: middle;
}
/*初期設定
----------------------------------------------------*/
#wrapper{
    overflow: hidden;
    margin: auto;
    position: relative;
}
.content{
    display: block;
    margin: 0 auto;
    width: 100%;
}
@media screen and (min-width:640px) {
    .pc{
        display: block;
    }
    .sp{
        display: none;
    }
}

@media screen and (max-width:640px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    #wrapper{
        width: 100%;
    }
}
h1 , h2 ,h3 ,h4{
    margin: 0;
    padding: 0;
}
/*layout
----------------------------------------------------*/

/*footer*/
footer{
    background-color: #2c2c2c;
}
.footer_word {
    text-align: center;
    margin: 0 10px;
    color: #fff;
    padding: 0 0 40px;
}
.footer_tit {
    font-weight: bold;
}
.footer_txt {
    font-size: 14px;
}

/*foam　page
---------------------------------------------------*/
.form {
    padding: 70px 5px 50px;
    color: #2c2c2c;
}
.ttl-02 {
    margin: 0 auto;
    width: 80%;
    max-width: 1000px;
}
.form-ttl {
    width: 96%;
    margin: 0 auto;
    display: block;
    max-width: 480px;
}
.foam_box {
    width: 100%;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 40px;
    border-radius: 20px;
    background-color: #fff;
}

.form-item{
    margin-bottom: 30px;
}
.form-title{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 5px 10px;
    color: #2c2c2c;
}
.must{
    display: inline-block;
    margin-left: 10px;
    padding: 3px 10px;
    background: #c77076;
    color: #fff;
    font-size: 12px;
    vertical-align: middle;
}
.form-label{
    font-size: 15px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: bold;
}
.reserve-box{
    background: #f6edda;
    border-radius: 20px;
    padding: 25px;
}
.form-item input[type="text"],
.form-item input[type="email"],
.form-item input[type="tel"],
.form-item input[type="date"],
.form-item textarea{
    width: 100%;
    border: 1px solid #d8c7a7;
    background: #fff;
    padding: 10px 15px;
    font-size: 16px;
    box-sizing: border-box;
}
.form-item textarea{
    resize: vertical;
    min-height: 180px;
}
.select-box{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}.select-box{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}
.option-card{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.option-card input{
    display: none;
}
.option-card span{
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.6;
}
/* 外側の丸 */
.option-card span::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid #2c2c2c;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #fff;
}
/* 選択時の中丸 */
.option-card span::after{
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c7a66a;
    transform: translateY(-50%) scale(0);
    transition: .2s;
}
.option-card input:checked + span::after{
    transform: translateY(-50%) scale(1);
}
.tel-box{
    display: flex;
    align-items: center;
    gap: 10px;
}
.tel-separator{
    font-size: 20px;
    font-weight: bold;
}
.zip {
    display: flex;
    align-items: center;
    flex-direction: row;
}
.zip input{ 
    width: calc(97.333% - 5px) !important;
    margin-left: 10px;
}

input.chbtn {
    width: 55%;
    padding: 20px;
    font-size: 20px;
    border-radius: 100px;
    background-color: #896717;
    color: #fff;
    font-weight: bold;
    border: none;
    margin: 0 auto;
    text-align: center;
}
.submitbtn {
    text-align: center;
    display: flex;
}

.form-item select{
    width: 100%;
    border: 1px solid #d8c7a7;
    background: #fff;
    padding: 15px;
    font-size: 16px;
    box-sizing: border-box;
  }

/*確認画面*/
.confirm-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
    border-bottom: 1px solid #896717;
    line-height: 2;
    padding: 0 0 0 10px;
}
.confirm-text {
    margin: 0 0 30px;
    line-height: 1.7;
    padding: 0 0 0 10px;
}
input.send_btn {
    width: 45%;
    padding: 20px;
    font-size: 20px;
    border-radius: 100px;
    background-color: #896717;
    color: #fff;
    font-weight: bold;
    border: none;
    margin: 0 auto;
    text-align: center;
}
input.back_btn {
    width: 45%;
    padding: 20px;
    font-size: 20px;
    border-radius: 100px;
    background-color: #9b9b9b;
    color: #fff;
    font-weight: bold;
    border: none;
    margin: 0 auto;
    text-align: center;
}

.backbtn {
    width: 55%;
    padding: 20px;
    font-size: 20px;
    border-radius: 100px;
    background-color: #896717;
    color: #fff;
    font-weight: bold;
    border: none;
    margin: 0 auto;
    text-align: center;
}
.backbtn a {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width:768px){
.foam_box {
    width: 95%;
    margin: 30px auto 0;
    padding: 20px 20px;
}
.form-title{
    font-size: 18px;
    margin: 10px 0;
}
.form-item {
    margin-bottom: 20px;
}
.reserve-box {
    padding: 15px;
    border-radius: 15px;
}
.tel-box{
    gap: 5px;
}
.select-box {
    gap: 6px 20px;
}
input.chbtn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}
.submitbtn {
    flex-direction: column;
}

input.send_btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin: 10px auto;
}
input.back_btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin: 10px auto;
}
}



    