@import url("https://use.typekit.net/gyw7bos.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --gold: #cea212;
  --white: #f9f9fa;
  --hero-image: url("../img/main-bg.jpg");
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

html.is-opening,
html.is-opening body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: #27272d;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 961px) {
  body {
    min-width: 1080px;
  }
}

html.is-opening-skip-loading body,
html.is-opening-skip-ready body {
  transition: opacity 0.8s ease;
}

html.is-opening-skip-loading body {
  opacity: 0;
}

html.is-opening-skip-ready body {
  opacity: 1;
}

.main,
.lineup,
.power,
.about,
.quality,
.reason {
  scroll-margin-top: 90px;
}
@media (max-width: 960px) {
  .main,
  .lineup,
  .power,
  .about,
  .quality,
  .reason {
    scroll-margin-top: 76px;
  }
}

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

img {
  max-width: 100%;
}

.f-en {
  font-family: "gotham", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.f-jp-palt {
  font-family: "Noto Sans JP", sans-serif;
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media (min-width: 961px) {
  .is-sp {
    display: none;
  }
}
@media (max-width: 960px) {
  .is-pc {
    display: none;
  }
}
.main {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background: var(--white);
  z-index: 2;
}
.main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 1;
}
.main-catch {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 1;
  width: clamp(334px, 24vw, 480px);
  margin: 0;
  translate: -50% -50%;
  will-change: transform;
  transition: opacity 1.4s ease, scale 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.main-catch img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 960px) {
  .main-catch {
    width: 62%;
    max-width: 360px;
  }
}
@media (max-width: 560px) {
  .main-catch {
    max-width: 320px;
    padding-left: 16px;
  }
}
.is-opening .main-catch {
  opacity: 0;
  scale: 1.12;
}
.is-opening.is-opening-catch-visible .main-catch {
  opacity: 1;
  scale: 1;
}
@media (max-width: 960px) {
  .main {
    min-height: 720px;
  }
  .main::before {
    background-position: 38% top;
  }
}
@media (max-width: 560px) {
  .main {
    min-height: 640px;
  }
}

.opening-screen {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  background: var(--white);
  opacity: 1;
  transition: opacity 3s cubic-bezier(0.53, 0, 0.64, 1);
}

.is-opening .opening-screen {
  display: grid;
}

.is-opening-main-visible .opening-screen {
  opacity: 0;
  pointer-events: none;
}

.opening-title {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin: 0;
}
.opening-title span {
  display: inline-block;
  flex: 0 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: opening-letter-in 0.4s cubic-bezier(0.65, -0.01, 0.7, 1) forwards;
  animation-delay: var(--opening-delay);
}
.opening-title img {
  display: block;
  width: auto;
}

.is-opening-title-hold .opening-title {
  animation: opening-title-hold 2s linear forwards;
}

@keyframes opening-letter-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  72% {
    opacity: 1;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes opening-title-hold {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.site-header {
  position: fixed;
  width: 100%;
  z-index: 2;
  isolation: isolate;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 90px;
  padding-left: clamp(24px, 2.6vw, 40px);
  gap: clamp(24px, 3vw, 64px);
  background: transparent;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header::before {
  content: "";
  position: absolute;
  height: 120%;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}
.site-header.is-outside-main::before {
  opacity: 1;
}
@media (max-width: 960px) {
  .site-header {
    min-height: 64px;
    padding-left: 24px;
  }
}
@media (max-width: 560px) {
  .site-header {
    padding-left: 18px;
  }
}

.is-opening .site-header {
  opacity: 0;
  transform: translateY(-100%);
}

.is-opening.is-opening-header-visible .site-header {
  opacity: 1;
  transform: translateY(0);
}

.header-left {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 309px);
}
@media (max-width: 960px) {
  .header-left {
    width: auto;
  }
}

.logo {
  display: block;
  width: 180px;
  height: 40px;
}
.logo h1 {
  margin: 0;
}
.logo img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}
.site-header.is-outside-main .logo img {
  filter: none;
}
@media (max-width: 960px) {
  .logo {
    width: 142px;
    height: 32px;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 2vw, 40px);
  padding-left: 16px;
  color: var(--white);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.64px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.35s ease;
}
.nav a {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.nav a:hover::after, .nav a:focus-visible::after {
  transform: scaleX(1);
}
.site-header.is-outside-main .nav {
  color: #27272d;
}
@media (max-width: 960px) {
  .nav {
    display: none;
  }
}

.shop-button {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: clamp(214px, 20vw, 269px);
  min-height: 90px;
  border-bottom-left-radius: 4px;
  background: var(--gold);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
  line-height: 1.2;
  text-transform: uppercase;
}
.shop-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 14px;
  height: 12px;
  background: url("../img/btn-bg-img-black.svg") center/contain no-repeat;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.shop-button-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}
.shop-button span {
  position: relative;
  z-index: 1;
}
@media (max-width: 560px) {
  .shop-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}
@media (min-width: 961px) {
  .shop-button:hover, .shop-button:focus-visible {
    color: var(--gold);
  }
  .shop-button:hover::before, .shop-button:focus-visible::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(24);
  }
  .shop-button:hover .shop-button-icon, .shop-button:focus-visible .shop-button-icon {
    content: url("../img/icon-shop.svg");
  }
}
@media (max-width: 960px) {
  .shop-button {
    width: 190px;
    min-height: 64px;
    font-size: 15px;
  }
}
@media (max-width: 560px) {
  .shop-button {
    width: 72px;
    padding: 0 18px;
  }
}

.heading-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.heading-image img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 560px) {
  .heading-image img {
    height: 38px;
  }
}

