/*====================================================================
リセットCSS
====================================================================*/
@font-face {
  font-family: "Saira Expanded";
  src: url("../assets/fonts/Saira-VariableFont_wdth\,wght.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.html, body {
  overflow-x: hidden;
}
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;
}
/*====================================================================
定義
====================================================================*/
:root {
  --orange-color: #E48836;
  --pink-color: #D74E69;
  --blue-color: #3CB5CD;
  --green-color: #A7CB61;
  --text-color: #2B2B2B;
  --bg-color: #FAEED9;
  --yellow-color: #F5CA00;
  --font-heading: "Saira Expanded", sans-serif;
  --font-ui: "M PLUS 1p", sans-serif;
  --font-body: "Noto Sans JP", 游ゴシック;
  --curve-h: clamp(60px, 6.25vw, 120px); /* アーチ高さ */
  --visual-w: min(61.2vw, 1175px);       /* 右ビジュアル幅 */
  --ease: cubic-bezier(.2,.9,.2,1);
  --gap: 28px;
  --card-ratio: 4 / 5;
  --w-active: clamp(280px, 34vw, 520px);
  --w-next:   clamp(220px, 26vw, 420px);
  --w-next2:  clamp(190px, 22vw, 360px);
}
body {
  font-size: 1rem; /* 16px */
	font-family:var(--font-body);
  font-weight: 500;
	line-height: 1.6px;
  background-color: var(--bg-color);
}
#chili,#about,#intro {
	scroll-margin-top: 80px;
}
.pc-none {
	display: none;
}
/*====================================================================
ハンバーガー
====================================================================*/
.header_logo {
	width: clamp(90px,6vw,200px);
}
.l-header {
	display: block;
	z-index: 999;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
  height: auto;
	padding: 10px 0;
	font-family: var(--font-ui);
	font-weight: 700;
	font-style: normal;
	color: #fff;
  background: var(--bg-color);
  border-bottom: 2px solid var(--text-color);
  }
  .p-nav__inner {
    color: #fff;
  }
  .c-hamburger {
	position: relative;
	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: var(--text-color);
	transition: all 0.4s;
  }
  .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%;
	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: center;
	justify-content: space-between;
	padding: 0 50px;
  
  }
  
  .p-header__hamburger {
	z-index: 100;
	position: absolute;
	right: 0;
  top: 30%;
	width: 95px;
	height: 100%;
  }
  
  .p-header__nav.is-active {
	position: fixed;
	top: 0;
	right: 0;
	opacity: 1;
	background-color: var(--bg-color);
  }  
  .p-nav__list {
	display: block;
	padding-right: 20px;
	padding-left: 20px;
	align-items: center;
}
  .p-nav__list .p-nav__item .p-nav__link {
	color: var(--text-color);
	font-size: 18px;
  }
  .p-nav__link {
	text-align: center;
	display: block;
	padding: 10px 20px;
	white-space: nowrap;
  cursor: pointer;
 
  }
  .p-nav__list .p-nav__item .p-nav__link:hover {
	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: var(--text-color);
	  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: var(--text-color);
  }

  #concept,#santero,#about,#enjoy,#pairin,#spumante {
  scroll-margin-top: 150px; /* ヘッダー高さ分 */
}
/*====================================================================
共通
====================================================================*/
.main-ttl {
  font-size:clamp(56px, 6.77vw, 8.125rem);
  font-family: var(--font-heading);
}
.main-ttl__bl {
  color: var(--text-color);
  font-weight: 700;
}
.main-ttl__wh {
  color: #fff;
}
.sec_01 {
  padding: 7.3vw 1.04vw 22vw;
  text-align: center;
}
.sec_01 p {
  text-align: center;
  line-height: 2;
  margin-top: 20px;
  font-size:clamp(18px, 1.5vw, 20px);
}
.sec_text {
  line-height: 2;
}
/*====================================================================
products
====================================================================*/
.sec_products {
  text-align: center;
  position: relative;   /* ←必須 */
  z-index: 1;
}
.section-inner {
    background-size: min(61vw, 1175px) auto;
    width: 100%;
    overflow: hidden;
    padding-bottom: 28vw;
}
.section-inner_last {
   background-size: min(61vw, 1175px) auto;
    width: 100%;
    overflow: hidden;
    padding-bottom: 0;
}
.sec_02_ttl {
  background-color: var(--orange-color);
  padding-bottom:clamp(5px, 2vw, 40px);
  line-height: 1;

}
.sec_02_inner {
  background-color: var(--orange-color) !important;
  background: url(../images/illustration_pc_01.png) no-repeat right top;
  background-size: contain;
}
.sec_03_inner {
  background-color: var(--pink-color) !important;
  background: url(../images/illustration_pc_02.png) no-repeat right top;
  background-size: contain;
}
.sec_04_inner {
  background-color: var(--blue-color) !important;
  background: url(../images/illustration_pc_03.png) no-repeat right top;
  background-size: contain;
}
.sec_05_inner {
  background-color: var(--green-color) !important;
  background: url(../images/illustration_pc_04.png) no-repeat right top;
  background-size: contain;
}

