@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html:has(.p-hamburger-menu[data-is-open=true]) {
  overflow: hidden;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.sp {
  display: none;
}

:root {
  scroll-padding-top: 96px;
  scroll-behavior: smooth;
}

header {
  height: 96px;
  padding: 0 72px 0 64px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #ffffff;
  box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.0588235294);
}

.p-header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-header__logo {
  width: 216px;
}

.p-header__logo > a > img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
}

.p-header__nav__item {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: all 0.2s ease;
  cursor: pointer;
}

.p-header__nav__item:first-child {
  padding-right: 32px;
}

.p-header__nav__item:first-child::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 360px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%235F6368' d='M11.998 15a.86.86 0 0 1-.652-.255L6.72 10.267a.712.712 0 0 1-.219-.52.693.693 0 0 1 .219-.53A.752.752 0 0 1 7.26 9c.213 0 .394.072.543.216l4.194 4.06 4.193-4.06a.76.76 0 0 1 .538-.211.741.741 0 0 1 .547.211c.15.145.224.32.224.526 0 .205-.075.38-.224.525l-4.627 4.478a.86.86 0 0 1-.305.198 1.02 1.02 0 0 1-.346.057Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
  left: calc(100% - 24px);
}

.p-header__nav__item:first-child:hover::before {
  transform: translateY(-50%) scaleY(-1);
}

.p-header__nav__item:first-child:hover .p-header__nav__pulldown__menu {
  height: 228px;
}

.p-header__nav__item::after {
  content: "";
  width: 100%;
  height: 2px;
  display: inline-block;
  position: absolute;
  bottom: 23px;
  left: 0;
  background-color: #ffe300;
  transition: transform 0.3s;
  transform-origin: right top;
  transform: scale(0, 1);
}

.p-header__nav__item:hover:after {
  transform-origin: left;
  transform: scale(1, 1);
}

.p-header__nav__item > a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #211400;
}

.p-header__nav__pulldown__menu {
  height: 0px;
  position: absolute;
  top: 100%;
  overflow: hidden;
  transition: all 0.3s;
}

