@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
*  COMMON
* --------------------------------------------------------------------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  height: 100%;
  position: relative;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: normal;
  color: #373331;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-break: strict;
  overflow-wrap: anywhere;
  overflow-x: hidden;
  background-color: #fff;
}
a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: 0.5s all;
  cursor: pointer;
}
a:hover {
  opacity: 0.5;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
:root {
  --color-gold: #a08c52;
  --lineHeight-headingText: 1.4;
  --lineHeight-otherText: 1.8;
  --fontFamily-mincho: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  --fontFamily-adventures: "adventures-unlimited", sans-serif;
  --fontFamily-din: "din-2014", sans-serif;
}

@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}


/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
header {
  position: absolute;
  top: 0;
  z-index: 9999;
  width: 100%;
  padding-top: 2.5rem;
}
header a {
  width: 7.1rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  header {
    padding-top: min(50 / 1624 * 100vh, 5rem);
  }
  header a {
    width: min(124 / 1624 * 100vh, 12.4rem);
  }
}

/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
body > footer {
  position: sticky;
  top: 100vh;
  top: 100dvh;
}
footer {
  padding-bottom: 4rem;
}
footer a:first-of-type {
  width: 8.5rem;
  margin: 0 auto 3rem;
}
footer a:last-of-type {
  width: fit-content;
  font-size: 1.8rem;
  line-height: var(--lineHeight-headingText);
  text-align: center;
  margin: 0 auto 2.5rem;
}
footer small {
  display: block;
  font-size: 1.4rem;
  font-family: var(--fontFamily-din);
  font-weight: 400;
  text-align: center;
}

