@charset "UTF-8";



/* =========================================================
   今後追加予定
   ・スクロールアニメーション
========================================================= */


/* =========================================================
   リセット / 共通
========================================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.lineup-group-head,
.lineup-title {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  background-color: #FEFEF9;
  color: #000;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden
}

body.menu-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  vertical-align: bottom;
}


/* =========================================================
   main 共通ルール
========================================================= */

main {
  padding-top: 81px;
}

.section {
  padding: 120px 0;
}

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ========================================
   共通ボタンモーション
======================================== */

.btn-motion{
  transition:
    background-color 0.4s ease,
    border-color 0.4s ease,
    color 0.4s ease;
}

.btn-motion::after{
  transition: transform 0.35s ease;
}

.btn-motion:hover::after{
  transform: translateX(4px);
}

/* =========================================================
   セクション見出し
========================================================= */

.section-head {
  margin-bottom: 48px;
}

.section-title {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.section-sub {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #666;
}


/* =========================================================
   固定ヘッダー
========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FEFEF9;
  z-index: 1000;
  transition:
    height 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
  backdrop-filter: blur(4px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
  transition: height 0.4s ease;
}

.header-logo img {
  display: block;
  height: 40px;
  transition: height 0.4s ease;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.icon-link img {
  display: block;
  width: 22px;
}

.header-divider {
  width: 1px;
  height: 28px;
  background: #aaa;
}

.header-border {
  width: 0;
  height: 1px;
  background: #999;
  animation: borderDraw 1s ease forwards;
  animation-delay: 0.4s;
}

@keyframes borderDraw {
  to {
    width: 100%;
  }
}

.icon-link,
.hamburger {
  transition: opacity 0.35s ease;
}

.icon-link:hover,
.hamburger:hover {
  opacity: 0.6;
}


/* =========================================================
   スクロール時のヘッダー変化
========================================================= */

.header-scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.header-scrolled .header-container {
  height: 64px;
}

.header-scrolled .header-logo img {
  height: 28px;
}


/* =========================================================
   ハンバーガー
========================================================= */

.hamburger {
  position: relative;
  width: 45px;
  height: 18px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #333;
  transform-origin: center;
  transition: 1s cubic-bezier(.19,1,.22,1);
}

.hamburger span:nth-child(1) {
  transform: translateY(-5px);
}

.hamburger span:nth-child(2) {
  transform: translateY(5px);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(0) rotate(10deg);
}

.hamburger.active span:nth-child(2) {
  transform: translateY(0) rotate(-10deg);
}


/* =========================================================
   オーバーレイ
========================================================= */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease 0.1s;
  z-index: 10;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}


/* =========================================================
   ハンバーガーナビ本体
========================================================= */

.nav {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: #FEFEF9;
  padding: 100px 40px;
  transition: 0.8s cubic-bezier(.19,1,.22,1);
  z-index: 100;
}

.nav.open {
  right: 0;
}

.nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nav ul {
  list-style: none;
}

.nav a {
  color: #111;
  text-decoration: none;
}

.nav-main {
  list-style: none;
}

.nav-bottom {
  margin-top: 40px;
  display: flex;
  gap: 70px;
  font-size: 12px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}


/* =========================================================
   ナビ項目
========================================================= */

.nav-item {
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s cubic-bezier(.19,1,.22,1),
    transform 0.6s cubic-bezier(.19,1,.22,1);
}

.nav.open .nav-item {
  opacity: 1;
  transform: translateY(0);
}

.nav.open .nav-item:nth-child(1) { transition-delay: 0.1s; }
.nav.open .nav-item:nth-child(2) { transition-delay: 0.2s; }
.nav.open .nav-item:nth-child(3) { transition-delay: 0.3s; }
.nav.open .nav-item:nth-child(4) { transition-delay: 0.4s; }

.nav-item a {
  display: block;
}

.nav-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.07em;
  font-weight: 500;
}

.nav-sub {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #666;
}


/* =========================================================
   ナビ下部リンク hover
========================================================= */

.nav-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: #111;
  text-decoration: none;
  transition: opacity 0.35s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #111;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.65s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}


/* =========================================================
   PRODUCT アコーディオン
========================================================= */

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0;
  cursor: pointer;
  transition: opacity 0.35s ease;
}

.accordion-header:hover {
  opacity: 0.6;
}

