* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #7f877f;
  background: #edf2ee;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(16px, 1.2vw, 16px);
  line-height: 2;
  letter-spacing: 0.08em;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.section-wide,
.section-narrow,
.section-full {
  width: min(100% - 72px, 1320px);
  margin: 0 auto;
}

.section-narrow {
  width: min(100% - 72px, 1040px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(237, 242, 238, 0.88);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 8px 24px rgba(90, 96, 90, 0.08);
          box-shadow: 0 8px 24px rgba(90, 96, 90, 0.08);
}
.site-header.is-scrolled .global-nav a,
.site-header.is-scrolled .menu-toggle span {
  color: #6d756d;
}

.header-inner {
  width: min(100% - 72px, 1320px);
  margin: 0 auto;
  padding: 25px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}

.site-logo {
  width: 240px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.global-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}
.global-nav a {
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.12em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.global-nav a:hover {
  opacity: 0.7;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.menu-toggle.is-active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("../img/fv.png") center center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(230, 214, 201, 0.28);
}

.hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.hero-label {
  font-family: "Lora", serif;
  font-size: 30px;
  letter-spacing: 0.08em;
}

.floating-shop {
  position: fixed;
  right: 50px;
  bottom: 150px;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 35px 0 0 0;
  color: #fff;
  text-align: center;
  line-height: 1.6;
}

.floating-shop {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
}

.floating-shop.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.floating-shop:hover {
  background-color: #ccc;
  color: #7f877f;
}

.intro {
  padding: 95px 0 120px;
  text-align: center;
}

.section-heading {
  margin-bottom: 48px;
  text-align: center;
}
.section-heading.align-left {
  text-align: left;
}
.section-heading h2 {
  color: #9eb19c;
  font-family: "Lora", serif;
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.section-heading p {
  margin-top: 12px;
  font-size: 20px;
  letter-spacing: 0.2em;
}

.feature {
  padding-bottom: 120px;
}

.banner-card {
  overflow: hidden;
  border-radius: 4px;
  -webkit-box-shadow: 0 12px 30px rgba(80, 88, 80, 0.12);
          box-shadow: 0 12px 30px rgba(80, 88, 80, 0.12);
}

.story {
  padding-bottom: 132px;
}

.story-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
}

.story-image {
  width: 100%;
}

.story-copy h3 {
  margin-bottom: 28px;
  color: #6d756d;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
}
.story-copy p + p {
  margin-top: 22px;
}

.split-feature {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  border-top: 1px solid rgba(125, 133, 125, 0.4);
  border-bottom: 1px solid rgba(125, 133, 125, 0.4);
}

.split-panel {
  min-height: 720px;
}

.split-copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid rgba(125, 133, 125, 0.4);
}

.split-inner {
  width: min(100% - 72px, 520px);
}

.split-image {
  padding: 30px;
}
.split-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news {
  padding: 115px 0 150px;
}

.news-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 40px;
}

.news-thumb {
  -webkit-box-shadow: 0 12px 30px rgba(80, 88, 80, 0.12);
          box-shadow: 0 12px 30px rgba(80, 88, 80, 0.12);
}

.news-body h3 {
  margin: 20px 0 30px;
  color: #6d756d;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.6;
}

.news-meta {
  font-size: 15px;
  letter-spacing: 0.18em;
}

.outline-button,
.footer-shop-button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  min-width: 190px;
  padding: 10px 30px;
  border: 1px solid rgba(110, 118, 110, 0.75);
  font-family: "Lora", serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.outline-button:hover,
.footer-shop-button:hover {
  background: rgba(110, 118, 110, 0.9);
  color: #ffffff;
  border-color: rgba(110, 118, 110, 0.9);
}

.contact {
  padding-bottom: 156px;
  text-align: center;
}
.contact a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-note {
  display: inline-block;
  margin-top: 12px;
  font-size: 15px;
}

