@charset "UTF-8";
@import url("/current/initialize.css");
@import url("/current/general.css");
@import url("/current/parts.css");
@import url("/current/margin.css");

/* box-sizing を全要素に適用 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ==========================================
   ホテル宿泊ページ用スタイルシート
   堂島針灸接骨院
   ========================================== */

/* CSS変数定義 */
:root {
  --hotel-title-font-size: 42px;
  --hotel-subtitle-font-size: 28px;
  --hotel-base-font-size: 17px;
  --hotel-small-text-size: 15px;
  --hotel-hero-en-size: 16px;
  --hotel-hero-title-size: 40px;
  --hotel-hero-text-size: 15px;
}

/* タブレット用変数 */
@media screen and (max-width: 1200px) {
  :root {
    --hotel-title-font-size: 38px;
    --hotel-subtitle-font-size: 26px;
    --hotel-base-font-size: 16px;
    --hotel-hero-title-size: 36px;
  }
}

/* モバイル用変数 */
@media screen and (max-width: 768px) {
  :root {
    --hotel-title-font-size: 32px;
    --hotel-subtitle-font-size: 24px;
    --hotel-base-font-size: 15px;
    --hotel-small-text-size: 14px;
    --hotel-hero-en-size: 14px;
    --hotel-hero-title-size: 28px;
    --hotel-hero-text-size: 14px;
  }
}

/* ==========================================
   共通スタイル
   ========================================== */

body {
  background-color: #FBF8F6;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  background-color: #FFF;
}

/* ==========================================
   ヒーローセクション
   ========================================== */

.hotel-hero-section {
  margin: 0;
}

.hotel-hero-image {
  position: relative;
  min-height: 400px;
  background-image: url('/assets/img/hotel/hotel-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
}

/* デスクトップ（1600px以上）で背景画像を縦幅固定・右寄せ */
@media screen and (min-width: 1600px) {
  .hotel-hero-image {
    background-image: url('/assets/img/hotel/hotel-hero-large.jpg');
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
  }
}

.hotel-hero-content {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px 50px;
  max-width: 650px;
}

.hotel-hero-en {
  font-family: 'Josefin Sans', sans-serif;
  font-size: var(--hotel-hero-en-size);
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hotel-hero-title {
  font-size: var(--hotel-hero-title-size);
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.hotel-hero-text {
  font-size: var(--hotel-small-text-size);
  line-height: 1.8;
  color: #333;
  margin: 0;
  font-weight: 400;
}

/* ==========================================
   パンくずリンク
   ========================================== */

.hotel-breadcrumbs-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
}

.hotel-breadcrumbs-wrapper #breadcrumbs {
  text-align: right;
  font-size: 13px;
  color: #999;
}

.hotel-breadcrumbs-wrapper #breadcrumbs a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}

.hotel-breadcrumbs-wrapper #breadcrumbs a:hover {
  color: #333;
}

.hotel-breadcrumbs-wrapper #breadcrumbs a::after {
  content: 'ー';
  margin: 0 8px;
  color: #ccc;
}

.hotel-breadcrumbs-wrapper #breadcrumbs .current {
  color: #333;
}

/* ==========================================
   コンテンツラッパー
   ========================================== */

.hotel-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.hotel-content-wrapper .wrapper {
  padding: 60px 40px;
}

/* ==========================================
   セクションタイトル
   ========================================== */

.hotel-section-title {
  font-size: var(--hotel-title-font-size);
  font-weight: 700;
  color: #333;
  margin: 0 0 40px 0;
  text-align: left;
  padding: 20px 0;
  border-bottom: 2px dotted #e0e0e0;
  display: flex;
  align-items: flex-start;
}

.hotel-section-title::before {
  content: 'ー';
  font-size: 32px;
  font-weight: 600;
  margin-right: 15px;
  margin-top: 0.65em;
  color: #333;
  flex-shrink: 0;
  line-height: 1;
}

/* ==========================================
   ホテルリストセクション
   ========================================== */

.hotel-list-section {
  padding: 60px 0 40px;
}

.hotel-list-intro {
  margin-bottom: 30px;
}

.hotel-list-intro p {
  font-size: var(--hotel-base-font-size);
  line-height: 2;
  margin: 0 0 20px 0;
  color: #333;
}

.hotel-list-note {
  background-color: #FFF9E6;
  padding: 15px 25px;
  border-radius: 4px;
  margin-top: 20px;
}

.hotel-list-note p {
  font-size: var(--hotel-base-font-size);
  line-height: 1.8;
  margin: 0;
  color: #333;
}

.note-highlight {
  color: #CC4242;
  font-weight: 700;
}

