@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
  color: #444444;
  background-color: #F1EDDF;
  overflow-x: hidden;
}

h2 {
  font-family: "Titan One", sans-serif;
  font-size: 4rem;
  font-weight: 400;
}
@media (max-width: 900px) {
  h2 {
    font-size: 3rem;
  }
}
@media (max-width: 425px) {
  h2 {
    font-size: 2.4rem;
  }
}

p {
  font-family: "Raleway", sans-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #444444;
  display: inline-block;
  font-family: "Raleway", sans-serif;
}

img {
  width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrapper {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: 20px;
}

.header-flex {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.header-flex .menu-left,
.header-flex .menu-right {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.header-flex .menu-left a,
.header-flex .menu-right a {
  background-color: #F1EDDF;
  border-radius: 50%;
  padding: 15px 10px;
  color: #B56918;
  font-weight: 700;
}
.header-flex .menu-left a:hover,
.header-flex .menu-right a:hover {
  background-color: #B56918;
  color: #F1EDDF;
}
.header-flex h1 {
  max-width: 200px;
}
@media (max-width: 900px) {
  .header-flex {
    display: none;
  }
}

.hamburger {
  width: 40px;
  height: 40px;
  margin: 10px 20px;
  position: relative;
  z-index: 20;
  transition: 0.5s;
  display: none;
}
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #F1EDDF;
  transition: 0.5s;
}
.hamburger span:nth-child(1) {
  top: 20%;
}
.hamburger span:nth-child(2) {
  top: 50%;
}
.hamburger span:nth-child(3) {
  top: 80%;
}

.hamburger-menu {
  display: none;
  position: fixed;
  top: 120px;
  left: 60px;
  z-index: 10;
}
.hamburger-menu li {
  margin-bottom: 20px;
}
.hamburger-menu li a {
  color: #B56918;
  font-weight: 600;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #F1EDDF;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  display: none;
}

.open .hamburger span {
  background-color: #B56918;
}
.open .hamburger span:nth-child(1) {
  top: 50%;
  rotate: 315deg;
}
.open .hamburger span:nth-child(2) {
  opacity: 0;
}
.open .hamburger span:nth-child(3) {
  top: 50%;
  rotate: -315deg;
}
.open .hamburger-menu {
  display: block;
  z-index: 20;
}
.open .mask {
  opacity: 0.9;
  display: block;
}

#top {
  position: relative;
  overflow: hidden;
  height: 100vh;
  /* ===== ミニポップコーンボタン ===== */
}
#top .firstview {
  position: absolute;
  inset: 0;
  z-index: -10;
}
#top .firstview img {
  width: 100%;
  height: 100%;
}
#top .firstview .fv--current {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: 10;
  /* 現在表示が下（次が上） */
}
#top .firstview .fv {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#top .flavor-buttons {
  --radius: 200px;
  position: absolute;
  right: 18%;
  bottom: 20%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  margin: 40px auto 0;
  list-style: none;
  padding: 0;
  z-index: 5;
  /* ▼ JSで .is-col / .is-row をflavor-buttons自体に付ける想定に修正 */
}
@media (max-width: 900px) {
  #top .flavor-buttons {
    right: 8px;
    top: 60%;
    bottom: auto;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 425px) {
  #top .flavor-buttons {
    position: static;
    inset: auto;
    transform: none;
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: auto;
  }
}
#top .flavor-buttons li {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}
@media (max-width: 900px) {
  #top .flavor-buttons li {
    position: static;
    transform: none;
  }
}
@media (max-width: 425px) {
  #top .flavor-buttons li {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: flex;
  }
}
#top .flavor-buttons li .flavor-btn {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#top .flavor-buttons li .flavor-btn:hover {
  transform: scale(1.1);
}
@media (max-width: 900px) {
  #top .flavor-buttons li .flavor-btn {
    width: 80px;
    height: 80px;
    max-height: 80svh;
  }
}
@media (max-width: 425px) {
  #top .flavor-buttons li .flavor-btn {
    display: inline-flex;
    width: 56px;
    height: 56px;
    /* place-items は grid 用なので flex では無効 */
    align-items: center;
    justify-content: center;
  }
}
#top .flavor-buttons.is-col > li {
  position: static !important;
  transform: none !important;
}
#top .flavor-buttons.is-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  align-items: center;
}
#top .flavor-buttons.is-row > li {
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
}
#top h2 {
  text-align: center;
  margin-inline: auto;
  padding-top: 50px;
  font-size: 6rem;
  color: white;
  font-weight: 500;
  max-width: 1000px;
}
@media (max-width: 900px) {
  #top h2 {
    padding-top: 0;
  }
}
@media (max-width: 425px) {
  #top h2 {
    font-size: 3.4rem;
    padding-top: 20px;
  }
}