.heading-image-split {
  flex-wrap: wrap;
  gap: 0;
}

.intro {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}
.intro-flower {
  position: absolute;
  top: -70px;
  right: 0;
  z-index: 0;
  display: block;
  width: clamp(300px, 24vw, 420px);
  pointer-events: none;
}
@media (max-width: 560px) {
  .intro-flower {
    top: -40px;
    width: 183px;
  }
}
.intro-heading {
  position: relative;
  z-index: 1;
  margin: 0 0 40px;
  text-align: center;
}
.intro-heading .heading-image {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}
@media (max-width: 560px) {
  .intro-heading .heading-image {
    font-size: 32px;
  }
}
.intro-heading .heading-subtitle {
  margin: 0;
  color: #27272d;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .intro-heading .heading-subtitle {
    font-size: 15px;
  }
}
@media (max-width: 560px) {
  .intro-heading {
    width: calc(100% - 40px);
    margin: 0 auto 40px;
  }
}
.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  width: calc(100% - 80px);
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    width: calc(100% - 48px);
    max-width: 620px;
  }
}
@media (max-width: 560px) {
  .intro-grid {
    width: calc(100% - 64px);
    gap: 44px;
  }
}
.intro-item {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 260px;
}
.intro-item-reverse {
  flex-direction: row-reverse;
}
.intro-item-reverse .intro-text {
  align-items: flex-end;
}
.intro-item-reverse .intro-text h3 {
  text-align: right;
}
@media (max-width: 960px) {
  .intro-item-reverse .intro-text h3 {
    text-align: left;
  }
}
@media (max-width: 960px) {
  .intro-item-reverse .intro-text {
    align-items: flex-start;
  }
}
@media (max-width: 960px) {
  .intro-item-reverse {
    flex-direction: row;
  }
}
@media (max-width: 560px) {
  .intro-item-reverse {
    flex-direction: column;
    gap: 24px;
    min-height: 0;
  }
}
@media (max-width: 960px) {
  .intro-item {
    flex-direction: row;
  }
}
@media (max-width: 560px) {
  .intro-item {
    flex-direction: column;
    gap: 24px;
    min-height: 0;
  }
}
.intro-image {
  display: block;
  width: clamp(220px, 18vw, 260px);
  object-fit: contain;
}
@media (max-width: 560px) {
  .intro-image {
    width: 240px;
    height: 240px;
    flex-basis: 240px;
  }
}
.intro-text {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}
.intro-text h3 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  color: #27272d;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.intro-text small {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}
.intro-text p {
  margin: 0;
  color: #27272d;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
}
@media (max-width: 960px) {
  .intro {
    padding: 72px 0;
  }
}
@media (max-width: 560px) {
  .intro {
    padding: 56px 0;
  }
}

