/* ===== 全体 ===== */
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #fffaf4;
  color: #333;
}

/* ===== ヘッダー ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ff9800;
  color: #fff;
  z-index: 1000;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12px;
}

.header-top img {
  height: 50px;
}

.header-top h1 {
  font-size: 22px;
  margin: 0;
}

/* ===== ナビ ===== */
nav {
  background: #ffa726;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 6px 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ===== メイン ===== */
main {
  max-width: 1100px;
  margin: auto;
  padding: 210px 20px 40px; /* 固定ヘッダー分 */
}

/* ===== セクション ===== */
.section {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.section h2 {
  margin-top: 0;
  color: #ff9800;
}

/* ===== 中央寄せ ===== */
.center {
  text-align: center;
}

/* ===== テーブル ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  border: 1px solid #ffcc80;
  padding: 12px;
}

.info-table th {
  background: #fff3e0;
  text-align: left;
}

/* ===== カードレイアウト ===== */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* リンクカード */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* カード本体 */
.inner-card {
  box-sizing: border-box;
  background: #fff8ef;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* カード hover */
.card-link:hover .inner-card {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

/* カード見出し */
.inner-card h3 {
  margin: 15px 0 0;
  color: #ff9800;
}

/* カード内画像 */
.card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ===== 写真＋文章 ===== */
.text-photo {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  width: 100%;
}

/* 写真エリア */
.photo-area {
  display: flex;
  gap: 10px;
  width: 100%;
}

/* 写真共通サイズ */
.photo-area img {
  width: 150px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

/* ご利用案内ページ */
.use-page .photo-area img {
  width: 200px;
  height: 150px;
}

/* スタッフ募集ページ */
.recruit-page .photo-area img {
  width: 120px;
  height: 100px;
}

/* 写真配置バリエーション */
.photo-wide .photo-area {
  justify-content: space-between;
}

.photo-center .photo-area {
  justify-content: center;
  gap: 60px;
}

/* ===== フッター ===== */
footer {
  background: #ff9800;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {

  .header-top h1 {
    font-size: 18px;
  }

  main {
    padding-top: 230px;
  }

  .text-photo {
    flex-direction: column;
  }

  .photo-area {
    justify-content: center;
  }

  .use-page .photo-area img {
    width: 160px;
    height: 120px;
  }

  .recruit-page .photo-area img {
    width: 100px;
    height: 80px;
  }
}


/* ===== リンクの色 ===== */

p a {
  color: #d35400;      /* 濃いオレンジ */
  text-decoration: none; /* 下線を消す */
}
