html {
  font-size: 16px; /* ベースのフォントサイズを指定 */
  scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border: none;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	line-height: 1.6;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}
ins {
    background-color:#fff;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#fff;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}


body {
  font-size: 1rem; /* 16px */
	font-family: "Zen Kaku Gothic New",游ゴシック;
  font-weight: 500;
	line-height: 1.6px;
}
#chili,#about,#intro {
	scroll-margin-top: 80px;
}
.pc-none {
	display: none;
}
/*====================================================================
ハンバーガー
====================================================================*/
/* header */
.header_logo {
	width: clamp(90px,8vw,200px);
  filter: drop-shadow(1px 1px 2px rgba(51, 51, 51, 0.3));
}
.l-header {
	display: block;
	z-index: 999;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	padding: 24px 0;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
  }
  .c-hamburger {
	position: relative;
	width: inherit;
	height: inherit;
	margin: 0;
	border: transparent;
	background-color: transparent;
	cursor: pointer;
  }
  .c-hamburger span {
	display: block;
	position: relative;
	left: 50%;
	width: 40px;
	height: 2px;
	transform: translateX(-50%);
	background: #fff;
	transition: all 0.4s;
  filter: drop-shadow(1px 1px 2px rgba(51, 51, 51, 0.3));
	/* filter: drop-shadow(1px 1px 2px #6AC5CC); */
  }
  .c-hamburger span:nth-of-type(1) {
	top: -8px;
  }
  
  .c-hamburger span:nth-of-type(2) {
	top: 1px;
  
	transform: translateX(-0.45deg);
  }
  
  .c-hamburger span:nth-of-type(3) {
	top: 10px;
	transform: translateX(-0.45deg);
  }
  .c-hamburger.is-active span:nth-of-type(1) {
	top: 0;
	transform: translateX(-50%) rotate(225deg);
  }
  
  .c-hamburger.is-active span:nth-of-type(2) {
	opacity: 0;
  }
  
  .c-hamburger.is-active span:nth-of-type(3) {
	top: -4px;
	transform: translateX(-50%) rotate(-225deg);
  }
  .p-header__nav {
	display: flex;
	z-index: 10;
	position: absolute;
	top: 0;
	right: -100%;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	background: transparent;
	opacity: 0;
	transition: top 0.6s, right 0.6s, opacity 0.6s;
  }
  
  .p-header__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 50px;
  
  }
  
  .p-header__hamburger {
	z-index: 100;
	position: absolute;
	right: 0;
	width: 95px;
	height: 100%;
  }
  
  .p-header__nav.is-active {
	position: fixed;
	top: 0;
	right: 0;
	opacity: 1;
	background-color: #6AC5CC;
  }  
  .p-nav__list {
	display: block;
	padding-right: 20px;
	padding-left: 20px;
	align-items: center;
  }
  .p-nav__list .p-nav__item .p-nav__link {
	color: #fff;
	font-size: 20px;
	text-shadow: 1px 1px 2px rgba(51, 51, 51, 0.3);
  
  }
  .p-nav__link {
	text-align: center;
	display: block;
	padding: 20px 32px;
	white-space: nowrap;
  }
  .p-nav__list .p-nav__item .p-nav__link:hover {
	color: #40B1C2;
	text-shadow: none;
  }
  @media screen and (min-width: 1320px) {
  
	.p-header__hamburger {
	  display: none;
	}
  
	.p-nav__inner {
	text-align: center;
	  margin-right: auto;
	  margin-left: auto;
	  max-width: initial;
	  width: 100%;
	}
  
	.p-header__nav {
		text-align: center;
	  position: static;
	  opacity: 1;
	  height: inherit;
	  width: initial;
	}
  
	.p-nav__list {
	  padding-right: 0;
	  padding-left: 0;
	  display: flex;
	  text-align: center;
	}
  }
  .p-nav__link {
	position: relative;
  }
.p-nav__link::after {
	  position: absolute;
	  left: 0;
	  content: '';
	  width: 100%;
	  height: 2px;
	  background: #40B1C2;;
	  bottom: 0;
	  transform: scale(0, 1);
	  transform-origin: left top;
	  transition: transform 0.3s;
  }
.p-nav__link:hover::after {
	  transform: scale(1, 1);
  }
