@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: #1a1a1a;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: transparent;
  transition: background-color 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 6.2rem;
    padding: 0 1.5625rem;
  }
}
.l-header.is-fixed {
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .l-header.is-fixed {
    padding: 0 1.5625rem;
  }
}
.l-header.is-fixed .l-header__item > a {
  color: #333;
  transition: color 0.5s ease;
}
.l-header.is-fixed .l-header__hamburger span {
  background-color: #333;
}
.l-header.is-fixed .l-header__logo-img--white {
  opacity: 0;
}
.l-header.is-fixed .l-header__logo-img--black {
  opacity: 1;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 90rem;
  height: 100%;
  margin: 0 auto;
}
.l-header__logo {
  margin: 0;
  line-height: 1;
}
.l-header__logo a {
  display: block;
  position: relative;
}
.l-header__logo img {
  display: block;
  width: auto;
  height: 2.75rem;
}
@media screen and (min-width: 768px) {
  .l-header__logo img {
    height: 2.5rem;
  }
}
.l-header__logo-img {
  transition: opacity 0.5s ease;
}
.l-header__logo-img--white {
  opacity: 1;
}
.l-header__logo-img--black {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.l-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }
}
.l-header__list {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-header__item > a {
  display: inline-block;
  color: #fff;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: color 0.5s ease;
}
.l-header__item--dropdown {
  position: relative;
}
.l-header__item--dropdown:hover .l-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.l-header__dropdown {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 7.375rem;
    margin: 0;
    padding: 0.8125rem 1.125rem;
    list-style: none;
    background-color: #fff;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(0.5rem);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 10;
  }
}
.l-header__dropdown-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.l-header__dropdown-item a::after {
  content: ">";
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.75rem;
  margin-left: 0.75rem;
  flex-shrink: 0;
}
.l-header__dropdown-item a:hover {
  background-color: rgba(247, 244, 235, 0.5);
}
.l-header__dropdown-item:not(:last-child) {
  padding-bottom: 0.625rem;
}
.l-header__dropdown-item--child a {
  font-size: 0.6875rem;
}
.l-header__dropdown-item--child a::before {
  content: "- ";
  margin-right: 0.125rem;
}
.l-header--sub {
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.08);
}
.l-header--sub .l-header__item > a {
  color: #333;
}
.l-header--sub .l-header__hamburger span {
  background-color: #333;
}
.l-header--sub .l-header__logo-img--white {
  opacity: 0;
}
.l-header--sub .l-header__logo-img--black {
  opacity: 1;
}
.l-header__hamburger {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.5s ease;
}
@media screen and (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger span {
  display: block;
  width: 1.375rem;
  height: 0.0625rem;
  margin: 0 auto;
  background-color: #fff;
  transition: transform 0.32s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.32s cubic-bezier(0.33, 1, 0.68, 1), background-color 0.4s ease;
  transform-origin: center center;
}
.l-header__hamburger.is-open {
  background-color: #fff;
}
.l-header__hamburger.is-open span {
  background-color: #9a1421;
}
.l-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(0.375rem) rotate(38deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-0.375rem) rotate(-38deg);
}

@media screen and (min-width: 768px) {
  .l-drawer {
    display: none !important;
  }
}

.l-drawer__overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
}

.l-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  width: 100%;
  height: 100dvh;
  padding: 1.875rem 1.25rem 2.5rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  overflow-y: auto;
  transform: translateX(100%);
}

.l-drawer__panel.l-drawer__panel--jyoukamati {
  background: #f7f4eb url("../images/store-jyoukamati/access-bg-pattern.svg") repeat;
  background-size: 4.375rem 4.375rem;
}

.l-drawer__panel.l-drawer__panel--jyoukamati-restaurant {
  background: #fff;
}

.l-drawer__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.l-drawer__close span {
  position: absolute;
  display: block;
  width: 1.875rem;
  height: 0.0625rem;
  top: 50%;
  left: 50%;
  background-color: #333;
  transform-origin: center center;
}
.l-drawer__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(30deg);
}
.l-drawer__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-30deg);
}

.l-drawer__logo {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 1.875rem;
}
.l-drawer__logo a {
  display: inline-block;
}
.l-drawer__logo img {
  width: 13.75rem;
  height: auto;
}

.l-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-drawer__item {
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}
.l-drawer__item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0.25rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.l-drawer__item > a::after {
  content: ">";
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  flex-shrink: 0;
}

.l-drawer__accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0.25rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.l-drawer__accordion-icon {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.l-drawer__accordion-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 0.09375rem;
  background-color: #333;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.l-drawer__accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 0.09375rem;
  background-color: #333;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s ease;
}

.l-drawer__item--accordion.is-open .l-drawer__accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.l-drawer__sub-list {
  margin: 0;
  padding: 0 0 0.625rem 0.5rem;
  list-style: none;
  overflow: hidden;
}

.l-drawer__sub-item a {
  display: block;
  padding: 0.625rem 0.25rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.l-drawer__sub-item a::before {
  content: "> ";
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.8125rem;
  margin-right: 0.25rem;
}
.l-drawer__sub-item--child {
  padding-left: 1rem;
}
.l-drawer__sub-item--child a::before {
  content: "- ";
}

.l-shop-btn {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: 4rem;
  background-color: #9a1421;
  color: #fff;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 -0.125rem 0.625rem rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 50%;
  opacity: 0;
  pointer-events: none;
}
.l-shop-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .l-shop-btn {
    display: none;
  }
}
.l-shop-btn__icon {
  display: block;
  width: 1.25rem;
  height: auto;
}

.l-footer {
  padding: 3.75rem 1.25rem 1.875rem;
  background-color: #131f2d;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 5rem 1.5625rem 1.25rem;
  }
}
.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.l-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .l-footer__content {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    justify-content: space-between;
    gap: 3.75rem;
  }
}
.l-footer__logo {
  margin-bottom: 3.125rem;
}
.l-footer__logo a {
  display: block;
}
.l-footer__logo img {
  display: block;
  width: auto;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .l-footer__logo img {
    height: 2.75rem;
  }
}
.l-footer__info {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
}
.l-footer__info p {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .l-footer__info {
    flex-shrink: 0;
    font-size: 0.875rem;
  }
}
.l-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 2.5rem;
  }
}
.l-footer__nav-group {
  min-width: 8.75rem;
}
.l-footer__nav-heading {
  margin: 0 0 1.25rem;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #756d6c;
}
.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-footer__nav-item a {
  display: inline-block;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.l-footer__nav-item a:hover {
  opacity: 0.65;
}
.l-footer__copy {
  margin: 4.375rem 0 0;
  padding-top: 1.5rem;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    margin-top: 11.25rem;
    font-size: 0.75rem;
  }
}

.c-btn {
  padding: 0.875rem 3.75rem;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 3.125rem;
  background-color: #fff;
}

.c-btn.c-btn--black {
  color: #fff;
  background-color: #000;
}

.c-btn.c-btn--outline {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-btn.c-btn--outline:hover {
  background-color: #fff;
  color: #1a1a1a;
}

.c-btn.c-btn--detail-back {
  position: relative;
  overflow: hidden;
  padding: 0.8125rem 3.125rem;
  border-radius: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #333;
  background-color: transparent;
  border-color: #333;
  text-transform: none;
  text-decoration: none;
  transition: color 0.4s ease;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .c-btn.c-btn--detail-back {
    padding: 1.25rem 6.25rem;
  }
}
.c-btn.c-btn--detail-back::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #333;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
}
.c-btn.c-btn--detail-back:hover {
  color: #f7f4eb;
}
.c-btn.c-btn--detail-back:hover::before {
  transform: scaleX(1);
}

.c-btn.c-btn--text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.875rem 0.9375rem 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn.c-btn--text {
    font-size: 0.9375rem;
  }
}
.c-btn.c-btn--text::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: calc(50% - 0.4375rem);
  width: 0.225rem;
  height: 0.225rem;
  border-radius: 50%;
  background-color: #9a1421;
}
.c-btn.c-btn--text::before {
  content: none;
}
.c-btn.c-btn--text:hover {
  opacity: 0.6;
}

.c-btn.c-btn--text-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 0 0.9375rem 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn.c-btn--text-arrow {
    font-size: 0.9375rem;
  }
}
.c-btn.c-btn--text-arrow::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 0.1875rem;
  background: url("../images/common/arrow_red.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.c-btn.c-btn--text-arrow::before {
  content: none;
}
.c-btn.c-btn--text-arrow:hover {
  opacity: 0.6;
}

.c-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9375rem 1.875rem;
  background-color: #9a1421;
  color: #fff;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.c-shop-link:hover {
  background-color: rgb(126.9172413793, 16.4827586207, 27.1965517241);
}
.c-shop-link__icon {
  display: block;
  width: 1.125rem;
  height: auto;
}

.c-section-title {
  text-align: center;
}
.c-section-title__en {
  display: block;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  line-height: 1;
  color: #938282;
}
@media screen and (min-width: 768px) {
  .c-section-title__en {
    font-size: 0.875rem;
  }
}
.c-section-title__ja {
  display: block;
  margin-top: 0.75rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .c-section-title__ja {
    margin-top: 1rem;
    font-size: 2.375rem;
  }
}

.c-section-title.c-section-title--light .c-section-title__en {
  color: rgba(255, 255, 255, 0.7);
}
.c-section-title.c-section-title--light .c-section-title__ja {
  color: #fff;
}

.c-section-title.c-section-title--reverse {
  display: flex;
  flex-direction: column-reverse;
}
.c-section-title.c-section-title--reverse .c-section-title__ja {
  margin-top: 0;
}
.c-section-title.c-section-title--reverse .c-section-title__en {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-section-title.c-section-title--reverse .c-section-title__en {
    margin-top: 1rem;
  }
}

.c-section-title.c-section-title--vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-section-title.c-section-title--vertical {
    gap: 1.5rem;
  }
}
.c-section-title.c-section-title--vertical .c-section-title__ja {
  margin-top: 0;
  font-size: 1.875rem;
  line-height: 1.6;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .c-section-title.c-section-title--vertical .c-section-title__ja {
    font-size: 2.5rem;
  }
}
.c-section-title.c-section-title--vertical .c-section-title__en {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  writing-mode: horizontal-tb;
}
@media screen and (min-width: 768px) {
  .c-section-title.c-section-title--vertical .c-section-title__en {
    writing-mode: vertical-rl;
    font-size: 0.75rem;
  }
}

.c-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: transparent;
}
.c-card__media {
  position: relative;
  overflow: hidden;
}
.c-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.6s ease;
}
@media screen and (min-width: 768px) {
  .c-card__media img {
    aspect-ratio: 3/4;
  }
}
.c-card:hover .c-card__media img {
  transform: scale(1.05);
}
.c-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 0rem 0;
}
@media screen and (min-width: 768px) {
  .c-card__body {
    padding: 1.875rem 0 0;
  }
}
.c-card__title-group {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-card__title-group {
    display: block;
  }
}
.c-card__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    font-size: 1.625rem;
  }
}
.c-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  background-color: #9a1421;
  color: #fff;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1;
}
.c-card__subtitle {
  margin: 0.25rem 0 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgb(127.5, 127.5, 127.5);
}
@media screen and (min-width: 768px) {
  .c-card__subtitle {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: #333;
  }
}
.c-card__text {
  flex: 1;
  margin: 1.25rem 0 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .c-card__text {
    margin-top: 1.5rem;
  }
}
.c-card__btn {
  margin-top: 1.875rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .c-card__btn {
    margin-top: 3.125rem;
  }
}

.c-slider-linear {
  width: 100%;
  overflow: hidden;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
.c-slider-linear__inner {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: sliderLinear 30s linear infinite;
}
.c-slider-linear__img {
  display: block;
  width: 18.75rem;
  height: 12.5rem;
  object-fit: cover;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .c-slider-linear__img {
    width: 26.25rem;
    height: 17.5rem;
  }
}

@keyframes sliderLinear {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 3.125rem;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
}
@media screen and (min-width: 768px) {
  .c-pagination {
    gap: 0.375rem;
    margin-top: 5rem;
  }
}
.c-pagination__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .c-pagination__list {
    gap: 0.375rem;
  }
}
.c-pagination__item a,
.c-pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-pagination__item a,
  .c-pagination__item span {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.9375rem;
  }
}
.c-pagination__item a:hover {
  opacity: 0.6;
}
.c-pagination__item.is-active span {
  font-weight: 700;
  border-bottom: 1px solid #333;
}
.c-pagination__ellipsis span {
  width: auto;
  letter-spacing: 0;
}
.c-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-pagination__arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.9375rem;
  }
}
.c-pagination__arrow:hover {
  opacity: 0.6;
}

.c-breadcrumb {
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  padding: 1.125rem 1.25rem 1rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    padding: 5rem 1.5625rem 3.75rem;
  }
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 62.5rem;
}
.c-breadcrumb__item {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #756d6c;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__item {
    font-size: 0.875rem;
  }
}
.c-breadcrumb__item a {
  color: #756d6c;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-breadcrumb__item a:hover {
  opacity: 0.6;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
  color: #756d6c;
}
.c-breadcrumb__item:last-child {
  color: #333;
}

.p-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 35rem;
  overflow: hidden;
}
.p-hero .swiper,
.p-hero .swiper-wrapper,
.p-hero .swiper-slide {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-hero {
    height: 42.5rem;
    min-height: auto;
	   height: 100vh;
  }
}
.p-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.p-hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 9s linear forwards;
}
.p-hero__catch {
  position: absolute;
  left: 1.25rem;
  bottom: 4rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-hero__catch {
    left: 5.1875rem;
    bottom: 5.1875rem;
  }
}
.p-hero__catch-text {
  margin: 0;
  color: #fff;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .p-hero__catch-text {
    font-size: 1.625rem;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.p-about {
  position: relative;
  padding: 6.25rem 1.25rem 6.25rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding: 12.5rem 1.5625rem 8.5rem;
  }
}
.p-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/top/about_bg.png") center/cover no-repeat;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}
.p-about__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.p-about__lead {
  margin: 0;
  color: #333;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-about__lead {
    font-size: 1.125rem;
    line-height: 2.4;
    letter-spacing: 0.1em;
  }
}
.p-about__btn {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__btn {
    margin-top: 3.75rem;
  }
}

.p-quality {
  padding: 5rem 1.25rem 4.375rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-quality {
    padding: 0.625rem 0 12.5rem;
  }
}
.p-quality__inner {
  display: grid;
  grid-template-areas: "img img" "body heading";
  grid-template-columns: 1fr auto;
  gap: 2rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-quality__inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}
.p-quality__img {
  grid-area: img;
  margin-left: -1.25rem;
}
@media screen and (min-width: 768px) {
  .p-quality__img {
    margin-left: 0rem;
    flex-shrink: 0;
    width: 50%;
    margin-top: 4.375rem;
  }
}
.p-quality__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-quality__img img {
    aspect-ratio: 715/500;
  }
}
.p-quality__body {
  grid-area: body;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-quality__body {
    flex: 1;
    padding: 0 2.5rem 0 5rem;
    align-self: center;
  }
}
.p-quality__text {
  margin-top: 5rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-quality__text {
    margin-top: 0rem;
    font-size: 1rem;
    line-height: 2.2;
    letter-spacing: 0.1em;
  }
}
.p-quality__btn {
  margin-top: 3.75rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-quality__btn {
    text-align: center;
    margin-top: 4.375rem;
  }
}
.p-quality__heading {
  grid-area: heading;
  align-self: start;
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.9375rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.18em;
  color: #333;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .p-quality__heading {
    flex-shrink: 0;
    font-size: 2.75rem;
    padding-right: max(1.5625rem, (100vw - 1200px) / 2);
    align-self: flex-start;
  }
}

.p-store {
  position: relative;
  padding: 4.375rem 1.25rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-store {
    padding: 9.375rem 1.5625rem;
  }
}
.p-store__bg {
  position: absolute;
  left: -6.25rem;
  bottom: 0;
  width: 27.25rem;
  height: 27.25rem;
  pointer-events: none;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-store__bg {
    display: block;
  }
}
.p-store__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-store__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-store__inner {
    display: flex;
    align-items: flex-start;
    gap: 8.125rem;
  }
}
.p-store__heading {
  position: relative;
  margin-bottom: 2.5rem;
  flex-shrink: 0;
}
.p-store__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 7.3125rem;
  height: 7.3125rem;
  background: url("../images/top/shop_bg.png") no-repeat center/contain;
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-store__heading::before {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-store__heading::before {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-store__heading {
    position: static;
    margin-bottom: 0;
  }
}
.p-store__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-store__list {
    margin-top: 3.125rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.875rem;
  }
}
.p-store__item {
  display: flex;
}

#news .c-section-title__en {
  color: #756d6c;
}

