/* style.css */

/* 非表示タイトルを視覚的に隠す */
/* 視覚的にのみ隠す（SEO・アクセシビリティ対応） */
.hidden-ttl {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0); /* 旧ブラウザ（IEなど）対応 */
  clip-path: inset(50%); /* モダンブラウザ対応 */
  white-space: nowrap;
  border-width: 0; /* 確実に枠線を消す */
  pointer-events: none; /* マウスでクリックできないようにする */
}

/* --- 基本スタイル --- */
body {
  margin: 0;
  padding: 0;
  padding-top: 60px; /* ナビの高さ分 */
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Yu Mincho", "游明朝体", "Hiragino Mincho Pro W6", "ヒラギノ明朝 Pro W6", "MS PMincho", serif;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* --- メインビジュアル --- */
.main-visual {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 34px;
  overflow: visible;
  line-height: 0;
}

.main-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- メインコンテンツ --- */
#main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#main-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  #main-content {
    padding: 0 16px;
  }
}

/* --- メインメニューボタン（例: 予約ボタンなど） --- */
.btn-reserve a {
  background-color: #ea6800;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 2px;
  font-weight: 700;
}

.btn-reserve a:hover {
  background-color: #cf5a00;
  text-decoration: none;
}

/* --- 電話番号タップ表示 --- */

/* PC表示の設定 */
.tel-link {
  color: inherit;          /* 文字色を周りに合わせる */
  text-decoration: none;   /* 下線を消す */
  cursor: default;         /* マウスを乗せても指マークにしない */
  pointer-events: none;    /* クリックを無効化する（これが重要！） */
}

/* スマホ表示（768px以下など）の設定 */
@media screen and (max-width: 768px) {
  .tel-link {
    pointer-events: auto;  /* タップを有効にする */
    cursor: pointer;       /* （必要に応じて）指マークにする */
    
    /* ここで「スマホの時だけ」色を変えたり太字にしたりする */
    color: #3b22da;        /* カラー変更 */
    font-weight: bold;
    
    /* border-bottom で線を引く（一本の綺麗な線になります） */
    border-bottom: 1px solid #3b22da; 
    
    /* 線と文字の間の距離を微調整（お好みで 1px〜3px） */
    display: inline-block; /* borderの距離を制御しやすくするため */
    line-height: 1.2;
    padding-bottom: 2px;
  }
}