@charset "UTF-8";
/* CSS Document */
html {
  height: 100%;
}

body {
  font-family: "YakuHanJP", "Lato", "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 100%;
  height: 100%;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0 auto;
  background: #fff;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

.sentence p + p {
  margin-top: 20px;
}

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

.ggmap {
  width: 100%;
  height: 350px;
}

input, select {
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 5px;
}

.phone {
  display: none;
}

.pc {
  display: block;
}

.tcen {
  text-align: center;
}

@media screen and (max-width: 800px) {
  .tcen {
    text-align: left;
  }
  body {
    font-size: 13px;
    line-height: 1.5;
  }
  .phone {
    display: block;
  }
  .pc {
    display: none !important;
  }
}
#page-top {
  position: fixed;
  bottom: 65px;
  right: 5px;
  font-size: 12px;
  font-weight: bold;
  z-index: 9999;
}
#page-top a {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  border-radius: 45px;
  background: #5c4233;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
}
#page-top a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.mtext1 {
  font-size: 2rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.mtext1.type1 {
  margin-bottom: 25px;
  text-align: center;
}
.mtext1.type1 br {
  display: none;
}

@media all and (max-width: 896px) {
  .mtext1 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .mtext1.type1 {
    margin-bottom: 20px;
  }
  .mtext1.type1 br {
    display: block;
  }
}
.mtext2 {
  font-size: 2.4rem;
  line-height: 1.6;
}
.mtext2.type1 {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

@media all and (max-width: 896px) {
  .mtext2 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 2rem;
  }
  .mtext2.type1 {
    margin-bottom: 25px;
  }
}
.mtext3 {
  font-size: 4rem;
  line-height: 1.6;
  text-align: center;
}

@media all and (max-width: 896px) {
  .mtext3 {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 2.4rem;
  }
}
/* =============================================
  1. Variables（変数定義）
============================================= */
:root {
  --color-main: #007e53; /* メインカラー */
  --color-main-dark: #2E5439;
  --color-sub: #8FA383; /* サブカラー */
  --color-accent: #C08A4E; /* アクセントカラー */
  --color-base: #FAF5EA; /* ベースカラー（背景） */
  --color-base-deep: #F3EDDF; /* セクション背景 */
  --color-text: #3A3630;
  --color-text-light: #6E675C;
  --color-text-mute: #7A7266;
  --color-border: #E7DECA;
  --font-ja: "Zen Maru Gothic", sans-serif;
  --font-en: "Margarine", cursive;
  --width-site: 1200px;
  --width-inner: 1220px;
  --radius-s: 12px;
  --radius-m: 18px;
  --radius-full: 999px;
  --ease: .25s ease;
}

/* =============================================
  2. Reset CSS（リセット設定）
============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 横スクロール防止 */
}

