@charset "UTF-8";
:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-text: #222222;
  --c-main: #8B1A1A;
  --c-sub: #2C2C2C;
  --c-accent: #C9A84C;
  --c-main-hover: rgb(74.5545454545, 13.9454545455, 13.9454545455);
  --c-sub-hover: rgb(5.75, 5.75, 5.75);
  --c-accent-hover: rgb(154.0321888412, 125.635193133, 46.4678111588);
  --c-bg-base: #ffffff;
  --c-bg-section: #f8f6f2;
  --c-bg-footer: #1a1a1a;
  --c-gray-dark: #8f8f8f;
  --c-gray-light: #cccccc;
  --c-gradient-eat: linear-gradient(90deg, #fff, #fff, #e8ddd0, #e8ddd0, #e8ddd0, #fff, #fff);
  --c-gradient-eat-reverse: linear-gradient(90deg, #e8ddd0, #e8ddd0, #fff, #fff, #fff, #e8ddd0, #e8ddd0);
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 8px 24px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --transition-fast: 0.15s ease;
  --transition-default: 0.3s ease;
  --transition-slow: 0.5s ease;
  --hover-opacity: 0.7;
  --c-selection-bg: rgba(139, 26, 26, 0.15);
  --c-selection-text: inherit;
  --z-header: 800;
  --z-nav: 900;
  --z-nav-back: 850;
  --z-hamburger: 1000;
  --z-modal: 2000;
  --z-focus-visible: 10000;
  --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-bg-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(--transition-default);
}
@media (any-hover: hover) {
  a:hover {
    opacity: var(--hover-opacity);
    cursor: pointer;
  }
}

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

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

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

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

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

::-webkit-scrollbar-thumb {
  background: var(--c-gray-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-gray-dark);
}

.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-bg-base);
  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: 15px;
  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;
  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 var(--transition-default);
  }
  .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;
}
@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-accent);
  height: 100px;
  padding: 20px;
  transition: all 0.3s ease;
}
.l-nav__item:last-child .l-nav__link:hover {
  background: var(--c-white);
  color: var(--c-accent);
  opacity: 0.7;
}
.l-nav__item:last-child .l-nav__link:hover .fa-envelope {
  color: var(--c-accent);
}
.l-nav__item:last-child .l-nav__link .fa-envelope {
  color: var(--c-white);
  font-size: clamp(2.25rem, 1.624375rem + 1vw, 2.5rem);
  transition: color 0.3s ease;
}

.l-nav__link {
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
@media (max-width: 576px) {
  .l-nav__link {
    font-size: 16px;
  }
}
@media (min-width: 1001px) {
  .l-nav__link.is-active {
    color: var(--c-main);
  }
  .l-nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--c-main);
  }
}

