@charset "UTF-8";
/*----------------------------------------
  CSSカスタムプロバティ
----------------------------------------*/
:root {
  /* color */
  --c-white: #ffffff;
  --c-black: #000000;
  --c-text: #222222;
  --c-main: #edb260;
  --c-sub: #729b23;
  --c-accent1: #13345a;
  --c-background: #fbfade;
  --c-gray1: #8f8f8f;
  --c-gray2: #ccc;
  --c-footer-bg: #222222;
  --c-eat-gradient: linear-gradient(90deg, #fff, #fff, #ddd, #ddd, #ddd, #fff, #fff);
  --c-eat-gradient-reverse: linear-gradient(90deg, #ddd, #ddd, #fff, #fff, #fff, #ddd, #ddd);
  /* font-family */
  --ff-noto-serif-jp: "Noto Serif JP", serif;
  --ff-noto-sans-jp: "Kiwi Maru", serif;
  --ff-noto-sans2-jp: "Noto Sans JP", sans-serif;
  /* 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;
}
@media (max-width: 1000px) {
  html {
    scroll-padding-top: 60px;
  }
}

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

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

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

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

.kiwi {
  font-family: var(--ff-noto-sans-jp) !important;
}

.l-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

/*----------------------------------------
  l-header
----------------------------------------*/
.l-header {
  width: 100%;
  height: 100px;
  background: var(--c-white);
  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;
}

.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.25rem, -0.00125rem + 2vw, 1.75rem);
  font-weight: 700;
}

/*----------------------------------------
  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: 4px;
    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 0.3s;
  }
  .l-hamburger .l-hamburger__line::before {
    top: -10px;
  }
  .l-hamburger .l-hamburger__line::after {
    bottom: -10px;
  }
  .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__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1000px) {
  .l-nav__list {
    gap: 25px;
  }
}

.l-nav__item:last-child .l-nav__link {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--c-white);
  background: var(--c-accent1);
  height: 100px;
  padding: 20px;
}
.l-nav__item:last-child .l-nav__link .fa-envelope {
  color: var(--c-white);
  font-size: clamp(2.25rem, 1.624375rem + 1vw, 2.5rem);
}

.l-nav__link {
  font-size: 18px;
  font-weight: 700;
  transition: opacity 0.3s;
}
@media (max-width: 576px) {
  .l-nav__link {
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  .l-nav__link:hover {
    opacity: 0.7;
  }
}

@media (min-width: 1001px) {
  .l-nav__focus-trap {
    visibility: hidden;
  }
}
@media (max-width: 1000px) {
  .l-nav {
    position: fixed;
    top: 0;
    left: -40vw;
    width: 40vw;
    height: 100dvh;
    background: var(--c-white);
    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__list {
    flex-direction: column;
  }
  .l-nav__item:last-child .l-nav__link {
    height: 80px;
    padding: 20px;
  }
  .l-nav__item:last-child .l-nav__link .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: 50vw;
  }
}
/* nav-back */
.l-nav-back {
  background: rgba(0, 0, 0, 0.7);
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-nav-back);
  display: none;
}
.l-nav-back.is-open {
  display: block;
}

/*----------------------------------------
  l-main
----------------------------------------*/
.l-main {
  margin-top: 100px;
}
@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: 400;
}

.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__address p:not(:first-child) {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
}

.l-footer__title {
  font-size: clamp(1.875rem, 1.6660714286rem + 0.9523809524vw, 2.5rem);
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .l-footer__title {
    margin-inline: auto;
  }
}

.l-footer__info-item {
  display: grid;
  grid-template-columns: auto 1fr;
}
.l-footer__info-item dt,
.l-footer__info-item dd {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
}
.l-footer__info-item dt {
  position: relative;
}
.l-footer__info-item dt::after {
  content: "：";
  display: inline-block;
}

.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);
  text-align: left;
  text-wrap: balance;
  word-break: auto-phrase;
}

.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);
  text-align: left;
}

.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_feedback, .c-btn_why {
  padding: 10px 20px;
  font-size: clamp(1.125rem, 0.1865625rem + 1.5vw, 1.5rem);
  font-weight: 400;
  color: var(--c-main);
  background: var(--c-white);
  border: 2px solid var(--c-main);
}

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