h1, h2, h3, h4, p, figure, blockquote, dl, dt, dd, ul, ol, li, address {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

address {
  font-style: normal;
}

button {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

iframe {
  border: 0;
  max-width: 100%;
}

/* =============================================
  3. Base CSS（基本スタイル）
============================================= */
body {
  background: var(--color-base);
  color: var(--color-text);
  font-family: var(--font-ja);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
body.is-fixed {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14.5px;
  }
}

a {
  color: var(--color-main);
  transition: color var(--ease);
}
a:hover {
  color: var(--color-accent);
}

/* =============================================
  4. Layout（共通レイアウト）
============================================= */
.container {
  width: 100%;
  max-width: var(--width-inner);
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 1200px) {
  .container {
    padding-inline: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding-inline: 18px;
  }
}

.section--beige {
  position: relative;
  overflow: hidden;
  background: var(--color-base-deep);
}

/* =============================================
  5. Components & Parts（共通パーツ）
============================================= */
/* Heading */
.heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
@media screen and (max-width: 1024px) {
  .heading {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
  }
}
.heading__en {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--color-main);
}
@media screen and (max-width: 1024px) {
  .heading__en {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .heading__en {
    font-size: 26px;
  }
}
@media screen and (max-width: 500px) {
  .heading__en {
    font-size: 23px;
  }
}
.heading__ja {
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--color-text-mute);
}
.heading__note {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #A39A85;
}
@media screen and (max-width: 1024px) {
  .heading__note {
    width: 100%;
    margin-left: 0;
  }
}
.heading__link {
  margin-left: auto;
}
.heading__bar {
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 22px;
  border-radius: var(--radius-full);
  background: #C0B79F;
}
.heading__deco {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}
@media screen and (max-width: 767px) {
  .heading__deco {
    width: 44px;
    height: 44px;
  }
}
.heading__deco img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.heading__deco--right {
  margin-left: auto;
}

/* Link */
.link-underline {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: letter-spacing var(--ease), color var(--ease), border-color var(--ease);
}
.link-underline:hover {
  letter-spacing: 0.14em;
}

/* Button */
.btn {
  display: inline-block;
  padding: 15px 44px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(59, 107, 74, 0.22);
}
.btn--fill {
  background: var(--color-main);
  color: var(--color-base);
}
.btn--fill:hover {
  background: var(--color-main-dark);
  color: var(--color-base);
}
.btn--line {
  border: 1px solid var(--color-main);
  color: var(--color-main);
}
.btn--line:hover {
  background: var(--color-main);
  color: var(--color-base);
}

/* Decoration */
.deco {
  pointer-events: none;
}
.deco img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.deco--bg {
  position: absolute;
  z-index: 0;
}
.deco--bg-lb {
  left: -40px;
  bottom: -30px;
  width: 210px;
  height: 210px;
  opacity: 0.28;
}
.deco--bg-rt {
  right: -36px;
  top: -26px;
  width: 180px;
  height: 180px;
  opacity: 0.24;
}
.deco--bg-rt2 {
  right: -20px;
  top: 56px;
  width: 190px;
  height: 190px;
  opacity: 0.3;
}
.deco--bg-lb2 {
  left: -34px;
  bottom: 24px;
  width: 170px;
  height: 170px;
  opacity: 0.26;
}
.deco--bg-rb {
  right: -50px;
  bottom: -40px;
  width: 230px;
  height: 230px;
  opacity: 0.26;
}
.deco--bg-lt {
  left: -40px;
  top: -30px;
  width: 180px;
  height: 180px;
  opacity: 0.24;
}
.deco--bg-lb3 {
  left: -24px;
  bottom: 20px;
  width: 180px;
  height: 180px;
  opacity: 0.28;
}
.deco--bg-rt3 {
  right: -26px;
  top: 70px;
  width: 170px;
  height: 170px;
  opacity: 0.24;
}
.deco--bg-lt2 {
  left: -30px;
  top: -10px;
  width: 180px;
  height: 180px;
  opacity: 0.28;
}
.deco--bg-rb2 {
  right: -34px;
  bottom: 24px;
  width: 170px;
  height: 170px;
  opacity: 0.24;
}
.deco--bg-lt3 {
  left: -46px;
  top: -30px;
  width: 200px;
  height: 200px;
  opacity: 0.26;
}
.deco--bg-rb3 {
  right: -40px;
  bottom: -34px;
  width: 190px;
  height: 190px;
  opacity: 0.22;
}
.deco--bg-foot {
  right: -30px;
  top: -24px;
  width: 180px;
  height: 180px;
  opacity: 0.16;
}
.deco--page-left {
  position: absolute;
  left: 40px;
  bottom: 26px;
  width: 96px;
  height: 96px;
  opacity: 0.9;
}
@media screen and (max-width: 1024px) {
  .deco--page-left {
    left: 16px;
    bottom: 16px;
    width: 72px;
    height: 72px;
  }
}
@media screen and (max-width: 767px) {
  .deco--page-left {
    display: none;
  }
}
.deco--mv-left {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 128px;
  height: 128px;
}
@media screen and (max-width: 1024px) {
  .deco--mv-left {
    left: 16px;
    bottom: 26px;
    width: 84px;
    height: 84px;
  }
}
.deco--mv-right {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 112px;
  height: 112px;
}
@media screen and (max-width: 1024px) {
  .deco--mv-right {
    right: 16px;
    top: 26px;
    width: 76px;
    height: 76px;
  }
}

/* =============================================
  6. Header & Navigation
============================================= */
.utility {
  background: var(--color-main);
  color: #F1EADA;
  font-size: 12.5px;
  letter-spacing: 0.05em;
}
.utility__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 8px 40px;
}
@media screen and (max-width: 1200px) {
  .utility__inner {
    padding-inline: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .utility__inner {
    padding: 7px 20px;
    font-size: 11.5px;
  }
}
@media screen and (max-width: 1024px) {
  .utility__text {
    display: none;
  }
}
.utility__sns {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .utility__sns {
    margin-left: auto;
  }
}
.utility__btn {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid rgba(250, 245, 234, 0.45);
  border-radius: var(--radius-full);
  color: var(--color-base);
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: background var(--ease), border-color var(--ease);
}
.utility__btn:hover {
  background: rgba(250, 245, 234, 0.16);
  border-color: var(--color-base);
  color: var(--color-base);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--color-base);
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 1024px) {
  .header {
    position: relative;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 20px 40px;
}
@media screen and (max-width: 1200px) {
  .header__inner {
    padding-inline: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .header__inner {
    justify-content: flex-start;
    padding: 14px 76px 14px 20px;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  display: block;
  height: 56px;
  width: auto;
  transition: opacity var(--ease);
}
@media screen and (max-width: 1024px) {
  .header__logo img {
    height: 44px;
  }
}
.header__logo:hover img {
  opacity: 0.7;
}
.header__contact {
  flex-shrink: 0;
  text-align: right;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .header__contact {
    display: none;
  }
}
.header__hours {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-sub);
}
.header__tel {
  font-family: var(--font-en);
  font-size: 25px;
  letter-spacing: 0.03em;
  color: var(--color-main);
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .header__tel {
    font-size: 22px;
  }
}

.gnav {
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .gnav {
    display: none;
  }
}
.gnav__list {
  display: flex;
  align-items: flex-end;
  gap: 26px;
}
@media screen and (max-width: 1200px) {
  .gnav__list {
    gap: 18px;
  }
}
.gnav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.gnav__link:hover .gnav__ja,
.gnav__link:hover .gnav__en {
  color: var(--color-accent);
}
.gnav__ja {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text);
  transition: color var(--ease);
}
.gnav__en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--color-sub);
  transition: color var(--ease);
}

