@charset "utf-8";

.section__title {
    margin-top: 120px;
}

.section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 51%;
  height: 35px;
  background: rgba(95, 120, 72, 0.4);
  z-index: 0;
}

.reservations__txt{
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 32px;
    text-align: center;
}

.section-reservations-selection{
    padding: 32px 4.2% ;
}

.reservation-selection-container{
    position: relative;
    cursor: pointer;

}
.section-reservation-selection .reservation-selection-container:first-of-type .sp-img{
    margin-top: 0;
}

.pc-img{
    display: none;
}

.reservation-select
.reservation_img{
    width: 100%;
    height: auto;
}
.sp-img{
    display:block;
    width:100%;
   object-fit: cover;
   margin-top: 24px;
   opacity: 0.3;
   transition: 0.5s ease-in-out;
}

.sp-img:hover{
    opacity: 0.7;
}

.img-text{
    position: absolute;
    font-size: 3rem ;
    font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  text-align: center;
  color: var(--primary-darkBrown);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  cursor: pointer;
}

.japanese__title{
    font-size: 2.2rem;
}

iframe, .reservation__details  {
    display: none;
}

.reservations__btn{
    display: none;
}
/* End of SP site */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (min-width:1024px){
.sp-img{
    display: none;
}

.pc-img {
    display: block;
    margin-top: 32px;
}

 

.img-text{
   font-size: clamp(2rem, 2.5vw, 4.8rem);
   line-height: calc(100% +.1rem);
    
}
.japanese__title{
   font-size: clamp(1rem, 2vw, 3rem);
   line-height: calc(100% +.1rem);

}
.section__title{
    z-index: 1;
}
.section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60px;
  width: 51%;
  height: 50px;
  background: rgba(95, 120, 72, 0.4);
  z-index: 0;
}
.section-reservation-selection .reservation-selection-container:first-of-type .pc-img{
    margin-top: 0;
}
.reservations__txt{
    font-size: 1.8rem;
    padding: 0;
    text-align: center;
}
.img-text{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
iframe {
display: block;
padding: 0;
    }

.section-calendar{
    padding: 58px 0 0;
    }

.reservation__details{
    display: block;
}
.reservations-flex{
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
}

.pc-img{
    display:block;
    width:100%;
   object-fit: cover;
   margin-top: 24px;
   opacity: 0.3;
   transition: 0.5s ease-in-out;
  
}
.pc-img:hover{
    opacity: 0.7;
}


.entry-selection{
    margin-top: 16px;
}

.reservation__details{
    margin: 16px 0 64px 0;
}
.checkin,
.checkout {
    font-size: 1.5rem;
    line-height: 1;
}

.date-box{
    content:"";
    display: block;
    width: 100px;
    height: 20px;
    border: 1px solid black;
      margin-left: 10px;
}


.date-info{
    display: flex;
    align-items: center;
}
.checkout {
    margin-top: 12px;
}
.selection-list{
    display: flex;
    margin-top: 10px;
}

.form__category{
    font-size: 1.6rem;
   
}
.form__category span {
    font-size: 1.2rem;
    background-color: lightpink;
    padding: 2px;
    border-radius: 4px;
    margin-left: 6px;
}
.form__category--date{
    margin-top: 32px;
}
.selection__subcategory{
    display: flex;
}
.selection-list{
  text-align: center;
}
.form__topic{
    font-size: 1.5rem;
}
.form__topic{
    line-height: 1.5;
}
    .form__subcategory{
        font-size: 1.5rem;
        line-height: 1.5;
        margin-left: 10px;
    }
.number__select {
    margin-left: 8px;
    font-size: 1.2rem;
    border: 1px solid black;
    padding: 4px;
    border-radius: 4px;
}

.pet-information{
    align-items: center;
}

.radio-btn {
    margin-left: 8px;
    font-size: 1.4rem;

}
.enterBtn {
    display: flex;        /* button wraps content, not full width */
    cursor: pointer;
    
    margin-top: 16px;       /* auto left/right for centering in parent */
}
.enterBtn button{
    font-size: 1.5rem;
    padding: 4px 24px;
   background-color: var(--primary-brown);
       color: var(--primary-white);
       transition: 0.5s ease-in-out;
}

.enterBtn button:hover{
    opacity: 0.5;
}

label{
    font-size:1.4rem;
}

label:last-of-type{
    margin-left: 8px;
}
label:first-of-type{
    margin-left: 8px;
}

input[type="radio"]{
    width: 16px;
    height: 16px;
    outline: solid 1px black;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: -2px;

}

input[type="radio"]:checked{
    position: relative;
}
input[type="radio"]:checked::after{
    display: block;
    content:"";
    width: 12px;
    height: 12px;
    background-color: rgba(95, 120, 72, 0.4);
    border-radius: 50%;
    position: absolute;
    top: 50%;;
    left: 50%;
    transform: translate(-50%,-50%);
}



}