.content img {
    width: 100%;
    height: auto;
    display: block;
}
/* --- PC のとき（幅 1024px 以上）画像を小さめに --- */
@media (min-width: 1024px) {
    .content img {
        max-width: 60%; /* ← お好みで調整：50%〜70%くらい */
        margin: 0 auto; /* センター寄せ */
    }
}
.hero-background {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.kv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 768px) {
    .hero-background {
        min-height: 100svh;
    }
    
    .kv-img {
        object-position: center center;
    }
}
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.hero-overlay > * {
    position: relative;
    z-index: 2;
}
.hero-overlay h1,
.hero-overlay p,
.hero-overlay .text-content {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #ffffff;
}
/* ------------ */
/* サイトのタイトル */
.shop-title {
    text-align: center;
    line-height: 1.4;
    padding: 20px;
}
/* 常に改行 */
.shop-title .line1,
.shop-title .line2 {
    display: block;
}
/* header */
.sitename {
    /* text-align: center; */
    line-height: 1.4;
    /* padding: 20px; */
}
/* 常に改行 */
.sitename .line1,
.sitename .line2 {
    display: inline-block;
}
/* スマホ表示（より詳細） */
@media screen and (max-width: 480px) {
    /* タイトル */
    .shop-title {
        font-size: 6vw; /* 画面幅に応じて調整 */
        padding: 15px 10px;
    }
    .shop-title .line1 {
        font-size: 0.6em;
    }
    .shop-title .line2 {
        font-size: 0.8em;
        margin-top: 0.3em;
    }
    /* header */
    .sitename {
        font-size: 6vw; /* 画面幅に応じて調整 */
        /* padding: 15px 10px; */
    }
    .sitename .line1 {
        font-size: 0.6em;
    }
    .sitename .line2 {
        font-size: 0.8em;
        margin-top: 0.3em;
    }
    .sitename .line1,
    .sitename .line2 {
      display: block;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .shop-title {
        font-size: 24px;
    }
    .shop-title .line1,
    .shop-title .line2 {
        display: block;
    }
    .sitename {
        font-size: 24px;
    }
    .sitename .line1,
    .sitename .line2 {
        display: block;
    }
}



/* ヒーローセクション全体 */
.hotel-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* 背景画像コンテナ */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* 背景画像 */
.kv-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 画像全体を表示 */
  object-position: center;
  background-color: #1a1a4d; /* 余白部分の背景色 */
}

/* オーバーレイ（必要に応じて透明度調整） */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* 暗めのオーバーレイ */
  z-index: 1;
}

/* コンテンツを前面に */
.hero-content {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-content .container {
  position: relative;
  z-index: 2;
}

/* タイトルスタイル */
.shop-title {
  color: white;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.shop-title .line1,
.shop-title .line2 {
  display: block;
}

.hero-subtitle {
  color: white;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* 特徴アイテム */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.feature-item i {
  font-size: 1.5rem;
}

/* ボタンエリア */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
  .kv-img {
    object-fit: contain; /* 画像全体を表示 */
  }
  
  .shop-title {
    font-size: 1.5rem;
  }
  
  .shop-title .line1 {
    font-size: 1.3rem;
  }
  
  .shop-title .line2 {
    font-size: 1.5rem;
    margin-top: 0.3rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-actions {
    flex-direction: column;
    padding: 0 1rem;
  }
}

/* タブレット */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .shop-title {
    font-size: 2.5rem;
  }
  
  .kv-img {
    object-fit: contain;
  }
}

/* PC表示 */
@media screen and (min-width: 1025px) {
  .shop-title {
    font-size: 3rem;
  }
  
  .shop-title .line1 {
    font-size: 3.5rem;
  }
  
  .shop-title .line2 {
    font-size: 4rem;
    margin-top: 0.5rem;
  }
  
  .kv-img {
    object-fit: contain; /* 画像全体を表示 */
  }
}

/* スマホ表示では通常通り改行 */
@media (max-width: 768px) {
    .pc-only {
        display: inline;
    }
}

/* PC表示では改行を無効化 */
@media (min-width: 769px) {
    .pc-only {
        display: none;
    }
}