/*----------------------------------------------------------------------------
	base
----------------------------------------------------------------------------*/
picture,
figure {
  display: block;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  a:hover {
    opacity: 0.7;
  }
}

#popcorn {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  z-index: 1;
  background: #fff;
}

.grid-wrapper.is-col-01 {
  max-width: initial !important;
  overflow: visible !important;
  display: flow-root;
  background: #fff;
}

/*----------------------------------------------------------------------------
	c-button
----------------------------------------------------------------------------*/
.c-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 65px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .c-button {
    max-width: 315px;
    width: 100%;
    font-size: 14px;
  }
}
.c-button::after {
  position: absolute;
  right: 17px;
  top: 50%;
  display: inline-block;
  aspect-ratio: 1;
  width: 18px;
  background: url(../img/common/icon_arrow.svg) no-repeat center center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}
.c-button:hover {
  color: #fff;
}

/*----------------------------------------------------------------------------
  .l-inner
----------------------------------------------------------------------------*/
.l-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}

/*----------------------------------------------------------------------------
  .l-navi
----------------------------------------------------------------------------*/
.l-navi {
  /*display: none !important;*/
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% + 30px);
  margin: 0 -15px;
  padding: 0 15px;
  background-color: #3e3a39;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 100;
}
.l-navi.is-show {
  opacity: 1;
}
.l-navi__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .l-navi__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 80px;
  }
}
.l-navi__list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 56px;
  padding-top: 27px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-navi__list-item {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    padding: 0 0 0 20px;
    font-size: 12px;
  }
  .l-navi__list-item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}
.l-navi__list-item a:hover {
  color: #fff;
}
.l-navi__list-item--home {
  background: url(../img/common/icon_home.svg) no-repeat center 12px/13px auto;
}
@media screen and (min-width: 768px) {
  .l-navi__list-item--home {
    background-size: 16px auto;
    background-position: left center;
  }
}
.l-navi__list-item--ingredients {
  background: url(../img/common/icon_ingredients.svg) no-repeat center 12px/10px auto;
}
@media screen and (min-width: 768px) {
  .l-navi__list-item--ingredients {
    background-size: 12px auto;
    background-position: left center;
  }
}
.l-navi__list-item--farmers {
  background: url(../img/common/icon_farmers.svg) no-repeat center 12px/20px auto;
}
@media screen and (min-width: 768px) {
  .l-navi__list-item--farmers {
    padding-left: 30px;
    background-size: 24px auto;
    background-position: left center;
  }
}
.l-navi__list-item--lineup {
  background: url(../img/common/icon_lineup.svg) no-repeat center 12px/11px auto;
}
@media screen and (min-width: 768px) {
  .l-navi__list-item--lineup {
    background-size: 13px auto;
    background-position: left center;
  }
}

.is-menu-open .l-navi {
  left: 225px;
  width: calc(100% - 215px);
}

/*----------------------------------------------------------------------------
  .l-aside
----------------------------------------------------------------------------*/
.l-aside {
  margin: 0 -15px;
  padding-top: 18.1333333333vw;
  color: #fff;
  text-align: center;
  aspect-ratio: 751/1001;
  background: url(../img/common/sp_bg_aside.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .l-aside {
    height: 550px;
    padding-top: 137px;
    background-image: url(../img/common/pc_bg_aside.jpg);
    aspect-ratio: auto;
  }
}
.l-aside__title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .l-aside__title {
    font-size: 32px;
  }
}
.l-aside__title::after {
  display: block;
  width: 15px;
  height: 1px;
  margin: 18px auto 12px auto;
  background: #fff;
  content: "";
}
@media screen and (min-width: 768px) {
  .l-aside__title::after {
    width: 30px;
    margin: 22px auto 17px auto;
  }
}
.l-aside__text {
  margin-bottom: 20vw;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .l-aside__text {
    margin-bottom: 90px;
    font-size: 16px;
  }
}
.l-aside__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .l-aside__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 45px;
  }
}

/*----------------------------------------------------------------------------
  .l-splash
----------------------------------------------------------------------------*/
.l-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  overflow: hidden;
}
.l-splash__logo {
  max-width: 80%;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .l-splash__logo {
    max-width: 400px;
  }
}

#popcorn {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .u-hide--pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-hide--sp {
    display: none !important;
  }
}

.u-inlineblock {
  display: inline-block;
}

.u-font-en {
  font-family: "Poppins", sans-serif;
}

.u-animate--fadeInUp {
  visibility: hidden;
}
.u-animate--fadeInUp.is-animated {
  -webkit-animation: animate-fadeInUp 1.5s ease 0s both 1 normal;
          animation: animate-fadeInUp 1.5s ease 0s both 1 normal;
  visibility: visible !important;
}

