@charset "UTF-8";

header {
  background-color: #fff;
}

body {
  background-color: #E5E4E2;
}

/* ナビゲーションのCSS */
.navbar {
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  padding: 20px 40px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 50px; /* 通常リンクとボタンの間隔 */
}

/* 通常リンク */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 通常リンクの見た目 */
.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
}

/* 座席予約ボタン */
.reserve-btn {
  background-color: #000;
  color: #fff;
  padding: 5px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.reserve-btn:hover {
  background-color: #222;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}



/* TOPページのCSS */
.image-container {
  position: relative;
  width: 100%;
  height: auto;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); 
  color: #fff;
  padding: 40px 20px;
  text-align: left;
}

.overlay .sub-title {
  font-size: 18px;
  margin: 0;
  letter-spacing: 1px;
}

.overlay .main-title {
  font-size: 48px;
  font-weight: bold;
  margin: 5px 0 0;
  font-family: 'Merriweather Sans', sans-serif;
}


/* h2のcss */
#FEATURE h2 {
  font-size: xx-large;
  margin-top: 70px;
  margin-left: 200px;
  border-bottom: 3px dotted #000; 
  padding-bottom: 8px; 
  display: inline-block; 
  margin-bottom: 30px; 
}
#PRICE h2 {
  font-size: xx-large;
  margin-top: 90px;
  margin-left: 200px;
  border-bottom: 3px dotted #000; 
  padding-bottom: 8px; 
  display: inline-block; 
  margin-bottom: 30px; 
}
#INFORMATION h2 {
  font-size: xx-large;
  margin-top: 60px;
  margin-left: 200px;
  border-bottom: 3px dotted #000; 
  padding-bottom: 8px; 
  display: inline-block; 
  margin-bottom: 30px; 
}

/* FeatureのCSS */
.service {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px; 
}

.service-item {
  display: flex;
  justify-content: center;
}

.service-inner {
  display: flex;
  flex-direction: row; 
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
}

/* 画像とテキストを横並び */
.service-inner img {
  width: 150px; 
  height: auto;
  object-fit: contain;
  display: block;
}

/* テキスト */
.text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  padding: 20px;
  flex: 1;
  box-sizing: border-box;
}

/* 奇数 → 画像左・テキスト右 */
.service-item:nth-child(odd) .service-inner {
  flex-direction: row;
}

/* 偶数 → 画像右・テキスト左 */
.service-item:nth-child(even) .service-inner {
  flex-direction: row-reverse;
}


/* PriceのCSS */
.price-item {
  width: 60%;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.price-inner {
  flex: 1; 
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column; 
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.price-inner p {
  margin-top: 20px;
  margin-bottom: 300px;
  text-align: left;
}

/* 会員登録ボタン */
.registration-btn a {
  text-decoration: none;
}

.registration-btn {
  display: block;        
  max-width: 600px;             
  text-align: center;           
  margin: 30px auto;              
  background-color: #000;
  color: #fff;
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;              
}

.registration-btn:hover {
  background-color: #222;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}


/* informationのcss */
.information-list {
  text-align: left;
  padding-left: 300px;
}

.information-list ul {
  display: inline-block;
  padding-left: 0;
  list-style-position: inside;
  list-style: none;
}

.information-list li {
  font-size: 20px;
  text-decoration: none;
  margin-bottom: 8px;
}

.information-list a {
  text-decoration: none;
}

.cut-line {
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    black 0,
    black 4px,
    transparent 4px,
    transparent 8px
  );
  margin: 50px auto;
  max-width: 80%;
}

.access-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 10px;
}

.access-img img {
  max-width: 100%;
  width: 600px;
  height: auto;
  object-fit: contain;
  margin-right: 50px;
  margin-bottom: 50px;
}

.access-description {
  max-width: 500px;
}

.access-description h5 {
  font-size: 18px;
  margin-bottom: 0;
}

.access-description p {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 4px;
}

/* footerのcss */
footer {
  background-color: #fff;
}

.footer h3 {
  padding-top: 20px;
  padding-left: 50px;
  font-size: 30px;
  font-family: 'Merriweather Sans', sans-serif;
}

.footer ul {
  list-style: none;
  padding-left: 50px;
  margin-top: 10px;
  display: flex;
  justify-content: left;
  gap: 20px;
}

.footer ul li a {
  text-decoration: none;   
  font-size: 14px;
}

.footer small {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding-bottom: 30px;
  font-size: 12px;
}