@charset "UTF-8";
/*----------------------------------------
  CSSカスタムプロバティ
----------------------------------------*/
:root {
  /* color - イタリア料理 CASA MiA（緑メイン・赤アクセント・白ベース・アットホーム） */
  --c-white: #ffffff;
  /* 白色 - 清潔感・ベースカラー */
  --c-black: #000000;
  /* 黒色 - 汎用ブラック */
  --c-text: #2d2a26;
  /* 本文テキスト色 - 読みやすく落ち着いたダークグレー */
  --c-main: #017c3e;
  /* メインカラー - イタリアングリーン（ヘッダー・主要ボタン・クライアント希望：緑） */
  --c-sub: #faf6f2;
  /* サブカラー - 温かみのあるオフホワイト（背景・帯・アットホーム感） */
  --c-accent1: #8b1538;
  /* アクセント1 - イタリアンレッド（リンク・タグ・クライアント希望：赤） */
  --c-accent2: #c41e3a;
  /* アクセント2 - トマトレッド（料理の温かみ・補助アクセント） */
  --c-background: #faf6f2;
  /* セクション背景色 - 温かみのあるオフホワイト（アットホーム感） */
  --c-background-base: #ffffff;
  --c-lineup-bg: #f8f5f1;
  /* ラインナップ背景 - ごく薄いクリームで商品面をすっきり */
  --c-gray1: #5a554e;
  /* グレー1（中間色） - サブテキスト・ラベル用の落ち着いたグレー */
  --c-gray2: #e8e4df;
  /* グレー2（境界線用） - 白ベースに馴染む薄いグレー */
  --c-header-bg: #ffffff;
  --c-footer-bg: #831010;
  /* フッター背景色 - 深いイタリアングリーン（バジル・オリーブの濃いトーン） */
  --c-brand-gradient: linear-gradient(135deg, #008c45 0%, #ffffff 50%, #8b1538 100%);
  /* ブランドグラデーション - イタリア国旗風（緑〜白〜赤） */
  --c-eat-gradient: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(250, 246, 242, 0.95), rgba(255, 255, 255, 1));
  /* 装飾用グラデーション - 温かみのあるごく控えめな光沢 */
  --c-eat-gradient-reverse: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1),
    rgba(250, 246, 242, 0.95),
    rgba(255, 255, 255, 1)
  );
  /* 装飾用グラデーション（逆向き） */
  /* hover */
  --hover-opacity: 0.85;
  /* ホバー時の透明度 */
  --hover-transition: 0.3s ease;
  /* ホバーのアニメーション速度 */
  --c-main-hover: #006b36;
  /* メインカラーのホバー時 - イタリアングリーンを少し深く */
  --c-sub-hover: #f0ebe5;
  /* サブカラーのホバー時 - オフホワイトを一段階濃く */
  --c-accent1-hover: #6b1029;
  /* アクセント1ホバー - イタリアンレッドを少し深く */
  --c-accent2-hover: #a0182f;
  /* アクセント2ホバー - トマトレッドを少し深く */
  /* subtle effects - さりげない演出 */
  --shadow-soft: 0 8px 24px rgba(0, 140, 69, 0.08);
  /* 柔らかい影 - 緑みを帯びたごく薄いドロップシャドウ */
  --radius-sm: 6px;
  /* 小さい角丸 - すっきりした印象 */
  --radius-md: 10px;
  /* 中程度の角丸 - 親しみやすさ */
  --radius-lg: 14px;
  /* 大きい角丸 */
  /* selection - テキスト選択時 */
  --c-selection-bg: rgba(0, 140, 69, 0.12);
  /* テキスト選択時の背景色 - メインカラー（イタリアングリーン）由来のごく薄い緑 */
  --c-selection-text: inherit;
  /* テキスト選択時の文字色 - 継承 */
  /* z-index */
  --z-focus-visible: 10000;
  --z-hamburger: 1000;
  --z-nav: 900;
  --z-nav-back: 850;
  --z-header: 800;
  /* leading-trim */
  --leading-trim: calc((1em - 1lh) / 2);
}

/*----------------------------------------
  base
----------------------------------------*/
html {
  font-size: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}
@media (max-width: 1000px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  overflow-x: clip;
  overflow-y: auto;
  background: var(--c-background-base);
  color: var(--c-text);
  line-height: 1.3;
  font-family: var(--ff-base);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

a {
  display: inline-block;
  transition: opacity var(--hover-transition);
  cursor: pointer;
}
@media (any-hover: hover) {
  a:hover {
    opacity: var(--hover-opacity);
  }
}

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

section {
  padding-block: clamp(2.5rem, 1.6642857143rem + 3.8095238095vw, 5rem);
}

:focus-visible {
  outline: 2px solid blue;
  outline-offset: 0;
  position: relative;
  z-index: var(--z-focus-visible);
}

/* テキスト選択時のスタイル */
::-moz-selection {
  background: var(--c-selection-bg);
  color: var(--c-selection-text);
}
::selection {
  background: var(--c-selection-bg);
  color: var(--c-selection-text);
}

/* スクロールバー（Webkit系ブラウザ） */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--c-background);
}

::-webkit-scrollbar-thumb {
  background: var(--c-gray2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-gray1);
}

.l-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .l-inner {
    max-width: 640px;
  }
}

/*----------------------------------------
  l-header
----------------------------------------*/
.l-header {
  width: 100%;
  height: 80px;
  background: var(--c-header-bg);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header);
}
@media (max-width: 1000px) {
  .l-header {
    height: 60px;
  }
}

.l-header__inner {
  max-width: 1920px;
  padding-right: unset;
  padding-block: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
@media (max-width: 1000px) {
  .l-header__inner {
    padding-block: 5px;
  }
}

.l-header__logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.l-header__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.l-header__logo a img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__logo a span {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(1.5625rem, 1.09328125rem + 0.75vw, 1.75rem);
  font-weight: 500;
}
@media (max-width: 1000px) {
  .l-header__logo a span {
    font-size: clamp(1.25rem, 1.08125rem + 0.7692307692vw, 1.5625rem);
  }
}

/*----------------------------------------
  l-hamburger
----------------------------------------*/
.l-hamburger {
  display: none;
}
@media (max-width: 1000px) {
  .l-hamburger {
    position: absolute;
    right: 20px;
    top: 50%;
    translate: 0 -50%;
    z-index: var(--z-hamburger);
    width: 30px;
    aspect-ratio: 1;
    background: transparent;
    display: grid;
    place-items: center;
  }
  .l-hamburger .l-hamburger__line {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--c-black);
    border-radius: 100vmax;
    position: relative;
  }
  .l-hamburger .l-hamburger__line::before, .l-hamburger .l-hamburger__line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--c-black);
    border-radius: 100vmax;
    transition: rotate var(--hover-transition);
  }
  .l-hamburger .l-hamburger__line::before {
    top: -10px;
  }
  .l-hamburger .l-hamburger__line::after {
    bottom: -10px;
  }
  .l-hamburger {
    /* 閉じる */
  }
  .l-hamburger:is([aria-expanded=true]) .l-hamburger__line {
    background: transparent;
  }
  .l-hamburger:is([aria-expanded=true]) .l-hamburger__line::before {
    top: 0;
    rotate: 45deg;
    background: var(--c-white);
  }
  .l-hamburger:is([aria-expanded=true]) .l-hamburger__line::after {
    bottom: 0;
    rotate: -45deg;
    background: var(--c-white);
  }
}

/*----------------------------------------
  l-nav
----------------------------------------*/
.l-nav {
  display: block;
}

.l-nav__logo {
  display: none;
}

.l-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.l-nav__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
}
.l-nav__link:has(i) {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--c-white);
  background: var(--c-footer-bg);
  height: 80px;
  padding: 20px;
}
.l-nav__link .fa-envelope {
  color: var(--c-white);
  font-size: clamp(1.875rem, 1.09296875rem + 1.25vw, 2.1875rem);
  pointer-events: none;
}

@media (min-width: 1001px) {
  .l-nav__focus-trap {
    visibility: hidden;
  }
  .l-nav__top {
    display: none;
  }
}
@media (max-width: 1000px) {
  .l-nav {
    position: fixed;
    top: 0;
    left: -40vw;
    width: 40vw;
    height: 100dvh;
    background: var(--c-background);
    z-index: var(--z-nav);
    display: grid;
    place-content: center;
    opacity: 0;
    visibility: hidden;
    transition: left 0.3s, opacity 0.3s, visibility 0.3s;
  }
  .l-nav.is-open {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .l-nav__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
  }
  .l-nav__logo img {
    width: 150px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .l-nav__logo span {
    font-size: 16px;
    font-weight: 500;
    display: none;
  }
  .l-nav__list {
    flex-direction: column;
    gap: 25px;
  }
  .l-nav__link:has(i) {
    background: var(--c-main);
    height: auto;
    padding: 10px 20px;
  }
  .l-nav__link:has(i) .fa-envelope {
    color: var(--c-white);
    font-size: clamp(1.5625rem, 1.2786029412rem + 1.2941176471vw, 2.25rem);
  }
}
@media (max-width: 768px) {
  .l-nav {
    left: -50vw;
    width: 60vw;
  }
}
@media (max-width: 576px) {
  .l-nav__link {
    font-size: 16px;
  }
}
.l-nav-back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.7);
  z-index: var(--z-nav-back);
  display: none;
}
.l-nav-back.is-open {
  display: block;
}

/*----------------------------------------
  l-main
----------------------------------------*/
.l-main {
  margin-top: 80px;
}
@media (max-width: 1000px) {
  .l-main {
    margin-top: 60px;
  }
}

/*----------------------------------------
  l-footer
----------------------------------------*/
.l-footer {
  padding-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  background-color: var(--c-footer-bg);
  font-weight: 500;
}

.l-footer__inner {
  max-width: 1040px;
}

.l-footer__content {
  color: var(--c-white);
  display: grid;
  gap: 10px;
  grid-template-columns: 50% 25% 25%;
  grid-template-areas: "address nav furusato";
}
@media (max-width: 1000px) {
  .l-footer__content {
    grid-template-columns: 46% 27% 27%;
  }
}
@media (max-width: 768px) {
  .l-footer__content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "address address" "nav furusato";
  }
}

