/* ==========================================================================
   共通
   ========================================================================== */
@charset "UTF-8";

html {
  font-size: 100;
}
body {
  background-color: #faf5e1d2;
  color: #334155;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
}

a {
  color: #334155;
  text-decoration: none;
}
img {
  max-width: 100%;
}

/* ★トップページ */

.align-center {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.main-navi {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.1rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.5rem 0;

  width: 100%;
}
.main-visual {
  background-image: url(image/andrassziffer-sea-5495381_1920.jpg);
  position: relative;
  width: 100%;
  height: 60vh; /* 画面の高さの70%を使用（参考サイトのようにダイナミックに） */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-target {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #1e293b;
  text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.8); /* 文字の視認性を上げる影 */
}

.main-target h2 {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.main-target p {
  font-size: 1rem;
  letter-spacing: 0.12em;
}

/* ==========================================================================
   About 部分
   ========================================================================== */
.about-section {
  padding: 80px 20px; /* 余白を少し広めにとることで、リゾートの開放感を演出 */
  text-align: center;
}
h3 {
  font-size: 2rem;
  padding-bottom: 1rem;
}
.about-text {
  line-height: 2; /* 行間を広げてゆったりとした読ませ方に */
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  font-size: 13.5px;
}
.botan-list {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr;
  gap: 10px;
  height: auto;
}

.botan-item {
  background-color: #334155;
  color: #fcfbf9;
  text-decoration: none;
  margin: 20px;
  padding: 10px;
  border-radius: 16px;
}
.botan-img {
  width: 70px; /* 💡 画像の横幅（大きすぎる場合はここを調整してください） */
  height: auto; /* 縦横比を崩さないおまじない */
  margin-top: 15px; /* 文字と画像の間のすき間 */
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.botan-item:hover {
  background-color: #dca5e7b7;
  color: #fff;
}

/* ==========================================================================
    フッター
   ========================================================================== */
.cover,
.page-footer {
  width: 100%;
  box-sizing: border-box;
}

.page-footer {
  background-image: url(image/jessicakwok-coffee-5037804_1920\ \(1\)\ \(1\).jpg);
  background-size: cover; /* 💡背景画像を隙間なく画面いっぱいに広げる */
  background-position: center; /* 💡画像の中央を基準にする */
  width: 100%; /* 💡横幅を画面100%に */
  padding: 2rem 1rem; /* 上下左右に適切な余白を作る */
  box-sizing: border-box; /* 余白を含めて100%に収めるおまじない */
}

.info-title {
  padding-bottom: 1rem;
  text-align: center;
}

/* インフォメーションのテーブル（中央寄せとシンプルな線に） */
.info-table {
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 15px;
  border-bottom: 1px solid #e2e8f0; /* 薄いグレーの境界線 */
  text-align: left;
}

.info-table th {
  font-weight: bold;
  width: 25%;
}
.info-table td {
  font-size: small;
}

.copyright {
  background-color: #334155;
  text-align: center;
  padding:
    1.5rem 0 1.5rem,
    0;
  margin-top: 1.5rem;
  color: #fcfbf9;
  font-size: medium;
  width: 100%;
}

/* ★Menuページ */
/* ==========================================================================
   メニュー上の案内文（デザイン）
   ========================================================================== */
.menu-lead {
  text-align: center;
  padding: 2.5rem 1rem 0 1rem; /* 上下に程よい余白を作る */
  max-width: 600px; /* PC版でも広がりすぎないように制限 */
  margin: 0 auto; /* 中央寄せ */
}

.lead-text {
  font-size: 0.7rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.Original-menu {
  display: grid;
  gap: 2.5rem 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
  height: auto;
}

.item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.grid-gallery {
  display: block;
  width: 100%;
}
.item p {
  font-size: 1rem;
  margin-top: 0.8rem;
  margin-bottom: 0;
}

/* ==========================================================================
   ★Placeページ（スマホ・PC共通デザイン）
   ========================================================================== */

.section-title-box,
.sns-section {
  text-align: center; /* 文字を真ん中寄せに */
  padding: 2rem 1rem 0 1rem; /* 上にたっぷり余白を作り、下は少し詰める */
}

.section-title-en {
  font-size: 2rem;
  color: #334155;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

.section-title-ja {
  font-size: 0.65rem;
  color: #64748b;
  letter-spacing: 0.1em;
}
.place-container {
  padding: 2rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.place-section {
  display: flex;
  flex-direction: column; /* スマホでは縦に並べる */
  gap: 1.5rem;
  width: 100%;
}

.place-img-box {
  width: 100%;
}

.place-img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* ほんのり影をつけて立体的に */
}

.place-text-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(231, 156, 212, 0.301);
  padding: 2rem;
}

.place-text-box h3 {
  font-size: 1.6rem;
  color: #334155;
  margin-bottom: 1rem;
}

.place-text-box p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #475569;
}
.reservation-area {
  text-align: center;
  padding: 2rem 0;
  margin-top: 1rem;
}

.reservation-text {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.btn-reservation {
  display: inline-block;
  background-color: #475569;
  color: #ffffff;
  font-weight: bold;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(51, 65, 85, 0.2);
  transition: all 0.3s ease;
}
/* Googleマップ全体の配置調整 */
.access-map {
  width: 100%;
  max-width: 800px; /* 店内写真などの幅に合わせると綺麗です */
  margin: 0 auto 40px; /* 中央寄せにし、下のInformationとの余白を確保 */
  padding: 0 20px; /* スマホ画面の時に左右に少し余白を作る */
  box-sizing: border-box;
}

/* iframe自体のサイズとデザイン調整 */
.access-map iframe {
  width: 100%;
  height: 400px; /* マップの高さ */
  border: none;
  border-radius: 8px; /* 角を丸めてサイトの優しい雰囲気に合わせる */
}

/* ★ニュースページ */
.heading {
  font-size: 2rem;
  text-align: center;
}
.post {
  margin: 50px; /* ★ここの数値を大きくすることで、下のCategoryとの間が空きます */
}
.post header {
  margin-bottom: 30px; /* 動画との間に心地よい隙間を作る */
  text-align: center; /* タイトルまわりを中央寄せにして雑誌風に */
}
.post-title {
  font-size: 18px; /* スマホでのタイトルの大きさ */
  line-height: 1.4;
  color: #2c3e50;
  padding: 15px;
  font-weight: 600;
  background-color: rgba(253, 202, 215, 0.774);
}
.side-menu {
  list-style: none;
  text-align: center;
  margin-bottom: 2.5rem;
}
.side-menu li a {
  display: block;
  background-color: #4a5568; /* 優しい薄グレーの背景色 */
  color: #fca4ab; /* 文字の色 */
  padding: 12px 20px; /* ボタンの内側の余白 */
  text-decoration: none; /* 下線を消す */
  text-align: center; /* 文字を中央寄せ */
  font-size: 14px;
}
.side-menu a:hover {
  color: #475569;
}
.post-video {
  width: 100%;
}
.post p {
  font-size: 16px;
  padding: 0 2%;
}

/* 動画 */
.post-video {
  position: relative;
  width: 90%; /* スマホ時に画面端に張り付かないよう、左右に少し余白を作る */
  max-width: 700px; /* PC版で見たときに大きすぎないちょうどいいサイズ */
  margin: 0 auto 30px; /* 左右中央寄せにし、下に30pxの余白 */
  padding-bottom: 50.625%; /* 16:9比率を保つ設定（スマホでも崩れません） */
  height: 0;
  overflow: hidden;
}
.post-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px; /* カフェの優しい雰囲気に合わせて角を少し丸く */
}

/* ★コンタクトページ */

/* フォーム全体の枠組み */
.form {
  max-width: 500px; /* 横幅が広がりすぎないように制限 */
  margin: 40px auto; /* 画面中央に配置 */
  padding: 0 20px; /* 左右の余白 */
  font-family: sans-serif;
}

/* 各入力項目の上下の余白 */
.form-item {
  margin-bottom: 24px;
  text-align: left;
}

/* テキスト入力欄・メール・電話・テキストエリアの共通スタイル */
.form-item input[type="text"],
.form-item input[type="email"],
.form-item input[type="tel"],
.form-item textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px; /* 緩やかな角丸 */
  box-sizing: border-box; /* 枠線を含んだサイズ計算 */
  font-size: 16px;
  background-color: #fafafa;
  transition: border-color 0.3s;
}

/* 入力欄にフォーカスが当たったときの色 */
.form-item input:focus,
.form-item textarea:focus {
  outline: none;
  border-color: #2b415a; /* Informationの見出しに近いネイビー */
}

/* 備考欄（テキストエリア）の高さ */
.form-item textarea {
  height: 120px;
  resize: vertical; /* 縦方向にのみサイズ調整可能に */
}

/* チェックボックス部分の調整 */
.form-label {
  font-size: 20px;
  color: #555;
  margin-bottom: 8px;
  font-weight: bold;
}

.checkbox-group {
  display: flex;
  flex-direction: column; /* スマホで見やすいように縦並び（横並びにしたい場合は削除） */
  gap: 10px;
  padding-left: 5px;
}

.checkbox-group label {
  font-size: 15px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 送信ボタンのスタイル */
.form-btn {
  text-align: center;
  margin-top: 30px;
}

.form-btn input[type="submit"] {
  background-color: #2b415a; /* シックなネイビー */
  color: #fff;
  border: none;
  padding: 12px 60px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.1s;
}

/* ボタンにホバーしたときのエフェクト */
.form-btn input[type="submit"]:hover {
  background-color: #3d5a7d;
}
h2 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #2b415a; /* フォームのボタンと同じネイビー */
  font-size: 32px;
}

/* 2. アイコン画像を横に並べて、画面の中央に寄せる */
.sns-links {
  display: flex;
  justify-content: center; /* 横方向の中央寄せ */
  align-items: center; /* 縦方向の真ん中合わせ */
  gap: 20px; /* アイコン同士の間隔（20px） */
  margin-bottom: 50px; /* 下のInformationとの間の隙間 */
  margin-top: 25px;
}

/* 3. アイコン画像の大きさをちょうどよく整える */
.sns-item img {
  width: 70px; /* アイコンの横幅（お好みで調整してください） */
  height: 70px; /* アイコンの縦幅 */
  object-fit: contain; /* 画像が歪まないようにきれいに収める */
}
.sns-item img.X {
  width: 60px; /* アイコンの横幅（お好みで調整してください） */
  height: 60px; /* アイコンの縦幅 */
  object-fit: contain; /* 画像が歪まないようにきれいに収める */
}

/* ==========================================================================
  デスクトップ版
   ========================================================================== */
@media (min-width: 800px) {
  /* ★トップページ */

  .main-navi {
    justify-content: center;
    margin: 1.5rem auto 0 auto;
    font-size: 2rem;
  }
  .main-target h2 {
    font-size: 3.5rem;
  }
  .botan-list {
    grid-template-columns: repeat(3, 200px);
    height: 20vh;
  }
  .about-text {
    font-size: 16px;
  }

  /* ★Menuページ */
  .lead-text {
    font-size: 0.95rem;
  }
  .Original-menu {
    grid-template-columns: repeat(3, 1fr);
    padding: 1.5rem;
  }
  /* 
  ★Placeページ  */
  .reservation-text {
    font-size: large;
  }
  .section-title-ja {
    font-size: 1rem;
  }
  /* ★newsページ */
  .post-video {
    width: 100%; /* 横幅を戻す */
    max-width: 700px; /* PCでの動画の最大横幅を700pxに制限 */
    padding-bottom: 393px; /* ★横幅700pxに対して16:9になる正確な高さに固定 */
    height: 0;
  }

  .post p {
    font-size: 16px; /* PCでは文字を少しだけ大きく */
    padding: 0 2%; /* PC用の適切な左右余白 */
    text-align: center;
  }
  .post-title {
    font-size: 22px;
  }
  .copyright {
    max-width: 600px; /* PC版で表示させたい理想の横幅（表の幅に合わせると綺麗です） */
    width: 100%;
    margin-left: auto; /* 左右オートマージンで中央寄せ */
    margin-right: auto; /* 左右オートマージンで中央寄せ */
  }
}
