@charset "UTF-8";

/* 共通 */
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.7;
 background-image: url("img/akakura_back.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* ← これ */
}

.pc { display: none;}
.smh { display: block;}
h1, h2, h4 {
  margin: 0 0 0.2em;
  /* color: #f9fafb; /* 真っ白より少し柔らかい */
  /* color: #ffcc66; */
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,1);
}

.overlay {
  background: rgba(255, 255, 255, 0.8); /* ← 0.4〜0.5が最適 */
  padding: 5px;
}

tbody {
  background: rgba(0, 0, 0, 0.5); /* ← 0.4〜0.5が最適 */
  color: #f9fafb; /* 真っ白より少し柔らかい */
}

/* ヒーロー */
.hero {
  color: #fff;
  text-align: center;
  padding: 20px;
}

/*
.hero h1 {
  font-size: 1.8rem;
}
*/

.hero h1 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffcc66;        /* 文字色 */
  text-shadow:
    -2px -2px 0 #7a4a00,
     2px -2px 0 #7a4a00,
    -2px  2px 0 #7a4a00,
     2px  2px 0 #7a4a00;
}

.hero p {
  font-size: 1rem;
  margin-top: 10px;
  background: #cf271f;
}

/* コンテンツ幅 */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* セクション */
section {
  margin-bottom: 40px;
}

.highlight {
  color: #d40000;
  font-weight: bold;
}

/* テーブル */
.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 10px;
}

th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

th {
  background: #f5f5f5;
}

/* 検索導線 */
.search {
  text-align: center;
  font-size: 1.1rem;
  background: #fff7e6;
  padding: 20px;
  border-radius: 6px;
}
.search span {
	display: inline-block;
}

/* フッター */
.footer {
  background: #d20c17;
  text-align: center;
  padding: 15px;
  font-size: 0.85rem;
}

.footer img{
	max-width: 60%;
	width: 300px;
}

/* PC表示 */
@media (min-width: 768px) {
	.hero h1 {
		font-size: 4rem;
		text-shadow:
		-3px -3px 0 #7a4a00,
		3px -3px 0 #7a4a00,
		-3px  3px 0 #7a4a00,
		3px  3px 0 #7a4a00;
	}

	.pc { display: block;}
	.smh { display: none;}
	.hero p {
		font-size: 1.6rem;
	}
}

/* タイトル */
.lodging-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

/* グリッド */
.lodging-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* カード */
.lodging-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.lodging-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 12px;
}

.card-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.card-body p {
  margin: 2px 0;
  font-size: 0.9rem;
}

.card-body a {
  color: #1f6ed4;
  text-decoration: none;
}

.card-body a:hover {
  text-decoration: underline;
}