.site-footer {
  background: #b4c3b2;
  padding: 75px 0;
}

.footer-inner {
  width: min(100% - 72px, 1320px);
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  max-width: 460px;
}
.footer-brand img {
  width: 320px;
}
.footer-brand p {
  margin-top: 20px;
  color: #6d756d;
  font-size: 0.8rem;
  line-height: 2.1;
}

.footer-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.footer-shop-button {
  background: rgba(109, 117, 109, 0.78);
  color: #ffffff;
  border-color: transparent;
}

.footer-instagram,
.back-to-top {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(109, 117, 109, 0.5);
  border-radius: 50%;
  color: #6d756d;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 25px;
}

@media (max-width: 1100px) {
  .story-grid {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }
  .split-panel {
    min-height: 620px;
  }
  .news-card {
    grid-template-columns: 160px 1fr;
  }
  .news-action {
    grid-column: 2;
  }
}
@media (max-width: 900px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .header-inner,
  .section-wide,
  .section-narrow,
  .footer-inner {
    width: min(100% - 48px, 1320px);
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 40;
  }
  .global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(84vw, 320px);
    height: 100svh;
    padding: 130px 35px 50px;
    background: rgba(237, 242, 238, 0.96);
    -webkit-box-shadow: -8px 0 24px rgba(90, 96, 90, 0.08);
            box-shadow: -8px 0 24px rgba(90, 96, 90, 0.08);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }
  .global-nav a {
    color: #6d756d;
    font-size: 20px;
  }
  .global-nav.is-open {
    right: 0;
  }
  .story-grid,
  .split-feature,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .split-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(125, 133, 125, 0.4);
    min-height: auto;
    padding: 75px 0;
  }
  .split-image {
    padding: 25px;
  }
  .news-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .news-thumb {
    max-width: 100%;
    width: 100%;
  }
  .news-action {
    grid-column: auto;
  }
  .news-action p {
    font-size: 12px;
  }
  .footer-actions {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  body {
    line-height: 1.9;
  }
  .header-inner,
  .section-wide,
  .section-narrow,
  .footer-inner {
    width: min(100% - 32px, 1320px);
  }
  .header-inner {
    padding: 10px 0;
  }
  .site-logo {
    width: 180px;
  }
  .hero {
    min-height: 760px;
    background-position: 46% center;
  }
  .hero-label {
    font-size: 20px;
    letter-spacing: 0.12em;
  }
  .intro {
    padding: 10% 0;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .feature,
  .story,
  .news,
  .contact {
    padding: 10% 0;
  }
  .story-grid {
    gap: 32px;
  }
  .story-copy h3,
  .news-body h3 {
    font-size: 1.2rem;
  }
  .split-copy {
    padding: 60px 0;
  }
  .split-inner {
    width: min(100% - 32px, 520px);
  }
  .floating-shop {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 10%;
    font-size: 0.8rem;
    padding: 20px 0 0 0;
  }
  .outline-button,
  .footer-shop-button {
    min-width: 100%;
    padding: 15px 0px;
    font-size: 1.2rem;
  }
  .site-footer {
    padding: 10% 0;
  }
  .footer-brand p {
    font-size: 0.8rem;
  }
  .footer-brand img {
    width: 240px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-instagram,
  .back-to-top {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }
  .footer-instagram {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer-shop-button {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .section-heading p {
    font-size: 0.8rem;
  }
  .contact {
    text-align: left;
  }
}
.js-fade-up,
.js-blur-in {
  opacity: 0;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
  will-change: opacity, transform, filter;
}

.js-fade-up {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-blur-in {
  -webkit-filter: blur(8px);
          filter: blur(8px);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.js-fade-up.is-visible,
.js-blur-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-filter: blur(0);
          filter: blur(0);
}

@media (max-width: 768px) {
  .js-fade-up {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  .js-blur-in {
    -webkit-filter: blur(6px);
            filter: blur(6px);
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}