/* ハンバーガー & ドロワー */
.hamburger {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-full);
  background: var(--color-main);
}
@media screen and (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
}
.hamburger__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--color-base);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(320px, 86vw);
  height: 100dvh;
  padding: 76px 28px 40px;
  overflow-y: auto;
  background: var(--color-base);
  box-shadow: -8px 0 30px rgba(58, 54, 48, 0.16);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  visibility: hidden;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}
.drawer__close {
  position: absolute;
  right: 18px;
  top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-main);
  color: var(--color-base);
  font-size: 24px;
  line-height: 1;
  transition: background var(--ease);
}
.drawer__close:hover {
  background: var(--color-main-dark);
}
.drawer__list {
  display: flex;
  flex-direction: column;
}
.drawer__list a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--color-border);
}
.drawer__ja {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text);
}
.drawer__en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--color-sub);
}
.drawer__contact {
  margin-top: 32px;
  text-align: center;
}
.drawer__tel {
  font-family: var(--font-en);
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--color-main);
}
.drawer__hours {
  margin-top: 4px;
  font-size: 12px;
  color: var(--color-text-mute);
}
.drawer__sns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.drawer__sns a {
  padding: 8px 20px;
  border: 1px solid var(--color-main);
  border-radius: var(--radius-full);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--color-main);
  transition: background var(--ease), color var(--ease);
}
.drawer__sns a:hover {
  background: var(--color-main);
  color: var(--color-base);
}
.drawer__overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(46, 40, 30, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.drawer__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* =============================================
  7. Main Visual & Page Header
============================================= */
.mv {
  position: relative;
  width: 100%;
  height: 840px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .mv {
    height: 440px;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    height: 380px;
  }
}
@media screen and (max-width: 500px) {
  .mv {
    height: 330px;
  }
}
.mv__slides, .mv__slide {
  position: absolute;
  inset: 0;
}
.mv__slide {
  opacity: 0;
  transition: opacity 1.4s ease;
}
.mv__slide.is-active {
  opacity: 1;
}
.mv__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(46, 40, 30, 0.34) 0%, rgba(46, 40, 30, 0.12) 40%, rgba(46, 40, 30, 0.46) 100%);
  z-index: 5;
}
.mv__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 96px;
  padding-inline: 60px;
  text-align: center;
  pointer-events: none;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  .mv__copy {
    bottom: 72px;
    padding-inline: 24px;
  }
}
@media screen and (max-width: 767px) {
  .mv__copy {
    bottom: 64px;
  }
}
.mv__lead {
  margin-bottom: 20px;
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #F0E7D2;
}
@media screen and (max-width: 1024px) {
  .mv__lead {
    font-size: 13px;
    margin-bottom: 14px;
  }
}
.mv__catch {
  max-width: 960px;
  margin-inline: auto;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: #FFFCF4;
  text-shadow: 0 2px 28px rgba(40, 34, 24, 0.45);
  text-wrap: balance;
}
@media screen and (max-width: 1200px) {
  .mv__catch {
    font-size: 38px;
  }
}
@media screen and (max-width: 1024px) {
  .mv__catch {
    font-size: 28px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .mv__catch {
    font-size: 22px;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 500px) {
  .mv__catch {
    font-size: 19px;
  }
}
.mv__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.mv__dot {
  width: 34px;
  height: 3px;
  border-radius: var(--radius-full);
  background: rgba(255, 252, 244, 0.4);
  transition: background var(--ease);
}
@media screen and (max-width: 767px) {
  .mv__dot {
    width: 26px;
  }
}
.mv__dot.is-active {
  background: #FFFCF4;
}

.page-head {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .page-head {
    height: 220px;
  }
}
@media screen and (max-width: 767px) {
  .page-head {
    height: 180px;
  }
}
.page-head__img, .page-head__overlay {
  position: absolute;
  inset: 0;
}
.page-head__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-head__overlay {
  pointer-events: none;
  background: rgba(46, 40, 30, 0.42);
}
.page-head__title {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.page-head__en {
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #F0E7D2;
}
@media screen and (max-width: 767px) {
  .page-head__en {
    font-size: 13px;
  }
}
.page-head__ja {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFCF4;
  text-shadow: 0 2px 24px rgba(40, 34, 24, 0.4);
}
@media screen and (max-width: 1024px) {
  .page-head__ja {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .page-head__ja {
    font-size: 21px;
    letter-spacing: 0.06em;
  }
}

.breadcrumb {
  padding-block: 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 12.5px;
  color: var(--color-text-mute);
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 11.5px;
  }
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .breadcrumb__list {
    flex-wrap: wrap;
    gap: 6px;
  }
}
.breadcrumb__list li + li::before {
  content: "／";
  margin-right: 10px;
  color: #BDB4A0;
}
@media screen and (max-width: 767px) {
  .breadcrumb__list li + li::before {
    margin-right: 6px;
  }
}

/* =============================================
  8. Content Sections
============================================= */
/* Topics */
.topics {
  padding-block: 76px;
}
@media screen and (max-width: 1024px) {
  .topics {
    padding-block: 56px;
  }
}

.news {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
@media screen and (max-width: 1024px) {
  .news {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
@media screen and (max-width: 767px) {
  .news {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }
}
.news__link {
  display: block;
  padding: 14px;
  border-radius: var(--radius-m);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news__link {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    grid-template-rows: auto auto;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 6px;
    align-content: center;
    padding: 12px;
  }
}
@media screen and (max-width: 500px) {
  .news__link {
    grid-template-columns: 104px minmax(0, 1fr);
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
.news__link:hover {
  transform: translateY(-6px);
  background: var(--color-base);
  box-shadow: 0 14px 30px rgba(90, 78, 55, 0.13);
}
.news__link:hover .news__title {
  color: var(--color-accent);
}
.news__thumb {
  height: 158px;
  margin-bottom: 15px;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 767px) {
  .news__thumb {
    grid-column: 1;
    grid-row: 1/span 2;
    height: 100px;
    margin-bottom: 0;
    align-self: center;
  }
}
@media screen and (max-width: 500px) {
  .news__thumb {
    height: 84px;
  }
}
.news__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .news__meta {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .news__meta {
    flex-wrap: wrap;
    gap: 6px;
  }
}
.news__date {
  font-family: var(--font-en);
  font-size: 14.5px;
  letter-spacing: 0.04em;
  color: var(--color-sub);
}
@media screen and (max-width: 767px) {
  .news__date {
    font-size: 14px;
  }
}
.news__cat {
  padding: 2px 10px;
  border-radius: var(--radius-full);
  background: var(--color-sub);
  color: var(--color-base);
  font-size: 10.5px;
  letter-spacing: 0.1em;
}
.news__cat--sale {
  background: var(--color-accent);
}
.news__title {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--color-text);
  transition: color var(--ease);
}
@media screen and (max-width: 767px) {
  .news__title {
    grid-column: 2;
    grid-row: 2;
    font-size: 16px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 500px) {
  .news__title {
    font-size: 15px;
  }
}

/* Greeting */
.greeting {
  position: relative;
  padding-block: 96px 88px;
}
@media screen and (max-width: 1024px) {
  .greeting {
    padding-block: 60px 56px;
  }
}
.greeting__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .greeting__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
}
.greeting__main {
  height: 680px;
  border-radius: 14px;
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 1024px) {
  .greeting__main {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .greeting__main {
    height: 230px;
  }
}
.greeting__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.greeting__subphotos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
@media screen and (max-width: 1024px) {
  .greeting__subphotos {
    gap: 14px;
    margin-bottom: 32px;
  }
}
.greeting__sub {
  height: 230px;
  border-radius: 14px;
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 1024px) {
  .greeting__sub {
    height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .greeting__sub {
    height: 130px;
  }
}
.greeting__sub img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.greeting__sub--offset {
  margin-top: 36px;
}
@media screen and (max-width: 1024px) {
  .greeting__sub--offset {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .greeting__sub--offset {
    margin-top: 18px;
  }
}
.greeting__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .greeting__head {
    margin-bottom: 24px;
  }
}
.greeting__head .heading__deco {
  margin-bottom: 6px;
}
.greeting__head .heading__en {
  line-height: 1.1;
}
.greeting__lead {
  margin-bottom: 22px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--color-main);
  text-wrap: balance;
}
@media screen and (max-width: 1024px) {
  .greeting__lead {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .greeting__lead {
    font-size: 19px;
  }
}
.greeting__text {
  font-size: 15.5px;
  line-height: 2.2;
  color: #4A443B;
  text-wrap: pretty;
}
@media screen and (max-width: 767px) {
  .greeting__text {
    font-size: 14.5px;
    line-height: 2.05;
  }
}
.greeting__text p + p {
  margin-top: 18px;
}

/* Gift */
.gift {
  padding-block: 88px;
}
@media screen and (max-width: 1024px) {
  .gift {
    padding-block: 56px;
  }
}
.gift__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .gift__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}
.gift__photos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .gift__photos {
    gap: 10px;
  }
}
.gift__photo {
  height: 290px;
  border-radius: 14px;
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 1024px) {
  .gift__photo {
    height: 220px;
  }
}
@media screen and (max-width: 767px) {
  .gift__photo {
    height: 170px;
  }
}
.gift__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gift__photo--offset {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .gift__photo--offset {
    margin-top: 20px;
  }
}
.gift__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.gift__head .heading__deco {
  width: 52px;
  height: 52px;
  margin-left: auto;
}
.gift__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color-main);
}
@media screen and (max-width: 1024px) {
  .gift__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .gift__title {
    font-size: 21px;
  }
}
.gift__en {
  margin-bottom: 26px;
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--color-sub);
}
.gift__text {
  margin-bottom: 32px;
  font-size: 15.5px;
  line-height: 2.2;
  color: #4A443B;
  text-wrap: pretty;
}
@media screen and (max-width: 767px) {
  .gift__text {
    font-size: 14.5px;
  }
}

/* Goods / Scene / Items */
.scene {
  position: relative;
  padding-block: 88px 80px;
}
@media screen and (max-width: 1024px) {
  .scene {
    padding-block: 56px 48px;
  }
}
.scene__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .scene__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}
.scene__thumb {
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 1024px) {
  .scene__thumb {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .scene__thumb {
    height: 190px;
  }
}
.scene__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.scene__text {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-main);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .scene__text {
    font-size: 17px;
  }
}

.items {
  padding-block: 84px;
}
.items__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.items__thumb {
  height: 220px;
  margin-bottom: 14px;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: #E5DCC8;
}
.items__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.items__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-main);
  text-align: center;
}

/* Intro (Wear / Inner) */
.intro {
  position: relative;
  padding-block: 90px 84px;
}
@media screen and (max-width: 1024px) {
  .intro {
    padding-block: 56px;
  }
}
.intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .intro__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
}
.intro__photo {
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 1024px) {
  .intro__photo {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .intro__photo {
    height: 230px;
  }
}
.intro__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro__lead {
  margin-bottom: 22px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-main);
  text-wrap: balance;
}
@media screen and (max-width: 1024px) {
  .intro__lead {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .intro__lead {
    font-size: 19px;
  }
}
.intro__text {
  font-size: 15.5px;
  line-height: 2.2;
  color: #4A443B;
  text-wrap: pretty;
}
@media screen and (max-width: 767px) {
  .intro__text {
    font-size: 14.5px;
  }
}
.intro__text + .intro__text {
  margin-top: 18px;
}

/* Brand */
.brand-sec {
  position: relative;
  padding-block: 88px;
}
@media screen and (max-width: 1024px) {
  .brand-sec {
    padding-block: 56px;
  }
}

.brands {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .brands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .brands {
    gap: 14px;
  }
}
.brands__thumb {
  margin-bottom: 14px;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: #E5DCC8;
}
.brands__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brands__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-main);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .brands__name {
    font-size: 14.5px;
  }
}