.p-news {
  padding: 3.75rem 1.25rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding: 8.125rem 1.5625rem;
  }
}
.p-news__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    display: flex;
    align-items: flex-start;
    gap: 9.375rem;
  }
}
.p-news__heading {
  margin-bottom: 1.875rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-news__heading {
    margin-bottom: 0;
  }
}
.p-news__content {
  flex: 1;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .p-news__content {
    margin-top: 1.25rem;
  }
}
.p-news__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
}
.p-news__item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
}
.p-news__item a {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.875rem 0.25rem;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-news__item a:hover {
  opacity: 0.65;
}
@media screen and (min-width: 768px) {
  .p-news__item a {
    flex-direction: row;
    align-items: baseline;
    gap: 2.25rem;
    padding: 3.125rem 0.5rem;
  }
}
.p-news__date {
  flex-shrink: 0;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #756d6c;
}
@media screen and (min-width: 768px) {
  .p-news__date {
    font-size: 0.8125rem;
  }
}
.p-news__text {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-news__text {
    font-size: 1rem;
  }
}
.p-news__btn {
  margin-top: 1.5625rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-news__btn {
    margin-top: 3.75rem;
  }
}

.p-shop {
  position: relative;
  padding: 5rem 1.25rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-shop {
    padding: 6.25rem 1.5625rem 8.75rem;
  }
}
.p-shop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%), url("../images/top/online-shop_bg.png") no-repeat center/cover;
  z-index: 0;
}
.p-shop__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.p-shop__title {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-shop__title {
    margin-bottom: 3.75rem;
  }
}
.p-shop__btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-shop__btns {
    flex-direction: row;
    gap: 1.25rem;
	  justify-content: center;  /* 横方向（主軸）を中央 */
	  align-items: center;      /* 縦方向（交差軸）を中央 */
  }
}
.p-shop__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.875rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-shop__btn {
    padding: 2.7rem;
	  max-width:430px;
  }
}
.p-shop__btn:hover {
  opacity: 0.85;
}
.p-shop__btn--red {
  background-color: #9a1421;
}
.p-shop__btn--navy {
  background-color: #131f2d;
}
.p-shop__btn-text {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-shop__btn-text {
    font-size: 1.0625rem;
  }
}
.p-shop__btn-arrow {
  position: absolute;
  right: 1.875rem;
  display: inline-block;
  width: 0.8125rem;
  height: 0.375rem;
  background: url("../images/common/arrow_white.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-shop__btn-arrow {
    width: 2.5rem;
    right: 3.125rem;
  }
}

body.page-store-honten {
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  font-variant-east-asian: proportional-width;
  font-optical-sizing: auto;
}
body.page-store-honten .l-header {
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  body.page-store-honten .l-header {
    padding: 0.75rem 1.5625rem;
  }
}
body.page-store-honten .l-header__item a {
  color: #333;
}
body.page-store-honten .l-header__hamburger span {
  background-color: #333;
}

.p-store-honten-hero {
  padding: 4.75rem 0 0 0;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-store-honten-hero {
    padding: 5.625rem 0 0 1.5625rem;
  }
}
.p-store-honten-hero__inner {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-store-honten-hero__inner {
    display: grid;
    grid-template-columns: 26.8447% 73.1553%;
    align-items: start;
    gap: 0;
    width: min(100%, 100vw - 1.5625rem);
    margin-left: auto;
    margin-right: 0;
  }
}
.p-store-honten-hero__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: fit-content;
  margin-left: 1.25rem;
  order: 2;
  margin-top: 0.875rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-store-honten-hero__heading {
    order: 0;
    margin-inline: auto;
    margin-top: 6.25rem;
    margin-bottom: 0;
    justify-content: flex-start;
    align-self: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-store-honten-hero__title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .p-store-honten-hero__title {
    font-size: 2.375rem;
  }
}
.p-store-honten-hero__sub {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #938282;
}
@media screen and (min-width: 768px) {
  .p-store-honten-hero__sub {
    font-size: 0.8125rem;
  }
}
.p-store-honten-hero__image {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-store-honten-hero__image {
    width: 100%;
    overflow: hidden;
  }
}
.p-store-honten-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-store-honten-intro {
  position: relative;
  padding: 3.8125rem 0 0 1.25rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-store-honten-intro {
    padding: 8.75rem 0 0 1.5625rem;
    overflow: hidden;
  }
}
.p-store-honten-intro::before {
  content: "";
  position: absolute;
  left: -0.9375rem;
  bottom: -3.625rem;
  width: 11.25rem;
  height: 11.25rem;
  background: url("../images/store-honten/accent-honten.svg") no-repeat center/contain;
  pointer-events: none;
  opacity: 0.95;
}
@media screen and (min-width: 768px) {
  .p-store-honten-intro::before {
    left: -6.875rem;
    bottom: 0.25rem;
    width: 27.25rem;
    height: 27.25rem;
  }
}
.p-store-honten-intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-store-honten-intro__inner {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: 0;
    display: grid;
    grid-template-columns: minmax(23.125rem, 1fr) minmax(0, 0.85fr);
    grid-template-rows: auto;
    align-items: start;
    column-gap: 3.25rem;
    min-height: 28.5rem;
  }
}
.p-store-honten-intro__body {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-store-honten-intro__body {
    grid-column: 1;
    grid-row: 1;
    width: 23.125rem;
    display: grid;
    justify-items: center;
    justify-self: center;
    align-content: start;
    row-gap: 2.25rem;
  }
}
.p-store-honten-intro__title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-store-honten-intro__title {
    font-size: 2.8125rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
    width: 23.125rem;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
    justify-self: start;
    align-self: start;
    margin-inline: 0;
    writing-mode: horizontal-tb;
    white-space: nowrap;
  }
}
.p-store-honten-intro__title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-store-honten-intro__title span {
    display: inline-block;
    writing-mode: vertical-rl;
    vertical-align: top;
    flex: 0 0 auto;
  }
}
.p-store-honten-intro__title span:first-child {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .p-store-honten-intro__title span:first-child {
    margin-top: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-store-honten-intro__title span:last-child {
    transform: translateY(-2.8125rem);
  }
}
.p-store-honten-intro__text {
  grid-column: 2;
  grid-row: 2;
  margin: 1.75rem 0 0;
  width: 100%;
  padding-right: 0;
  font-size: 1rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
  text-align: left;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-optical-sizing: auto;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  justify-self: end;
}
@media screen and (min-width: 768px) {
  .p-store-honten-intro__text {
    grid-column: 1;
    grid-row: 2;
    width: 23.125rem;
    max-width: 23.125rem;
    margin: 0.5625rem 0 0;
    padding-right: 0;
    text-align: left;
    font-size: 1rem;
    line-height: 2.2;
    letter-spacing: 0.08em;
    align-self: start;
    box-sizing: border-box;
  }
}
.p-store-honten-intro__image {
  grid-column: 2;
  grid-row: 1;
  margin-top: 2.875rem;
  justify-self: end;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .p-store-honten-intro__image {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    transform: none;
    align-self: start;
  }
}
.p-store-honten-intro__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-store-honten-intro__image img {
    width: 100%;
    max-width: 100%;
  }
}

.p-store-honten-quality {
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  padding: 5.125rem 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-store-honten-quality {
    padding: 6.6875rem 1.5625rem 0;
  }
}
.p-store-honten-quality__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-store-honten-quality__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-honten-quality__title {
    font-size: 2.375rem;
    letter-spacing: 0.05em;
  }
}
.p-store-honten-quality__label {
  margin: 0.4375rem 0 2.125rem;
  color: #938282;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.6875rem;
  letter-spacing: 0.34em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-honten-quality__label {
    margin-top: 0.75rem;
    margin-bottom: 2.25rem;
    font-size: 0.875rem;
  }
}
.p-store-honten-quality__list {
  display: grid;
  gap: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .p-store-honten-quality__list {
    grid-template-columns: repeat(3, 24.5858375rem);
    align-items: stretch;
    justify-content: center;
    gap: 0.5625rem;
  }
}
.p-store-honten-quality__item {
  display: grid;
  align-content: start;
  justify-items: stretch;
  height: 100%;
  padding: 1.625rem 0.625rem 2.1875rem;
  background-color: #fff;
  border: 1px solid rgba(200, 194, 184, 0.5);
}
@media screen and (min-width: 768px) {
  .p-store-honten-quality__item {
    padding: 1.625rem 1.125rem 2.1875rem;
  }
}
.p-store-honten-quality__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  margin-inline: 0;
  margin-bottom: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-store-honten-quality__head {
    margin-inline: auto;
  }
}
.p-store-honten-quality__number {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #993133;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
  transform: translateY(0.6em);
  white-space: nowrap;
  flex: 0 0 auto;
}
.p-store-honten-quality__number::after {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #993133;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .p-store-honten-quality__number {
    gap: 0.625rem;
    font-size: 1.125rem;
  }
  .p-store-honten-quality__number::after {
    width: 0.375rem;
    height: 0.375rem;
  }
}
.p-store-honten-quality__heading {
  margin: 0;
  width: auto;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-store-honten-quality__heading {
    font-size: 1.625rem;
  }
}
.p-store-honten-quality__image {
  margin-top: 0;
  margin-bottom: 1rem;
}
.p-store-honten-quality__image img {
  display: block;
  width: 100%;
  aspect-ratio: 302/194;
  object-fit: cover;
}
.p-store-honten-quality__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-store-honten-quality__text {
    font-size: 1rem;
    line-height: 2.1;
    letter-spacing: 0.06em;
  }
}
.p-store-honten-quality__btn {
  margin-top: 1.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-honten-quality__btn {
    margin-top: 2.8125rem;
  }
}

.p-store-honten-products {
  padding: 4.6875rem 1.25rem 0;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-store-honten-products {
    padding: 6.1875rem 1.5625rem 0;
  }
}
.p-store-honten-products__inner {
  max-width: 78.75rem;
  margin: 0 auto;
}
.p-store-honten-products__head {
  margin-bottom: 2.8125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-honten-products__head {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "label label" "title sub";
    align-items: end;
    column-gap: 1.125rem;
    row-gap: 0.375rem;
    width: calc(20rem * 3 + 1.25rem * 2);
    max-width: 100%;
    margin-inline: auto;
    margin-bottom: 2.375rem;
    text-align: left;
  }
}
.p-store-honten-products__label {
  margin: 0.4375rem 0 0;
  color: #938282;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  line-height: 1;
  order: 2;
}
@media screen and (min-width: 768px) {
  .p-store-honten-products__label {
    grid-area: label;
    margin: 0;
    font-size: 0.8125rem;
    order: 0;
  }
}
.p-store-honten-products__title {
  margin: 0;
  width: auto;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-store-honten-products__title {
    grid-area: title;
    font-size: 2.375rem;
    order: 0;
  }
}
.p-store-honten-products__sub {
  margin: 0.625rem 0 0;
  color: #333;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.08em;
  order: 3;
}
@media screen and (min-width: 768px) {
  .p-store-honten-products__sub {
    grid-area: sub;
    margin-top: 0;
    font-size: 1rem;
    line-height: 2.1;
    order: 0;
  }
}
.p-store-honten-products__list {
  display: grid;
  gap: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .p-store-honten-products__list {
    grid-template-columns: repeat(3, 20rem);
    justify-content: center;
    align-items: stretch;
    gap: 1.25rem;
  }
}
.p-store-honten-products__item {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr auto;
  padding: 1.375rem 1.375rem 3.4375rem;
  background: #fff;
  box-shadow: 0 0.75rem 1.625rem rgba(0, 0, 0, 0.04);
}
.p-store-honten-products__image {
  margin-bottom: 1.25rem;
}
.p-store-honten-products__image img {
  display: block;
  width: 100%;
  aspect-ratio: 308/260;
  object-fit: cover;
  background: #efefef;
}
.p-store-honten-products__name {
  margin: 0 0 0.875rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-store-honten-products__name {
    font-size: 1.5625rem;
  }
}
.p-store-honten-products__text {
  margin: 0 0 1.875rem;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  font-variant-east-asian: proportional-width;
  font-optical-sizing: auto;
}
@media screen and (min-width: 768px) {
  .p-store-honten-products__text {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0;
  }
}
.p-store-honten-products__link {
  margin-top: auto;
  align-self: end;
  justify-self: end;
}

.p-store-honten-gallery {
  padding: 4.6875rem 0 0 1.25rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-store-honten-gallery {
    padding: 7.1875rem 1.5625rem 0;
  }
}
.p-store-honten-gallery__inner {
  max-width: 62.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 13.25rem;
  align-items: start;
  column-gap: 1.875rem;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-store-honten-gallery__inner {
    display: grid;
    grid-template-columns: minmax(17.5rem, 22.5rem) minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 3.5rem;
    row-gap: 2rem;
    width: 62.5rem;
    max-width: 100%;
  }
}
.p-store-honten-gallery__title-wrap {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  justify-items: center;
  row-gap: 0.75rem;
}
.p-store-honten-gallery__title-wrap::after {
  content: "LINE UP";
  color: #938282;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.6875rem;
  letter-spacing: 0.34em;
  line-height: 1;
  writing-mode: horizontal-tb;
  justify-self: center;
}
@media screen and (min-width: 768px) {
  .p-store-honten-gallery__title-wrap {
    grid-column: 1;
    grid-row: 1;
    justify-items: center;
    justify-self: center;
    align-self: center;
    row-gap: 0;
  }
  .p-store-honten-gallery__title-wrap::after {
    content: none;
  }
}
.p-store-honten-gallery__title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .p-store-honten-gallery__title {
    font-size: 2.375rem;
    writing-mode: vertical-rl;
    width: fit-content;
    margin-inline: auto;
    align-self: center;
  }
}
.p-store-honten-gallery__title span {
  display: inline-block;
  white-space: nowrap;
}
.p-store-honten-gallery__text {
  grid-column: 2;
  grid-row: 2;
  margin: -0.3125rem 0 0;
  width: 100%;
  max-width: 13.25rem;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  justify-self: end;
}
.p-store-honten-gallery__text br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-store-honten-gallery__text {
    grid-column: 1;
    grid-row: 2;
    width: 22.1875rem;
    max-width: 22.1875rem;
    padding-right: 0;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.06em;
    box-sizing: border-box;
  }
  .p-store-honten-gallery__text br {
    display: inline;
  }
}
.p-store-honten-gallery__punct {
  display: inline-block;
  margin-inline: -0.18em;
}
.p-store-honten-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: 13.25rem;
  min-width: 13.25rem;
  margin-top: 4.3125rem;
}
@media screen and (min-width: 768px) {
  .p-store-honten-gallery__grid {
    grid-column: 2;
    grid-row: 1/3;
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
    margin-top: 0;
    gap: 0;
  }
}
.p-store-honten-gallery__grid img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: auto;
}
.p-store-honten-gallery__bridge {
  display: block;
  margin-top: 5.3125rem;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-store-honten-gallery__bridge {
    display: block;
  }
}
.p-store-honten-gallery__bridge img {
  display: block;
  width: 100%;
  height: auto;
}

.p-store-honten-access {
  padding: 4.6875rem 1.25rem 5.375rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access {
    padding: 5.9375rem 1.5625rem 5.5rem;
    background: #f7f4eb url("../images/common/main-bg.png") repeat;
  }
}
.p-store-honten-access__inner {
  max-width: 70rem;
  margin: 0 auto;
}
.p-store-honten-access__title {
  margin: 0 0 0.3125rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__title {
    margin-bottom: 1.125rem;
    font-size: 1.5625rem;
  }
}
.p-store-honten-access__label {
  margin: 0 0 0.5rem;
  color: #938282;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__label {
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
  }
}
.p-store-honten-access__content {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  margin-top: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__content {
    display: grid;
    grid-template-columns: 28.75rem 1fr;
    gap: 3.125rem;
    align-items: start;
  }
}
.p-store-honten-access__left {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__left {
    display: block;
    text-align: center;
  }
}
.p-store-honten-access__store {
  order: 1;
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__store {
    order: 0;
    font-size: 1.5rem;
  }
}
.p-store-honten-access__map {
  order: 2;
  width: calc(100% + 1.25rem * 2);
  max-width: none;
  margin-inline: calc(1.25rem * -1);
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__map {
    order: 0;
    width: 100%;
    max-width: 22.25rem;
    margin-inline: auto;
  }
}
.p-store-honten-access__map img {
  display: block;
  width: 100%;
  aspect-ratio: 375/280;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__map img {
    aspect-ratio: 340/250;
  }
}
.p-store-honten-access__tel-block {
  order: 5;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  align-self: center;
  text-align: center;
  width: fit-content;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__tel-block {
    order: 0;
    width: auto;
    max-width: none;
  }
}
.p-store-honten-access__contact-label {
  order: 4;
  margin: 1.125rem 0 0;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__contact-label {
    order: 0;
  }
}
.p-store-honten-access__phone {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.p-store-honten-access__phone span {
  font-size: 2.25rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__phone {
    font-size: 2.5rem;
  }
  .p-store-honten-access__phone span {
    font-size: inherit;
    line-height: inherit;
  }
}
.p-store-honten-access__phone-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
}
.p-store-honten-access__hours {
  margin: 0;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.p-store-honten-access__tel-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 0.3125rem;
  width: 100%;
  min-height: 5.125rem;
  padding-left: 2.125rem;
  padding-right: 4.25rem;
  background-color: #8b1416;
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.08em;
  text-align: center;
}
.p-store-honten-access__tel-btn::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 0.125rem;
  border-radius: 9999px;
  background-color: #fff;
}
.p-store-honten-access__tel-btn::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
  transform-origin: calc(100% - 1px) 50%;
  width: 0.4375rem;
  height: 0.125rem;
  border-radius: 9999px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__tel-btn {
    width: 100%;
  }
}
.p-store-honten-access__red {
  color: #8b1416;
}
.p-store-honten-access__tel-btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  flex: 0 0 auto;
}
.p-store-honten-access__list {
  margin: 0;
}
.p-store-honten-access__list > div {
  display: grid;
  grid-template-columns: 5.25rem minmax(0, 1fr);
  align-items: start;
  column-gap: 0.875rem;
  row-gap: 0.5rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.p-store-honten-access__list > div:first-child {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__list > div {
    grid-template-columns: 8.125rem 1fr;
    gap: 1.125rem;
  }
}
.p-store-honten-access__list dt,
.p-store-honten-access__list dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__list dt,
  .p-store-honten-access__list dd {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.06em;
  }
}
.p-store-honten-access__list dt {
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__list > div:first-child dd br {
    display: none;
  }
}
.p-store-honten-access__punct-tight {
  display: inline-block;
  margin-inline: -0.18em;
}
.p-store-honten-access__info {
  order: 3;
  width: 100%;
  max-width: 21.25rem;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-store-honten-access__info {
    order: 0;
    max-width: none;
    margin: 0;
  }
}