.lineup {
  position: relative;
  padding: 88px 0;
}
.lineup-flower {
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
}
@media (max-width: 560px) {
  .lineup-flower {
    display: none;
  }
}
.lineup-flower-02 {
  top: -160px;
  left: 0;
  width: clamp(300px, 23vw, 420px);
}
.lineup-flower-03 {
  top: 130px;
  right: 0;
  width: clamp(300px, 24vw, 420px);
}
.lineup-heading {
  position: relative;
  z-index: 1;
  margin: 0 0 40px;
  text-align: center;
}
.lineup-heading .heading-image {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}
@media (max-width: 560px) {
  .lineup-heading .heading-image {
    font-size: 32px;
  }
}
.lineup-heading .heading-subtitle {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.lineup-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 88px;
  width: calc(100% - 80px);
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .lineup-inner {
    width: calc(100% - 48px);
    gap: 64px;
  }
}
@media (max-width: 560px) {
  .lineup-inner {
    width: calc(100% - 40px);
    gap: 56px;
  }
}
.lineup-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.lineup-category-classic {
  max-width: 728px;
}
.lineup-category-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}
.lineup-category-heading h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  margin: 0;
  color: #27272d;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 25px;
  text-transform: uppercase;
  white-space: nowrap;
}
.lineup-category-heading h3::before, .lineup-category-heading h3::after {
  content: "";
  display: block;
  height: 1px;
  flex: 1 1 auto;
  background: #bfc0c4;
}
@media (max-width: 560px) {
  .lineup-category-heading h3 {
    gap: 18px;
  }
}
.lineup-category-heading p {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media (max-width: 560px) {
  .lineup-category-heading p {
    font-size: 13px;
  }
}
@media (max-width: 560px) {
  .lineup-category {
    gap: 20px;
  }
}
.lineup-category-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
@media (max-width: 560px) {
  .lineup-category-content {
    gap: 20px;
  }
}
.lineup-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  width: 100%;
  align-items: start;
}
@media (max-width: 960px) {
  .lineup-sub-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
.lineup-products {
  width: 100%;
}
.lineup-products img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 560px) {
  .lineup-products {
    max-width: 100%;
  }
}
.lineup-products-classic {
  max-width: 720px;
}
@media (max-width: 560px) {
  .lineup-products-classic {
    width: 100%;
    max-width: 720px;
  }
}
.lineup-products-gourmet, .lineup-products-daily {
  width: 390px;
  max-width: 100%;
}
@media (max-width: 560px) {
  .lineup-products-gourmet, .lineup-products-daily {
    width: 100%;
    max-width: 390px;
  }
}
.lineup-description {
  margin: 0;
  color: #27272d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
}
@media (max-width: 560px) {
  .lineup-description {
    font-size: 13px;
  }
}
.lineup-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 40px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.lineup-button img {
  position: absolute;
  top: 50%;
  right: 18px;
  display: block;
  width: 28px;
  height: 7px;
  translate: 0 -50%;
  transition: translate 0.25s ease;
}
.lineup-button:hover, .lineup-button:focus-visible {
  background: rgba(206, 162, 18, 0.08);
}
.lineup-button:hover img, .lineup-button:focus-visible img {
  translate: 4px -50%;
}
.lineup-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.lineup-notice {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 16px 40px;
  border: 1px solid #ddd;
  color: #27272d;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  word-break: break-word;
}
.lineup-notice p {
  margin: 0;
}
.lineup-notice-title {
  flex-shrink: 0;
  color: #27272d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: justify;
  white-space: nowrap;
}
.lineup-notice-text {
  flex: 1 1 0;
  min-width: 0;
}
.lineup-notice-text p + p {
  margin-top: 0;
}
@media (max-width: 960px) {
  .lineup-notice {
    margin-top: -24px;
  }
}
@media (max-width: 560px) {
  .lineup-notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 0;
    padding: 14px 16px;
  }
}
@media (max-width: 960px) {
  .lineup {
    padding: 72px 0;
  }
}
@media (max-width: 560px) {
  .lineup {
    padding: 56px 0;
  }
}