/* Cards (Content Section) */
.content {
  position: relative;
  padding-block: 92px 84px;
}
@media screen and (max-width: 1024px) {
  .content {
    padding-block: 60px 56px;
  }
}

.cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  display: block;
  padding: 16px 16px 28px;
  border-radius: var(--radius-m);
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(90, 78, 55, 0.13);
}
.card:hover .card__title {
  color: var(--color-accent);
}
.card__thumb {
  height: 240px;
  margin-bottom: 22px;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 1024px) {
  .card__thumb {
    height: 190px;
  }
}
@media screen and (max-width: 767px) {
  .card__thumb {
    height: 200px;
  }
}
.card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.card__num {
  font-family: var(--font-en);
  font-size: 28px;
  line-height: 1;
  color: var(--color-accent);
}
.card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-main);
  transition: color var(--ease);
}
.card__text {
  font-size: 13.5px;
  line-height: 2;
  color: var(--color-text-light);
}

/* Gallery / Marquee */
.gallery {
  position: relative;
  overflow: hidden;
  padding-bottom: 92px;
}
@media screen and (max-width: 1024px) {
  .gallery {
    padding-bottom: 56px;
  }
}
.gallery .heading {
  margin-bottom: 30px;
}

.marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee__item {
  flex-shrink: 0;
  width: 300px;
  height: 220px;
  margin-right: 14px;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 1024px) {
  .marquee__item {
    width: 220px;
    height: 160px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .marquee__item {
    width: 180px;
    height: 130px;
  }
}
@media screen and (max-width: 500px) {
  .marquee__item {
    width: 150px;
    height: 110px;
  }
}
.marquee__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* =============================================
  9. News Archive & Entry
============================================= */
.archive {
  position: relative;
  padding-block: 88px 80px;
}
@media screen and (max-width: 1024px) {
  .archive {
    padding-block: 56px 48px;
  }
}
.archive__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.archive__link {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-m);
  transition: background 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .archive__link {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    padding: 12px;
  }
}
@media screen and (max-width: 767px) {
  .archive__link {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
}
.archive__link:hover {
  background: var(--color-base-deep);
  transform: translateX(6px);
}
.archive__link:hover .archive__title {
  color: var(--color-accent);
}
.archive__thumb {
  height: 140px;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 1024px) {
  .archive__thumb {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .archive__thumb {
    height: 170px;
  }
}
.archive__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text);
  transition: color var(--ease);
}
@media screen and (max-width: 1024px) {
  .archive__title {
    font-size: 16px;
  }
}
.archive__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 56px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .archive__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
}

