/* Reset */
body,
h1,
h2,
h3,
p,
ul,
li,
a {
  margin: 0;
  padding: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #5e454b;
}

html {
  scroll-snap-type: y proximity;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

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

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

body {
  background-color: #fffbf0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 50px;
  background-color: #75b541;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  font-size: 15px;
  position: relative;
  border: none;
}

.button img {
  margin-right: 8px;
  position: absolute;
  left: 15px;
  width: 25px;
  height: 19px;
}

.button::after {
  content: '';
  display: block;
  width: 10px;
  height: 9px;
  background-image: url('img/polygon1.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
  position: absolute;
  top: 24px;
  right: 15px;
}

h2 {
  font-weight: 500;
}

/* 表示切替*/
.pc-only {
  display: block;
  /* 通常表示 */
}

.sp-only {
  display: none;
  /* スマホでは非表示 */
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
    /* スマホでは非表示 */
  }

  .sp-only {
    display: block;
    /* スマホでは表示 */
  }
}

/* Header */
.header {
  background-image: url('img/bg_header.webp');
  background-size: cover;
  background-position: center;
  height: 88px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-content {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 0 20px;
}

.logo {
  flex: 1;
}

.logo img {
  width: 147px;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
}

.header-contact {
  display: flex;
  align-items: center;
}

.header-contact .tel {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 500;
  margin-right: 20px;
}

.header-contact .tel img {
  width: 24px;
  height: 24px;
  margin-top: 5px;
  margin-right: 10px;
}

.header-contact .button {
  padding: 18px 40px 18px 50px;
}

/* Hero */
.hero {
  position: relative;
  height: 650px;
}

.hero-image-slider {
  width: 100%;
}

.hero-image-slider .slick-slide img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

/* SP用スライダー（別画像） */
.hero-image-slider-sp {
  display: none !important;
  /* デフォルトは非表示（PCで表示） */
}

.hero-image-slider-sp .slick-slide img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

/* 表示切替: 768px 以下で SP スライダーを表示し、PC スライダーを非表示にする */
@media (max-width: 768px) {
  .hero-image-slider {
    display: none !important;
  }

  .hero-image-slider-sp {
    display: block !important;
  }

  .hero-image-slider .slick-slide img,
  .hero-image-slider-sp .slick-slide img {
    height: 450px;
    /* モバイル向け高さ調整 */
  }
}

.hero-image-slider .slick-dots {
  bottom: 30px;
  z-index: 1;
}

.hero-image-slider .slick-dots li button:before {
  font-size: 12px;
  color: white;
  opacity: 0.8;
}

.hero-image-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #5e454b;
  z-index: 1;
}

.hero-text .hero-bg-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 620px;
  z-index: -2;
}

.hero-logo {
  width: 42px;
}

.hero-text p {
  font-size: 24px;
  line-height: 1.80;
}

.hero-text .large {
  font-size: 28px;
}

.hero-text .green {
  color: #75b541;
  font-size: 28px;
}

@media (max-width: 768px) {
  .hero-image-slider {
    display: none !important;
  }

  .hero-image-sp {
    display: block;
    width: 100%;
  }

  .hero-image-sp img {
    width: 100%;
    height: auto;
  }

  .hero-text {
    max-width: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 12px;
  }

  .hero-text p {
    font-size: 18px;
    line-height: 1.4;
  }

  .hero-text .large {
    font-size: 20px;
  }

  .hero-text .green {
    font-size: 18px;
  }
}

/* News */
.news {
  padding: 80px 0;
}

.news-inner {
  width: 815px;
  margin: 0 auto;
  background: #fff;
  padding: 20px 40px;
  border-radius: 15px;
  position: relative;
}

.news h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  position: absolute;
  left: -170px;
  top: 50%;
  transform: translateY(-50%);
}

.news h2 img {
  position: absolute;
  left: 63px;
  top: 40%;
  transform: translateY(-50%);
}

.news ul {}

.news li {
  display: flex;
  padding: 5px 0;
  border-bottom: 1px dashed #ccc;
}

.news li:first-child {
  padding-top: 0;
}

.news li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news .date {
  font-size: 16px;
  font-weight: 500;
  margin-right: 40px;
}