@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__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
  }
  .l-nav__logo img {
    width: 100px;
    height: auto;
  }
  .l-nav__logo span {
    font-size: 16px;
    font-weight: 700;
  }
  .l-nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .l-nav__item {
    width: 100%;
    border-top: 1px solid var(--c-border, #e5e5e5);
  }
  .l-nav__item:last-child {
    border-bottom: 1px solid var(--c-border, #e5e5e5);
    margin-top: 20px;
    border-top: none;
  }
  .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);
  }
  .l-nav__link {
    display: block;
    width: 100%;
    padding: 15px 20px;
    position: relative;
  }
  .l-nav__link.is-active {
    color: var(--c-main);
  }
  .l-nav__link.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--c-main);
  }
}
@media (max-width: 768px) {
  .l-nav {
    left: -50vw;
    width: 60vw;
  }
}
/* 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-bg-footer);
  font-weight: 700;
}

.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: 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__title {
  font-size: clamp(1.875rem, 1.6660714286rem + 0.9523809524vw, 2.5rem);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .l-footer__title {
    margin-inline: auto;
  }
}

.l-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .l-footer__logo {
    justify-content: center;
  }
}
.l-footer__logo img {
  max-width: 300px;
  object-fit: contain;
}
.l-footer__logo span {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(1.25rem, -0.00125rem + 2vw, 1.75rem);
  font-weight: 700;
}

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

.l-footer__sns-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .l-footer__sns-list {
    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: 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: 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 {
  padding: 10px 20px;
  font-size: clamp(1.125rem, 0.1865625rem + 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--c-main);
  background: var(--c-white);
  border: 2px solid var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_outline:hover {
    color: var(--c-white);
    background: var(--c-main);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_outline-thin {
  padding: 10px 20px;
  font-size: clamp(1.125rem, 0.1865625rem + 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--c-main);
  background: var(--c-white);
  border: 1px solid var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_outline-thin:hover {
    color: var(--c-white);
    background: var(--c-main);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_solid {
  padding: 12px 20px;
  width: auto;
  font-size: clamp(1.125rem, 0.1865625rem + 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_solid:hover {
    background: var(--c-main-hover);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_instagram {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_instagram:hover {
    color: var(--c-white);
    background: var(--c-sub-hover);
    border-color: var(--c-sub-hover);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_submit {
  padding: 15px 20px;
  width: min(200px, 100%);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_submit:hover {
    background: var(--c-main-hover);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_why {
  padding: 10px 20px;
  font-size: clamp(1.125rem, 0.820806962rem + 0.6329113924vw, 1.375rem);
  font-weight: 700;
  color: var(--c-main);
  background: var(--c-white);
  border: 1px solid var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_why:hover {
    color: var(--c-white);
    background: var(--c-main);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_google,
.c-btn_feedback {
  padding: 10px 20px;
  font-size: clamp(1.25rem, 0.46796875rem + 1.25vw, 1.5625rem);
  font-weight: 700;
  color: var(--c-main);
  background: var(--c-white);
  border: 1px solid var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_google:hover,
  .c-btn_feedback:hover {
    color: var(--c-white);
    background: var(--c-main);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_popular,
.c-btn_thanks {
  display: block;
  word-break: normal;
  padding: 10px 20px;
  font-size: clamp(1.125rem, 0.1865625rem + 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--c-main);
  background: var(--c-white);
  border: 2px solid var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_popular:hover,
  .c-btn_thanks:hover {
    color: var(--c-white);
    background: var(--c-main);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_recommend {
  display: block;
  word-break: keep-all;
  padding: 10px 20px;
  font-size: clamp(1.125rem, 0.1865625rem + 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--c-main);
  background: var(--c-white);
  border: 2px solid var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_recommend:hover {
    color: var(--c-white);
    background: var(--c-main);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_products {
  display: block;
  word-break: keep-all;
  padding: 10px 20px;
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  font-weight: 700;
  color: var(--c-main);
  background: var(--c-white);
  border: 2px solid var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_products:hover {
    color: var(--c-white);
    background: var(--c-main);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_page-head {
  padding: 12px 20px;
  width: auto;
  font-size: clamp(1.125rem, 0.1865625rem + 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_page-head:hover {
    background: var(--c-main-hover);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_producer {
  padding: 12px 20px;
  width: auto;
  font-size: clamp(1.125rem, 0.1865625rem + 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_producer:hover {
    background: var(--c-main-hover);
    box-shadow: var(--shadow-soft);
  }
}
.c-btn_producer {
  border: 2px solid var(--c-main);
}
@media (any-hover: hover) {
  .c-btn_producer:hover {
    color: var(--c-main);
    background: var(--c-white);
    border-color: var(--c-main);
  }
}

.c-btn_popular-buy,
.c-btn_recommend-buy {
  padding: 12px 20px;
  width: 100%;
  font-size: clamp(1.125rem, 0.1865625rem + 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_popular-buy:hover,
  .c-btn_recommend-buy:hover {
    background: var(--c-main-hover);
    box-shadow: var(--shadow-soft);
  }
}

.c-btn_products-buy {
  padding: 12px 20px;
  width: 100%;
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}
@media (any-hover: hover) {
  .c-btn_products-buy:hover {
    background: var(--c-main-hover);
    box-shadow: var(--shadow-soft);
  }
}

/*----------------------------------------
  Form Parts
----------------------------------------*/
/*各フォーム部品の基本スタイルを上書きします*/
input:is([type=text], [type=email], [type=tel], [type=url], [type=search]),
textarea,
select {
  appearance: none;
  width: 100%;
  padding: 10px 20px;
  background-color: white;
  border: 1px solid var(--c-gray-light);
  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;
}

/*フォーカス時*/
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 */
::placeholder {
  color: var(--c-gray-light);
}

