/*=======================================================
WEB予約
=======================================================*/

/* +++++++++++++++++++++++++++++++++++++++++ 共通設定 */

body {
    background-image: url(../images/common/bg_noise_W.png) !important;
    background-color: transparent;
}


#Reservation {
    padding-top: 100px;
    /*ヘッダー高さ分*/
    box-sizing: border-box;
    overflow: hidden;
    /*コンテンツのはみ出を非表示*/
}

@media (max-width:1199px) {
    #Reservation {
        padding-top: 115px !important;
    }
}

/*****/

#Reservation .content-wrap{
padding: 100px 20px;
}

#Reservation .inner-content{
text-align: center;
}

#Reservation h1{
font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;       
  line-height: 5rem;    
}

#Reservation p.read{
font-size: 1.1rem;
letter-spacing: 0.1rem
}

#Reservation .reservation-list {
  display: grid;
  grid-template-columns: repeat(2, 390px);
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 48px auto 128px 0;
  max-width: 1000px;
}

#Reservation .reservation-list li {
  width: 100%;
}

#Reservation .reservation-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  max-width: 390px;
  background: #8e8884; /* 画像に近いグレー */
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 12px;
  transition: opacity .3s ease;
}

#Reservation .reservation-list li a:hover {
  opacity: 0.8;
}

/* スマホ */
@media (max-width: 768px) {

#Reservation .content-wrap{
padding: 10px 20px 130px 20px;
}

#Reservation h1{
font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;       
  line-height: 5rem;
  margin: 0 0 10px 0;
}


  #Reservation .reservation-list {
    grid-template-columns: 1fr;
    gap: 12px;           
    padding: 0 20px;       
    max-width: none;
    margin: 40px auto 80px 0;
  }

  #Reservation .reservation-list li{
    margin: auto auto 0px auto;
  }

  #Reservation .reservation-list li a {
    width: 100%;
    max-width: none;     
    height: 80px;         
    border-radius: 8px;   
    font-size: 16px;
  }
}

/*ボタン*/

#Reservation .btn-style1{
  text-align: center;
}

#Reservation .btn-style1 a{
  width: 100%;
  max-width: 224px !important;
  line-height: normal !important;
  /*font*/
  font-weight: 500;
  background-image: none;
  padding-right: 30px;
  padding-left: 30px;
}

#Reservation .btn-style1{
  z-index: 100;
  position: relative;
}