.c-btn_solid, .c-btn_products-buy, .c-btn_popular-buy,
.c-btn_recommend-buy, .c-btn_page-head,
.c-btn_producer {
  padding: 12px 20px;
  font-size: clamp(1.125rem, 0.1865625rem + 1.5vw, 1.5rem);
  font-weight: 400;
  color: var(--c-white);
  background: var(--c-main);
}

.c-btn_instagram {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--c-main);
}

.c-btn_submit {
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 400;
  color: var(--c-white);
  background: var(--c-main);
  width: min(200px, 100%);
}

/* 個別のボタン（既存のクラス名との互換性のため）
----------------------------------------*/
.c-btn_why {
  font-size: clamp(1.125rem, 0.820806962rem + 0.6329113924vw, 1.375rem);
}

.c-btn_google,
.c-btn_feedback {
  font-size: clamp(1.25rem, 0.46796875rem + 1.25vw, 1.5625rem);
}

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

.c-btn_products {
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  word-break: keep-all;
}

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

.c-btn_products-buy {
  width: 100%;
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
}

/*----------------------------------------
  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 #ccc;
  font-size: 16px;
}

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

/*フォーカス時*/
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: #ccc;
}
::placeholder {
  color: #ccc;
}

/*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;
  /* Splideの矢印スタイル */
  /* 左矢印 */
  /* 右矢印 */
}
@media (max-width: 1000px) {
  .p-fv__slider {
    padding-block: 30px;
  }
}
.p-fv__slider .splide__arrow {
  background: transparent;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s;
}
@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 .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 .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: 0;
}
.p-fv__slider .splide__pagination .splide__pagination__page {
  border-radius: unset;
  height: 5px;
  width: 5vw;
}
.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.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  position: relative;
}
.c-to-top a::before {
  content: "";
  position: absolute;
  bottom: 80%;
  left: 50%;
  translate: -50% 0;
  width: 30px;
  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);
}

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

.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;
}
.c-furusato__title::after {
  right: -1em;
  rotate: 35deg;
}

.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: 768px) {
  .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 {
  padding-inline: 20px;
  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.0410714286rem + 0.9523809524vw, 1.875rem);
  color: var(--c-main);
  font-weight: 700;
}

.c-section-title__ja {
  font-size: clamp(1.5625rem, 1.1655357143rem + 1.8095238095vw, 2.75rem);
  font-weight: 700;
}