.side {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 16px;
}
.side__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-main);
}
.side__en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-sub);
}
.side__list {
  display: flex;
  flex-direction: column;
}
.side__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--color-text);
  transition: background var(--ease), color var(--ease);
}
.side__list a:hover {
  background: var(--color-base-deep);
  color: var(--color-accent);
}
.side__count {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--color-sub);
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .pager {
    gap: 8px;
    margin-top: 40px;
  }
}
.pager__num, .pager__next {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  height: 44px;
  padding-inline: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-en);
  font-size: 15px;
  color: var(--color-main);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
@media screen and (max-width: 767px) {
  .pager__num, .pager__next {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
.pager__num:hover, .pager__num.is-current, .pager__next:hover, .pager__next.is-current {
  background: var(--color-main);
  border-color: var(--color-main);
  color: var(--color-base);
}

.entry {
  position: relative;
  max-width: 880px;
  padding-block: 88px 80px;
}
@media screen and (max-width: 1024px) {
  .entry {
    padding-block: 56px 48px;
  }
}
.entry__head {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.entry__title {
  margin-top: 14px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color-main);
}
@media screen and (max-width: 1024px) {
  .entry__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .entry__title {
    font-size: 20px;
  }
}
.entry__thumb {
  position: relative;
  z-index: 1;
  height: 420px;
  margin-bottom: 40px;
  border-radius: 14px;
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 1024px) {
  .entry__thumb {
    height: 260px;
  }
}
@media screen and (max-width: 767px) {
  .entry__thumb {
    height: 200px;
  }
}
.entry__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.entry__body {
  position: relative;
  z-index: 1;
  font-size: 15.5px;
  line-height: 2.2;
  color: #4A443B;
}
@media screen and (max-width: 767px) {
  .entry__body {
    font-size: 14.5px;
  }
}
.entry__body p + p,
.entry__body p + ul {
  margin-top: 20px;
}
.entry__body h2 {
  margin: 44px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .entry__body h2 {
    font-size: 19px;
    margin-top: 34px;
  }
}
.entry__body h3 {
  margin: 34px 0 14px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .entry__body h3 {
    font-size: 16.5px;
  }
}
.entry__body ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 1.2em;
  list-style: disc;
}
.entry__foot {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  text-align: center;
}

/* =============================================
  10. Store & Contact
============================================= */
.store {
  padding-block: 88px;
}
@media screen and (max-width: 1024px) {
  .store {
    padding-block: 56px;
  }
}
.store__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .store__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}
.store__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.store__head .heading__en {
  line-height: 1.1;
}
.store__head .heading__ja {
  margin-top: 6px;
}
.store__btns {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .store__btns {
    flex-direction: column;
  }
}
.store__btns .btn {
  flex: 1;
  padding: 15px 8px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
}
.store__map {
  height: 430px;
  border-radius: 14px;
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 1024px) {
  .store__map {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .store__map {
    height: 240px;
  }
}
.store__map iframe {
  width: 100%;
  height: 100%;
}

.store-page {
  position: relative;
  padding-block: 88px 80px;
}
@media screen and (max-width: 1024px) {
  .store-page {
    padding-block: 56px 48px;
  }
}
.store-page__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .store-page__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}
.store-page__photos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .store-page__photos {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .store-page__photos {
    flex-direction: column;
  }
}
.store-page__photo {
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 1024px) {
  .store-page__photo {
    flex: 1;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .store-page__photo {
    height: 190px;
  }
}
.store-page__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  row-gap: 15px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 32px;
  font-size: 14.5px;
  line-height: 1.95;
}
@media screen and (max-width: 767px) {
  .info {
    grid-template-columns: 78px minmax(0, 1fr);
    font-size: 14px;
  }
}
.info__term {
  color: var(--color-sub);
  letter-spacing: 0.08em;
}