.l-footer__left {
  grid-area: address;
}
@media (max-width: 768px) {
  .l-footer__left {
    border-bottom: 2px solid var(--c-white);
    padding-bottom: 30px;
  }
}

.l-footer__address {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .l-footer__address {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.l-footer__address p {
  display: flex;
  align-items: baseline;
}
.l-footer__address p a {
  word-break: break-all;
  overflow-wrap: break-word;
  flex: 1;
  min-width: 0;
}

.l-footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .l-footer__logo {
    justify-content: center;
  }
}
.l-footer__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-footer__logo a img {
  height: 60px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .l-footer__logo a img {
    height: 50px;
  }
}
.l-footer__logo a span {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(1.5rem, 1.3328571429rem + 0.7619047619vw, 2rem);
  font-weight: 500;
}

.l-footer__title {
  font-size: clamp(1.875rem, 1.6660714286rem + 0.9523809524vw, 2.5rem);
  margin-bottom: 20px;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .l-footer__title {
    align-items: center;
  }
}
.l-footer__title span {
  line-height: 1.2;
}
.l-footer__title span:first-child {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
}
.l-footer__title span:last-child {
  font-size: clamp(1.875rem, 1.6660714286rem + 0.9523809524vw, 2.5rem);
}

.l-footer__address-text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
}

.l-footer__info {
  display: grid;
  grid-template-columns: auto 1fr;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
}

.l-footer__info-th {
  white-space: nowrap;
  text-decoration: none;
}

.l-footer__info-td {
  overflow-wrap: anywhere;
  line-break: strict;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.l-footer__sns-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .l-footer__sns-list {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.l-footer__sns-link {
  margin-top: 20px;
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
}

.l-footer__nav-list {
  grid-area: nav;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-left: 2px solid var(--c-white);
  padding: 1em;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 768px) {
  .l-footer__nav-list {
    border-left: none;
  }
}
@media (max-width: 576px) {
  .l-footer__nav-list {
    padding: 1em 0 1em;
  }
}

.l-footer__nav-link {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
}

.l-footer__furusato-list {
  grid-area: furusato;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-left: 2px solid var(--c-white);
  padding: 1em;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 768px) {
  .l-footer__furusato-list {
    border-left: none;
  }
}
@media (max-width: 576px) {
  .l-footer__furusato-list {
    padding: 1em 0 1em;
  }
}

.l-footer__furusato-link {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
}

.l-footer__copyright {
  color: var(--c-white);
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  text-align: center;
  padding-block: 30px;
}

/*----------------------------------------
  ボタン
----------------------------------------*/
/*ボタンベース
-----------------------------------*/
.c-btn {
  display: inline-block;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
}

/* ボタン種類
----------------------------------------*/
.c-btn_outline, .c-btn_products, .c-btn_recommend, .c-btn_popular,
.c-btn_thanks, .c-btn_outline-thin, .c-btn_google, .c-btn_why {
  padding: 10px 20px;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  font-weight: 500;
  color: var(--c-main);
  background: transparent;
  border: 2px solid var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--hover-transition);
}
@media (any-hover: hover) {
  .c-btn_outline:hover, .c-btn_products:hover, .c-btn_recommend:hover, .c-btn_popular:hover,
  .c-btn_thanks:hover, .c-btn_outline-thin:hover, .c-btn_google:hover, .c-btn_why:hover {
    color: var(--c-white);
    background: var(--c-main);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_outline-thin, .c-btn_google, .c-btn_why {
  border-width: 1px;
}

.c-btn_solid, .c-btn_products-buy, .c-btn_recommend-buy, .c-btn_page-head,
.c-btn_producer {
  padding: 12px 20px;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  font-weight: 500;
  color: var(--c-white);
  background: var(--c-main);
  border: 2px solid var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--hover-transition);
}
@media (any-hover: hover) {
  .c-btn_solid:hover, .c-btn_products-buy:hover, .c-btn_recommend-buy:hover, .c-btn_page-head:hover,
  .c-btn_producer:hover {
    background: var(--c-white);
    color: var(--c-main);
  }
}

.c-btn_instagram {
  max-width: 640px;
  margin-inline: auto;
  padding-block: 10px;
  padding-inline: clamp(0.625rem, 0.4160714286rem + 0.9523809524vw, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--hover-transition);
}
@media (any-hover: hover) {
  .c-btn_instagram:hover {
    color: var(--c-white);
    background: var(--c-main-hover);
    border-color: var(--c-main-hover);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_submit {
  padding: 15px 20px;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  font-weight: 500;
  color: var(--c-white);
  background: var(--c-main);
  width: min(200px, 100%);
  border: 2px solid var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--hover-transition);
}
@media (any-hover: hover) {
  .c-btn_submit:hover {
    background: var(--c-white);
    color: var(--c-main);
  }
}

/* 個別のボタン（既存のクラス名との互換性のため）
----------------------------------------*/
.c-btn_popular,
.c-btn_thanks {
  display: block;
}

.c-btn_recommend {
  word-break: keep-all;
  display: block;
}

.c-btn_products {
  word-break: keep-all;
  display: block;
}

.c-btn_recommend-buy {
  width: 100%;
}

.c-btn_products-buy {
  width: 100%;
}

/* ボタングループ
----------------------------------------*/
.c-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn-group:has(.c-btn_products) {
  padding-inline: 20px;
}

.c-btn-group__item {
  position: relative;
}
.c-btn-group__item span {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--c-white);
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*----------------------------------------
  Form Parts
----------------------------------------*/
/*各フォーム部品の基本スタイルを上書きします*/
input:is([type=text], [type=email], [type=tel], [type=url], [type=search]),
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 10px 20px;
  background-color: white;
  border: 1px solid var(--c-gray2);
  font-family: inherit;
  font-size: 16px;
  color: var(--c-black);
}

input:is([type=number], [type=password]) {
  width: 100%;
  padding: 10px 20px;
  background-color: white;
  border: 1px solid;
  font-size: 16px;
  font-family: inherit;
}

/*フォーカス時*/
input:is([type=text],
[type=email],
[type=tel],
[type=url],
[type=search],
[type=number],
[type=password]):focus,
textarea:focus,
select:focus {
  outline: 2px solid rgb(77, 144, 254);
}

/*エラー時*/
.is-error input:is([type=text], [type=email], [type=tel], [type=url], [type=number], [type=password]),
.is-error textarea,
.is-error select,
.is-error .select-wrap {
  color: red;
  border-color: red;
}

/* placeholder */
::-moz-placeholder {
  color: var(--c-gray2);
}
::placeholder {
  color: var(--c-gray2);
}

/*select
--------------------------*/
.c-form__select-box {
  position: relative;
}
.c-form__select-box::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin-block: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  rotate: 45deg;
  pointer-events: none;
}

/*----------------------------------------
  splide
----------------------------------------*/
/* ファーストビュースライダー */
.p-fv__slider {
  padding-block: 50px;
}
@media (max-width: 1000px) {
  .p-fv__slider {
    padding-block: 30px;
  }
}
.p-fv__slider {
  /* Splideの矢印スタイル */
}
.p-fv__slider .splide__arrow {
  background: transparent;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  cursor: pointer;
  transition: opacity var(--hover-transition);
}
@media (max-width: 1000px) {
  .p-fv__slider .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .p-fv__slider .splide__arrow {
    width: 30px;
    height: 30px;
  }
}
@media (any-hover: hover) {
  .p-fv__slider .splide__arrow:hover {
    opacity: 0.5;
  }
}
.p-fv__slider .splide__arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-fv__slider {
  /* 左矢印 */
}
.p-fv__slider .splide__arrow--prev {
  left: auto;
  right: 100%;
}
.p-fv__slider .splide__arrow--prev::before {
  background-image: url("../img/same/arrow-prev.svg");
}
.p-fv__slider {
  /* 右矢印 */
}
.p-fv__slider .splide__arrow--next {
  right: auto;
  left: 100%;
}
.p-fv__slider .splide__arrow--next::before {
  background-image: url("../img/same/arrow-next.svg");
}
.p-fv__slider .splide__pagination {
  bottom: -25px;
}
@media (max-width: 768px) {
  .p-fv__slider .splide__pagination {
    bottom: -10px;
  }
}
.p-fv__slider .splide__pagination .splide__pagination__page {
  border-radius: unset;
  height: 5px;
  width: 4vw;
}
.p-fv__slider .splide__pagination .splide__pagination__page.is-active {
  transform: scale(1);
}

/* whyスライダー */
/* 店舗概要スライダー */
.c-about__slider {
  margin-top: 30px;
  margin-inline: calc(50% - 50vw);
}

/*----------------------------------------
  c-to-top
----------------------------------------*/
.c-to-top {
  padding-block: 50px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.c-to-top a {
  font-size: clamp(1.125rem, 0.97875rem + 0.6666666667vw, 1.5625rem);
  position: relative;
}
.c-to-top a::before {
  content: "";
  position: absolute;
  bottom: 80%;
  left: 50%;
  translate: -50% 0;
  width: 25px;
  aspect-ratio: 1/1;
  border-right: 5px solid var(--c-text);
  border-top: 5px solid var(--c-text);
  rotate: -45deg;
}

/*----------------------------------------
  c-furusato
----------------------------------------*/
.c-furusato {
  padding-block: clamp(1.5625rem, -0.3387064873rem + 3.9556962025vw, 3.125rem);
}

.c-furusato__inner {
  max-width: 1040px;
}
@media (max-width: 768px) {
  .c-furusato__inner {
    max-width: 640px;
  }
}
@media (max-width: 576px) {
  .c-furusato__inner {
    max-width: 340px;
  }
}

.c-furusato__head {
  text-align: center;
}

.c-furusato__title {
  display: inline-block;
  font-size: clamp(1rem, 0.9164285714rem + 0.380952381vw, 1.25rem);
  letter-spacing: 0.05em;
  position: relative;
}
.c-furusato__title::before, .c-furusato__title::after {
  content: "";
  width: 1px;
  height: clamp(2.5rem, 2.0821428571rem + 1.9047619048vw, 3.75rem);
  background: var(--c-text);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.c-furusato__title::before {
  left: -1em;
  rotate: -35deg;
}
@media (max-width: 768px) {
  .c-furusato__title::before {
    rotate: -25deg;
  }
}
.c-furusato__title::after {
  right: -1em;
  rotate: 35deg;
}
@media (max-width: 768px) {
  .c-furusato__title::after {
    rotate: 25deg;
  }
}

.c-furusato__list {
  margin-top: clamp(2.5rem, 0.9790348101rem + 3.164556962vw, 3.75rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.625rem, 0.4160714286rem + 0.9523809524vw, 1.25rem);
}
@media (max-width: 576px) {
  .c-furusato__list {
    grid-template-columns: 1fr;
  }
}

.c-furusato__item {
  position: relative;
}

.c-furusato__disabled {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--c-white);
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*----------------------------------------
  c-section
----------------------------------------*/
.c-section-title_wrapper {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: clamp(2.5rem, 1.6642857143rem + 3.8095238095vw, 5rem);
}
.c-section-title_wrapper::before, .c-section-title_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-44%);
  width: clamp(3.125rem, 2.4982142857rem + 2.8571428571vw, 5rem);
  aspect-ratio: 200/357;
  background: center center/cover no-repeat;
}
.c-section-title_wrapper::before {
  left: 0;
  background-image: url(../img/same/prize-left.png);
}
.c-section-title_wrapper::after {
  right: 0;
  background-image: url(../img/same/prize-right.png);
}

.c-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  word-break: keep-all;
  text-align: center;
}