.news .title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.news li a {
  display: block;
  padding: 10px 0;
}

.news li a:hover {
  opacity: 0.7;
}

/* Greeting */
.greeting {
  background-color: #f2e3c3;
  position: relative;
  overflow: hidden;
}

.greeting-inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.greeting-left {
  position: absolute;
  left: 0;
  top: 15%;
}

.greeting-left img {
  width: 167px;
}

.greeting-right {
  text-align: center;
  max-width: 410px;
  margin: 40px auto;
  z-index: 1;
}

.greeting-right img {
  width: 22px;
  margin-bottom: -5px;
}

.greeting-right h2 {

  font-size: 36px;
  margin-bottom: 20px;
}

.greeting-right h3 {

  font-size: 24px;
  color: #75b541;
  margin-bottom: 20px;
}

.greeting-right p {
  font-size: 15px;
  line-height: 2;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.greeting-right .button {
  margin-top: 10px;
}

.greeting-bg {
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
}

.greeting-bg img {
  height: 100%;
  width: auto;
}

.greeting-image {
  position: absolute;
  left: 4%;
  bottom: 17%;
}

.greeting-image img {
  width: 298px;
}

/* Instagram */
.instagram {
  padding: 80px 0;
  text-align: center;
}

.instagram img {
  width: 22px;
}

.instagram h2 {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 500;
}

.instagram-placeholder {
  width: 643px;
  height: 428px;
  background-color: #d9d9d9;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-placeholder p {

  font-size: 36px;
  color: #000;
}

img.insta-photo {
    width: 550px;
}

/* Commitment */
.commitment {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background-image: url('img/bg_mokume.webp');
  background-size: cover;
  background-position: center;
}

.commitment>img {
  width: 22px;
}

.commitment>h2 {
  font-weight: 500;
  font-size: 36px;
  margin-bottom: 80px;
}

.commitment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  position: relative;
}

.commitment-item.reverse {
  flex-direction: row-reverse;
}

.commitment-item-image {
  width: 765px;
  height: 415px;
  overflow: hidden;
}

.commitment-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commitment-item-text {
  background: #fff;
  box-shadow: 0px 6px 4.5px 0px rgba(180, 180, 180, 0.25);
  padding: 30px 20px;
  box-sizing: border-box;
  margin: 50px -100px 0;
  z-index: 1;
}

.width_1 {
  width: 418px;
  height: 419px;
  text-align: center;
}

.commitment-title-group {
  position: relative;
  margin-bottom: 20px;
}

.commitment-title-group .number {

  font-size: 36px;
  display: block;
}

.commitment-title-group .decoration {
  position: relative;
  display: inline-block;
  height: 23px;
}

.commitment-title-group .decoration img {
  width: 76px;
  height: 1px;
}

.commitment-title-group .decoration span {
  font-size: 20px;
  position: absolute;
}

.commitment-title-group .decoration span:nth-child(2) {
  left: 0;
  top: 10px;
  transform: rotate(-31.65deg);
}

.commitment-title-group .decoration span:nth-child(3) {
  left: 20px;
  top: 3px;
  transform: rotate(-8.83deg);
}

.commitment-title-group .decoration span:nth-child(4) {
  left: 40px;
  top: 3px;
  transform: rotate(5.81deg);
}

.commitment-title-group .decoration span:nth-child(5) {
  left: 60px;
  top: 8px;
  transform: rotate(26.23deg);
}

.commitment-item-text h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 500;
}

.commitment-item-text p {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-bottom: 20px;
}

/* Menu */
.menu {
  padding: 80px 0;
  text-align: center;
}

.menu-title {
  font-family: 'La Belle Aurore', cursive;
  font-size: 48px;
  margin-bottom: 40px;
}

.menu-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

.menu-item a {
  display: block;
  position: relative;
  width: 292px;
  height: 292px;
}

.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: url('img/menu_img001_1.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.menu-item span {
  display: block;
  width: 264px;
  padding: 15px 0;
  background: #fff;
  border: 1px solid #75b541;
  border-radius: 6px;

  font-size: 24px;
  color: #75b541;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.menu-item span::after {
  content: '';
  display: block;
  width: 29px;
  height: 29px;
  background-image: url('img/arrow-right.webp');
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -14.5px;
}