.hero__left {
  padding-left: clamp(20px,13.5vw,260px);
  text-align: left;
}
.sec_02_visual img {
  width: 100%;
}
.hero__headline {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 700;
  z-index: 3;
}
.hero__tag {
  color: #fff;
  margin-bottom: 6px;
  font-size: clamp(30px,3.125vw,60px);
  display: inline-block;
  white-space: nowrap;
  z-index: 10;
}
.hero__title-sub {
  font-size: clamp(20px,2.083vw,24px);
}
.hero__tag--accent {
  font-size: clamp(18px,1.563vw,30px);
  color: #E36600;
}
.hero__tag--accent_pink {
   font-size: clamp(18px,1.563vw,30px);
  color: #C33251;
}
.hero__tag--accent_blue {
   font-size: clamp(18px,1.563vw,30px);
  color: #3CB5CD;
}
.hero__tag--accent_green {
   font-size: clamp(14px,1.563vw,30px);
  color: #A7CB61;
}
.hero__text {
  text-align: left;
  margin-top: 32px;
}
.hero__text_sec_pd {
  font-size: clamp(20px,1.25vw,24px);
  display: inline-block;
  color: #fff;
  padding: 0 10px;
}
.hero__text_sec_02 {
 background-color: #DB6200;
}
.hero__text_sec_03 {
  background-color: #C22143;
}
.hero__text_sec_04 {
  background-color: #0093b0;
}
.hero__text_sec_05 {
  background-color: #6ea700;
}
.hero__text-main {
  font-size: clamp(20px,1.25vw,24px);
  margin-top: 8px;
}
.hero__text-sub,.spec {
  color: #fff;
}
.hero__text-sub {
  margin-top: 2.083vw;
  font-size: clamp(18px,1.042vw,20px); /* 20px相当 */;
}
.spec {
  font-size: clamp(14px,0.9375vw,18px); /* 18px相当 */;
  margin-top: 1vw;
}
.spec__row {
  display: flex;
  margin-top: 6px;
  gap: 10px;
}
.spec__row dt {
  border: 1px solid #fff;
  padding: 2px 8px;
  font-size: clamp(10px, 1.3vw, 14px);
  width: 40px;
  text-align: center;
  white-space: nowrap;
}
.sec_02_visual img {
  width: 100%;
  max-width: 1175px; /* 1920px基準サイズ */
  height: auto;      /* 比率維持 */
  display: block;
}
/*====================================================================
境界線
====================================================================*/
.sec_02_inner {
  position: relative;
  overflow: visible; /* 擬似要素がはみ出すので */
  min-height: clamp(480px, 40vw, 800px);
}
/* ピンク */
.sec_03_inner {
  position: relative;
  overflow: visible; /* 擬似要素がはみ出すので */
  min-height: clamp(480px, 40vw, 800px);
}
/* ブルー */
.sec_04_inner {
  position: relative;
  overflow: visible; /* 擬似要素がはみ出すので */
  min-height: clamp(480px, 40vw, 800px);
}
.sec_05_inner {
  position: relative;
  overflow: visible; /* 擬似要素がはみ出すので */
  min-height: clamp(480px, 47vw, 500px);
  padding-bottom:clamp(100px, 15vw, 260px);
}
.sec_08_inner {
  position: relative;
  overflow: visible; /* 擬似要素がはみ出すので */
  min-height: clamp(520px, 47vw, 800px);
}
.sec_09_inner {
  position: relative;
  overflow: visible; /* 擬似要素がはみ出すので */
}
.sec_products::before{
  content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -15vw;
    width: 100%;
    background: url(../images/curve_01.png) no-repeat center top;
    background-size: cover;
    pointer-events: none;
    aspect-ratio: 1920 / 340;
}
.sec_03_inner::before{
  content:"";
  position:absolute;
  left:0;
  top: -17vw;
  width:100%;
  background: url("../images/curve_02.png") no-repeat center top;
  background-size: cover;
  pointer-events: none;
  aspect-ratio: 1920 / 340;
  z-index: 2;
}
.sec_04_inner::before{
  content:"";
  position:absolute;
  left:0;
  top: -17vw;
  width:100%;
  background: url("../images/curve_03.png") no-repeat center top;
  background-size: cover;
  pointer-events: none;
  aspect-ratio: 1920 / 340;
  z-index: 6;
}
.sec_05_inner::before{
  content:"";
  position:absolute;
  left:0;
  top: -17vw;
  width:100%;
  background: url("../images/curve_04.png") no-repeat center top;
  background-size: cover;
  pointer-events: none;
  aspect-ratio: 1920 / 340;
  z-index: 10;
}
.sec_08_inner::before {
  content:"";
  position:absolute;
  left:0;
  top: -15vw;
  width:100%;
  background: url("../images/curve_04.png") no-repeat center top;
  background-size: cover;
  pointer-events: none;
  aspect-ratio: 1920 / 340;
}
.sec_09_inner::before {
  content:"";
  position:absolute;
  left:0;
  top: -15vw;
  width:100%;
  background: url("../images/curve_05.png") no-repeat center top;
  background-size: cover;
  pointer-events: none;
  aspect-ratio: 1920 / 340;
}
/*====================================================================
ボタン
====================================================================*/
.sec_10_inner {
  max-width: 650px;
    margin: 0 auto;
}
.hero__cta{
  margin-top: 3vw; /* 上との余白（お好み） */
}
.footer__cta{
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.footer__cta_btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(90%, 420px);
  height: 80px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 0.05em;
  transition: all .3s ease;
}