.p-header__nav__pulldown__menu__inner {
  width: 241px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.p-header__nav__pulldown__menu__item > a {
  padding-bottom: 9px;
  width: 100%;
  display: block;
  font-size: 15px;
  line-height: 1;
  color: #000000;
  transition: all 0.2s ease;
}

.p-header__nav__pulldown__menu__item > a:hover {
  color: #acaba1;
}

.p-header__nav__button {
  width: 220px;
  height: 56px;
}

.p-header__nav__button > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 2.4;
  color: #000000;
  background-color: #ffe300;
  border-radius: 40px;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.p-header__nav__button > a:hover {
  background-color: #ffffff;
  border: 1px solid #ffe300;
}

.p-header__hamburger-menu__icon {
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.p-header__hamburger-menu__icon > img {
  width: 100%;
  height: 100%;
}

.p-header__hamburger-menu__icon[data-is-open=true] > .p-hamburger-menu__icon--open {
  display: none;
}

.p-header__hamburger-menu__icon[data-is-open=true] > .p-hamburger-menu__icon--close {
  display: block;
}

.p-header__hamburger-menu__icon[data-is-open=false] > .p-hamburger-menu__icon--open {
  display: block;
}

.p-header__hamburger-menu__icon[data-is-open=false] > .p-hamburger-menu__icon--close {
  display: none;
}

.p-hamburger-menu {
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 8;
  background-color: #ffffff;
  padding: 24px 24px 20px;
  transform: translateX(100%);
  transition: 0.3s;
  overflow-y: scroll;
}

.p-hamburger-menu[data-is-open=true] {
  transform: translateX(0%);
}

.p-hamburger-menu > ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-hamburger-menu > .cv {
  margin-top: 40px;
}

.p-hamburger-menu > .cv > .cv__btn {
  margin: 0 auto;
}

.p-hamburger-menu__item {
  width: 100%;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #000000;
  border-bottom: 1px solid #d2d8d9;
}

.p-hamburger-menu__item > a {
  padding: 20px 0;
  width: 100%;
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #000000;
  transition: all 0.2s ease-in-out;
}

.p-hamburger-menu__item > a:hover {
  opacity: 0.6;
}

.p-hamburger-menu__item > a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 360px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%235F6368' d='M11.998 15a.86.86 0 0 1-.652-.255L6.72 10.267a.712.712 0 0 1-.219-.52.693.693 0 0 1 .219-.53A.752.752 0 0 1 7.26 9c.213 0 .394.072.543.216l4.194 4.06 4.193-4.06a.76.76 0 0 1 .538-.211.741.741 0 0 1 .547.211c.15.145.224.32.224.526 0 .205-.075.38-.224.525l-4.627 4.478a.86.86 0 0 1-.305.198 1.02 1.02 0 0 1-.346.057Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
  left: calc(100% - 24px);
  transform: translateY(-50%) rotate(-90deg);
}

.p-hamburger-menu__list {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-hamburger-menu__list__item > a {
  width: 100%;
  display: block;
  position: relative;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  color: #000000;
  transition: all 0.2s ease-in-out;
}

.p-hamburger-menu__list__item > a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 360px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%235F6368' d='M11.998 15a.86.86 0 0 1-.652-.255L6.72 10.267a.712.712 0 0 1-.219-.52.693.693 0 0 1 .219-.53A.752.752 0 0 1 7.26 9c.213 0 .394.072.543.216l4.194 4.06 4.193-4.06a.76.76 0 0 1 .538-.211.741.741 0 0 1 .547.211c.15.145.224.32.224.526 0 .205-.075.38-.224.525l-4.627 4.478a.86.86 0 0 1-.305.198 1.02 1.02 0 0 1-.346.057Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
  left: calc(100% - 24px);
  transform: translateY(-50%) rotate(-90deg);
}

.p-hamburger-menu__list__item > a:hover {
  opacity: 0.6;
}

.p-hamburger-menu__button {
  margin-top: 20px;
  width: 100%;
  height: 64px;
}

.p-hamburger-menu__button > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 2.4;
  color: #000000;
  background-color: #ffe300;
  border-radius: 40px;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.p-hamburger-menu__button > a:hover {
  background-color: #ffffff;
  border: 1px solid #ffe300;
}

.p-hamburger-menu__link {
  margin-top: 43px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-hamburger-menu__link > a {
  font-size: 13px;
  line-height: 1.4;
  color: #000000;
  transition: all 0.2s ease-in-out;
}

.p-hamburger-menu__link > a:hover {
  opacity: 0.6;
}

.p-hamburger-menu__link > a:first-child {
  margin-bottom: 12px;
}

.p-hamburger-menu__link > a:last-child {
  margin-top: 12px;
  text-decoration: underline;
}

.p-hamburger-menu__copy {
  margin-top: 40px;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: #acaba1;
}

footer > a {
  margin: 0 80px 0 auto;
  width: 137px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 11px;
  line-height: 1;
  color: #5f6368;
  text-decoration: underline;
  transition: all 0.2s ease;
}

footer > a:hover {
  color: #acaba1;
}

.p-footer__inner {
  padding: 64px 80px 124px 115px;
  display: flex;
  justify-content: space-between;
  background-color: #f8f8f2;
}

.p-footer__logo-copy {
  width: 305px;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}

.p-footer__logo {
  margin-bottom: 24px;
  width: 216px;
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
}

.p-footer__content {
  height: 150px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}

.p-footer__content__item {
  width: 240px;
}

.p-footer__content__item:last-child > a {
  text-decoration: underline;
}

.p-footer__content__item > a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  transition: all 0.2s ease-in-out;
}

.p-footer__content__item > a:hover {
  opacity: 0.6;
}

.p-footer__content__sp {
  display: none;
}

.p-footer__content__sp .p-footer__content__item > a {
  font-size: 12px;
}

.p-footer__copyright {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background-color: #000;
}

.c-menu-card {
  max-width: 240px;
  transition: all 0.2s ease-in-out;
}

.c-menu-card:hover {
  opacity: 0.6;
}

.c-menu-card__img {
  width: 100%;
  aspect-ratio: 1/1;
}

.c-menu-card__img > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-menu-card__text {
  padding: 16px 20px;
  height: calc(100% - 240px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-inline: 1px solid #e2e5e5;
  border-bottom: 1px solid #e2e5e5;
  box-sizing: border-box;
}

.c-menu-card__name-ja {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #211400;
}

.c-menu-card__name-ja > span {
  display: block;
}

.c-menu-card__name-en {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 2px;
  color: #211400;
}

.c-shopinfo {
  padding: 100px 0 120px;
  border-top: 1px solid #d2d8d9;
}

.c-shopinfo__inner {
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1200px;
}

.c-shopinfo__head {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 2.36;
  text-align: center;
}

.c-shopinfo__slide {
  width: 100%;
}

.c-shopinfo__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-shopinfo__box {
  margin-top: 16px;
  height: 281px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.c-shopinfo__map {
  width: 100%;
  height: 100%;
}

.c-shopinfo__link > a {
  position: relative;
  transition: all 0.2s ease-in-out;
  padding-left: 64px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  color: #211400;
  border: 1px solid #d2d8d9;
  box-sizing: border-box;
}

.c-shopinfo__link > a::after {
  content: "";
  display: inline-block;
  width: 72px;
  height: 72px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' fill='none'%3E%3Ccircle cx='36' cy='36' r='36' fill='%23F3F5F5'/%3E%3Cpath fill='%23000' d='M42.429 36.004c0 .232-.037.448-.111.647-.074.2-.201.39-.38.57L33.3 45.856c-.266.266-.6.402-1.003.409a1.36 1.36 0 0 1-1.022-.409 1.38 1.38 0 0 1-.418-1.013c0-.396.14-.734.418-1.012l7.828-7.828-7.828-7.827a1.395 1.395 0 0 1-.409-1.004 1.36 1.36 0 0 1 .409-1.021 1.38 1.38 0 0 1 1.013-.418c.396 0 .734.14 1.012.417l8.637 8.637c.18.18.307.37.38.57.075.2.112.415.112.646Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
  right: 44px;
}

.c-shopinfo__link > a:hover {
  background-color: #f8f9f9;
}

.c-shopinfo__link > a:hover::after {
  content: "";
  display: inline-block;
  width: 72px;
  height: 72px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' fill='none'%3E%3Ccircle cx='36' cy='36' r='36' fill='%23E2E5E5'/%3E%3Cpath fill='%23000' d='M42.429 36.004c0 .232-.037.448-.111.647-.074.2-.201.39-.38.57L33.3 45.856c-.266.266-.6.402-1.003.409a1.36 1.36 0 0 1-1.022-.409 1.38 1.38 0 0 1-.418-1.013c0-.396.14-.734.418-1.012l7.828-7.828-7.828-7.827a1.395 1.395 0 0 1-.409-1.004 1.36 1.36 0 0 1 .409-1.021 1.38 1.38 0 0 1 1.013-.418c.396 0 .734.14 1.012.417l8.637 8.637c.18.18.307.37.38.57.075.2.112.415.112.646Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
}

.c-pulldown {
  padding: 40px 0;
  margin: 0 auto;
  width: 400px;
  position: relative;
  z-index: 3;
}

.c-pulldown__head {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #f3f5f5;
  cursor: pointer;
}

.c-pulldown__head::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 360px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%235F6368' d='M11.998 15a.86.86 0 0 1-.652-.255L6.72 10.267a.712.712 0 0 1-.219-.52.693.693 0 0 1 .219-.53A.752.752 0 0 1 7.26 9c.213 0 .394.072.543.216l4.194 4.06 4.193-4.06a.76.76 0 0 1 .538-.211.741.741 0 0 1 .547.211c.15.145.224.32.224.526 0 .205-.075.38-.224.525l-4.627 4.478a.86.86 0 0 1-.305.198 1.02 1.02 0 0 1-.346.057Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
}

.c-pulldown__head > span {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.c-pulldown__head.is-open::after {
  transform: translateY(-50%) scaleY(-1);
}

.c-pulldown__menu {
  height: 0;
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.0588235294);
}

.c-pulldown__menu.is-open {
  height: 88px;
}

.c-pulldown__menu__item {
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.c-pulldown__menu__item.is-disabled {
  background-color: #f3f5f5;
  cursor: auto;
}

.c-pulldown__menu__item:hover {
  background-color: #f3f5f5;
}

.c-member-card {
  width: 345px;
  border: 1px solid #d2d8d9;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-member-card__img {
  position: relative;
  width: 100%;
}

.c-member-card__img span {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1px;
  color: #fff;
}

.c-member-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-member-card__text {
  padding: 0 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #000000;
}

.c-member-card__price {
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  border-bottom: 1px solid #d2d8d9;
}

.c-member-card__price p {
  font-size: 18px;
  font-weight: 400;
}

.c-member-card__price p span {
  font-size: 12px;
}

.c-member-card__description {
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}

.c-member-card__description > span {
  margin-top: 18px;
  display: block;
  font-size: 12px;
}

.c-news-card {
  width: 410px;
}

.c-news-card a {
  transition: all 0.2s ease-in-out;
}

.c-news-card a:hover {
  opacity: 0.6;
}

.c-news-card__img {
  margin: 0 0 12px;
  width: 100%;
  height: 232px;
}

.c-news-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-news-card__title {
  color: #281d1b;
}

.c-breadcrumb {
  width: calc(100% - 160px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  position: absolute;
  top: 128px;
  left: 80px;
  font-size: 14px;
  color: #acaba1;
}

.c-breadcrumb a {
  display: block;
  font-size: 14px;
  color: #acaba1;
  transition: all 0.2s ease-in-out;
}

.c-breadcrumb a:hover {
  opacity: 0.6;
}

.add {
  background-color: #F7F2E5;
  color: #211400;
}

.add__inner {
  padding: 40px 0 80px;
}

.add__heading {
  margin-bottom: 56px;
  font-size: 24px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.4583333333;
  text-align: center;
}

.add__heading::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 16px;
  margin-bottom: 8px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='14'%3E%3Cg fill='%23F69424' fill-rule='evenodd'%3E%3Cpath d='M2.597.888c0 .117.005.247.019.39a7.847 7.847 0 0 0 2.321 4.886c1.415 1.393 2.057 5.458 3.09 6.343.127.108.237.192.333.254-.682.37-2.354.92-4.58-.796C.834 9.697-.942 5.431.525 3.265 1.333 2.071 1.933 1.36 2.597.887Zm8.616 3.427c1.166 2.818 1.489 6.969-2.28 8.157-.194-.408-.797-1.765-.909-3.097-.134-1.593-.355-3.057-2.438-5.34C3.993 2.29 3.36 1.265 3.279.49c.36-.169.755-.3 1.22-.421 1.724-.453 5.524 1.37 6.714 4.246ZM29.403.888c0 .117-.005.247-.019.39a7.847 7.847 0 0 1-2.321 4.886c-1.415 1.393-2.057 5.458-3.09 6.343a3.266 3.266 0 0 1-.333.254c.682.37 2.354.92 4.58-.796 2.946-2.268 4.722-6.534 3.255-8.7-.808-1.193-1.408-1.904-2.072-2.377Zm-8.616 3.427c-1.166 2.818-1.489 6.969 2.28 8.157.194-.408.797-1.765.909-3.097.134-1.593.355-3.057 2.438-5.34C28.007 2.29 28.64 1.265 28.721.49c-.36-.169-.755-.3-1.22-.421-1.724-.453-5.524 1.37-6.714 4.246ZM41.314 3.17c.117 0 .247.007.39.02A7.847 7.847 0 0 1 46.59 5.51c1.393 1.415 5.458 2.057 6.343 3.09.108.127.191.237.254.333.37-.682.92-2.354-.796-4.58-2.268-2.945-6.534-4.722-8.7-3.255-1.193.808-1.904 1.408-2.377 2.072Zm3.426 8.617c2.819 1.166 6.97 1.489 8.158-2.28-.408-.194-1.765-.796-3.098-.909-1.593-.133-3.056-.355-5.339-2.438-1.746-1.593-2.77-2.226-3.545-2.307-.169.36-.3.755-.421 1.22-.453 1.724 1.37 5.524 4.245 6.714Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.add__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.add__accordion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.add__accordion__label {
  width: 359px;
  padding: 12px 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4444444444;
  border-radius: 8px;
  background-color: #76A076;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add__accordion__label[data-is-open=true]::after {
  width: 15px;
  height: 15px;
  right: 30px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.625' height='2.25'%3E%3Cpath fill='%23ffffff' fill-rule='nonzero' d='M13.5 2.25H1.125a1.125 1.125 0 1 1 0-2.25H13.5a1.124 1.124 0 1 1 0 2.25Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.add__accordion__label[data-is-open=false]::after {
  width: 15px;
  height: 15px;
  right: 30px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.625' height='14.625'%3E%3Cpath fill='%23ffffff' fill-rule='nonzero' d='M14.625 7.313c0 .621-.504 1.125-1.125 1.125H8.437V13.5a1.124 1.124 0 1 1-2.25 0V8.438H1.125a1.125 1.125 0 1 1 0-2.25h5.063V1.125a1.125 1.125 0 1 1 2.25 0v5.063H13.5c.622 0 1.125.502 1.125 1.125Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.add__accordion__label:hover {
  background-color: #9fbd9f;
}

.add__accordion__label__notes {
  font-size: 15px;
  line-height: 1.4;
}

.add__accordion__content__wrapper {
  transition: all 0.5s ease;
}

.add__accordion__content__wrapper[data-is-open=false] {
  height: 0;
  overflow: hidden;
}

.add__accordion__content__wrapper[data-is-open=true] {
  overflow: auto;
}

.add__accordion__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 44px 0 53px;
  gap: 34px;
}

.add__accordion__content__unit {
  width: 335px;
  padding: 42px 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
  border-radius: 8px;
  background-color: #ffffff;
}

.add__accordion__content__label {
  width: 112px;
  height: auto;
  position: absolute;
  top: -18px;
}

.add__accordion__content__label > img {
  width: 100%;
  height: auto;
}

.add__accordion__content__description {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.add__accordion__content__img-01 {
  width: 303px;
  height: auto;
  line-height: 0;
}

.add__accordion__content__img-01 > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.add__accordion__content__img-02 {
  width: 303px;
  height: auto;
  margin-bottom: 8px;
  line-height: 0;
}

.add__accordion__content__img-02 > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.add__accordion__content__img-03 {
  width: 303px;
  height: auto;
  line-height: 0;
}

.add__accordion__content__img-03 > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.add__accordion__content__img-04 {
  width: 153px;
  height: auto;
  line-height: 0;
}

.add__accordion__content__img-04 > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.add__accordion__content__img-05 {
  width: 303px;
  height: auto;
  line-height: 0;
}

.add__accordion__content__img-05 > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.add__accordion__content__img-06 {
  width: 303px;
  height: auto;
  line-height: 0;
}

.add__accordion__content__img-06 > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.add__accordion__content__img-07 {
  width: 303px;
  height: auto;
  margin-bottom: -8px;
  line-height: 0;
}

.add__accordion__content__img-07 > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.column-list {
  padding-bottom: 48px;
  background-color: #F7F2E5;
}

.column__nav__wrapper {
  background-color: #B1AB99;
}

.column__nav {
  padding: 12px 18px 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.column__nav::-webkit-scrollbar {
  display: none;
}

.column__nav__item {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4166666667;
  flex-shrink: 0;
}

.column__nav__item > a {
  color: #ffffff;
  transition: all 0.2s ease;
}

.column__nav__item > a:hover {
  opacity: 0.7;
}

.column-list__heading {
  width: 345px;
  margin: 24px auto;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3333333333;
}

.column-list__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.column-list__unit {
  width: 345px;
  padding: 12px 16px 12px 12px;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 8px;
}

.column-list__unit:hover > .column-list__unit__inner {
  opacity: 0.7;
}

.column-list__unit__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
}

.column-list__unit__img {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.column-list__unit__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.column-list__unit__text {
  height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.column-list__unit__heading {
  font-size: 14px;
  font-weight: bold;
  color: #211400;
  line-height: 1.4117647059;
  flex-wrap: wrap;
}

.column-list__unit__category {
  margin: 0 0 6px 16px;
  position: relative;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  color: #A1A1A1;
}

.column-list__unit__category::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%23A1A1A1' fill-rule='nonzero' d='M11.67 5.295 6.705.33A1.125 1.125 0 0 0 5.909 0H1.125C.504 0 0 .504 0 1.125v4.784c0 .298.119.585.33.796l4.965 4.965c.44.44 1.152.44 1.591 0l4.784-4.784c.44-.439.44-1.151 0-1.59Zm-.53 1.061L6.356 11.14a.375.375 0 0 1-.53 0L.86 6.174a.373.373 0 0 1-.11-.265V1.125C.75.918.918.75 1.125.75h4.784c.1 0 .194.039.265.11l4.966 4.966a.375.375 0 0 1 0 .53Zm-7.765-3.45a.47.47 0 1 1-.001.939.47.47 0 0 1 .001-.939m0-.656a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.column-list__unit__date {
  margin: 0 0 6px 16px;
  position: relative;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  color: #A1A1A1;
}

.column-list__unit__date::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%23A1A1A1' fill-rule='nonzero' d='M6 0C2.685 0 0 2.685 0 6s2.685 6 6 6 6-2.685 6-6-2.685-6-6-6Zm5.226 6A5.226 5.226 0 1 1 .775 6a5.226 5.226 0 0 1 10.45 0ZM7.623 8.136 5.66 6.71a.292.292 0 0 1-.119-.235V2.613c0-.16.131-.29.29-.29h.34c.159 0 .29.13.29.29v3.54l1.705 1.24a.29.29 0 0 1 .063.407l-.198.273a.292.292 0 0 1-.407.063Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-404 {
  padding: 86px 0 160px;
}

.page-404__text {
  margin: 0 auto 66px;
  max-width: 750px;
  text-align: center;
  font-size: 15px;
  line-height: 175%;
}

.page-404__text > h1 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
}

.privacy__inner {
  padding: 32px 0;
}

.privacy__content {
  width: 335px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #ffffff;
  gap: 32px;
}

.privacy__heading {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4444444444;
}

.privacy__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  text-align: justified;
}

.privacy__sub-heading {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
}

.send__top {
  margin: 0 auto;
  width: 360px;
  height: 80px;
}

.send__top > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 2.4;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #d2d8d9;
  border-radius: 40px;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.send__top > a:hover {
  background-color: #f8f9f9;
  border: 1px solid #d2d8d9;
}

.send {
  height: calc(100vh - 200px);
  min-height: 531px;
  background-color: #f7f2e5;
  color: #211400;
}

.send__inner {
  padding: 32px 0;
}

.send__content {
  width: 335px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.send__img {
  width: 165px;
  height: auto;
  margin: 0 32px 24px 0;
  line-height: 0;
}

.send__img > img {
  width: 100%;
  height: auto;
}

.send__heading {
  width: 300px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.45;
}

.send__description {
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.4;
}

.send__btn {
  width: 295px;
  height: 56px;
  line-height: 56px;
}

.send__btn > a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background: #333333;
  text-align: center;
  color: #ffffff;
  font-family: "Zen Maru Gothic", serif;
  transition: all 0.2s ease;
}

.send__btn > a:hover {
  color: #ffffff;
  background-color: #5e5e5e;
}

.send__btn > a {
  font-size: 16px;
  font-weight: bold;
  border-radius: 28px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
}

.s-shop__inner {
  padding: 40px 0 120px;
}

.s-shop__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}

.s-shop__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.s-shop__body {
  margin: 0 auto;
  max-width: 1200px;
}

.s-shop__slide .splide__slide {
  aspect-ratio: 1.436;
}

.s-shop__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.s-shop__info {
  margin-top: 40px;
  display: flex;
  gap: 72px;
}

.s-shop__text {
  width: calc(50% - 31px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.s-shop__name {
  padding: 20px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.s-shop__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.s-shop__unit {
  padding-bottom: 24px;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #d2d8d9;
}

.s-shop__unit__heading {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  flex-shrink: 0;
}

.s-shop__unit__description {
  padding-right: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.s-shop__unit__description a {
  color: #000000;
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}

.s-shop__unit__description a:hover {
  opacity: 0.6;
}

.s-shop__map {
  padding-top: 23px;
  width: calc(50% - 31px);
}

.s-shop__map iframe {
  height: 100%;
  width: 100%;
}

.s-shop__menu {
  margin: 57px auto 0;
  max-width: 1024px;
}

.s-shop__menu__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}

.s-shop__menu__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.s-shop__menu__list {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 21.33px;
}

.column {
  background-color: #ffffff;
  color: #424242;
}

.column__top {
  width: 375px;
  margin: 0 auto;
  padding: 32px 24px 20px;
  box-sizing: border-box;
}

.column__heading {
  width: auto;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4166666667;
  margin-bottom: 12px;
}

.column__category {
  position: relative;
  display: inline-block;
  margin: 0 12px 0 16px;
  font-size: 10px;
  line-height: 1;
  color: #A1A1A1;
}

.column__category::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%23A1A1A1' fill-rule='nonzero' d='M11.67 5.295 6.705.33A1.125 1.125 0 0 0 5.909 0H1.125C.504 0 0 .504 0 1.125v4.784c0 .298.119.585.33.796l4.965 4.965c.44.44 1.152.44 1.591 0l4.784-4.784c.44-.439.44-1.151 0-1.59Zm-.53 1.061L6.356 11.14a.375.375 0 0 1-.53 0L.86 6.174a.373.373 0 0 1-.11-.265V1.125C.75.918.918.75 1.125.75h4.784c.1 0 .194.039.265.11l4.966 4.966a.375.375 0 0 1 0 .53Zm-7.765-3.45a.47.47 0 1 1-.001.939.47.47 0 0 1 .001-.939m0-.656a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.column__date {
  position: relative;
  display: inline-block;
  margin-left: 16px;
  font-size: 10px;
  line-height: 1;
  color: #A1A1A1;
}

.column__date::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%23A1A1A1' fill-rule='nonzero' d='M6 0C2.685 0 0 2.685 0 6s2.685 6 6 6 6-2.685 6-6-2.685-6-6-6Zm5.226 6A5.226 5.226 0 1 1 .775 6a5.226 5.226 0 0 1 10.45 0ZM7.623 8.136 5.66 6.71a.292.292 0 0 1-.119-.235V2.613c0-.16.131-.29.29-.29h.34c.159 0 .29.13.29.29v3.54l1.705 1.24a.29.29 0 0 1 .063.407l-.198.273a.292.292 0 0 1-.407.063Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.column__img {
  width: 375px;
  height: 250px;
  margin: 0 auto;
}

.column__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.column__content {
  width: 320px;
  padding: 48px 0;
  margin: 0 auto;
}

.column__content > h2 {
  margin-bottom: 32px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4545454545;
}

.column__content > h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6666666667;
}

.column__content > h4 {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8571428571;
}

.column__content > p {
  font-size: 15px;
  line-height: 1.8;
}

.column__content > p > a {
  color: #211400;
  text-decoration: underline;
}

.column__content > p > img {
  display: block;
  width: 100%;
}

.column__list {
  width: 375px;
  margin: 0 auto;
  padding: 32px 15px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  box-sizing: border-box;
}

.column__list__unit {
  width: 165px;
  height: 241px;
  transition: all 0.2s ease;
}

.column__list__unit:hover {
  opacity: 0.7;
}

.column__list__unit__img {
  width: 100%;
  height: auto;
  line-height: 0;
}

.column__list__unit__img > img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.column__list__unit__text {
  padding: 4px 12px 14px;
}

.column__list__unit__heading {
  height: 66px;
  margin-bottom: 17px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5714285714;
  color: #211400;
}

.column__list__unit__category {
  position: relative;
  margin: 0 0 6px 16px;
  font-size: 12px;
  line-height: 1;
  color: #A1A1A1;
}

.column__list__unit__category::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%23A1A1A1' fill-rule='nonzero' d='M11.67 5.295 6.705.33A1.125 1.125 0 0 0 5.909 0H1.125C.504 0 0 .504 0 1.125v4.784c0 .298.119.585.33.796l4.965 4.965c.44.44 1.152.44 1.591 0l4.784-4.784c.44-.439.44-1.151 0-1.59Zm-.53 1.061L6.356 11.14a.375.375 0 0 1-.53 0L.86 6.174a.373.373 0 0 1-.11-.265V1.125C.75.918.918.75 1.125.75h4.784c.1 0 .194.039.265.11l4.966 4.966a.375.375 0 0 1 0 .53Zm-7.765-3.45a.47.47 0 1 1-.001.939.47.47 0 0 1 .001-.939m0-.656a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.column__list__unit__date {
  position: relative;
  margin-left: 16px;
  font-size: 12px;
  line-height: 1;
  color: #A1A1A1;
}

.column__list__unit__date::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%23A1A1A1' fill-rule='nonzero' d='M6 0C2.685 0 0 2.685 0 6s2.685 6 6 6 6-2.685 6-6-2.685-6-6-6Zm5.226 6A5.226 5.226 0 1 1 .775 6a5.226 5.226 0 0 1 10.45 0ZM7.623 8.136 5.66 6.71a.292.292 0 0 1-.119-.235V2.613c0-.16.131-.29.29-.29h.34c.159 0 .29.13.29.29v3.54l1.705 1.24a.29.29 0 0 1 .063.407l-.198.273a.292.292 0 0 1-.407.063Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.column_non {
  white-space: nowrap;
}

.guide__top__title {
  height: 345px;
  padding: 0 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  background-image: url(../assets/images/guide/TitleCover.png);
  background-size: 450px auto;
  background-repeat: no-repeat;
  background-position: center 10%;
  background-color: #b1ab99;
}

.guide__top__title-en {
  width: 327px;
  height: 11px;
  margin: 0 auto 7px;
}

.guide__top__title-en > img {
  width: auto;
  height: 100%;
}

.guide__top__title-ja {
  width: 327px;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 900;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.25;
  color: #ffffff;
}

.guide__body__wrapper {
  background-color: #f7f2e5;
}

.guide__body {
  padding: 50px 0px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 34px;
  color: #211400;
}

.guide__unit {
  width: 335px;
  position: relative;
  padding: 42px 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background-color: #ffffff;
  border-radius: 8px;
}

.guide__unit__label {
  width: 112px;
  height: auto;
  position: absolute;
  top: -18px;
}

.guide__unit__label > img {
  width: 100%;
  height: auto;
}

.guide__unit__heading {
  width: 287px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.guide__unit__description {
  width: 287px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  text-align: justify;
}

.guide__unit__notes {
  width: 287px;
  margin-top: -8px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4166666667;
  color: #5e5e5e;
}

.guide__unit__img-01 {
  width: 91px;
  height: auto;
}

.guide__unit__img-01 > img {
  width: 100%;
  height: auto;
}

.guide__unit__img-02 {
  width: 100%;
  height: auto;
  margin: -24px 0 -24px;
}

.guide__unit__img-02 > img {
  width: 100%;
  height: auto;
}

.guide__unit__img-03 {
  width: 210px;
  height: auto;
}

.guide__unit__img-03 > img {
  width: 100%;
  height: auto;
}

.guide__faq {
  padding: 24px 0 58px;
  background-color: #f7f2e5;
  color: #211400;
}

.guide__faq__heading {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.4583333333;
  text-align: center;
}

.guide__faq__heading::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 16px;
  margin-bottom: 8px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='14'%3E%3Cg fill='%23F69424' fill-rule='evenodd'%3E%3Cpath d='M2.597.888c0 .117.005.247.019.39a7.847 7.847 0 0 0 2.321 4.886c1.415 1.393 2.057 5.458 3.09 6.343.127.108.237.192.333.254-.682.37-2.354.92-4.58-.796C.834 9.697-.942 5.431.525 3.265 1.333 2.071 1.933 1.36 2.597.887Zm8.616 3.427c1.166 2.818 1.489 6.969-2.28 8.157-.194-.408-.797-1.765-.909-3.097-.134-1.593-.355-3.057-2.438-5.34C3.993 2.29 3.36 1.265 3.279.49c.36-.169.755-.3 1.22-.421 1.724-.453 5.524 1.37 6.714 4.246ZM29.403.888c0 .117-.005.247-.019.39a7.847 7.847 0 0 1-2.321 4.886c-1.415 1.393-2.057 5.458-3.09 6.343a3.266 3.266 0 0 1-.333.254c.682.37 2.354.92 4.58-.796 2.946-2.268 4.722-6.534 3.255-8.7-.808-1.193-1.408-1.904-2.072-2.377Zm-8.616 3.427c-1.166 2.818-1.489 6.969 2.28 8.157.194-.408.797-1.765.909-3.097.134-1.593.355-3.057 2.438-5.34C28.007 2.29 28.64 1.265 28.721.49c-.36-.169-.755-.3-1.22-.421-1.724-.453-5.524 1.37-6.714 4.246ZM41.314 3.17c.117 0 .247.007.39.02A7.847 7.847 0 0 1 46.59 5.51c1.393 1.415 5.458 2.057 6.343 3.09.108.127.191.237.254.333.37-.682.92-2.354-.796-4.58-2.268-2.945-6.534-4.722-8.7-3.255-1.193.808-1.904 1.408-2.377 2.072Zm3.426 8.617c2.819 1.166 6.97 1.489 8.158-2.28-.408-.194-1.765-.796-3.098-.909-1.593-.133-3.056-.355-5.339-2.438-1.746-1.593-2.77-2.226-3.545-2.307-.169.36-.3.755-.421 1.22-.453 1.724 1.37 5.524 4.245 6.714Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.accordion__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.guide__faq__accordion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.accordion__heading {
  width: 345px;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 16.5px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: justify;
  border-radius: 8px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05);
  background: linear-gradient(to right, #ffe300 56px, #ffffff 56px);
  cursor: pointer;
}

.accordion__heading[data-is-open=true]::after {
  width: 18px;
  height: 18px;
  right: 19px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.625' height='2.25'%3E%3Cpath fill='%23211400' fill-rule='nonzero' d='M13.5 2.25H1.125a1.125 1.125 0 1 1 0-2.25H13.5a1.124 1.124 0 1 1 0 2.25Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.accordion__heading[data-is-open=false]::after {
  width: 18px;
  height: 18px;
  right: 19px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.625' height='14.625'%3E%3Cpath fill='%23211400' fill-rule='nonzero' d='M14.625 7.313c0 .621-.504 1.125-1.125 1.125H8.437V13.5a1.124 1.124 0 1 1-2.25 0V8.438H1.125a1.125 1.125 0 1 1 0-2.25h5.063V1.125a1.125 1.125 0 1 1 2.25 0v5.063H13.5c.622 0 1.125.502 1.125 1.125Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.accordion__heading-text {
  width: 200px;
  padding: 17px 0;
}

.accordion__heading__number {
  width: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Roboto";
  font-size: 20px;
  font-weight: bold;
}

.accordion__description__wrapper {
  transition: all 0.5s ease;
}

.accordion__description__wrapper[data-is-open=true] {
  overflow-y: auto;
}

.accordion__description__wrapper[data-is-open=false] {
  height: 0;
  overflow: hidden;
}

.accordion__description {
  width: 305px;
  padding: 20px 20px 24px;
  margin: 8px 0 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-align: justify;
  border-radius: 8px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.050638);
  background-color: #ffffff;
}

main {
  padding-top: 96px;
}

.p-home__mv__inner {
  margin-bottom: 120px;
  padding-left: 170px;
  position: relative;
}

.p-home__mv__inner > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-home__mv__copy {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: absolute;
  top: 24%;
  left: 72px;
}

.p-home__mv__copy > img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-home__mv__copy > img:first-child {
  width: 379px;
}

.p-home__mv__copy > img:nth-child(2) {
  width: 392px;
}

.p-home__about__inner {
  max-width: 1320px;
  padding-left: 40px;
  margin: 0 0 80px auto;
  display: flex;
  flex-direction: row-reverse;
  gap: 95px;
}

.p-home__about__inner.sp {
  display: none;
}

.p-home__about__img > img {
  display: block;
  width: 595px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home__about__text {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  font-size: 15px;
  line-height: 2.15;
  text-align: justify;
}

.p-home__about__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  vertical-align: middle;
  text-align: center;
}

.p-home__about__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.p-home__future__inner {
  max-width: 1320px;
  padding-right: 40px;
  margin: 0 auto 120px 0;
  display: flex;
  gap: 95px;
}

.p-home__future__inner.sp {
  display: none;
}

.p-home__future__img > img {
  display: block;
  width: 595px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home__future__text {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  font-size: 15px;
  line-height: 2.15;
  text-align: justify;
}

.p-home__future__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  vertical-align: middle;
  text-align: center;
}

.p-home__future__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.p-home__video {
  margin: 0 auto 80px;
  max-width: 960px;
  height: auto;
  aspect-ratio: 960/540;
  background-color: #d9d9d9;
}

.p-home__video > video {
  width: 100%;
  height: auto;
}

.p-home__intro__inner {
  padding: 100px 80px 80px;
  position: relative;
  background: #f8f8f2;
}

.p-home__intro__heading {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}

.p-home__intro__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.p-home__intro__img {
  position: absolute;
  top: 48px;
  right: 48px;
}

.p-home__intro__img > img {
  width: 164px;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home__intro__block {
  margin: 72px auto 40px;
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.p-home__intro__unit {
  padding: 60px 40px;
  width: calc(33.3333333333% - 26.6666666667px);
  height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  background-color: #ffffff;
  box-sizing: border-box;
}

.p-home__intro__unit > span {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}

.p-home__intro__unit__img > img {
  width: 128px;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home__intro__unit__text {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.p-home__intro__unit__text > p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.p-home__intro__unit__text span {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: #5e5e5e;
}

.p-home__intro__cv {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  line-height: normal;
}

.p-home__intro__cv > span {
  margin: 16px 0 40px;
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;
}

.p-home__intro__button {
  margin: 0 auto;
  width: 360px;
  height: 80px;
}

.p-home__intro__button > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.4;
  color: #000000;
  background-color: #ffe300;
  border-radius: 40px;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.p-home__intro__button > a:hover {
  background-color: #ffffff;
  border: 1px solid #ffe300;
}

.p-home__receive__inner {
  padding: 80px 80px 100px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}

.p-home__receive__heading {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}

.p-home__receive__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.p-home__receive__block {
  margin: 96px auto 0;
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.p-home__receive__unit {
  padding: 60px 40px;
  width: calc(33.3333333333% - 26.6666666667px);
  height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  background-color: #f3f5f5;
  box-sizing: border-box;
}

.p-home__receive__unit > span {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}

.p-home__receive__unit__img > img {
  width: 128px;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home__receive__unit__text {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.p-home__receive__unit__text > p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.p-top__menu__inner {
  margin-bottom: 100px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}

.p-home__menu__heading {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}

.p-home__menu__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.p-home__menu__slide {
  margin: 80px 0;
}

.p-home__menu__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home__menu_button {
  margin: 0 auto;
  width: 360px;
  height: 80px;
}

.p-home__menu_button > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.4;
  color: #000000;
  background-color: #ffe300;
  border-radius: 40px;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.p-home__menu_button > a:hover {
  background-color: #ffffff;
  border: 1px solid #ffe300;
}

.p-home__shop__inner {
  padding: 40px 0 80px;
  background-color: #f8f8f2;
}

.p-home__shop__heading {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}

.p-home__shop__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.p-home__shop__block {
  padding: 0 calc((100% - 80px - 1142px) / 2);
  display: flex;
  gap: 80px;
  overflow-x: scroll;
}

.p-home__shop__block::-webkit-scrollbar {
  display: none;
}

.p-home__shop__unit {
  flex-shrink: 0;
  width: 571px;
  background-color: #ffffff;
}

.p-home__shop__unit__img > img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home__shop__unit__img.coming-soon {
  position: relative;
}

.p-home__shop__unit__img.coming-soon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.92);
}

.p-home__shop__unit__img.coming-soon > span {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.p-home__shop__unit__text {
  margin-bottom: 56px;
  padding: 28px 40px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}

.p-home__shop__unit__info {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
  font-weight: 400;
}

.p-home__shop__unit__address {
  padding-left: 48px;
  position: relative;
}

.p-home__shop__unit__address::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' fill='none'%3E%3Cpath fill='%23FFE300' d='M18 29.467c2.984-2.671 5.267-5.233 6.85-7.686 1.583-2.453 2.374-4.602 2.374-6.446 0-2.78-.883-5.066-2.65-6.857C22.808 6.687 20.616 5.791 18 5.791c-2.616 0-4.808.896-6.574 2.687-1.767 1.791-2.65 4.077-2.65 6.857 0 1.844.791 3.993 2.374 6.446 1.583 2.453 3.866 5.015 6.85 7.686Zm0 2.176c-.297 0-.594-.051-.892-.154a2.352 2.352 0 0 1-.806-.476 56.165 56.165 0 0 1-3.843-3.897 34.907 34.907 0 0 1-3.11-4.008c-.881-1.335-1.578-2.66-2.091-3.971-.514-1.312-.77-2.58-.77-3.802 0-3.52 1.138-6.369 3.415-8.548C12.18 4.607 14.88 3.518 18 3.518c3.12 0 5.82 1.09 8.097 3.269 2.277 2.18 3.415 5.029 3.415 8.548 0 1.223-.256 2.487-.77 3.794-.513 1.308-1.207 2.631-2.084 3.972a33.518 33.518 0 0 1-3.103 4.008 56.994 56.994 0 0 1-3.842 3.889 2.378 2.378 0 0 1-.808.484 2.679 2.679 0 0 1-.905.161Zm.003-13.841c.758 0 1.407-.27 1.946-.81.539-.541.808-1.19.808-1.95a2.65 2.65 0 0 0-.81-1.946 2.662 2.662 0 0 0-1.95-.808c-.759 0-1.407.27-1.946.81a2.661 2.661 0 0 0-.808 1.95c0 .759.27 1.407.81 1.946.54.539 1.19.808 1.95.808Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
}

.p-home__shop__unit__hours {
  padding-top: 3.5px;
  padding-left: 48px;
  position: relative;
}

.p-home__shop__unit__hours::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' fill='none'%3E%3Cpath fill='%23FFE300' d='M18.977 17.604v-5.14a.945.945 0 0 0-.281-.696.946.946 0 0 0-.696-.281.944.944 0 0 0-.696.28.946.946 0 0 0-.281.697v5.44a1.172 1.172 0 0 0 .353.844l4.462 4.462c.18.18.407.273.68.277a.92.92 0 0 0 .692-.276.935.935 0 0 0 .284-.687.934.934 0 0 0-.284-.686l-4.233-4.234Zm-.975 12.771c-1.711 0-3.32-.325-4.826-.974a12.498 12.498 0 0 1-3.93-2.645A12.5 12.5 0 0 1 6.6 22.828c-.65-1.506-.975-3.114-.975-4.826 0-1.711.325-3.32.974-4.826a12.499 12.499 0 0 1 2.645-3.93A12.498 12.498 0 0 1 13.172 6.6c1.506-.65 3.114-.975 4.826-.975 1.711 0 3.32.325 4.826.974a12.498 12.498 0 0 1 3.93 2.645 12.498 12.498 0 0 1 2.646 3.928c.65 1.506.975 3.114.975 4.826 0 1.711-.325 3.32-.974 4.826a12.497 12.497 0 0 1-2.645 3.93 12.498 12.498 0 0 1-3.928 2.646c-1.506.65-3.114.975-4.826.975ZM18 28.421c2.887 0 5.346-1.015 7.376-3.045 2.03-2.03 3.045-4.489 3.045-7.376 0-2.887-1.015-5.346-3.045-7.376-2.03-2.03-4.489-3.045-7.376-3.045-2.887 0-5.346 1.015-7.376 3.045-2.03 2.03-3.045 4.489-3.045 7.376 0 2.887 1.015 5.346 3.045 7.376 2.03 2.03 4.489 3.045 7.376 3.045Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
}

.p-home__shop__unit__button {
  margin: 0 auto 40px;
  width: 360px;
  height: 80px;
}

.p-home__shop__unit__button > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.4;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #d2d8d9;
  border-radius: 40px;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.p-home__shop__unit__button > a:hover {
  background-color: #f8f9f9;
  border: 1px solid #d2d8d9;
}

.p-home__faq__inner {
  padding: 96px 240px 100px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}

.p-home__faq__heading {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}

.p-home__faq__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.p-home__faq__content {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

.p-home__faq__block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-home__faq__block__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-home__faq__unit {
  padding: 0 40px 24px 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  border-bottom: 1px solid #d2d8d9;
  cursor: pointer;
}

.p-home__faq__unit[data-is-open=true]::after {
  transform: scaleY(-1);
}

.p-home__faq__unit::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 360px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%235F6368' d='M11.998 15a.86.86 0 0 1-.652-.255L6.72 10.267a.712.712 0 0 1-.219-.52.693.693 0 0 1 .219-.53A.752.752 0 0 1 7.26 9c.213 0 .394.072.543.216l4.194 4.06 4.193-4.06a.76.76 0 0 1 .538-.211.741.741 0 0 1 .547.211c.15.145.224.32.224.526 0 .205-.075.38-.224.525l-4.627 4.478a.86.86 0 0 1-.305.198 1.02 1.02 0 0 1-.346.057Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
  top: 0;
  left: calc(100% - 24px);
  transform: none;
}

.p-home__faq__unit span {
  padding-right: 20px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
}

.p-home__faq__unit__heading {
  display: flex;
  font-weight: 500;
  cursor: pointer;
}

.p-home__faq__unit__content {
  height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.p-home__faq__unit__content a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.p-home__faq__unit__content a:hover {
  opacity: 0.6;
}

.p-home__faq__unit__content__inner {
  display: flex;
  padding-top: 12px;
}

.p-home__news__inner {
  margin-bottom: 120px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}

.p-home__news__heading {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}

.p-home__news__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.p-home__news__slide {
  margin: 0 auto;
  padding: 0 80px;
  max-width: 1280px;
}

.p-home__news__slide img {
  width: 100%;
  height: 232px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home__news__slide .splide__arrows {
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}

.p-home__news__slide .splide__arrow {
  width: 56px;
  height: 56px;
  position: static;
  background: #f3f5f5;
  opacity: 1;
}

.p-home__news__slide .splide__arrow:hover {
  background: #e2e5e5;
  opacity: 1;
}

.p-home__news__slide .splide__arrow:disabled {
  pointer-events: none;
}

.p-home__news__slide .splide__arrow--prev::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' fill='none'%3E%3Cpath fill='%23000' d='M33 28.003c0 .18-.029.348-.086.503a1.243 1.243 0 0 1-.296.443L25.9 35.667a1.085 1.085 0 0 1-.78.317 1.057 1.057 0 0 1-.795-.317 1.073 1.073 0 0 1-.325-.788c0-.308.108-.571.325-.788l6.088-6.088-6.088-6.088a1.085 1.085 0 0 1-.318-.78 1.058 1.058 0 0 1 .318-.795c.216-.217.479-.325.787-.325.309 0 .571.108.788.325l6.718 6.718c.14.14.238.287.296.442.057.155.086.323.086.503Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
  transform: translateY(-50%) rotate(-180deg);
}

.p-home__news__slide .splide__arrow--next::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' fill='none'%3E%3Cpath fill='%23000' d='M33 28.003c0 .18-.029.348-.086.503a1.243 1.243 0 0 1-.296.443L25.9 35.667a1.085 1.085 0 0 1-.78.317 1.057 1.057 0 0 1-.795-.317 1.073 1.073 0 0 1-.325-.788c0-.308.108-.571.325-.788l6.088-6.088-6.088-6.088a1.085 1.085 0 0 1-.318-.78 1.058 1.058 0 0 1 .318-.795c.216-.217.479-.325.787-.325.309 0 .571.108.788.325l6.718 6.718c.14.14.238.287.296.442.057.155.086.323.086.503Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
}

.p-home__news__block {
  margin: 32px auto 0;
  padding: 0 80px;
  max-width: 1280px;
  display: flex;
  gap: 25px;
}

.p-home__news__item {
  width: 410px;
}

.p-home__news__item img {
  width: 100%;
  height: 232px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home__news__unit:hover {
  transition: all 0.2s ease-in-out;
}

.p-home__news__unit:hover:hover {
  opacity: 0.6;
}

.p-home__news__unit__text {
  padding: 12px 0 20px;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  color: #000000;
}

.p-home__news__btn {
  margin: 40px auto 0;
  width: 360px;
  height: 80px;
}

.p-home__news__btn > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.4;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #d2d8d9;
  border-radius: 40px;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.p-home__news__btn > a:hover {
  background-color: #f8f9f9;
  border: 1px solid #d2d8d9;
}

.p-menu__inner {
  margin: 0 auto;
  padding: 40px 0 100px;
  max-width: 1024px;
}

.p-menu__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}

.p-menu__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.p-menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 21.33px;
}

.p-member__inner {
  margin: 40px auto 120px;
  max-width: 1200px;
}

.p-member__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}

.p-member__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.p-member__message {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.p-member__message > span {
  margin-top: 16px;
  display: block;
  font-size: 12px;
  color: #5e5e5e;
}

.p-member__body {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.p-member__block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.p-member__block__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 2.0833333333;
  letter-spacing: -0.14px;
}

.p-member__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 80px 0;
}

.p-member-entry__inner {
  margin-bottom: 120px;
  padding: 40px 0 80px;
  background-color: #f3f5f5;
}

.p-member-entry__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}

.p-member-entry__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.p-member-entry__body {
  margin: 60px auto 0;
  padding: 0 80px;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.p-member-entry__unit {
  padding: 36px 30px 30px;
  position: relative;
  background-color: #ffffff;
  flex: 1;
}

.p-member-entry__unit::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 360px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%23ACABA1' d='M11.998 15a.86.86 0 0 1-.652-.255L6.72 10.267a.712.712 0 0 1-.219-.52.693.693 0 0 1 .219-.53A.752.752 0 0 1 7.26 9c.213 0 .394.072.543.216l4.194 4.06 4.193-4.06a.76.76 0 0 1 .538-.211.741.741 0 0 1 .547.211c.15.145.224.32.224.526 0 .205-.075.38-.224.525l-4.627 4.478a.86.86 0 0 1-.305.198 1.02 1.02 0 0 1-.346.057Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
  left: auto;
  right: -24px;
  transform: translateY(-50%) rotate(-90deg);
}

.p-member-entry__unit > span {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
}

.p-member-entry__unit:last-child::after {
  display: none;
}

.p-member-entry__unit__img {
  margin: 0 auto;
  width: 100%;
  max-width: 200px;
  height: auto;
  box-sizing: border-box;
}

.p-member-entry__unit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-member-entry__unit__description {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 160%;
}

.p-member-entry__unit__description .note {
  margin-top: 12px;
  display: block;
  font-size: 10px;
  line-height: 160%;
  font-weight: 400;
}

.p-member-entry__unit__description .example {
  font-size: 0.6em;
  vertical-align: super;
}

.p-member-entry__unit__description .yellow {
  color: #ddc500;
}

.evaluation {
  padding: 32px 20px;
  background-color: #b1ab99;
}

.evaluation__inner {
  width: 335px;
  margin: 0 auto;
}

.evaluation__heading {
  margin: 0 0 24px 4px;
  color: #ffffff;
}

.evaluation__heading-en {
  margin: 0 0 4px 5px;
  display: block;
  width: 173px;
  height: auto;
}

.evaluation__heading-ja {
  font-size: 32px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.3125;
  letter-spacing: -2px;
}

.evaluation__heading-ja > span {
  letter-spacing: -5px;
}

.evaluation__coffee {
  width: 311px;
  padding: 8px 16px 8px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 8px;
}

.evaluation__coffee__img {
  width: 104px;
  height: 104px;
  flex-shrink: 0;
}

.evaluation__coffee__img > img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}

.evaluation__coffee__text {
  color: #211400;
}

.evaluation__coffee__name {
  margin: 4px 0 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3333333333;
}

.evaluation__coffee__price {
  margin-bottom: 22px;
  font-family: “Roboto”, sans-serif;
  font-weight: bold;
  font-size: 20px;
}

.evaluation__coffee__price > span {
  margin-right: 3px;
  font-size: 16px;
  font-family: “Noto Sans JP”, sans-serif;
}

.evaluation__coffee__info {
  margin-bottom: 4px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 36px;
  line-height: 1.5;
}

.evaluation__coffee__info__unit {
  display: flex;
  gap: 8px;
  font-size: 10px;
}

.evaluation__coffee__info__label {
  font-weight: bold;
}

.taste {
  padding-bottom: 56px;
  background-color: #f7f2e5;
  color: #211400;
}

.taste__heading {
  padding: 24px 0;
  font-size: 24px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.4583333333;
  text-align: center;
}

.taste__ranges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.taste__unit {
  height: 146px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  position: relative;
}

.taste__unit__inner {
  width: 335px;
  padding: 20px 0 28px;
  display: flex;
  flex-direction: column;
}

.taste__unit__heading {
  position: relative;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 21px;
}

.taste__unit__range {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: calc(100% + 10px);
  height: 36px;
  z-index: 0;
  margin: 0 0 3px -10px;
  background-image: url(../assets/images/survey/range_bg.svg);
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: right;
}

.taste__unit__range::-webkit-slider-runnable-track {
  height: 2px;
}

.taste__unit__range::-webkit-slider-runnable-track {
  height: 2px;
}

.taste__unit__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 33px;
  height: 44px;
  position: relative;
  z-index: 1;
  transform: translateY(-24px);
  -webkit-transform: translateY(-24px);
  background-image: url(../assets/images/survey/hand.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: none;
}

.taste__unit__range::-moz-range-track {
  height: 2px;
}

.taste__unit__range::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  width: 33px;
  height: 44px;
  transform: translateY(-6px);
  background-image: url(../assets/images/survey/hand.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  border: none;
}

.overall_satisfaction-range::-webkit-slider-runnable-track {
  background: linear-gradient(to right, transparent 10px, #ffe300 10px, #ffe300 50%, #e6e5e5 50%, #e6e5e5 calc(100% - 10px), transparent 10px);
}

.overall_satisfaction-range::-moz-range-track {
  background: linear-gradient(to right, transparent 10px, #ffe300 10px, #ffe300 50%, #e6e5e5 50%, #e6e5e5 calc(100% - 10px), transparent 10px);
}

.aroma_impression::-webkit-slider-runnable-track {
  background: linear-gradient(to right, transparent 10px, #ffe300 10px, #ffe300 50%, #e6e5e5 50%, #e6e5e5 calc(100% - 10px), transparent 10px);
}

.aroma_impression::-moz-range-track {
  background: linear-gradient(to right, transparent 10px, #ffe300 10px, #ffe300 50%, #e6e5e5 50%, #e6e5e5 calc(100% - 10px), transparent 10px);
}

.temperature_satisfaction::-webkit-slider-runnable-track {
  background: linear-gradient(to right, transparent 10px, #ffe300 10px, #ffe300 50%, #e6e5e5 50%, #e6e5e5 calc(100% - 10px), transparent 10px);
}

.temperature_satisfaction::-moz-range-track {
  background: linear-gradient(to right, transparent 10px, #ffe300 10px, #ffe300 50%, #e6e5e5 50%, #e6e5e5 calc(100% - 10px), transparent 10px);
}

.bitterness_level::-webkit-slider-runnable-track {
  background: linear-gradient(to right, transparent 10px, #ffe300 10px, #ffe300 50%, #e6e5e5 50%, #e6e5e5 calc(100% - 10px), transparent 10px);
}

.bitterness_level::-moz-range-track {
  background: linear-gradient(to right, transparent 10px, #ffe300 10px, #ffe300 50%, #e6e5e5 50%, #e6e5e5 calc(100% - 10px), transparent 10px);
}

.acidity_discomfort::-webkit-slider-runnable-track {
  background: linear-gradient(to right, transparent 10px, #ffe300 10px, #ffe300 50%, #e6e5e5 50%, #e6e5e5 calc(100% - 10px), transparent 10px);
}

.acidity_discomfort::-moz-range-track {
  background: linear-gradient(to right, transparent 10px, #ffe300 10px, #ffe300 50%, #e6e5e5 50%, #e6e5e5 calc(100% - 10px), transparent 10px);
}

.volume_sufficiency::-webkit-slider-runnable-track {
  background: linear-gradient(to right, transparent 10px, #ffe300 10px, #ffe300 50%, #e6e5e5 50%, #e6e5e5 calc(100% - 10px), transparent 10px);
}

.volume_sufficiency::-moz-range-track {
  background: linear-gradient(to right, transparent 10px, #ffe300 10px, #ffe300 50%, #e6e5e5 50%, #e6e5e5 calc(100% - 10px), transparent 10px);
}

.taste__unit__values {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 12px;
  line-height: 1.4166666667;
}

.taste__unit__option {
  padding: 0;
  text-align: center;
}

.taste__unit__option:first-child {
  text-align: left;
}

.taste__unit__option:last-child {
  text-align: right;
}

.taste__textarea__block {
  padding: 20px 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  color: #211400;
}

.taste__textarea__inner {
  width: 335px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.taste__textarea__heading {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
}

.taste__textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 135px;
  padding: 15px 10px 10px;
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid #e6e5e5;
  border-radius: 8px;
  color: #211400;
  resize: none;
}

.taste__textarea:focus-visible {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

.taste__btn__wrapper {
  width: 335px;
  height: 56px;
  margin: 40px auto 0px;
}

.taste__btn {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  border: none;
  border-radius: 28px;
  background-color: #333333;
  color: #ffffff;
  transition: all 0.2s ease;
}

.taste__btn:hover {
  background-color: #5e5e5e;
}

.terms__inner {
  padding: 32px 0;
}

.terms__content {
  width: 335px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #ffffff;
  gap: 32px;
}

.terms__heading {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4444444444;
}

.terms__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  text-align: justified;
}

.terms__sub-heading {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
}

.terms__description > a {
  color: #211400;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.terms__description > a:hover {
  opacity: 0.7;
}

.s-menu__inner {
  margin: 110px 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 80px;
}

.s-menu__img {
  height: 374px;
}

.s-menu__img img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.s-menu__info {
  height: 200%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.s-menu__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #211400;
}

.s-menu__name span {
  margin-top: 10px;
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
}

.s-menu__text {
  width: 570px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.s-menu__text__unit {
  padding-bottom: 24px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border-bottom: 1px solid #d2d8d9;
}

.s-menu__text__heading {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.s-menu__text__description {
  font-size: 15px;
  line-height: 1.5;
}

.coffee {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #f7f2e5;
  color: #211400;
}

.coffee__top {
  width: 100%;
  background-color: #ffffff;
}

.coffee__top__inner {
  margin: 0 auto;
}

.coffee__heading__img {
  max-width: 450px;
  height: auto;
  margin: 0 auto;
}

.coffee__heading__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.coffee__heading__text {
  width: 375px;
  padding: 16px 20px 24px;
  margin: 0 auto;
  box-sizing: border-box;
}

.coffee__heading {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4444444444;
}

.coffee__price {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.1666666667;
}

.coffee__price > span {
  font-size: 15px;
}

.fs-15 {
  font-size: 15px;
}

.coffee__note {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4666666667;
}

.coffee__btn {
  width: 335px;
  height: 56px;
  line-height: 56px;
}

.coffee__btn > a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background: #333333;
  text-align: center;
  color: #ffffff;
  font-family: "Zen Maru Gothic", serif;
  transition: all 0.2s ease;
}

.coffee__btn > a:hover {
  color: #ffffff;
  background-color: #5e5e5e;
}

.coffee__btn > a {
  font-size: 16px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  color: #ffffff;
  border-radius: 28px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
}

.coffee__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coffee__product-details {
  width: 100%;
  font-size: 15px;
  line-height: 1.3333333333;
  background-color: #ffffff;
}

.coffee__product-details__inner {
  width: 375px;
  margin: 0 auto;
  padding: 20px 20px 24px;
  box-sizing: border-box;
  text-align: justify;
}

.coffee__product-details__heading {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4166666667;
  color: #5e5e5e;
}

.coffee__taste {
  width: 100%;
  background-color: #ffffff;
}

.coffee__taste__inner {
  width: 375px;
  margin: 0 auto;
  padding: 20px 20px 24px;
  box-sizing: border-box;
}

.coffee__taste__heading {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4166666667;
  color: #5e5e5e;
}

.coffee__taste__table {
  width: 335px;
  border-collapse: collapse;
  border: 1px solid #e6e5e5;
}

.coffee__taste__row {
  height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e6e5e5;
}

.coffee__taste__row:last-child {
  border-bottom: none;
}

.coffee__taste__table__heading {
  padding: 0 32px;
  font-size: 13px;
  font-weight: bold;
  line-height: 3.0769230769;
  border-right: 1px dashed #e6e5e5;
}

.coffee__taste__data {
  margin-left: 32.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.coffee__taste__bean-fill {
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.573' height='17.028'%3E%3Cpath fill='%23572F00' fill-opacity='1' fill-rule='evenodd' stroke='%23572F00' stroke-opacity='0' d='M12.973 1.507c0 .143-.007.302-.023.478a9.693 9.693 0 0 1-2.777 5.977c-1.692 1.705-2.46 6.677-3.696 7.76a3.918 3.918 0 0 1-.398.311c.816.453 2.815 1.126 5.48-.973 3.522-2.776 5.648-7.995 3.892-10.646-.966-1.459-1.684-2.329-2.478-2.907Zm-11.45 4.19c-1.471 3.39-1.877 8.381 2.876 9.81.245-.49 1.005-2.122 1.146-3.725.169-1.916.448-3.676 3.076-6.422 2.01-2.1 2.807-3.33 2.91-4.263A9.143 9.143 0 0 0 9.992.59c-2.175-.544-6.97 1.647-8.47 5.106Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.coffee__taste__bean-nofill {
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.573' height='17.028'%3E%3Cpath fill='%23572F00' fill-opacity='0' fill-rule='evenodd' stroke='%23572F00' stroke-opacity='1' d='M12.973 1.507c0 .143-.007.302-.023.478a9.693 9.693 0 0 1-2.777 5.977c-1.692 1.705-2.46 6.677-3.696 7.76a3.918 3.918 0 0 1-.398.311c.816.453 2.815 1.126 5.48-.973 3.522-2.776 5.648-7.995 3.892-10.646-.966-1.459-1.684-2.329-2.478-2.907Zm-11.45 4.19c-1.471 3.39-1.877 8.381 2.876 9.81.245-.49 1.005-2.122 1.146-3.725.169-1.916.448-3.676 3.076-6.422 2.01-2.1 2.807-3.33 2.91-4.263A9.143 9.143 0 0 0 9.992.59c-2.175-.544-6.97 1.647-8.47 5.106Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.survey__btn {
  width: 335px;
  height: 56px;
  margin: 16px 0 56px;
  line-height: 56px;
}

.survey__btn > a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background: #f69424;
  text-align: center;
  color: #ffffff;
  font-family: "Zen Maru Gothic", serif;
  transition: all 0.2s ease;
}

.survey__btn > a:hover {
  color: #ffffff;
  background-color: #f6a549;
}

.survey__btn > a {
  font-size: 16px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  color: #ffffff;
  border-radius: 28px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
}

.s-news__inner {
  margin: 86px auto 120px;
  max-width: 960px;
}

.s-news__heading {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
}

.s-news__img {
  width: 100%;
  height: auto;
}

.s-news__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.s-news__sub-title {
  margin: 20px 0 40px;
  font-size: 18px;
  line-height: 1.75;
}

.s-news__content {
  font-size: 15px;
  line-height: 1.75;
}

.s-news__content h2,
.s-news__content h3,
.s-news__content h4 {
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.s-news__content h2 {
  font-size: 32px;
}

.s-news__content h3 {
  font-size: 28px;
}

.s-news__content h4 {
  font-size: 24px;
}

.s-news__content ul {
  padding-left: 23px;
  list-style-type: disc;
}

.s-news__content ol {
  padding-left: 23px;
  list-style-type: dotted-decimal;
}

.s-news__content ol ol {
  list-style-type: lower-alpha;
}

.s-news__content strong {
  font-weight: 700;
}

.s-news__content hr {
  height: 1px;
  border: 0;
  margin: 40px 0;
  background-color: #d2d8d9;
}

.s-news__content img {
  display: block;
  height: 544px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-news__inner {
  margin: 40px auto 120px;
  padding: 0 80px;
  width: -moz-fit-content;
  width: fit-content;
}

.p-news__heading {
  margin: 0 auto 40px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}

.p-news__heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 2px;
  color: #efd713;
  vertical-align: middle;
}

.p-news__list {
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px 25px;
}

.custom-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  font-size: 16px;
  line-height: 28px;
}

.custom-pagination__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.custom-pagination__page,
.custom-pagination__dots {
  color: #666;
  text-decoration: none;
  font-weight: normal;
}

.custom-pagination__page.current {
  font-weight: bold;
  color: #000;
  position: relative;
}

.custom-pagination__page.current::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #ffe300;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.custom-pagination__dots {
  padding: 0 4px;
}

.custom-pagination__arrow {
  width: 56px;
  height: 56px;
  position: static;
  background: #f3f5f5;
  opacity: 1;
  position: relative;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}

.custom-pagination__arrow > .prev::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' fill='none'%3E%3Cpath fill='%23000' d='M33 28.003c0 .18-.029.348-.086.503a1.243 1.243 0 0 1-.296.443L25.9 35.667a1.085 1.085 0 0 1-.78.317 1.057 1.057 0 0 1-.795-.317 1.073 1.073 0 0 1-.325-.788c0-.308.108-.571.325-.788l6.088-6.088-6.088-6.088a1.085 1.085 0 0 1-.318-.78 1.058 1.058 0 0 1 .318-.795c.216-.217.479-.325.787-.325.309 0 .571.108.788.325l6.718 6.718c.14.14.238.287.296.442.057.155.086.323.086.503Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
  transform: translateY(-50%) rotate(-180deg);
}

.custom-pagination__arrow > .next::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' fill='none'%3E%3Cpath fill='%23000' d='M33 28.003c0 .18-.029.348-.086.503a1.243 1.243 0 0 1-.296.443L25.9 35.667a1.085 1.085 0 0 1-.78.317 1.057 1.057 0 0 1-.795-.317 1.073 1.073 0 0 1-.325-.788c0-.308.108-.571.325-.788l6.088-6.088-6.088-6.088a1.085 1.085 0 0 1-.318-.78 1.058 1.058 0 0 1 .318-.795c.216-.217.479-.325.787-.325.309 0 .571.108.788.325l6.718 6.718c.14.14.238.287.296.442.057.155.086.323.086.503Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
}

.custom-pagination__arrow:hover {
  background: #e2e5e5;
  opacity: 1;
}

.custom-pagination__arrow.is-disabled {
  opacity: 0.7;
  pointer-events: none;
}

.custom-pagination__arrow.is-disabled > div {
  opacity: 0.7;
}

@media screen and (min-width: 1200px) {
  .p-hamburger-menu {
    top: 80px;
  }

  .add__heading::before {
    height: 21px;
  }

  .column-list__heading {
    width: 800px;
    margin: 56px auto 24px;
  }

  .column-list__unit {
    width: 800px;
  }

  .column-list__unit__img {
    width: 227px;
  }

  .column-list__unit__text {
    justify-content: flex-start;
    gap: 12px;
  }

  .column-list__unit__text > div {
    display: flex;
    gap: 8px;
  }

  .privacy {
    height: auto;
  }

  .privacy__inner {
    padding: 80px 0 120px;
  }

  .privacy__content {
    width: 851px;
    padding: 60px 64px;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }

  .privacy__text {
    font-size: 16px;
  }

  .privacy__sub-heading {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .send {
    height: auto;
  }

  .send__inner {
    padding: 80px 0 120px;
  }

  .send__content {
    width: 851px;
    height: 490px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 81px;
  }

  .send__img {
    width: 266px;
    height: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .send__text {
    width: 330px;
  }

  .send__heading {
    width: auto;
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 1.25;
  }

  .send__description {
    margin-bottom: 48px;
    font-size: 18px;
    line-height: 1.4444444444;
  }

  .column__top {
    width: 800px;
    padding: 16px 32px 20px 32px;
  }

  .column__heading {
    font-size: 32px;
  }

  .column__img {
    width: 800px;
    height: 532px;
  }

  .column__content > h2 {
    font-size: 28px;
  }

  .column__content > h3 {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .column__content > h4 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .column__content > p {
    font-size: 16px;
  }

  .column__content {
    width: 800px;
    padding: 68px 0;
  }

  .column__list {
    width: 800px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 32px 0 48px;
  }

  .guide__top__title {
    height: 296px;
    padding: 0;
    gap: 16px;
    background-image: url(../assets/images/guide/TitleCover-pc.png);
    background-size: auto 296px;
    background-position: center;
    justify-content: center;
  }

  .guide__top__title-en {
    width: 853px;
    height: 12.8px;
    margin: 0 auto;
  }

  .guide__top__title-en > img {
    width: auto;
    height: 100%;
  }

  .guide__top__title-ja {
    width: 853px;
    margin: 0 auto;
    font-size: 40px;
    line-height: 1.1;
  }

  .guide__body {
    max-width: 1053px;
    margin: 0 auto;
    padding: 98px 16px 80px;
    flex-direction: row;
    justify-content: space-between;
  }

  .guide__unit {
    justify-content: flex-start;
    align-self: stretch;
    gap: 0;
  }

  .guide__unit__notes {
    margin-top: 8px;
    margin-bottom: 0;
  }

  .guide__unit__img-01 {
    margin: 24px 0 21px;
  }

  .guide__unit__img-02 {
    margin: 6px 0 14px;
  }

  .guide__unit__img-03 {
    width: 135px;
    margin: 24px 18px 6px 0;
  }

  .guide__faq__heading::before {
    height: 21px;
  }

  .accordion__wrapper {
    gap: 24px;
  }

  .accordion__heading[data-is-open=true]::after {
    right: 27px;
  }

  .accordion__heading[data-is-open=false]::after {
    right: 27px;
  }

  .accordion__heading {
    width: 677px;
    min-height: 80px;
    gap: 40px;
    font-size: 16px;
    background: linear-gradient(to right, #ffe300 80px, #ffffff 56px);
  }

  .accordion__heading-text {
    width: 480px;
    padding: 28px 0;
  }

  .accordion__heading__number {
    width: 80px;
    height: 80px;
  }

  .accordion__description {
    width: 676px;
    padding: 32px;
    margin: 8px 0 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
  }

  .evaluation {
    height: 296px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .evaluation__inner {
    width: auto;
    display: flex;
    gap: 154px;
  }

  .evaluation__heading {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .evaluation__heading-en {
    width: 196px;
    margin: 0 0 16px;
  }

  .evaluation__heading-ja {
    font-size: 40px;
    line-height: 1.1;
  }

  .evaluation__coffee {
    width: 504px;
    padding: 16px;
    align-items: flex-start;
    box-sizing: border-box;
    gap: 24px;
  }

  .evaluation__coffee__img > img {
    width: 125px;
    height: 125px;
  }

  .evaluation__coffee__img {
    width: 125px;
    height: 125px;
  }

  .evaluation__coffee__name {
    margin: 9px 0 8px;
    font-size: 14px;
    line-height: 1.4285714286;
  }

  .evaluation__coffee__price {
    margin-bottom: 14px;
  }

  .evaluation__coffee__info {
    gap: 8px 56px;
    line-height: 1.4285714286;
  }

  .evaluation__coffee__info__unit {
    font-size: 14px;
  }

  .taste {
    padding: 80px 0 120px;
  }

  .taste__heading {
    padding: 0 0 48px;
    font-size: 40px;
    line-height: 1.45;
  }

  .taste__ranges {
    gap: 24px;
  }

  .taste__unit {
    height: 155px;
    width: 677px;
    margin: 0 auto;
  }

  .taste__unit__inner {
    width: 613px;
    padding: 20px 0 32px;
  }

  .taste__unit__heading {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 23px;
  }

  .taste__unit__range {
    background-image: url(../assets/images/survey/range_bg-pc.svg);
  }

  .taste__unit__range::-webkit-slider-thumb {
    transform: translateY(-26px);
  }

  .taste__textarea__block {
    width: 677px;
    margin: 0 auto;
    padding: 20px 32px 32px;
    box-sizing: border-box;
  }

  .taste__textarea__inner {
    width: 100%;
    gap: 16px;
  }

  .taste__textarea__heading {
    font-size: 16px;
    line-height: 1.6;
  }

  .taste__textarea {
    height: 200px;
    padding: 20px 32px;
    font-size: 14px;
    box-sizing: border-box;
  }

  .terms {
    height: auto;
  }

  .terms__inner {
    padding: 80px 0 120px;
  }

  .terms__content {
    width: 851px;
    padding: 60px 64px;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }

  .terms__text {
    font-size: 16px;
  }

  .terms__sub-heading {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .coffee {
    gap: 16px;
  }

  .coffee__top {
    width: 850px;
    padding: 0 calc((100vw - 850px) / 2);
  }

  .coffee__top__inner {
    width: auto;
    padding: 56px 0;
    margin: 0 0 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 102px;
  }

  .coffee__heading__img {
    width: 331px;
    height: 318px;
    margin: 0;
  }

  .coffee__heading__text {
    width: 331px;
    padding: 24px 0;
    margin: 0;
  }

  .coffee__heading {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 1.4583333333;
  }

  .coffee__price > span {
    font-size: 32px;
  }

  .coffee__price {
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 1.15;
  }

  .fs-15 {
    font-size: 24px;
  }

  .coffee__note {
    margin-bottom: 63px;
    width: 366px;
    font-size: 18px;
  }

  .coffee__btn {
    width: 331px;
  }

  .coffee__wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 102px;
    background-color: #ffffff;
    padding: 32px 0;
  }

  .coffee__product-details {
    width: 418px;
    flex-grow: 0;
  }

  .coffee__product-details__inner {
    width: 418px;
    padding: 0;
    margin: 0;
  }

  .coffee__taste {
    width: 330px;
    flex-grow: 0;
  }

  .coffee__taste__inner {
    width: 330px;
    padding: 0;
    margin: 0;
  }

  .coffee__taste__table {
    width: 330px;
  }

  .survey__btn {
    margin: 24px 0 120px;
  }
}

@media screen and (max-width: 1279px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  :root {
    scroll-padding-top: 72px;
  }

  header {
    padding: 0 24px 0 20px;
    height: 72px;
  }

  .p-header__logo {
    width: 126px;
  }

  .p-header__nav {
    display: none;
  }

  .p-header__nav__button {
    margin: 0 0 0 auto;
    padding-right: 16px;
    width: 136px;
    height: 40px;
  }

  .p-header__nav__button[data-is-open=true] {
    display: none;
  }

  .p-header__nav__button > a {
    font-size: 14px;
  }

  .p-header__hamburger-menu__icon {
    display: block;
  }

  footer > a {
    margin-right: 24px;
  }

  .p-footer__inner {
    padding: 50px 24px 40px;
    flex-direction: column;
    gap: 40px;
  }

  .p-footer__logo {
    margin-bottom: 20px;
    width: 126px;
  }

  .p-footer__content {
    height: 130px;
  }

  .p-footer__content__item {
    width: 148px;
  }

  .p-footer__content__item > a {
    font-size: 14px;
  }

  .p-footer__content__sp {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .p-footer__copyright {
    height: 48px;
    font-size: 10px;
  }

  .c-menu-card {
    width: 163px;
  }

  .c-menu-card__text {
    padding: 10px 12px;
    height: calc(100% - 163px);
    gap: 6px;
  }

  .c-menu-card__name-ja {
    font-size: 15px;
  }

  .c-menu-card__name-en {
    font-size: 10px;
  }

  .c-shopinfo {
    padding: 64px 0;
  }

  .c-shopinfo__inner {
    padding: 0 20px;
  }

  .c-shopinfo__head {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .c-shopinfo__box {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .c-shopinfo__link > a {
    padding-left: 20px;
    height: 80px;
    font-size: 15px;
  }

  .c-shopinfo__link > a::after {
    width: 40px;
    height: 40px;
    right: 20px;
  }

  .c-shopinfo__link > a:hover::after {
    width: 40px;
    height: 40px;
    right: 20px;
  }

  .c-pulldown {
    width: 335px;
  }

  .c-pulldown__head::after {
    left: 291px;
  }

  .c-member-card {
    min-height: 330px;
    width: 303px;
  }

  .c-member-card__img span {
    font-size: 20px;
  }

  .c-member-card__description > span {
    font-size: 11px;
  }

  .c-member-card__description {
    font-size: 15px;
  }

  .c-news-card {
    width: 335px;
  }

  .c-news-card__img {
    height: 190px;
  }

  .c-breadcrumb {
    top: 92px;
    left: 20px;
    font-size: 11px;
  }

  .c-breadcrumb a {
    font-size: 11px;
  }

  .page-404 {
    padding: 55px auto 64px;
  }

  .page-404__text {
    padding: 0 28px;
    font-size: 14px;
  }

  .page-404__text > h1 {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .page-404__text {
    margin-bottom: 36px;
  }

  .send__top {
    margin-top: 0;
    width: 319px;
    height: 64px;
  }

  .send__top > a {
    font-size: 15px;
  }

  .s-shop__inner {
    padding: 55px 0 64px;
  }

  .s-shop__heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .s-shop__heading > span {
    font-size: 16px;
  }

  .s-shop__info {
    margin: 0;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .s-shop__text {
    width: calc(100% - 40px);
    padding: 0 20px;
    gap: 0;
  }

  .s-shop__name {
    padding: 32px 0;
    font-size: 18px;
  }

  .s-shop__unit__description {
    padding-right: 20px;
  }

  .s-shop__map {
    width: 100%;
    height: 200px;
  }

  .s-shop__menu__heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .s-shop__menu__heading > span {
    font-size: 16px;
  }

  .s-shop__menu__list {
    margin: 0 auto;
    margin-top: 32px;
    width: 335px;
    gap: 20px 8px;
  }

  main {
    padding-top: 72px;
  }

  .p-home__mv__inner {
    margin-bottom: 56px;
    padding-left: 58px;
  }

  .p-home__mv__inner > img {
    padding-top: 92px;
  }

  .p-home__mv__copy {
    top: 38px;
    left: 20px;
    gap: 24px;
  }

  .p-home__mv__copy > img:first-child {
    width: 249px;
  }

  .p-home__mv__copy > img:nth-child(2) {
    width: 255px;
  }

  .p-home__about__inner {
    padding: 0 0 0 20px;
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
  }

  .p-home__about__inner p {
    margin-top: 28px;
    padding: 0 24px;
  }

  .p-home__about__inner.sp {
    display: block;
  }

  .p-home__about__img > img {
    width: 100%;
  }

  .p-home__about__heading > span {
    font-size: 16px;
  }

  .p-home__about__heading {
    margin-bottom: 32px;
    font-size: 24px;
  }

  .p-home__future__inner {
    padding: 0 20px 0 0;
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
  }

  .p-home__future__inner p {
    margin-top: 28px;
    padding: 0 24px;
  }

  .p-home__future__inner.sp {
    display: block;
  }

  .p-home__future__img > img {
    width: 100%;
  }

  .p-home__future__heading > span {
    font-size: 16px;
  }

  .p-home__future__heading {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .p-home__video {
    width: 100%;
  }

  .p-home__intro__inner {
    padding: 40px 0 50px;
  }

  .p-home__intro__heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .p-home__intro__heading > span {
    font-size: 16px;
  }

  .p-home__intro__img > img {
    margin: 0 auto 32px;
    width: 142px;
  }

  .p-home__intro__img {
    position: static;
  }

  .p-home__intro__block {
    margin: 44px auto 32px;
    flex-direction: column;
    align-items: center;
  }

  .p-home__intro__unit {
    padding: 44px 24px;
    max-width: 540px;
    width: calc(100% - 56px);
    height: 340px;
  }

  .p-home__intro__unit > span {
    top: -12px;
    font-size: 24px;
  }

  .p-home__intro__unit__text > p {
    font-size: 18px;
  }

  .p-home__intro__unit__text span {
    margin-top: 12px;
    font-size: 11px;
  }

  .p-home__intro__cv > span {
    margin: 12px 0 24px;
    font-size: 11px;
  }

  .p-home__intro__cv {
    font-size: 18px;
  }

  .p-home__intro__button {
    width: 319px;
    height: 64px;
  }

  .p-home__intro__button > a {
    font-size: 15px;
  }

  .p-home__receive__inner {
    padding: 40px 28px 56px;
    font-size: 15px;
  }

  .p-home__receive__heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .p-home__receive__heading > span {
    font-size: 16px;
  }

  .p-home__receive__block {
    margin: 40px auto 0;
    flex-direction: column;
    align-items: center;
  }

  .p-home__receive__unit {
    padding: 44px 24px;
    max-width: 540px;
    width: 100%;
    height: 340px;
  }

  .p-home__receive__unit > span {
    top: -12px;
    font-size: 24px;
  }

  .p-home__receive__unit__text > p {
    font-size: 15px;
  }

  .p-top__menu__inner {
    margin-bottom: 64px;
    font-size: 15px;
  }

  .p-home__menu__heading {
    margin-bottom: 20px;
    font-size: 24px;
    margin-bottom: 16px;
  }

  .p-home__menu__heading > span {
    font-size: 16px;
  }

  .p-home__menu__slide {
    margin: 40px 0;
  }

  .p-home__menu_button {
    width: 319px;
    height: 64px;
  }

  .p-home__menu_button > a {
    font-size: 15px;
  }

  .p-home__shop__inner {
    padding: 40px 28px 56px;
  }

  .p-home__shop__heading {
    font-size: 24px;
    margin-bottom: 36px;
  }

  .p-home__shop__heading > span {
    font-size: 16px;
  }

  .p-home__shop__block {
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    gap: 36px;
  }

  .p-home__shop__unit {
    max-width: 540px;
    width: 100%;
  }

  .p-home__shop__unit__img.coming-soon > span {
    font-size: 16px;
  }

  .p-home__shop__unit__text {
    margin-bottom: 28px;
    padding: 16px 20px 0;
    font-size: 16px;
  }

  .p-home__shop__unit__info {
    margin-top: 16px;
    font-size: 14px;
  }

  .p-home__shop__unit__address {
    padding-left: 30px;
  }

  .p-home__shop__unit__address::before {
    width: 24px;
    height: 24px;
  }

  .p-home__shop__unit__hours {
    padding-top: 1px;
    padding-left: 30px;
  }

  .p-home__shop__unit__hours::before {
    width: 24px;
    height: 24px;
  }

  .p-home__shop__unit__button {
    margin-bottom: 32px;
    width: 214px;
    height: 48px;
  }

  .p-home__shop__unit__button > a {
    font-size: 15px;
  }

  .p-home__faq__inner {
    padding: 60px 20px 64px;
    font-size: 15px;
  }

  .p-home__faq__heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .p-home__faq__heading > span {
    font-size: 16px;
  }

  .p-home__faq__content {
    margin-top: 40px;
    gap: 36px;
    font-size: 20px;
  }

  .p-home__faq__block {
    gap: 24px;
  }

  .p-home__faq__block__inner {
    gap: 18px;
  }

  .p-home__faq__unit {
    padding-right: 32px;
    font-size: 15px;
  }

  .p-home__faq__unit span {
    padding-right: 12px;
  }

  .p-home__faq__unit__content__inner {
    padding-top: 6px;
  }

  .p-home__news__inner {
    margin-bottom: 64px;
    font-size: 15px;
  }

  .p-home__news__heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .p-home__news__heading > span {
    font-size: 16px;
  }

  .p-home__news__slide {
    margin: 32px auto 24px;
    padding: 0 28px;
    max-width: 680px;
  }

  .p-home__news__slide img {
    height: 190px;
  }

  .p-home__news__block {
    margin-bottom: 24px;
    padding: 0 28px;
    max-width: 680px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .p-home__news__item {
    width: 100%;
  }

  .p-home__news__item img {
    height: 190px;
  }

  .p-home__news__unit__text {
    padding: 12px 0 0;
  }

  .p-home__news__btn {
    margin-top: 0;
    width: 319px;
    height: 64px;
  }

  .p-home__news__btn > a {
    font-size: 15px;
  }

  .p-menu__inner {
    padding: 55px 0 64px;
  }

  .p-menu__heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .p-menu__heading > span {
    font-size: 16px;
  }

  .p-menu__list {
    margin: 0 auto;
    width: 335px;
    gap: 20px 8px;
  }

  .p-member__inner {
    margin: 55px auto 64px;
    padding: 0 36px;
  }

  .p-member__heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .p-member__heading > span {
    font-size: 16px;
  }

  .p-member__message > span {
    margin-top: 12px;
    font-size: 11px;
  }

  .p-member__message {
    margin-top: 20px;
    font-size: 15px;
  }

  .p-member__body {
    margin-top: 54px;
    gap: 68px;
    align-items: center;
  }

  .p-member__block {
    align-items: center;
    gap: 32px;
  }

  .p-member__block__heading {
    font-size: 20px;
  }

  .p-member__cards {
    flex-direction: column;
    gap: 48px;
  }

  .p-member-entry__inner {
    margin-bottom: 64px;
    padding-bottom: 64px;
  }

  .p-member-entry__heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .p-member-entry__heading > span {
    font-size: 16px;
  }

  .p-member-entry__body {
    margin-top: 44px;
    padding: 0 36px;
    max-width: 500px;
    flex-direction: column;
    gap: 40px;
  }

  .p-member-entry__unit::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .p-member-entry__unit:first-child .p-member-entry__unit__description {
    margin-top: 12px;
  }

  .p-member-entry__unit:last-child .p-member-entry__unit__description {
    margin-top: 0px;
  }

  .p-member-entry__unit__description {
    margin: 24px auto 0;
    max-width: 360px;
  }

  .p-member-entry__unit__description .note {
    margin-top: 10px;
    font-size: 12px;
  }

  .s-menu__inner {
    max-width: 900px;
    margin: 74px auto 64px;
    padding: 0 20px;
  }

  .s-menu__img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .s-menu__info {
    width: 100%;
  }

  .s-menu__name {
    font-size: 20px;
  }

  .s-menu__text {
    width: 100%;
  }

  .s-news__inner {
    margin: 74px auto 64px;
  }

  .s-news__heading {
    margin-bottom: 32px;
    padding: 20px;
    font-size: 28px;
    line-height: 1.45;
  }

  .s-news__sub-title {
    margin-bottom: 32px;
    padding: 0 20px;
    font-weight: 700;
    line-height: 1.45;
  }

  .s-news__content {
    padding: 20px;
  }

  .s-news__content h2 {
    font-size: 28px;
  }

  .s-news__content h3 {
    font-size: 24px;
  }

  .s-news__content h4 {
    font-size: 20px;
  }

  .s-news__content img {
    height: auto;
    width: 100%;
  }

  .p-news__inner {
    margin: 55px auto 64px;
    padding: 0 20px;
  }

  .p-news__heading {
    margin-bottom: 32px;
    font-size: 24px;
    margin-bottom: 16px;
  }

  .p-news__heading > span {
    font-size: 16px;
  }

  .p-news__list {
    flex-direction: column;
    align-items: center;
  }
}