/*----------------------------------------
  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__fv._recommend::before {
  background: url(../img/main/s5.webp) center center/cover no-repeat;
  filter: brightness(0.7) blur(2px);
}
.c-page-head__fv._products::before {
  background: url(../img/main/s13.jpg) center center/cover no-repeat;
  filter: brightness(0.7) blur(2px);
}
.c-page-head__fv._kodawari::before {
  background: url(../img/main/s7.webp) center center/cover no-repeat;
  filter: brightness(0.9) blur(2px);
}
.c-page-head__fv._company::before {
  background: url(../img/main/shop.webp) center center/cover no-repeat;
  filter: brightness(0.7) blur(2px);
}

.c-page-head__inner {
  height: 100%;
}
.c-page-head__inner._narrow {
  max-width: 840px;
}
@media (max-width: 768px) {
  .c-page-head__inner._narrow {
    max-width: 640px;
  }
}

.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.875rem, 1.5616071429rem + 1.4285714286vw, 2.8125rem);
  font-weight: 700;
  text-wrap: balance;
  word-break: auto-phrase;
  text-align: center;
}

.c-page-head__text {
  font-size: clamp(1rem, 0.9164285714rem + 0.380952381vw, 1.25rem);
  font-weight: 400;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
  line-height: 1.5;
}

.c-page-head__discription {
  margin-block: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem) 30px;
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  font-weight: 400;
  line-break: anywhere;
  line-height: 1.5;
}

.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-inline: auto;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.c-pr__title {
  font-size: clamp(1.875rem, 1.6660714286rem + 0.9523809524vw, 2.5rem);
  font-weight: 700;
  position: absolute;
  top: -0.7em;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-white);
  color: var(--c-main);
  text-wrap: 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;
  text-align: left;
}
.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 {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
}

@media (max-width: 768px) {
  .c-about__inner {
    max-width: 640px;
  }
}

.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.0314477848rem + 4.746835443vw, 3.125rem);
}

.c-about__title {
  font-size: clamp(1.5625rem, 1.2491071429rem + 1.4285714286vw, 2.5rem);
  font-weight: 700;
}
@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;
}

/* 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: 25% 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(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  padding: 20px;
  margin: -1px -1px 0 0;
}
.c-about__table th {
  border-bottom: 2px solid var(--c-gray1);
  text-align: 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-break: anywhere;
}
@media (max-width: 576px) {
  .c-about__table td {
    border: unset;
    margin-inline: auto;
  }
}

/*----------------------------------------
  c-belief
----------------------------------------*/
.c-belief .c-belief__thumb {
  width: 100%;
  aspect-ratio: 36/11;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-belief .c-belief__thumb {
    aspect-ratio: 16/9;
  }
}
.c-belief .c-belief__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .c-belief .c-belief__inner {
    max-width: 640px;
  }
}
.c-belief .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 #ccc;
}
@media (max-width: 768px) {
  .c-belief .c-belief__content {
    margin-top: -80px;
    padding: 20px;
    grid-template-columns: 1fr;
  }
}
.c-belief .c-belief__title {
  font-size: clamp(1.5625rem, 1.3535714286rem + 0.9523809524vw, 2.1875rem);
  font-weight: 700;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 0.4895174051rem + 1.582278481vw, 1.875rem);
  align-items: center;
}
.c-belief .c-belief__title::after {
  content: "";
  display: inline-block;
  width: 90%;
  height: 1px;
  background: #212121;
}
.c-belief .c-belief__catch {
  margin-top: clamp(1.25rem, 0.8321428571rem + 1.9047619048vw, 2.5rem);
  font-size: clamp(1.5625rem, 1.1446428571rem + 1.9047619048vw, 2.8125rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.c-belief .c-belief__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
}

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

.c-producer__thumb {
  width: 100%;
  overflow: hidden;
}
.p-philosophy__producer .c-producer__thumb {
  aspect-ratio: 1/1.1;
}
@media (max-width: 768px) {
  .p-philosophy__producer .c-producer__thumb {
    aspect-ratio: 4/3;
  }
}
.p-philosophy__producer .c-producer__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.p-company__producer .c-producer__thumb {
  aspect-ratio: 4/3;
}
.p-company__producer .c-producer__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.c-producer__title {
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  font-weight: 700;
}

.c-producer__name {
  margin-top: 10px;
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.c-producer__name-ja {
  font-size: clamp(1.5625rem, 1.2491071429rem + 1.4285714286vw, 2.5rem);
  font-weight: 700;
  text-align: left;
}

.c-producer__name-en {
  font-size: clamp(1rem, 0.8119642857rem + 0.8571428571vw, 1.5625rem);
  font-weight: 700;
  text-align: left;
}

.c-producer__text {
  margin-top: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-size: clamp(1rem, 0.9164285714rem + 0.380952381vw, 1.25rem);
  line-height: 1.7;
}

.c-producer__btn {
  margin-top: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

/*----------------------------------------
  p-fv
----------------------------------------*/
.p-fv {
  background: url(../img/main/s9.webp) center center/cover no-repeat;
  position: relative;
  padding-block: 50px;
}
@media (max-width: 768px) {
  .p-fv {
    padding-block: 30px;
  }
}
.p-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: brightness(0.7) blur(2px);
          backdrop-filter: brightness(0.7) blur(2px);
  z-index: 1;
}

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

.p-fv__head {
  color: var(--c-white);
  font-size: clamp(2.25rem, 0.0603125rem + 3.5vw, 3.125rem);
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  .p-fv__head {
    font-size: clamp(1.25rem, 0.71rem + 2.4615384615vw, 2.25rem);
  }
}

.p-fv__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 30px 50px;
  grid-template-areas: "title thumb" "body thumb";
}
@media (any-hover: hover) {
  .p-fv__link:hover {
    opacity: 1;
  }
}
@media (max-width: 1000px) {
  .p-fv__link {
    gap: 20px;
  }
}
@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(1.25rem, 1.0828571429rem + 0.7619047619vw, 1.75rem);
  font-weight: 700;
  text-align: center;
  padding: 10px;
  word-break: keep-all;
}

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