/*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: 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 var(--transition-default);
}
@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: 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: 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: 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__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-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.c-page-head__text {
  font-size: clamp(1rem, 0.9164285714rem + 0.380952381vw, 1.25rem);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  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(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  font-weight: 700;
  line-break: anywhere;
  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-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);
  white-space: nowrap;
  padding-inline: 10px;
}

.c-pr__list {
  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 {
  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%;
  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;
  text-align: justify;
}

/* c-about__slider */
.c-about__slide-thumb {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.c-about__slide-thumb img {
  height: 100%;
  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-gray-dark);
  text-align: center;
  display: grid;
  place-items: center;
}
@media (max-width: 576px) {
  .c-about__table th {
    border: unset;
    background: var(--c-bg-section);
  }
}
.c-about__table td {
  border-bottom: 2px solid var(--c-gray-light);
  overflow-wrap: anywhere;
  line-break: anywhere;
}
@media (max-width: 576px) {
  .c-about__table td {
    border: unset;
    margin-inline: auto;
  }
}

/*----------------------------------------
  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: 36/11;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-belief__thumb {
    aspect-ratio: 16/9;
  }
}
.c-belief__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.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-gray-light);
}
@media (max-width: 768px) {
  .c-belief__content {
    margin-top: -80px;
    padding: 20px;
    grid-template-columns: 1fr;
  }
}

.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__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.5625rem, 1.1446428571rem + 1.9047619048vw, 2.8125rem);
  font-weight: 700;
  line-height: 1.5;
}

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

/*----------------------------------------
  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;
}
.p-philosophy .c-producer__thumb {
  aspect-ratio: 1/1.1;
}
@media (max-width: 768px) {
  .p-philosophy .c-producer__thumb {
    aspect-ratio: 4/3;
  }
}
.p-philosophy .c-producer__thumb img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.p-company .c-producer__thumb {
  aspect-ratio: 4/3;
}
.p-company .c-producer__thumb img {
  height: 100%;
  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;
}

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

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

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

/*----------------------------------------
  p-fv
----------------------------------------*/
.p-fv {
  position: relative;
  padding-block: 50px;
}
@media (max-width: 768px) {
  .p-fv {
    padding-block: 30px;
  }
}
.p-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  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;
  text-shadow: 0 0 10px rgb(0, 0, 0);
}
@media (max-width: 1000px) {
  .p-fv__head {
    font-size: clamp(1.75rem, 1.21rem + 2.4615384615vw, 2.75rem);
  }
}

.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;
  text-shadow: 0 0 10px rgb(0, 0, 0);
}
@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-shadow: 0 0 10px rgb(0, 0, 0);
}
@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: 700;
  text-align: justify;
  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%;
  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%;
  object-fit: cover;
}

.p-why__content {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  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;
  text-align: justify;
}
@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: 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%;
  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-bg-section);
  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);
}

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

.p-popular__btn-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-inline: auto;
  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;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 768px) {
  .p-popular__thumb {
    order: -1;
    aspect-ratio: 4/3;
  }
}
.p-popular__thumb img {
  height: 100%;
  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;
}
@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);
}
@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;
  text-align: justify;
}

.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%;
  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-bg-section);
}

@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;
  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%;
  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;
  text-align: justify;
}

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

.google__btn {
  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;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.feedback__thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.feedback__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

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

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

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

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

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

.p-product__btn-wrapper {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: fit-content;
  min-width: 280px;
  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-product-more {
  margin-top: 50px;
  padding-block: clamp(2.5rem, 2.0821428571rem + 1.9047619048vw, 3.75rem);
  padding-inline: clamp(1.25rem, 0.6232142857rem + 2.8571428571vw, 3.125rem);
  text-align: center;
  background: var(--c-white);
  border: 1px solid var(--c-main);
  border-radius: 8px;
}
.p-product-more__text {
  font-size: clamp(1.125rem, 1.0414285714rem + 0.380952381vw, 1.375rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 25px;
}

/*----------------------------------------
  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%;
  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%;
  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;
  transition: color var(--transition-default);
}

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

.p-instagram__thumb {
  aspect-ratio: 441/276;
  width: 120px;
  overflow: hidden;
}
.p-instagram__thumb img {
  height: 100%;
  object-fit: cover;
  transition: filter var(--transition-default);
}

/* ボタンホバー時の子要素変化 */
@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-bg-section);
  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);
  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-accent);
  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-bg-section);
}

.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;
  word-break: keep-all;
}

.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-bg-section);
}
@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-bg-section);
  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: 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: 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-bg-section);
  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-bg-section);
  position: relative;
  z-index: 2;
}
@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-bg-section);
  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%;
  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: 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;
}
.item__catch span {
  display: block;
}

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

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

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

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