.accordion-arrow {
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg);
  transition: transform 0.8s cubic-bezier(.19,1,.22,1);
}

.accordion.active .accordion-arrow {
  transform: rotate(-135deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.9s cubic-bezier(.19,1,.22,1);
}

.accordion-content li {
  padding: 10px 0;
}

.accordion-content a {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 18px;
  color: #111;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.accordion-content a:hover {
  opacity: 0.7;
  transform: translateX(4px);
}

.accordion-content a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: #111;
}

.product-title {
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.product-sub {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.2;
  color: #666;
}


/* =========================================================
   フッター共通
========================================================= */

.footer_container {
  width: 70%;
  margin: 0 auto;
}


/* =========================================================
   詩エリア
========================================================= */

.poem_section {
  width: 100%;
  height: 280px;
  background-color: #EAEBE1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.poem_section img {
  width: 36%;
  height: auto;
}


/* =========================================================
   黒背景フッター
========================================================= */

.footer_bgc {
  background-color: #000;
  color: #fff;
}


/* =========================================================
   フッター上段
========================================================= */

.footer_nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 34px;
  padding-bottom: 58px;
  gap: 60px;
}

.footer_left {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  position: relative;
}

.footer_order {
  width: 180px;
}

.footer_about {
  width: 205px;
}

.footer_sus {
  width: 205px;
}

.footer_order h4 {
  position: relative;
  margin: 0 0 22px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

.footer_order h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 180px;
  height: 1px;
  background-color: #fff;
}

.footer_about h4::after {
  width: 205px;
}

.footer_sus h4::after {
  width: 205px;
}

.footer_order ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.footer_order li {
  margin-bottom: 3px;
}

.footer_order a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  display: inline-block;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.footer_order a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.65s ease;
}

.footer_order a:hover {
  opacity: 0.7;
  transform: translateX(4px);
}

.footer_order a:hover::after {
  transform: scaleX(1);
}

.footer_order p {
  font-size: 11px;
  line-height: 2;
  letter-spacing: 0.03em;
  padding-top: 2px;
}


/* =========================================================
   フッター右側
========================================================= */

.footer_right {
  width: 360px;
  color: #fff;
  flex-shrink: 0;
}

.footer_right h5 {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.025em;
}

.newsletter_form {
  width: 100%;
}

.newsletter_field {
  margin-bottom: 10px;
}

.newsletter_field input {
  width: 100%;
  height: 34px;
  padding: 0 12px;
  border: 1px solid #8f8f8f;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: 0.05em;
  outline: none;
}

.newsletter_field input::placeholder {
  color: #9b9b9b;
}

.newsletter_field input:focus {
  border-color: #fff;
}

.newsletter_check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 10px;
  line-height: 1.5;
}

.newsletter_check input {
  margin-top: 2px;
  accent-color: #fff;
}

.newsletter_check label {
  cursor: pointer;
}

.newsletter_note {
  margin-bottom: 18px;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #bdbdbd;
}

.newsletter_btn {
  min-width: 84px;
  height: 36px;
  padding: 0 18px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    opacity 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease;
}

.newsletter_btn:hover {
  opacity: 0.7;
}