.p-fv__body-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .p-fv__body-box {
    align-items: center;
  }
}

.p-fv__body-sub-title {
  color: var(--c-white);
  font-size: clamp(1.4375rem, 0.9051621835rem + 1.1075949367vw, 1.875rem);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .p-fv__body-sub-title {
    font-size: clamp(1.25rem, 0.7251794258rem + 2.3923444976vw, 1.875rem);
  }
}

.p-fv__body-title {
  color: var(--c-white);
  font-size: clamp(1.75rem, 0.4571795886rem + 2.6898734177vw, 2.8125rem);
  font-weight: 700;
  text-align: left;
}
@media (max-width: 768px) {
  .p-fv__body-title {
    text-align: center;
    font-size: clamp(1.375rem, 0.4303229665rem + 4.3062200957vw, 2.5rem);
  }
}

.p-fv__body-text {
  color: var(--c-white);
  font-size: clamp(1rem, 0.8746428571rem + 0.5714285714vw, 1.375rem);
  line-height: 1.7;
  font-weight: 400;
}

.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.5625rem, -0.3387064873rem + 3.9556962025vw, 3.125rem);
}

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

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

.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, -0.3140625rem + 2.5vw, 1.875rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(0.625rem, -0.9390625rem + 2.5vw, 1.25rem);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .p-why__head {
    gap: 10px;
    margin-top: unset;
    position: static;
  }
}

.p-why__title {
  background: var(--c-main);
  color: var(--c-white);
  padding: 5px 10px;
  font-size: clamp(1.5625rem, 0.4217761076rem + 2.3734177215vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-wrap: nowrap;
}
@media (max-width: 768px) {
  .p-why__title {
    width: 100%;
    text-align: center;
    text-wrap: auto;
    word-break: keep-all;
    font-size: clamp(1.25rem, 0.9125rem + 1.5384615385vw, 1.875rem);
  }
}

.p-why__body {
  margin-top: clamp(8.75rem, 2.6661392405rem + 12.6582278481vw, 13.75rem);
  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.695806962rem + 0.6329113924vw, 1.25rem);
  line-height: 1.5;
}
@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 {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
  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: 1400px) {
  .p-popular::before {
    height: 100%;
  }
}

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

.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;
}

.p-popular__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-popular__catch {
  padding: 5px 10px;
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 700;
  text-align: center;
  background: var(--c-main);
  color: var(--c-white);
  text-wrap: balance;
  word-break: auto-phrase;
}

.p-popular__title {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.p-popular__title-sub {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 700;
  text-align: center;
}

.p-popular__title-main {
  font-size: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  font-weight: 700;
  text-align: center;
}

.p-popular__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
}

.p-popular__btn-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-popular__btn {
  position: relative;
}
.p-popular__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;
}

.p-popular__thumb {
  aspect-ratio: 5/6;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .p-popular__thumb {
    order: -1;
    aspect-ratio: 4/3;
  }
}
.p-popular__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-popular__thumb .p-popular__thumb-text {
  position: absolute;
  bottom: 10%;
  right: 20px;
  writing-mode: vertical-rl;
  scale: -1;
  color: var(--c-white);
  font-size: clamp(0.875rem, 0.6660714286rem + 0.9523809524vw, 1.5rem);
  opacity: 0.8;
}

/*----------------------------------------
  p-commitment
----------------------------------------*/
.p-commitment {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
}

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

.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: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__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;
}
.p-commitment__item:nth-child(odd) .p-commitment__title-ja {
  text-align: left;
}
@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;
}
@media (max-width: 768px) {
  .p-commitment__item .p-commitment__body {
    padding-bottom: unset;
  }
}
.p-commitment__item .p-commitment__title {
  color: var(--c-main);
  font-weight: 700;
}
@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.9582142857rem + 0.1904761905vw, 1.125rem);
  text-align: left;
}
@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.8125rem, 2.2901785714rem + 2.380952381vw, 4.375rem);
  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.5625rem, 1.4580357143rem + 0.4761904762vw, 1.875rem);
}

.p-commitment__text {
  margin-top: 20px;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
}

