@charset 'UTF-8';
ul li{
    list-style: none;
}

.wrapper{
    min-height: 100vh;
    background-image: url(../images/shutterstock.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;

}
.wrapper2{
    min-height: 100vh;
    background-image: url(../images/shutterstock.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.box{
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    max-width: 960px;
    background-color: rgb(18, 34, 40);
    opacity: 0.9;
    text-align: center;
    padding: 40px 20px;
}
.thank{
    margin:40px;
}
.thank__ttl{
    margin: 10px 0;
    color: #fff;
    font-size: 1.7rem;
    padding-bottom: 0.8rem;
    border-bottom: solid 2px #ff8400;
}
.thank__txt{
    margin: 0 auto;
    max-width: 600px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.3rem;
    padding-bottom: 40px;
}
.thank__btn{
    text-align: center;
    padding: 10px 20px;
    margin: 0 auto;
    max-width: 100px;
    border-radius: 5px;
    background-color: rebeccapurple;
    color: rgb(255, 255, 255);
    box-shadow: rgba(70, 70, 70, 0.85);

}
.header{
    width: 100%;
    height: 80px;
    background-color: rgb(18, 34, 40);
    opacity: 0.9;
    position: fixed;
    top: 0;
    z-index: 9;
}

.header__logo a{
    text-decoration: none;
    color: #fff;
    line-height: 80px;
    padding-left: 2rem;
}
.header__logo a:hover{
    text-decoration: none;
    color: #ff8400;
}
.header__ttl{
    font-size: 2rem;
}
.header__ttl::before{
    position: absolute;
    top: -20px;
    left: 35px;
    font-size: .5rem;
    content: 'from Chukyo';
    color: rgb(136, 223, 255);
}
.tel{
    position: fixed;
    top: 20px;
    right: 40px;
    width: 55px;
}
.phone{
    background-color: #fff;
    border-radius: 6px;
    max-height: 40px;
    width: 32px;
    animation-name: pho;
    animation-duration:1.5s;
    animation-timing-function:ease-in;
    animation-delay:.5s;
    animation-iteration-count:1;
    animation-direction:alternate;
    animation-fill-mode:forwards;
}
@keyframes pho {
    0%{
        transform: scale(1)rotate(0);
    }
   
    50%{
        transform: scale(0.8)rotate(0);
    }
    100%{
        transform: scale(1)rotate(20deg);
    }
}
/*ハンバーガー*/
#humBtn{
    position: fixed;
    top: -30px;
}
.Btn{
    position: fixed;
    top: 1.5rem;
    right: 1rem;
    width: 2rem;
    height: 1.8rem;
    cursor: pointer;
    z-index: 10;
}
.Btn::before,
.Btn::after,
.bar{
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background-color: #fff;
    border-radius: 5px;
    content: '';
    transition: transform 0.5s;
}
.Btn::before{
    top: 0;
}
.Btn::after{
    bottom: 0;
}
.bar{
    top: 42%;
    transition: opacity .5s;
}
#humBtn:checked + label .Btn::before{
    width: 110%;
    transform: translateY(12px)rotate(-315deg);
}
#humBtn:checked + label .Btn::after{
    width: 110%;
    transform: translateY(-12px)rotate(315deg);
}
#humBtn:checked + label .bar{
    opacity: 0;
}
#humBtn:checked ~ .bg__dark{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    background-color:#ff8400;
    z-index: -20;

}
/*navi-----------*/

