/* common.css*/
/* 共通スタイル */

/* セクション共通 */
section {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #E17A42, #4A87BF);
}

.section-title p {
  font-size: 18px;
  color: #666;
}

/* ページトップへ戻るボタン */
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 50px;
  height: 50px;
  background-color: rgba(225, 122, 66, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}

.pagetop.show {
  opacity: 1;
  visibility: visible;
}

.pagetop:hover {
  background-color: #E17A42;
  transform: translateY(-5px);
}

/* アニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ご予約＆お問い合わせ セクションの定義あたりに追記 */
.reservation-button.booking-button .button-icon {
  width: 16px;      /* ボタン内アイコンのサイズ */
  height: auto;
  vertical-align: middle;
  margin-right: 4px; /* テキストとの間隔 */
  display: inline-block;
}

/* モバイルだけ小さくしたい場合 */
@media screen and (max-width: 768px) {
  .reservation-button.booking-button .button-icon {
    width: 12px;
    margin-right: 4px;
  }
}