.p-commitment__thumb {
  padding-top: 30px;
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
@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.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  text-align: center;
  font-weight: 700;
  color: var(--c-main);
  word-break: keep-all;
}

/*----------------------------------------
  p-review
----------------------------------------*/
.p-review {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
  background: var(--c-background);
}

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

/* Googleの口コミ
----------------------------------------*/
.google__discription {
  margin-top: 20px;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  text-align: center;
  word-break: keep-all;
}

.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.5625rem, 1.3535714286rem + 0.9523809524vw, 2.1875rem);
  font-weight: 700;
}

.google__sougou-star {
  width: 135px;
  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;
}

.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: 700;
}

.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;
}

.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;
}

/* feedback
----------------------------------------*/
.feedback__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 1000px) {
  .feedback__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.feedback__item {
  padding: 20px;
  background: var(--c-white);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 20px;
  justify-items: center;
}

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

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

.feedback__item-title {
  font-size: clamp(1.25rem, 0.46796875rem + 1.25vw, 1.5625rem);
  font-weight: 700;
  width: 100%;
  background: var(--c-main);
  color: var(--c-white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 1000px) {
  .feedback__item-title {
    font-size: clamp(1.25rem, 1.08125rem + 0.7692307692vw, 1.5625rem);
  }
}

.feedback__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.5;
}

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

.feedback__satisfaction-text {
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  font-weight: 700;
}

.feedback__satisfaction-star {
  width: 108px;
  height: 20px;
  overflow: hidden;
}
.feedback__satisfaction-star._star1 {
  width: 90px;
}
.feedback__satisfaction-star._star2 {
  width: 108px;
}
.feedback__satisfaction-star._star3 {
  width: 108px;
}
.feedback__satisfaction-star img {
  width: 108px;
  height: 100%;
}

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

/*----------------------------------------
  p-philosophy
----------------------------------------*/
.p-philosophy {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
  overflow-x: clip;
}

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

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

/*----------------------------------------
  p-product
----------------------------------------*/
.p-product {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
  background: var(--c-background);
}

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

.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, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-main);
}

.p-product__catch {
  margin-top: 20px;
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 700;
  text-align: left;
  text-wrap: balance;
  word-break: auto-phrase;
}
.p-product__catch span {
  display: block;
}

.p-product__title {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-product__title .p-product__title-sub {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 700;
}
.p-product__title .p-product__title-main {
  font-size: clamp(2.5rem, 2.2910714286rem + 0.9523809524vw, 3.125rem);
  font-weight: 700;
  text-align: left;
}

.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: cover;
     object-fit: cover;
}

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

.p-product__pr {
  margin-top: 60px;
}

.p-product__btn-wrapper {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-product__btn {
  position: relative;
}
.p-product__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;
}

/*----------------------------------------
  p-instagram
----------------------------------------*/
.p-instagram {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
}

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

.p-instagram__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.p-instagram__logo {
  aspect-ratio: 1/1;
  width: 72px;
  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: 700;
}

.p-instagram__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  font-weight: 700;
  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);
  max-width: 640px;
  margin-inline: auto;
}

.p-instagram__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.p-instagram__body-title {
  font-size: clamp(1.125rem, 0.97875rem + 0.6666666667vw, 1.5625rem);
  font-weight: 700;
  color: var(--c-main);
  word-break: keep-all;
  text-align: left;
}

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

.p-instagram__thumb {
  aspect-ratio: 441/276;
  width: 120px;
  overflow: hidden;
}
.p-instagram__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------------
  contact
----------------------------------------*/
.p-contact {
  padding-block: clamp(1.25rem, 0.6232142857rem + 2.8571428571vw, 3.125rem);
}

.p-contact__inner {
  background: var(--c-background);
  padding-block: clamp(3.125rem, 2.0803571429rem + 4.7619047619vw, 6.25rem);
}

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

.p-contact__title {
  font-size: 32px;
  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);
  text-wrap: balance;
  word-break: auto-phrase;
}