.footer_sns {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.footer_sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.footer_sns a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.footer_sns img {
  display: block;
  width: 22px;
  height: 22px;
}


/* =========================================================
   フッター下段
========================================================= */

.white_line {
  border-top: 1px solid #fff;
  background-color: #000;
}

.copy {
  position: relative;
  height: 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.copy small {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.footer_faqs a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: opacity 0.35s ease;
}

.footer_faqs a:hover {
  opacity: 0.7;
}

.footer_logo {
  position: absolute;
  left: 0;
  bottom: 110px;
  width: 212px;
}

.footer_logo img {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================================================
   home main
========================================================= */

.home-main {
  background-color: #FEFEF9;
}

.home-section {
  padding: 110px 0 0;
}


/* =========================================================
   共通パーツ
========================================================= */

.section-center-head {
  text-align: center;
  margin-bottom: 54px;
}

.section-center-title {
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 300;
}

.feature-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

.feature-en {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 300;
}

.feature-jp {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #666;
}

.feature-text {
  font-size: 12px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #222;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  height: 46px;
  padding: 0 26px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.14em;
  border: 1px solid #111;
  transition:
    opacity 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.link-btn:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

.link-btn-black {
  background: #111;
  color: #fff;
}

.link-btn-outline {
  background: transparent;
  color: #111;
}

.section-btn-wrap {
  margin-top: 40px;
}

.frame-link {
  display: block;
  border: 1px solid #cfcabf;
  overflow: hidden;
  background: #f5f3ee;
}

.frame-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* =========================================================
   プロダクト-メイン
========================================================= */

.product-main {
  padding-top: 81px;
  background: #FEFEF9;
  color: #111;
}

.product-main *,
.product-main *::before,
.product-main *::after {
  box-sizing: border-box;
}

.product-main img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}

.product-main a {
  text-decoration: none;
}

.product-main .container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
}

.serif {
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.frame-box {
  position: relative;
}

.frame-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #999;
  pointer-events: none;
}

.line-box {
  position: relative;
}

.line-box::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 44px;
  width: 1px;
  height: calc(100% - 44px);
  background: #333;
}

.line-box::after {
  content: "";
  position: absolute;
  left: -28px;
  bottom: -24px;
  width: calc(100% + 28px);
  height: 1px;
  background: #333;
}

/* ========================================
   common animation
======================================== */

.js-hero-zoom,
.js-fadeup {
  opacity: 0;
  will-change: transform, opacity;
}

.js-hero-zoom {
  transform: scale(1.08);
  transition:
    opacity 2.6s cubic-bezier(.19,1,.22,1),
    transform 3.2s cubic-bezier(.19,1,.22,1);
}

.js-hero-zoom.is-inview {
  opacity: 1;
  transform: scale(1);
}

.js-fadeup {
  transform: translateY(30px);
  transition:
    opacity 1.5s cubic-bezier(.19,1,.22,1),
    transform 1.5s cubic-bezier(.19,1,.22,1);
}

.js-fadeup.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.18s; }
.delay-2 { transition-delay: 0.34s; }
.delay-3 { transition-delay: 0.50s; }

@media (prefers-reduced-motion: reduce) {
  .js-hero-zoom,
  .js-fadeup {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========================================
   button
======================================== */

.btn-motion {
  transition:
    background-color 0.4s ease,
    border-color 0.4s ease,
    color 0.4s ease;
}

.btn-motion::after {
  transition: transform 0.35s ease;
}

.btn-motion:hover::after {
  transform: translateX(4px);
}


/* ========================================
  　パンくずリスト
======================================== */
.breadcrumb-wrap {
  width: 100%;
  padding: 22px 0 0;
}

.breadcrumb {
  max-width: 1480px;
  margin: 0 ;
  padding-top: 18px;
  padding-left: 84px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb-item {
  position: relative;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #111;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  position: absolute;
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #666;
}

.breadcrumb-item a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #888;
}

/*------------セクション区切り線モーション-----------*/

.section-divider {
  position: relative;
  width: calc(100%);
  max-width: 1500px;
  margin: 140px auto 120px;
  height: 1px;
  overflow: hidden;
}

.section-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #333;
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 2.8s cubic-bezier(.19,1,.22,1);
}

.section-divider.is-inview::after {
  transform: scaleX(1);
}


/* ========================================
   intro
======================================== */

.product-intro {
  padding: 0;
  border-bottom: none;
}

.product-intro-inner {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  align-items: start;
  gap: 42px;
  padding-left: 48px;
}

.product-intro-copy {
  padding-top: 84px;
}

.product-intro-title {
  margin: 0 0 56px;
  font-size: 32px;
  line-height: 1.7;
}

.product-intro-body {
  display: grid;
  gap: 24px;
  margin-top: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.product-intro-body p {
  margin: 0;
}

.product-intro-note {
  margin-top: 42px;
  font-size: 9px;
  line-height: 1.7;
  color: #6b685f;
  letter-spacing: 0.03em;
}

.product-intro-visual {
  height: 740px;
}

.product-intro-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-herbs {
  width: 100%;
  padding: 22px 24px 24px;
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.why-herbs-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.why-herbs-text {
  max-width: 860px;
  margin: 16px auto 0;
  font-size: 13px;
  line-height: 2.1;
  letter-spacing: 0.12em;
}

/* ========================================
   product section
======================================== */

.product-showcase {
  padding: 88px 0 120px;
}

.product-section-title {
  text-align: center;
  margin-bottom: 72px;
}

.product-section-title h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.12em;
  margin-bottom: 120px;
}

.herbal-head {
  position: relative;
}

.herbal-head::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 54px;
  width: 1px;
  height: 180px;
  background: #999;
}

/*-------------------見出し以下の内容----------------*/

/* ------------------------------
   product overview
------------------------------ */

.product-overview {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 56px;
  max-width: 1180px;
  margin: 0 auto 200px;
}

.product-overview-image {
  flex: 0 1 600px;
}

.product-overview-image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid #333;
  box-sizing: border-box;
  z-index: 100;
}