body.page-store-honten .p-shop {
  padding-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  body.page-store-honten .p-shop {
    padding-top: 4.6875rem;
  }
}

body.page-store-sanda {
  background: #f7f4eb;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  font-variant-east-asian: proportional-width;
  font-optical-sizing: auto;
}
body.page-store-sanda .l-header {
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  body.page-store-sanda .l-header {
    padding: 0.75rem 1.5625rem;
  }
}
body.page-store-sanda .l-header__item a {
  color: #333;
}
body.page-store-sanda .l-header__hamburger span {
  background-color: #333;
}
body.page-store-sanda .p-shop {
  padding-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  body.page-store-sanda .p-shop {
    padding-top: 4.6875rem;
  }
}

.p-store-sanda-hero {
  padding: 4.75rem 0 0 0;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-hero {
    padding: 5.625rem 0 0 1.5625rem;
  }
}
.p-store-sanda-hero__inner {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-hero__inner {
    display: grid;
    grid-template-columns: 26.8447% 73.1553%;
    align-items: start;
    gap: 0;
    width: min(100%, 100vw - 1.5625rem);
    margin-left: auto;
    margin-right: 0;
  }
}
.p-store-sanda-hero__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: fit-content;
  margin-left: 1.25rem;
  order: 2;
  margin-top: 0.875rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-hero__heading {
    order: 0;
    margin-inline: auto;
    margin-top: 6.25rem;
    margin-bottom: 0;
    justify-content: flex-start;
    align-self: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-store-sanda-hero__title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-hero__title {
    font-size: 2.375rem;
  }
}
.p-store-sanda-hero__sub {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #938282;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-hero__sub {
    font-size: 0.8125rem;
  }
}
.p-store-sanda-hero__image {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-hero__image {
    width: 100%;
    overflow: hidden;
  }
}
.p-store-sanda-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-store-sanda-intro {
  position: relative;
  padding: 3.875rem 0 0 1.25rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-intro {
    padding: 5.625rem 0 0 1.5625rem;
    overflow: hidden;
  }
}
.p-store-sanda-intro::before {
  content: "";
  position: absolute;
  left: -0.9375rem;
  bottom: -2.375rem;
  width: 11.25rem;
  height: 11.25rem;
  background: url("../images/store-honten/accent-honten.svg") no-repeat center/contain;
  pointer-events: none;
  opacity: 0.95;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-intro::before {
    left: -6.875rem;
    bottom: 0.25rem;
    width: 27.25rem;
    height: 27.25rem;
  }
}
.p-store-sanda-intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 4.5625rem minmax(0, 1fr);
  align-items: start;
  column-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-intro__inner {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: 0;
    display: grid;
    grid-template-columns: minmax(23.125rem, 1fr) minmax(0, 0.85fr);
    grid-template-rows: auto;
    align-items: start;
    column-gap: 3.25rem;
    min-height: 28.5rem;
  }
}
.p-store-sanda-intro__body {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-intro__body {
    grid-column: 1;
    grid-row: 1;
    width: 23.125rem;
    display: grid;
    justify-items: center;
    justify-self: center;
    align-content: start;
    row-gap: 2.25rem;
  }
}
.p-store-sanda-intro__title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  box-sizing: border-box;
  justify-self: center;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-intro__title {
    padding-top: 2.8125rem;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
    width: 23.125rem;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
    justify-self: start;
    align-self: start;
    margin-inline: 0;
    writing-mode: horizontal-tb;
    white-space: nowrap;
  }
}
.p-store-sanda-intro__title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-intro__title span {
    display: inline-block;
    writing-mode: vertical-rl;
    vertical-align: top;
    flex: 0 0 auto;
  }
}
.p-store-sanda-intro__title span:first-child {
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-intro__title span:first-child {
    margin-top: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-store-sanda-intro__title span:last-child {
    transform: translateY(-2.8125rem);
  }
}
.p-store-sanda-intro__text {
  grid-column: 2;
  grid-row: 2;
  margin: 1.75rem 0 0;
  width: 100%;
  padding-right: 0;
  font-size: 1rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
  text-align: left;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-optical-sizing: auto;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  justify-self: end;
}
.p-store-sanda-intro__text br:first-of-type {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-intro__text {
    grid-column: 1;
    grid-row: 2;
    width: 27.5rem;
    max-width: 27.5rem;
    margin: 0;
    padding-right: 0;
    text-align: left;
    font-size: 1rem;
    line-height: 2.2;
    letter-spacing: 0.08em;
    align-self: start;
    box-sizing: border-box;
  }
  .p-store-sanda-intro__text br:first-of-type {
    display: inline;
  }
}
.p-store-sanda-intro__image {
  grid-column: 2;
  grid-row: 1;
  margin-top: 2.875rem;
  justify-self: end;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-intro__image {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    transform: none;
    align-self: start;
  }
}
.p-store-sanda-intro__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-intro__image img {
    width: 100%;
    max-width: 100%;
  }
}

.p-store-sanda-quality {
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  padding: 3.875rem 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-quality {
    padding: 5.3125rem 1.5625rem 0;
  }
}
.p-store-sanda-quality__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-store-sanda-quality__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-quality__title {
    font-size: 2rem;
  }
  .p-store-sanda-quality__title br {
    display: none;
  }
}
.p-store-sanda-quality__label {
  margin: 0.4375rem 0 2.125rem;
  color: #938282;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.6875rem;
  font-weight: 200;
  letter-spacing: 0.34em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-quality__label {
    margin-top: 0.75rem;
    margin-bottom: 2.375rem;
    font-size: 0.9375rem;
  }
}
.p-store-sanda-quality__list {
  display: grid;
  gap: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-quality__list {
    grid-template-columns: repeat(3, 24.5858375rem);
    align-items: stretch;
    justify-content: center;
    gap: 0.5625rem;
  }
}
.p-store-sanda-quality__item {
  display: grid;
  align-content: start;
  justify-items: stretch;
  height: 100%;
  padding: 1.3125rem 0.625rem 1.5625rem;
  background-color: #fff;
  border: 1px solid rgba(200, 194, 184, 0.5);
}
@media screen and (min-width: 768px) {
  .p-store-sanda-quality__item {
    padding: 1.3125rem 1.125rem 1.5625rem;
  }
}
.p-store-sanda-quality__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  margin-inline: 0;
  margin-bottom: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-quality__head {
    margin-inline: auto;
  }
}
.p-store-sanda-quality__number {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #993133;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
  transform: translateY(0.6em);
  white-space: nowrap;
  flex: 0 0 auto;
}
.p-store-sanda-quality__number::after {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #993133;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .p-store-sanda-quality__number {
    gap: 0.625rem;
    font-size: 1.125rem;
    transform: translateY(0.45em);
  }
  .p-store-sanda-quality__number::after {
    width: 0.375rem;
    height: 0.375rem;
  }
}
.p-store-sanda-quality__heading {
  margin: 0;
  width: auto;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-quality__heading {
    font-size: 1.625rem;
  }
}
.p-store-sanda-quality__image {
  margin-top: 0;
  margin-bottom: 0.6875rem;
}
.p-store-sanda-quality__image img {
  display: block;
  width: 100%;
  aspect-ratio: 302/194;
  object-fit: cover;
}
.p-store-sanda-quality__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-quality__text {
    font-size: 1rem;
    line-height: 2.1;
    letter-spacing: 0.06em;
  }
}
.p-store-sanda-quality__btn {
  margin-top: 2.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-quality__btn {
    margin-top: 3.625rem;
  }
}

.p-store-sanda-access {
  padding: 4.6875rem 1.25rem 5.375rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access {
    padding: 4.6875rem 1.5625rem 5.5rem;
  }
}
.p-store-sanda-access__inner {
  max-width: 70rem;
  margin: 0 auto;
}
.p-store-sanda-access__title {
  margin: 0 0 0.3125rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__title {
    margin-bottom: 1.125rem;
    font-size: 1.5625rem;
  }
}
.p-store-sanda-access__label {
  margin: 0 0 0.5rem;
  color: #938282;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__label {
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
  }
}
.p-store-sanda-access__content {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__content {
    display: grid;
    grid-template-columns: 28.75rem 1fr;
    gap: 3.125rem;
    align-items: start;
  }
}
.p-store-sanda-access__left {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__left {
    display: block;
    text-align: center;
  }
}
.p-store-sanda-access__store {
  order: 1;
  margin: 0 0 1.625rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__store {
    order: 0;
  }
}
.p-store-sanda-access__map {
  order: 2;
  width: calc(100% + 1.25rem * 2);
  max-width: none;
  margin-inline: calc(1.25rem * -1);
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__map {
    order: 0;
    width: 100%;
    max-width: 21.25rem;
    margin-inline: auto;
  }
}
.p-store-sanda-access__map img {
  display: block;
  width: 100%;
  aspect-ratio: 375/280;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.p-store-sanda-access__tel-block {
  order: 5;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  align-self: center;
  text-align: center;
  width: fit-content;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__tel-block {
    order: 0;
    width: auto;
    max-width: none;
  }
}
.p-store-sanda-access__contact-label {
  order: 4;
  margin: 2.8125rem 0 0;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__contact-label {
    order: 0;
  }
}
.p-store-sanda-access__phone {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.p-store-sanda-access__phone span {
  font-size: 2.25rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__phone {
    font-size: 2.5rem;
  }
  .p-store-sanda-access__phone span {
    font-size: inherit;
    line-height: inherit;
  }
}
.p-store-sanda-access__phone-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
}
.p-store-sanda-access__hours {
  margin: 0;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.p-store-sanda-access__tel-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 0;
  width: 100%;
  min-height: 5.125rem;
  padding-left: 2.125rem;
  padding-right: 4.25rem;
  background-color: #8b1416;
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.08em;
  text-align: center;
}
.p-store-sanda-access__tel-btn::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 0.125rem;
  border-radius: 9999px;
  background-color: #fff;
}
.p-store-sanda-access__tel-btn::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
  transform-origin: calc(100% - 1px) 50%;
  width: 0.4375rem;
  height: 0.125rem;
  border-radius: 9999px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__tel-btn {
    width: 100%;
  }
}
.p-store-sanda-access__red {
  color: #8b1416;
}
.p-store-sanda-access__tel-btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
  flex: 0 0 auto;
}
.p-store-sanda-access__list {
  margin: 0;
}
.p-store-sanda-access__list > div {
  display: grid;
  grid-template-columns: 5.25rem minmax(0, 1fr);
  align-items: start;
  column-gap: 0.875rem;
  row-gap: 0.5rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.p-store-sanda-access__list > div:first-child {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__list > div {
    grid-template-columns: 6rem 1fr;
    gap: 0.625rem;
  }
}
.p-store-sanda-access__list dt,
.p-store-sanda-access__list dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__list dt,
  .p-store-sanda-access__list dd {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.06em;
  }
}
.p-store-sanda-access__list dt {
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__list > div:first-child dd br {
    display: none;
  }
}
.p-store-sanda-access__punct-tight {
  display: inline-block;
  margin-inline: -0.18em;
}
.p-store-sanda-access__nowrap {
  white-space: normal;
}
.p-store-sanda-access__section-label {
  display: inline-block;
  margin-top: 0.5rem;
}
.p-store-sanda-access__info {
  order: 3;
  width: 100%;
  max-width: 24.375rem;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-access__info {
    order: 0;
    max-width: none;
    margin: 0;
  }
}

.p-store-sanda-bridge {
  display: block;
  margin-top: 4.875rem;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-bridge {
    margin-top: 5.3125rem;
  }
}
.p-store-sanda-bridge img {
  display: block;
  width: 100%;
  height: auto;
}

.p-store-sanda-course {
  padding: 4.125rem calc(1.25rem - 0.6875rem) 5rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-course {
    padding: 3.9375rem 1.5625rem 5rem;
  }
}
.p-store-sanda-course__inner {
  max-width: 73.75rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-course__inner {
    max-width: 71.75rem;
  }
}
.p-store-sanda-course__title {
  margin: 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-course__title {
    font-size: 1.5625rem;
  }
}
.p-store-sanda-course__label {
  margin: 0.625rem 0 1.5rem;
  color: #938282;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-course__label {
    margin-bottom: 1.8125rem;
    font-size: 0.75rem;
    letter-spacing: 0.34em;
  }
}
.p-store-sanda-course__frame {
  position: relative;
  padding: 0.5625rem 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-course__frame {
    padding: 0.75rem 1.125rem;
  }
}
.p-store-sanda-course__frame::before, .p-store-sanda-course__frame::after {
  content: "";
  position: absolute;
  left: 0.1875rem;
  width: calc(100% - 0.375rem);
  height: 1.25rem;
  border-left: 1px solid #111010;
  border-right: 1px solid #111010;
  pointer-events: none;
}
.p-store-sanda-course__frame::before {
  top: 0;
  border-top: 1px solid #111010;
}
.p-store-sanda-course__frame::after {
  bottom: 0;
  border-bottom: 1px solid #111010;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-course__frame::before, .p-store-sanda-course__frame::after {
    left: 0.4375rem;
    width: calc(100% - 0.875rem);
    height: 2.375rem;
  }
}
.p-store-sanda-course__panel {
  background-color: #fff;
  aspect-ratio: 995.7067/523.2285;
  padding: 1.5rem 1.5rem 1.125rem;
  display: grid;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-course__panel {
    padding: 2.125rem 0 1.125rem;
  }
}
.p-store-sanda-course__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.875rem;
  width: 100%;
  margin-inline: auto;
  align-content: center;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-course__list {
    grid-template-columns: 5.5rem minmax(0, 1fr) 5.5rem minmax(0, 1fr) 5.5rem;
    column-gap: 0;
    row-gap: 1.625rem;
  }
}
.p-store-sanda-course__item-title {
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #111010;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-course__item-title {
    font-size: 1.125rem;
  }
}
.p-store-sanda-course__item-text {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.95;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-course__item-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}
.p-store-sanda-course__note {
  margin: 0.5625rem 0 0;
  padding-inline: 1.0625rem;
  font-size: 0.8125rem;
  line-height: 1.95;
  letter-spacing: 0.04em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-store-sanda-course__note {
    padding-inline: 0;
    font-size: 0.9375rem;
    line-height: 2;
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .p-store-sanda-course__item:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
  }
  .p-store-sanda-course__item:nth-child(2) {
    grid-column: 4;
    grid-row: 1;
  }
  .p-store-sanda-course__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .p-store-sanda-course__item:nth-child(4) {
    grid-column: 4;
    grid-row: 2;
  }
  .p-store-sanda-course__item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
  .p-store-sanda-course__item:nth-child(6) {
    grid-column: 4;
    grid-row: 3;
  }
}