.p-recommend__summary-body {
  padding-inline: 20px;
}
@media (max-width: 768px) {
  .p-recommend__summary-body {
    padding-inline: unset;
    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;
  text-align: justify;
}

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

.p-recommend__buy-body {
  margin-left: -50%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--c-gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  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-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: 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-bg-section);
}

.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(1.875rem, 1.6660714286rem + 0.9523809524vw, 2.5rem);
  font-weight: 700;
  color: var(--c-text);
}

.raw__title-en {
  font-size: clamp(1.125rem, 1.0832142857rem + 0.1904761905vw, 1.25rem);
  color: var(--c-gray-dark);
  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%;
  object-fit: cover;
}

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

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

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

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

.method__title {
  align-self: flex-start;
  font-size: clamp(1.25rem, 0.8697587025rem + 0.7911392405vw, 1.5625rem);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .method__title {
    font-size: clamp(1.25rem, 0.9875897129rem + 1.1961722488vw, 1.5625rem);
    align-self: center;
  }
}

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

.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%;
  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);
}
@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;
  text-align: justify;
}

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

.p-kodawari__point-title {
  margin-top: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  font-size: clamp(1.25rem, 0.9366071429rem + 1.4285714286vw, 2.1875rem);
  font-weight: 700;
  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;
}

/*----------------------------------------
  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-bg-section);
  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%;
  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__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(3.125rem, 2.0803571429rem + 4.7619047619vw, 6.25rem);
  background: var(--c-bg-section);
}

/* 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: 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%;
  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: 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;
  text-align: justify;
}
@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: fit-content;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .history__list {
    width: 100%;
    border-top: 1px solid var(--c-gray-light);
  }
}

.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-gray-light);
}
@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-gray-light);
  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-gray-light);
    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-gray-light);
}
@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: 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%;
  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.5625rem, 1.2491071429rem + 1.4285714286vw, 2.5rem);
  font-weight: 700;
  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;
}

/*----------------------------------------
  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;
  background: var(--c-white);
  border-radius: var(--radius-md);
  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;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.p-products__thumb img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.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: fit-content;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: justify;
}

.p-products__btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: fit-content;
  min-width: 280px;
  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;
}

/*----------------------------------------
  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%;
  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-media（メディア掲載セクション）
----------------------------------------*/
.p-media01 {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
  background: var(--c-bg-section);
  position: relative;
  overflow: hidden;
  /* Section Header */
}
.p-media01 .c-section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 2.0821428571rem + 1.9047619048vw, 3.75rem);
}
.p-media01 .c-section-header__en {
  font-size: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
  color: var(--c-main);
  font-weight: 700;
  letter-spacing: 0.3em;
}
.p-media01 .c-section-header__title {
  font-size: clamp(1.5625rem, 1.1655357143rem + 1.8095238095vw, 2.75rem);
  font-weight: 700;
  color: var(--c-text);
  margin-top: 10px;
}
.p-media01 {
  /* Grid */
}
.p-media01__grid {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 0.8321428571rem + 1.9047619048vw, 2.5rem);
}
@media (max-width: 768px) {
  .p-media01__grid {
    grid-template-columns: 1fr;
  }
}
.p-media01 {
  /* Card */
}
.p-media01__card {
  position: relative;
  padding: clamp(1.875rem, 1.4571428571rem + 1.9047619048vw, 3.125rem);
  background: transparent;
  border: 1px solid rgba(0, 102, 178, 0.3);
  transition: all 0.4s ease;
}
.p-media01__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(--transition-default);
}
.p-media01__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(--transition-default);
}
.p-media01__title {
  font-size: clamp(1.25rem, 1.1246428571rem + 0.5714285714vw, 1.625rem);
  font-weight: 700;
  color: var(--c-main);
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
.p-media01__subtitle {
  font-size: clamp(0.875rem, 0.8332142857rem + 0.1904761905vw, 1rem);
  color: var(--c-text);
  line-height: 1.8;
}

/*----------------------------------------
  p-media02 (pattern3)
----------------------------------------*/
.pattern3 {
  background: var(--c-bg-section);
  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: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}

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

/*----------------------------------------
  p-awards-classic
----------------------------------------*/
.p-awards-classic {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
  background: var(--c-bg-section);
  position: relative;
}

/* Header */
.p-awards-classic .c-section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 2.0821428571rem + 1.9047619048vw, 3.75rem);
}

