body{
    font-family: 'M PLUS Rounded 1c',sans-serif;
    background-color: #faf7f2;
    color: #333;
    margin: 0;
    padding: 0;
}

header,footer{
    background-color: #ffd986;
    padding: 20px 10px;
    text-align: center;
}

h2{font-size: 16px;
    margin: 10px 0;
    text-align: center;
}

h1{font-size: 38px;
    margin: 10px 0;
    text-align: center;
}

.site-logo {
    width: 150px; 
    height: auto;
    display: block;
    margin: 0 auto;
}

nav ul{
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
    padding:0;
    margin: 50px 0 0 0;
}

nav ul li a{
    text-decoration: none;
    color: #444;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover{
    color: #ff8800
}

section{
    margin: 100px 40px;
    text-align: center;
}

#about{
    position: relative;
    background-image: url(menu_5.jpg);
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;   
}

#about::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0,0.6);
    z-index: 1;
}

#about .overlay{
    position: relative;
    z-index: 2;
    max-width: 600px;
}


#menu .swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#menu .swiper-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#menu .swiper-slide img {
  width: 90%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

#menu .menu-caption {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 0.5em;
  text-align: center;
  max-width: 90%;
}

.swiper-wrapper {
  display: flex; /* 念のため指定 */
}

#menu .swiper-pagination {
  text-align: center;
  margin-top: 15px;
  position: relative;
  bottom: auto;
}

#menu .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
}

#menu .swiper-pagination-bullet-active {
  background: #ff8800;
}

#menu .caption-container {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 50px;
  font-size: 14px;
}

#menu strong {
    font-size: 18px;
    color: #444;
}



#interior {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
}

#interior h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}

#interior .interior-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

#interior .interior-images {
  flex: 0 0 40%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

#interior .interior-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

#interior .interior-text {
  flex: 1;
  font-size: 15px;
  line-height: 2.5;
}

#voices {
  margin: 100px 40px;
  text-align: center;
}

.voice-container {
  display: flex;
  flex-wrap: space-between;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.voice-card {
  flex: 1;
  max-width: 300px;
  min-width: 250px;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  position: relative;
}

.voice-card::before {
  content: "“";
  font-size: 50px;
  color: #ffcc66;
  position: absolute;
  top: -10px;
  left: -10px;
}

.voice-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.voice-text p {
  margin: 5px 0;
  font-size: 14px;
}



#access {text-align: center; }
#access > div {
    display: inline-block; 
    text-align: left;
}

.map-container {
  width: 80%;       /* 親コンテナに対して80%の幅 */
  max-width: 800px; /* 最大幅を設定 */
  margin: 0 auto;   /* 中央寄せ */
}

.map-container iframe {
  width: 100%;      /* コンテナいっぱいに広げる */
  height: 400px;    /* 高さを固定 */
  border: 0;
}

#contact {
  text-align: center;
  padding: 60px 20px;
  background: #fff8f0;
}

#contact h2 {
  font-size: 28px;
  color: #4a3f35;
  margin-bottom: 15px;
}

.contact-intro {
  font-size: 16px;
  color: #6b5e54;
  margin-bottom: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
}

.phone-icon i {
  font-size: 40px;
  color: #ff8800;
  margin-right: 30px;
}

.contact-info {
  text-align: left;
}

.phone-text {
  font-size: 16px;
  color: #6b5e54;
  margin-bottom: 5px;
  text-align: center;
}

.phone-number {
  display: block;
  font-size: 28px;
  font-weight: bold;
  color: #ff8800;
  text-decoration: none;
  margin-bottom: 10px;
  text-align: center;
}

.phone-number:hover {
  color: #e07000;
}

.party-text {
  font-size: 14px;
  color: #6b5e54;
  line-height: 1.5;
  text-align: center;
}


footer{
    font-size: 14px;
    color: #444;
}

/* ===============================
   レスポンシブ用CSS
   768px以下：タブレットサイズ対応
   480px以下：スマホサイズ対応
   =============================== */

/* -------------------------------
   768px以下
--------------------------------*/
@media (max-width: 768px) {
  /* 見出し */
  h1 {
    font-size: 28px;
    line-height: 1.4;
    text-align: center;
  }
  h2 {
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
  }

  /* 段落・キャプション */
  p, .menu-caption, #about p, #interior .interior-text {
    font-size: 15px;
    line-height: 1.6;
  }

  /* 強調文字（メニューキャプション内） */
  .menu-caption strong {
    font-size: 15px;
  }

  /* ナビゲーション */
  nav ul {
    flex-direction: column;
    gap: 15px;
    margin: 20px 0 0 0;
  }

  /* セクション余白 */
  section {
    margin: 40px 15px;
  }

  /* 店内画像のレイアウト */
  .interior-container {
    flex-direction: column;
  }
  .interior-images {
    margin-bottom: 20px;
  }

  /* お客様の声 */
  .voice-container {
    flex-direction: column;
    align-items: center;
  }

  /* お問い合わせカード */
  .contact-card {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  .phone-number {
    font-size: 20px;
  }

  /* Google Mapの幅調整 */
  .map-container iframe {
    width: 100%;
    height: auto;
  }

  /* メニュースライダー */
  #menu .swiper-container {
    width: 95%;
    margin: 0 auto;
  }
}

/* -------------------------------
   480px以下
--------------------------------*/
/* 共通スマホ用設定 (max-width: 480px) */
@media screen and (max-width: 480px) {
  section {
    margin: 30px 15px;
  }

  h1 {
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
  }

  h2 {
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
  }

  .site-logo {
    width: 100px;  /* 元は150pxだったので小さく */
    height: auto;  /* 高さは自動でアスペクト比を維持 */
  }

    nav ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 横4列 */
    gap: 5px;           /* 列の間隔 */
    padding: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center;
  }

  nav ul li {
    flex: none; /* フレックスの影響をリセット */
  }

  nav ul li a {
    display: block;
    font-size: 12px;   /* 文字サイズ調整 */
    padding: 8px 5px;
    text-decoration: none;
    color: #333;
  }

  nav ul li a:hover {
    color: #ff8800;
  }

  nav ul li a i {
    margin-left: 3px;
    font-size: 14px;
  }

  p,
  #about p,
  #menu .menu-caption,
  #interior .interior-text,
  .contact-intro,
  .party-text  {
    font-size: 11.5px;  /* 10px→13pxで可読性アップ */
    line-height: 1.5;
    word-break: break-word;   /* 単語途中での改行防止しつつ折り返し */
  }

  #menu .menu-caption strong {
    font-size: 11px;
  }

  #menu .swiper-slide img {
    width: 60% !important;   /* 画面幅の90% */
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 auto;
    display: block;
  }

 #interior .interior-images {
    display: grid !important; 
    grid-template-columns: 1fr 1fr; /* 横2列 */
    gap: 10px; 
    justify-items: center; /* 各画像を中央寄せ */
    flex: none; /* flex指定を無効化 */
    width: 100%;
  }

  #interior .interior-images img {
    width: 100%;
    max-width: 160px;   /* スマホでの画像サイズ */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
  }

  .map-container iframe {
    width: 100%;
    height: 300px;
  }
}