.p-sub-hero {
  padding-top: 4.75rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-sub-hero {
    display: flex;
    align-items: stretch;
    min-height: 27.5rem;
    padding-top: 5.625rem;
  }
}
.p-sub-hero__img {
  width: 100%;
  overflow: hidden;
}
.p-sub-hero__img img {
  display: block;
  width: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-sub-hero__img {
    order: 2;
    flex: 0 0 72%;
  }
  .p-sub-hero__img img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
}
.p-sub-hero__body {
  padding: 1.375rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-hero__body {
    order: 1;
    flex: 0 0 28%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3.125rem 3.75rem 3.125rem;
  }
}
.p-sub-hero__ja {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-sub-hero__ja {
    font-size: 1.75rem;
  }
}
.p-sub-hero__en {
  margin: 0.875rem 0 0;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  line-height: 1;
  color: #756d6c;
}
@media screen and (min-width: 768px) {
  .p-sub-hero__en {
    margin-top: 1.25rem;
    font-size: 0.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-hero.p-sub-hero--contact .p-sub-hero__ja {
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-hero.p-sub-hero--about .p-sub-hero__ja {
    font-size: 2rem;
  }
}
.p-sub-hero.p-sub-hero--about .p-sub-hero__en {
  margin-top: 0.8125rem;
  font-size: 0.6875rem;
  line-height: 2;
  letter-spacing: 0.16em;
}
@media screen and (min-width: 768px) {
  .p-sub-hero.p-sub-hero--about .p-sub-hero__body {
    padding: 3.125rem 3.75rem 6.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-hero.p-sub-hero--wholesale-contact .p-sub-hero__ja {
    white-space: nowrap;
    font-size: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-hero.p-quality-hero .p-sub-hero__en {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sub-hero.p-quality-hero .p-sub-hero__body {
    padding: 3.125rem 3.75rem 10rem;
  }
}

.p-news-list {
  padding: 2.375rem 1.25rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-news-list {
    padding: 6.25rem 1.5625rem 6.875rem;
  }
}
.p-news-list__inner {
  max-width: 50rem;
  margin: 0 auto;
}
.p-news-list__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
}
.p-news-list__item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
}
.p-news-list__item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.875rem;
  padding: 1.875rem 0.25rem;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-news-list__item a:hover {
  opacity: 0.65;
}
@media screen and (min-width: 768px) {
  .p-news-list__item a {
    gap: 2.25rem;
    padding: 3.125rem 0.5rem;
  }
}
.p-news-list__date {
  flex-shrink: 0;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #756d6c;
}
.p-news-list__text {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-news-list__text {
    font-size: 1rem;
  }
}

.p-news-detail {
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  padding: 2.1875rem 1.25rem 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail {
    padding: 0 1.5625rem 6.25rem;
  }
}
.p-news-detail__inner {
  max-width: 62.5rem;
  margin: 0 auto;
}
.p-news-detail__header {
  padding-bottom: 0rem;
}
.p-news-detail__title {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-news-detail__title {
    font-size: 1.75rem;
  }
}
.p-news-detail__date {
  display: block;
  margin-top: 0.75rem;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #756d6c;
}
.p-news-detail__thumbnail {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__thumbnail {
    margin-top: 2.5rem;
  }
}
.p-news-detail__thumbnail img {
  display: block;
  width: 100%;
  /*max-width: 29.375rem; */
  aspect-ratio: auto;
  object-fit: cover;
	height:auto;
}
.p-news-detail__body {
  margin-top: 1.25rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #1a1a1a;
}
@media screen and (min-width: 768px) {
  .p-news-detail__body {
    margin-top: 3.75rem;
    padding-bottom: 3.125rem;
  }
}
.p-news-detail__body p {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-news-detail__body p {
    font-size: 1rem;
  }
}
.p-news-detail__body p + p {
  margin-top: 1rem;
}
.p-news-detail__body h2 {
  margin: 1.75rem 0 0.625rem;
  padding-left: 0.625rem;
  border-left: 4.5px solid #9e1021;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-news-detail__body h2 {
    margin-top: 5rem;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }
}
.p-news-detail__nav {
  display: flex;
  justify-content: center;
  gap: 5rem;
  align-items: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__nav {
    gap: 6.25rem;
    margin-top: 3.75rem;
  }
}
.p-news-detail__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #333;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-news-detail__nav-link {
    gap: 1.25rem;
    font-size: 1rem;
  }
}
.p-news-detail__nav-link--prev:hover .p-news-detail__nav-arrow img {
  transform: translateX(-0.5rem);
}
.p-news-detail__nav-link--next:hover .p-news-detail__nav-arrow img {
  transform: translateX(0.5rem);
}
.p-news-detail__nav-arrow {
  display: block;
  flex-shrink: 0;
}
.p-news-detail__nav-arrow img {
  display: block;
  width: 2.5rem;
  height: auto;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-news-detail__nav-arrow img {
    width: 4.375rem;
  }
}
.p-news-detail__back {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news-detail__back {
    margin-top: 3.125rem;
  }
}

.p-contact {
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  padding: 2rem 1.25rem 7.8125rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding: 5rem 1.5625rem 7.5rem;
  }
}
.p-contact__inner {
  max-width: 50rem;
  margin: 0 auto;
}
.p-contact__form {
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    padding: 0;
  }
}
.p-contact__lead {
  text-align: left;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__lead {
    text-align: center;
    margin-bottom: 3.125rem;
  }
}
.p-contact__lead p {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-contact__lead p {
    font-size: 1rem;
  }
}
.p-contact__lead p + p {
  margin-top: 0.25rem;
}
.p-contact__note {
  font-size: 0.75rem !important;
  color: #756d6c !important;
  margin-top: 0.75rem !important;
}
@media screen and (min-width: 768px) {
  .p-contact__note {
    font-size: 0.8125rem !important;
  }
}
.p-contact__field {
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__field {
    display: flex;
    align-items: flex-start;
    gap: 1.875rem;
    margin-bottom: 2.5rem;
  }
}
.p-contact__label {
  display: block;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #333;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__label {
    flex: 0 0 10.625rem;
    font-size: 0.9375rem;
    margin-bottom: 0;
    padding-top: 0.875rem;
  }
}
.p-contact__required {
  color: #9a1421;
  font-size: 0.8125rem;
  vertical-align: super;
}
.p-contact__input, .p-contact__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
  background-color: #fff;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .p-contact__input, .p-contact__textarea {
    flex: 1;
    font-size: 0.9375rem;
  }
}
.p-contact__input:focus, .p-contact__textarea:focus {
  border-color: rgba(26, 26, 26, 0.5);
}
.p-contact__input::placeholder, .p-contact__textarea::placeholder {
  color: rgba(117, 109, 108, 0.7);
}
.p-contact__textarea {
  resize: vertical;
  min-height: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__textarea {
    min-height: 11.25rem;
  }
}
.p-contact__agreement {
  margin-top: 1.875rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-contact__agreement {
    text-align: center;
    margin-top: 3.125rem;
  }
}
.p-contact__agreement-text {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-contact__agreement-text {
    font-size: 0.875rem;
  }
}
.p-contact__agreement-note {
  margin: 0.375rem 0 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  color: #756d6c;
}
@media screen and (min-width: 768px) {
  .p-contact__agreement-note {
    margin: 0.8125rem 0 0;
    font-size: 0.8125rem;
  }
}
.p-contact__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.875rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-contact__checkbox {
    margin-top: 3.125rem;
  }
}
.p-contact__checkbox-input {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #9a1421;
  cursor: pointer;
  flex-shrink: 0;
}
.p-contact__checkbox-text {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-contact__checkbox-text {
    font-size: 0.9375rem;
  }
}
.p-contact__privacy-link {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: opacity 0.3s ease;
}
.p-contact__privacy-link:hover {
  opacity: 0.6;
}
.p-contact__submit {
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__submit {
    margin-top: 3.125rem;
  }
}
.p-contact__submit-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 16.25rem;
  padding: 1.25rem 2.5rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #fff;
  background-color: #9a1421;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: color 0.4s ease;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-contact__submit-btn {
    width: 18.75rem;
    font-size: 1rem;
  }
}
.p-contact__submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
}
.p-contact__submit-btn:hover:not(:disabled) {
  color: #9a1421;
}
.p-contact__submit-btn:hover:not(:disabled)::before {
  transform: scaleX(1);
}
.p-contact__submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.p-wholesale-contact {
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  padding: 2rem 1.25rem 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact {
    padding: 5rem 1.5625rem 7.5rem;
  }
}
.p-wholesale-contact__inner {
  max-width: 54.375rem;
  margin: 0 auto;
}
.p-wholesale-contact__form {
  padding: 0 1.25rem;
  max-width: 50rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__form {
    padding: 0;
  }
}
.p-wholesale-contact__lead {
  text-align: left;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__lead {
    text-align: center;
    margin-bottom: 5rem;
  }
}
.p-wholesale-contact__lead p {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__lead p {
    font-size: 1rem;
  }
}
.p-wholesale-contact__lead p + p {
  margin-top: 0.25rem;
}
.p-wholesale-contact__tel-block {
  padding: 1.5rem 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 3.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__tel-block {
    display: flex;
    align-items: center;
    gap: 3.125rem;
    padding: 2rem 0;
    margin-bottom: 4.375rem;
    text-align: left;
  }
}
.p-wholesale-contact__tel-label {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__tel-label {
    flex-shrink: 0;
    font-size: 1.0625rem;
  }
}
.p-wholesale-contact__tel-number {
  display: block;
  margin-top: 1.5rem;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 2.5625rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #333;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__tel-number {
    margin-top: 0;
    font-size: 3.125rem;
  }
}
.p-wholesale-contact__tel-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__tel-info {
    margin: 0;
    margin-left: auto;
  }
}
.p-wholesale-contact__tel-info span {
  display: block;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__tel-info span {
    font-size: 0.8125rem;
  }
}
.p-wholesale-contact__field {
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__field {
    display: flex;
    align-items: flex-start;
    gap: 1.875rem;
    margin-bottom: 2.5rem;
  }
}
.p-wholesale-contact__label {
  display: block;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #333;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__label {
    flex: 0 0 9.375rem;
    font-size: 1rem;
    margin-bottom: 0;
    padding-top: 0.875rem;
  }
}
.p-wholesale-contact__required {
  color: #9a1421;
  font-size: 0.8125rem;
  vertical-align: super;
}
.p-wholesale-contact__input, .p-wholesale-contact__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
  background-color: #fff;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__input, .p-wholesale-contact__textarea {
    flex: 1;
    font-size: 0.9375rem;
  }
}
.p-wholesale-contact__input:focus, .p-wholesale-contact__textarea:focus {
  border-color: rgba(26, 26, 26, 0.5);
}
.p-wholesale-contact__input::placeholder, .p-wholesale-contact__textarea::placeholder {
  color: rgba(117, 109, 108, 0.7);
}
.p-wholesale-contact__textarea {
  resize: vertical;
  min-height: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__textarea {
    min-height: 11.25rem;
  }
}
.p-wholesale-contact__select-wrap {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__select-wrap {
    flex: 1;
    max-width: 14.375rem;
  }
}
.p-wholesale-contact__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid #333;
  border-bottom: 1.5px solid #333;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.p-wholesale-contact__select {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
  background-color: #fff;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 0;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__select {
    font-size: 0.9375rem;
  }
}
.p-wholesale-contact__select:focus {
  border-color: rgba(26, 26, 26, 0.5);
}
.p-wholesale-contact__select:invalid,
.p-wholesale-contact__select option[value=""] {
  color: rgba(117, 109, 108, 0.7);
}
.p-wholesale-contact__agreement {
  margin-top: 1.875rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__agreement {
    text-align: center;
    margin-top: 3.125rem;
  }
}
.p-wholesale-contact__agreement-text {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__agreement-text {
    font-size: 1rem;
  }
}
.p-wholesale-contact__agreement-note {
  margin: 0.375rem 0 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  color: #756d6c;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__agreement-note {
    font-size: 1rem;
  }
}
.p-wholesale-contact__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__checkbox {
    margin-top: 1.25rem;
  }
}
.p-wholesale-contact__checkbox-input {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #9a1421;
  cursor: pointer;
  flex-shrink: 0;
}
.p-wholesale-contact__checkbox-text {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__checkbox-text {
    font-size: 1rem;
  }
}
.p-wholesale-contact__privacy-link {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: opacity 0.3s ease;
}
.p-wholesale-contact__privacy-link:hover {
  opacity: 0.6;
}
.p-wholesale-contact__submit {
  margin-top: 2.8125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__submit {
    margin-top: 3.125rem;
  }
}
.p-wholesale-contact__submit-btn {
  position: relative;
  overflow: hidden;
  display: block;
  width: 13.75rem;
  margin-inline: auto;
  padding: 1.25rem 2.5rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #fff;
  background-color: #9a1421;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: color 0.4s ease;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact__submit-btn {
    display: inline-block;
    width: 18.75rem;
    font-size: 1rem;
  }
}
.p-wholesale-contact__submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
}
.p-wholesale-contact__submit-btn:hover:not(:disabled) {
  color: #9a1421;
}
.p-wholesale-contact__submit-btn:hover:not(:disabled)::before {
  transform: scaleX(1);
}
.p-wholesale-contact__submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

body.page-wholesale {
  background: #f7f4eb;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  font-variant-east-asian: proportional-width;
  font-optical-sizing: auto;
}
body.page-wholesale p,
body.page-wholesale li {
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  font-variant-east-asian: proportional-width;
  font-optical-sizing: auto;
}
body.page-wholesale .l-header {
  background-color: rgba(247, 244, 235, 0.95);
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  body.page-wholesale .l-header {
    padding: 0.75rem 1.5625rem;
  }
}
body.page-wholesale .l-header__item a {
  color: #333;
}
body.page-wholesale .l-header__hamburger span {
  background-color: #333;
}

.p-wholesale-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17.8125rem;
  min-height: 3.625rem;
  padding: 1rem 3.5rem 1rem 1.75rem;
  background-color: #a31316;
  color: #fff;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-wholesale-btn {
    min-width: 20rem;
    min-height: 4.5rem;
    font-size: 1.125rem;
  }
}
.p-wholesale-btn::after {
  content: "";
  position: absolute;
  right: 1.375rem;
  top: 50%;
  width: 1.125rem;
  height: 0.125rem;
  background-color: #fff;
  transform: translateY(-50%);
}
.p-wholesale-btn::before {
  content: "";
  position: absolute;
  right: 1.375rem;
  top: 50%;
  width: 0.4375rem;
  height: 0.125rem;
  background-color: #fff;
  transform: translateY(-50%) rotate(35deg);
  transform-origin: calc(100% - 1px) 50%;
}
.p-wholesale-btn:hover {
  opacity: 0.8;
}

.p-wholesale-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #c21316;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-wholesale-link {
    font-size: 1rem;
  }
}
.p-wholesale-link::before {
  content: "•";
  font-size: 1em;
  line-height: 1;
}
.p-wholesale-link--inline {
  gap: 0;
  color: #c21316;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.p-wholesale-link--inline::before {
  content: none;
}

.p-wholesale-under-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-bottom: 0.625rem;
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-wholesale-under-link {
    font-size: 1.25rem;
  }
}
.p-wholesale-under-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(17, 16, 16, 0.45);
}

.p-wholesale-accent, .p-wholesale-intro__accent {
  position: absolute;
  pointer-events: none;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.p-wholesale-hero {
  padding: 4.75rem 0 0;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-wholesale-hero {
    padding: 5.625rem 0 0 1.5625rem;
  }
}
.p-wholesale-hero__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-wholesale-hero__inner {
    display: grid;
    grid-template-columns: 26.8447% 73.1553%;
    align-items: center;
    width: min(100%, 100vw - 1.5625rem);
    margin-left: auto;
  }
}
.p-wholesale-hero__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin: 1.125rem 0 0 1.25rem;
  order: 2;
}
@media screen and (min-width: 768px) {
  .p-wholesale-hero__heading {
    order: 0;
    margin: 0 auto;
    align-self: center;
  }
}
.p-wholesale-hero__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-hero__title {
    font-size: 1.75rem;
  }
}
.p-wholesale-hero__sub {
  margin: 0.625rem 0 0;
  color: #938282;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-hero__sub {
    font-size: 0.8125rem;
  }
}
.p-wholesale-hero__image {
  order: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-wholesale-hero__image {
    justify-self: end;
  }
}
.p-wholesale-hero__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1000/470;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-wholesale-hero__image img {
    width: auto;
    max-width: min(100%, 77.875rem);
  }
}

.p-wholesale-intro {
  position: relative;
  padding: 4.875rem 1.25rem 5rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-wholesale-intro {
    padding: 5.625rem 1.5625rem 5.875rem;
    overflow: visible;
    z-index: 1;
  }
}
.p-wholesale-intro__inner {
  max-width: 61.25rem;
  margin: 0 auto;
  text-align: center;
}
.p-wholesale-intro__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-intro__title {
    font-size: 1.75rem;
    line-height: 1.72;
  }
}
.p-wholesale-intro__text {
  margin: 1.75rem auto 0;
  max-width: 47.5rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-intro__text {
    font-size: 1rem;
    line-height: 1.95;
  }
}
.p-wholesale-intro__accent {
  right: -5.375rem;
  bottom: -0.75rem;
  width: 11.875rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-intro__accent {
    right: 2.6875rem;
    bottom: -6.375rem;
    width: 20rem;
  }
}