@media (max-width: 767px) {
  footer {
    padding-bottom: min(60 / 750 * 100vw, 60rem);
  }
  footer a:first-of-type {
    width: min(147 / 750 * 100vw, 14.7rem);
    margin: 0 auto min(55 / 750 * 100vw, 5.5rem);
  }
  footer a:last-of-type {
    font-size: 1.5rem;
    margin: 0 auto min(40 / 750 * 100vw, 4rem);
  }
  footer small {
    font-size: 1.2rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  コンテンツ
* --------------------------------------------------------------------------------------------------*/

/* KV */
.kv {
  position: relative;
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100svh;
  margin-bottom: 12.5rem;
  /*aspect-ratio: 1366 / 792;*/
}
.kv h1,
.kv h2 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  font-family: var(--fontFamily-mincho);
  line-height: var(--lineHeight-headingText);
  color: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.kv h1 {
  width: 100%;
  top: calc(50% - 31.187%);
  font-size: min(32 / 792 * 100vh, 3.2rem);
}
.kv h2 {
  width: 100%;
  top: calc(50% + 31.061%);
  font-size: min(38 / 792 * 100vh, 3.8rem);
}
.kv h1 br,
.kv h2 br:first-child {
  display: none;
}
.kv__lists {
  display: flex;
  z-index: 0;
  height: calc(100% - 2.5rem);
}
.kv__lists__item {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: opacity 1s ease;
}
.kv__lists__item.type--remon {
  background-color: #56a0d7;
}
.kv__lists__item.type--carrot {
  background-color: #a2d120;
}
.kv__lists__item.type--burdock {
  background-color: #cca53e;
}
.product {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 52%;
  animation-name: kvAnimation;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.product img {
  height: 100%;
  object-fit: contain;
}
@keyframes kvAnimation {
  from {
    opacity: 0;
    top: calc(50% + 2rem);
  }
  to {
    opacity: 1;
    top: 50%;
  }
}
.productBg {
  animation-name: kvAnimation--bg;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.productBg img {
  height: 100%;
  object-fit: cover;
}
@keyframes kvAnimation--bg {
  from {
    opacity: 0;
    filter: blur(0.5rem);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.scroll {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--fontFamily-din);
}
.scroll span {
  position: relative;
  width: 1px;
  height: 5rem;
  margin-top: 1rem;
}
.scroll span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #373331;
  animation-name: scrollAnimation;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@keyframes scrollAnimation {
  from {
    height: 100%;
  }
  to {
    height: 0;
  }
}

@media (max-width: 767px) {
  .kv {
    margin-bottom: min(120 / 1624 * 100vh, 12rem);
  }
  .kv h1 {
    top: calc(50% - 31.034%);
    font-size: min(46 / 1624 * 100vh, 4.6rem);
  }
  .kv h2 {
    top: calc(50% + 26.293%);
    font-size: min(62 / 1624 * 100vh, 6.2em);
  }
  .kv h1 br,
  .kv h2 br:first-child {
    display: inline-block;
  }
  .kv__lists {
    height: calc(100% - (min(60 / 1624 * 100vh, 6rem)));
  }
  .kv__lists__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - (min(60 / 1624 * 100vh, 6rem)));
    opacity: 0;
  }
  .kv__lists__item.is-active {
    opacity: 1;
  }
  .product {
    height: 41.88%;
  }
  @keyframes kvAnimation {
    from {
      opacity: 0;
      top: calc(50% - 2.558% + 2rem);
    }
    to {
      opacity: 1;
      top: calc(50% - 2.558%);
    }
}
  .scroll span {
    width: 0.1rem;
    height: min(120 / 1624 * 100vh, 12rem);
  }
}

/* CONCEPT */
.concept {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 16% 24% 10% 27% 23%;
  gap: 11.7rem 0;
  width: 100%;
  margin-bottom: 13rem;
  padding-left: 13.397%;
  padding-right: 13.397%;
}
.concept h2 {
  grid-row: 1 / 2;
  grid-column: 4 / 5;
  font-size: 2.8rem;
  justify-self: left;
  font-family: var(--fontFamily-mincho);
  line-height: var(--lineHeight-headingText);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  padding-top: 3rem;
}
.concept__text {
  grid-row: 2 / 3;
  grid-column: 4 / 6;
  line-height: var(--lineHeight-otherText);
  padding-left: 12%;
}
.concept__text p + p {
  margin-top: 3rem;
}
.concept__image01 {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
  position: relative;
  container-type: inline-size;
}
.concept__image01__icon {
  position: absolute;
  top: -3rem;
  right: -5%;
  z-index: 1;
  width: 30.5cqw;
}
.concept__image02 {
  grid-row: 1 / 2;
  grid-column: 5 / 6;
  padding-top: 26rem;
}
.concept__image03 {
  display: none;
}
.concept__image04 {
  grid-row: 2 / 3;
  grid-column: 2 / 4;
}

@media (max-width: 767px) {
  .concept {
    grid-template-columns: 8% 21.333% 41.333% 21.333% 8%;
    gap: min(100 / 750 * 100vw, 10rem) 0;
    margin-bottom: min(170 / 750 * 100vw, 17rem);
    padding-left: 0;
    padding-right: 0;
  }
  .concept h2 {
    grid-row: 2 / 3;
    grid-column: 3 / 4;
    font-size: 2.2rem;
    justify-self: center;
    padding-top: 0;
  }
  .concept__text {
    grid-row: 3 / 4;
    grid-column: 2 / 5;
    padding-left: 0;
    text-align: center;
  }
  .concept__text p + p {
    margin-top: 2.5rem;
  }
  .concept__image01 {
    grid-row: 1 / 2;
    grid-column: 2 / 5;
  }
  .concept__image01__icon {
    top: -2.5rem;
    right: -5.079%;
  }
  .concept__image02 {
    grid-row: 2 / 3;
    grid-column: 4 / 6;
    padding-top: min(70 / 750 * 100vw, 7rem);
  }
  .concept__image03 {
    display: block;
    grid-row: 2 / 3;
    grid-column: 1 / 3;
  }
  .concept__image03 img {
    margin-top: 26.25rem
  }
  .concept__image04 {
    grid-row: 4 / 5;
    grid-column: 2 / 5;
    padding-left: 4.762%;
    padding-right: 4.762%;
  }
}


/* FEATURES */
.features {
  margin-bottom: 8rem;
}
.features h2 {
  position: relative;
  z-index: 1;
  font-size: 12rem;
  font-family: var(--fontFamily-adventures);
  margin-left: 13.397%;
  margin-bottom: -9.5rem;
}
.features__container {
  clip-path: polygon(0 6rem, 100% 0, 100% calc(100% - 6rem), 0 100%);
  background: url("../images/image_feature_bg.jpg") repeat center center / 100%;
}
.detail {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46rem;
}
.detail01 {
  clip-path: polygon(0 6rem, 100% 0, 100% calc(100% - 6rem), 0 100%);
  background: url("../images/image_feature_01@2x.png") no-repeat right / cover;
  background-color: #615041;
}
.detail02 {
  position: relative;
  z-index: 1;
  margin-top: -5rem;
  clip-path: polygon(0 0, 100% 6rem, 100% 100%, 0 calc(100% - 6rem));
  background: url("../images/image_feature_02@2x.png") no-repeat left / cover;
  background-color: #989797;
}
.detail03 {
  position: relative;
  z-index: 2;
  margin-top: -5rem;
  clip-path: polygon(0 6rem, 100% 0, 100% calc(100% - 6rem), 0 100%);
  background: url("../images/image_feature_03@2x.png") no-repeat right / cover;
  background-color: #46afee;
}
.detail__box {
  display: flex;
}
.detail01 .detail__box {
  margin-left: 16.837%;
}
.detail02 .detail__box {
  margin-left: auto;
  margin-right: 16.837%;
}
.detail03 .detail__box {
  margin-left: 15.666%;
}
.detail__box h3 {
  color: #d8c77f;
  font-family: var(--fontFamily-mincho);
  line-height: var(--lineHeight-headingText);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
.detail__box h3::before {
  content: "";
  display: flex;
  width: 0.1rem;
  margin-left: 0.5rem;
  margin-right: 3.5rem;
  background-color: #d8c77f;
}
.detail03 .detail__box h3 {
  line-height: 1.2;
}
.detail__box__text {
  width: 40rem;
  color: #FFF;
}
.detail__box__text h4 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: var(--lineHeight-headingText);
  margin-bottom: 2rem;
}
.detail__box__text p {
  line-height: var(--lineHeight-otherText);
}

@media (max-width: 1024px) {
  .features h2 {
    margin-left: 8%;
  }
  .detail01 {
    background-position: 45%;
  }
  .detail02 {
    background-position: 55%;
  }
  .detail03 {
    background-position: 45%;
  }
  .detail01 .detail__box {
    margin-left: 8%;
  }
  .detail02 .detail__box {
    margin-right: 8%;
  }
  .detail03 .detail__box {
    margin-left: 8%;
  }
}
@media (max-width: 767px) {
  .features {
    margin-bottom: min(120 / 750 * 100vw, 12rem);
  }
  .features h2 {
    font-size: 9rem;
    margin-bottom: -5rem;
  }
  .features__container {
    clip-path: polygon(0 1.5rem, 100% 0, 100% calc(100% - 1.5rem), 0 100%);
  }
  .detail {
    min-height: 41.5rem;
  }
  .detail01 {
    clip-path: polygon(0 1.5rem, 100% 0, 100% calc(100% - 1.5rem), 0 100%);
    background: url("../images/image_feature_01_sp.png") no-repeat right / cover;
    background-color: #615041;
  }
  .detail02 {
    margin-top: min(-5 / 750 * 100vw, -0.5rem);
    clip-path: polygon(0 0, 100% 1.5rem, 100% 100%, 0 calc(100% - 1.5rem));
    background: url("../images/image_feature_02_sp.png") no-repeat left / cover;
    background-color: #989797;
  }
  .detail03 {
    margin-top: min(-5 / 750 * 100vw, -0.5rem);
    clip-path: polygon(0 1.5rem, 100% 0, 100% calc(100% - 1.5rem), 0 100%);
    background: url("../images/image_feature_03_sp.png") no-repeat right / cover;
    background-color: #46afee;
  }
  .detail__box {
    flex-flow: column;
    width: 62.667%;
  }
  .detail__box h3 {
    writing-mode: unset;
  }
  .detail__box h3::before {
    display: none;
  }
  .detail__box h3::after {
    content: "";
    display: flex;
    height: 0.1rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    background-color: #d8c77f;
  }
  .detail03 .detail__box h3 br {
    display: none;
  }
  .detail__box__text {
    width: 100%;
  }
  .detail__box__text h4 {
    font-size: 1.9rem;
    margin-bottom: 2rem;
  }
}


/* LINEUP */
.lineup {
  margin-bottom: 16rem;
  padding-left: 13.397%;
  padding-right: 13.397%;
}
.lineup h2 {
  width: fit-content;
  margin: 0 auto 3.5rem;
  font-size: 12rem;
  font-family: var(--fontFamily-adventures);
}
.lineup__lists {
  display: flex;
  gap: 0 2rem;
}
.lineup__lists__item {
  flex: 1;
  position: relative;
  border: solid 0.1rem #373331;
}
.lineup__lists__item a {
  display: flex;
  flex-flow: column;
  height: 100%;
}
.item__box {
  position: relative;
  width: 100%;
  margin-top: -8rem;
  padding: 0 7.813% 0;
}
.item__box h3 {
  font-size: 1.5rem;
  font-weight: bolder;
  line-height: var(--lineHeight-headingText);
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.item__box h4 {
  font-size: 2.2rem;
  font-weight: bolder;
  line-height: var(--lineHeight-headingText);
  margin-bottom: 1rem;
}
.item__box p {
  line-height: var(--lineHeight-otherText);
  margin-bottom: 3rem;
}
.item__more {
  width: fit-content;
  display: flex;
  align-items: center;
  margin: auto auto 2rem;
}
.item__more::after {
  content: "";
  width: 1.7rem;
  height: auto;
  aspect-ratio: 1 / 1;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34 34" fill="rgba(55, 51, 49, 1)"><path d="M17,0C7.6,0,0,7.6,0,17s7.6,17,17,17,17-7.6,17-17S26.4,0,17,0ZM25.6,17l-9,9-2-2,5.6-5.6h-11.8v-2.8h11.8l-5.6-5.6,2-2,9,9h0s0,0,0,0Z"/></svg>') no-repeat center center / contain;
  margin-left: 0.8rem;
}
.item__more span {
  font-family: var(--fontFamily-din);
}
.item__vegetable {
  display: flex;
  flex-flow: column;
  gap: 0.8rem 0;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.vegetable {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-image: url("../images/pattern.png");
  background-repeat: repeat;
  background-size: 2px;
  container-type: inline-size;
}
.vegetable span {
  font-size: 20cqw;
  text-align: center;
  line-height: 1.2;
  margin-top: 5%;
  color: var(--color-gold);
}

@media (max-width: 1024px) {
  .lineup {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (max-width: 767px) {
  .lineup {
    margin-bottom: min(200 / 750 * 100vw, 20rem);
    padding-left: 8%;
    padding-right: 8%;
  }
  .lineup h2 {
    margin: 0 auto 3rem;
    font-size: 9rem;
  }
  .lineup__lists {
    flex-flow: column;
    gap: 2rem 0;
  }
  .lineup__lists__item {
    container-type: inline-size;
  }
  .item__box {
    margin-top: min(-165 / 750 * 100vw, 16.5rem);
    padding: 0 6.369% 0;
  }
  .item__box h3 {
    font-size: 1.3rem;
  }
  .item__box h4 {
    font-size: 1.85rem;
  }
  .item__box p {
    margin-bottom: 2.5rem;
  }
  .item__more {
    margin: auto auto 1.5rem;
  }
  .item__more::after {
    width: 1.5rem;
  }
  .item__vegetable {
    width: min(16.906cqw, 5.3rem);
    top: min(30 / 750 * 100vw, 3rem);
    right: 4.777%;
  }
  .vegetable {
    width: 100%;
  }
}


/* OTHER */
.other {
  display: block;
  margin-bottom: 16rem;
}

@media (max-width: 767px) {
  .other {
    margin-bottom: min(200 / 750 * 100vw, 20rem);
  }
}


/* ----------------------------------------------------------------------------------------------------
*  その他
* --------------------------------------------------------------------------------------------------*/

.fadein {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}