/* 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);
  text-align: left;
}

.form__label .required {
  font-size: 14px;
  font-weight: normal;
  margin-left: 10px;
  background: #c00000;
  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: #efefef;
}

.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;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.p-thanks__title {
  font-size: clamp(1.125rem, 0.8742857143rem + 1.1428571429vw, 1.875rem);
  line-height: 1.5;
  text-wrap: balance;
  word-break: auto-phrase;
}

.p-thanks__text {
  font-size: 16px;
  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-background);
}
@media (max-width: 768px) {
  .p-lineup {
    padding-inline: unset;
  }
}

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

.p-lineup__en {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  color: var(--c-main);
  position: relative;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-lineup__en {
    text-align: center;
  }
}
.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-background);
  position: relative;
  z-index: 2;
  margin-left: 100px;
  padding-inline: 20px;
}
@media (max-width: 768px) {
  .p-lineup__en span {
    margin-left: unset;
  }
}

.p-lineup__ja-wrapper {
  margin-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
}
@media (max-width: 768px) {
  .p-lineup__ja-wrapper {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-lineup__ja {
  display: inline-block;
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  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, -2.2814477848rem + 4.746835443vw, 1.875rem);
}
@media (max-width: 768px) {
  .p-lineup__list {
    width: 100%;
  }
}

.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);
}
@media (max-width: 768px) {
  .p-lineup__item-inner {
    flex-direction: column;
    align-items: center;
    padding-right: unset;
  }
}
.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);
}
@media (max-width: 768px) {
  .p-lineup__item-inner::before {
    border-bottom: none;
  }
}
.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%);
}
@media (max-width: 768px) {
  .p-lineup__item-inner::after {
    background: transparent;
  }
}

.p-lineup__label {
  display: inline-block;
  font-size: clamp(1rem, 0.9164285714rem + 0.380952381vw, 1.25rem);
  color: var(--c-main);
  padding: 20px 20px 20px 0;
  border-right: 1px solid var(--c-main);
  background: var(--c-background);
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .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;
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  font-weight: 700;
  background: var(--c-background);
  position: relative;
  z-index: 2;
  text-align: left;
}
@media (max-width: 768px) {
  .p-lineup__title {
    padding: 20px 0;
  }
}
.p-lineup__title span {
  display: inline-block;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  font-weight: 400;
}

/*----------------------------------------
  p-recommend
----------------------------------------*/
@media (max-width: 768px) {
  .p-recommend__inner {
    max-width: 640px;
  }
}

.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__head {
  text-align: center;
}

.p-recommend__en {
  font-size: clamp(1.25rem, 0.4895174051rem + 1.582278481vw, 1.875rem);
  color: var(--c-main);
  line-height: 1.5;
}

.p-recommend__ja {
  font-size: clamp(1.5625rem, 1.1655357143rem + 1.8095238095vw, 2.75rem);
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9375rem, -0.2032238924rem + 2.3734177215vw, 1.875rem);
  width: 100%;
}
.p-recommend__ja::before, .p-recommend__ja::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-text);
}
.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);
}

.p-recommend__pr {
  margin-top: 60px;
}