.fv--next {
  --cx: 50%;
  --cy: 50%;
  clip-path: circle(0 at var(--cx) var(--cy));
  -webkit-clip-path: circle(0 at var(--cx) var(--cy));
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 20;
  pointer-events: none;
}
.fv--next.is-revealing {
  animation: fv-reveal-slow-snap 3.8s ease-out forwards;
}

@keyframes fv-reveal-slow-snap {
  /* 開始（0%） */
  0% {
    clip-path: circle(0 at var(--cx) var(--cy));
    -webkit-clip-path: circle(0 at var(--cx) var(--cy));
  }
  70% {
    clip-path: circle(120vmax at var(--cx) var(--cy));
    /* ほぼ覆うが少し余裕を残す */
    -webkit-clip-path: circle(120vmax at var(--cx) var(--cy));
  }
  /* ラスト0.2sで“パッ”と全画面（スナップ） */
  100% {
    clip-path: circle(160vmax at var(--cx) var(--cy));
    -webkit-clip-path: circle(160vmax at var(--cx) var(--cy));
  }
}
#yoast {
  width: 100vw;
  height: 800px;
  background-image: url(../img/yoast_bg.png);
  background-size: 100% 100%;
  background-repeat: none;
  background-position: center center;
  position: relative;
}
@media (max-width: 900px) {
  #yoast {
    height: 700px;
  }
}
#yoast .yoast_flex {
  max-width: 1024px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
  padding-block: 100px;
}
@media (max-width: 900px) {
  #yoast .yoast_flex {
    padding-block: 40px;
  }
}
@media (max-width: 425px) {
  #yoast .yoast_flex {
    display: block;
    margin-inline: auto;
    padding-inline: 20px;
  }
}
#yoast .yoast_img {
  width: 40%;
}
@media (max-width: 425px) {
  #yoast .yoast_img {
    display: none;
  }
}
#yoast .text {
  max-width: 580px;
  margin: 2% 4% 0 0;
}
@media (max-width: 900px) {
  #yoast .text {
    width: 60%;
    margin: 50px 30px 0 0;
  }
}
@media (max-width: 425px) {
  #yoast .text {
    width: 100%;
    margin: 0;
  }
}
#yoast .text h2 {
  color: #B56918;
}
@media (max-width: 425px) {
  #yoast .text h2 {
    text-align: center;
  }
}
#yoast .text p {
  margin-top: 40px;
  line-height: 2.5;
}
@media (max-width: 900px) {
  #yoast .text p {
    line-height: 2;
  }
}
@media (max-width: 425px) {
  #yoast .text p {
    text-align: center;
  }
}
#yoast .pop-divider {
  position: absolute;
  right: 0;
  bottom: -200px;
}
@media (max-width: 900px) {
  #yoast .pop-divider {
    bottom: -90px;
  }
}
@media (max-width: 425px) {
  #yoast .pop-divider {
    bottom: -40px;
  }
}
#yoast .pop-divider img {
  width: 400px;
}
@media (max-width: 900px) {
  #yoast .pop-divider img {
    width: 280px;
  }
}
@media (max-width: 425px) {
  #yoast .pop-divider img {
    width: 180px;
  }
}

#benefits {
  background-color: #F1CB73;
  padding-top: 20px;
}
#benefits .text {
  text-align: center;
  margin-top: 100px;
}
@media (max-width: 900px) {
  #benefits .text {
    margin-top: 40px;
  }
}
#benefits .text h2 {
  color: #B56918;
}
#benefits .text p {
  margin-top: 30px;
  line-height: 2.5;
}