/* ホテルカテゴリタイトル */
.hotel-category-title {
  font-size: var(--hotel-subtitle-font-size);
  font-weight: 700;
  color: #2b9c6f;
  margin: 40px 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #2b9c6f;
  position: relative;
}

.hotel-category-title::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #2b9c6f 0%, transparent 100%);
}

/* ホテルリスト - 移動のヒント */
.hotel-list-hint {
  position: relative;
  background: linear-gradient(135deg, #e8f5f1 0%, #dff0eb 100%);
  border: 2px solid #2b9c6f;
  border-radius: 8px;
  padding: 40px 30px 25px;
  margin-top: 55px;
}

.hint-title {
  position: absolute;
  top: -18px;
  left: 20px;
  font-size: var(--hotel-base-font-size);
  font-weight: 700;
  color: #fff;
  background: #2b9c6f;
  padding: 6px 20px;
  border-radius: 4px;
  margin: 0;
}

.hint-title::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 18h6"/><path d="M10 22h4"/><path d="M15.09 14c.18-.98.65-1.74 1.41-2.5A4.65 4.65 0 0 0 18 8 6 6 0 0 0 6 8c0 1 .23 2.23 1.5 3.5A4.61 4.61 0 0 1 8.91 14"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.hotel-list-hint p {
  font-size: var(--hotel-base-font-size);
  line-height: 1.9;
  margin: 0;
  color: #333;
}

.hotel-list-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.hotel-category-title + .hotel-list-items {
  margin-top: 20px;
}

.hotel-list-item {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hotel-list-item:hover {
  border-color: #2b9c6f;
  box-shadow: 0 4px 15px rgba(43, 156, 111, 0.15);
}

.hotel-list-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hotel-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #f5f5f5;
}

.hotel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hotel-list-link:hover .hotel-thumb img {
  transform: scale(1.05);
}

.hotel-list-info {
  padding: 20px;
}

