@charset "UTF-8";

/* =====================
  リセット
===================== */
body {
  margin: 0;
  font-family:
    "Optima",
    "Hiragino Mincho ProN",
    "ヒラギノ明朝 ProN W3",
    serif;
  color: #7d6b3c;
  background-color: #fcfdf3;
  background-image: url("../images/paper_texture.png");
  background-repeat: repeat;
  background-size: 400px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #7d6b3c;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #778a84;
}

/* =====================
  header
===================== */
.header {
  border-bottom: 1px solid #d4cb91;
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 120px;
  height: auto;
}

.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* =====================
  メインビジュアル
===================== */
.mv {
  padding: 80px 100px;
}

.mv-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-illust {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -10;
}

.mv-illust .left {
  left: -40%;
}

.mv-illust .right {
  right: -40%;
}

.mv-title {
  position: relative;
  z-index: 2;
  text-align: center;
}

.mv-title img {
  width: 340px;
  max-width: none;
  height: auto;
}

.en {
  font-size: 10px;
}

.date {
  margin-top: 4px;
  font-size: 14px;
}

/* =====================
  section
===================== */
.section {
  padding: 100px 20px;
  text-align: center;
}

.section-title-image {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-image img {
  display: inline-block;
  max-width: 200px;
}

.lead {
  font-size: 20px;
  margin-bottom: 30px;
}

.text {
  max-width: 780px;
  margin: 0 auto;
  line-height: 2;
}

/* =====================
  event
===================== */
.event-list {
  max-width: 960px;
  margin: 60px auto 0;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

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

.event-image {
  flex: 1;
}

.event-text {
  flex: 1;
  text-align: left;
}

.event-text h3 {
  margin-bottom: 20px;
}

.more {
  display: inline-block;
  margin-top: 15px;
  border-bottom: 1px solid #7d6b3c;
}

/* =====================
  access
===================== */
.access {
  padding: 120px 20px;
}

.access-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.access-info {
  width: 40%;
  text-align: left;
  line-height: 2;
}

.access-map {
  width: 60%;
}

.access-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* =====================
  shop
===================== */
.shop-title-image img {
  display: inline-block;
  max-width: 300px;
}

.shop-grid {
  max-width: 960px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 40px;
}

.shop-item {
  text-align: center;
  text-align: center;
  background-color: #fffdf7;
  /* 紙っぽい下地 */
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(125, 107, 60, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}

.shop-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(125, 107, 60, 0.18);
}

.shop-item img {
  margin-bottom: 20px;
}

.category {
  font-size: 12px;
  margin-bottom: 5px;
}

.name {
  font-size: 18px;
  letter-spacing: 0.05em;
}

.name span {
  font-size: 14px;
  margin-left: 6px;
}

/* =====================
  contact
===================== */
.contact {
  padding: 120px 20px 160px;
}

.contact-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.section-title-image {
  margin-bottom: 40px;
}

.section-title-image img {
  max-width: 220px;
}

.contact-lead {
  margin-bottom: 80px;
  line-height: 2;
}

/* =====================
  form
===================== */
.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 40px;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid #d4cb91;
  padding: 16px;
  border-radius: 6px;
}

.radio-group label {
  font-size: 14px;
}

input[type="email"],
input[type="text"],
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d4cb91;
  border-radius: 6px;
  background: transparent;
  font-family: inherit;
  color: #7d6b3c;
}

textarea {
  min-height: 180px;
  resize: none;
}

/* =====================
  submit
===================== */
.form-submit {
  text-align: center;
  margin-top: 80px;
}

.form-submit button {
  border-radius: 10px;
  padding: 12px 36px;
  border: 1px solid #d4cb91;
  background: transparent;
  color: #7d6b3c;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.form-submit button:hover {
  color: #ecefce;
  border-color: #d4cb91;
  background-color: #778a84;
}

/* =====================
  footer
===================== */
.footer {
  background-color: #778a84;
  color: #ecefce;
  text-align: center;
  padding: 30px 10px;
  font-size: 14px;
}

/* =====================
  レスポンシブ
===================== */
@media (max-width: 768px) {

  /* .nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mv-inner {
    flex-direction: column;
    gap: 40px;
  }
 */

  /* Access */
  .access-inner {
    flex-direction: column;
    gap: 24px;
  }

  .access-map {
    width: 100%;
    height: 220px;
  }

  .access-map iframe {
    width: 100%;
    height: 280px;
  }

  .access-info {
    width: 100%;
  }

  .access-info p {
    margin-bottom: 12px;
  }

  /* Shop */
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .shop-item {
    margin: 0 auto;
    max-width: 260px;
  }

  /* Contact */
  .contact {
    padding: 80px 20px 120px;
  }

  .radio-group {
    flex-direction: column;
    gap: 12px;
  }

  .section-title-image img {
    max-width: 180px;
  }
}