.p-recommend__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-recommend__title .p-recommend__title-sub {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  color: var(--c-main);
  line-height: 1.5;
}
.p-recommend__title .p-recommend__title-main {
  font-size: clamp(1.875rem, 1.6660714286rem + 0.9523809524vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
}

/* 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: cover;
     object-fit: cover;
}

.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;
}

.item__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item__title .item__title-sub {
  font-size: clamp(1.25rem, 1.0828571429rem + 0.7619047619vw, 1.75rem);
}
.item__title .item__title-main {
  font-size: clamp(1.875rem, 1.1145174051rem + 1.582278481vw, 2.5rem);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .item__title .item__title-main {
    font-size: clamp(1.4375rem, 0.5453050239rem + 4.0669856459vw, 2.5rem);
  }
}

.item__catch {
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  font-weight: 700;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
.item__catch span {
  display: block;
}

.item__btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.item__btn {
  position: relative;
}
.item__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;
}

.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;
}

/* 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(2.5rem, 2.2910714286rem + 0.9523809524vw, 3.125rem);
  font-weight: 700;
  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.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 700;
  color: var(--c-main);
}
@media (max-width: 768px) {
  .p-recommend__eat-title {
    text-align: center;
  }
}

.p-recommend__eat-text {
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  line-height: 1.5;
}

/* 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;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.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.0832142857rem + 0.1904761905vw, 1.25rem);
  font-weight: 700;
  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, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  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: cover;
     object-fit: cover;
}

.p-recommend__summary-body {
  padding: 20px;
}
@media (max-width: 768px) {
  .p-recommend__summary-body {
    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.0414285714rem + 0.380952381vw, 1.375rem);
  font-weight: 700;
  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, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.5;
}

/* 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: cover;
     object-fit: cover;
}

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

.p-recommend__buy-catch {
  font-size: clamp(1.125rem, 0.2124208861rem + 1.8987341772vw, 1.875rem);
  font-weight: 700;
  text-wrap: balance;
  word-break: auto-phrase;
  text-align: center;
}
.p-recommend__buy-catch span {
  display: block;
}
@media (max-width: 768px) {
  .p-recommend__buy-catch {
    font-size: clamp(1.125rem, 1.0200358852rem + 0.4784688995vw, 1.25rem);
  }
}

.p-recommend__buy-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-recommend__buy-title .p-recommend__buy-title-sub {
  font-size: clamp(1.25rem, 1.0828571429rem + 0.7619047619vw, 1.75rem);
  text-align: center;
}
.p-recommend__buy-title .p-recommend__buy-title-main {
  font-size: clamp(1.5625rem, 0.4217761076rem + 2.3734177215vw, 2.5rem);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .p-recommend__buy-title .p-recommend__buy-title-main {
    font-size: clamp(1.5625rem, 0.7752691388rem + 3.5885167464vw, 2.5rem);
  }
}

.p-recommend__buy-text {
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
}

.p-recommend__buy-btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-recommend__buy-btn {
  position: relative;
}
.p-recommend__buy-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;
}

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

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

/* raw
----------------------------------------*/
.p-kodawari__raw {
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
  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.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 700;
  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.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  font-weight: 700;
  color: var(--c-accent);
}

.raw__title-main {
  font-size: clamp(2.1875rem, 1.9785714286rem + 0.9523809524vw, 2.8125rem);
  font-weight: 700;
  color: var(--c-text);
}

.raw__title-en {
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  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;
}

/* method
----------------------------------------*/
.p-kodawari__method {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
}

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

/* method
----------------------------------------*/
.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;
}

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

.method__title {
  align-self: flex-start;
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  font-weight: 700;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media (max-width: 768px) {
  .method__title {
    align-self: center;
  }
}

.method__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
}

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

/* process
----------------------------------------*/
.p-kodawari__process {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
}

.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;
}

@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(2.1875rem, 1.2473214286rem + 4.2857142857vw, 5rem);
  aspect-ratio: 1/1;
  background: var(--c-main);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 100%;
}
@media (max-width: 768px) {
  .process__num {
    position: static;
  }
}
.process__num span {
  display: block;
  font-size: clamp(1.125rem, 0.7698214286rem + 1.619047619vw, 2.1875rem);
  color: var(--c-white);
}

.process__title {
  padding-block: 10px;
  padding-inline: 20px;
  font-size: clamp(1.125rem, 0.97875rem + 0.6666666667vw, 1.5625rem);
  font-weight: 700;
  color: var(--c-main);
  border-bottom: 1px dashed var(--c-main);
  text-wrap: balance;
  word-break: auto-phrase;
  text-align: left;
}
@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.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
}

.process__thumb {
  margin-top: clamp(2.1875rem, 1.2473214286rem + 4.2857142857vw, 5rem);
  aspect-ratio: 3/2;
  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
----------------------------------------*/
.p-kodawari__point {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
}

.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;
  height: 100%;
}
.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: 3/2;
  width: 100%;
  overflow: hidden;
}
.poin2__item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-kodawari__point-title {
  margin-top: clamp(1.25rem, 0.6232142857rem + 2.8571428571vw, 3.125rem);
  font-size: clamp(1.25rem, 0.9366071429rem + 1.4285714286vw, 2.1875rem);
  font-weight: 700;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}

.p-kodawari__point-text {
  margin-top: clamp(1.25rem, 0.6232142857rem + 2.8571428571vw, 3.125rem);
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
}

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

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

