@import "https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&display=swap";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  vertical-align: baseline;
  border: 0;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, picture {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

:root {
  --vw: 100vw;
}

html {
  width: 100%;
  font-size: calc(var(--vw) / 144);
}

@media screen and (width <= 767px) {
  html {
    font-size: 10px;
  }
}

@media screen and (width >= 1728px) {
  html {
    font-size: 75%;
  }
}

body {
  color: #333;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  letter-spacing: .08em;
  background-color: #f6f6f3;
  font-family: ten-mincho-text, serif;
  font-size: 1.6rem;
  font-weight: 400;
  overflow-x: auto;
}

a, a:visited, a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
  transition: all .35s;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  transition: all .35s;
}

h1, h2, h3, h4 {
  font-weight: normal;
}

.link-icon {
  width: 2rem;
  height: 2rem;
  position: relative;
}

@media screen and (width <= 767px) {
  .link-icon {
    width: 20px;
    height: 20px;
  }
}

.link-icon:before {
  content: "";
  box-sizing: border-box;
  border: 1px solid #9fc02c;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all .8s;
  position: absolute;
  top: 0;
  left: 0;
}

.link-icon:after {
  content: "";
  background-color: #9fc02c;
  border-radius: 50%;
  width: .4rem;
  height: .4rem;
  transition: all .8s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (width <= 767px) {
  .link-icon:after {
    width: 4px;
    height: 4px;
  }
}

.link {
  --ease-in-out-quart: cubic-bezier(.76, 0, .24, 1);
  background-image: linear-gradient(90deg, #333 0% 50%, #0000 50% 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 200% 1px;
  padding-bottom: 1.2rem;
}

@media screen and (width <= 767px) {
  .link {
    padding-bottom: 8px;
  }
}

@media (hover: hover), (-ms-high-contrast: none) {
  .link:hover {
    animation-name: borderAnimation;
    animation-duration: 1.8s;
    animation-timing-function: var(--ease-in-out-quart);
  }

  .link:hover .link-icon:before {
    background-color: #9fc02c;
  }

  .link:hover .link-icon:after {
    background-color: #fff;
  }

  .arrange__item-link-text.link:hover, .arrange__more-item-link-text.link:hover {
    animation: none;
  }

  .arrange__item-link:hover .arrange__item-link-text, .arrange__more-item-link:hover .arrange__more-item-link-text {
    animation-name: borderAnimation;
    animation-duration: 1.8s;
    animation-timing-function: var(--ease-in-out-quart);
  }

  .arrange__item-link:hover .arrange__item-link-text .link-icon:before, .arrange__more-item-link:hover .arrange__more-item-link-text .link-icon:before {
    background-color: #9fc02c;
  }

  .arrange__item-link:hover .arrange__item-link-text .link-icon:after, .arrange__more-item-link:hover .arrange__more-item-link-text .link-icon:after {
    background-color: #fff;
  }
}

@keyframes borderAnimation {
  0% {
    background-position: 0 100%;
  }

  50% {
    background-position: -100% 100%;
  }

  51% {
    background-position: 100% 100%;
  }

  100% {
    background-position: 0 100%;
  }
}

@media screen and (width <= 767px) {
  .no-sp {
    display: none;
  }
}

.no-pc {
  display: none;
}

@media screen and (width <= 767px) {
  .no-pc {
    display: inline;
  }
}

.l-container {
  justify-content: center;
  display: flex;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .l-container {
    display: block;
  }
}

.l-container__left {
  z-index: -1;
  flex-shrink: 0;
  width: 33.333%;
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .l-container__left {
    width: 100%;
    position: relative;
  }
}

.l-container__right {
  flex-shrink: 0;
  width: 66.666%;
  margin-left: auto;
  margin-right: 0;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .l-container__right {
    width: 100%;
  }
}

.scroll {
  justify-content: center;
  width: 12px;
  display: flex;
  position: absolute;
}

.scroll-movie {
  display: none;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .scroll-movie {
    display: block;
    bottom: 40px;
    right: 20px;
  }

  .scroll-movie .scroll__text {
    color: #fff;
    font-size: 10px;
  }

  .scroll-movie .scroll__text span {
    margin-left: 2px;
    display: inline-block;
  }

  .scroll-movie .scroll__line:after, .scroll-movie .scroll__line:before {
    background-color: #fff;
  }
}

.scroll-hero {
  bottom: 4rem;
  right: 6.2rem;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .scroll-hero {
    display: none;
  }
}

.scroll__text {
  writing-mode: vertical-rl;
  letter-spacing: 0;
  padding-bottom: 110px;
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  line-height: 1;
}

.scroll__line {
  width: 1px;
  height: 100px;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll__line:after {
  content: "";
  background: #333;
  width: 1px;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.scroll__line:before {
  content: "";
  background: #333;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 3s ease-in-out infinite circlemove, 3s ease-out infinite cirlemovehide;
  position: absolute;
  bottom: 0;
  left: -3px;
}

@keyframes circlemove {
  0% {
    bottom: 95px;
  }

  100% {
    bottom: 0;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: .9;
  }

  100% {
    opacity: 0;
  }
}

.motion-color > * {
  position: relative;
  overflow: hidden;
}

.motion-color > :before {
  content: "";
  z-index: 1;
  background: linear-gradient(#e4f1ac 0%, #f6f6f3 100%);
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.motion-color.move > :before {
  animation: 1.2s .3s forwards barAnime;
}

.motion-color.move > * img {
  animation: 1.8s forwards photoAnime;
}

.motion-movie > * {
  position: relative;
  overflow: hidden;
}

.motion-movie > :before {
  content: "";
  z-index: 1;
  background: linear-gradient(#e4f1ac 0%, #f6f6f3 100%);
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (width <= 767px) {
  .motion-movie > :before {
    content: none;
  }
}

.motion-movie.move > :before {
  animation: 1.2s .3s forwards barAnime;
}

@media screen and (width <= 767px) {
  .motion-movie.move > :before {
    animation: none;
  }
}

.motion-movie.move > * video {
  animation: 1.8s forwards photoAnime;
}

@media screen and (width <= 767px) {
  .motion-movie.move > * video {
    animation: none;
  }
}

@keyframes barAnime {
  0% {
    height: 100%;
    bottom: 0;
  }

  80% {
    height: 0;
    bottom: 100%;
  }

  100% {
    height: 0;
    bottom: 100%;
  }
}

@keyframes photoAnime {
  0% {
    transform: scale(1.1);
  }

  20% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.motion-fade {
  opacity: 0;
  transition: all 1.8s;
  transform: translateY(10px);
}

.motion-fade.move {
  animation: 1s .3s forwards fadein;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.motion-kv {
  opacity: 0;
  transition: all 1.8s;
  transform: translateY(20px);
}

.motion-kv.move {
  animation: 2s .3s forwards kv;
}

.motion-kv.header__nav.move {
  animation: .8s 1s forwards fadein;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .motion-kv.header__nav.move {
    animation: none;
    transform: translateY(0);
  }
}

.motion-kv.hero__product.move {
  animation: .8s 1s forwards fadein;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .motion-kv.hero__product.move {
    opacity: 1;
    animation: none;
    transform: translateY(0);
  }
}

@keyframes kv {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.bg_body {
  aspect-ratio: 1200 / 900;
  z-index: -1;
  width: 66.666%;
  position: fixed;
  top: 0;
  right: 0;
  overflow: hidden;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .bg_body {
    width: 100%;
    aspect-ratio: unset;
    height: 80vw;
    margin-bottom: -80vw;
    position: sticky;
  }
}

.bg_body__inner {
  filter: blur(35px);
  width: 120rem;
  position: absolute;
  top: -14rem;
  right: -10rem;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .bg_body__inner {
    width: 480px;
    top: -50px;
    right: -30px;
  }
}

.bg_body__inner svg {
  width: 100%;
  height: auto;
}

.bg-round {
  z-index: -2;
  align-self: flex-start;
  width: 40rem;
  height: 40rem;
  margin-bottom: -40rem;
  position: sticky;
  top: 55rem;
  left: -18rem;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .bg-round {
    width: 80vw;
    height: 80vw;
    margin-bottom: -80vw;
    top: 80vh;
    left: 0;
  }
}

.bg-round:before {
  content: "";
  filter: blur(35px);
  background-image: url("../img/bg_round.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40rem;
  height: 40rem;
  animation: 12s ease-in-out infinite round;
  display: block;
  position: absolute;
  top: 0;
  left: -20rem;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .bg-round:before {
    width: 200px;
    height: 200px;
    left: -100px;
  }
}

@keyframes round {
  0% {
    transform: rotate(0)scale(.9);
  }

  50% {
    transform: rotate(180deg)scale(1.2);
  }

  100% {
    transform: rotate(360deg)scale(.9);
  }
}

.header {
  z-index: 2;
  position: fixed;
  top: 3.2rem;
  left: 3.2rem;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .header {
    z-index: initial;
    position: absolute;
    top: 20px;
    left: 20px;
  }
}

.header__logo {
  width: 11.5rem;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .header__logo {
    width: 100px;
  }
}

.header__nav-toggle {
  display: none;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .header__nav-toggle {
    z-index: 4;
    background-color: #f6f6f3e6;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    transition: all .3s;
    display: flex;
    position: fixed;
    top: 16px;
    right: 16px;
    overflow: hidden;
    box-shadow: 0 0 10px #75915626, 0 0 48px #75915626;
  }
}

@media screen and (width <= 767px) and (hover: hover), screen and (width <= 767px) and (-ms-high-contrast: none), screen and (width <= 1024px) and (orientation: portrait) and (hover: hover), screen and (width <= 1024px) and (orientation: portrait) and (-ms-high-contrast: none) {
  .header__nav-toggle:hover {
    cursor: pointer;
  }
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .header__nav-toggle.active {
    transition: all .3s;
  }

  .header__nav-toggle span {
    color: #333;
    letter-spacing: 0;
    font-family: Inter, sans-serif;
    font-size: 10px;
    transition: all .3s linear;
    display: block;
  }

  .header__nav-toggle.active span {
    left: 11px;
  }

  .header__nav-toggle.active span:first-child {
    top: 18px;
    transform: rotate(45deg);
  }

  .header__nav-toggle.active span:nth-child(2) {
    top: 18px;
    transform: rotate(-45deg);
  }
}

.header__nav {
  transition: opacity .6s ease-out;
  display: flex;
  position: fixed;
  top: 5rem;
  right: 5rem;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .header__nav {
    z-index: -1;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    opacity: 0;
    background-color: #33333380;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 40px 120px;
    transition: opacity .3s ease-out;
    top: 0;
    right: 0;
  }

  .header__nav:before {
    content: "";
    width: 85%;
    height: calc(var(--vh, 1vh) * 100);
    z-index: -1;
    background: linear-gradient(#f6f6f3 0%, #d8eaae 100%);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__nav.active {
    opacity: 1;
    z-index: 2;
  }
}

.header__nav-logo {
  display: none;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .header__nav-logo {
    width: 40px;
    height: auto;
    display: block;
    position: absolute;
    top: 30px;
    left: calc(15% + 30px);
  }
}

.header__nav-list {
  flex-direction: column;
  align-items: flex-end;
  gap: 1.8rem;
  display: flex;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .header__nav-list {
    gap: 0;
  }
}

.header__nav-link {
  letter-spacing: .03em;
  font-size: 1.3rem;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .header__nav-link {
    padding: 1em 0 1em 1em;
    font-size: 16px;
    display: block;
  }
}

@media (hover: hover), (-ms-high-contrast: none) {
  .header__nav-link:hover {
    color: #4d7902;
  }
}

.header__nav-img {
  display: none;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .header__nav-img {
    aspect-ratio: 552 / 280;
    opacity: .8;
    width: 85%;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-mask-image: url("../img/img_shape.svg");
    mask-image: url("../img/img_shape.svg");
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
}

.header__nav-img picture {
  width: 100%;
  height: 100%;
}

.header__nav-img img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.movie {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .movie {
    height: auto;
    height: calc(var(--vh, 1vh) * 100);
  }
}

.movie-end {
  display: none;
}

@media screen and (width <= 767px) {
  .movie-end {
    display: block;
  }
}

.movie__content {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.movie__logo {
  display: none;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .movie__logo {
    width: 88px;
    display: block;
    position: absolute;
    bottom: 40px;
    left: 20px;
  }
}

.main {
  background: url("../img/bg_body_white.png") 0 0 / 38rem 42rem no-repeat;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .main {
    background-size: 190px 210px;
  }
}

.hero {
  height: 100vh;
  max-height: 960px;
  position: relative;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .hero {
    height: auto;
    max-height: none;
  }
}

.hero__title {
  width: 12rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__title img {
  width: 100%;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .hero__title {
    display: none;
  }
}

.hero__product {
  align-items: flex-end;
  gap: 1.5rem;
  width: 28.5rem;
  display: flex;
  position: absolute;
  bottom: 4rem;
  left: 4rem;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .hero__product {
    text-align: center;
    justify-content: center;
    width: 100%;
    padding-top: 60px;
    position: static;
  }
}

.hero__product-img {
  flex-shrink: 0;
  width: 8.4rem;
}

@media screen and (width <= 767px) {
  .hero__product-img {
    width: 52px;
  }
}

.hero__product-text {
  flex-direction: column;
  gap: 1rem;
  width: 18.6rem;
  display: flex;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .hero__product-text {
    display: none;
  }
}

.hero__product-text img {
  width: 1.6rem;
  height: 1.6rem;
}

.hero__product-text p {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: .9rem;
  line-height: 1.5;
}

.scene {
  justify-content: flex-end;
  padding: 8rem 0 0;
  display: flex;
}

@media screen and (width <= 767px), screen and (width <= 1024px) and (orientation: portrait) {
  .scene {
    display: none;
  }
}

.scene__pic {
  width: 55.2rem;
  height: 28rem;
  -webkit-mask-image: url("../img/img_shape.svg");
  mask-image: url("../img/img_shape.svg");
  -webkit-mask-position: 100%;
  mask-position: 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.scene picture {
  width: 55.2rem;
  height: 28rem;
}

.scene img {
  object-fit: cover;
  will-change: transform;
  width: 100%;
  height: auto;
}

.intro {
  contain: paint;
  padding: 12rem 0 17.6rem;
  position: relative;
}

@media screen and (width <= 767px) {
  .intro {
    padding: 30px 0 120px;
  }
}

.intro__ttl {
  text-align: center;
  padding: 0 9.6rem;
}

@media screen and (width <= 767px) {
  .intro__ttl {
    padding: 0 30px;
  }
}

.intro__ttl-main {
  font-size: 1.8rem;
  display: block;
}

@media screen and (width <= 767px) {
  .intro__ttl-main {
    font-size: 17px;
  }
}

.intro__ttl-sub {
  margin-top: 1.2rem;
  font-size: 3.6rem;
  line-height: 1.6;
  display: block;
}

@media screen and (width <= 767px) {
  .intro__ttl-sub {
    margin-top: 12px;
    font-size: 29px;
  }
}

.intro__body {
  z-index: 1;
  margin-top: 8rem;
  position: relative;
}

@media screen and (width <= 767px) {
  .intro__body {
    margin-top: 64px;
  }
}

.intro__section {
  justify-content: space-between;
  width: 73.6rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

@media screen and (width <= 767px) {
  .intro__section {
    width: 100%;
    padding: 0 28px;
    display: block;
  }
}

.intro__section--1 {
  flex-direction: column;
  align-items: center;
}

.intro__section--1 > .intro__section-content {
  text-align: center;
  width: 100%;
}

.intro__section--1 > .intro__section-img {
  width: 28rem;
  height: 37.2rem;
  margin-top: 6.4rem;
}

@media screen and (width <= 767px) {
  .intro__section--1 > .intro__section-img {
    width: 240px;
    height: 320px;
    margin-top: 48px;
  }
}

.intro__section--2 {
  margin-top: 12rem;
}

@media screen and (width <= 767px) {
  .intro__section--2 {
    margin-top: 56px;
  }
}

.intro__section--2 > .intro__section-img {
  width: 24.8rem;
  height: 33rem;
  margin-top: 4rem;
}

@media screen and (width <= 767px) {
  .intro__section--2 > .intro__section-img {
    width: 240px;
    height: 320px;
    margin-top: 48px;
  }
}

.intro__section--3 {
  margin-top: 4rem;
}

@media screen and (width <= 767px) {
  .intro__section--3 {
    margin-top: 56px;
  }
}

.intro__section--3 > .intro__section-img {
  order: -1;
  width: 24.8rem;
  height: 33rem;
}

@media screen and (width <= 767px) {
  .intro__section--3 > .intro__section-img {
    width: 240px;
    height: 320px;
    margin-top: 48px;
  }
}

.intro__section--3 > .intro__section-content {
  margin-top: 10.4rem;
}

@media screen and (width <= 767px) {
  .intro__section--3 > .intro__section-content {
    margin-top: 0;
  }
}

.intro__section-content {
  width: 36.8rem;
}

@media screen and (width <= 767px) {
  .intro__section-content {
    width: 100%;
  }
}

.intro__section-ttl {
  color: #4d7902;
  font-size: 2rem;
  line-height: 1.8;
}

@media screen and (width <= 767px) {
  .intro__section-ttl {
    text-align: center;
    font-size: 18px;
  }
}

.intro__section-text {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  line-height: 2.2;
}

@media screen and (width <= 767px) {
  .intro__section-text {
    text-align: center;
    margin-top: 24px;
    font-size: 16px;
  }
}

.intro__section-img {
  flex-shrink: 0;
  -webkit-mask-image: url("../img/img_shape_point.svg");
  mask-image: url("../img/img_shape_point.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (width <= 767px) {
  .intro__section-img {
    margin-left: auto;
    margin-right: auto;
  }
}

.intro__section-img img {
  object-fit: cover;
  will-change: transform;
  width: 100%;
  height: auto;
}

.product {
  background: linear-gradient(#f1f1ec 60%, #fafaf8 100%);
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  padding: 8rem 12rem 6.4rem;
  display: flex;
}

@media screen and (width <= 767px) {
  .product {
    align-items: flex-start;
    gap: 0;
    padding: 64px 40px;
  }
}

.product__img {
  flex-shrink: 0;
  width: 14.4rem;
  position: relative;
}

@media screen and (width <= 767px) {
  .product__img {
    width: 125px;
    margin-right: -2px;
  }
}

.product__new-label {
  width: 8rem;
  height: 8rem;
  position: absolute;
  top: -4rem;
  left: -2.4rem;
}

@media screen and (width <= 767px) {
  .product__new-label {
    width: 64px;
    height: 64px;
    top: -30px;
    left: -15px;
  }
}

.product__ttl {
  letter-spacing: .12em;
  font-size: 3.2rem;
}

.product__ttl span {
  display: inline-block;
}

@media screen and (width <= 767px) {
  .product__ttl {
    font-size: 28px;
    line-height: 1.3;
  }
}

.product__tags {
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 3.2rem;
  display: flex;
}

@media screen and (width <= 767px) {
  .product__tags {
    gap: 4px;
    margin-top: 20px;
  }
}

.product__tag {
  color: #4d7902;
  letter-spacing: .2em;
  text-align: center;
  background-color: #fff;
  border-radius: 1px;
  width: 8rem;
  padding: 1rem 1rem 1rem 1.2rem;
  font-size: 1.6rem;
}

@media screen and (width <= 767px) {
  .product__tag {
    flex-basis: calc(50% - 2px);
    width: auto;
    padding: 8px 16px;
    font-size: 13px;
  }
}

.product__desc {
  margin-top: 2.4rem;
  font-size: 1.5rem;
  line-height: 1.8;
}

.product__desc span {
  display: inline-block;
}

@media screen and (width <= 767px) {
  .product__desc {
    margin-top: 16px;
    font-size: 14px;
  }
}

.product__link-wrapper {
  justify-content: flex-end;
  margin-top: 4rem;
  display: flex;
}

@media screen and (width <= 767px) {
  .product__link-wrapper {
    justify-content: flex-start;
    margin-top: 32px;
  }
}

.product__link {
  align-items: center;
  gap: 2.4rem;
  font-size: 1.8rem;
  display: inline-flex;
}

@media screen and (width <= 767px) {
  .product__link {
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    font-size: 16px;
  }
}

.horizontal_scroll {
  height: var(--sticky-container-height);
  width: 100%;
  position: relative;
}

.horizontal_scroll .sticky {
  width: 100%;
  top: var(--sticky-top, 0px);
  display: block;
  position: sticky;
  overflow: hidden;
}

.horizontal_scroll .scroller {
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
  display: flex;
  overflow-x: scroll;
}

.horizontal_scroll .scroller::-webkit-scrollbar {
  display: none;
}

.arrange {
  text-align: center;
  padding: 12rem 0 0;
}

@media screen and (width <= 767px) {
  .arrange {
    padding-top: 100px;
  }
}

.arrange__ttl-en {
  color: #888;
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 1.3rem;
  display: block;
}

@media screen and (width <= 767px) {
  .arrange__ttl-en {
    font-size: 11px;
  }
}

.arrange__ttl-jp {
  margin-top: 3.2rem;
  font-size: 3.2rem;
  line-height: 1.6;
  display: block;
}

@media screen and (width <= 767px) {
  .arrange__ttl-jp {
    margin-top: 32px;
    font-size: 27px;
  }
}

.arrange__desc {
  margin-top: 6.4rem;
  margin-bottom: 11.2rem;
  font-size: 1.6rem;
  line-height: 2.2;
}

@media screen and (width <= 767px) {
  .arrange__desc {
    margin-top: 48px;
    margin-bottom: 64px;
    font-size: 16px;
  }
}

.arrange__list {
  gap: 5.6rem;
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  display: flex;
}

@media screen and (width <= 767px) {
  .arrange__list {
    gap: 24px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

.arrange__item-link {
  padding: 10.4rem 0 0 2.4rem;
  display: block;
}

@media (hover: hover), (-ms-high-contrast: none) {
  .arrange__item-link:hover .arrange__item-inner {
    background-color: #ebf0e1;
  }
}

@media screen and (width <= 767px) {
  .arrange__item-link {
    padding: 88px 0 0 20px;
  }
}

.arrange__item-inner {
  text-align: left;
  background-color: #fff;
  width: 46.4rem;
  padding: 1px 7.2rem 5.6rem;
  transition: background-color .5s;
  position: relative;
}

@media screen and (width <= 767px) {
  .arrange__item-inner {
    width: 280px;
    padding: 1px 32px 48px;
  }
}

.arrange__item-content {
  text-align: center;
  margin-top: 3.2rem;
}

@media screen and (width <= 767px) {
  .arrange__item-content {
    margin-top: 48px;
  }
}

.arrange__item-ttl {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  color: #4d7902;
  white-space: nowrap;
  letter-spacing: .2em;
  border-left: 1px solid #4d7902;
  padding-left: 1.2rem;
  font-size: 3.2rem;
  position: absolute;
  top: -9.6rem;
  left: -2.4rem;
}

@media screen and (width <= 767px) {
  .arrange__item-ttl {
    padding-left: 8px;
    font-size: 28px;
    top: -88px;
    left: -20px;
  }
}

.arrange__item-ttl-3 {
  height: 3.3em;
}

.arrange__item-ttl-2 {
  height: 2.2em;
}

.arrange__item-img {
  aspect-ratio: 320 / 240;
  width: 32rem;
  margin-top: -6.4rem;
  -webkit-mask-image: url("../img/img_shape_recipe.svg");
  mask-image: url("../img/img_shape_recipe.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (width <= 767px) {
  .arrange__item-img {
    width: 215px;
    margin-top: -64px;
  }
}

.arrange__item-img img {
  object-fit: cover;
  will-change: transform;
  width: 100%;
  height: auto;
}

.arrange__item-name {
  font-size: 1.8rem;
  line-height: 1.6;
}

@media screen and (width <= 767px) {
  .arrange__item-name {
    font-size: 20px;
  }
}

.arrange__item-link-wrapper {
  text-align: center;
  margin-top: 2.4rem;
}

@media screen and (width <= 767px) {
  .arrange__item-link-wrapper {
    margin-top: 48px;
  }
}

.arrange__item-link-text {
  align-items: center;
  gap: 2.4rem;
  display: inline-flex;
}

@media screen and (width <= 767px) {
  .arrange__item-link-text {
    gap: 2.4px;
    font-size: 15px;
  }
}

.arrange__more {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 10.4rem;
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  display: flex;
}

@media screen and (width <= 767px) {
  .arrange__more {
    gap: 48px;
    margin-top: 96px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

.arrange__more-ttl {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  color: #4d7902;
  white-space: nowrap;
  letter-spacing: .2em;
  border-left: 1px solid #4d7902;
  padding-left: 1.6rem;
  font-size: 2.6rem;
}

@media screen and (width <= 767px) {
  .arrange__more-ttl {
    padding-left: 8px;
    font-size: 24px;
  }
}

.arrange__more-list {
  gap: 2.4rem;
  margin-top: 4rem;
  display: flex;
}

@media screen and (width <= 767px) {
  .arrange__more-list {
    flex-direction: column;
    gap: 56px;
    margin-top: 0;
  }
}

.arrange__more-item {
  width: 28rem;
}

@media screen and (width <= 767px) {
  .arrange__more-item {
    width: 100%;
    max-width: 280px;
  }
}

.arrange__more-item-img {
  aspect-ratio: 280 / 210;
  width: 100%;
  -webkit-mask-image: url("../img/img_shape_recipe.svg");
  mask-image: url("../img/img_shape_recipe.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.arrange__more-item-img img {
  object-fit: cover;
  will-change: transform;
  width: 100%;
  height: auto;
}

.arrange__more-item-ttl {
  margin-top: 3.2rem;
  font-size: 2.2rem;
  line-height: 1.6;
}

@media screen and (width <= 767px) {
  .arrange__more-item-ttl {
    margin-top: 16px;
    font-size: 24px;
  }
}

.arrange__more-item-sub {
  color: #666;
  margin-top: .8rem;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (width <= 767px) {
  .arrange__more-item-sub {
    letter-spacing: .05em;
    margin-top: 4px;
    font-size: 14px;
  }
}

.arrange__more-item-link-wrapper {
  text-align: center;
  margin-top: 3.2rem;
}

@media screen and (width <= 767px) {
  .arrange__more-item-link-wrapper {
    margin-top: 32px;
  }
}

.arrange__more-item-link-text {
  align-items: center;
  gap: 2.4rem;
  display: inline-flex;
}

@media screen and (width <= 767px) {
  .arrange__more-item-link-text {
    gap: 24px;
  }
}

.arrange__link {
  margin-top: 16rem;
}

@media screen and (width <= 767px) {
  .arrange__link {
    margin-top: 120px;
  }
}

.arrange__link-btn {
  background: linear-gradient(#f1f1ec 60%, #fafaf8 100%);
  justify-content: space-between;
  align-items: center;
  padding: 8rem 9.6rem 11.2rem;
  display: flex;
}

@media screen and (width <= 767px) {
  .arrange__link-btn {
    flex-direction: column;
    padding: 32px 32px 56px;
  }
}

.arrange__link-img {
  aspect-ratio: 125 / 167;
  width: 12.5rem;
}

@media screen and (width <= 767px) {
  .arrange__link-img {
    align-self: flex-start;
    width: 88px;
  }
}

.arrange__link-text {
  letter-spacing: .08em;
  align-items: center;
  gap: 2.4rem;
  padding-top: 3.2rem;
  padding-bottom: 1.6rem;
  font-size: 2.2rem;
  display: inline-flex;
}

@media screen and (width <= 767px) {
  .arrange__link-text {
    text-align: left;
    align-self: flex-end;
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 12px;
    font-size: 20px;
    line-height: 1.5;
  }
}

.voice {
  text-align: center;
  padding-top: 12rem;
  position: relative;
}

@media screen and (width <= 767px) {
  .voice {
    padding-top: 120px;
  }
}

.voice__ttl-en {
  color: #888;
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 1.3rem;
  display: block;
}

@media screen and (width <= 767px) {
  .voice__ttl-en {
    font-size: 11px;
  }
}

.voice__ttl-jp {
  margin-top: 3.2rem;
  font-size: 3.2rem;
  line-height: 1.6;
  display: block;
}

@media screen and (width <= 767px) {
  .voice__ttl-jp {
    margin-top: 32px;
    font-size: 27px;
  }
}

.voice__ttl-jp span {
  margin-bottom: .4rem;
  font-size: 1.8rem;
  line-height: 1.6;
  display: block;
}

@media screen and (width <= 767px) {
  .voice__ttl-jp span {
    margin-bottom: 4px;
    font-size: 19px;
  }
}

.voice__slider {
  margin: 8rem auto 0;
  position: relative;
}

@media screen and (width <= 767px) {
  .voice__slider {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.voice__list .swiper-button-prev, .voice__list .swiper-button-next {
  color: #333;
}

.voice__list .swiper-pagination-bullet {
  background-color: #333;
}

.voice__item {
  position: relative;
}

.voice__item-quote {
  width: 2.4rem;
  height: 2rem;
  position: absolute;
  top: .4rem;
  left: 0;
}

@media screen and (width <= 767px) {
  .voice__item-quote {
    width: 24px;
    height: 20px;
  }
}

.voice__item-text {
  text-align: left;
  text-indent: 2.5em;
  letter-spacing: .08em;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (width <= 767px) {
  .voice__item-text {
    font-size: 16px;
  }
}

.voice__item-text b {
  color: #4d7902;
  font-weight: normal;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: -4.8rem;
}

@media screen and (width <= 767px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    z-index: 1;
    bottom: -40px;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px 4px;
}

.swiper-pagination-bullet {
  background-color: #333;
  width: 4px;
  height: 4px;
}

.swiper-button-prev, .swiper-button-next {
  z-index: 1;
  width: 4.8rem;
  height: 4.8rem;
}

@media screen and (width <= 767px) {
  .swiper-button-prev, .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

.swiper-button-prev {
  left: 24rem;
}

@media screen and (width <= 767px) {
  .swiper-button-prev {
    left: 11vw;
  }
}

.swiper-button-next {
  right: 24rem;
}

@media screen and (width <= 767px) {
  .swiper-button-next {
    right: 11vw;
  }
}

.swiper-button-prev:after, .swiper-button-next:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 4.8rem;
  height: 4.8rem;
  margin: auto;
}

@media screen and (width <= 767px) {
  .swiper-button-prev:after, .swiper-button-next:after {
    width: 40px;
    height: 40px;
  }
}

.swiper-button-prev:after {
  background-image: url("../img/icon_prev.svg");
}

.swiper-button-next:after {
  background-image: url("../img/icon_next.svg");
}

.swiper-slide img {
  width: 100%;
  height: auto;
}

.story {
  text-align: center;
  contain: paint;
  flex-direction: column;
  align-items: center;
  padding-top: 20.8rem;
  display: flex;
}

@media screen and (width <= 767px) {
  .story {
    padding: 120px 32px;
  }
}

.story__img {
  aspect-ratio: 424 / 284;
  width: 42.4rem;
  -webkit-mask-image: url("../img/img_shape_story.svg");
  mask-image: url("../img/img_shape_story.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (width <= 767px) {
  .story__img {
    width: 100%;
  }
}

.story__img img {
  object-fit: cover;
  will-change: transform;
  width: 100%;
  height: auto;
}

.story__ttl {
  margin-top: 8rem;
}

@media screen and (width <= 767px) {
  .story__ttl {
    margin-top: 64px;
  }
}

.story__ttl-en {
  color: #888;
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
  display: block;
}

@media screen and (width <= 767px) {
  .story__ttl-en {
    font-size: 11px;
  }
}

.story__ttl-jp {
  margin-top: 3.2rem;
  font-size: 3.2rem;
  line-height: 1.6;
  display: block;
}

@media screen and (width <= 767px) {
  .story__ttl-jp {
    margin-top: 32px;
    font-size: 27px;
  }
}

.story__ttl-jp span {
  margin-left: .5em;
}

@media screen and (width <= 767px) {
  .story__ttl-jp span {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

.story__sub-ttl {
  color: #4d7902;
  margin-top: 2.4rem;
  font-size: 2rem;
  line-height: 2;
}

@media screen and (width <= 767px) {
  .story__sub-ttl {
    margin-top: 24px;
    font-size: 18px;
  }
}

.story__text {
  text-align: justify;
  width: 42.4rem;
  margin-top: 6.4rem;
  font-size: 1.6rem;
  line-height: 2.2;
}

@media screen and (width <= 767px) {
  .story__text {
    letter-spacing: .06em;
    width: 100%;
    margin-top: 40px;
    font-size: 16px;
  }
}

.story__text + .story__text {
  margin-top: 2.5em;
}

.related {
  text-align: center;
  padding: 13.6rem 6.4rem;
}

@media screen and (width <= 767px) {
  .related {
    padding: 120px 32px;
  }
}

.related__ttl {
  color: #888;
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}

@media screen and (width <= 767px) {
  .related__ttl {
    font-size: 11px;
  }
}

.related__list {
  justify-content: center;
  gap: 2.4rem;
  margin-top: 6.4rem;
  display: flex;
}

@media screen and (width <= 767px) {
  .related__list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
  }
}

@media (hover: hover), (-ms-high-contrast: none) {
  .related__item a:hover img {
    opacity: .7;
  }
}

@media screen and (width <= 767px) {
  .related__item {
    width: 240px;
  }
}

.pagetop {
  text-align: right;
  justify-content: flex-end;
  margin-bottom: 2.2rem;
  margin-left: 5.6rem;
  margin-right: 5.6rem;
  display: flex;
}

@media screen and (width <= 767px) {
  .pagetop {
    margin-bottom: 32px;
    margin-left: 32px;
    margin-right: 32px;
  }
}

.pagetop a {
  letter-spacing: 0;
  gap: 1.2rem;
  padding-top: 1em;
  padding-bottom: 1em;
  font-family: Inter, sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
  display: flex;
}

@media screen and (width <= 767px) {
  .pagetop a {
    gap: 12px;
    font-size: 13px;
  }
}

@media (hover: hover), (-ms-high-contrast: none) {
  .pagetop a:hover {
    opacity: .7;
  }
}

.pagetop a:before {
  content: "";
  aspect-ratio: 16 / 16;
  background-image: url("../img/icon_wave.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.6rem;
  display: inline-block;
}

@media screen and (width <= 767px) {
  .pagetop a:before {
    width: 16px;
  }
}

.footer {
  color: #fff;
  background-color: #4c4c4c;
  flex-direction: column;
  align-items: center;
  padding: 6.4rem 0 4.8rem;
  display: flex;
}

@media screen and (width <= 767px) {
  .footer {
    padding: 64px 0 48px;
  }
}

.footer__logo {
  width: 11.5rem;
}

@media screen and (width <= 767px) {
  .footer__logo {
    width: 115px;
  }
}

@media (hover: hover), (-ms-high-contrast: none) {
  .footer__logo a:hover {
    opacity: .7;
  }
}

.footer__social-list {
  letter-spacing: 0;
  align-items: center;
  gap: 2.5rem;
  margin-top: 6.4rem;
  font-family: Inter, sans-serif;
  font-size: 1.3rem;
  display: flex;
}

@media screen and (width <= 767px) {
  .footer__social-list {
    gap: 16px;
    margin-top: 64px;
    font-size: 11px;
  }
}

.footer__social-item:not(:last-child):after {
  content: "";
  vertical-align: middle;
  background-color: #ffffff4d;
  width: 1px;
  height: 1.15em;
  margin-left: 2.5rem;
  display: inline-block;
}

@media screen and (width <= 767px) {
  .footer__social-item:not(:last-child):after {
    margin-left: 16px;
  }
}

.footer__social-item a {
  text-underline-offset: 4px;
}

@media (hover: hover), (-ms-high-contrast: none) {
  .footer__social-item a:hover {
    opacity: .7;
    text-decoration: underline;
  }
}

.footer__copyright {
  opacity: .4;
  letter-spacing: 0;
  margin-top: 4rem;
  font-family: Inter, sans-serif;
  font-size: .9rem;
}

@media screen and (width <= 767px) {
  .footer__copyright {
    margin-top: 40px;
    font-size: 9px;
  }
}