.c-section-title__en {
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  color: var(--c-main);
  font-weight: 500;
}

.c-section-title__ja {
  font-size: clamp(1.5625rem, 1.2491071429rem + 1.4285714286vw, 2.5rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9375rem, -0.2032238924rem + 2.3734177215vw, 1.875rem);
  width: 100%;
}

.c-section-title__before,
.c-section-title__after {
  flex: 1;
  height: 1px;
  background: var(--c-text);
}

/*----------------------------------------
  c-page-head
----------------------------------------*/
.c-page-head__fv {
  padding-block: clamp(6.25rem, 4.1607142857rem + 9.5238095238vw, 12.5rem);
  position: relative;
}
.c-page-head__fv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.c-page-head__inner {
  height: 100%;
}
.c-page-head__inner._narrow {
  max-width: 840px;
}
.c-page-head__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  color: var(--c-white);
}

.c-page-head__title {
  font-size: clamp(1.25rem, 0.9366071429rem + 1.4285714286vw, 2.1875rem);
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px 5px rgb(0, 0, 0), 0 0 1px rgb(0, 0, 0);
}

.c-page-head__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  font-weight: 500;
  text-shadow: 0 1px 5px rgb(0, 0, 0), 0 0 1px rgb(0, 0, 0);
  text-wrap: balance;
  word-break: auto-phrase;
  text-align: center;
  line-height: 1.5;
}

.c-page-head__discription {
  margin-block: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem) 30px;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  font-weight: 500;
  line-break: strict;
  line-height: 1.5;
  text-align: justify;
}

.c-page-head__btn {
  position: relative;
}
.c-page-head__btn span {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--c-white);
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*----------------------------------------
  c-pr
----------------------------------------*/
.c-pr {
  padding-block: 50px 40px;
  padding-inline: clamp(0.625rem, -0.2107142857rem + 3.8095238095vw, 3.125rem);
  max-width: 800px;
  margin-top: 60px;
  margin-inline: auto;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}
.c-pr + * {
  margin-top: 50px;
}

.c-pr__title {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 500;
  position: absolute;
  top: -0.7em;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-white);
  color: var(--c-main);
  white-space: nowrap;
  padding-inline: 10px;
}

.c-pr__list {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-pr__item {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.5;
  position: relative;
  padding-left: 1.5em;
}
.c-pr__item::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 0.8em;
  aspect-ratio: 1/1;
  background: var(--c-main);
  border-radius: 50%;
}

/*----------------------------------------
  c-about
----------------------------------------*/
.c-about__content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, -1.0314477848rem + 4.746835443vw, 3.125rem);
}
@media (max-width: 768px) {
  .c-about__content {
    grid-template-columns: 1fr;
  }
}

.c-about__thumb {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.c-about__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-about__body {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
}

.c-about__title {
  font-size: clamp(1.25rem, 0.9366071429rem + 1.4285714286vw, 2.1875rem);
  font-weight: 500;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .c-about__title {
    text-align: center;
  }
}

.c-about__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
  text-align: justify;
  line-break: strict;
}

/* c-about__slider */
.c-about__slide-thumb {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.c-about__slide-thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* c-about__table */
.c-about__table {
  margin-top: 50px;
  max-width: 740px;
  margin-inline: auto;
  width: 100%;
  border-collapse: collapse;
}
.c-about__table tr {
  display: grid;
  grid-template-columns: 24% 1fr;
  gap: 5px;
}
@media (max-width: 576px) {
  .c-about__table tr {
    grid-template-columns: 1fr;
  }
}
.c-about__table th,
.c-about__table td {
  font-size: clamp(0.875rem, 0.7914285714rem + 0.380952381vw, 1.125rem);
  padding: 10px;
  margin: -1px -1px 0 0;
}
.c-about__table th {
  border-bottom: 2px solid var(--c-gray1);
  text-align: center;
  display: grid;
  place-items: center;
}
@media (max-width: 576px) {
  .c-about__table th {
    border: unset;
    background: var(--c-background);
  }
}
.c-about__table td {
  border-bottom: 2px solid var(--c-gray2);
  overflow-wrap: anywhere;
  line-height: 1.4;
  word-break: keep-all;
}
@media (max-width: 576px) {
  .c-about__table td {
    border: unset;
    margin-inline: auto;
    text-align: center;
  }
  .c-about__table td span {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }
}

/*----------------------------------------
  c-belief
----------------------------------------*/
.p-philosophy .c-belief {
  margin-top: -80px;
  position: relative;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-philosophy .c-belief {
    margin-top: 50px;
  }
}

.c-belief__thumb {
  width: 100%;
  aspect-ratio: 4/1;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .c-belief__thumb {
    aspect-ratio: 3/1;
  }
}
@media (max-width: 1000px) {
  .c-belief__thumb {
    aspect-ratio: 2/1;
  }
}
.c-belief__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 0%;
     object-position: center 0%;
}

.c-belief__content {
  margin-top: -160px;
  padding: 45px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 0.4895174051rem + 1.582278481vw, 1.875rem);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--c-gray2);
}
@media (max-width: 768px) {
  .c-belief__content {
    margin-top: -80px;
    padding: 20px;
    grid-template-columns: 1fr;
  }
}

.c-belief__left {
  container-type: inline-size;
}

@container (width >= 0px) {
  .c-belief__title {
    font-size: clamp(1.25rem, 0.5087209302rem + 4.9833887043cqi, 2.1875rem);
    font-weight: 500;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.25rem, 0.4895174051rem + 1.582278481vw, 1.875rem);
    align-items: center;
  }
  .c-belief__title::after {
    content: "";
    display: inline-block;
    width: 90%;
    height: 1px;
    background: var(--c-text);
  }
  .c-belief__catch {
    margin-top: clamp(1.25rem, 0.8321428571rem + 1.9047619048vw, 2.5rem);
    font-size: clamp(1.125rem, 0.5319767442rem + 3.9867109635cqi, 1.875rem);
    font-weight: 500;
    line-height: 1.5;
    line-break: strict;
    word-break: keep-all;
  }
}
.c-belief__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
  text-align: justify;
  line-break: strict;
}

/*----------------------------------------
  c-producer
----------------------------------------*/
.c-producer {
  display: grid;
  gap: 30px;
}
.p-philosophy .c-producer {
  margin-top: 50px;
  grid-template-columns: 45% 1fr;
}
@media (max-width: 768px) {
  .p-philosophy .c-producer {
    grid-template-columns: 1fr;
  }
}
.p-company .c-producer {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (max-width: 768px) {
  .p-company .c-producer {
    grid-template-columns: 1fr;
  }
}

.c-producer__thumb {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-producer__thumb {
    margin-inline: auto;
  }
}
.p-philosophy .c-producer__thumb {
  aspect-ratio: 1/1.1;
  padding: clamp(0rem, -0.6267857143rem + 2.8571428571vw, 1.875rem);
}
.p-philosophy .c-producer__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 50%;
     object-position: center 50%;
}
@media (max-width: 768px) {
  .p-philosophy .c-producer__thumb {
    aspect-ratio: 4/3;
  }
}
.p-company .c-producer__thumb {
  aspect-ratio: 1/1;
  padding: clamp(0rem, -1.2535714286rem + 5.7142857143vw, 3.75rem);
}
.p-company .c-producer__thumb img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center 50%;
     object-position: center 50%;
}
@media (max-width: 768px) {
  .p-company .c-producer__thumb {
    aspect-ratio: 4/3;
  }
}

.c-producer__body {
  container-type: inline-size;
}
@media (min-width: 769px) {
  .p-philosophy .c-producer__body {
    padding-block: 10px 100px;
  }
}

@container (width >= 0px) {
  .c-producer__title {
    font-size: clamp(1.125rem, 1.025rem + 0.5714285714cqi, 1.25rem);
    font-weight: 500;
  }
  .c-producer__name {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    align-items: baseline;
  }
  .c-producer__name-ja {
    font-size: clamp(1.25rem, 0.5rem + 4.2857142857cqi, 2.1875rem);
    font-weight: 500;
  }
  .c-producer__name-en {
    font-size: clamp(1rem, 0.55rem + 2.5714285714cqi, 1.5625rem);
    font-weight: 500;
  }
  .c-producer__text {
    margin-top: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
    font-size: clamp(1rem, 0.9rem + 0.5714285714cqi, 1.125rem);
    line-height: 1.7;
    text-align: justify;
    line-break: strict;
  }
}
/*----------------------------------------
  index.php専用セクション
----------------------------------------*/
/*----------------------------------------
  p-fv (ファーストビュー)
----------------------------------------*/
.p-fv {
  position: relative;
  overflow: hidden;
  padding-block: 50px;
}
@media (max-width: 768px) {
  .p-fv {
    padding-block: 30px;
  }
}