.taste {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
  background: var(--white);
}
.taste-flower {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 0;
  display: block;
  width: 380px;
  pointer-events: none;
}
@media (max-width: 560px) {
  .taste-flower {
    display: none;
  }
}
.taste-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: calc(100% - 80px);
  max-width: 800px;
}
@media (max-width: 960px) {
  .taste-inner {
    width: calc(100% - 48px);
  }
}
@media (max-width: 560px) {
  .taste-inner {
    width: calc(100% - 40px);
    gap: 32px;
  }
}
.taste-heading {
  text-align: center;
}
.taste-heading .heading-image {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}
@media (max-width: 560px) {
  .taste-heading .heading-image {
    font-size: 32px;
  }
}
.taste-heading .heading-subtitle {
  margin: 0;
  color: #27272d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .taste-heading .heading-subtitle {
    font-size: 14px;
  }
}
.taste-image {
  display: block;
  width: 800px;
  max-width: 100%;
}
.taste-image img {
  display: block;
  width: 100%;
  height: auto;
}
.taste-note {
  margin: 0;
  color: #27272d;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 560px) {
  .taste-note {
    font-size: 11px;
  }
}
.taste-button {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 516px;
  max-width: calc(100% - 48px);
  min-height: 72px;
  padding: 0 80px 0 40px;
  border-radius: 4px;
  background: #27272d;
  color: var(--gold);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 0.35s ease;
}
.taste-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 14px;
  height: 12px;
  background: url("../img/btn-bg-img-gold.svg") center/contain no-repeat;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.taste-button > span {
  position: relative;
  z-index: 1;
}
.taste-button-icon {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  transition: filter 0.1s ease;
}
@media (max-width: 560px) {
  .taste-button-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
}
.taste-button-arrow {
  position: absolute;
  z-index: 1;
  right: 31px;
  top: 50%;
  width: 44px;
  height: 8px;
  transform: translateY(-50%);
  transition: filter 0.1s ease;
}
@media (max-width: 560px) {
  .taste-button-arrow {
    right: 22px;
    width: 36px;
  }
}
@media (min-width: 961px) {
  .taste-button:hover, .taste-button:focus-visible {
    color: var(--white);
  }
  .taste-button:hover::before, .taste-button:focus-visible::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(45);
  }
  .taste-button:hover .taste-button-icon,
  .taste-button:hover .taste-button-arrow, .taste-button:focus-visible .taste-button-icon,
  .taste-button:focus-visible .taste-button-arrow {
    filter: brightness(5);
  }
}
@media (max-width: 560px) {
  .taste-button {
    min-height: 64px;
    padding: 0 64px 0 24px;
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .taste {
    gap: 64px;
    padding: 72px 0;
  }
}
@media (max-width: 560px) {
  .taste {
    gap: 48px;
    padding: 56px 0;
  }
}

.power {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--gold);
  color: var(--white);
}
.power-flower {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.power-flower-left {
  left: 0;
  bottom: 0;
  width: clamp(300px, 24vw, 420px);
}
@media (max-width: 560px) {
  .power-flower-left {
    width: 240px;
  }
}
.power-flower-right {
  right: 0;
  top: 0;
  width: clamp(300px, 24vw, 420px);
}
@media (max-width: 560px) {
  .power-flower-right {
    width: 240px;
  }
}
.power-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: calc(100% - 80px);
  max-width: 968px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .power-inner {
    width: calc(100% - 48px);
  }
}
@media (max-width: 560px) {
  .power-inner {
    width: calc(100% - 40px);
    gap: 32px;
  }
}
.power-heading {
  text-align: center;
}
.power-heading .heading-image {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 560px) {
  .power-heading .heading-image {
    font-size: 32px;
  }
}
.power-heading .heading-subtitle {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .power-heading .heading-subtitle {
    font-size: 14px;
  }
}
.power-grid {
  display: grid;
  grid-template-columns: repeat(4, 194px);
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) {
  .power-grid {
    grid-template-columns: repeat(2, 194px);
    gap: 48px 64px;
  }
}
@media (max-width: 560px) {
  .power-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    justify-items: center;
  }
}
.power-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 194px;
}
@media (max-width: 560px) {
  .power-item {
    gap: 12px;
  }
}
.power-item h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  font-feature-settings: "palt";
}
@media (max-width: 560px) {
  .power-item h3 {
    font-size: 16px;
  }
}
.power-item p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
@media (max-width: 560px) {
  .power-item {
    width: min(260px, 100%);
  }
}
.power-title {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 128px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 160px 102px;
}
.power-title-01 {
  background-image: url("../img/power-bg01.svg");
}
.power-title-02 {
  background-image: url("../img/power-bg02.svg");
}
.power-title-03 {
  background-image: url("../img/power-bg03.svg");
}
.power-title-04 {
  background-image: url("../img/power-bg04.svg");
}
@media (max-width: 560px) {
  .power-title {
    height: 104px;
    background-size: 132px 84px;
  }
}
@media (max-width: 960px) {
  .power {
    padding: 72px 0;
  }
}
@media (max-width: 560px) {
  .power {
    padding: 56px 0;
  }
}