.footer__cta_btn .btn__arrow{
  position: absolute;
  right: 32px;
  font-size: 20px;
  transition: transform .3s ease;
}

.footer__cta_btn:hover{
  transform: translateY(-3px);
}

.footer__cta_btn:hover .btn__arrow{
  transform: translateX(6px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2em;
  border-radius: 80px;
  background-color: var(--text-color);
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 1.25vw, 24px);
  padding:
    clamp(14px, 1.25vw, 24px) clamp(48px, 3vw, 68px) clamp(14px, 1.25vw, 24px) clamp(48px, 4vw, 68px);
  line-height: 1;
  transition: all 0.3s ease;
  border: 1px solid var(--text-color);
}

.btn__arrow,.footer__cta_btn {
  transition: transform 0.3s ease;
}

.btn:hover,.footer__cta_btn:hover {
  background-color: #fff;
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.btn:hover .btn__arrow{
  transform: translateX(0.4vw);
}
.footer__cta_btn {
  padding: 14px 32px;
}
.footer__cta_btn:hover .btn__arrow {
  transform: translateX(0.4vw);
}
/*====================================================================
フードペアリング
====================================================================*/
.sec_06_inner {
  text-align: center;
  padding: clamp(72px, 6.77vw, 130px)
  0
  clamp(100px, 8.33vw, 160px);
}
.sec_06_inner h1 {
  padding-bottom: 50px;

}
/*====================================================================
エンジョイ
====================================================================*/
.sec_07_inner {
  max-width: 1400px;
  background-color: var(--yellow-color);
  margin: 0 auto clamp(120px, 10.417vw, 140px) auto;
   padding: 4rem 2rem;
  text-align: center;
  border-radius: 30px;
}
.sec_07 {
  padding: 0 20px;
}
.enjoy-ttl_01 {
  font-size: clamp(18px, 1.25vw, 24px);
  font-family: var(--font-ui);
  font-weight: 700;
  margin-bottom: 1.25vw;
}
.enjoy-ttl_02 {
  max-width: 1013px;
  background-color: #F8DA4D;
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto;
  line-height: 1.8;
}
.enjoy-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 1.5625vw;
  min-width: 0;
}

.enjoy-images img:nth-of-type(1){
  min-width: 0;     /* ←縮めない事故防止 */
  max-width: 100%;  /* ←保険 */
  height: auto;
  display: block;
  width: clamp(200px, 25vw, 500px);
}
.enjoy-images img:nth-of-type(2){
  min-width: 0;     /* ←縮めない事故防止 */
  max-width: 100%;  /* ←保険 */
  height: auto;
  display: block;
  width: clamp(300px, 35vw, 700px);
}
/*====================================================================
タブ
====================================================================*/
.tab-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
/*====================================================================
エンジョイ
====================================================================*/
.sec_08_inner {
  background-color: var(--green-color);
}