.p-wholesale-features {
  position: relative;
  padding: 3.625rem 1.25rem 3.875rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-wholesale-features {
    padding: 4.5rem 1.5625rem 5rem;
  }
}
.p-wholesale-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
.p-wholesale-features__inner {
  position: relative;
  z-index: 1;
  max-width: 73.75rem;
  margin: 0 auto;
}
.p-wholesale-features__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-wholesale-features__title {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.p-wholesale-features__label {
  margin: 0.5rem 0 2.9375rem;
  color: #938282;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-wholesale-features__label {
    margin-bottom: 3.9375rem;
    font-size: 0.875rem;
  }
}
.p-wholesale-features__list {
  display: grid;
  gap: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-features__list {
    grid-template-columns: repeat(3, 19.58333125rem);
    justify-content: center;
    gap: 1.875rem;
  }
}
.p-wholesale-features__item {
  position: relative;
  padding: 3.4375rem 1.5625rem 1.6875rem;
  background-color: rgba(255, 255, 255, 0.92);
}
@media screen and (min-width: 768px) {
  .p-wholesale-features__item {
    padding: 4.0625rem 2.375rem 2.5rem;
  }
}
.p-wholesale-features__number {
  position: absolute;
  left: 50%;
  top: -0.9375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  border-radius: 50%;
  background-color: #a31316;
  color: #fff;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-wholesale-features__number {
    width: 3.125rem;
    height: 3.125rem;
    top: -0.9375rem;
    font-size: 1.125rem;
  }
}
.p-wholesale-features__heading {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-wholesale-features__heading {
    font-size: 1.375rem;
    line-height: 1.6;
  }
}
.p-wholesale-features__line {
  width: 2.125rem;
  height: 1px;
  margin: 0.8125rem auto 0;
  background-color: #b83032;
}
@media screen and (min-width: 768px) {
  .p-wholesale-features__line {
    width: 100%;
  }
}
.p-wholesale-features__text {
  margin: 1.0625rem 0 0;
  font-size: 0.875rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-features__text {
    font-size: 1rem;
    line-height: 2;
  }
}

.p-wholesale-consult {
  padding: 3.125rem 1.25rem 3.6875rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-wholesale-consult {
    padding: 4.25rem 1.5625rem 4.5625rem;
  }
}
.p-wholesale-consult__inner {
  max-width: 61.25rem;
  margin: 0 auto;
  text-align: center;
}
.p-wholesale-consult__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-consult__title {
    font-size: 2rem;
  }
}
.p-wholesale-consult__box {
  margin: 1.875rem auto 0;
  padding: 1.625rem 1.5625rem;
  background-color: rgba(255, 255, 255, 0.92);
}
@media screen and (min-width: 768px) {
  .p-wholesale-consult__box {
    max-width: 50rem;
    padding: 2.125rem 6.25rem 2.125rem 6.9375rem;
  }
}
.p-wholesale-consult__list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.p-wholesale-consult__item {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-consult__item {
    font-size: 1rem;
    line-height: 2.1;
  }
}
.p-wholesale-consult__item::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #b01116;
  font-size: 0.625rem;
  line-height: 2.8;
}
.p-wholesale-consult__text {
  margin: 1.75rem 0 0;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-consult__text {
    font-size: 1rem;
  }
}
.p-wholesale-consult__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-consult__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
}

.p-wholesale-lineup {
  position: relative;
  padding: 2.625rem 1.25rem 3.875rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup {
    padding: 3.5rem 1.5625rem 4.75rem;
  }
}
.p-wholesale-lineup::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
.p-wholesale-lineup__inner {
  position: relative;
  z-index: 1;
  max-width: 73.75rem;
  margin: 0 auto;
  display: grid;
  gap: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__inner {
    grid-template-columns: 34.0625rem 3.125rem 32.5rem;
    justify-content: center;
    align-items: start;
    column-gap: 0;
    row-gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__body {
    grid-column: 1;
  }
}
.p-wholesale-lineup__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__title {
    font-size: 2rem;
  }
}
.p-wholesale-lineup__text {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__text {
    font-size: 1rem;
  }
}
.p-wholesale-lineup__categories {
  display: grid;
  gap: 0.375rem;
  margin: 1.75rem 0 0;
  padding: 1.5rem 0;
  list-style: none;
  border-top: 1px solid rgba(17, 16, 16, 0.16);
  border-bottom: 1px solid rgba(17, 16, 16, 0.16);
}
.p-wholesale-lineup__categories li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__categories li {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.p-wholesale-lineup__categories li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #b01116;
  font-size: 0.625rem;
  line-height: 2.8;
}
.p-wholesale-lineup__sample {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__sample {
    font-size: 1rem;
  }
}
.p-wholesale-lineup__sample--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__sample--pc {
    display: block;
  }
}
.p-wholesale-lineup__note {
  margin: 0.375rem 0 0;
  color: #8d8d8d;
  font-size: 0.75rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.p-wholesale-lineup__note--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__note--pc {
    display: block;
  }
}
.p-wholesale-lineup__sp-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__sp-footer {
    display: none;
  }
}
.p-wholesale-lineup__sample--sp {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.p-wholesale-lineup__note--sp {
  color: #8d8d8d;
  font-size: 0.75rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.p-wholesale-lineup__sp-actions {
  margin-top: 0.5rem;
}
.p-wholesale-lineup__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.875rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__actions {
    display: flex;
    align-items: center;
    gap: 1.375rem;
  }
}
.p-wholesale-lineup__visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__visual {
    grid-column: 3;
    grid-template-columns: repeat(2, 16.25rem);
    row-gap: 1rem;
    column-gap: 0.5rem;
  }
}
.p-wholesale-lineup__card {
  text-align: center;
}
.p-wholesale-lineup__card img {
  display: block;
  width: 100%;
  padding: 0.75rem 0.625rem;
  background-color: rgba(255, 255, 255, 0.88);
  aspect-ratio: 230/140;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__card img {
    padding: 1.125rem 0.875rem;
    aspect-ratio: 260/180;
  }
}
.p-wholesale-lineup__card p {
  margin: 0.625rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__card p {
    font-size: 1rem;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .p-wholesale-lineup__card p br {
    display: none;
  }
}

.p-wholesale-pack {
  padding: 4.0625rem 1.25rem 2.6875rem;
  background-color: rgba(224, 220, 209, 0.6);
}
@media screen and (min-width: 768px) {
  .p-wholesale-pack {
    padding: 4.9375rem 1.5625rem 5rem;
  }
}
.p-wholesale-pack__inner {
  max-width: 73.75rem;
  margin: 0 auto;
  display: grid;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-pack__inner {
    grid-template-columns: 34.0625rem 3.125rem 32.5rem;
    justify-content: center;
    align-items: start;
    column-gap: 0;
    row-gap: 0;
  }
}
.p-wholesale-pack__body {
  order: 2;
}
@media screen and (min-width: 768px) {
  .p-wholesale-pack__body {
    order: 1;
    grid-column: 1;
  }
}
.p-wholesale-pack__image {
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-wholesale-pack__image {
    order: 2;
    grid-column: 3;
  }
}
.p-wholesale-pack__image img {
  display: block;
  width: 100%;
  aspect-ratio: 530/411;
  object-fit: cover;
}
.p-wholesale-pack__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-pack__title {
    font-size: 2rem;
  }
}
.p-wholesale-pack__text {
  margin: 1.375rem 0 0;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-pack__text {
    margin-top: 1.6875rem;
    font-size: 1rem;
  }
}
.p-wholesale-pack__list {
  display: grid;
  gap: 0.5625rem;
  margin: 1.75rem 0 0;
  padding: 1.5rem 0;
  list-style: none;
  border-top: 1px solid rgba(17, 16, 16, 0.16);
  border-bottom: 1px solid rgba(17, 16, 16, 0.16);
}
@media screen and (min-width: 768px) {
  .p-wholesale-pack__list {
    margin-top: 2.5rem;
    padding-top: 1.6875rem;
    padding-bottom: 2.125rem;
  }
}
.p-wholesale-pack__item {
  display: grid;
  grid-template-columns: 2.125rem 1fr;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-pack__item {
    font-size: 0.875rem;
  }
}
.p-wholesale-pack__item-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 1.25rem;
  background-color: #3d3a38;
  color: #fff;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
.p-wholesale-pack__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.375rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-wholesale-pack__actions {
    margin-top: 2.4375rem;
    justify-content: flex-start;
  }
}

.p-wholesale-flow {
  padding: 2.6875rem 1.25rem 2.6875rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-wholesale-flow {
    padding: 5.625rem 1.5625rem 3.6875rem;
  }
}
.p-wholesale-flow__inner {
  max-width: 73.75rem;
  margin: 0 auto;
  text-align: center;
}
.p-wholesale-flow__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-flow__title {
    font-size: 2rem;
  }
}
.p-wholesale-flow__lead {
  margin: 1.375rem auto 0;
  max-width: 47.5rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-flow__lead {
    font-size: 1rem;
  }
}
.p-wholesale-flow__steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-flow__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
    margin-top: 3.3125rem;
  }
}
.p-wholesale-flow__step {
  position: relative;
  padding: 3.375rem 1.125rem 2.125rem;
  background-color: rgba(255, 255, 255, 0.94);
}
@media screen and (min-width: 768px) {
  .p-wholesale-flow__step {
    aspect-ratio: 313.3333/210;
    padding: 3.25rem 1.5rem 2.375rem;
  }
}
.p-wholesale-flow__step::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.75rem;
  width: 0;
  height: 0;
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
  border-top: 0.75rem solid rgba(255, 255, 255, 0.94);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-wholesale-flow__step::after {
    right: -0.75rem;
    left: auto;
    top: 50%;
    bottom: auto;
    border-top: 0.625rem solid transparent;
    border-bottom: 0.625rem solid transparent;
    border-left: 0.75rem solid rgba(255, 255, 255, 0.94);
    border-right: 0;
    transform: translateY(-50%);
  }
}
.p-wholesale-flow__step:last-child::after {
  content: none;
}
.p-wholesale-flow__meta {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  margin: 0;
  background-color: #16202d;
  color: #fff;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  line-height: 1.3;
}
.p-wholesale-flow__heading {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-flow__heading {
    font-size: 1.5625rem;
  }
}
.p-wholesale-flow__line {
  width: 3.25rem;
  height: 1px;
  margin: 1.125rem auto 0;
  background-color: #111010;
}
.p-wholesale-flow__text, .p-wholesale-flow__sub {
  margin: 1.125rem 0 0;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-flow__text, .p-wholesale-flow__sub {
    font-size: 1rem;
  }
}
.p-wholesale-flow__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.875rem;
  justify-content: center;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-flow__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-wholesale-flow__actions .p-wholesale-btn {
    width: 23.33333125rem;
    min-width: 23.33333125rem;
  }
}
.p-wholesale-flow__note {
  margin: 0.625rem 0 0;
  color: #b0b0b0;
  font-size: 0.75rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.p-wholesale-purchase {
  position: relative;
  padding: 2.6875rem 1.25rem 3.875rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-wholesale-purchase {
    padding: 3.6875rem 1.5625rem 4.9375rem;
  }
}
.p-wholesale-purchase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
.p-wholesale-purchase__inner {
  position: relative;
  z-index: 1;
  max-width: 61.25rem;
  margin: 0 auto;
  text-align: center;
}
.p-wholesale-purchase__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-purchase__title {
    font-size: 2rem;
  }
}
.p-wholesale-purchase__text {
  margin: 1.5rem auto 0;
  max-width: 47.5rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-purchase__text {
    font-size: 1rem;
    letter-spacing: 0.06em;
  }
}
.p-wholesale-purchase__sp-br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-wholesale-purchase__sp-br {
    display: inline;
  }
}
.p-wholesale-purchase__punct-tight {
  display: inline-block;
  margin-inline: -0.18em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-purchase__punct-tight {
    margin-inline: 0;
  }
}
.p-wholesale-purchase__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.125rem;
  flex-wrap: wrap;
}

.p-wholesale-contact-cta {
  position: relative;
  padding: 3.9375rem 1.25rem 3.9375rem;
  background: url("../images/wholesale/contact-cta-bg.png") no-repeat center/cover;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact-cta {
    padding: 4.6875rem 1.5625rem 6rem;
  }
}
.p-wholesale-contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}
.p-wholesale-contact-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 61.25rem;
  margin: 0 auto;
}
.p-wholesale-contact-cta__title {
  margin: 0;
  font-size: 1.83333125rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact-cta__title {
    font-size: 2.6875rem;
  }
}
.p-wholesale-contact-cta__sp-br {
  display: inline;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact-cta__sp-br {
    display: none;
  }
}
.p-wholesale-contact-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.375rem 0 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact-cta__phone {
    font-size: 3.3125rem;
  }
}
.p-wholesale-contact-cta__phone-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact-cta__phone-icon {
    width: 2.125rem;
    height: 2.125rem;
  }
}
.p-wholesale-contact-cta__person {
  margin: 0.5625rem 0 0;
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact-cta__person {
    margin-top: 1rem;
    font-size: 1rem;
  }
}
.p-wholesale-contact-cta__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-wholesale-contact-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
}

.page-store-jyoukamati .l-header.is-fixed {
  background: #f7f4eb url("../images/store-jyoukamati/access-bg-pattern.svg") repeat;
}
@media screen and (min-width: 768px) {
  .page-store-jyoukamati .l-header {
    background: #f7f4eb url("../images/store-jyoukamati/access-bg-pattern.svg") repeat;
    box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.08);
  }
  .page-store-jyoukamati .l-header .l-header__item a {
    color: #333;
  }
  .page-store-jyoukamati .l-header .l-header__logo-img--white {
    opacity: 0;
  }
  .page-store-jyoukamati .l-header .l-header__logo-img--black {
    opacity: 1;
  }
}

.p-store-jyoukamati-hero {
  position: relative;
  z-index: 1;
  padding: 0;
  background: #f7f4eb url("../images/store-jyoukamati/access-bg-pattern.svg") repeat;
  background-size: 4.375rem 4.375rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-hero {
    padding: 5.625rem 0 0;
  }
}
.p-store-jyoukamati-hero__inner {
  position: relative;
  height: 41.5625rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-hero__inner {
    height: auto;
    min-height: 37.5rem;
    display: flex;
    align-items: stretch;
  }
}
.p-store-jyoukamati-hero__image {
  position: absolute;
  inset: 0;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-hero__image {
    position: static;
    flex: 0 0 80%;
    overflow: hidden;
  }
}
.p-store-jyoukamati-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-hero__image img {
    aspect-ratio: auto;
  }
}
.p-store-jyoukamati-hero__title-area {
  position: absolute;
  top: 5.625rem;
  right: 1.5rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-hero__title-area {
    position: static;
    flex: 0 0 20%;
    margin: 0;
  }
}
.p-store-jyoukamati-hero__deco {
  display: none;
	height:100vh;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-hero__deco {
    display: block;
    position: absolute;
    width: 32.6875rem;
    height: 32.6875rem;
    right: -1.25rem;
    bottom: -12.5rem;
    pointer-events: none;
    user-select: none;
  }
}
.p-store-jyoukamati-hero__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  color: #f7f4eb;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-hero__title {
    padding: 2.5rem 3.125rem;
    font-size: 1.875rem;
    line-height: 1.8;
    color: #333;
  }
}
.p-store-jyoukamati-hero__title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-hero__title span:last-child {
    margin-top: 6.875rem;
  }
}

.p-store-jyoukamati-intro {
  position: relative;
  padding: 5.75rem 1.25rem 0;
  background: #f7f4eb url("../images/store-jyoukamati/access-bg-pattern.svg") repeat;
  background-size: 4.375rem 4.375rem;
  margin-top: -5rem;
  padding-top: 6.75rem;
}
.p-store-jyoukamati-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
  z-index: 0;
  pointer-events: none;
}
.p-store-jyoukamati-intro > * {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-intro {
    padding: 6.25rem 1.5625rem 0;
  }
}
.p-store-jyoukamati-intro__inner {
  max-width: 62.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-intro__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.625rem;
    align-items: center;
  }
}
.p-store-jyoukamati-intro__body {
  order: 1;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-intro__body {
    order: 2;
    margin-bottom: 0rem;
  }
}
.p-store-jyoukamati-intro__title {
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-intro__title {
    margin-top: 0;
    font-size: 1.75rem;
  }
}
.p-store-jyoukamati-intro__title span {
  display: block;
}
.p-store-jyoukamati-intro__text {
  margin: 1.875rem 0 0;
  font-size: 0.8125rem;
  line-height: 2.2;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-intro__text {
    margin-top: 2.5rem;
    font-size: 0.9375rem;
  }
}
.p-store-jyoukamati-intro__image {
  order: 2;
  margin-inline: -1.25rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-intro__image {
    order: 1;
    margin-inline: 0;
  }
}
.p-store-jyoukamati-intro__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-store-jyoukamati-taste__vertical, .p-store-jyoukamati-buy__vertical, .p-store-jyoukamati-enjoy__vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  flex: 0 0 auto;
  margin: 0;
}
.p-store-jyoukamati-taste__vertical span, .p-store-jyoukamati-buy__vertical span, .p-store-jyoukamati-enjoy__vertical span {
  writing-mode: vertical-rl;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-taste__vertical span, .p-store-jyoukamati-buy__vertical span, .p-store-jyoukamati-enjoy__vertical span {
    font-size: 1.125rem;
    letter-spacing: 0.3em;
  }
}