.p-fv__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv__inner {
  padding-inline: 70px;
  max-width: 1140px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  .p-fv__inner {
    padding-inline: 50px;
  }
}
@media (max-width: 768px) {
  .p-fv__inner {
    max-width: 540px;
  }
}
@media (max-width: 576px) {
  .p-fv__inner {
    padding-inline: 30px;
  }
}

.p-fv__head {
  color: var(--c-white);
  font-size: clamp(1.25rem, 0.7276785714rem + 2.380952381vw, 2.8125rem);
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgb(0, 0, 0);
  word-break: keep-all;
  padding-inline: 20px;
}

.p-fv__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  row-gap: clamp(1.25rem, 0.4895174051rem + 1.582278481vw, 1.875rem);
  -moz-column-gap: clamp(1.25rem, -1.0314477848rem + 4.746835443vw, 3.125rem);
       column-gap: clamp(1.25rem, -1.0314477848rem + 4.746835443vw, 3.125rem);
  grid-template-areas: "title thumb" "body thumb";
}
@media (any-hover: hover) {
  .p-fv__link:hover {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .p-fv__link {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "title" "thumb" "body";
  }
}

.p-fv__title {
  grid-area: title;
  background: rgba(255, 255, 255, 0.7);
  color: var(--c-black);
  font-size: clamp(1rem, 0.8119642857rem + 0.8571428571vw, 1.5625rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  padding: 10px;
  word-break: keep-all;
}

.p-fv__body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .p-fv__body-title {
    text-align: center;
  }
}

.p-fv__body-title-main {
  color: var(--c-white);
  font-size: clamp(1.25rem, 0.9366071429rem + 1.4285714286vw, 2.1875rem);
  font-weight: 500;
  text-shadow: 0 0 10px rgb(0, 0, 0);
}

.p-fv__body-text {
  color: var(--c-white);
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
  font-weight: 500;
  text-align: justify;
  line-break: strict;
  text-shadow: 0 0 10px rgb(0, 0, 0);
}

.p-fv__thumb {
  grid-area: thumb;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 2px solid var(--c-white);
}
.p-fv__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------------
  p-why (ふるさと納税とは)
----------------------------------------*/
.p-why {
  padding-block: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
}

.p-why__wrapper {
  margin-top: clamp(3.125rem, 3.125rem + 0vw, 3.125rem);
}

.p-why__thumb {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.p-why__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-why__content {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .p-why__content {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }
}

.p-why__head {
  margin-top: clamp(1.25rem, -3.4421875rem + 7.5vw, 3.125rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .p-why__head {
    gap: 7px;
    margin-top: unset;
    position: static;
  }
}

.p-why__title {
  background: var(--c-main);
  color: var(--c-white);
  padding: 5px 20px;
  font-size: clamp(1.25rem, 0.4895174051rem + 1.582278481vw, 1.875rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-wrap: nowrap;
}
@media (max-width: 768px) {
  .p-why__title {
    padding: 10px;
    width: 100%;
    text-align: center;
    text-wrap: auto;
    word-break: keep-all;
    font-size: clamp(1.125rem, 1.0200358852rem + 0.4784688995vw, 1.25rem);
  }
}

.p-why__body {
  margin-top: clamp(8.75rem, 4.1871044304rem + 9.4936708861vw, 12.5rem);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .p-why__body {
    margin-top: 30px;
    padding-inline: unset;
  }
}

.p-why__text {
  padding-inline: clamp(0.625rem, -1.2762064873rem + 3.9556962025vw, 2.1875rem) clamp(6.25rem, -1.3548259494rem + 15.8227848101vw, 12.5rem);
  font-size: clamp(1rem, 0.847903481rem + 0.3164556962vw, 1.125rem);
  line-height: 1.5;
  text-align: justify;
  line-break: strict;
}
@media (max-width: 768px) {
  .p-why__text {
    padding-inline: unset;
  }
}

.p-why__btn {
  padding-left: clamp(1.25rem, -3.4421875rem + 7.5vw, 3.125rem);
  width: -moz-fit-content;
  width: fit-content;
  margin-top: clamp(1.875rem, -1.253125rem + 5vw, 3.125rem);
}
@media (max-width: 768px) {
  .p-why__btn {
    padding-left: unset;
    margin-inline: auto;
  }
}

.p-why__img {
  margin-left: -10vw;
  position: relative;
  aspect-ratio: 3/2;
  position: relative;
}
@media (min-width: 1401px) {
  .p-why__img {
    margin-left: -190px;
  }
}
@media (max-width: 768px) {
  .p-why__img {
    margin-left: unset;
    order: -1;
  }
}
.p-why__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-why__img-text {
  position: absolute;
  bottom: 20px;
  right: 10px;
  font-size: clamp(0.875rem, 0.6660714286rem + 0.9523809524vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--c-main);
  writing-mode: vertical-rl;
  transform: scale(-1, -1);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .p-why__img-text {
    bottom: 30%;
  }
}
@media (max-width: 375px) {
  .p-why__img-text {
    bottom: 20%;
  }
}

/*----------------------------------------
  p-popular (おすすめの人気商品)
----------------------------------------*/
.p-popular {
  position: relative;
}
.p-popular::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background: var(--c-background);
  z-index: -1;
}
@media (max-width: 1000px) {
  .p-popular::before {
    height: 100%;
  }
}

.p-popular__item {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .p-popular__item {
    grid-template-columns: 1fr;
  }
}

.p-popular__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  container-type: inline-size;
}

@container (width >= 0px) {
  .p-popular__head {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .p-popular__catch {
    padding: 10px;
    font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
    font-weight: 500;
    text-align: center;
    background: var(--c-main);
    color: var(--c-white);
  }
  .p-popular__title {
    display: flex;
    flex-direction: column;
  }
  .p-popular__title-main {
    font-size: clamp(1.125rem, 0.90625rem + 1.25cqi, 1.375rem);
    font-weight: 500;
    text-align: center;
    word-break: keep-all;
  }
  .p-popular__title-sub {
    font-size: clamp(1.125rem, 0.90625rem + 1.25cqi, 1.375rem);
    font-weight: 500;
    text-align: center;
  }
  .p-popular__text {
    font-size: clamp(1rem, 0.890625rem + 0.625cqi, 1.125rem);
    line-height: 1.7;
    text-align: justify;
    line-break: strict;
  }
}
.p-popular__thumb {
  aspect-ratio: 4/5;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.p-popular__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% center;
     object-position: 50% center;
}
@media (max-width: 768px) {
  .p-popular__thumb {
    order: -1;
    aspect-ratio: 4/3;
  }
  .p-popular__thumb img {
    -o-object-position: 50% center;
       object-position: 50% center;
  }
}
.p-popular__thumb .p-popular__thumb-text {
  position: absolute;
  bottom: 5%;
  right: 20px;
  writing-mode: vertical-rl;
  scale: -1;
  color: var(--c-gray2);
  font-size: clamp(0.875rem, 0.6660714286rem + 0.9523809524vw, 1.5rem);
  opacity: 0.8;
}

/*----------------------------------------
  p-commitment (こだわり)
----------------------------------------*/
.p-commitment__list {
  margin-top: 80px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, -1.0314477848rem + 4.746835443vw, 3.125rem);
  position: relative;
}
@media (max-width: 768px) {
  .p-commitment__list {
    margin-top: 50px;
  }
}
.p-commitment__list::before, .p-commitment__list::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
  background: var(--c-main);
}
@media (max-width: 768px) {
  .p-commitment__list::before, .p-commitment__list::after {
    display: none;
  }
}
.p-commitment__list::before {
  top: 0;
  width: 1px;
  height: 100%;
}
.p-commitment__list::after {
  bottom: 100%;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.p-commitment__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-commitment__item:first-child {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .p-commitment__item:first-child {
    margin-top: unset;
  }
}
@media (max-width: 768px) {
  .p-commitment__item:not(:first-child) {
    margin-top: clamp(1.875rem, 0.8253588517rem + 4.7846889952vw, 3.125rem);
  }
}
.p-commitment__item:nth-child(even) {
  grid-template-areas: "body thumb";
}
@media (max-width: 768px) {
  .p-commitment__item:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas: "thumb" "body";
  }
}
.p-commitment__item:nth-child(even) .p-commitment__body {
  grid-area: body;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .p-commitment__item:nth-child(even) .p-commitment__body {
    padding-right: unset;
  }
}
.p-commitment__item:nth-child(even) .p-commitment__body .p-commitment__title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
@media (max-width: 768px) {
  .p-commitment__item:nth-child(even) .p-commitment__body .p-commitment__title {
    align-items: center;
    text-align: center;
  }
}
.p-commitment__item:nth-child(even) .p-commitment__thumb {
  grid-area: thumb;
}
.p-commitment__item:nth-child(even) .p-commitment__thumb img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-commitment__item:nth-child(even) .p-commitment__title-ja {
  text-align: right;
}
@media (max-width: 768px) {
  .p-commitment__item:nth-child(even) .p-commitment__title-ja {
    text-align: center;
  }
}
.p-commitment__item:nth-child(odd) {
  grid-template-areas: "thumb body";
}
@media (max-width: 768px) {
  .p-commitment__item:nth-child(odd) {
    grid-template-columns: 1fr;
    grid-template-areas: "thumb" "body";
  }
}
.p-commitment__item:nth-child(odd) .p-commitment__body {
  grid-area: body;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .p-commitment__item:nth-child(odd) .p-commitment__body {
    padding-left: unset;
  }
}
.p-commitment__item:nth-child(odd) .p-commitment__thumb {
  grid-area: thumb;
}
@media (max-width: 768px) {
  .p-commitment__item:nth-child(odd) .p-commitment__title-ja {
    text-align: center;
  }
}
.p-commitment__item .p-commitment__body {
  width: 100%;
  padding-bottom: 20px;
  container-type: inline-size;
}
@media (max-width: 768px) {
  .p-commitment__item .p-commitment__body {
    padding-bottom: unset;
  }
}
@container (width >= 0px) {
  .p-commitment__item .p-commitment__title {
    color: var(--c-main);
    font-weight: 500;
  }
  @media (max-width: 768px) {
    .p-commitment__item .p-commitment__title {
      margin-top: 20px;
      text-align: center;
    }
  }
  .p-commitment__item .p-commitment__title-en {
    font-size: clamp(1rem, 0.8833333333rem + 0.6666666667cqi, 1.125rem);
  }
  @media (max-width: 768px) {
    .p-commitment__item .p-commitment__title-en {
      text-align: center;
    }
  }
  .p-commitment__item .p-commitment__title-number {
    margin-block: clamp(0.625rem, 0.4160714286rem + 0.9523809524vw, 1.25rem);
    padding-inline: 10px;
    display: inline-block;
    font-size: clamp(2.1875rem, 1.6041666667rem + 3.3333333333cqi, 2.8125rem);
    border-top: 1px solid var(--c-main);
    border-bottom: 1px solid var(--c-main);
  }
  @media (max-width: 768px) {
    .p-commitment__item .p-commitment__title-number {
      display: block;
      width: 100%;
    }
  }
  .p-commitment__item .p-commitment__title-ja {
    font-size: clamp(1.25rem, 0.9583333333rem + 1.6666666667cqi, 1.5625rem);
    word-break: keep-all;
  }
}
.p-commitment__item .p-commitment__text {
  margin-top: 20px;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
  text-align: justify;
  line-break: strict;
}

.p-commitment__thumb {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--c-gray2);
}
@media (max-width: 768px) {
  .p-commitment__thumb {
    padding-top: unset;
  }
}
.p-commitment__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-commitment__declaration {
  margin-top: 20px;
  font-size: clamp(1.125rem, 0.97875rem + 0.6666666667vw, 1.5625rem);
  text-align: center;
  font-weight: 500;
  color: var(--c-main);
  word-break: keep-all;
}