/* ===============================
   タブ（未選択：グレー）
================================= */
.tab-2 > label {
    order: -1;
    opacity: .6;
    min-width: 70px;
    padding: .6em 1em;
    border-radius: 30px 30px 0 0;
    background-color: #ccc;          /* 未選択はグレー */
    color: #333;
    font-size: 1.3em;
    font-family: var(--font-ui);
    text-align: center;
    cursor: pointer;
    border-top: 2px solid var(--text-color);
    border-right: 2px solid var(--text-color);
    border-left: 2px solid var(--text-color);
    transition: .3s;
}

/* 未選択タブ hover */
.tab-2 > label:not(:has(:checked)):hover {
    background-color: #bbb;
}

/* ラジオ非表示 */
.tab-2 input {
    display: none;
}

/* ===============================
   コンテンツ
================================= */
.tab-2 > div {
    display: none;
    width: 100%;
    padding: 1.5em 2em;
    background-color: #FFF8EA;
}

/* ===============================
   選択中タブ（アクティブ）
================================= */
/* 1個目（オレンジ） */
.tab-2 > label:nth-of-type(1):has(:checked) {
    background-color: var(--orange-color);
    color: #fff;
    opacity: 1;
}

/* 2個目（グリーン） */
.tab-2 > label:nth-of-type(2):has(:checked) {
    background-color: var(--green-color);
    color: #fff;
    opacity: 1;
}

/* 3個目（ピンク） */
.tab-2 > label:nth-of-type(3):has(:checked) {
    background-color: var(--pink-color);
    color: #fff;
    opacity: 1;
}

/* 選択中コンテンツ表示 */
.tab-2 > label:has(:checked) + div {
    display: block;
    border: 2px solid #333;
    border-radius: 0 30px 30px 30px;
}
/*====================================================================
food
====================================================================*/
.food_img {
  width: 100%;
}
/*====================================================================
ABOUT&SANTERO
====================================================================*/
.sec_08_main .sec_text {
  font-size: clamp(18px,1.0417vw,20px);
}
.sec_09_main .sec_text {
  font-size: clamp(18px,1.0417vw,20px);
}
.sec_08_main {
  padding: 0 40px clamp(420px, 15vw, 200px) 40px;
}

.sec_09_main {
  padding: 0 40px;
}
.sec_08_main,
.sec_09_main{
  display: flex;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  z-index: 10;
}

/* flexの縮み事故防止（超重要） */
.sec_08_main > * ,
.sec_09_main > *{
  min-width: 0;
}

/* 画像は親に合わせて縮む */
.pc_img{
  flex: 0 1 40%;      /* ←画像の比率（お好みで35%〜45%） */
  max-width: 100%;
  height: auto;
  display: block;
}

/* テキスト側は残りを使う */
.sec_08_main > div,
.sec_09_main > div{
  flex: 1 1 60%;
}
.sp_img {
  display: none;
}
/*====================================================================
フッター
====================================================================*/
.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;
    }
/*====================================================================
テキスト流れるアニメーション
====================================================================*/
/* コンテナ（表示枠） */
.marquee-container {
  position: relative;
  width: 100%; /* 幅は任意 */
  overflow: hidden; /* はみ出た部分を隠す */
  white-space: nowrap; /* テキストを改行させない [1] */
  z-index: 20;
  margin-bottom: 20px;
}

/* 流れる文字部分 */
.marquee-text {
  display: inline-block;
  padding-left: 0%; /* 右端からスタート */
  animation: scroll-left 150s linear infinite; /* 速度や時間の設定 [1] */
  font-size: clamp(80px, 6.771vw, 130px);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
}

/* アニメーション定義 */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); } /* 左方向へ移動 [1, 11] */
}