.p-store-jyoukamati-taste__mark, .p-store-jyoukamati-buy__mark, .p-store-jyoukamati-enjoy__mark {
  display: block;
  width: 1rem;
  height: auto;
  flex: 0 0 auto;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-taste__mark, .p-store-jyoukamati-buy__mark, .p-store-jyoukamati-enjoy__mark {
    width: 1.625rem;
  }
}

.p-store-jyoukamati-taste__mark--flip, .p-store-jyoukamati-buy__mark--flip, .p-store-jyoukamati-enjoy__mark--flip {
  transform: scaleY(-1);
}

.p-store-jyoukamati-enjoy {
  padding: 3.125rem 1.25rem 4.0625rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-enjoy {
    padding: 5.625rem 1.5625rem 5.625rem;
  }
}
.p-store-jyoukamati-enjoy__inner {
  max-width: 62.5rem;
  margin: 0 auto;
}
.p-store-jyoukamati-enjoy__top {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-enjoy__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.625rem;
    align-items: start;
  }
}
.p-store-jyoukamati-enjoy__left {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.25rem;
  row-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-enjoy__left {
    display: flex;
    gap: 2.25rem;
    align-items: flex-start;
  }
}
.p-store-jyoukamati-enjoy__vertical {
  grid-column: 2;
  grid-row: 1;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-enjoy__vertical {
    grid-column: auto;
    grid-row: auto;
  }
}
.p-store-jyoukamati-enjoy__content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-enjoy__content {
    display: block;
    flex: 1;
    min-width: 0;
    padding-top: 3.125rem;
  }
}
.p-store-jyoukamati-enjoy__title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-enjoy__title {
    font-size: 1.75rem;
  }
}
.p-store-jyoukamati-enjoy__text {
  grid-column: 1/-1;
  grid-row: 2;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-enjoy__text {
    margin-top: 2.5rem;
    font-size: 0.9375rem;
    line-height: 2.2;
  }
}
.p-store-jyoukamati-enjoy__main-image {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-enjoy__main-image {
    padding-top: 1.875rem;
  }
}
.p-store-jyoukamati-enjoy__main-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.p-store-jyoukamati-enjoy__images {
  margin-top: 1.5rem;
  margin-inline: -1.25rem;
  width: calc(100% + 2.5rem);
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-enjoy__images {
    margin-top: 1.25rem;
    margin-inline: 0;
    width: 100%;
    overflow: visible;
    background-color: transparent;
  }
  .p-store-jyoukamati-enjoy__images .c-slider-linear__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8125rem;
    width: auto;
    animation: none;
  }
  .p-store-jyoukamati-enjoy__images .c-slider-linear__img:nth-child(n+4) {
    display: none;
  }
  .p-store-jyoukamati-enjoy__images .c-slider-linear__img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}

.p-store-jyoukamati-buy {
  padding: 3.75rem 1.25rem 3.75rem;
  background: #f7f4eb url("../images/store-jyoukamati/access-bg-pattern.svg") repeat;
  background-size: 70px 70px;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-buy {
    padding: 5.625rem 1.5625rem 5.625rem;
  }
}
.p-store-jyoukamati-buy__inner {
  max-width: 62.5rem;
  margin: 0 auto;
}
.p-store-jyoukamati-buy__head {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.25rem;
  row-gap: 1.875rem;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-buy__head {
    grid-template-columns: auto auto 1fr;
    gap: 1.875rem;
    align-items: center;
  }
}
.p-store-jyoukamati-buy__vertical {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-buy__vertical {
    grid-column: auto;
    grid-row: auto;
  }
}
.p-store-jyoukamati-buy__title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-buy__title {
    grid-column: auto;
    grid-row: auto;
    font-size: 1.75rem;
  }
}
.p-store-jyoukamati-buy__text {
  grid-column: 1/-1;
  grid-row: 2;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-buy__text {
    grid-column: auto;
    grid-row: auto;
    font-size: 0.9375rem;
    line-height: 2.2;
    margin-left: 1.25rem;
  }
}
.p-store-jyoukamati-buy__cards {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8125rem 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-buy__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.1875rem;
    margin-top: 3.4375rem;
  }
}
.p-store-jyoukamati-buy__card {
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-buy__card {
    padding-bottom: 1.75rem;
  }
}
.p-store-jyoukamati-buy__card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 310/200;
  object-fit: cover;
}
.p-store-jyoukamati-buy__card-title {
  position: relative;
  margin: 0.625rem 0 0;
  padding-bottom: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-buy__card-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 0.0625rem;
    background-color: #333;
  }
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-buy__card-title {
    margin-top: 1.4375rem;
    font-size: 1.1875rem;
  }
}
.p-store-jyoukamati-buy__card-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-buy__card-text {
    display: block;
    margin: 1.25rem 1rem 0;
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}

.p-store-jyoukamati-taste {
  padding: 4.6875rem 1.25rem 3.75rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-taste {
    padding: 5.625rem 1.5625rem 6.25rem;
  }
}
.p-store-jyoukamati-taste__inner {
  max-width: 62.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.25rem;
  row-gap: 1.875rem;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-taste__inner {
    grid-template-columns: 1fr 1fr auto;
    gap: 2.5rem;
    align-items: center;
  }
}
.p-store-jyoukamati-taste__image {
  grid-column: 1/-1;
  grid-row: 3;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-taste__image {
    grid-column: 1;
    grid-row: auto;
  }
}
.p-store-jyoukamati-taste__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.p-store-jyoukamati-taste__body {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-taste__body {
    display: block;
    grid-column: 2;
    grid-row: auto;
    margin-left: 2.1875rem;
  }
}
.p-store-jyoukamati-taste__vertical {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-taste__vertical {
    grid-column: 3;
    grid-row: auto;
  }
}
.p-store-jyoukamati-taste__title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-taste__title {
    font-size: 1.75rem;
  }
}
.p-store-jyoukamati-taste__text {
  grid-column: 1/-1;
  grid-row: 2;
  margin: 0;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-taste__text {
    margin-top: 2.5rem;
    font-size: 0.9375rem;
    line-height: 2.2;
  }
}
.p-store-jyoukamati-taste__btn {
  grid-column: 1/-1;
  grid-row: 4;
  margin-top: 0.625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-taste__btn {
    grid-column: auto;
    grid-row: auto;
    margin-top: 2.5rem;
  }
}
.p-store-jyoukamati-taste__btn .c-btn--detail-back {
  overflow: visible;
  padding: 1.25rem 3.75rem 1.25rem 1.25rem;
  text-align: left;
}
.p-store-jyoukamati-taste__btn .c-btn--detail-back::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.15625rem;
  width: 2.3125rem;
  height: 0.0625rem;
  background-color: #333;
  transform: translateY(-50%);
}

.p-store-jyoukamati-access {
  padding: 3.75rem 1.25rem 3.75rem;
  background: #f7f4eb url("../images/store-jyoukamati/buy-bg-pattern.svg") repeat;
  background-size: 70px 70px;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access {
    padding: 5.625rem 1.5625rem 5.625rem;
  }
}
.p-store-jyoukamati-access__inner {
  max-width: 70rem;
  margin: 0 auto;
}
.p-store-jyoukamati-access__title .c-section-title__ja {
  font-size: 1.375rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__title .c-section-title__ja {
    margin-bottom: 1.25rem;
    font-size: 1.4375rem;
  }
}
.p-store-jyoukamati-access__title .c-section-title__en {
  font-size: 0.6875rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__title .c-section-title__en {
    margin-top: 0rem;
    font-size: 0.6875rem;
  }
}
.p-store-jyoukamati-access__content {
  display: flex;
  flex-direction: column;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__content {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 28.75rem 1fr;
    gap: 5.625rem;
    align-items: start;
  }
}
.p-store-jyoukamati-access__left {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__left {
    display: block;
    text-align: center;
  }
}
.p-store-jyoukamati-access__map {
  order: 2;
  margin-inline: -1.25rem;
  width: calc(100% + 2.5rem);
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__map {
    order: 0;
    margin-inline: 0;
    width: 100%;
  }
}
.p-store-jyoukamati-access__map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 340/250;
}
.p-store-jyoukamati-access__tel-block {
  order: 5;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  text-align: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__tel-block {
    gap: 0.625rem;
    order: 0;
  }
}
.p-store-jyoukamati-access__contact-label {
  order: 4;
  margin: 2.1875rem 0 1.0625rem;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__contact-label {
    font-size: 1.4375rem;
    margin: 1.5625rem 0 0;
    order: 0;
  }
}
.p-store-jyoukamati-access__phone {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.p-store-jyoukamati-access__phone span {
  font-size: 2.25rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__phone {
    font-size: 2.75rem;
  }
  .p-store-jyoukamati-access__phone span {
    font-size: inherit;
    line-height: inherit;
  }
}
.p-store-jyoukamati-access__phone-icon {
  flex: 0 0 auto;
  width: 1.4375rem;
  height: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__phone-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.p-store-jyoukamati-access__hours {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__hours {
    font-size: 0.9375rem;
  }
}
.p-store-jyoukamati-access__tel-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: fit-content;
  min-height: 3.625rem;
  padding-left: 1.75rem;
  padding-right: 3.75rem;
  margin-top: 0.4375rem;
  background-color: #131f2d;
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.08em;
  text-align: center;
  transition: box-shadow 0.4s ease, color 0.4s ease;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__tel-btn {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
    font-size: 1.3125rem;
    margin-top: 1.25rem;
  }
}
.p-store-jyoukamati-access__tel-btn::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 0.125rem;
  border-radius: 9999px;
  background-color: currentColor;
}
.p-store-jyoukamati-access__tel-btn::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
  transform-origin: calc(100% - 1px) 50%;
  width: 0.4375rem;
  height: 0.125rem;
  border-radius: 9999px;
  background-color: currentColor;
}
.p-store-jyoukamati-access__tel-btn:hover {
  color: #131f2d;
  box-shadow: inset 400px 0 0 0 #fff;
}
.p-store-jyoukamati-access__tel-btn:hover .p-store-jyoukamati-access__tel-btn-icon {
  filter: brightness(0) saturate(100%) invert(9%) sepia(24%) saturate(800%) hue-rotate(182deg) brightness(90%);
}
.p-store-jyoukamati-access__red {
  color: #8b1416;
}
.p-store-jyoukamati-access__tel-btn-icon {
  filter: brightness(0) invert(1);
  flex: 0 0 auto;
  transition: filter 0.4s ease;
  width: 0.9375rem;
  height: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__tel-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.p-store-jyoukamati-access__list {
  margin: 0;
}
.p-store-jyoukamati-access__list > div {
  display: grid;
  grid-template-columns: 4.375rem minmax(0, 1fr);
  align-items: start;
  column-gap: 1.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-block: 1.25rem;
}
.p-store-jyoukamati-access__list > div:first-child {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__list > div {
    padding-block: 1.875rem;
  }
  .p-store-jyoukamati-access__list > div:nth-child(1) {
    column-gap: 3.125rem;
  }
  .p-store-jyoukamati-access__list > div:nth-child(2) {
    column-gap: 3.125rem;
  }
  .p-store-jyoukamati-access__list > div:nth-child(3) {
    column-gap: 0.3125rem;
  }
  .p-store-jyoukamati-access__list > div:nth-child(4) {
    column-gap: 3.125rem;
  }
  .p-store-jyoukamati-access__list > div:nth-child(5) {
    column-gap: 3.125rem;
  }
  .p-store-jyoukamati-access__list > div:nth-child(6) {
    column-gap: 3.125rem;
  }
  .p-store-jyoukamati-access__list > div:nth-child(7) {
    column-gap: 3.125rem;
  }
}
.p-store-jyoukamati-access__list dt,
.p-store-jyoukamati-access__list dd {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__list dt,
  .p-store-jyoukamati-access__list dd {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.06em;
  }
}
.p-store-jyoukamati-access__list dt {
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}
.p-store-jyoukamati-access__punct-tight {
  display: inline-block;
  margin-inline: -0.18em;
}
.p-store-jyoukamati-access__hours-category {
  margin: 1rem 0 0;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__hours-category {
    font-size: 0.9375rem;
  }
}
.p-store-jyoukamati-access__hours-category:first-child {
  margin-top: 0;
}
.p-store-jyoukamati-access__hours-time {
  margin: 0;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__hours-time {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__hours-category--indent {
    padding-left: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__hours-time--indent {
    padding-left: 2.5rem;
  }
}
.p-store-jyoukamati-access__access-head {
  margin: 1rem 0 0;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__access-head {
    font-size: 1rem;
  }
}
.p-store-jyoukamati-access__access-head:first-child {
  margin-top: 0;
}
.p-store-jyoukamati-access__access-body {
  margin: 0;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__access-body {
    font-size: 0.9375rem;
  }
}
.p-store-jyoukamati-access__info {
  order: 3;
  width: 100%;
  margin: 1.875rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-access__info {
    order: 0;
    margin: 0;
  }
}

.page-store-jyoukamati-restaurant .l-header.is-fixed {
  background: #fff;
}

.page-store-jyoukamati-restaurant .l-header.is-fixed .l-header__hamburger span {
  background-color: #333;
}

.p-store-jyoukamati-restaurant-reserve-btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background-color: #9a1421;
    color: #fff;
    text-decoration: none;
    font-size: 0.8125rem;
    font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: opacity 0.3s ease;
  }
  .p-store-jyoukamati-restaurant-reserve-btn:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-reserve-btn__icon {
    width: 1.125rem;
    height: auto;
    flex: 0 0 auto;
  }
}
.p-store-jyoukamati-restaurant-hero {
  position: relative;
  background-color: #1a1a1a;
}
.p-store-jyoukamati-restaurant-hero__inner {
  position: relative;
}
.p-store-jyoukamati-restaurant-hero__image img {
  display: block;
  width: 100%;
  aspect-ratio: 375/668;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-hero__image img {
    aspect-ratio: 1440/700;
  }
}
.p-store-jyoukamati-restaurant-hero__overlay {
  position: absolute;
  bottom: 2.8125rem;
  left: 1.25rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-hero__overlay {
    bottom: 5rem;
    left: 5rem;
  }
}
.p-store-jyoukamati-restaurant-hero__subtitle {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-store-jyoukamati-restaurant-hero__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-hero__title {
    font-size: 1.875rem;
  }
}

.p-store-jyoukamati-restaurant-intro {
  position: relative;
  padding: 3.125rem 1.25rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-intro {
    padding: 9.375rem 1.5625rem;
  }
}
.p-store-jyoukamati-restaurant-intro::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.25rem;
  height: 6.25rem;
  background-image: url("../images/store-jyoukamati-restaurant/intro_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-intro::before {
    width: 12.1875rem;
    height: 12.1875rem;
  }
}
.p-store-jyoukamati-restaurant-intro__inner {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}
.p-store-jyoukamati-restaurant-intro__text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 2.8;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-intro__text {
    font-size: 1rem;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-intro__text--sp {
    display: none;
  }
}
.p-store-jyoukamati-restaurant-intro__text--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-intro__text--pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-intro__text--pc + .p-store-jyoukamati-restaurant-intro__text--pc {
    margin-top: 1.875rem;
  }
}