.about {
  padding: 88px 0;
  background: var(--white);
}
.about-heading {
  margin: 0 0 40px;
  text-align: center;
}
.about-heading .heading-image {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}
@media (max-width: 560px) {
  .about-heading .heading-image {
    font-size: 32px;
  }
}
.about-heading .heading-subtitle {
  margin: 0;
  color: #27272d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .about-heading .heading-subtitle {
    font-size: 14px;
  }
}
.about-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
  width: calc(100% - 160px);
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .about-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    max-width: 720px;
  }
}
@media (max-width: 560px) {
  .about-inner {
    width: calc(100% - 40px);
    gap: 32px;
  }
}
.about-image-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  .about-image-wrap {
    justify-content: center;
  }
}
.about-image {
  display: block;
  width: 558px;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
}
@media (max-width: 960px) {
  .about-content {
    padding-top: 0;
  }
}
@media (max-width: 560px) {
  .about-content {
    gap: 16px;
  }
}
.about-lead {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 560px) {
  .about-lead {
    gap: 16px;
  }
}
.about-lead h3 {
  margin: 0;
  color: #27272d;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media (max-width: 560px) {
  .about-lead h3 {
    font-size: 24px;
  }
}
.about-lead p {
  margin: 0;
  color: var(--gold);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media (max-width: 560px) {
  .about-lead p {
    font-size: 16px;
  }
}
.about-body {
  color: #27272d;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
}
.about-body p {
  margin: 0;
}
@media (max-width: 560px) {
  .about-body {
    font-size: 14px;
    line-height: 1.75;
  }
}
@media (max-width: 960px) {
  .about {
    padding: 72px 0;
  }
}
@media (max-width: 560px) {
  .about {
    padding: 56px 0;
  }
}

.divider-img {
  width: 100%;
  height: 653px;
  overflow: hidden;
}
.divider-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 960px) {
  .divider-img {
    height: 520px;
  }
}
@media (max-width: 560px) {
  .divider-img {
    height: 360px;
  }
}

.section-heading {
  text-align: center;
}
.section-heading .heading-image {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}
@media (max-width: 560px) {
  .section-heading .heading-image {
    font-size: 32px;
  }
}
.section-heading .heading-subtitle {
  margin: 0;
  color: #27272d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .section-heading .heading-subtitle {
    font-size: 13px;
  }
}

