* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  }

body {
font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
line-height: 1.8;
color: #555;
background: #fff7f0;
}

/* 共通 */
.section {
padding: 50px 20px;
max-width: 900px;
margin: 0 auto;
}

/* 見出し共通 */
h1, h2 {
font-weight: 600;
letter-spacing: 0.05em;
}

/* セクションタイトル */
h2 {
text-align: center;
font-size: 22px;
margin-bottom: 30px;
color: #c62828;
position: relative;
}

/* 下線デザイン */
h2::after {
content: "";
display: block;
width: 60px;
height: 3px;
background: #d4af37;
margin: 10px auto 0;
border-radius: 2px;
}

/* TOP画像 */
.hero {
  display: flex;
  flex-direction: column;
}

/* 画像 */
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト部分 */
.hero-text {
  text-align: center;
  padding: 20px;
  background: #fff;
}

/* タイトル */
.hero-text h1 {
  font-size: 24px;
  color: #c62828;
  margin-bottom: 10px;

  /* ↓これ追加 */
  line-height: 1.4;
  word-break: keep-all;
}

/* サブ */
.hero-text p {
  font-size: 14px;
  color: #666;
}
/* コンセプト */
.concept-text{
background: #fff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(198,40,40,0.15);
}

.concept p {
text-align: left;
font-size: 15px;
color: #666;
}

.concept-text .note {
  font-size: 13px;
  font-weight: bold;
  color: #999;
  text-align: center;
}

/* おすすめ（カード） */
.recommend-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
margin-bottom: 30px;
}

/* 中身の `recommend-card` が1つだけのとき、中央寄せする */
.recommend-grid.single {
  grid-template-columns: 1fr;
  justify-items: stretch;
}

.recommend-grid.single .recommend-card {
  width: 100%;
  max-width: none;
}

/* 1枚のrecommend-cardは店長メッセージ風に */
.recommend-grid.single .recommend-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(198,40,40,0.15);
  text-align: left;
}

.recommend-grid.single .recommend-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0;
}

.recommend-grid.single .recommend-card p {
  padding: 0;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.8;
}

.recommend-grid.single .recommend-card p:last-child {
  margin-bottom: 0;/* 1枚のとき（店長風レイアウト） */
  .recommend-grid.single .recommend-card {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: row; /* ←ここ変更（横並び） */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(198,40,40,0.15);
    text-align: left;
  }
  
  /* 画像 */
  .recommend-grid.single .recommend-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  /* テキスト */
  .recommend-grid.single .recommend-card p {
    padding: 0;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.7;
  }
}

.recommend-card {
background: #fff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 6px rgba(198,40,40,0.15);
text-align: center;
}

.recommend-card img {
width: 100%;
height: 150px;
object-fit: cover;
}

.recommend-card p {
padding: 12px;
font-size: 14px;
color: #555;
}

/* 店長メッセージ */
.manager-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(198,40,40,0.15);
}

/* 画像 */
.manager-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

/* テキスト */
.manager-text p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.8;
}

/* 名前 */
.manager-name {
  text-align: right;
  font-weight: bold;
  margin-top: 10px;
  color: #c62828;
}


/* リスト */
.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  background: #c62828;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 8px;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #fff3e6;
  border-radius: 8px;
  margin-top: 5px;
}

/* =========================
   求人
========================= */

.recruit-wrapper {
  margin-top: 20px;
}

.recruit-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(198,40,40,0.12);
}

.recruit-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.recruit-content {
  padding: 25px;
}

.recruit-catch {
  font-size: 20px;
  font-weight: bold;
  color: #c62828;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: center;
}

/* タグ */
.recruit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.recruit-tags span {
  background: #fff3e6;
  color: #c62828;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: bold;
}

/* 募集要項 */
.recruit-info {
  margin-top: 20px;
  border-top: 1px solid #eee;
}

.recruit-row {
  display: flex;
  border-bottom: 1px solid #eee;
}

.recruit-row .label {
  width: 130px;
  background: #fff3e6;
  padding: 5px;
  font-weight: bold;
  color: #c62828;
  font-size: 14px;
}

.recruit-row .value {
  flex: 1;
  padding: 5px;
  font-size: 14px;
  color: #555;
}

.recruit-list {
  margin-top: 10px;
  padding-left: 18px;
}

.recruit-list li {
  margin-bottom: 6px;
  line-height: 1.7;
}

/* ボタン */
.recruit-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* .line-btn {
  display: inline-block;
  padding: 12px 18px;
  background: #fff;
  color: #c62828;
  border: 2px solid #c62828;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.line-btn:hover {
  background: #c62828;
  color: #fff;
} */


/* マップ */
.map iframe {
width: 100%;
height: 300px;
border: none;
border-radius: 10px;
}
.map-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 20px;
  align-items: stretch;
}

/* 左：マップ */
.map-left {
  flex: 1 1 auto;
}

.map-left iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
}

/* 右：情報 */
.map-right {
  flex: 0 0 320px;
  background: #fff3e6;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.map-right h3 {
  margin-bottom: 10px;
}


/* フッター */
.footer {
text-align: center;
padding: 20px;
font-size: 12px;
color: #999;
}

/* 親会社情報（最下部） */
.parent-company {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 20px 40px;
  text-align: center;
  font-size: 12px;
  color: #777;
  line-height: 1.8;
}

/* Instagram */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.instagram-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(198,40,40,0.12);
}

.instagram-card a {
  display: block;
}

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

.instagram-actions {
  text-align: center;
  margin-top: -10px;
}

.instagram-btn {
  display: inline-block;
  padding: 12px 18px;
  background: #c62828;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.instagram-btn:hover {
  background: #b71c1c;
}

.instagram-error {
  margin-top: 10px;
  padding: 12px 14px;
  background: #fff3e6;
  border-radius: 10px;
  color: #666;
  font-size: 14px;
  text-align: center;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 20px;
    padding: 0 10px;
  }

  .recommend-grid {
  grid-template-columns: 1fr;
  }

 /* 店長メッセージ */
  .manager-card {
    flex-direction: column;
    text-align: center;
  }
  .recommend-grid.single .recommend-card {
    flex-direction: column;
    text-align: center;
  }

  .manager-name {
    text-align: center;
  }
  .map-container {
    flex-direction: column;
  }

  .map-left iframe {
    height: 250px;
  }

  .recruit-card img {
    height: 200px;
  }

  .recruit-catch {
    font-size: 18px;
  }

  .recruit-row {
    flex-direction: column;
  }

  .recruit-row .label {
    width: 100%;
  }

  .recruit-buttons {
    flex-direction: column;
  }

  .instagram-btn,
  .line-btn {
    width: 100%;
    text-align: center;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* JavaScriptアニメーション用 */
.hero-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question:hover {
  background: #b71c1c;
}