/*----------------------------------------
  p-review (Googleの口コミ)
----------------------------------------*/
.p-review {
  background: var(--c-background);
}

@media (max-width: 1000px) {
  .p-review__inner {
    max-width: 640px;
  }
}

/* Googleの口コミ
----------------------------------------*/
.google__discription {
  margin-top: 20px;
  font-size: clamp(0.9375rem, 0.8748214286rem + 0.2857142857vw, 1.125rem);
  text-align: center;
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.google__sougou {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.google__sougou-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .google__sougou-content {
    flex-direction: column;
  }
}

.google__sougou-review {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  font-weight: 500;
}

.google__sougou-star {
  width: 118px;
  height: 25px;
  overflow: hidden;
}
.google__sougou-star img {
  width: 135px;
  height: 100%;
}

.google__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 1000px) {
  .google__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.google__item {
  padding: 20px;
  background: var(--c-white);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 20px;
  justify-items: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.google__thumb {
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.google__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.google__review {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.google__name {
  font-size: clamp(1.125rem, 1.0205357143rem + 0.4761904762vw, 1.4375rem);
  font-weight: 500;
}

.google__star {
  width: 108px;
  height: 20px;
  overflow: hidden;
}
.google__star._star1 {
  width: 108px;
}
.google__star._star2 {
  width: 108px;
}
.google__star._star3 {
  width: 108px;
}
.google__star._star4 {
  width: 108px;
}
.google__star img {
  width: 108px;
  height: 100%;
}

.google__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.5;
  text-align: justify;
  line-break: strict;
}

.google__logo {
  width: 80px;
  aspect-ratio: 1/1;
}
.google__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.google__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 50px;
}

/*----------------------------------------
  p-philosophy (製造者と理念)
----------------------------------------*/
.p-philosophy {
  overflow-x: clip;
}

/*----------------------------------------
  p-product (おすすめ商品たち)
----------------------------------------*/
.p-product {
  background: var(--c-background);
}

.products__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.products__item {
  padding-block: clamp(3.125rem, 2.4982142857rem + 2.8571428571vw, 5rem);
  padding-inline: clamp(1.25rem, 0.6232142857rem + 2.8571428571vw, 3.125rem);
  background: var(--c-white);
}

.p-product__tag {
  padding: 10px 20px;
  display: inline-block;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 500;
  color: var(--c-white);
  background: var(--c-main);
}

.p-product__catch {
  margin-top: 20px;
  font-size: clamp(1rem, 0.9164285714rem + 0.380952381vw, 1.25rem);
  font-weight: 500;
}
.p-product__catch span {
  display: block;
}

.p-product__title {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.p-product__title .p-product__title-main {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 500;
  word-break: keep-all;
}
.p-product__title .p-product__title-sub {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 500;
}

.p-product__content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .p-product__content {
    grid-template-columns: 1fr;
  }
}

.p-product__thumb {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.p-product__thumb img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-product__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
  text-align: justify;
  line-break: strict;
}

/*----------------------------------------
  p-instagram
----------------------------------------*/
.p-instagram__inner {
  max-width: 840px;
}
.p-instagram__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.p-instagram__logo {
  aspect-ratio: 1/1;
  width: clamp(3.125rem, 2.8116071429rem + 1.4285714286vw, 4.0625rem);
  overflow: hidden;
}
.p-instagram__logo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-instagram__title {
  font-size: clamp(1.5625rem, 1.2491071429rem + 1.4285714286vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
}

.p-instagram__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  font-weight: 500;
  word-break: keep-all;
  text-align: center;
}

.p-instagram__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .p-instagram__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-instagram__item {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.p-instagram__item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-instagram__btn {
  margin-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  margin-inline: auto;
}

.p-instagram__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.3125rem, 0.2080357143rem + 0.4761904762vw, 0.625rem);
}

.p-instagram__body-title {
  font-size: clamp(1.0625rem, 0.8953571429rem + 0.7619047619vw, 1.5625rem);
  font-weight: 500;
  color: var(--c-main);
  word-break: keep-all;
  transition: color var(--hover-transition);
}

.p-instagram__body-text {
  font-size: clamp(0.875rem, 0.7914285714rem + 0.380952381vw, 1.125rem);
  font-weight: 500;
  word-break: keep-all;
}

.p-instagram__thumb {
  aspect-ratio: 441/276;
  width: clamp(5rem, 3.4790348101rem + 3.164556962vw, 6.25rem);
  overflow: hidden;
}
.p-instagram__thumb img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter var(--hover-transition);
}

/* ボタンホバー時の子要素変化 */
@media (any-hover: hover) {
  .c-btn_instagram:hover .p-instagram__body-title {
    color: var(--c-white);
  }
  .c-btn_instagram:hover .p-instagram__thumb img {
    filter: brightness(0) invert(1); /* 白に変換 */
  }
}
/*----------------------------------------
  contact
----------------------------------------*/
.p-contact {
  padding-block: clamp(1.25rem, 0.6232142857rem + 2.8571428571vw, 3.125rem);
}

.p-contact__inner {
  background: var(--c-background);
  padding-block: clamp(2.5rem, 1.6642857143rem + 3.8095238095vw, 5rem);
}

.form__wrap {
  max-width: 560px;
  margin: 0 auto;
}

.p-contact__title {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: bold;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 20px;
}

.p-contact__text {
  font-size: 16px;
  text-align: center;
  color: var(--c-text);
  word-break: keep-all;
}

/* form */
.form__wrap {
  margin-top: 50px;
}

.form__table {
  width: 100%;
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.form__label {
  font-size: 18px;
  font-weight: normal;
  color: var(--c-text);
}

.form__label .required {
  font-size: 14px;
  font-weight: normal;
  margin-left: 10px;
  background: var(--c-accent1);
  padding: 2px 5px;
  border-radius: 2px;
  color: var(--c-white);
}

.form__button {
  text-align: center;
  margin-top: 50px;
}

.form__privacy-link {
  margin-top: 10px;
}
.form__privacy-link a {
  color: var(--c-text);
  font-size: 16px;
  text-decoration: underline;
  display: inline-block;
}

.form__privacy {
  margin-top: 20px;
}

.form__privacy-text {
  margin-top: 20px;
  color: var(--c-text);
  font-size: 16px;
}

/*----------------------------------------
  p-privacy
----------------------------------------*/
.p-privacy {
  padding-block: 50px;
}

.p-privacy__inner {
  padding-block: 50px;
  background: var(--c-background);
}

.p-privacy__title {
  text-align: center;
  margin-top: 50px;
  font-size: 24px;
}

.p-privacy__list {
  padding-top: 30px;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 20px;
}

.p-privacy__item {
  margin-bottom: 40px;
}

/*----------------------------------------
  p-thanks
----------------------------------------*/
.p-thanks__inner {
  padding-block: 200px;
  padding-inline: 20px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.p-thanks__title {
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  line-height: 1.5;
  word-break: keep-all;
}

.p-thanks__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.5;
  text-wrap: balance;
  word-break: auto-phrase;
}

/*----------------------------------------
  p-lineup
----------------------------------------*/
.p-lineup {
  padding: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  background: var(--c-lineup-bg);
}

.p-lineup__en {
  font-size: clamp(1.125rem, 0.97875rem + 0.6666666667vw, 1.5625rem);
  color: var(--c-main);
  position: relative;
  line-height: 1;
}
.p-lineup__en::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c-main);
  z-index: 1;
}
.p-lineup__en span {
  display: inline-block;
  background: var(--c-lineup-bg);
  position: relative;
  z-index: 2;
  margin-left: 100px;
  padding-inline: 20px;
}

.p-lineup__ja-wrapper {
  margin-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
}

.p-lineup__ja {
  display: inline-block;
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  background: var(--c-white);
  color: var(--c-main);
  border: 2px solid var(--c-main);
  padding: 10px 20px;
  width: min(100%, 300px);
  text-align: center;
}

.p-lineup__list {
  margin-top: clamp(1.25rem, 0.6232142857rem + 2.8571428571vw, 3.125rem);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(0rem, -0.7604825949rem + 1.582278481vw, 0.625rem);
}

.p-lineup__link {
  width: 100%;
}

.p-lineup__item-inner {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: clamp(6.25rem, -1.3548259494rem + 15.8227848101vw, 12.5rem);
}
.p-lineup__item-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 93%;
  height: 1px;
  border-bottom: 1px dashed var(--c-main);
  z-index: 1;
}
.p-lineup__item-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 2em;
  aspect-ratio: 1/1;
  background: var(--c-main);
  clip-path: polygon(100% 10%, 0 10%, 50% 100%);
}

