/* 全体設定 */
:root {
  --primary-color: #003366; /* 深い海の青 */
  --secondary-color: #00a0a0; /* エメラルドグリーンの海 */
  --accent-color: #f0e68c; /* 砂浜の黄色 */
  --text-color: #333333;
  --bg-color: #ffffff;
  --header-footer-bg: #f8f9fa;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.8;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1, h2, h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 0;
}

h2 {
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 2em;
}

h3 {
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    font-size: 1.5em;
    margin-top: 40px;
    margin-bottom: 20px;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

img.placeholder {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ヘッダー */
.header {
  background-color: var(--header-footer-bg);
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo a {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.nav li {
  margin-left: 30px;
}

.nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1em;
}

/* メインビジュアル */
.hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.hero h1 {
    color: white;
    font-size: 2.8em;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2em;
    opacity: 0.9;
}


/* セクション */
.section {
    margin-bottom: 50px;
}
.section-bg {
    background-color: #f4f8ff;
    padding: 50px 0;
    margin-bottom: 0;
}

/* テーブル */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
  font-weight: 600;
  color: var(--primary-color);
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* 店舗紹介 */
.store-grid {
    display: grid;
    /* 画面幅に応じて列数を自動調整 */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.store-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    transition: box-shadow 0.3s, transform 0.3s;
    overflow: hidden; /* 角丸を画像にも適用 */
}

.store-item img {
    width: 100%;
    height: auto;
    object-fit: cover; /* 画像の比率を保ちつつコンテナを埋める */
    border-radius: 6px;
    margin-bottom: 15px;
}

.store-item p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
}

/* プレースホルダー */
.form-placeholder {
    height: 700px;
    border: 2px dashed #ccc;
    padding: 50px;
    text-align: center;
    background-color: #f9f9f9;
    margin: 30px 0;
    border-radius: 8px;
}

.form-placeholder p {
    margin: 0;
    color: #777;
    font-style: italic;
}


/* フッター */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 40px 0;
  margin-top: 50px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.footer-info, .footer-nav {
    width: 48%;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: white;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
  }
  .nav {
    margin-top: 20px;
  }
  .nav li {
    margin: 0 15px;
  }
  h1 { font-size: 2.2em; }
  h2 { font-size: 1.8em; }

  .footer-inner {
      flex-direction: column;
  }
  .footer-info, .footer-nav {
      width: 100%;
      margin-bottom: 30px;
  }
}