.navi{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    width: 13rem;
    background-color: rgb(21, 21, 21);
    padding: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: transform .3s, opacity 0.3s;
}
.navi__ul{
    padding-left: 0;
}
.navi__list{
    margin-top: 60px;
    padding-left: 0;
}
.navi__listItem{
    border-top: solid 1px #fff;
}
.navi__listHead{
    position: relative;
    background-color: rgb(33, 33, 33);
}
.navi__listHead+.navi__listHead{
    border-top: solid 1px #fff;
}
.navi__listHead a{
    display: block;
    padding: 11px 0 25px 10px;
    text-decoration: none;
    color: #fff;
}
.navi__listHead a:hover{
    text-decoration: none;
    color: #65ffc4;
}
.itemruby{
    font-size: 0.8rem;
}
.ruby{
    position: absolute;
    top: 35px;
    left: 25px;
    font-size: 0.7rem;
}
.navi__head{
    display: block;
    padding: 10px;
    text-align: left;
    color: rgb(21, 21, 21);
    background-color: #fff;
}
.navi__listItem:last-child{
    border-bottom: solid 1px #fff;
}
.navi__listItem a{
    display: block;
    padding: 25px 0;
    text-decoration: none;
    color: #fff;
}
.navi__listItem a:hover{
    color: #ff8400;
}
.snslist{
    margin-top: 60px;
}
.snslist__item{
    padding: 10px 0;
}
.snslist__item a{
    text-decoration: none;
    color: #fff;
}
#humBtn:checked ~ .navi{
    background-color: #131313;
    transform: translateX(0);
    opacity: 0.9;
}
/*モーダル*/
.modal__btn{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    color: #8affff;
}
.modal__btn:hover{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    color: #ff8400;
}
.modal__btn:focus{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

.modal__body img{
    width: 100%;
}

.input__require::before{
    margin-right: 10px;
    content: "必須";
    font-size: 0.7rem;
    background-color: #ff8400;
    padding: 3px 4px;
    color: #fff;
    border-radius: 3px;
}

/*フォーム*/
.con_form{
    max-width: 960px;
    width: 100%;
    box-sizing: border-box;
    padding: 50px;
    background-color:rgba(70, 70, 70, 0.85);
    color: #fff;
    border-radius: .5rem;
    margin: 0 auto 20px;
}
.contact{
    text-align: center;
    margin-bottom: 40px;
}
.contact__ttl{  
    margin: 10px 0;
    font-size: 2.2rem;
    padding-bottom: 0.8rem;
    border-bottom: solid 2px #ff8400;
}
.error_msg{
    font-size: 0.9rem;
    background-color: #ff84006f;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border-radius: 5px;
}
.footer{
    width: 100%;
    text-align: center;
    background-color: rgb(18, 34, 40);
    opacity: 0.9;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}


.confirm__btn{
    padding-top: 50px;
    display: flex;
    justify-content: center;

}
.confirm__btn a{
    text-decoration: none;
    color:#fff;
}
.confirm__btn a:hover{
    color: #fff;
}
.btn-back{
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    margin-right: 3px;
    background-color:#1A8754;
}
.btn-send{
    border: none;  /* 枠線を消す */
    outline: none; /* クリックしたときに表示される枠線を消す */
    background: transparent; /* 背景の灰色を消す */
    width: 100px;
    height: 40px;
    color:#fff;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background-color:#1A8754;
}
.btn-back:hover,
.btn-send:hover{
    background-color:#146e44;
}
.radio-container{
    margin-top: -20px;
    margin-bottom: -20px;
}
.radio-list{
    color: #AAAAAA;
    display: block;
    position: relative;
    float: left;
    width: 100%;
    line-height: 2.2rem;
  }
  
.radio-list input[type=radio]{
    position: absolute;
    visibility: hidden;
  }
  
.radio-list label{
    font-weight: 300;
    font-size: 1.1em;
    line-height: 2.2rem;
    cursor: pointer;
  }
  
.radio-list:hover label{
    color: #FFFFFF;
  }
  
.radio-list .check{
    display: block;
    position: absolute;
    border: 3px solid #AAAAAA;
    border-radius: 100%;
    height: 15px;
    width: 15px;
    top: 10px;
    left: -25px;
    z-index: 5;
    transition: border .3s linear;
    -webkit-transition: border .3s linear;
  }
  
.radio-list:hover .check {
    border: 8px solid #FFFFFF;
  }

  input[type=radio]:checked ~ .check {
    border: 8px solid #ff8400;
  }
  

  input[type=radio]:checked ~ label{
    color: #ff8400;
  }
  

@media screen and (min-width:480px) {
    .tel{
        display: none;
    }
    .radio-inner{
        display: flex;
        flex-wrap: wrap;
    }
    .radio-container{
        margin: 5px 0;
    }
}