.text-section-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: calc(100% - 80px);
  max-width: 800px;
  margin: 0 auto;
  color: #27272d;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
}
.text-section-inner p {
  margin: 0;
}
@media (max-width: 960px) {
  .text-section-inner {
    width: calc(100% - 48px);
  }
}
@media (max-width: 560px) {
  .text-section-inner {
    width: calc(100% - 40px);
    gap: 32px;
    font-size: 14px;
    line-height: 1.75;
  }
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-block h3 {
  margin: 0;
  padding-top: 24px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .text-block h3 {
    font-size: 18px;
    padding-top: 0;
  }
}

.aboutmanuka {
  padding: 88px 0;
  background: var(--white);
}
.aboutmanuka .section-heading {
  margin-bottom: 40px;
}
@media (max-width: 560px) {
  .aboutmanuka {
    padding: 56px 0;
  }
}

.aboutumf {
  padding: 88px 0;
  background: #fff;
}
.aboutumf .section-heading {
  margin-bottom: 48px;
}
@media (max-width: 560px) {
  .aboutumf .section-heading {
    margin-bottom: 40px;
  }
}
.aboutumf-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.aboutumf-inner .text-section-inner {
  gap: 8px;
}
.aboutumf-image {
  display: block;
  width: 320px;
  max-width: calc(100% - 40px);
  height: auto;
}
@media (max-width: 560px) {
  .aboutumf-image {
    width: 220px;
  }
}
.aboutumf-callout {
  width: calc(100% - 80px);
  max-width: 800px;
  margin: 0;
  padding: 32px 40px;
  background: var(--gold);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media (max-width: 960px) {
  .aboutumf-callout {
    width: calc(100% - 48px);
  }
}
@media (max-width: 560px) {
  .aboutumf-callout {
    width: calc(100% - 40px);
    padding: 16px 16px;
    font-size: 14px;
    line-height: 1.75;
  }
}
@media (max-width: 560px) {
  .aboutumf {
    padding: 56px 0;
  }
}

.quality {
  padding: 88px 0;
}
.quality-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: calc(100% - 160px);
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .quality-inner {
    width: calc(100% - 48px);
  }
}
@media (max-width: 560px) {
  .quality-inner {
    width: calc(100% - 40px);
    gap: 16px;
  }
}
.quality-heading {
  width: 516px;
  max-width: 100%;
}
@media (max-width: 560px) {
  .quality-heading {
    margin-bottom: 24px;
  }
}
.quality-main {
  display: grid;
  grid-template-columns: 480px 480px;
  gap: 40px;
  align-items: center;
  width: 100%;
}
@media (max-width: 960px) {
  .quality-main {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
}
.quality-image {
  display: block;
  width: 480px;
  height: 360px;
  object-fit: cover;
}
@media (max-width: 960px) {
  .quality-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
.quality-content {
  display: flex;
  flex-direction: column;
  gap: 29px;
  color: #27272d;
}
.quality-content > p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.75;
}
@media (max-width: 560px) {
  .quality-content > p {
    font-size: 14px;
  }
}
.quality-quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quality-quote p {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (max-width: 560px) {
  .quality-quote p {
    font-size: 20px;
  }
}
.quality-quote cite {
  display: block;
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
  text-align: right;
}
.quality-body {
  width: 100%;
  margin: 0;
  color: #27272d;
  font-size: 16px;
  line-height: 1.75;
}
@media (max-width: 560px) {
  .quality-body {
    font-size: 14px;
  }
}
@media (max-width: 960px) {
  .quality {
    padding: 72px 0;
  }
}
@media (max-width: 560px) {
  .quality {
    padding: 56px 0;
  }
}

.reason {
  position: relative;
  padding: 88px 0;
}
.reason-flower {
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
}
.reason-flower-07 {
  top: -80px;
  right: 0;
  width: clamp(300px, 22vw, 400px);
}
@media (max-width: 560px) {
  .reason-flower-07 {
    width: 200px;
  }
}
.reason-flower-04 {
  left: 0;
  bottom: -150px;
  width: clamp(300px, 22vw, 400px);
}
@media (max-width: 560px) {
  .reason-flower-04 {
    width: 220px;
    bottom: -40px;
  }
}
.reason-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: calc(100% - 360px);
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 961px) {
  .reason-inner {
    min-width: 1040px;
  }
}
@media (max-width: 960px) {
  .reason-inner {
    width: calc(100% - 48px);
  }
}
@media (max-width: 560px) {
  .reason-inner {
    width: calc(100% - 40px);
  }
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}
@media (max-width: 960px) {
  .reason-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}
.reason-item {
  min-width: 0;
}
.reason-image {
  display: block;
  width: 100%;
  object-fit: cover;
}
.reason-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  color: #27272d;
}
.reason-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.reason-number {
  display: block;
  width: 63px;
  height: 75px;
}
.reason h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  white-space: nowrap;
}
.reason h3 sup {
  font-size: 0.645em;
  line-height: 0;
}
@media (max-width: 560px) {
  .reason h3 {
    font-size: 20px;
    white-space: normal;
  }
}
.reason-content p {
  width: 100%;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
}
.reason-content p sup {
  font-size: 0.645em;
  line-height: 0;
}
@media (max-width: 960px) {
  .reason {
    padding: 72px 0;
  }
}
@media (max-width: 560px) {
  .reason {
    padding: 56px 0;
  }
}