.p-nav__link a:hover {
	color: #40B1C2;
  }
  /* headerここまで */
/*====================================================================
メインコンテンツ
====================================================================*/
.top-ttl{
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .textanimation{
            font-size: 25px;
            font-family:"Times New Roman", 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", serif;
        }
        @keyframes showTextFromBottom{
      0%{
         transform: translateY( 100% );
      
      }
      100%{
          transform: translateY( 0px );
      }
    }
    .textanimation span{
     animation: showText 3s backwards;
     display: inline-block;
    }
    .textanimation > span{
      overflow: hidden;
    }
    .textanimation > span > span{
      animation: showTextFromBottom 0.5s backwards;
    }
/* 文字のアニメーション */
.fv_logo {
  width: clamp(200px,18vw,300px);
  margin-top: 1.667vw;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fv_logo.show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.5s;
}
.main-visual {
	width: 100%;
	height: clamp(250px, 80vh, 1000px);
  padding: 0;
	display: flex;           /* Flexboxを有効化 */
	justify-content: flex-start; /* 横方向中央揃え */
	align-items: center;     /* 縦方向中央揃え */
  position: relative;
}
.main-visual_all {
	width: 100%;
    background: url(../images/pc_mv.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.catch_copy {
	font-size: clamp(2.5rem, 2.8125vw, 3.375rem);
	color: #fff;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
  white-space: nowrap;
}

.catch_copy_all {
  width: 90%; /* 1920px時に約1000pxになる */
	max-width: 1000px; /* 念のため上限設定 */
	margin: 0 auto; /* 中央揃えにするなら */
  padding-top: 90px;
  display: flex;
}
.catch_copy_center {
  text-align: center;
}
/*====================================================================
intro
====================================================================*/
.section_intro {
	/* height: 46.3vh; */
	background-color: #6AC5CC;
	text-align: center;
	color: #fff;
	position: relative;
}
.intro_inner {
	padding: 88px 0;
  background-color: #6AC5CC;
}
.intro_main_text {
	font-size: clamp(32px, 2.8125vw, 48px);
	line-height: 1.5;
	font-family: "Shippori Mincho", serif;
}
.intro_sub_text {
	font-size: 14px;
	margin-bottom: 4.667%;
}
/*====================================================================
各説明テキスト
====================================================================*/
.ex_inner {
	display: flex;
	width: clamp(1000px, 80vw, 1200px);
	margin: 0 auto;
	gap: 7.083vw;
	align-items: center;
	margin-bottom: clamp(64px, 5.417vw, 104px);
	z-index: 888;
}
.ex_images {
	width: clamp(400px, 28.75vw, 552px);
}
.ex_text_all {
	line-height: 1.6;
}
.section_ex {
	padding: 7vw 0 0;
	display: flex;
	flex-direction: column;
	background-color: #fff;
}
.ex_inner:nth-child(even) {
  flex-direction: row-reverse; /* 偶数番目を反転 */
}
.ex_text_all {
	color: #00ABB8;
}
.ex_text_all p {
	line-height: 2;
}
.ex_text_h1 {
	font-size: clamp(72px, 5.208vw, 6.25rem);
	font-family: "Shippori Mincho", serif;
    font-weight: 400;
	line-height: 1.2;
}
.ex_text_sub {
	font-size:  clamp(22px,1.25vw,32px);
	margin-bottom: 3.333vw;
	font-weight: 700;
}
.ex_text_txt {
	padding-top:2.083vw;
	width: 50%;
}
/*====================================================================
商品
====================================================================*/
.section_product {
	height: auto;
	line-height: 1.6;
	background: url(../images/bg_product_pc.jpg);
	padding: 206px 0;
	color: #fff;
	background-size: cover;
}
.section_product_h1 {
	font-size: clamp(72px, 5.208vw, 6.25rem);;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    line-height: 1.2;
	text-align: center;
	color: #fff;
}
.product_text_sub {
  font-size: clamp(22px, 1.25vw, 32px);
	text-align: center;
	color: #fff;
	padding-bottom: 64px;
  font-weight: 700;
}
.product_images {
	width:clamp(180px, 13.542vw, 260px);
}
.section_product_inner {
	width: clamp(400px, 54%, 1013px);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap:2.083vw;
	justify-content: space-between;
	padding-bottom: 56px;
}
.section_product_inner:nth-child(odd) {
	flex-direction: row-reverse;
}

.product_h2 {
	font-size: clamp(46px,3.5vw,100px);
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
  line-height: 1.2;
}
.product_ttl {
	display: flex;
	align-items: center;
	gap:20px;
	padding-bottom: 20px;
}
.product_ttl div {
	font-size: clamp(24px, 1.8vw, 40px);
	padding-top: 20px;
	letter-spacing: -0.1em;
  font-weight: 700;
}
.product_txt {
	margin-bottom: clamp(16px, 1.25vw, 24px);
}

.product_btn {
	margin-top: 40px;
}
/*====================================================================
ボタン
====================================================================*/
.product_btn {
  display: inline-flex;
  justify-content: center;    /* 中央寄せ */
  align-items: center;        /* 上下中央寄せ */
  padding: 16px 48px;         /* 縦横の余白調整 */
  background-color: #40B1C2;  /* 背景色 */
  border: 2px solid #40B1C2;
  border-radius: 12px;        /* 角丸 */
  transition: all 0.3s;
}

.product_btn a {
  display: inline-block;
  width: 250px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  position: relative;
}

/* 矢印 */
.product_btn a::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  transition: right 0.3s, border-color 0.3s;
}

/* hover時の色・位置変更 */
.product_btn:hover {
  background-color: #fff;
  border-color: #40B1C2;
}

.product_btn:hover a {
  color: #40B1C2;
}

.product_btn:hover a::before {
  right: 25px;
  border-color: #40B1C2;
}

/*====================================================================
フードペアリング
====================================================================*/
.section_food_h1 {
	font-size: clamp(46px, 5.1vw, 100px);
	font-family: "Shippori Mincho", serif;
    font-weight: 400;
	line-height: 1.2;
}
.section_food {
	padding: 140px 0;
	color: #40B1C2;
}
.food_ttl {
	display: flex;
	justify-content: space-between;
	width: clamp(990px,70%, 1350px);
	margin: 0 auto;
	gap:40px;
}
.food_ttl p {
	width: 50%;
}

.pairing_btn {
	width: clamp(400px, 70%, 1350px);
	margin: 0 auto;
	text-align: center;
	margin-top: 64px;
}


/*====================================================================
フードペアリング
====================================================================*/
@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  gap: 16px;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 16px;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 20s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 4);
}
.scroll-infinity__item>img {
  width: 100%;
}
.scroll-infinity {
  margin: 2rem 0;
}
/*====================================================================
wave
====================================================================*/
/* 調整よう */
.bg {
	background-color: #6AC5CC;
	height: 50%;
}
/* Animation */
.waves {
  position: relative;
  top: 2px;
  width: 100%;
  height: 15vh;
  display: block;
  min-height: 100px;
  max-height: 150px;
  margin-bottom: -1px;/* 下の1px余白を強制的に潰す */
}
.waves_bottom_element {
  position: relative;
  bottom: -5px;
  width: 100%;
  height: 15vh;
  display: block;
  margin-bottom: -7px; /* Safari gap対策 */
  min-height: 100px;
  max-height: 150px;
}
.waves-top {
	margin-bottom: clamp(4px, 0.365vw, 7px);
}