.p-awards-classic__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.p-awards-classic__ornament-line {
  width: 60px;
  height: 1px;
  background: var(--c-main);
}
@media (min-width: 769px) {
  .p-awards-classic__ornament-line {
    width: 80px;
  }
}

.p-awards-classic__ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--c-main);
  transform: rotate(45deg);
}

.p-awards-classic .c-section-header__en {
  font-size: clamp(0.75rem, 0.7082142857rem + 0.1904761905vw, 0.875rem);
  letter-spacing: 0.3em;
  color: var(--c-main);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.p-awards-classic .c-section-header__title {
  font-family: var(--ff-base);
  font-size: clamp(1.375rem, 1.1660714286rem + 0.9523809524vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--c-text);
}

/* Showcase */
.p-awards-classic__showcase {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 1.0410714286rem + 0.9523809524vw, 1.875rem);
}
@media (min-width: 769px) {
  .p-awards-classic__showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Frame */
.p-awards-classic__frame {
  background: var(--c-white);
  padding: clamp(0.9375rem, 0.7285714286rem + 0.9523809524vw, 1.5625rem);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.p-awards-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-awards-classic__corners {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  pointer-events: none;
}

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

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

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

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

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

.p-awards-classic__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 10px;
}

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

.p-awards-classic__image img,
.p-awards-classic__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-awards-classic__title {
  font-family: var(--ff-base);
  font-size: clamp(0.8125rem, 0.7707142857rem + 0.1904761905vw, 0.9375rem);
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* Video */
.p-awards-classic__image--video {
  position: relative;
  cursor: pointer;
}

.p-awards-classic__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-default), background var(--transition-default);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
@media (min-width: 769px) {
  .p-awards-classic__play-btn {
    width: 60px;
    height: 60px;
  }
}
.p-awards-classic__play-btn svg {
  fill: var(--c-main);
  stroke: var(--c-main);
}

.p-awards-classic__image--video:hover .p-awards-classic__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--c-white);
}

/*----------------------------------------
  p-awards
----------------------------------------*/
/* ================================================
   Component - Section Header
   セクションヘッダー
================================================ */
.p-awards-header {
  margin-bottom: 50px;
}
.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.1655357143rem + 1.8095238095vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.2em;
}
.p-awards-header__line {
  height: 1px;
  background: #ddd;
}

/* ================================================
   Project - Awards Dark (Pattern 1)
   ダーク＆リッチ
================================================ */
.p-awards-dark {
  padding-block: clamp(3.125rem, -0.6774129747rem + 7.9113924051vw, 6.25rem);
  background: linear-gradient(135deg, #1a1612 0%, #2d251e 50%, #1a1612 100%);
  overflow: hidden;
  /* Header */
}
.p-awards-dark .p-awards-header {
  text-align: center;
  position: relative;
}
.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 {
  left: calc(50% - 240px);
}
.p-awards-dark .p-awards-header::after {
  right: calc(50% - 240px);
  background: linear-gradient(90deg, #b8975a, transparent);
}
.p-awards-dark .p-awards-header__en {
  color: #b8975a;
}
.p-awards-dark .p-awards-header__title {
  color: #f5f0e8;
}
@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 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .p-awards-dark__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}
.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.2);
  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__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-family: "Noto Serif JP", serif;
  font-size: clamp(0.625rem, 0.4996428571rem + 0.5714285714vw, 1rem);
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.p-awards-dark__subtitle {
  font-size: clamp(0.5rem, 0.3955357143rem + 0.4761904762vw, 0.8125rem);
  color: #a09080;
  letter-spacing: 0.05em;
}
.p-awards-dark__text {
  font-size: clamp(0.625rem, 0.4996428571rem + 0.5714285714vw, 1rem);
  color: #f5f0e8;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .p-awards-dark__text {
    margin-top: 10px;
  }
}

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

@media (min-width: 1001px) {
  .u-sp-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

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

.wbr {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.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 .p-recommend__ja,
.bk .p-recommend__title-main {
  color: var(--c-sub);
}
.bk .p-recommend__ja::before, .bk .p-recommend__ja::after,
.bk .p-recommend__title-main::before,
.bk .p-recommend__title-main::after {
  background: var(--c-sub);
}
.bk .thought__text {
  color: var(--c-white);
}