.p-store-jyoukamati-restaurant-dish,
.p-store-jyoukamati-restaurant-lunch {
  padding: 3.125rem 1.25rem 4.6875rem;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish,
  .p-store-jyoukamati-restaurant-lunch {
    padding: 5.625rem 1.5625rem 6.875rem;
  }
}
.p-store-jyoukamati-restaurant-dish__inner,
.p-store-jyoukamati-restaurant-lunch__inner {
  display: flex;
  flex-direction: column;
  max-width: 59.375rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__inner,
  .p-store-jyoukamati-restaurant-lunch__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10.625rem;
    align-items: start;
  }
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__main,
  .p-store-jyoukamati-restaurant-lunch__main {
    grid-column: 1;
    grid-row: 1;
  }
}
.p-store-jyoukamati-restaurant-dish__item + .p-store-jyoukamati-restaurant-dish__item,
.p-store-jyoukamati-restaurant-dish__item + .p-store-jyoukamati-restaurant-lunch__item,
.p-store-jyoukamati-restaurant-lunch__item + .p-store-jyoukamati-restaurant-dish__item,
.p-store-jyoukamati-restaurant-lunch__item + .p-store-jyoukamati-restaurant-lunch__item {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__item + .p-store-jyoukamati-restaurant-dish__item,
  .p-store-jyoukamati-restaurant-dish__item + .p-store-jyoukamati-restaurant-lunch__item,
  .p-store-jyoukamati-restaurant-lunch__item + .p-store-jyoukamati-restaurant-dish__item,
  .p-store-jyoukamati-restaurant-lunch__item + .p-store-jyoukamati-restaurant-lunch__item {
    margin-top: 6.875rem;
  }
}
.p-store-jyoukamati-restaurant-dish__item-image img,
.p-store-jyoukamati-restaurant-lunch__item-image img {
  display: block;
  width: 100%;
  aspect-ratio: 790/526;
  object-fit: cover;
}
.p-store-jyoukamati-restaurant-dish__item-body,
.p-store-jyoukamati-restaurant-lunch__item-body {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__item-body,
  .p-store-jyoukamati-restaurant-lunch__item-body {
    margin-top: 2.5rem;
  }
}
.p-store-jyoukamati-restaurant-dish__item-name,
.p-store-jyoukamati-restaurant-lunch__item-name {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__item-name,
  .p-store-jyoukamati-restaurant-lunch__item-name {
    font-size: 1.3125rem;
  }
}
.p-store-jyoukamati-restaurant-dish__item-text,
.p-store-jyoukamati-restaurant-lunch__item-text {
  margin: 1.875rem 0 0;
  font-size: 0.75rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__item-text,
  .p-store-jyoukamati-restaurant-lunch__item-text {
    font-size: 0.875rem;
    line-height: 2.2;
    margin: 2.5rem 0 0;
  }
}
.p-store-jyoukamati-restaurant-dish__item-price,
.p-store-jyoukamati-restaurant-lunch__item-price {
  margin: 1.875rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__item-price,
  .p-store-jyoukamati-restaurant-lunch__item-price {
    margin: 2.5rem 0 0;
    font-size: 0.875rem;
  }
}
.p-store-jyoukamati-restaurant-dish__side,
.p-store-jyoukamati-restaurant-lunch__side {
  order: -1;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
  gap: 1.625rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__side,
  .p-store-jyoukamati-restaurant-lunch__side {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    grid-column: 2;
    grid-row: 1;
    padding: 1.875rem 0 0;
    gap: 0;
    overflow: visible;
    margin-bottom: 0rem;
  }
}
.p-store-jyoukamati-restaurant-dish__title-wrap,
.p-store-jyoukamati-restaurant-lunch__title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
}
.p-store-jyoukamati-restaurant-dish__title-wrap::before,
.p-store-jyoukamati-restaurant-lunch__title-wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 17.5rem;
  height: 17.5rem;
  background-image: url("../images/store-jyoukamati-restaurant/title_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -6.25rem;
  right: -10.625rem;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__title-wrap::before,
  .p-store-jyoukamati-restaurant-lunch__title-wrap::before {
    width: 16.25rem;
    height: 16.25rem;
    top: -7.25rem;
    right: -10.625rem;
  }
}
.p-store-jyoukamati-restaurant-dish__section-title,
.p-store-jyoukamati-restaurant-lunch__section-title {
  position: relative;
  z-index: 1;
  margin: 0;
  writing-mode: vertical-rl;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
  line-height: 1;
}
.p-store-jyoukamati-restaurant-dish__icon,
.p-store-jyoukamati-restaurant-lunch__icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__icon,
  .p-store-jyoukamati-restaurant-lunch__icon {
    display: block;
    width: 7.3125rem;
    height: auto;
    margin: 1.875rem 0;
  }
}
.p-store-jyoukamati-restaurant-dish__section-desc,
.p-store-jyoukamati-restaurant-lunch__section-desc {
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #333;
  overflow: visible;
  height: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__section-desc,
  .p-store-jyoukamati-restaurant-lunch__section-desc {
    font-size: 0.8125rem;
    height: auto;
  }
}

.p-store-jyoukamati-restaurant-dish {
  position: relative;
}
.p-store-jyoukamati-restaurant-dish .p-store-jyoukamati-restaurant-dish__inner {
  position: relative;
  z-index: 1;
}
.p-store-jyoukamati-restaurant-dish .p-store-jyoukamati-restaurant-dish__item:last-child {
  position: relative;
}
.p-store-jyoukamati-restaurant-dish .p-store-jyoukamati-restaurant-dish__item:last-child::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: -3.125rem;
  width: 15.625rem;
  height: 5.0625rem;
  background-image: url("../images/store-jyoukamati-restaurant/dish_logo_sp.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish .p-store-jyoukamati-restaurant-dish__item:last-child::after {
    background-image: url("../images/store-jyoukamati-restaurant/dish_logo.png");
    right: -36.25rem;
    top: auto;
    bottom: 16.25rem;
    width: 36.875rem;
    height: 11.875rem;
  }
}
.p-store-jyoukamati-restaurant-dish__item-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-left: 0.75rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__item-sub {
    margin-left: 1.25rem;
    font-size: 1rem;
  }
}
.p-store-jyoukamati-restaurant-dish__section-title {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__section-title {
    font-size: 2rem;
  }
}
.p-store-jyoukamati-restaurant-dish__section-desc {
  height: 12.5rem;
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__section-desc {
    margin-top: 0rem;
    font-size: 0.875rem;
    height: 16.25rem;
  }
}
.p-store-jyoukamati-restaurant-dish__menu {
  position: relative;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__menu {
    margin-top: 4.375rem;
  }
}
.p-store-jyoukamati-restaurant-dish__menu::before, .p-store-jyoukamati-restaurant-dish__menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.125rem;
  border-left: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
  pointer-events: none;
  z-index: 0;
  transition: height 0.4s ease;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__menu::before, .p-store-jyoukamati-restaurant-dish__menu::after {
    height: 1.625rem;
  }
}
.p-store-jyoukamati-restaurant-dish__menu::before {
  border-top: 1px solid #1a1a1a;
  top: -0.5rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__menu::before {
    top: -1.25rem;
  }
}
.p-store-jyoukamati-restaurant-dish__menu::after {
  border-bottom: 1px solid #1a1a1a;
  bottom: -0.5rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__menu::after {
    bottom: -1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__menu.is-open::before, .p-store-jyoukamati-restaurant-dish__menu.is-open::after {
    height: 5rem;
  }
}
.p-store-jyoukamati-restaurant-dish__menu-title {
  appearance: none;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  border: none;
  cursor: pointer;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  color: #333;
  display: flex;
  width: 20rem;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.375rem 1.25rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__menu-title {
    font-size: 1.4375rem;
    padding: 2.1875rem 2.5rem;
    width: 55rem;
  }
}
.p-store-jyoukamati-restaurant-dish__menu-arrow {
  width: 0.6875rem;
  height: auto;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}
[aria-expanded=true] .p-store-jyoukamati-restaurant-dish__menu-arrow {
  transform: rotate(0deg);
}
.p-store-jyoukamati-restaurant-dish__menu-body {
  overflow: hidden;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  width: 20rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__menu-body {
    width: 55rem;
  }
}
.p-store-jyoukamati-restaurant-dish__menu-grid {
  display: grid;
  gap: 2.1875rem;
  padding: 1.25rem 3.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__menu-grid {
    grid-template-columns: 1fr 1px 1fr;
    gap: 1.875rem 2.5rem;
    padding: 1.875rem 2.5rem 2.5rem;
  }
  .p-store-jyoukamati-restaurant-dish__menu-grid::before {
    content: "";
    grid-column: 2;
    grid-row: 1/-1;
    background-color: #1a1a1a;
  }
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__menu-col {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 2.5rem;
	align-content: start
  }
}
.p-store-jyoukamati-restaurant-dish__menu-category {
  margin: 2.1875rem 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.p-store-jyoukamati-restaurant-dish__menu-category:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__menu-category {
    font-size: 0.8125rem;
    margin: 0;
    padding: 0.4375rem 0 0;
  }
}
.p-store-jyoukamati-restaurant-dish__menu-list {
  margin: 0;
}
.p-store-jyoukamati-restaurant-dish__menu-list > div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4375rem 0;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-dish__menu-list > div {
    font-size: 0.8125rem;
  }
}
.p-store-jyoukamati-restaurant-dish__menu-list dt {
  flex: 1;
  margin: 0;
}
.p-store-jyoukamati-restaurant-dish__menu-list dd {
  margin: 0;
  white-space: nowrap;
  font-weight: 500;
}

.p-store-jyoukamati-restaurant-lunch {
  position: relative;
}
.p-store-jyoukamati-restaurant-lunch .p-store-jyoukamati-restaurant-lunch__inner {
  position: relative;
  z-index: 1;
}
.p-store-jyoukamati-restaurant-lunch .p-store-jyoukamati-restaurant-lunch__item:last-child {
  position: relative;
}
.p-store-jyoukamati-restaurant-lunch .p-store-jyoukamati-restaurant-lunch__item:last-child::after {
  content: "";
  position: absolute;
  right: -1.25rem;
  bottom: -5.625rem;
  width: 8.5rem;
  height: 10rem;
  background-image: url("../images/store-jyoukamati-restaurant/lunch_logo_sp.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-lunch .p-store-jyoukamati-restaurant-lunch__item:last-child::after {
    background-image: url("../images/store-jyoukamati-restaurant/lunch_logo.png");
    right: -30.625rem;
    top: auto;
    bottom: 6.25rem;
    width: 25rem;
    height: 28.75rem;
  }
}

.p-store-jyoukamati-restaurant-interior {
  padding: 0.625rem 0 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-interior {
    padding: 5.625rem 0;
  }
}
.p-store-jyoukamati-restaurant-interior__image {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-interior__image {
    width: 90%;
    margin-left: 0;
  }
}
.p-store-jyoukamati-restaurant-interior__image img {
  display: block;
  width: 100%;
  aspect-ratio: 375/480;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-interior__image img {
    aspect-ratio: 1360/560;
  }
}
.p-store-jyoukamati-restaurant-interior__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-interior__overlay {
    justify-content: flex-start;
    text-align: left;
    padding: 0 5rem;
  }
}
.p-store-jyoukamati-restaurant-interior__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-interior__title {
    font-size: 2rem;
  }
}

.p-store-jyoukamati-restaurant-menu {
  padding: 0rem 1.25rem 5.9375rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-menu {
    padding: 3.125rem 1.5625rem 6.875rem;
  }
}
.p-store-jyoukamati-restaurant-menu__inner {
  max-width: 59.375rem;
  margin: 0 auto;
}
.p-store-jyoukamati-restaurant-menu .p-store-jyoukamati-restaurant-dish__menu {
  margin-top: 0;
}

.p-store-jyoukamati-restaurant-access {
  padding: 5rem 1.25rem 5rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  /*===================================
   * タイトル
  ===================================*/
}
.p-store-jyoukamati-restaurant-access .c-section-title__ja {
  margin-top: 0rem;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access .c-section-title__ja {
    font-size: 1.625rem;
  }
}
.p-store-jyoukamati-restaurant-access .c-section-title__en {
  font-size: 0.625rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access .c-section-title__en {
    margin-top: 1.25rem;
    font-size: 0.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access {
    padding: 6.25rem 1.5625rem 7.1875rem;
  }
}
.p-store-jyoukamati-restaurant-access__inner {
  max-width: 62.5rem;
  margin: 0 auto;
}
.p-store-jyoukamati-restaurant-access__content {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__content {
    display: grid;
    grid-template-columns: 26.25rem 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}
.p-store-jyoukamati-restaurant-access__left {
  order: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__left {
    order: 0;
    text-align: center;
  }
}
.p-store-jyoukamati-restaurant-access__map-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #756d6c;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__map-label {
    text-align: left;
  }
}
.p-store-jyoukamati-restaurant-access__map iframe {
  display: block;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.p-store-jyoukamati-restaurant-access__map--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__map--pc {
    display: block;
  }
}
.p-store-jyoukamati-restaurant-access__map--sp {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__map--sp {
    display: none;
  }
}
.p-store-jyoukamati-restaurant-access__contact-label {
  margin: 0rem 0 0.75rem;
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__contact-label {
    text-align: center;
    font-size: 1.3125rem;
    margin-top: 1.875rem;
  }
}
.p-store-jyoukamati-restaurant-access__phone {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-store-jyoukamati-restaurant-access__phone span {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__phone {
    font-size: 2.6875rem;
  }
}
.p-store-jyoukamati-restaurant-access__phone-icon {
  width: 1.4375rem;
  height: 1.9375rem;
  flex: 0 0 auto;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__phone-icon {
    width: 1.6875rem;
    height: 2.375rem;
  }
}
.p-store-jyoukamati-restaurant-access__hours {
  margin: 0.9375rem 0 0;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__hours {
    margin: 1.25rem 0 0;
    font-size: 0.9375rem;
  }
}
.p-store-jyoukamati-restaurant-access__reserve-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 20rem;
  margin: 1.25rem auto 0;
  padding: 1.125rem 3rem 1.125rem 1.25rem;
  background-color: #9a1421;
  color: #fff;
  text-decoration: none;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__reserve-btn {
    margin-inline: auto;
    font-size: 1.125rem;
  }
}
.p-store-jyoukamati-restaurant-access__reserve-btn:hover {
  opacity: 0.85;
}
.p-store-jyoukamati-restaurant-access__reserve-btn::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 0.125rem;
  border-radius: 9999px;
  background-color: currentColor;
}
.p-store-jyoukamati-restaurant-access__reserve-btn::before {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
  transform-origin: calc(100% - 1px) 50%;
  width: 0.5rem;
  height: 0.125rem;
  border-radius: 9999px;
  background-color: currentColor;
}
.p-store-jyoukamati-restaurant-access__reserve-btn-icon {
  width: 1.375rem;
  height: auto;
  flex: 0 0 auto;
}
.p-store-jyoukamati-restaurant-access__reserve-link-label {
  margin: 0.75rem 0 0.25rem;
  font-size: 0.6875rem;
  color: #9a1421;
  letter-spacing: 0.04em;
}
.p-store-jyoukamati-restaurant-access__reserve-link {
  margin: 0;
  font-size: 0.6875rem;
}
.p-store-jyoukamati-restaurant-access__reserve-link a {
  color: #9a1421;
  word-break: break-all;
}
.p-store-jyoukamati-restaurant-access__title {
  margin: 0 0 3.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__title {
    margin-bottom: 3.75rem;
  }
}
.p-store-jyoukamati-restaurant-access__list {
  margin: 0;
}
.p-store-jyoukamati-restaurant-access__list > div {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  border-bottom: 1px solid #1a1a1a;
  padding-block: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__list > div {
    padding-block: 1.5rem;
    gap: 3.75rem;
  }
}
.p-store-jyoukamati-restaurant-access__list > div:first-child {
  padding-top: 0;
}
.p-store-jyoukamati-restaurant-access__list dt,
.p-store-jyoukamati-restaurant-access__list dd {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__list dt,
  .p-store-jyoukamati-restaurant-access__list dd {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.p-store-jyoukamati-restaurant-access__list dt {
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__list dt {
    font-size: 0.9375rem;
  }
}
.p-store-jyoukamati-restaurant-access__hours-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
  line-height: 1.9;
  font-size: 0.8125rem;
}
.p-store-jyoukamati-restaurant-access__hours-row + .p-store-jyoukamati-restaurant-access__hours-row {
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__hours-row {
    font-size: 0.875rem;
    gap: 1.5rem;
  }
}
.p-store-jyoukamati-restaurant-access__hours-label {
  font-weight: 500;
  min-width: 3rem;
}
.p-store-jyoukamati-restaurant-access__lo {
  color: #1a1a1a;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-store-jyoukamati-restaurant-access__lo {
    font-size: 0.875rem;
  }
}

.p-about-page-intro {
  padding: 2.0625rem 0 0.3125rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-about-page-intro {
    padding: 5.625rem 1.5625rem 2.5rem;
    overflow: visible;
  }
}
.p-about-page-intro__inner {
  max-width: 62.5rem;
  margin: 0 auto;
}
.p-about-page-intro__block {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-intro__block {
    flex-direction: row;
    align-items: center;
    gap: 3.4375rem;
    margin-bottom: 3.4375rem;
  }
}
.p-about-page-intro__block:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-about-page-intro__block--reverse {
    flex-direction: row;
  }
}
.p-about-page-intro__img {
  margin-right: 5%;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .p-about-page-intro__img {
    flex: 0 0 50%;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-about-page-intro__img img {
  width: 100%;
  aspect-ratio: 580/400;
  object-fit: cover;
}
.p-about-page-intro__block--reverse .p-about-page-intro__img {
  order: 1;
  margin-right: 0;
  margin-left: 5%;
}
@media screen and (min-width: 768px) {
  .p-about-page-intro__block--reverse .p-about-page-intro__img {
    order: 0;
    margin-right: 0;
    margin-left: 0;
  }
}
.p-about-page-intro__block--reverse .p-about-page-intro__body {
  order: 0;
}
@media screen and (min-width: 768px) {
  .p-about-page-intro__block--reverse .p-about-page-intro__body {
    order: 0;
  }
}
.p-about-page-intro__body {
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-intro__body {
    flex: 1;
    padding: 0;
  }
}
.p-about-page-intro__heading {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-intro__heading {
    font-size: 1.75rem;
    margin-bottom: 2.8125rem;
  }
}
.p-about-page-intro__text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #333;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-about-page-intro__text {
    font-size: 1rem;
  }
}