.p-lineup__label {
  display: inline-block;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  color: var(--c-main);
  padding: 20px 20px 20px 0;
  border-right: 1px solid var(--c-main);
  background: var(--c-lineup-bg);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.p-lineup__title {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  background: var(--c-lineup-bg);
  position: relative;
  z-index: 2;
}

.p-lineup__title-main {
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  font-weight: 500;
  word-break: keep-all;
}

.p-lineup__title-sub {
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  font-weight: 500;
}

@media (max-width: 768px) {
  .p-lineup {
    padding-inline: unset;
  }
  .p-lineup__en {
    text-align: center;
  }
  .p-lineup__en span {
    margin-left: unset;
  }
  .p-lineup__ja-wrapper {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .p-lineup__list {
    width: 100%;
  }
  .p-lineup__item-inner {
    flex-direction: column;
    align-items: center;
    padding-right: unset;
  }
  .p-lineup__item-inner::before {
    border-bottom: none;
  }
  .p-lineup__item-inner::after {
    background: transparent;
  }
  .p-lineup__label {
    display: block;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--c-main);
    padding-bottom: 10px;
    text-align: center;
    padding: 20px 0;
  }
  .p-lineup__title {
    padding: 20px 0;
    gap: unset;
    align-items: center;
    text-align: center;
  }
}
/*----------------------------------------
  p-recommend
----------------------------------------*/
.p-recommend {
  padding-bottom: unset;
}

.p-recommend__wrapper {
  padding-block: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  position: relative;
}
.p-recommend__wrapper:nth-child(even) {
  background: var(--c-background);
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
}
.p-recommend__wrapper:nth-child(even) .p-recommend__eat-item {
  background: var(--c-eat-gradient-reverse);
}

.p-recommend__item-wrapper {
  margin-top: 30px;
  padding-block: clamp(1.25rem, -3.3128955696rem + 9.4936708861vw, 5rem);
  padding-inline: clamp(1.25rem, 0.562195122rem + 2.9268292683vw, 3.125rem);
  background: var(--c-white);
}

/* item
----------------------------------------*/
.item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(0.625rem, -2.4169303797rem + 6.3291139241vw, 3.125rem);
}
@media (max-width: 768px) {
  .item {
    grid-template-columns: 1fr;
  }
}

.item__thumb {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.item__thumb img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.item__body {
  margin-block: 20px;
  padding-block: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  border-top: 1px dashed var(--c-main);
  border-bottom: 1px dashed var(--c-main);
  height: -moz-fit-content;
  height: fit-content;
  container-type: inline-size;
}

@container (width >= 0px) {
  .item__title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .item__title .item__title-main {
    font-size: clamp(1rem, 0.7894736842rem + 1.4035087719cqi, 1.25rem);
    font-weight: 500;
    text-align: center;
    word-break: keep-all;
  }
  .item__title .item__title-sub {
    font-size: clamp(1rem, 0.7894736842rem + 1.4035087719cqi, 1.25rem);
    font-weight: 500;
    text-align: center;
    word-break: keep-all;
  }
  .item__catch {
    font-size: clamp(1rem, 0.8947368421rem + 0.701754386cqi, 1.125rem);
    font-weight: 500;
    text-align: center;
  }
}
.item__text {
  margin-top: clamp(0rem, -3.8024129747rem + 7.9113924051vw, 3.125rem);
  max-width: 800px;
  margin-inline: auto;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
  text-align: justify;
  line-break: strict;
}

/* eat
----------------------------------------*/
.p-recommend__eat {
  margin-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
}

.p-recommend__eat-list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-recommend__eat-list .p-recommend__eat-item {
  padding: 30px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  background: var(--c-eat-gradient);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .p-recommend__eat-list .p-recommend__eat-item {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.p-recommend__eat-num {
  font-size: clamp(1.5625rem, 1.2491071429rem + 1.4285714286vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--c-main);
  text-align: center;
}
.p-recommend__eat-num span {
  display: inline-block;
}

.p-recommend__eat-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-recommend__eat-title {
  font-size: clamp(1.125rem, 0.97875rem + 0.6666666667vw, 1.5625rem);
  font-weight: 500;
  color: var(--c-main);
}
@media (max-width: 768px) {
  .p-recommend__eat-title {
    text-align: center;
  }
}

.p-recommend__eat-text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.5;
  text-align: justify;
  line-break: strict;
}

/* health
----------------------------------------*/
.p-recommend__health {
  margin-top: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
}

.p-recommend__health-list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-recommend__health-list {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
}

.p-recommend__health-item {
  padding: 20px;
  width: calc((100% - 40px) / 3);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background: var(--c-white);
}
@media (max-width: 768px) {
  .p-recommend__health-item {
    width: 100%;
  }
}

.p-recommend__health-title {
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
  font-weight: 500;
  color: var(--c-main);
  text-align: center;
}
.p-recommend__health-sub-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-recommend__health-sub-item {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  line-height: 1.5;
  padding-left: 1em;
  position: relative;
}
.p-recommend__health-sub-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.5em;
  aspect-ratio: 1/1;
  background: var(--c-main);
  border-radius: 50%;
}

/* summary
----------------------------------------*/
.p-recommend__summary {
  margin-top: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
}

.p-recommend__summary-content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.625rem, 0.4160714286rem + 0.9523809524vw, 1.25rem);
}
@media (max-width: 768px) {
  .p-recommend__summary-content {
    grid-template-columns: 1fr;
  }
}

.p-recommend__summary-thumb {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.p-recommend__summary-thumb img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-recommend__summary-body {
  padding-inline: 20px;
}
@media (max-width: 768px) {
  .p-recommend__summary-body {
    padding-inline: unset;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-recommend__summary-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-recommend__summary-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}

.p-recommend__summary-title {
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  font-weight: 500;
  position: relative;
}
.p-recommend__summary-title::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0.4em;
  width: 0.5em;
  aspect-ratio: 1/1;
  background: var(--c-main);
  border-radius: 50%;
}

.p-recommend__summary-text {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  line-height: 1.5;
  text-align: justify;
  line-break: strict;
}

/* buy
----------------------------------------*/
.p-recommend__buy {
  margin-top: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
}

.p-recommend__buy-content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 70% 1fr;
  align-items: center;
}
@media (max-width: 768px) {
  .p-recommend__buy-content {
    grid-template-columns: 1fr;
  }
}

.p-recommend__buy-thumb {
  margin-right: -100px;
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.p-recommend__buy-thumb img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-recommend__buy-body {
  margin-left: -50%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--c-gray2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  height: -moz-fit-content;
  height: fit-content;
  container-type: inline-size;
}
@media (max-width: 768px) {
  .p-recommend__buy-body {
    margin-left: 0;
    padding: 20px 10px;
  }
}

@container (width >= 0px) {
  .p-recommend__buy-catch {
    font-size: clamp(1rem, 0.8534090909rem + 0.9090909091cqi, 1.125rem);
    font-weight: 500;
    text-wrap: balance;
    word-break: auto-phrase;
    text-align: center;
  }
  .p-recommend__buy-catch span {
    display: block;
  }
  .p-recommend__buy-title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-recommend__buy-title .p-recommend__buy-title-main {
    font-size: clamp(1rem, 0.7068181818rem + 1.8181818182cqi, 1.25rem);
    font-weight: 500;
    text-align: center;
    word-break: keep-all;
  }
  .p-recommend__buy-title .p-recommend__buy-title-sub {
    font-size: clamp(1.25rem, 0.8835227273rem + 2.2727272727cqi, 1.5625rem);
    font-weight: 500;
    text-align: center;
  }
  .p-recommend__buy-text {
    font-size: clamp(1rem, 1rem + 0cqi, 1rem);
  }
}
/*----------------------------------------
  p-kodawari
----------------------------------------*/
.p-kodawari {
  margin-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
}

.p-kodawari__inner {
  max-width: 1040px;
}
@media (max-width: 768px) {
  .p-kodawari__inner {
    max-width: 640px;
  }
}

/* raw
----------------------------------------*/
.p-kodawari__raw {
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  background: var(--c-background);
}

.raw {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.raw__num {
  margin-top: clamp(1.25rem, 0.6232142857rem + 2.8571428571vw, 3.125rem);
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.raw__num::before, .raw__num::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background: var(--c-text);
}

.raw__title-group {
  margin-top: clamp(1.25rem, 0.6232142857rem + 2.8571428571vw, 3.125rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .raw__title-group {
    grid-template-columns: 1fr;
  }
}

.raw__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.raw__title-sub {
  font-size: clamp(1.125rem, 0.97875rem + 0.6666666667vw, 1.5625rem);
  font-weight: 500;
  color: var(--c-text);
}

.raw__title-main {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 500;
  color: var(--c-text);
}

.raw__title-en {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  color: var(--c-gray1);
  text-align: center;
}

.raw__content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -1.0314477848rem + 4.746835443vw, 3.125rem);
  align-items: center;
}
@media (max-width: 768px) {
  .raw__content {
    grid-template-columns: 1fr;
  }
}

.raw__thumb {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.raw__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.raw__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
  text-align: justify;
  line-break: strict;
}

/* method
----------------------------------------*/
.p-kodawari__method-list {
  margin-top: 50px;
}

.method {
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
}

.method__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 0.4895174051rem + 1.582278481vw, 1.875rem);
}
@media (max-width: 768px) {
  .method__item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (min-width: 769px) {
  .method__item:nth-child(even) .method__body {
    order: -1;
  }
}

.method__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  container-type: inline-size;
}

@container (width >= 0px) {
  .method__img {
    aspect-ratio: 4/3;
    width: 50%;
    overflow: hidden;
    border: 1px solid var(--c-gray2);
  }
  @media (max-width: 768px) {
    .method__img {
      width: 100%;
    }
  }
  .method__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .method__title {
    font-size: clamp(1.25rem, 0.9631147541rem + 1.6393442623cqi, 1.5625rem);
    font-weight: 500;
    text-align: center;
  }
  .method__text {
    font-size: clamp(1rem, 0.8852459016rem + 0.6557377049cqi, 1.125rem);
    line-height: 1.7;
    text-align: justify;
    line-break: strict;
  }
}
.method__thumb {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--c-gray2);
}
@media (max-width: 768px) {
  .method__thumb {
    aspect-ratio: 4/3;
  }
}
.method__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* process
----------------------------------------*/
.p-kodawari__process-list {
  margin-top: 50px;
}