/* 上下の波に同じ動きを適用 */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0%   { transform: translate3d(-90px,0,0); }
  100% { transform: translate3d(85px,0,0); }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves,.waves_bottom_element,
  .waves-bottom {
    height: 80px;
    min-height: 40px;
  }
  .content {
    height: 30vh;
  }
  h1 {
    font-size: 24px;
  }
}
/* 余白を消す */
.waves-bottom {
    background-color: #6AC5CC;
    margin-bottom: 0; /* 余計な余白を削除 */
}
.waves-top {
    margin-bottom: 0; /* 余計な余白を削除 */
}
.main-visual_all, .section_intro {
    margin: 0;
    padding: 0; /* 不要な余白を削除 */
}

/*====================================================================
スクロール
====================================================================*/
.scroll-down_07 {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: serif;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  z-index: 100;
}

.mouse-icon {
  width: 30px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 20px;
  position: relative;
  margin-inline:auto;
  margin-bottom: 6px;
}
.mouse-icon::before {
  content: "";
  width: 1px;
  height: 8px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}
/*====================================================================
フェードアップ
====================================================================*/

.section_product_inner {
  opacity: 0;
  transform: translateY(50px); /* 下から50pxずらす */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section_product_inner.show {
  opacity: 1;
  transform: translateY(0);
}
.section_product_inner:first-child.show {
  transition-delay: 2s; /* 0.5秒遅らせる */
}
/*====================================================================
フッター
====================================================================*/
.c-list-sns__container > * {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
.toTop {
    display: flex;
    height: 213px;
    background-image: url(../images/bg_pc.jpg);
    background-position: center;
    background-size: cover;
    justify-content: center;
    align-items: center;
}
.toTop a {
    position: relative;
    z-index: 15;
    display: flex;
    flex-direction: column;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    align-items: center;
    gap: 6px;
}
.toTop .dli-arrow-up {
    position: relative;
    display: inline-block;
    width: 0.1em;
    height: 1em;
    background: currentColor;
    line-height: 1;
    color: #333;
    vertical-align: middle;
}
.toTop .dli-arrow-up::before {
    position: absolute;
    top: -0.05em;
    right: 50%;
    box-sizing: border-box;
    width: 0.65em;
    height: 0.65em;
    border: 0.1em solid currentColor;
    border-bottom: 0;
    border-left: 0;
    content: "";
    transform: rotate(-45deg);
    transform-origin: top right;
}
.footer__top {
    display: flex;
    flex-direction: column;
    padding: 60px 50px;
    background-color: #475f2a;
    justify-content: center;
    align-items: center;
}
.footer__top p {
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    color: rgba(255, 255, 255, 0.5960784314);
    text-align: center;
}
.footer__top img {
    width: clamp(250px,15.625vw,300px);
}
.p-footer__sns {
  width: 50vw;
  margin: 0 auto;
    color: #fff;
    display: flex;
    justify-content: center;
}
.p-footer__container {
        max-width: 124rem;
        margin: 0 auto;
    }
.p-footer__bottom, .p-footer__bottom--foreign {
    text-align: center;
    background: #141414;
}
.p-footer__copyright {
  font-size: 1rem;
  margin-top: 5rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Inter", BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, メイリオ, sans-serif;
}
.c-list-sns__link, .c-list-sns__link--color-line, .c-list-sns__link--color-tw, .c-list-sns__link--color-fb {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.c-list-sns__link, .c-list-sns__link--color-line, .c-list-sns__link--color-tw, .c-list-sns__link--color-fb {
        width: 4rem;
        height: 4rem;
    }
.c-list-sns__container {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}
.c-list-sns__container > * {
    padding-right: 0.6rem;
    padding-left: 0.6rem;
}
.c-list-sns__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    transition-property: opacity;
    line-height: 1;
    opacity: 0.4;
}
.myicon {
    display: inline-block;
    font-family: 'myicon';
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* アイコン */
.myicon-fb::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background: url(../images/i_f.png) center / cover no-repeat;
}
.myicon-tw::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background: url(../images/i_x.svg) center / cover no-repeat;
}
.myicon-ig::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background: url(../images/i_i.png) center / cover no-repeat;
}
.myicon-line::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background: url(../images/i_line.svg) center / cover no-repeat;
}
.p-footer__container {
        max-width: 124rem;
        margin: 0 auto;
    }
      .p-footer__top, .p-footer__top--foreign, .p-footer__bottom, .p-footer__bottom--foreign {
        padding-right: 3rem;
        padding-left: 3rem;
    }
  .p-footer__bottom, .p-footer__bottom--foreign {
        padding-top: 1rem;
        padding-bottom: 5rem;
    }
    .p-footer__container {
      max-width: 124rem;
      margin: 0 auto;
    }
    .p-footer__bottom .p-footer__sns, .p-footer__bottom--foreign {
      margin-top: 5rem;
    }
    .p-footer__copyright {
        font-size: 0.8rem;
    }
    .c-list-sns__link, .c-list-sns__link--color-line, .c-list-sns__link--color-tw, .c-list-sns__link--color-fb {
        width: 3rem;
        height: 3rem;
    }