.p-voice__list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-voice__content {
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  padding-block: 50px;
  background: var(--c-background);
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: clamp(1.25rem, 0.6232142857rem + 2.8571428571vw, 3.125rem);
  align-items: center;
}
@media (max-width: 768px) {
  .p-voice__content {
    grid-template-columns: 1fr;
  }
}

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

.p-voice__body {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.6232142857rem + 2.8571428571vw, 3.125rem);
}

.p-voice__name {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 700;
  text-align: center;
}
.p-voice__name span {
  font-size: clamp(1rem, 0.9164285714rem + 0.380952381vw, 1.25rem);
}

.p-voice__product {
  padding: 15px 20px;
  background: var(--c-main);
  color: var(--c-white);
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  font-weight: 700;
  text-align: center;
}

.p-voice__text {
  font-size: clamp(1.125rem, 0.9996428571rem + 0.5714285714vw, 1.5rem);
  font-weight: 700;
  text-align: center;
}

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

.p-voice__satisfaction-text {
  font-size: clamp(1.125rem, 0.97875rem + 0.6666666667vw, 1.5625rem);
  font-weight: 700;
}

.p-voice__satisfaction-star {
  width: 180px;
  overflow: hidden;
}
.p-voice__satisfaction-star img {
  width: 180px;
}

.p-voice__review {
  margin-top: 50px;
}

.p-voice__review-title {
  padding-bottom: 10px;
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  font-weight: 700;
  border-bottom: 1px solid var(--c-text);
  text-align: center;
  word-break: keep-all;
}

.p-voice__review-text {
  margin-top: 30px;
  padding-inline: 20px;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.5;
}

/*----------------------------------------
  p-company
----------------------------------------*/
@media (max-width: 768px) {
  .p-company__inner {
    max-width: 640px;
  }
}

.p-company__content {
  margin-top: 50px;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  padding-block: clamp(3.125rem, 2.0803571429rem + 4.7619047619vw, 6.25rem);
  background: var(--c-background);
}

/* thought
----------------------------------------*/
.p-company__thought {
  margin-top: clamp(3.125rem, 2.0803571429rem + 4.7619047619vw, 6.25rem);
}
.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: 5/6;
  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;
}
.p-company__thought.thought .thought__body {
  padding-block: 30px;
}
.p-company__thought.thought .thought__title {
  margin-left: -16%;
  margin-bottom: 30px;
  padding-block: 15px;
  display: inline-block;
  text-align: center;
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  font-weight: 700;
  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;
}
@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(3.125rem, 2.0803571429rem + 4.7619047619vw, 6.25rem);
}

@media (max-width: 768px) {
  .history__inner {
    max-width: 640px;
  }
}

.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: 90px 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: 700;
  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: 200px;
  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);
}

@media (max-width: 768px) {
  .commitment__inner {
    max-width: 640px;
  }
}

.commitment__thumb {
  margin-top: 50px;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
.commitment__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.commitment__content {
  margin-top: 50px;
}

.commitment__title {
  font-size: clamp(1.5625rem, 1.3535714286rem + 0.9523809524vw, 2.1875rem);
  font-weight: 700;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}

.commitment__text {
  margin-top: 30px;
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
  max-width: 840px;
  margin-inline: auto;
}

/*----------------------------------------
  p-prize
----------------------------------------*/
.p-prize {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
}

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

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

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

.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: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .p-prize__text {
    font-size: clamp(1rem, 0.5276614833rem + 2.1531100478vw, 1.5625rem);
  }
}

/*----------------------------------------
  p-products
----------------------------------------*/
.p-products {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
}

.p-products__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr));
  gap: 50px 20px;
}

.p-products__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 20px;
}

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

.p-products__title {
  font-weight: 700;
  text-align: center;
}

.p-products__title-sub {
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  padding-inline: 20px;
}

.p-products__title-main {
  font-size: clamp(1.25rem, 1.1455357143rem + 0.4761904762vw, 1.5625rem);
  padding-inline: 20px;
}

.p-products__text {
  font-size: clamp(1rem, 0.9582142857rem + 0.1904761905vw, 1.125rem);
  line-height: 1.7;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 20px;
}

.p-products__btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 20px;
  padding-bottom: 20px;
}

.p-products__btn {
  position: relative;
}
.p-products__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;
}

/*----------------------------------------
  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;
  }
}/*# sourceMappingURL=style.css.map */