.menu-gallery {
  display: flex;
  justify-content: center;
  margin-top: 170px;
}

.menu-gallery img {
  width: 307.5px;
  height: 205px;
  object-fit: cover;
}

/* Contact */
.contact {
  background-image: url(img/bg_contact.webp);
  background-size: cover;
  background-position: center;
}

.contact-inner {
  width: 503px;
  margin: 0 auto;
  text-align: center;
  opacity: 0.86;
  background: #FFF;
  padding: 60px 0;
}

.contact-title {
  font-family: 'La Belle Aurore', cursive;
  font-size: 48px;
}

.contact-inner p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
}

.contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-tel img {
  width: 24px;
  height: 24px;
  margin-top: 5px;
  margin-right: 10px;
}

.contact-inner .button {
  margin-bottom: 30px;
}

.contact-info p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 0;
}

/* Footer */
.footer {
  position: relative;
}

.footer-bg {
  background-image: url('img/pixta_37906404_M1.webp');
  background-size: cover;
  background-position: center;
  padding: 60px 0 30px;
  text-align: center;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-nav li {
  margin: 0 15px;
}

.footer-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1.28px;
}

.copyright {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1.28px;
}

.to-top {
  position: absolute;
  right: 50px;
  bottom: 50px;
}

.to-top img {
  width: 56px;
  height: 56px;
}

/* Commitment Page */
.hero-sub {
  position: relative;
  height: 300px;
}

.hero-sub__image {
  width: 100%;
  height: 100%;
}

.hero-sub__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-sub__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  padding: 20px 80px;
}

.commitment-page {
  padding: 80px 0;
}

.commitment-page__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.commitment-page__title-group {
  text-align: center;
  margin-bottom: 80px;
}

.commitment-page__title-group img {
  width: 22px;
}

.commitment-page__title-group h2 {
  font-size: 36px;
  font-weight: 500;
}

.commitment-page__item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.commitment-page__item.reverse {
  flex-direction: row-reverse;
}

.commitment-page__item-image {
  width: 420px;
  flex-shrink: 0;
}

.commitment-page__item-image img {
  width: 100%;
  height: auto;
}

.commitment-page__item-text .commitment-title-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  text-align: left;
}

.commitment-page__item-text .commitment-title-group .number {
  font-size: 36px;
}

.commitment-page__item-text .commitment-title-group .decoration {
  position: relative;
  display: inline-block;
}

.commitment-page__item-text .commitment-title-group .decoration img {
  width: 76px;
}

.commitment-page__item-text .commitment-title-group .decoration span {
  font-size: 20px;
  position: absolute;
}

.commitment-page__item-text .commitment-title-group .decoration span:nth-child(2) {
  left: 0;
  top: 10px;
  transform: rotate(-31.65deg);
}

.commitment-page__item-text .commitment-title-group .decoration span:nth-child(3) {
  left: 20px;
  top: 3px;
  transform: rotate(-8.83deg);
}

.commitment-page__item-text .commitment-title-group .decoration span:nth-child(4) {
  left: 40px;
  top: 3px;
  transform: rotate(5.81deg);
}

.commitment-page__item-text .commitment-title-group .decoration span:nth-child(5) {
  left: 60px;
  top: 8px;
  transform: rotate(26.23deg);
}

.commitment-page__item-text h3 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 500;
}

.commitment-page__item-text p {
  font-size: 15px;
  line-height: 2;
  color: #333;
  text-align: left;
}

.commitment-page__item-text p:not(:last-child) {
  margin-bottom: 1em;
}

/* Item Page */
.item-section {
  padding: 80px 0;
}

#entremets,
#baked {
  background-image: url(img/bg_mokume.webp);
  background-size: cover;
  background-position: center;
}

.item-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.item-category {
  margin-bottom: 100px;
  text-align: center;
}

.item-category:last-child {
  margin-bottom: 0;
}

.item-category__title-group {
  text-align: center;
  margin-bottom: 40px;
}

.item-category__title-group img {
  width: 22px;
}

.item-category__title-group h2 {
  font-size: 36px;
  font-weight: 500;
}

.item-category__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px 40px;
}

.item-card {
  text-align: left;
}