.product-overview-text {
  flex: 0 1 360px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 130px;
    position: relative;
}

/* 右側テキスト枠 */


.product-overview-text::before{
  content: "";
  position: absolute;
  top: 90px;
  left: -200px;
  width: calc(100% + 230px);
  height: calc(100% - 40px);
  border: 1px solid #999;
  z-index: -1;
  pointer-events: none;
}

/* 右側テキスト枠 */

.product-overview-text-upper p {
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
  letter-spacing: 0.15em;
}

.product-overview-text-lower {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 23px;
  color: #444;
}

.product-overview-text-lower::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -1px;
  width: 1px;
  height: 126px;
  background: #999;
}

.product-overview-text-lower p {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .product-overview {
    flex-direction: column;
    gap: 28px;
    max-width: none;
    margin: 0 auto 90px;
  }

  .product-overview-image,
  .product-overview-text {
    flex: none;
  }

  .product-overview-image img {
    height: auto;
  }

  .product-overview-text {
    min-height: auto;
    padding-top: 0;
  }
}




/* ------------------------------
   herbal tooth paste
------------------------------ */

.herbal-head {
  display: flex;
  align-items:center;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto 50px;
  padding-left: 110px;
  box-sizing: border-box;
}

.herbal-head h3 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.herbal-head p {
  font-size: 12px;
  color: #444;
  letter-spacing: 0.2em;
}

.paste-feature {
  max-width: 1240px;
  margin: 0 auto 150px;
  padding-left: 210px;
  box-sizing: border-box;
}

.paste-feature + .paste-feature {
  margin-top: 88px;
}

.paste-feature-index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 5px;
  font-size: 26px;
  line-height: 1.2;
}

.paste-feature-index span:nth-child(2) {
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-top: 1px;
}

.paste-feature-grid {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
  max-width: 1040px;
  margin: 0;
}

.paste-feature-image,
.paste-feature-body {
  position: relative;
}

.paste-feature-image.frame-box::after,
.paste-feature-body.line-box::before,
.paste-feature-body.line-box::after {
  display: none;
}

.paste-feature-image {
  flex: 0 0 400px;
}

.paste-feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.95 / 1;
  object-fit: cover;
  border: 1px solid #333;
}

.paste-feature-body {
  flex: 0 0 470px;
  min-height: 320px;
  padding: 54px 26px 0 0;
  background: transparent;
  z-index: 1;
}



.paste-feature-head {
  display: flex;
  align-items:flex-start;
  gap: 24px;
  margin-top: 80px;
}

.paste-feature-head h4 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.paste-feature-sub {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 4px;
}

.stress-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  border: 1px solid #999;
  text-align: center;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.3em;
  white-space: nowrap;
  transform: translateY(1px);
  margin-top: 1px;
  margin-left: 10px;
}

.stress-level {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}

.paste-feature-herb {
  margin: 25px 0;
  font-size: 21px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.paste-feature-desc {
  max-width: 390px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.2em;
}

.paste-feature-note {
  position: relative;
  margin: 30px 0 0 335px;
  width: 520px;
  display: flex;
  align-items: center;
}

.paste-feature-note::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 65px;
  width: 1px;
  height: 60px;
  background: #999;
}