.access {
  padding-block: 84px;
}
@media screen and (max-width: 1024px) {
  .access {
    padding-block: 56px;
  }
}
.access__map {
  position: relative;
  z-index: 1;
  height: 460px;
  border-radius: 14px;
  overflow: hidden;
  background: #E5DCC8;
}
@media screen and (max-width: 1024px) {
  .access__map {
    height: 320px;
  }
}
@media screen and (max-width: 767px) {
  .access__map {
    height: 260px;
  }
}
.access__map iframe {
  width: 100%;
  height: 100%;
}

.contact {
  position: relative;
  padding-block: 88px 96px;
}
@media screen and (max-width: 1024px) {
  .contact {
    padding-block: 56px 64px;
  }
}
.contact__lead {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  font-size: 15.5px;
  line-height: 2.1;
  color: #4A443B;
}
.contact__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .contact__cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}
.contact__card {
  padding: 36px 32px;
  border-radius: var(--radius-m);
  background: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__card {
    padding: 28px 20px;
  }
}
.contact__label {
  margin-bottom: 12px;
  font-family: var(--font-en);
  font-size: 17px;
  letter-spacing: 0.16em;
  color: var(--color-sub);
}
.contact__tel {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-en);
  font-size: 38px;
  letter-spacing: 0.03em;
  color: var(--color-main);
}
@media screen and (max-width: 1024px) {
  .contact__tel {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .contact__tel {
    font-size: 27px;
  }
}
.contact__note {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-light);
}
.contact__note--top {
  margin-bottom: 22px;
}