@-webkit-keyframes animate-fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes animate-fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.p-top {
  padding-top: 53px;
}
@media screen and (min-width: 768px) {
  .p-top {
    padding-top: 50px;
  }
}

.p-top-mv {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-top-mv {
    position: relative;
    margin-bottom: 111px;
	  margin-bottom: 0;
  }
}
.p-top-mv__logo-01 {
  max-width: 180px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-top-mv__logo-01 {
    position: absolute;
    top: 23.3333333333%;
    left: 50%;
    max-width: initial;
    width: 32.6363636364%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
	  filter: drop-shadow(1px 1px 3px #333);
  }
  .p-top-mv__logo-01 img {
    width: 100%;
  }
}
.p-top-mv__logo-02 {
  position: relative;
  margin: 20px auto 15px auto;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-top-mv__logo-02 {
    position: absolute;
    top: 49.6666666667%;
    left: 50%;
    width: 100%;
    margin: 0;
    font-size: 4.0909090909vw;
    color: #fff;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
	text-shadow: 1px 1px 15px #000;
  }
  .p-top-mv__logo-02 img {
    width: 100%;
  }
}
.p-top-mv__wrapper {
  width: calc(100% + 30px);
  margin: 0 -15px;
}
.p-top-mv__slider {
  position: relative;
  width: 85%;
  margin: 0 auto;
  aspect-ratio: 631/381;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-top-mv__slider {
    width: 95%;
    aspect-ratio: 1100/600;
  }
}
.p-top-mv__image {
  position: absolute;
  top: 0;
  left: 0;
	display: block;
    width: 100%;
    height: 100%;
}
.p-top-mv__image img, .p-top-mv__image video {
  width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}
@media screen and (min-width: 768px) {
  .p-top-mv__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .p-top-mv__image img,
	.p-top-mv__image video{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-top-mv__copy,
.p-top-mv__copy2{
  margin: 13px 0 0 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.25em;
}
@media screen and (min-width: 768px) {
  .p-top-mv__copy,.p-top-mv__copy2 {
    position: absolute;
    top: 61.3333333333%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0;
    color: #fff;
    font-size: 1.4545454545vw;
    line-height: 2;
	  text-shadow: 1px 1px 15px #000;
  }
}
.p-top-mv__copy-en {
  padding-top: 84px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.015em;
  white-space: nowrap;
  background: url(../img/common/icon_star.svg) no-repeat center 35px/10px auto;
}
.p-top-intro {
  margin-bottom: 30px;
}
.p-top-intro2 {
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .p-top-intro {
    margin-bottom: 30px;
  }
	.p-top-intro2 {
    margin-bottom: 124px;
  }
}
.p-top-intro__title {
  font-size: 4vw;
  font-weight: 700;
  line-height: 2;
	text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-intro__title {
	  margin-top: 90px;
    font-size: 25px;
    text-align: center;
  }
}
.p-top-intro__text {
  padding-top: 15px;
  font-size: 3.3vw;
  font-weight: 500;
	text-align: center;
}
.p-top-intro__text.text-icn{
	  margin-top: 0;
    padding-top: 70px;
    text-align: center;
    letter-spacing: -0.05em;
    background: url(../img/common/icon_star.svg) no-repeat center 35px/10px auto;
	
  }
.p-top-intro__text span{
	display: inline-block;
	width: 33px;
	position: relative;
}
.p-top-intro__text span::after {
  position: absolute;
  left: 5px;
  top: -15px;
  display: inline-block;
  aspect-ratio: 1;
  width: 22px;
  background: url(../img/top/txt_intro-01.svg) no-repeat center center/contain;
  content: "";
}
.p-top-intro__image.text-icn{
    padding-bottom: 40px;
    text-align: center;
    background: url(../img/common/icon_star.svg) no-repeat center 35px/10px auto;
		background-position: bottom;
	width: calc(100% + 60px);
    margin: 0 -30px 40px;
}
.p-top-intro__image{
	margin-top: 7px;
	text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-intro__text {
    padding-top: 25px;
    font-size: 16px;
    font-weight: 500;
  }
  .p-top-intro__text.text-icn{
	  margin-top: 0;
    padding-top: 70px;
    text-align: center;
    letter-spacing: 0.1em;
    background: url(../img/common/icon_star.svg) no-repeat center 35px/12px auto;
  }
	.p-top-intro__image.text-icn{
	margin-top: 0;
	margin-bottom: 0;
    padding-bottom: 35px;
    text-align: center;
    background: url(../img/common/icon_star.svg) no-repeat center 35px/12px auto;
		background-position: bottom;
  }
  .p-top-intro__text {
	  margin: 15px 0;
    padding-top: 0;
    font-size: 17px;
    text-align: center;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro .l-inner{
    padding: 0;
  }
}
.p-top-reason__section {
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .p-top-reason__section {
    margin-bottom: 178px;
  }
  .p-top-reason__section .p-top-reason__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    margin-top: 57px;
    padding: 0 40px;
  }
  .p-top-reason__section:nth-child(odd) .p-top-reason__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-top-reason__section:nth-child(even) .p-top-reason__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-top-reason__section:nth-child(even) .p-top-reason__copy {
    width: 80px;
    -webkit-transform: rotate(90deg) translate(6px, -20px);
            transform: rotate(90deg) translate(6px, -20px);
  }
}
.p-top-reason__tips {
  margin: 0 -15px;
  overflow: hidden;
  border-top: 1px solid #000;
border-bottom: 1px solid #000;
}

.p-top-reason__tips-track {
  display: flex;
  width: max-content;
  animation: loop 40s linear infinite;
  will-change: transform;
}

.p-top-reason__tips span {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 22px;
  margin-right: 20px;
}


@keyframes loop {
  to {
    transform: translateX(-50%);
  }
}
.p-top-reason__tips span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-reason__tips span {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.64;
  }
}
/*
.p-top-reason__tips {
  margin: 0 -15px;
  overflow: hidden;
  border-top: 1px solid #000;
}
.p-top-reason__tips {
  overflow: hidden;
}

.p-top-reason__tips-track {
  display: flex;
  width: max-content;
  animation: loop 15s linear infinite;
}

.loop-set {
  display: flex;
}

@keyframes loop {
  to {
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) {
  .p-top-reason__tips {
    border-bottom: 1px solid #000;
  }
}
.p-top-reason__tips-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-animation: scroll-left 20s linear infinite;
          animation: scroll-left 20s linear infinite;
}
.p-top-reason__tips span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-reason__tips span {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.64;
  }
}*/
.p-top-reason__image {
  width: calc(100% + 60px);
  margin: 0 -30px;
}
@media screen and (min-width: 768px) {
  .p-top-reason__image {
    width: 500px;
    margin: 0;
	  display: grid;
  }
}
.p-top-reason__image img {
  width: 100%;
  position: relative;
}
.p-top-reason__image .cap{
	position: absolute;
	bottom: -1px;
	right: 0;
	padding: 3px 6px;
  font-size: 13px;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.9);
	z-index: 1;
}
.p-top-reason__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -15px;
}
@media screen and (min-width: 768px) {
	.p-top-reason__image .cap{
		position: absolute;
		bottom: -1px;
		left: 0;
		right: auto;
		padding: 3px 6px;
		font-size: 13px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.9);
		z-index: 1;
	}
  .p-top-reason__wrapper {
    margin: 0;
  }
}
.p-top-reason__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /*width: 345px;*/
  padding-top: 45px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-top-reason__content {
    width: auto;
    padding-top: 0;
  }
}
.p-top-reason__content > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-reason__copy {
  width: 105px;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-top-reason__copy {
    width: 70px;
    font-size: 30px;
    font-weight: 600;
    -webkit-transform: rotate(90deg) translate(6px, 25px);
            transform: rotate(90deg) translate(6px, 25px);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
}
.p-top-reason__lead {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-top-reason__lead {
    margin-top: -4px;
    font-size: 23px;
  }
}
.p-top-reason__text {
  padding-top: 30px;
  font-size: 14px;
  font-weight: 500;
  background: url(../img/common/icon_star.svg) no-repeat left 12px/7px auto;
}
@media screen and (min-width: 768px) {
  .p-top-reason__text {
    padding-top: 47px;
    font-size: 15px;
    line-height: 1.86;
    background-position: left 18px;
    background-size: 12px auto;
  }
}
.p-top-reason__link {
  /*pointer-events: none;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 250px;
  height: 46px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 900;
  line-height: 25px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .p-top-reason__link {
    margin-top: 30px;
    font-size: 15px;
  }
}
.p-top-reason__link:hover {
  color: #000;
}
.p-top-reason__link::after {
  font-size: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  
  padding-right: 33px;			
  background: url(../img/common/icon_arrow.svg) no-repeat right center/25px auto;
  filter: brightness(0) saturate(100%);
  content: 'More Detail';
  /*
  content: "Coming soon";
  pointer-events: none;*/
}
@media screen and (min-width: 768px) {
  .p-top-reason__link::after {
    font-size: 12px;
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.fade-in.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}