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

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #f8f4ef;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: #007A33;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

header {
  background-color: #007A33;
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.global-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
.global-nav ul li a {
  font-weight: 600;
  font-size: 1rem;
}

.hero {
  background-color: #007A33;
  color: white;
  padding: 40px 20px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.hero-text {
  max-width: 500px;
}
.hero-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 25px;
}
.btn {
  background-color: white;
  color: #007A33;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.btn:hover {
  background-color: #e6f4e6;
  cursor: pointer;
}

/* Hero画像 */
.hero-image {
  flex: 1 1 480px;
  max-width: 100%;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Sections */
.section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #007A33;
  margin-bottom: 40px;
  text-align: center;
}

/* メニュー */
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.menu-item {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 320px;
}

.menu-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.menu-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #007A33;
}

.menu-item p {
  flex-grow: 1;
}

.price {
  font-weight: 700;
  color: #007A33;
  font-size: 1.1rem;
}

/* Gold background sections */
.gold-bg {
  background-color: #e6f4e6;
  padding: 60px 20px;
  border-radius: 8px;
}

/* About */
.about-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.about-text {
  flex: 1 1 300px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-map {
  flex: 1 1 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
}

/* Reviews */
.reviews-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #007A33;
  padding-left: 15px;
  color: #555;
}

blockquote footer {
  margin-top: 8px;
  font-weight: 700;
  color: #007A33;
  font-style: normal;
  text-align: right;
}

/* Blog */
.blog-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.1rem;
}
.blog-list li a {
  color: #007A33;
  font-weight: 600;
}
.blog-list li a:hover {
  text-decoration: underline;
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto 30px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form label {
  font-weight: 700;
  color: #007A33;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  font-size: 1rem;
  resize: vertical;
}
.contact-form button {
  width: 150px;
  align-self: center;
  background-color: #007A33;
  color: white;
  font-weight: 700;
  border-radius: 4px;
}
.contact-form button:hover {
  background-color: #005F28;
}

/* Contact info */
.contact-info {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  color: #555;
}

/* Footer */
footer {
  background-color: #007A33;
  color: white;
  text-align: center;
  padding: 15px 20px;
  font-weight: 700;
  margin-top: 60px;
}

/* 画像の横幅調整用 */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.contact-line {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
}

.contact-line img {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
}