.p-about-page-awards {
  padding: 3.125rem 1.25rem 2.8125rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-about-page-awards {
    padding: 2.5rem 1.5625rem 4.375rem;
  }
}
.p-about-page-awards__inner {
  max-width: 62.5rem;
  margin: 0 auto;
}
.p-about-page-awards__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-about-page-awards__list {
    flex-wrap: nowrap;
    gap: 3.125rem;
  }
}
.p-about-page-awards__item img {
  width: 100%;
  height: auto;
}
.p-about-page-awards__item:first-child {
  flex: 0 0 55%;
}
@media screen and (min-width: 768px) {
  .p-about-page-awards__item:first-child {
    flex: 1;
  }
}
.p-about-page-awards__item:nth-child(n+2) {
  flex: 0 0 calc(50% - 0.3125rem);
}
@media screen and (min-width: 768px) {
  .p-about-page-awards__item:nth-child(n+2) {
    flex: 1;
  }
}

.p-about-page-message {
  padding: 0rem 1.25rem 3.75rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-about-page-message {
    padding: 0rem 1.5625rem 5.9375rem;
  }
}
.p-about-page-message__inner {
  max-width: 62.5rem;
  margin: 0 auto;
  background-color: #fff;
  padding: 2.1875rem 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-message__inner {
    padding: 4.0625rem 4.375rem;
  }
}
.p-about-page-message__content {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-message__content {
    flex-direction: row;
    align-items: flex-end;
    gap: 5.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-page-message__body {
    flex: 1;
  }
}
.p-about-page-message__heading {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-message__heading {
    font-size: 1.875rem;
    margin-bottom: 3.125rem;
  }
}
.p-about-page-message__text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #333;
  margin-bottom: 3.125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-about-page-message__text {
    font-size: 1rem;
    margin-bottom: 3.125rem;
  }
}
.p-about-page-message__text:last-child {
  margin-bottom: 0;
}
.p-about-page-message__photo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-message__photo {
    display: block;
    flex: 0 0 17.5rem;
    text-align: right;
  }
}
.p-about-page-message__img {
  flex: 0 0 55%;
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-about-page-message__img {
    flex: none;
    order: 0;
    margin-bottom: 1rem;
  }
}
.p-about-page-message__img img {
  width: 100%;
  aspect-ratio: 280/350;
  object-fit: cover;
}
.p-about-page-message__caption-wrap {
  flex: 1;
  order: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-about-page-message__caption-wrap {
    display: inline-block;
  }
}
.p-about-page-message__caption {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-about-page-message__caption {
    font-size: 0.9375rem;
  }
}
.p-about-page-message__name {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #333;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-message__name {
    font-size: 1.25rem;
  }
}

.p-about-page-history {
  padding: 3.75rem 1.25rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-about-page-history {
    padding: 6.25rem 1.5625rem 3.125rem;
  }
}
.p-about-page-history__inner {
  max-width: 57.5rem;
  margin: 0 auto;
}
.p-about-page-history__heading {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #333;
  text-align: left;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-history__heading {
    font-size: 2rem;
    margin-bottom: 4.0625rem;
  }
}
.p-about-page-history__timeline {
  position: relative;
  margin: 0;
}
.p-about-page-history__row {
  display: flex;
  flex-direction: column;
  padding: 0.625rem 0;
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about-page-history__row {
    flex-direction: row;
    align-items: baseline;
    padding: 0.8125rem 0;
    padding-left: 2.125rem;
  }
}
.p-about-page-history__row:first-child {
  padding-top: 0;
}
.p-about-page-history__row::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: #9a1421;
}
.p-about-page-history__row:first-child::after {
  top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-history__row:first-child::after {
    top: 0.3125rem;
  }
}
.p-about-page-history__row:last-child::after {
  bottom: calc(100% - 1.5rem);
}
@media screen and (min-width: 768px) {
  .p-about-page-history__row:last-child::after {
    bottom: calc(100% - 1.1875rem);
  }
}
.p-about-page-history__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  background-color: #9a1421;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-about-page-history__row::before {
    top: 1.1875rem;
  }
}
.p-about-page-history__row:first-child::before {
  top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-history__row:first-child::before {
    top: 0.3125rem;
  }
}
.p-about-page-history__year {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #9a1421;
  white-space: nowrap;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-history__year {
    flex: 0 0 10rem;
    font-size: 1.125rem;
    margin-bottom: 0;
  }
}
.p-about-page-history__detail {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #333;
  margin: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-about-page-history__detail {
    font-size: 1rem;
  }
}

.p-about-page-company {
  padding: 2.1875rem 1.25rem;
  background-color: #fff;
}
.p-about-page-company .c-section-title__ja {
  margin-top: 0rem;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-company .c-section-title__ja {
    font-size: 1.5625rem;
  }
}
.p-about-page-company .c-section-title__en {
  font-size: 0.625rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-company .c-section-title__en {
    font-size: 0.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-page-company {
    padding: 3.125rem 1.5625rem 5rem;
  }
}
.p-about-page-company__inner {
  max-width: 57.5rem;
  margin: 0 auto;
}
.p-about-page-company__title {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-company__title {
    margin-bottom: 4.0625rem;
  }
}
.p-about-page-company__list {
  margin: 0;
}
.p-about-page-company__row {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid #9b8d8c;
}
@media screen and (min-width: 768px) {
  .p-about-page-company__row {
    flex-direction: row;
    padding: 1.25rem 0;
  }
}
.p-about-page-company__term {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #333;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-company__term {
    flex: 0 0 12.5rem;
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.p-about-page-company__desc {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #333;
  margin: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-about-page-company__desc {
    flex: 1;
    font-size: 1rem;
  }
}

.p-about-page-recruit {
  padding: 3.75rem 1.25rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-about-page-recruit {
    padding: 5rem 1.5625rem;
  }
}
.p-about-page-recruit__inner {
  max-width: 45rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
}
.p-about-page-recruit__inner::after {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border: 1px solid #fff;
  pointer-events: none;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-about-page-recruit__inner::after {
    inset: 0.5rem;
  }
}
.p-about-page-recruit__body {
  background-color: #131f2d;
  color: #fff;
  padding: 1.875rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  flex: 0 0 60%;
}
@media screen and (min-width: 768px) {
  .p-about-page-recruit__body {
    padding: 2.5rem 3.125rem;
  }
}
.p-about-page-recruit__img {
  flex: 0 0 40%;
}
.p-about-page-recruit__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 217/163;
  object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-about-page-recruit__img img {
    aspect-ratio: auto;
  }
}
.p-about-page-recruit__catch {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-recruit__catch {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
}
.p-about-page-recruit__text {
  font-size: 0.625rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-about-page-recruit__text {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.p-about-page-recruit__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid #fff;
  border-radius: 3.125rem;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: #131f2d;
  background-color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-weight: 700;
  align-self: center;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-about-page-recruit__btn {
    font-size: 0.875rem;
    padding: 0.4375rem 2.125rem;
  }
}
.p-about-page-recruit__btn:hover {
  opacity: 0.7;
}
.p-about-page-recruit__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #131f2d;
  position: relative;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-about-page-recruit__btn-icon {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.p-about-page-recruit__btn-icon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.125rem 0 0.125rem 0.1875rem;
  border-color: transparent transparent transparent #fff;
  margin-left: 0.125rem;
}

.p-quality-page-hunter {
  position: relative;
  padding: 3.3125rem 1.25rem 1.875rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter {
    padding: 5.9375rem 1.5625rem 0rem 0;
  }
}
.p-quality-page-hunter__deco {
  position: absolute;
  top: 0rem;
  right: -0.625rem;
  width: 9.375rem;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__deco {
    top: 19.375rem;
    right: 7.5rem;
    width: 19.375rem;
  }
}
.p-quality-page-hunter__intro {
  max-width: 50rem;
  margin: 0 auto 3.75rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__intro {
    margin-bottom: 5.625rem;
  }
}
.p-quality-page-hunter__intro-heading {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__intro-heading {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
}
.p-quality-page-hunter__intro-text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #333;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__intro-text {
    font-size: 1rem;
  }
}
.p-quality-page-hunter__inner {
  max-width: 62.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__inner {
    max-width: none;
    padding: 0;
  }
}
.p-quality-page-hunter__block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__block {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}
.p-quality-page-hunter__img {
  margin-left: -1.25rem;
  margin-right: 0rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__img {
    flex: 0 0 50%;
    margin-left: 0rem;
    margin-right: 0rem;
  }
}
.p-quality-page-hunter__img img {
  width: 100%;
  aspect-ratio: 800/533;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__img img {
    height: 100%;
    aspect-ratio: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__body {
    flex: 1;
    padding: 2.5rem 3.75rem 2.5rem 3.75rem;
  }
}
.p-quality-page-hunter__heading {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__heading {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}
.p-quality-page-hunter__text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #333;
  font-weight: 500;
  margin-bottom: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}
.p-quality-page-hunter__list {
  list-style: none;
  padding: 1.875rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid #9b8d8c;
  border-bottom: 1px solid #9b8d8c;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__list {
    padding: 2.1875rem 0;
    gap: 1.25rem;
  }
}
.p-quality-page-hunter__item {
  display: flex;
  gap: 0.875rem;
  align-items: baseline;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__item {
    align-items: center;
    gap: 1.25rem;
  }
}
.p-quality-page-hunter__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.875rem;
  padding: 0.125rem 0.625rem;
  background-color: #333;
  color: #fff;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__num {
    min-width: 2.0625rem;
    padding: 0.1875rem 0.6875rem;
    font-size: 0.75rem;
  }
}
.p-quality-page-hunter__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #333;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-quality-page-hunter__desc {
    font-size: 1rem;
  }
}

.p-quality-page-freeze {
  padding: 2.5rem 1.25rem 3.75rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-quality-page-freeze {
    padding: 6.25rem 1.5625rem;
  }
}
.p-quality-page-freeze__inner {
  max-width: 57.5rem;
  margin: 0 auto;
}
.p-quality-page-freeze__heading {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333;
  text-align: center;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-freeze__heading {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}
.p-quality-page-freeze__lead {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #333;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-freeze__lead {
    font-size: 1rem;
    margin-bottom: 3.75rem;
  }
}
.p-quality-page-freeze__cards {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-freeze__cards {
    flex-direction: row;
    gap: 2.5rem;
  }
}
.p-quality-page-freeze__card {
  padding: 1.25rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-quality-page-freeze__card {
    flex: 1;
    padding: 1.0625rem 1.0625rem 1.875rem;
  }
}
.p-quality-page-freeze__card-img {
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-freeze__card-img {
    margin-bottom: 1.875rem;
  }
}
.p-quality-page-freeze__card-img img {
  width: 100%;
  aspect-ratio: 400/270;
  object-fit: cover;
}
.p-quality-page-freeze__card-title {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
  text-align: center;
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-freeze__card-title {
    font-size: 1.625rem;
    margin-bottom: 1.875rem;
  }
}
.p-quality-page-freeze__card-text {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #333;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-quality-page-freeze__card-text {
    font-size: 1rem;
    padding: 0 1.4375rem;
  }
}

.p-quality-page-effort {
  position: relative;
  padding: 3.75rem 1.25rem 5rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
@media screen and (min-width: 768px) {
  .p-quality-page-effort {
    padding: 4.375rem 1.5625rem 5rem;
  }
}
.p-quality-page-effort::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 17.5rem;
  background: url("../images/quality/freeze_bg.png") no-repeat center/cover;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-quality-page-effort::before {
    height: 22.5rem;
  }
}
.p-quality-page-effort__inner {
  position: relative;
  z-index: 1;
  max-width: 68.75rem;
  margin: 0 auto;
}
.p-quality-page-effort__header {
  padding: 0rem 0rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-effort__header {
    padding: 0rem 0rem 2.5rem;
  }
}
.p-quality-page-effort__heading {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-effort__heading {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}
.p-quality-page-effort__lead {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-quality-page-effort__lead {
    font-size: 1rem;
  }
}
.p-quality-page-effort__cards {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-effort__cards {
    flex-direction: row;
    gap: 1.875rem;
  }
}
.p-quality-page-effort__card {
  text-align: center;
  background-color: #fff;
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-effort__card {
    flex: 1;
    padding: 2.1875rem 2.8125rem 2.5rem;
  }
}
.p-quality-page-effort__card-title {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-effort__card-title {
    font-size: 1.375rem;
    margin-bottom: 1.875rem;
  }
}
.p-quality-page-effort__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-effort__icon {
    height: 7.5rem;
    margin-bottom: 1.875rem;
  }
}
.p-quality-page-effort__icon img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
@media screen and (min-width: 768px) {
  .p-quality-page-effort__icon img {
    max-width: 9.375rem;
  }
}
.p-quality-page-effort__card-text {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #333;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-quality-page-effort__card-text {
    font-size: 1rem;
  }
}

.p-quality-page-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-cta__btns {
    gap: 0;
    flex-direction: row;
    height: 23.75rem;
  }
}
.p-quality-page-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 3.125rem 1.25rem;
  color: #fff;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-quality-page-cta__btn {
    width: 50%;
    padding: 5rem 1.25rem;
  }
}
.p-quality-page-cta__btn:hover {
  opacity: 0.85;
}
.p-quality-page-cta__btn--left {
  background-image: url("../images/quality/cta_01.png");
}
.p-quality-page-cta__btn--right {
  background-image: url("../images/quality/cta_02.png");
}
.p-quality-page-cta__title {
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-quality-page-cta__title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }
}
.p-quality-page-cta__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 15rem;
  padding: 0.75rem 2.5rem 0.75rem 1.25rem;
  border: 1px solid #fff;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 1.25rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-quality-page-cta__link {
    width: 17.5rem;
    font-size: 1.125rem;
    padding: 1.5625rem 3.125rem 1.5625rem 1.875rem;
    margin-bottom: 1.5rem;
  }
}
.p-quality-page-cta__link::after {
  content: "";
  position: absolute;
  right: 0.625rem;
  top: 50%;
  width: 1.875rem;
  height: 0.75rem;
  background: url("../images/common/button_arrow.svg") no-repeat center/contain;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-quality-page-cta__link::after {
    right: 0.9375rem;
    width: 1.25rem;
    height: 0.25rem;
  }
}
.p-quality-page-cta__link-text {
  letter-spacing: 0.12em;
}

.p-privacy {
  padding-top: 4.75rem;
  padding-bottom: 3.75rem;
  background: #f7f4eb url("../images/common/main-bg.png") repeat;
}
.p-privacy .c-section-title__ja {
  font-weight: 500;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-privacy .c-section-title__ja {
    font-size: 1.75rem;
  }
}
.p-privacy .c-section-title__en {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-privacy .c-section-title__en {
    font-size: 0.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-privacy {
    padding-top: 5.625rem;
    padding-bottom: 5.9375rem;
  }
}
.p-privacy__inner {
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__inner {
    padding: 0 1.5625rem;
  }
}
.p-privacy__title {
  padding-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__title {
    padding-top: 3.75rem;
    margin-bottom: 5rem;
  }
}
.p-privacy__lead {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #333;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-privacy__lead {
    font-size: 1rem;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-privacy__lead p + p {
    margin-top: 1rem;
  }
}
.p-privacy__lead a {
  text-decoration: underline;
}
.p-privacy__section {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__section {
    margin-top: 2.5rem;
  }
}
.p-privacy__section-title {
  background-color: #edebe1;
  padding: 0.75rem 1rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-privacy__section-title {
    padding: 0.75rem 1.25rem;
    font-size: 1.125rem;
  }
}
.p-privacy__body {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-privacy__body {
    margin-top: 1.875rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}
.p-privacy__subtitle {
  margin-top: 1.25rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-privacy__subtitle {
    margin-top: 1.5rem;
  }
}
.p-privacy__list {
  list-style: none;
  padding: 0;
}
.p-privacy__list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .p-privacy__list li {
    line-height: 2;
  }
}
.p-privacy__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-privacy__list li + li {
  margin-top: 0.25rem;
}
.p-privacy__contact-info {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__contact-info {
    margin-top: 1.5rem;
  }
}
.p-privacy__contact-info a {
  text-decoration: underline;
}

.js-fade,
.c-section-title--vertical {
  will-change: filter, opacity, transform;
}

@media screen and (min-width: 768px) {
  .u-br-sp {
    display: none;
  }
}

.u-br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-br-pc {
    display: inline;
  }
}

.u-sp-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-sp-hidden {
    display: inline;
  }
}

.u-punct-end {
  letter-spacing: -0.35em;
}

.u-punct-mid {
  margin-inline: -0.2em;
}

.u-br-sp {
  display: inline;
}
@media screen and (min-width: 768px) {
  .u-br-sp {
    display: none;
  }
}

.u-br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-br-pc {
    display: inline;
  }
}



/* 2026_4_30 追記 */
.js-shop-btn{
	display:none;
}
.p-store-jyoukamati-enjoy .c-slider-linear{
	background:none;
}