.process {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, -0.4214285714rem + 7.619047619vw, 6.25rem);
  position: relative;
}
.process::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 1px;
  height: 100%;
  background: var(--c-main);
}
@media (max-width: 768px) {
  .process::before {
    display: none;
  }
}

.process__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.1875rem, 1.2473214286rem + 4.2857142857vw, 5rem);
  position: relative;
}
@media (max-width: 768px) {
  .process__item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.process__body {
  position: relative;
  container-type: inline-size;
}

@container (width >= 0px) {
  @media (max-width: 768px) {
    .process__title-group {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
  .process__num {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
    aspect-ratio: 1/1;
    background: var(--c-main);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 102.5%;
  }
  @media (max-width: 768px) {
    .process__num {
      position: static;
    }
  }
  .process__num span {
    display: block;
    font-size: clamp(1.125rem, 0.8742857143rem + 1.1428571429vw, 1.875rem);
    color: var(--c-white);
  }
  .process__title {
    padding-block: 10px;
    padding-inline: 20px;
    font-size: clamp(1.25rem, 0.8854166667rem + 2.0833333333cqi, 1.5625rem);
    font-weight: 500;
    color: var(--c-main);
    border-bottom: 1px dashed var(--c-main);
  }
  @media (max-width: 768px) {
    .process__title {
      padding-inline: 10px;
      text-align: center;
    }
  }
  .process__text {
    padding: clamp(1.25rem, -1.0314477848rem + 4.746835443vw, 3.125rem) 20px;
    font-size: clamp(1rem, 0.8541666667rem + 0.8333333333cqi, 1.125rem);
    line-height: 1.7;
    text-align: justify;
    line-break: strict;
  }
}
.process__thumb {
  margin-top: clamp(2.1875rem, 1.2473214286rem + 4.2857142857vw, 5rem);
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .process__thumb {
    margin-top: unset;
  }
}
.process__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* point
----------------------------------------*/
.point1 {
  margin-top: 50px;
  display: grid;
  gap: 12px;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "img1 img2 img3" "img1 img4 img5";
}
@media (max-width: 768px) {
  .point1 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "img1 img1 " "img2 img3" "img4 img5";
  }
}

.poin1__item {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.poin1__item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.poin1__item:nth-child(1) {
  grid-area: img1;
}
.poin1__item:nth-child(2) {
  grid-area: img2;
}
.poin1__item:nth-child(3) {
  grid-area: img3;
}
.poin1__item:nth-child(4) {
  grid-area: img4;
}
.poin1__item:nth-child(5) {
  grid-area: img5;
}

.point2 {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .point2 {
    grid-template-columns: 1fr;
  }
}

.poin2__item {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.poin2__item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-kodawari__point-title {
  margin-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 500;
  text-align: center;
}

.p-kodawari__point-text {
  max-width: 840px;
  margin-inline: auto;
  margin-top: 30px;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
  text-align: justify;
  line-break: strict;
}

/*----------------------------------------
  p-company
----------------------------------------*/
.p-company__inner .c-producer {
  margin-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
}

.p-company__content {
  margin-top: 50px;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  padding-block: clamp(2.5rem, 1.6642857143rem + 3.8095238095vw, 5rem);
  background: var(--c-background);
}

/* thought
----------------------------------------*/
.p-company__thought.thought .thought__content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (max-width: 768px) {
  .p-company__thought.thought .thought__content {
    grid-template-columns: 1fr;
  }
}
.p-company__thought.thought .thought__thumb {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-company__thought.thought .thought__thumb {
    aspect-ratio: 4/3;
  }
}
.p-company__thought.thought .thought__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.p-company__thought.thought .thought__body {
  padding-block: 30px;
}
.p-company__thought.thought .thought__title {
  margin-left: -16%;
  margin-bottom: 30px;
  padding: 15px;
  display: inline-block;
  text-align: center;
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  font-weight: 500;
  background: var(--c-main);
  color: var(--c-white);
  letter-spacing: 0.1em;
  width: 116%;
}
@media (max-width: 768px) {
  .p-company__thought.thought .thought__title {
    width: 100%;
    margin-left: 0;
  }
}
.p-company__thought.thought .thought__text {
  padding-inline: 30px;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
  text-align: justify;
  line-break: strict;
}
@media (max-width: 768px) {
  .p-company__thought.thought .thought__text {
    padding-inline: 0;
  }
}
.p-company__thought.thought .thought__text + .thought__text {
  margin-top: 1em;
}

/* philosophy
----------------------------------------*/
.p-company__philosophy {
  position: relative;
  z-index: -1;
}

/* history
----------------------------------------*/
.p-company__history {
  padding-block: clamp(2.5rem, 1.6642857143rem + 3.8095238095vw, 5rem);
}

.history__list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .history__list {
    width: 100%;
    border-top: 1px solid var(--c-gray2);
  }
}

.history__item {
  display: grid;
  grid-template-columns: clamp(5rem, 3.4790348101rem + 3.164556962vw, 6.25rem) 1fr;
  align-items: center;
}
@media (max-width: 768px) {
  .history__item {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.history__item .history__year {
  padding-block: 20px;
  height: 100%;
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .history__item .history__year {
    color: var(--c-main);
  }
}
.history__item .history__year::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 1px;
  height: 100%;
  background: var(--c-gray2);
}
@media (max-width: 768px) {
  .history__item .history__year::before {
    display: none;
  }
}
.history__item .history__year::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 9px);
  translate: 0 -50%;
  width: 20px;
  aspect-ratio: 1/1;
  background: var(--c-gray2);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .history__item .history__year::after {
    display: none;
  }
}
.history__item .history__year span {
  display: none;
}
@media (max-width: 768px) {
  .history__item .history__year span {
    display: block;
  }
}
.history__item:first-child .history__year::before {
  height: 50%;
  top: 50%;
}

.history__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
@media (max-width: 768px) {
  .history__body {
    gap: 5px;
    border-bottom: 1px solid var(--c-gray2);
    width: 100%;
    padding: 0 0 20px 0;
  }
}
.history__body::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 200px;
  height: 1px;
  background: var(--c-gray2);
}
@media (max-width: 768px) {
  .history__body::before {
    display: none;
  }
}

.history__text {
  padding-left: clamp(3.125rem, -8.2822389241rem + 23.7341772152vw, 12.5rem);
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
}
@media (max-width: 768px) {
  .history__text {
    padding-left: unset;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

/* commitment
----------------------------------------*/
.p-company__commitment {
  padding-block: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
}

.commitment__inner {
  max-width: 840px;
}

.commitment__thumb {
  margin-top: 50px;
  aspect-ratio: 3/2;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .commitment__thumb {
    aspect-ratio: 3/2;
  }
}
.commitment__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.commitment__content {
  margin-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  max-width: 840px;
  margin-inline: auto;
}

.commitment__title {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 500;
  text-align: center;
}

.commitment__text {
  margin-top: 30px;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
  text-align: justify;
  line-break: strict;
}

/*----------------------------------------
  p-products
----------------------------------------*/
.p-products__inner {
  max-width: 1040px;
}
@media (max-width: 1000px) {
  .p-products__inner {
    max-width: 640px;
  }
}

.p-products__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 20px;
}
@media (max-width: 1000px) {
  .p-products__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .p-products__list {
    grid-template-columns: 1fr;
  }
}

.p-products__item {
  padding-bottom: 20px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 20px;
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.p-products__thumb {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.p-products__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.p-products__title {
  font-weight: 500;
  text-align: center;
  padding-inline: 20px;
}

.p-products__title-main {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  word-break: keep-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.p-products__title-sub {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
}
.p-products__title-sub span {
  word-break: keep-all;
}

.p-products__text {
  font-size: clamp(0.875rem, 0.8332142857rem + 0.1904761905vw, 1rem);
  line-height: 1.7;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: justify;
  line-break: strict;
}

/*----------------------------------------
  商品の絞り込みのタブ
----------------------------------------*/
.p-products__tabs {
  margin-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-products__tabs {
    gap: 8px;
  }
}

.p-products__tab {
  padding: 10px 20px;
  background: var(--c-background);
  color: var(--c-text);
  font-size: clamp(1rem, 0.9164285714rem + 0.380952381vw, 1.25rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .p-products__tab {
    padding: 8px 16px;
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .p-products__tab:hover {
    opacity: 0.7;
  }
}
.p-products__tab.is-active {
  background: var(--c-main);
  color: var(--c-white);
}

/*----------------------------------------
  p-parallax
----------------------------------------*/
.p-parallax {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../img/main/pixta_126528566_M.jpg) center center/auto auto repeat;
}

/*----------------------------------------
  p-prize
----------------------------------------*/
.p-prize-title__en {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  color: var(--c-main);
  font-weight: 500;
}

.p-prize-title__ja {
  font-family: var(--ff-sans-serif-jp);
  font-size: clamp(1.5625rem, 1.1655357143rem + 1.8095238095vw, 2.75rem);
  font-weight: 500;
}

.p-prize__list {
  margin-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .p-prize__list {
    grid-template-columns: 1fr;
    gap: clamp(1.875rem, 0.8253588517rem + 4.7846889952vw, 3.125rem);
  }
}

.p-prize__item {
  position: relative;
}

.p-prize__thumb {
  width: 100%;
  aspect-ratio: 420/297;
  position: relative;
  z-index: -1;
}
.p-prize__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-prize__text {
  margin-top: 20px;
  font-size: clamp(1.25rem, 0.945806962rem + 0.6329113924vw, 1.5rem);
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .p-prize__text {
    font-size: clamp(1rem, 0.5276614833rem + 2.1531100478vw, 1.5625rem);
  }
}

/*----------------------------------------
  p-certificate（認定証セクション）
----------------------------------------*/
.p-certificate {
  background: var(--c-background);
  position: relative;
  overflow: hidden;
  /* Section Header */
}
.p-certificate .c-section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 2.0821428571rem + 1.9047619048vw, 3.75rem);
}
.p-certificate .c-section-header__en {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  color: var(--c-main);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.p-certificate .c-section-header__title {
  font-size: clamp(1.5625rem, 1.1655357143rem + 1.8095238095vw, 2.75rem);
  font-weight: 500;
  color: var(--c-text);
  margin-top: 10px;
}
.p-certificate {
  /* Grid */
}
.p-certificate__grid {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(0.625rem, 0.4160714286rem + 0.9523809524vw, 1.25rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 576px) {
  .p-certificate__grid {
    gap: 10px;
  }
}
.p-certificate {
  /* Card */
}
.p-certificate__card {
  position: relative;
  padding: clamp(0.625rem, 0.4160714286rem + 0.9523809524vw, 1.25rem);
  background: transparent;
  border: 1px solid rgba(45, 88, 86, 0.3);
  transition: all 0.4s ease;
  min-height: 110px;
  width: calc((100% - 40px) / 3);
}
@media (max-width: 1200px) {
  .p-certificate__card {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 375px) {
  .p-certificate__card {
    width: 100%;
    min-height: 70px;
  }
}
.p-certificate__card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 25px;
  height: 25px;
  border-top: 2px solid var(--c-main);
  border-left: 2px solid var(--c-main);
  transition: all var(--hover-transition);
}
.p-certificate__card::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 25px;
  height: 25px;
  border-bottom: 2px solid var(--c-main);
  border-right: 2px solid var(--c-main);
  transition: all var(--hover-transition);
}
.p-certificate__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.p-certificate__title {
  font-size: clamp(1rem, 0.8119642857rem + 0.8571428571vw, 1.5625rem);
  font-weight: 500;
  color: var(--c-main);
  letter-spacing: 0.05em;
  text-align: center;
  word-break: keep-all;
}
.p-certificate__subtitle {
  font-size: clamp(0.875rem, 0.7914285714rem + 0.380952381vw, 1.125rem);
  color: var(--c-text);
  text-align: center;
  word-break: keep-all;
}

/*----------------------------------------
  p-media01-classic
----------------------------------------*/
.p-media01-classic {
  background: var(--c-background);
  position: relative;
}

/* Header */
/* Showcase */
.p-media01-classic__showcase {
  margin-top: clamp(3.125rem, 3.125rem + 0vw, 3.125rem);
  max-width: 940px;
  margin-inline: auto;
  padding-inline: clamp(0.625rem, 0.4160714286rem + 0.9523809524vw, 1.25rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-media01-classic__showcase {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .p-media01-classic__showcase {
    max-width: 440px;
  }
}

/* Frame */
.p-media01-classic__frame {
  background: var(--c-white);
  padding: clamp(0.625rem, 0.5205357143rem + 0.4761904762vw, 0.9375rem);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  width: calc((100% - 40px) / 3);
}
@media (max-width: 576px) {
  .p-media01-classic__frame {
    width: calc((100% - 20px) / 2);
  }
}

.p-media01-classic__frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--c-main);
  pointer-events: none;
  opacity: 0.3;
}

.p-media01-classic__corners {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  pointer-events: none;
}

.p-media01-classic__corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border-color: var(--c-main);
  border-style: solid;
  border-width: 0;
}

.p-media01-classic__corner--tl {
  top: 0;
  left: 0;
  border-top-width: 2px;
  border-left-width: 2px;
}

.p-media01-classic__corner--tr {
  top: 0;
  right: 0;
  border-top-width: 2px;
  border-right-width: 2px;
}

.p-media01-classic__corner--bl {
  bottom: 0;
  left: 0;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.p-media01-classic__corner--br {
  bottom: 0;
  right: 0;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.p-media01-classic__content {
  position: relative;
  z-index: 2;
  padding: 10px;
}

.p-media01-classic__image {
  margin: 0 auto 10px;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}

.p-media01-classic__image img,
.p-media01-classic__image video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-media01-classic__title {
  font-size: clamp(0.6875rem, 0.5728658537rem + 0.487804878vw, 1rem);
  font-weight: 500;
  color: var(--c-text);
  text-align: center;
}

.p-media01-classic__text {
  margin-top: 10px;
  font-size: clamp(0.6875rem, 0.6187195122rem + 0.2926829268vw, 0.875rem);
  color: var(--c-text);
  text-align: justify;
}

/* Video */
.p-media01-classic__video {
  margin-top: 30px;
  padding: clamp(0.9375rem, 0.8330357143rem + 0.4761904762vw, 1.25rem);
  max-width: 940px;
  margin-inline: auto;
  width: 100%;
}
@media (max-width: 768px) {
  .p-media01-classic__video {
    max-width: 640px;
  }
}
.p-media01-classic__video video {
  width: 100%;
  height: auto;
}

.p-media01-classic__video-text {
  font-size: clamp(0.75rem, 0.6664285714rem + 0.380952381vw, 1rem);
  font-weight: 500;
  text-align: right;
  color: var(--c-text);
  word-break: keep-all;
}
.p-media01-classic__video-text span {
  white-space: nowrap;
}

/*----------------------------------------
  p-media02 (pattern3)
----------------------------------------*/
.pattern3 {
  background: var(--c-background);
  padding-block: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  padding-inline: 20px;
}

.pattern3 .container {
  max-width: 500px;
  margin: 0 auto;
  margin-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
}

.pattern3 .media-block {
  padding: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  background: var(--c-white);
  border-left: 3px solid var(--c-main);
}

.pattern3 .media-block .title {
  font-size: clamp(1.125rem, 1.0414285714rem + 0.380952381vw, 1.375rem);
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: 10px;
}

.pattern3 .media-block .desc {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  color: var(--c-gray1);
  line-height: 1.5;
}

/*----------------------------------------
  p-awards
----------------------------------------*/
/* ================================================
   Component - Section Header
   セクションヘッダー
================================================ */
.p-awards-header {
  margin-bottom: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
}
.p-awards-header__en {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 0.7075rem + 1.3333333333vw, 1.875rem);
  letter-spacing: 0.2em;
}
.p-awards-header__title {
  font-size: clamp(1.5625rem, 1.2491071429rem + 1.4285714286vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.p-awards-header__line {
  height: 1px;
  background: #ddd;
}

/* ================================================
   Project - Awards Dark (Pattern 1)
   ダーク＆リッチ
================================================ */
.p-awards-dark {
  padding-top: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
  padding-bottom: clamp(1.875rem, 0.3540348101rem + 3.164556962vw, 3.125rem);
  overflow: hidden;
  /* Header */
}
.p-awards-dark .p-awards-header {
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-awards-dark .p-awards-header::before, .p-awards-dark .p-awards-header::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b8975a);
}
.p-awards-dark .p-awards-header::before {
  right: 105%;
}
.p-awards-dark .p-awards-header::after {
  left: 105%;
  background: linear-gradient(90deg, #b8975a, transparent);
}
.p-awards-dark .p-awards-header__en {
  color: #b8975a;
}
.p-awards-dark .p-awards-header__title {
  color: var(--c-text);
}
@media (max-width: 768px) {
  .p-awards-dark .p-awards-header::before, .p-awards-dark .p-awards-header::after {
    display: none;
  }
}
.p-awards-dark {
  /* Grid */
}
.p-awards-dark__grid {
  max-width: clamp(15rem, 12.9107142857rem + 9.5238095238vw, 21.25rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.625rem, 0.4160714286rem + 0.9523809524vw, 1.25rem);
}
.p-awards-dark {
  /* Card */
}
.p-awards-dark__card {
  position: relative;
  padding: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(184, 151, 90, 0.8);
  border-radius: 2px;
}
.p-awards-dark__card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b8975a, transparent);
}
@media (max-width: 768px) {
  .p-awards-dark__card {
    padding: 10px;
  }
}
.p-awards-dark__content {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
.p-awards-dark__year {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5625rem, 1.2491071429rem + 1.4285714286vw, 2.5rem);
  font-weight: 400;
  color: #b8975a;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.8;
}
.p-awards-dark__title {
  font-size: clamp(0.875rem, 0.7496428571rem + 0.5714285714vw, 1.25rem);
  font-weight: 500;
  color: var(--c-text);
  text-align: center;
  line-height: 1.5;
}
.p-awards-dark__text {
  font-size: clamp(0.625rem, 0.4996428571rem + 0.5714285714vw, 1rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

/*----------------------------------------
  helpers
----------------------------------------*/
/*スクリーンリーダーから隠す*/
.u-visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: clip;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/*br*/
@media (min-width: 351px) {
  .under_xx-small {
    display: none;
  }
}

@media (min-width: 376px) {
  .under_x-small {
    display: none;
  }
}

@media (min-width: 577px) {
  .under_small {
    display: none;
  }
}

@media (min-width: 769px) {
  .under_medium {
    display: none;
  }
}

@media (min-width: 1001px) {
  .under_large {
    display: none;
  }
}

@media (min-width: 1201px) {
  .under_x-large {
    display: none;
  }
}

@media (min-width: 1401px) {
  .under_xx-large {
    display: none;
  }
}

@media (max-width: 350px) {
  .over_xx-small {
    display: none;
  }
}

@media (max-width: 375px) {
  .over_x-small {
    display: none;
  }
}

@media (max-width: 576px) {
  .over_small {
    display: none;
  }
}

@media (max-width: 768px) {
  .over_medium {
    display: none;
  }
}

@media (max-width: 1000px) {
  .over_large {
    display: none;
  }
}

@media (max-width: 1200px) {
  .over_x-large {
    display: none;
  }
}

@media (max-width: 1400px) {
  .over_xx-large {
    display: none;
  }
}

/*背景色が黒い時はbodyに.bkをつける*/
.bk .c-section-title__ja {
  color: var(--c-sub);
}
.bk .p-popular__title-main,
.bk .p-popular__title-sub,
.bk .p-popular__text,
.bk .google__discription,
.bk .google__sougou-review,
.bk .google__sougou-note {
  color: var(--c-white);
}
.bk .p-lineup__title {
  color: var(--c-white);
}
.bk .p-recommend__wrapper:nth-child(even) .p-recommend__summary-item,
.bk .p-recommend__wrapper:nth-child(even) .p-recommend__summary-title {
  color: var(--c-white);
}
.bk .p-recommend__wrapper:nth-child(even) .p-recommend__summary-item::before,
.bk .p-recommend__wrapper:nth-child(even) .p-recommend__summary-title::before {
  background: var(--c-white);
}
.bk .p-recommend__wrapper:nth-child(even) .p-recommend__buy-body {
  background: var(--c-white);
}
.bk .thought__text {
  color: var(--c-white);
}/*# sourceMappingURL=style.css.map */