.shopbanner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: calc(100% - 360px);
  max-width: 1080px;
  height: 326px;
  margin: 120px auto 0;
  overflow: hidden;
  background: #f9f9fa;
  border: 1px solid rgba(249, 249, 250, 0.4);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}
@media (min-width: 961px) {
  .shopbanner {
    min-width: 1040px;
  }
}
.shopbanner-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 960px) {
  .shopbanner-image {
    height: auto;
  }
}
.shopbanner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  padding: 0 40px 0 60px;
  background: var(--gold);
  color: #fff;
}
@media (max-width: 960px) {
  .shopbanner-content {
    padding: 40px;
  }
}
@media (max-width: 560px) {
  .shopbanner-content {
    padding: 32px 24px;
  }
}
.shopbanner-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shopbanner h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .shopbanner h2 {
    font-size: 20px;
    white-space: normal;
    margin-right: -16px;
  }
}
.shopbanner p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: justify;
}
@media (max-width: 560px) {
  .shopbanner p br {
    display: none;
  }
}
@media (max-width: 560px) {
  .shopbanner p {
    font-size: 13px;
  }
}
.shopbanner-button {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 320px;
  height: 60px;
  padding: 0 64px 0 40px;
  border-radius: 4px;
  background: #fff;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.shopbanner-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 14px;
  height: 12px;
  background: url("../img/btn-bg-img-black.svg") center/contain no-repeat;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.shopbanner-button > span {
  position: relative;
  z-index: 1;
}
.shopbanner-button-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}
.shopbanner-button-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 23.51px;
  display: block;
  width: 43.489px;
  height: 6.5px;
  transform: translateY(-50%);
}
@media (min-width: 961px) {
  .shopbanner-button:hover::before, .shopbanner-button:focus-visible::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(27);
  }
}
@media (max-width: 560px) {
  .shopbanner-button {
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 960px) {
  .shopbanner {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    max-width: 640px;
    height: auto;
    margin-top: 80px;
  }
}
@media (max-width: 560px) {
  .shopbanner {
    width: calc(100% - 40px);
    margin-top: 56px;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  padding: 80px 40px 40px;
  background: var(--white);
  color: #27272d;
  text-align: center;
}
.footer-logo {
  display: block;
  width: 180px;
  height: 40px;
}
.footer-sns {
  display: block;
  width: 48px;
  height: 48px;
}
.footer-sns img {
  display: block;
  width: 48px;
  height: 48px;
}
.footer-company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 143px;
  font-style: normal;
  line-height: 1;
}
.footer-company p {
  width: 100%;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}
.footer-company a {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-position: from-font;
}
.footer-copy {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .footer {
    gap: 36px;
    padding: 64px 24px 32px;
  }
}

.js-scroll-reveal-ready .js-scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease var(--reveal-delay, 0s), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.js-scroll-reveal-ready .js-scroll-reveal.is-scroll-revealed {
  opacity: 1;
  transform: translateY(0);
}

.js-scroll-reveal-ready .intro-image {
  transform: scale(0.8);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s);
  will-change: transform;
}

.js-scroll-reveal-ready .intro-item.is-scroll-revealed .intro-image {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .js-scroll-reveal-ready .js-scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .js-scroll-reveal-ready .intro-image {
    transform: none;
    transition: none;
  }
}

/*# sourceMappingURL=style.css.map */