.hotel-list-name {
  font-size: var(--hotel-base-font-size);
  text-align: center;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.hotel-list-distance {
  font-size: var(--hotel-small-text-size);
  text-align: center;
  color: #CC4242;
  font-weight: 600;
}

.hotel-list-link:hover .hotel-list-name {
  color: #1d7653;
}

/* ==========================================
   ホテル概要セクション
   ========================================== */

.hotel-overview {
  padding: 60px 0;
}

.hotel-intro {
  font-size: var(--hotel-base-font-size);
  line-height: 2;
  margin-bottom: 30px;
}

.hotel-detail {
  margin-top: 50px;
  scroll-margin-top: 100px;
}

.hotel-name-box {
  background: linear-gradient(135deg, #2b9c6f 0%, #1d7653 100%);
  color: #fff;
  font-size: var(--hotel-subtitle-font-size);
  font-weight: 700;
  padding: 20px 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.hotel-info-table {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}

.info-row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  background-color: #2696B1;
  color: #fff;
  font-weight: 700;
  padding: 15px 20px;
  min-width: 200px;
  display: flex;
  align-items: center;
}

.info-content {
  padding: 15px 20px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}

.highlight-distance {
  color: #CC4242;
  font-weight: 700;
}

.btn-map {
  display: inline-block;
  background: linear-gradient(135deg, #2b9c6f 0%, #1d7653 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-map:hover {
  background: linear-gradient(135deg, #1d7653 0%, #156845 100%);
  transform: translateY(-2px);
}

.btn-tel {
  display: inline-block;
  background: linear-gradient(135deg, #d85555 0%, #CC4242 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-tel:hover {
  background: linear-gradient(135deg, #CC4242 0%, #b33838 100%);
  transform: translateY(-2px);
}

.hotel-introduction {
  margin: 40px 0;
  padding: 25px 30px;
  background-color: #f0f8ff;
  border-left: 5px solid #2696B1;
  line-height: 2;
}

.hotel-introduction p {
  font-size: var(--hotel-base-font-size);
  margin: 0;
  color: #333;
}

.hotel-description-box {
  background-color: #FBF8F6;
  border: 3px solid #2b9c6f;
  border-radius: 12px;
  padding: 40px 50px;
  margin-bottom: 40px;
}

.description-title {
  font-size: var(--hotel-subtitle-font-size);
  font-weight: 700;
  color: #333;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 2px dotted #2b9c6f;
}

.description-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.description-list li {
  position: relative;
  padding: 12px 0 12px 25px;
  line-height: 1.9;
  font-size: var(--hotel-base-font-size);
}

.description-list li::before {
  content: '●';
  position: absolute;
  top: 16px;
  left: 0;
  color: #2b9c6f;
  font-size: 12px;
}

.description-note {
  font-size: var(--hotel-small-text-size);
  color: #666;
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px dotted #ccc;
}

.hotel-images {
  margin-top: 40px;
}

.image-slider-wrapper {
  position: relative;
}

.slider-arrow {
  display: none;
}

.image-thumbnails {
  display: none;
}

/* ホテル一覧に戻るボタン */
.back-to-list-wrapper {
  text-align: right;
  margin-top: 30px;
  padding-top: 30px;
}

.back-to-list-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2b9c6f 0%, #1d7653 100%);
  color: #fff;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(111, 188, 106, 0.25);
}

.back-to-list-btn:hover {
  background: linear-gradient(135deg, #1d7653 0%, #156845 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(111, 188, 106, 0.35);
}

.back-icon {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.back-text {
  line-height: 1;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 80%;
  margin: 0 auto;
}

.image-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.image-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

/* ==========================================
   お問い合わせセクション
   ========================================== */

.hotel-contact {
  padding: 60px 0;
}

.contact-intro {
  font-size: var(--hotel-base-font-size);
  line-height: 2;
  margin-bottom: 40px;
  text-align: center;
}

.contact-cta {
  text-align: center;
  margin: 40px 0 0;
}

.btn-contact {
  display: inline-block;
  background: linear-gradient(135deg, #2b9c6f 0%, #1d7653 100%);
  color: #fff;
  font-size: var(--hotel-subtitle-font-size);
  font-weight: 700;
  padding: 20px 60px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(43, 156, 111, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 156, 111, 0.4);
  background: linear-gradient(135deg, #1d7653 0%, #156845 100%);
}

/* ==========================================
   タブレット対応
   ========================================== */

@media screen and (max-width: 1200px) {
  .wrapper {
    padding: 0 30px;
  }
  
  .hotel-content-wrapper .wrapper {
    padding: 50px 30px;
  }
  
  .hotel-breadcrumbs-wrapper {
    padding: 15px 30px;
  }
  
  .btn-contact {
    font-size: 24px;
    padding: 20px 50px;
  }
  
  .hotel-list-intro {
    margin-bottom: 28px;
  }
  
  .hotel-list-note {
    padding: 13px 20px;
  }
  
  .hotel-category-title {
    margin: 35px 0 22px 0;
    padding-bottom: 13px;
  }
  
  .hotel-list-hint {
    padding: 22px 25px;
    margin-top: 50px;
  }
  
  .hint-title {
    top: -17px;
    left: 18px;
  }
  
  .hotel-list-items {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .hotel-category-title + .hotel-list-items {
    margin-top: 18px;
  }
  
  .hotel-list-info {
    padding: 18px;
  }
  
  .hotel-name-box {
    font-size: 24px;
    padding: 18px 25px;
  }
  
  .info-label {
    min-width: 180px;
    padding: 12px 15px;
  }
  
  .info-content {
    padding: 12px 15px;
  }
  
  .hotel-introduction {
    margin: 35px 0;
    padding: 20px 25px;
  }
  
  .hotel-description-box {
    padding: 35px 40px;
  }
  
  .image-grid {
    max-width: 100%;
    gap: 15px;
  }
}

/* ==========================================
   モバイル対応
   ========================================== */

@media screen and (max-width: 768px) {
  .hotel-hero-image {
    min-height: 300px;
    padding: 20px 20px 0;
    align-items: flex-end;
  }
  
  .hotel-hero-content {
    padding: 25px 20px;
    max-width: 100%;
    margin-bottom: -60px;
  }
  
  .hotel-hero-en {
    font-size: var(--hotel-hero-en-size);
    margin-bottom: 8px;
  }
  
  .hotel-hero-title {
    font-size: var(--hotel-hero-title-size);
    margin-bottom: 15px;
  }
  
  .hotel-hero-text {
    font-size: var(--hotel-hero-text-size);
    line-height: 1.7;
  }
  
  .wrapper {
    padding: 0 20px;
  }
  
  .hotel-content-wrapper .wrapper {
    padding: 40px 20px;
  }
  
  .hotel-breadcrumbs-wrapper {
    padding: 10px 20px;
  }
  
  .hotel-section-title {
    font-size: var(--hotel-title-font-size);
    margin-bottom: 30px;
    padding: 15px 0;
  }
  
  .hotel-section-title::before {
    font-size: 28px;
    margin-right: 10px;
  }
  
  .hotel-list-section {
    padding: 40px 0 30px;
  }
  
  .hotel-list-intro {
    margin-bottom: 25px;
  }
  
  .hotel-list-intro p {
    font-size: var(--hotel-base-font-size);
    line-height: 1.9;
  }
  
  .hotel-list-note {
    padding: 12px 18px;
  }
  
  .hotel-list-note p {
    font-size: var(--hotel-small-text-size);
    line-height: 1.7;
  }
  
  .hotel-category-title {
    font-size: var(--hotel-subtitle-font-size);
    margin: 30px 0 20px 0;
    padding-bottom: 12px;
  }
  
  .hotel-list-hint {
    padding: 20px 18px;
    margin-top: 45px;
  }
  
  .hint-title {
    top: -16px;
    left: 15px;
    font-size: var(--hotel-base-font-size);
    padding: 5px 16px;
  }
  
  .hotel-list-hint p {
    font-size: var(--hotel-base-font-size);
    line-height: 1.8;
  }
  
  .hotel-list-items {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 25px 0 0;
  }
  
  .hotel-category-title + .hotel-list-items {
    margin-top: 15px;
  }
  
  .hotel-list-item {
    display: flex;
    align-items: center;
    padding: 12px;
  }
  
  .hotel-list-link {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
  }
  
  .hotel-thumb {
    flex: 0 0 100px;
    width: 100px;
    height: 75px;
  }
  
  .hotel-list-info {
    flex: 1;
    padding: 0;
    text-align: left;
  }
  
  .hotel-list-name {
    font-size: var(--hotel-base-font-size);
    text-align: left;
    margin-bottom: 5px;
  }
  
  .hotel-list-distance {
    font-size: var(--hotel-small-text-size);
    text-align: left;
    margin: 0;
  }
  
  .hotel-overview {
    padding: 40px 0;
  }
  
  .hotel-contact {
    padding: 40px 0;
  }
  
  .contact-intro {
    font-size: var(--hotel-base-font-size);
    margin-bottom: 30px;
  }
  
  .btn-contact {
    width: 100%;
    font-size: var(--hotel-subtitle-font-size);
    padding: 18px 30px;
  }
  
  .hotel-detail {
    margin-top: 30px;
  }
  
  .hotel-name-box {
    font-size: var(--hotel-subtitle-font-size);
    padding: 15px 20px;
    margin-bottom: 20px;
  }
  
  .info-row {
    flex-direction: column;
  }
  
  .info-label {
    min-width: auto;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .info-content {
    padding: 12px 15px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }
  
  .btn-map {
    font-size: 13px;
    padding: 6px 15px;
    flex-shrink: 0;
  }
  
  .btn-tel {
    font-size: 13px;
    padding: 6px 15px;
    flex-shrink: 0;
  }
  
  .hotel-introduction {
    margin: 25px 0;
    padding: 18px 20px;
  }
  
  .hotel-introduction p {
    font-size: var(--hotel-base-font-size);
    line-height: 1.9;
  }
  
  .hotel-description-box {
    padding: 25px 20px;
    margin-bottom: 30px;
  }
  
  .description-title {
    font-size: var(--hotel-subtitle-font-size);
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  
  .description-list li {
    padding: 10px 0 10px 20px;
    font-size: var(--hotel-base-font-size);
  }
  
  .description-list li::before {
    font-size: 10px;
  }
  
  .hotel-images {
    margin-top: 30px;
    margin-left: -20px;
    margin-right: -20px;
  }
  
  .image-slider-wrapper {
    position: relative;
  }
  
  .slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    padding: 0;
    padding-bottom: 7px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
  }
  
  .slider-arrow:active {
    background: rgba(0, 0, 0, 0.7);
  }
  
  .slider-arrow-prev {
    left: 10px;
  }
  
  .slider-arrow-next {
    right: 10px;
  }
  
  .image-grid {
    display: flex;
    grid-template-columns: none;
    max-width: 100%;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
    scroll-behavior: smooth;
  }
  
  .image-grid::-webkit-scrollbar {
    display: none;
  }
  
  .image-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    border-radius: 0;
    box-shadow: none;
  }
  
  .image-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
  }
  
  .image-item:hover img {
    transform: none;
  }
  
  .image-thumbnails {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 0 20px;
  }
  
  .thumbnail-item {
    flex: 0 0 70px;
    width: 70px;
    height: 50px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, border-color 0.3s ease;
  }
  
  .thumbnail-item.active {
    border-color: #2b9c6f;
    opacity: 1;
  }
  
  .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .back-to-list-wrapper {
    margin-top: 20px;
    padding: 20px 20px 0 0;
  }
  
  .back-to-list-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
  
  .back-icon {
    font-size: 16px;
  }
}