.contact-band {
  padding-block: 72px;
}
@media screen and (max-width: 1024px) {
  .contact-band {
    padding-block: 48px;
  }
}
.contact-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .contact-band__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}
.contact-band__lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--color-main);
}
@media screen and (max-width: 1024px) {
  .contact-band__lead {
    font-size: 15.5px;
    text-align: center;
  }
}
.contact-band__btns {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .contact-band__btns {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .contact-band__btns {
    flex-direction: column;
  }
}

/* =============================================
  11. Footer
============================================= */
.footer {
  position: relative;
  overflow: hidden;
  padding: 60px 0 26px;
  background: var(--color-main);
  color: #E9E1CD;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 48px 0 22px;
  }
}
.footer a {
  color: #E9E1CD;
}
.footer a:hover {
  color: #F2DDB4;
}
.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
  }
}
@media screen and (max-width: 767px) {
  .footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 767px) {
  .footer__brand {
    grid-column: auto;
  }
}
.footer__en {
  margin-bottom: 7px;
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.16em;
  color: #A8BC9C;
}
.footer__name {
  margin-bottom: 22px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #FFFCF4;
}
.footer__address {
  font-size: 13.5px;
  line-height: 2.1;
  color: #DCD3BD;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-top: 10px;
  font-size: 13.5px;
}
.footer__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--width-inner);
  margin: 46px auto 0;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(233, 225, 205, 0.22);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #A8BC9C;
}
@media screen and (max-width: 1200px) {
  .footer__copy {
    padding-inline: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__copy {
    padding-inline: 20px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .footer__copy {
    padding-inline: 18px;
  }
}

/*新メールフォーム*/
.form {
  margin: 10px 0 10px;
}
.form dt span {
  color: #fff;
  background: #FF4F4F;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dt strong {
  color: #fff;
  background: #999;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dt .optional::before {
  content: "任意";
  color: #fff;
  background: #999;
}
.form dl {
  margin: 10px 0;
  font-size: 16px;
}
.form dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}
.form dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
}
.form dd p {
  font-size: 14px;
  padding-top: 5px;
  color: #888;
}
.form dd:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
}