.paste-feature-note-title {
  flex: 0 0 82px;
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.paste-feature-note-list {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
}

.paste-feature-note-list div {
  display: flex;
  align-items: flex-start;
}

.paste-feature-note-list div + div {
  margin-top: 10px;
}

.paste-feature-note-list dt,
.paste-feature-note-list dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.paste-feature-note-list dt {
  flex: none;
  margin-right: 5px;
}

.paste-feature-note-list dd {
  flex: 1 1 auto;
}

.paste-feature-body {
  padding-top: 95px;
}

.paste-feature-desc {
  margin-top: 45px;
}

@media (max-width: 1100px) {
  .herbal-head,
  .paste-feature {
    padding-left: 20px;
    padding-right: 20px;
  }

  .paste-feature-grid {
    gap: 40px;
    max-width: 100%;
  }

  .paste-feature-image {
    flex: 0 1 380px;
  }

  .paste-feature-body {
    flex: 1 1 420px;
    padding-right: 0;
  }

  .paste-feature-body::before {
    left: -52px;
    width: calc(100% + 76px);
  }
}

@media (max-width: 900px) {
  .herbal-head {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .paste-feature {
    margin-bottom: 64px;
    padding-left: 0;
    padding-right: 0;
  }

  .paste-feature-index {
    font-size: 22px;
  }

  .paste-feature-grid {
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }

  .paste-feature-image,
  .paste-feature-body {
    flex: none;
    width: 100%;
  }

  .paste-feature-body {
    min-height: auto;
    padding: 28px 0 20px;
  }

  .paste-feature-body::before {
    left: -20px;
    top: 18px;
    width: calc(100% + 40px);
    height: calc(100% + 10px);
  }

  .paste-feature-head {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .herbal-head h3 {
    font-size: 28px;
  }

  .paste-feature-index {
    font-size: 22px;
    gap: 8px;
  }

  .paste-feature-head h4 {
    font-size: 32px;
  }

  .paste-feature-herb {
    font-size: 18px;
    line-height: 1.8;
  }

  .stress-tag {
    height: 32px;
    padding: 0 14px;
    font-size: 10px;
  }
}

.paste-feature-body {
  position: relative;
  z-index: -1;
}

.paste-feature-body::before {
  content: "";
  position: absolute;
  top: 120px;
  left: -160px;
  width: calc(100% + 180px);
  height: calc(100% + 10px);
  border: 1px solid #999;
  pointer-events: none;
}

/*---------------------ムード写真----------------------*/

.product-mood {
  width: calc(100% - 80px);
  max-width: 1480px;
  margin: 300px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.product-mood-copy {
  position: relative;
  flex: 0 0 360px;
  padding-left: 44px;
  padding-bottom: 34px;
}

.product-mood-copy::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 37px;
  width: 36px;
  height: 1px;
  background: #333;
}

.product-mood-en {
  font-size: 26px;
  line-height: 1.8;
  margin-bottom: 42px;
  margin-top: 15px;
  white-space: nowrap;
}

.product-mood-ja {
  font-size: 14px;
  line-height: 3;
  letter-spacing: 0.12em;
  padding: 20px 0 0 28px;
}

.product-mood-visual {
  flex: 0 1 980px;
  width: 980px;
  max-width: none;
  margin-left: 0;
}

.product-mood-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
}

@media (max-width: 900px) {
  .product-mood {
    width: calc(100% - 48px);
    margin-top: 88px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .product-mood-copy {
    flex: none;
    width: 100%;
    padding-left: 28px;
    padding-bottom: 24px;
  }

  .product-mood-en {
    white-space: normal;
  }

  .product-mood-visual {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .product-mood {
    width: calc(100% - 36px);
  }

  .product-mood-en {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .product-mood-ja {
    font-size: 12px;
    line-height: 2;
  }
}

/* ========================================
   line upカード
======================================== */

.lineup-section {
  padding: 60px 0 150px;
}

.lineup-title {
  text-align: center;
  margin-bottom: 88px;
}

.lineup-title h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.12em;
  padding-bottom: 30px;
}

.lineup-group + .lineup-group {
  margin-top: 82px;
}

.lineup-group-head {
  width: 1036px;
  margin: 0 130px 26px;
  margin-top: 80px;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}

.lineup-group-head::before {
  content: "";
  position: absolute;
  left: 10px;
  top: calc(100% + 10px);
  width: 1px;
  height: 76px;
  background: #333;
}

.lineup-group-head h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.lineup-group-head p {
  font-size: 12px;
  line-height: 1.8;
  color: #444;
  margin-top: 3px;
}

.lineup-head-text{
display:flex;
flex-direction:column;
}

.lineup-head-ja{
font-size:12px;
margin-top:4px;
letter-spacing:0.05em;
color:#444;
}

.lineup-head-note {
  font-size: 13px;
  margin-left: 2px;
  margin-top: 2px;
}

.lineup-scroll {
  width: fit-content;
  margin: 0 auto;
  overflow: visible;
  left: 0;
}

.lineup-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.lineup-grid-3 {
  width: fit-content;
  max-width: none;
  margin-left: 0;
  justify-content: flex-start;
  gap: 38px;
}

.lineup-card {
  display: flex;
  flex-direction: column;
}

.lineup-grid-3 .lineup-card {
  width: 320px;
}

.lineup-card-image.frame-box::after {
  display: none;
}

.lineup-card-image {
  width: 320px;
  margin-bottom: 16px;
  background: #f5f4f1;
}

.lineup-card-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  border: 1px solid #999;
}

.lineup-card-body h4 {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.lineup-card-sub {
  margin-bottom: 12px;
  font-size: 10px;
  line-height: 1.5;
  color: #444;
}

.lineup-card-flavor {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.lineup-card-text {
  position: relative;
  min-height: auto;
  margin-bottom: 14px;
  padding-left: 12px;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.lineup-card-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 1px;
  height: calc(100% - 4px);
  background: #999;
}

.lineup-card-spec {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.lineup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 30px;
  padding: 0;
  background: #111;
  border: 1px solid #111;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition:
    background-color 0.5s ease,
    border-color 0.5s ease,
    color 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.lineup-btn::after {
  display: none;
}

.lineup-btn:hover {
  background: #f8f7f2;
  border-color: #bfb8ab;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}



/* 他ブロックは現状維持 */
.lineup-grid-1 {
  display: flex;
  width: 100%;
}

.lineup-card-wide {
  max-width: 560px;
}

@media (max-width: 1100px) {
  .lineup-grid-3 {
    max-width: none;
    margin-left: 24px;
    gap: 28px 20px;
    justify-content: flex-start;
  }

  .lineup-grid-3 .lineup-card {
    width: 300px;
  }

  .lineup-card-image {
    width: 300px;
  }
}

@media (max-width: 900px) {
  .lineup-group-head {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
  }

  .lineup-group-head::before {
    top: calc(100% + 8px);
    height: 34px;
  }

  .lineup-grid-3 {
    flex-wrap: nowrap;
    margin-left: 0;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .lineup-grid-3 .lineup-card,
  .lineup-card-image {
    width: 240px;
  }

  .lineup-grid-3::-webkit-scrollbar {
    height: 6px;
  }

  .lineup-grid-3::-webkit-scrollbar-thumb {
    background: #b9b4aa;
  }
}

@media (max-width: 640px) {
  .lineup-title h2 {
    font-size: 34px;
  }

  .lineup-group-head h3 {
    font-size: 24px;
  }

  .lineup-grid-3 .lineup-card,
  .lineup-card-image {
    width: 218px;
  }

  .lineup-card-body h4 {
    font-size: 18px;
  }

  .lineup-card-flavor,
  .lineup-card-text,
  .lineup-card-spec {
    font-size: 10px;
  }

  .lineup-btn {
    width: 102px;
    height: 24px;
    font-size: 8px;
  }
}

/*------------TRAVEL KIT以下-----------*/

/* ========================================
   single lineup blocks
   見出しは .lineup-group-head をそのまま使う
======================================== */

.lineup-group-single {
  width: 1036px;
  margin: 0 auto;
}

.lineup-group-single .lineup-grid-1 {
  display: flex;
  width: 320px;
  margin-left: 0;
}

.lineup-group-single .lineup-card,
.lineup-group-single .lineup-card-wide {
  width: 320px;
  max-width: none;
}

.lineup-group-single .lineup-card-image {
  width: 320px;
  margin-bottom: 16px;
  background: #f5f4f1;
}

.lineup-group-single .lineup-card-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  border: 1px solid #999;
}

.lineup-group-single .lineup-card-image.frame-box::after {
  display: block;
}

.lineup-group-single .lineup-card-body {
  width: 320px;
}

.lineup-group-single .lineup-card-body h4 {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.lineup-group-single .lineup-card-sub {
  margin-bottom: 12px;
  font-size: 10px;
  line-height: 1.5;
  color: #444;
}

.lineup-group-single .lineup-card-flavor,
.lineup-group-single .lineup-card-list {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.lineup-group-single .lineup-card-list p {
  margin: 0;
}

.lineup-group-single .lineup-card-text {
  position: relative;
  min-height: auto;
  margin-bottom: 14px;
  padding-left: 12px;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.lineup-group-single .lineup-card-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 1px;
  height: calc(100% - 4px);
  background: #999;
}

.lineup-group-single .lineup-card-spec {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}


.lineup-card-italic {
  font-family: "Times New Roman", "Baskerville", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.03em;
}

@media (max-width: 1100px) {
  .lineup-group-single {
    width: 100%;
  }

  .lineup-group-single .lineup-grid-1 {
    margin-left: 40px;
  }
}

@media (max-width: 900px) {
  .lineup-group-single .lineup-grid-1 {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .lineup-group-single .lineup-card,
  .lineup-group-single .lineup-card-wide,
  .lineup-group-single .lineup-card-image,
  .lineup-group-single .lineup-card-body {
    width: 218px;
  }
}



/* ========================================
   responsive
======================================== */

@media (max-width: 1200px) {
  .product-intro-inner {
    grid-template-columns: 340px 1fr;
  }

  .product-overview-copy {
    font-size: 23px;
  }

  .paste-feature-head h4 {
    font-size: 40px;
  }

  .paste-feature-herb {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .product-main .container {
    padding: 0 24px;
  }

  .product-intro {
    padding: 28px 0 90px;
  }

  .product-intro-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-intro-copy {
    order: 2;
    padding-top: 0;
  }

  .product-intro-visual {
    order: 1;
  }

  .product-overview,
  .paste-feature-grid,
  .product-mood {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-section-title,
  .lineup-title {
    margin-bottom: 54px;
  }

  .herbal-head {
    flex-direction: column;
    gap: 8px;
  }

  .paste-feature-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .line-box::before {
    left: -18px;
    top: 34px;
  }

  .line-box::after {
    left: -18px;
    width: calc(100% + 18px);
  }

  .lineup-grid-3 {
    grid-template-columns: repeat(3, minmax(240px, 240px));
    gap: 18px;
  }

  .lineup-scroll {
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .lineup-scroll::-webkit-scrollbar {
    height: 6px;
  }

  .lineup-scroll::-webkit-scrollbar-thumb {
    background: #b9b4aa;
  }
}

@media (max-width: 640px) {
  .product-main {
    padding-top: 81px;
  }

  .product-main .container {
    padding: 0 18px;
  }

  .product-intro-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-intro-title {
    font-size: 28px;
    line-height: 1.8;
    margin-bottom: 26px;
  }

  .product-intro-body,
  .why-herbs-text,
  .product-mood-ja,
  .lineup-card-text,
  .paste-feature-desc {
    font-size: 12px;
    line-height: 2;
  }

  .why-herbs-title {
    font-size: 24px;
  }

  .product-section-title h2,
  .lineup-title h2 {
    font-size: 34px;
  }

  .product-overview {
    margin-bottom: 84px;
  }

  .product-overview-text {
    padding: 34px 8px 24px 20px;
  }

  .product-overview-copy {
    font-size: 18px;
    line-height: 1.9;
  }

  .herbal-head h3 {
    font-size: 28px;
  }

  .paste-feature-index {
    font-size: 22px;
    gap: 8px;
  }

  .paste-feature-head h4 {
    font-size: 32px;
  }

  .paste-feature-herb {
    font-size: 18px;
    line-height: 1.8;
  }

  .paste-feature-body {
    padding: 28px 10px 22px 18px;
  }

  .stress-tag {
    min-width: auto;
    padding: 7px 12px;
    font-size: 11px;
  }

  .product-mood {
    margin-top: 88px;
  }

  .product-mood-en {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .lineup-group-head {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
  }

  .lineup-group-head h3 {
    font-size: 24px;
  }

  .lineup-group-head::before {
    top: calc(100% + 8px);
    height: 34px;
  }

  .lineup-grid-3 {
    grid-template-columns: repeat(3, minmax(218px, 218px));
  }

  .lineup-card-body h4 {
    font-size: 20px;
  }

  .lineup-btn {
    min-width: 118px;
    height: 34px;
    font-size: 10px;
  }
}



/* ========================================
   LINE UP card hover
======================================== */

.lineup-card {
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

.lineup-card:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

.lineup-card-image img {
  transition: transform 0.5s ease;
}

.lineup-card:hover .lineup-card-image img {
  transform: scale(1.02);
}

.lineup-group-single .lineup-card-image.frame-box::after {
  display: none;
}