.icons {
  padding-top: 50px;
  padding-bottom: 150px;
}
@media (max-width: 900px) {
  .icons {
    padding-bottom: 60px;
  }
}
.icons ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
}
.icons ul li {
  max-width: 150px;
  text-align: center;
}
.icons ul li p {
  color: #B56918;
  font-weight: 700;
  margin-top: 16px;
}

#oils {
  background-color: #F1EDDF;
}
#oils .text {
  text-align: center;
}
#oils .text h2 {
  color: #7AB543;
}
#oils .text p {
  margin-top: 30px;
  line-height: 2.5;
}
#oils .icons {
  padding-bottom: 0;
}
#oils .icons li {
  width: 250px;
}

#flavor-strip {
  --slides: 7;
  --bg: $white;
  background: var(--bg);
  position: relative;
  height: calc(100svh * var(--slides) + 50svh);
  overflow: clip;
  overscroll-behavior: contain;
  /* 固定キャンバス */
  /* 横一列に並べるトラック */
  /* 1枚分 */
  /* タイトルスライド */
}
@media (max-width: 900px) {
  #flavor-strip {
    height: auto;
    overflow: visible;
    padding-top: 100px;
  }
}
@media (max-width: 425px) {
  #flavor-strip {
    padding-top: 80px;
  }
}
#flavor-strip .strip-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  /* 親と単位を合わせる */
  overflow: hidden;
}
@media (max-width: 900px) {
  #flavor-strip .strip-sticky {
    position: static;
    height: auto;
    overflow: auto;
  }
}
#flavor-strip .strip-track {
  display: flex;
  height: 100%;
  width: calc(70vw * var(--slides));
  /* アイテム幅 × 枚数 */
  transform: translateX(0);
  will-change: transform;
}
@media (max-width: 900px) {
  #flavor-strip .strip-track {
    width: 100%;
    height: auto;
    display: grid;
    gap: 16px;
    place-content: center;
  }
}
#flavor-strip .strip-item {
  width: 70vw;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}
#flavor-strip .strip-item:hover .item {
  transform: translateY(-15px);
}
@media (max-width: 900px) {
  #flavor-strip .strip-item:hover .item {
    transform: none;
  }
}
#flavor-strip .strip-item:hover .burst {
  opacity: 1;
  transform: translate(-50%, -4%) scale(1) rotate(0.8deg);
  clip-path: inset(0 0 0 0);
  filter: drop-shadow(0 16px 36px rgba 0, 0, 0, 0.16);
  animation: pop-wiggle 0.9s ease-out both;
}
@media (max-width: 900px) {
  #flavor-strip .strip-item:hover .burst {
    opacity: 0;
    clip-path: inset(60% 0 0 0);
    transform: translate(-50%, 6%) scale(0.92);
  }
}
#flavor-strip .item {
  max-width: min(92vw, 800px);
  max-height: 86svh;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.25s ease;
  position: relative;
  z-index: 20;
  transition: transform 0.25s ease;
}
#flavor-strip .item:nth-child(6) img {
  max-width: min(92vw, 1000px);
}
@media (max-width: 900px) {
  #flavor-strip .item {
    max-width: min(92vw, 560px);
    /* 好みで 520〜600px */
    max-height: none;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
#flavor-strip .burst {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 6%) scale(0.92) rotate(-1deg);
  width: 110%;
  max-width: none;
  opacity: 0;
  z-index: 10;
  /* 下からスッと現れるクリップ（角丸で自然に） */
  clip-path: inset(60% 0 0 0 round 50px);
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), clip-path 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (max-width: 900px) {
  #flavor-strip .burst {
    display: none;
  }
}
#flavor-strip .title-slide {
  justify-items: start;
  align-content: center;
}
@media (max-width: 900px) {
  #flavor-strip .title-slide {
    justify-items: center;
    align-content: center;
  }
}
#flavor-strip .title-big {
  margin-left: clamp(16px, 6vw, 90px);
  font-size: clamp(40px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  color: #B56918;
  text-align: left;
}
@media (max-width: 900px) {
  #flavor-strip .title-big {
    margin-left: auto;
    text-align: center;
    padding-bottom: 20px;
  }
}
#flavor-strip .tilt {
  display: inline-block;
  padding: 0.08em 0.32em;
  background: #F1CB73;
  color: #fff;
  transform: rotate(-6deg);
  border-radius: 0.25em;
}