.dropdown {
  border-radius: 2px;
  border: 1px solid #ddd;
}

.textarea, .textarea2 {
  width: 95%;
  border-radius: 2px;
  border: 1px solid #ddd;
  padding: 5px;
}

.form-button {
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  margin: 10px 0;
}

#mailform button {
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  display: block;
  margin: 0 auto 5px;
  padding: 10px 0 10px;
  color: #fff;
  text-align: center;
  width: 250px;
  border-radius: 5px;
  background: #5c4233;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #5c4233;
}
#mailform button:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #5c4233;
}
#mailform button * {
  transition: 0.2s;
}

.form-button * {
  transition: 0.2s;
}

/*RadioとText*/
label {
  display: block;
}
label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #5c4233;
  z-index: 1;
}
label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  left: -15px;
  top: 2px;
  margin: 0px;
  box-shadow: 15px -1px #fff;
  border-radius: 50%;
}
label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 15px -1px #FFF;
}
label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
}
label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}
label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #5c4233;
  border-bottom: 3px solid #5c4233;
  transform: rotate(45deg);
  z-index: 1;
}
label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #EEE;
}

/*CheckBoxとText */
.fm-text {
  padding: 10px;
  font-size: 11px;
  margin: 10px 0;
}

@media all and (max-width: 890px) {
  .form dl {
    margin: 10px 0;
  }
  .form dt {
    float: none;
    width: 100%;
    line-height: 20px;
    padding-top: 10px;
  }
  .form dd {
    width: 100%;
    padding-left: 0;
    padding-bottom: 10px;
    padding-top: 10px;
    line-height: 20px;
    border-bottom: 1px solid #eee;
  }
  .form dd:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .form-contents :not(.pattern-exclusion) button {
    width: 100% !important;
  }
}
/* /新メールフォーム */
.blog-box {
  margin-bottom: 50px;
}
.blog-box img {
  max-width: 100%;
  height: auto;
}

.page_next {
  float: right;
}

.page_prev {
  float: left;
}

.mtitle_box {
  background: rgba(23, 125, 23, 0.1);
  border-radius: 10px;
  color: #343338;
  font-size: 2rem;
  position: relative;
  padding: 10px 10px;
  margin-bottom: 20px;
  font-weight: 700;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}

@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.8rem;
  }
}
.newsl2 dt {
  font-size: 120%;
  padding-top: 10px;
  line-height: 1.3;
  color: #5c4233;
  font-weight: bold;
}
.newsl2 dd {
  padding-bottom: 5px;
  padding-top: 10px;
  margin-bottom: 15px;
  line-height: 1.6;
  border-bottom: dotted 1px #b6ae83;
}
.newsl2 dd b {
  color: #594C39;
}/*# sourceMappingURL=basis.css.map */