.item-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
  object-fit: cover;
  margin-bottom: 15px;
}

.item-card p {
  font-size: 20px;
  color: #333;
}

.item-category .button {
  margin-top: 60px;
}

/* Reserve Page */
.reserve-form-section {
  padding: 80px 0;
  background: #FFFBF0;
}

.reserve-form__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.reserve-form__title-group {
  text-align: center;
  margin-bottom: 40px;
}

.reserve-form__title-group img {
  width: 22px;
}

.reserve-form__title-group h2 {
  font-size: 36px;
  font-weight: 500;
}

.reserve-form__description {
  margin-bottom: 40px;
  line-height: 2;
}

.form-item-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px 0;
}

.form-item {
  display: flex;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid #F2E3C3;
  padding: 20px 0 50px;
}

.form-item__image {
  width: 250px;
  flex-shrink: 0;
}

.form-item__image img {
  width: 100%;
  height: auto;
}

.form-item__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-item__title {
  font-size: 20px;
  font-weight: 500;
}

.form-item__options {
  display: flex;
  gap: 15px;
}

.form-item__options label {
  font-size: 20px;
}

.form-item__quantity {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-item__quantity label {
  font-size: 20px;
}

.form-item__quantity select {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
}

.form-field {
  display: flex;
  gap: 12px;
  flex-direction: column;
  padding: 20px 0;
}

.form-field__label {
  font-weight: 500;
  font-size: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.form-field__label.required::after {
  content: '必須';
  background: #5E454B;
  color: #fff;
  font-size: 16px;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
}

.form-field__input {}

.form-field__input input[type="text"],
.form-field__input input[type="email"],
.form-field__input input[type="tel"],
.form-field__input textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  font-size: 15px;
  box-sizing: border-box;
}

.form-field__input textarea {
  height: 100px;
}

wpcf7-date {
  height: 35px;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
  height: 35px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  height: 35px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  background: none;
  border: none;
  color: #fff;
}

.datetime-picker {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}

.datetime-picker .date-f {
  width: 120px !important;
}

.datetime-picker input,
.datetime-picker select {
  padding: 10px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  font-size: 15px;
}

.form-field__note {
  font-size: 16px;
  color: #5E454B;
  line-height: 1.6;
}

.form-notes {
  margin: 40px 0;
  padding: 20px 0;
  border-radius: 5px;
}

.form-notes p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.form-notes p:not(:last-child) {
  margin-bottom: 1em;
}

.privacy-policy {
  text-align: center;
  margin-bottom: 20px;
}

.privacy-policy p {
  margin-bottom: 10px;
}

.privacy-policy a {
  text-decoration: underline;
}

.submit-button {
  text-align: center;
  margin: 30px auto 0;
}

.submit-button .wpcf7-submit {
  display: inline-block;
}

.submit-button .button {
  width: 250px;
}

.info-section {
  padding: 80px 0;
  background: #F2E3C3;
}

.info-section__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.info-section__title-group {
  text-align: center;
  margin-bottom: 40px;
}

.info-section__title-group img {
  width: 22px;
}

.info-section__title-group h2 {
  font-size: 36px;
  font-weight: 500;
}

.info-content {
  display: flex;
  gap: 40px;
}

.info-text {
  flex: 1;
}

.info-text p {
  line-height: 2;
  border-bottom: 1px solid #D9D9D9;
  padding: 10px 0;
}

.info-text p:first-child {
  padding-top: 0;
}

.info-text p:last-child {
  border-bottom: none;
}

.info-note {
  font-size: 14px;
  color: #E53935;
  margin-top: 10px;
}

.info-map {
  width: 400px;
  background-color: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-section {
  background: #F2E3C3;
  padding: 80px 0;
}

.news-section__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-section__title-group {
  text-align: center;
  margin-bottom: 40px;
}

.news-section__title-group img {
  width: 22px;
}

.news-section__title-group h2 {
  font-size: 36px;
  font-weight: 500;
}

.news-list p {
  line-height: 1.8;
  margin-bottom: 1em;
}

.hero-sub__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}

.hero-sub__title h2 {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}

.hero-sub__title img {
  width: 22px;
  margin-bottom: -5px;
}

.info-block {
  width: 50%;
}

.info-block__title-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.info-block__title-group img {
  width: 35px;
}

.info-block__title-group h2 {
  font-size: 36px;
  font-weight: 500;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  border: 1px solid #D9D9D9;
  padding: 20px;
  font-size: 15px;
  text-align: left;
}

.info-table th {
  background-color: #F7F7F7;
  font-weight: 500;
  width: 30%;
}

.info-table td {
  background-color: #fff;
}

.map-container {
  width: 100%;
  height: 300px;
  background-color: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-section {
  padding: 0 0 80px;
  background: #F2E3C3;
}

.news-section__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-section__title-group {
  text-align: center;
  margin-bottom: 40px;
}

.news-section__title-group img {
  width: 22px;
}

.news-section__title-group h2 {
  font-size: 36px;
  font-weight: 500;
}

.news-list {
  list-style: none;
}

.news-list li {
  border-bottom: 1px solid #D9D9D9;
  padding: 20px 0;
}

.news-list li:first-child {
  padding-top: 0;
}

.news-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-list a {
  display: flex;
  align-items: center;
  gap: 30px;
}

.news-list .date {
  font-size: 16px;
  font-weight: 500;
}

.news-list .category {
  background-color: #75B541;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
}

.news-list .title {
  font-size: 16px;
  font-weight: 500;
}

.form-success-message {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  text-align: center;
}

.form-error-message {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.form-error-message ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

/*当店のこだわりページ*/
.width_2 {
  width: 540px;
  height: 419px;
}

/*店舗案内ページ*/
.about-greeting {
  background-color: #f2e3c3;
  padding: 80px 0;
  overflow: hidden;
}

.about-greeting__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.about-greeting__left {
  position: absolute;
  left: -14%;
  top: 80%;
  transform: translateY(-50%);
}

.about-greeting__left img {}

.about-greeting__main {
  text-align: center;
  max-width: 450px;
  z-index: 1;
}

.about-greeting__main img {
  width: 22px;
}

.about-greeting__main h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-greeting__main h3 {
  font-size: 24px;
  color: #75b541;
  margin-bottom: 20px;
}

.about-greeting__main p {
  font-size: 15px;
  line-height: 2;
  color: #333;
}

.about-greeting__right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about-greeting__right img {
  width: 500px;
}

.about-gallery {
  padding: 80px 0;
  text-align: center;
}

.about-gallery__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-gallery__inner>img {
  width: 22px;
}

.about-gallery__inner h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.about-gallery__images {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.about-gallery__images img {
  width: 500px;
  height: 333px;
  object-fit: cover;
}

.about-chef {
  padding: 80px 0;
  text-align: center;
}

.about-chef__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-chef__inner>img {
  width: 22px;
}

.about-chef__inner h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.about-chef__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  text-align: left;
}

.about-chef__text {
  max-width: 705px;
}

.about-chef__text p {
  font-size: 15px;
  line-height: 2;
  color: #333;
}

.about-chef__image {
  text-align: center;
}

.about-chef__image img {
  width: 299px;
  height: 299px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.about-chef__image .chef-name {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 5px;
}

.about-chef__image .chef-name-en {
  font-size: 16px;
  color: #75b541;
}

.about-info {
  position: relative;
  padding: 80px 0;
}

.about-info__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg_mokume.webp);
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: -1;
}

.about-info__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-info__content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-info__left {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0px 6px 4.5px 0px rgba(180, 180, 180, 0.25);
  width: 596px;
  z-index: 1;
}

.about-info__title-group {
  text-align: center;
  margin-bottom: 30px;
}

.about-info__title-group img {
  width: 22px;
  margin-bottom: 10px;
}

.about-info__title-group h2 {
  font-size: 36px;
}

.about-info__left dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  font-size: 15px;
  color: #333;
}

.about-info__left dt {
  font-weight: bold;
}

.about-info__left dd {
  line-height: 1.8;
  margin-inline-start: 10px;
}

.about-info__right img {
  width: 546px;
  height: 393px;
  object-fit: cover;
}

.about-map {
  background-color: #d9d9d9;
}

.about-map__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-map__inner h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.map-container {
  width: 100%;
  height: 450px;
}


/* Responsive Styles */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .header {
    height: 59px;
  }

  .logo img {
    width: 89px;
  }

  .hero {
    height: 420px;
  }

  .hero-image-slider .slick-slide img,
  .hero-image-slider .slick-slide {
    height: 420px;
  }

  .hero-text .hero-bg-1 {
    width: 350px;
  }

  .hero-text p {
    font-size: 18px;
    line-height: 1.7;
    width: 230px;
  }

  .hero-text .large {
    font-size: 20px;
  }

  .hero-text .green {
    font-size: 18px;
  }

  /* News */
  .news-inner {
    width: auto;
    padding: 15px;
  }

  .news h2 {
    font-size: 24px;
    position: static;
    transform: unset;
    margin-bottom: 20px;
  }

  .news h2 img {
    position: static;
    transform: unset;
    margin-bottom: -10px;
  }

  .news-inner h2 {
    font-size: 22px;
  }

  .news-inner ul {
    padding-left: 0;
  }

  .news-inner li {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  .news-inner .date {
    width: 86px;
    flex: 0 0 86px;
    font-size: 13px;
    margin-right: 15px;
  }

  .news-inner .title {
    font-size: 14px;
  }

  .greeting-inner {
    display: block;
    margin: 0 0 40px;
  }

  .greeting-left {
    text-align: left;
    margin-bottom: 12px;
    top: unset;
    bottom: -31%;
  }

  .greeting-left img {
    width: 100px;
    height: auto;
  }

  .greeting-right {
    text-align: center;
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .greeting-right h2 {
    font-size: 20px;
  }

  .greeting-right h3 {
    font-size: 18px;
  }

  .greeting-right p {
    font-size: 14px;
    line-height: 1.8;
  }

  .greeting-bg {
    position: absolute;
    right: -5%;
    top: unset;
    bottom: -79px;
    height: 162px;
  }

  .greeting-image {
    text-align: left;
    margin-bottom: 12px;
    top: unset;
    bottom: -33.5%;
    left: 20%;
  }

  .greeting-image img {
    width: 180px;
  }

  /* Instagram */
  .instagram h2 {
    font-size: 20px;
  }

  .instagram-placeholder {
    width: 100%;
    height: 220px;
  }
	
	img.insta-photo {
    width: 100%;
	}

  /* Commitment (stack items) */

  .commitment>h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .commitment-items {
    display: block;
  }

  .commitment-item,
  .commitment-item.reverse {
    display: block;
    margin-bottom: 50px;
  }

  .commitment-item-image {
    width: 100%;
    height: auto;
  }

  .commitment-item-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .commitment-item-text {
    position: relative;
    width: 90%;
    height: auto;
    margin: -30px auto 0;
    padding: 30px;
    z-index: 1;
  }

  .commitment-item-text h3 {
    font-size: 18px;
  }

  .commitment-item-text p {
    font-size: 14px;
  }

  .menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 90px;
    justify-content: center;
  }

  .menu-item {
    width: calc(50% - 20px);
  }

  .menu-item a {
    width: 100%;
  }

  .menu-item img {
    width: 250px;
    height: 250px;
  }

  .menu-item span {
    bottom: -40px;
    padding: 10px 0
  }

  .menu-gallery {
    margin-top: 0;
  }

  .commitment,
  .greeting,
  .news,
  .instagram {
    padding: 40px 5%;
    overflow: visible;
  }

  .contact-inner {
    width: 90%;
  }

  .contact-inner p {
    font-size: 14px;
  }

  .footer-nav li {
    margin: 5px 10px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .copyright {
    font-size: 12px;
  }

  /*下層ページ共通*/
  .hero-sub {
    height: 180px;
  }

  .hero-sub__title {
    font-size: 26px;
    padding: 0;
  }

  /*店舗案内*/
  .about-greeting__main h2 {
    font-size: 24px;
  }

	.about-greeting__main p {
		width: 90%;
		margin: 0 auto;
	}

  .about-greeting__left {
    display: none;
  }

  .about-greeting__right {
    right: -260px;
  }

  .about-gallery__images {
    flex-direction: column;
    align-items: center;
  }

  .about-gallery__inner h2,
  .about-chef__inner h2,
  .about-info__title-group h2 {
    font-size: 24px;
  }

  .about-chef {
    padding: 40px 0 80px;
  }

  .about-chef__inner {
    max-width: 90%;
  }

  .about-chef__content {
    ;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .about-info__inner {
    max-width: 90%;
  }

  .about-info__content {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .about-info__left {
    width: 90%;
  }

  .about-info__right img {
    width: 100%;
    height: auto;
  }

  /*商品一覧*/
  .item-category__title-group h2 {
    font-size: 24px;
  }

  /*求人案内*/
  .recruit-card h2 {
    font-size: 24px;
  }

  /*ご注文・お問い合わせ*/
  .reserve-form__title-group h2,
  .info-section__title-group h2,
  .news-section__title-group h2 {
    font-size: 24px;
  }

  .form-item {
    flex-direction: column;
    gap: 20px;
  }

  .form-item__image {
    width: 300px;
  }

  .form-item__title {
    text-align: center;
    font-size: 16px;
  }

  .form-item__options label {
    font-size: 16px;
  }

  .form-item__options {
    flex-direction: column;
    gap: 15px;
  }

  .form-item__quantity label {
    font-size: 16px;
  }
	
	.form-field__label {
    font-size: 16px;
	}

  .form-item__quantity {
    justify-content: center;
  }

  .info-content {
    flex-direction: column;
  }

  .info-map {
    width: 100%;
    height: 300px;
  }

}

@media (max-width: 480px) {

  /* Narrow screens adjustments */
  .hero {
    height: 450px;
  }

  .hero-image-slider .slick-slide img {
    height: 450px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-text .large {
    font-size: 18px;
  }

  .news-inner .date {
    width: 72px;
    font-size: 12px;
  }

  .news-inner .title {
    font-size: 13px;
  }

  .menu-item {
    width: 100%;
  }

  .commitment-item-text h3 {
    font-size: 16px;
  }

  .commitment-item-text p {
    font-size: 13px;
  }

  /* Single column for recruit/info blocks */
  .about-info__content,
  .news-inner,
  .recruit-inner {
    flex-direction: column;
  }

  /* Buttons smaller */
  .button {
    font-size: 14px;
  }

  .to-top {
    position: absolute;
    right: 15px;
    bottom: 15px;
  }

  .to-top img {
    width: 41px;
    height: 41px;
  }

  .footer-bg {
    padding: 20px 0;
  }
}

/* Recruit Page */
.recruit-section {
  padding: 80px 0;
  background-image: url(img/bg_mokume.webp);
  background-size: cover;
  background-position: center;
}

.recruit-inner {
  max-width: 814px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruit-card {
  background: #fff;
  padding: 40px;
  box-shadow: 0px 6px 4.5px rgba(180, 180, 180, 0.25);
  text-align: center;
  margin-bottom: 60px;
}

.recruit-card img {
  width: 22px;
}

.recruit-list {
  text-align: left;
  margin: 50px 0;
}

.recruit-list dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  font-size: 15px;
  color: #333;
}

.recruit-list dd {
  margin-inline-start: 0;
}

.recruit-list p {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-bottom: 8px;
}

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

/* Single Post Page */
.post-container {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.post {
  background: #fff;
  padding: 40px;
  border-radius: 5px;
}

.post-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.post-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.post-meta {
  color: #888;
  font-size: 14px;
}

.post-content {
  line-height: 1.8;
  font-size: 16px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content a {
  color: #75b541;
  text-decoration: underline;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

.drawer-menu {
  position: fixed;
  top: 59px;
  left: -100%;
  width: 100%;
  height: 60%;
  background: rgba(94, 69, 75, 0.92);
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.drawer-menu.is-active {
  left: 0;
}

.drawer-nav {
  width: 80%;
}

.drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-nav li {
  margin: 20px 0;
  border-bottom: 1px solid #fff;
  padding: 10px 0;
}

.drawer-nav a {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
}

.drawer-contact {
  text-align: center;
  margin-top: 40px;
}

.drawer-contact .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.drawer-contact .tel span {
  font-size: 18px;
}

.drawer-contact .button {
  font-size: 16px;
}


/* Show hamburger on mobile */
@media (max-width: 1100px) {

  .main-nav,
  .header-contact {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }
}

/* Hamburger animation to X */
.hamburger-menu.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}