﻿@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&family=Quicksand:wght@500&display=swap');

body {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #FAF7F1;
  color: #4B4B4B;
  margin: 0;
  padding: 0;
}

header {
  background: url('images/header.jpg') no-repeat center center / cover;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-inner {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.header-inner h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 3rem;
  margin: 0 0 0.5rem;
  color: #fff; /* ←ここで白指定 */
}

.header-inner p {
  font-size: 1.2rem;
  margin: 0;
  color: #fff; /* 念のためここも */
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #A8B97E; /* hover時に色を変えたければここ */
}
h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  color: #A8B97E;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: #FFF;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}

.filters label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filters select, .filters button {
  padding: 0.4rem 0.8rem;
  border: 1px solid #CCC;
  border-radius: 8px;
  background: #FFF;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.filters select:focus, .filters button:hover {
  background: #B5C58C;
  color: #FFF;
  border-color: #A8B97E;
}
.more-button-box {
  text-align: center;
  margin: 2rem 0;
}

#showMoreBtn {
  padding: 0.6rem 1.5rem;
  background: #A8B97E;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Zen Maru Gothic', sans-serif;
}

#showMoreBtn:hover {
  background: #8BA466;
}
.column {
  background: #FFF8F0;
  padding: 2rem;
  margin: 1rem auto;
  max-width: 1000px;
  border-radius: 12px;
}

.column-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.column-content img {
  width: 300px;
  border-radius: 8px;
}

.column-content h3 {
  color: #A8B97E;
  font-family: 'Quicksand', sans-serif;
}

.column-content a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #D4A373;
  text-decoration: none;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.menu-card {
  background: #FFF;
  border-radius: 12px;
  overflow: hidden
}
.menu-card img {
  width: 100%;
  height: 200px; /* 固定の高さに調整 */
  object-fit: cover; /* ← 中央をトリミングして整える魔法 */
  display: block;
}
.column-banner {
  background: #F6F2E8;
  text-align: center;
  padding: 0.6rem;
  font-size: 1rem;
  color: #4B4B4B;
}
.column-banner a {
  color: #A8B97E;
  text-decoration: none;
  font-weight: bold;
}
.column-card {
  background: #FFF8F0;
  border: 1px solid #F0E4D7;
}
.column-card a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #D4A373;
  text-decoration: none;
}
.search-box {
  text-align: center;
  margin: 1rem;
}

.search-box input {
  padding: 0.5rem;
  width: 200px;
  border: 1px solid #CCC;
  border-radius: 8px;
}

.search-box button {
  padding: 0.5rem 1rem;
  border: none;
  background: #A8B97E;
  color: #fff;
  border-radius: 8px;
  margin-left: 0.5rem;
  cursor: pointer;
}

.search-box button:hover {
  background: #8BA466;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.recipe-detail {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #FFF8F0;
  border-radius: 12px;
}

.recipe-detail h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Quicksand', sans-serif;
  color: #A8B97E;
}

.recipe-detail img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.recipe-detail p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.recipe-detail h3 {
  margin-top: 1.5rem;
  color: #A8B97E;
  font-family: 'Quicksand', sans-serif;
}

.recipe-detail ul,
.recipe-detail ol {
  margin-left: 1.5rem;
  line-height: 1.8;
}

.recipe-detail a {
  color: #D4A373;
  text-decoration: none;
}

.recipe-detail a:hover {
  text-decoration: underline;
}
.related-menus {
  margin-top: 3rem;
}

.related-menus h3 {
  color: #A8B97E;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 1rem;
}

.related-menus .menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.related-menus .menu-card {
  background: #FFF;
  border-radius: 12px;
  overflow: hidden;
  width: 200px;
  text-align: center;
}

.related-menus .menu-card img {
  width: 100%;
  height: auto;
  display: block;
}

.related-menus .menu-card h4 {
  margin: 0.5rem;
  font-size: 1rem;
  color: #4B4B4B;
}