.hero__bgword{
  position: absolute;
  bottom: -0.15em;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 0;
  letter-spacing: -0.03em;
  opacity: .95;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 1;
  pointer-events:none;
  user-select:none;
  color: var(--orange-color);
  font-family: var(--font-heading);
  font-weight: 700;
}
.hero__bgword span{
  display: inline-block;
  padding-left: 0%;
  animation: hero-scroll-left 90s linear infinite;
}
@keyframes hero-scroll-left{
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/*====================================================================
背景色
====================================================================*/
.bg_orange {
  background: var(--orange-color);
  padding-bottom: 5px;
}
.bg_pink {
  background: var(--pink-color);
  padding-bottom: 5px;
}
.bg_blue {
  background: var(--blue-color);
  padding-bottom: 5px;
}
.bg_green {
  background: var(--green-color);
 }

 /*====================================================================
メインビジュアルアニメーション
====================================================================*/
.hero{
  background: var(--bg);
  position: relative;
  overflow-x: clip;   /* 対応が不安なら hidden に */
  overflow-y: visible;
  padding: clamp(28px, 4vw, 56px) 0;
  padding-top: calc(clamp(28px, 4vw, 56px) + 120px);
  }
.hero__inner {
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 2;
  }
.hero__slider{
   width: 100%;
    position: relative;
    left: 0;
    transform: none;
    overflow: hidden;
}
.hero__slider.swiper,
.hero__slider .swiper-wrapper{
  overflow: visible;
}

/* ====== PC：旧バージョンの見え方そのまま ====== */
.hero .swiper-wrapper {
  align-items: center;
}
.hero .swiper-slide {
  overflow: visible;
  transform-origin: left center;
  transition: transform .6s var(--ease), filter .6s var(--ease), opacity .6s var(--ease);
  will-change: transform;
}
.hero .swiper-slide {
  width: var(--w-next2);
}
.hero .swiper-slide-active {
  width: var(--w-active);
  transform: scale(1) translateY(0);
  opacity: 1;
  z-index: 3;
  filter: none;
}
.hero .swiper-slide-next {
  width: var(--w-next);
  transform: scale(.99) translateY(6px);
  opacity: .96;
  z-index: 2;
  filter: saturate(.98) contrast(.99);
}

  .hero .swiper-slide-next + .swiper-slide{
    width: var(--w-next2);
    transform: scale(.96) translateY(10px);
    opacity: .92;
    z-index: 1;
  }

  .hero .swiper-slide-next + .swiper-slide + .swiper-slide{
    width: clamp(150px, 18vw, 280px);
    transform: scale(.92) translateY(14px);
    opacity: .85;
    z-index: 0;
  }

  .hero .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide{
    width: clamp(120px, 14vw, 220px);
    transform: scale(.85) translateY(26px);
    opacity: .75;
    z-index: 0;
  }

  .hero .swiper-slide-prev{
    width: var(--w-next);
    transform: scale(.96) translateY(6px);
    opacity: .95;
    z-index: 2;
  }

  /* ====== CARD ====== */
  .mvcard{
    position: relative;
    width: 100%;
    aspect-ratio: var(--card-ratio);
    overflow: visible;
  left:20vw;
}
  .mvcard__illust{
    width: 100%;
    height: 100%;
    display:block;
    object-fit: contain;
  }

  .mvcard__bottle{
    position: absolute;
    left: 30%;
    bottom: -5%;
    width: auto;
    height: 100%;
    transform: translate3d(-50%,0,0) scale(1) rotate(0deg);
    transform-origin: 0% 85%;
    z-index: 5;
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
  }

  .mvcard.is-pulse .mvcard__bottle{
    animation: bottlePulseTiltHero 2.2s cubic-bezier(.22,1,.36,1) both;
  }

  @keyframes bottlePulseTiltHero{
    0%   { transform: translate3d(-50%,0,0) scale(1)    rotate(0deg); }
    20%  { transform: translate3d(-50%,0,0) scale(1.4) rotate(18deg); }
    75%  { transform: translate3d(-50%,0,0) scale(1.4) rotate(18deg); }
    100% { transform: translate3d(-50%,0,0) scale(1)    rotate(0deg); }
  }
 /*====================================================================
背景色が流れてくる
アニメーション
====================================================================*/
.bg .bg-wrap {
  position: relative;
  display: inline-block;
  padding: 0 5px;
}
.bg.is-animated .bg-wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: var(--text-color);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.bg .bg-wrap .inn {
  position: relative;
  z-index: 1;
}
.left_line {
  padding-left: 6px;
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
/* ===== fadein ===== */
.fadein{
  opacity: 0;
  transform: translateY(16px);            /* ふわっと下から */
  transition: opacity .9s ease, transform .9s ease;
  will-change: opacity, transform;
}

/* 表示後 */
.fadein.scrollin{
  opacity: 1;
  transform: translateY(0);
}

/* 1行ずつ順番に出したい場合（hero内だけ遅延） */
.hero__headline .fadein:nth-of-type(1){ transition-delay: .1s; }
.hero__headline .fadein:nth-of-type(2){ transition-delay: .3s; }
.hero__headline .fadein:nth-of-type(3){ transition-delay: .5s; }