@keyframes pop-wiggle {
  0% {
    transform: translate(-50%, 8%) scale(0.94) rotate(-1.2deg);
  }
  55% {
    transform: translate(-50%, -6%) scale(1.05) rotate(1.2deg);
  }
  100% {
    transform: translate(-50%, -4%) scale(1) rotate(0.8deg);
  }
}
#story {
  width: 100%;
  height: 100vh;
  background-color: #F1EDDF;
  background-image: url(../img/story_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  display: grid;
  /* これで中身を中央に */
  place-items: center;
}
@media (max-width: 900px) {
  #story {
    height: auto;
    padding-bottom: 80px;
    background-repeat: repeat;
    padding: 56px 5vw 72px;
  }
}
#story .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8%;
  background-color: #FFEBAE;
  width: min(1000px, 92vw);
  margin-inline: auto;
  border-radius: 20px;
  padding: 80px 50px;
}
@media (max-width: 900px) {
  #story .inner {
    flex-direction: column;
  }
}
@media (max-width: 425px) {
  #story .inner {
    padding: 40px 25px;
  }
}
#story .inner .picture {
  width: 50%;
}
@media (max-width: 900px) {
  #story .inner .picture {
    width: 100%;
    padding-bottom: 30px;
  }
}
#story .inner .picture img {
  border-radius: 50%;
  height: auto;
  display: block;
}
#story .inner .text {
  width: 40%;
}
@media (max-width: 900px) {
  #story .inner .text {
    width: 100%;
  }
}
#story .inner .text h2 {
  color: #E38424;
}
#story .inner .text p {
  text-align: left;
  margin-top: 30px;
}
@media (max-width: 425px) {
  #story .inner .text p {
    text-align: center;
  }
}

#ig {
  background-image: url(../img/ig_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  padding: clamp(48px, 8vw, 96px) 0;
  position: relative;
  display: grid;
  --grid-max: 500px;
  --grid-gap: clamp(4px, 5px, 10px);
}
#ig .ig-grid {
  width: min(748px, 80vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(6px, 1.2vw, 12px);
}
#ig .ig-grid li {
  aspect-ratio: 1/1;
  line-height: 0;
}
#ig .ig-grid li a,
#ig .ig-grid li img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}

#faq {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  padding-bottom: 200px;
}
@media (max-width: 900px) {
  #faq {
    padding-bottom: 60px;
  }
}
#faq video {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
  z-index: -10;
  vertical-align: bottom;
}
#faq h2 {
  margin-inline: auto;
  color: #7AB543;
  max-width: 800px;
  text-align: center;
  margin-block: 400px 40px;
  font-size: 8rem;
}
@media (max-width: 900px) {
  #faq h2 {
    margin-block: 200px 40px;
  }
}
@media (max-width: 425px) {
  #faq h2 {
    font-size: 3.4rem;
  }
}
#faq .faq_items {
  max-width: 800px;
  margin-inline: auto;
  padding-bottom: 20px;
  padding-inline: 20px;
}
#faq .faq_items .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #7AB543;
  padding: 16px 18px;
  background-color: #F1EDDF;
}
#faq .faq_items .question .arrow {
  display: block;
  transition: transform 0.3s ease;
  color: #7AB543;
  margin-left: 10px;
}
#faq .faq_items.active .arrow {
  transform: rotate(180deg);
}
#faq .answer {
  display: none;
  padding: 16px 18px;
  border: 2px solid #7AB543;
  padding: 16px 18px;
  background-color: rgba(122, 181, 67, 0.8);
}

footer {
  background-color: #B56918;
}
footer .footer_img {
  max-width: 200px;
}
footer small {
  color: #F1EDDF;
  margin-inline: auto;
  text-align: center;
  display: block;
  padding-block: 20px;
}
footer .header-flex {
  padding-top: 0;
}

.to-top {
  position: fixed;
  right: clamp(12px, 3vw, 24px);
  bottom: clamp(12px, 3vw, 24px);
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #F1EDDF;
  background: #B56918;
  color: #F1EDDF;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  /* 非表示時はクリック不可 */
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (max-width: 900px) {
  .to-top {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
}

/* 表示状態 */
.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}/*# sourceMappingURL=style.css.map */