@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

button {
  padding: 0;
  color: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: block;
    position: relative;
    top: auto;
    right: 0.9375rem;
    z-index: 31;
    flex: 0 0 1.9375rem;
    width: 1.9375rem;
    height: 1.125rem;
    padding: 0 0;
  }
}
@media (any-hover: hover) {
  .c-hamburger:hover span {
    background-color: #e1aa64;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 0.125rem;
  width: 100%;
  background-color: #d6a46a;
  border-radius: 0.125rem;
  transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, top 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, top 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 0.375rem 0;
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

.c-hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 0.375rem;
}

.c-hamburger.open span:nth-child(2) {
  background-color: transparent;
  box-shadow: none;
}

.c-hamburger.open span:nth-child(3) {
  top: -0.625rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

/* アーカイブページのページ送り */
.c-pagenation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 5.375rem;
  position: relative;
}
.c-pagenation .nav-links a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-pagenation .nav-links a:hover {
    opacity: 0.5;
  }
}
.c-pagenation .page-numbers {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
}
.c-pagenation .page-numbers.current {
  border-color: currentColor;
}
.c-pagenation .page-numbers.dots {
  margin-inline: 0.75rem;
  padding-bottom: 0.4375rem;
  border: 0;
}
.c-pagenation .page-numbers.prev, .c-pagenation .page-numbers.next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.c-pagenation .page-numbers.prev {
  left: 0;
}
.c-pagenation .page-numbers.prev::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  flex-shrink: 0;
}
.c-pagenation .page-numbers.next {
  right: 0;
}
.c-pagenation .page-numbers.next::after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  flex-shrink: 0;
}

.c-single-pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 5.375rem;
  position: relative;
  margin-top: 5rem;
}

.c-single-pagenation__prev a,
.c-single-pagenation__next a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-single-pagenation__prev a:hover,
  .c-single-pagenation__next a:hover {
    opacity: 0.5;
  }
}

.c-single-pagenation__prev a {
  left: 0;
}
.c-single-pagenation__prev a::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  flex-shrink: 0;
}

.c-single-pagenation__next a {
  right: 0;
}
.c-single-pagenation__next a::after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  flex-shrink: 0;
}

.c-single-pagenation__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
  transition: 0.3s;
}
.c-single-pagenation__back a::before {
  content: "(";
  display: block;
}
.c-single-pagenation__back a::after {
  content: ")";
  display: block;
}
@media (any-hover: hover) {
  .c-single-pagenation__back a:hover {
    opacity: 0.5;
  }
}
.c-single-pagenation__back span {
  text-decoration: underline;
}

.l-inner {
  width: 100%;
  max-width: 1010px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 430px;
    padding-inline: 15px;
  }
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
.p-cta {
  position: relative;
  padding: 6.875rem 0 8.125rem;
  margin-top: -1.25rem;
  background: url(../images/top/top-agent-bg.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 5.625rem 0;
  }
}

.p-cta__body {
  margin-top: 3rem;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-cta__body {
    padding-inline: 0.625rem;
    margin-top: 1.875rem;
  }
}

.p-cta__text {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2.0666666667;
}

.p-cta__actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-cta__actions {
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem;
    margin-top: 1.5625rem;
  }
}

.p-cta__button {
  background-color: #f4eeea;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.125rem 1.5rem 1.125rem 6.25rem;
  border-radius: 1.25rem;
  font-size: 1.5625rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-cta__button {
    padding: 0.625rem 0.75rem 0.625rem 4.0625rem;
    border-radius: 0.75rem;
    font-size: 1rem;
  }
}
.p-cta__button::after {
  content: "";
  display: block;
  width: 4.125rem;
  height: 4.125rem;
  margin-left: auto;
  background: url(../images/common/cta-btn-arrow.webp) no-repeat center/contain;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cta__button::after {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (any-hover: hover) {
  .p-cta__button:hover {
    background-color: #fff7ef;
  }
}

.p-cta__buttonText {
  display: block;
}

.p-cta__button--trial .p-cta__buttonIcon {
  display: block;
  width: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-cta__button--trial .p-cta__buttonIcon {
    width: 1.3125rem;
  }
}
.p-cta__button--trial .p-cta__buttonText {
  margin-left: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-cta__button--trial .p-cta__buttonText {
    margin-left: 1.75rem;
  }
}

.p-cta__button--consult .p-cta__buttonIcon {
  display: block;
  width: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-cta__button--consult .p-cta__buttonIcon {
    width: 2.125rem;
  }
}
.p-cta__button--consult .p-cta__buttonText {
  margin-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-cta__button--consult .p-cta__buttonText {
    margin-left: 1rem;
  }
}

.p-drawer {
  background: url(../images/common/sp-menu-bg.webp) no-repeat center/cover;
  display: none;
  position: fixed;
  inset: 0;
  z-index: 29;
  height: 100dvh;
  margin-top: -0.9375rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    display: block;
  }
}

.p-drawer.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-drawer__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: 1.125rem 1.875rem 1.25rem;
}

.p-drawer__logo a {
  display: block;
  width: min(100%, 11rem);
}
@media screen and (max-width: 600px) {
  .p-drawer__logo a {
    width: min(100%, 10.5rem);
  }
}

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

.p-drawer__nav {
  margin-top: 5rem;
  padding-inline: 1.5625rem;
}

.p-drawer__nav-list {
  display: grid;
  gap: 1.25rem;
}

.p-drawer__nav-item a {
  display: grid;
  gap: 0.3125rem;
  color: #000;
  transition: opacity 0.3s ease;
}

.p-drawer__nav-label {
  display: inline;
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.p-drawer__nav-sub {
  color: #d0b27c;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.p-drawer__bottom {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
  padding-inline: 1.5625rem;
}

.p-drawer__meta {
  width: 100%;
  display: grid;
  gap: 0.625rem;
}

.p-drawer__meta a {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.p-drawer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 13.125rem;
  min-height: 2.75rem;
  margin-top: 3.4375rem;
  border-radius: 62.4375rem;
  background-color: #e1aa64;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
}

.p-drawer__social {
  display: grid;
  place-items: center;
  width: 1.8125rem;
  margin-top: 1.875rem;
}

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

.p-drawer__copy {
  display: block;
  margin-top: 1.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}

@media (any-hover: hover) {
  .p-drawer__nav-item a:hover,
  .p-drawer__meta a:hover,
  .p-drawer__cta:hover {
    opacity: 0.7;
  }
}

.p-error404-page {
  padding-top: 15.625rem;
  background: url(../images/lineup/lineup-bg.webp) no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .p-error404-page {
    padding-top: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-error404-page .p-heading__title {
    font-size: 1.375rem;
  }
}

.p-error404-page__section {
  padding: 6.25rem 0 11.25rem;
  margin-top: 6.875rem;
  background-color: #f4eeea;
}
@media screen and (max-width: 767px) {
  .p-error404-page__section {
    padding: 4.5rem 0;
    margin-top: 3.125rem;
  }
}

.p-error404-page__body {
  max-width: 47.5rem;
  margin-inline: auto;
  padding: 4.5rem 2.5rem;
  border-radius: 1.875rem;
  background-color: rgba(255, 255, 255, .92);
  box-shadow: 0 1rem 2.5rem rgba(165, 149, 133, .12);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error404-page__body {
    padding: 2.5rem 1.25rem;
    border-radius: 1.25rem;
    text-align: left;
  }
}

.p-error404-page__text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-error404-page__text {
    font-size: 0.875rem;
    line-height: 1.9;
  }
}

.p-error404-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16.25rem;
  min-height: 4rem;
  margin-top: 2.5rem;
  padding: 1rem 2.5rem;
  border-radius: 6.25rem;
  background-color: #e1aa64;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-error404-page__button {
    width: 100%;
    min-width: 0;
    min-height: 3.5rem;
    margin-top: 2rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
}

@media (hover: hover) {
  .p-error404-page__button:hover {
    opacity: 0.8;
  }
}

.p-faq {
  position: relative;
  z-index: 1;
  padding: 8.25rem 0 6.25rem;
  margin-top: -1.25rem;
  background-color: #e8e3dd;
  border-radius: 1.875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 3.75rem 0;
    border-radius: 1.25rem;
  }
}
.p-faq::before {
  content: "";
  display: block;
  width: 100%;
  height: 54.6875rem;
  background: url(../images/top/top-faq-bg.webp) no-repeat top center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-faq::before {
    background: url(../images/top/top-faq-bg-sp.jpg) no-repeat top center/100% auto;
    height: 100%;
  }
}

.p-faq .p-heading {
  position: relative;
  z-index: 1;
}

.p-faq__list {
  margin-top: 3rem;
  display: grid;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    margin-top: 2.25rem;
    gap: 0.75rem;
  }
}

.p-faq__item {
  overflow: hidden;
  border-radius: 0.9375rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    border-radius: 0.375rem;
  }
}

.p-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: 4.875rem 1fr;
  align-items: center;
  width: 100%;
  padding: 1.125rem 4rem 1.125rem 3rem;
  border: 0;
  text-align: left;
  list-style: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    grid-template-columns: 1.5625rem 1fr;
    padding: 0.75rem 0.9375rem;
  }
}
.p-faq__question::-webkit-details-marker {
  display: none;
}
.p-faq__question::after {
  content: "";
  background: url(../images/top/accordion-arrow.svg) no-repeat center/contain;
  width: 1.6875rem;
  height: 0.6875rem;
  position: absolute;
  top: 50%;
  right: 4.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-faq__question::after {
    background: url(../images/top/accordion-arrow-sp.svg) no-repeat center/contain;
    width: 0.625rem;
    height: 0.3125rem;
    right: 0.9375rem;
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
}
@media (any-hover: hover) {
  .p-faq__question:hover {
    color: #e1aa64;
  }
}

.p-faq__item.is-open .p-faq__question::after {
  -webkit-transform: translateY(-30%) rotate(180deg);
          transform: translateY(-30%) rotate(180deg);
}

.p-faq__questionLabel {
  color: #dcb478;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-top: -0.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__questionLabel {
    font-size: 0.9375rem;
    margin-top: 0;
  }
}

.p-faq__questionText {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.5714285714;
}
@media screen and (max-width: 767px) {
  .p-faq__questionText {
    font-size: 0.8125rem;
  }
}

.p-faq__answer {
  height: 0;
  overflow: hidden;
  padding: 0 6.25rem 0 7.875rem;
  font-size: 1.25rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    padding: 0 2.5rem 0 1.875rem;
    font-size: 0.8125rem;
  }
}

.p-faq__item[open] .p-faq__answer {
  height: auto;
}

.p-faq__answerInner {
  padding-bottom: 1.75rem;
}

.p-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 9.375vw 0 1.7361111111vw;
  background: url(../images/common/footer-bg.webp) no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 4.0625rem 0 1.25rem;
    background: url(../images/common/footer-bg-sp.webp) no-repeat center/cover;
    border-radius: 1rem 1rem 0 0;
  }
}

.p-footer__inner {
  max-width: 1250px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    max-width: 430px;
  }
}

.p-footer__ornaments {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.p-footer__ornament {
  position: absolute;
  display: block;
}
.p-footer__ornament--1 {
  top: -3.25rem;
  left: 15%;
  width: 6.25rem;
  aspect-ratio: 1;
  border-radius: 48% 52% 48% 52%/58% 42% 58% 42%;
}
@media screen and (max-width: 767px) {
  .p-footer__ornament--1 {
    left: 1.5rem;
    width: 4.875rem;
  }
}
.p-footer__ornament--2 {
  top: 1.625rem;
  right: 7.875rem;
  width: 11.125rem;
  aspect-ratio: 0.78;
  border-radius: 52% 48% 50% 50%/60% 44% 56% 40%;
  -webkit-transform: rotate(11deg);
          transform: rotate(11deg);
}
@media screen and (max-width: 767px) {
  .p-footer__ornament--2 {
    right: -2.125rem;
    width: 8rem;
  }
}
.p-footer__ornament--3 {
  bottom: -2.375rem;
  left: 72%;
  width: 8rem;
  aspect-ratio: 0.78;
  border-radius: 50% 50% 48% 52%/58% 42% 58% 42%;
  -webkit-transform: rotate(-24deg);
          transform: rotate(-24deg);
}
@media screen and (max-width: 767px) {
  .p-footer__ornament--3 {
    left: 58%;
    width: 5.75rem;
  }
}
.p-footer__ornament--4 {
  top: 6.75rem;
  left: -2.5rem;
  width: 8.125rem;
  aspect-ratio: 1.2;
  border-radius: 45% 55% 56% 44%/44% 56% 44% 56%;
  -webkit-transform: rotate(16deg);
          transform: rotate(16deg);
}
@media screen and (max-width: 767px) {
  .p-footer__ornament--4 {
    left: -3.5rem;
    width: 6.5rem;
  }
}

.p-footer__pagetop {
  display: grid;
  place-items: center;
  gap: 0.25rem;
  width: 4.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-footer__pagetop {
    width: 3.5625rem;
    gap: 0.5625rem;
  }
}

.p-footer__pagetop::before {
  content: "";
  display: block;
  width: 4.125rem;
  height: 4.125rem;
  background: url(../images/top/page-top.webp) no-repeat center/contain;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-footer__pagetop::before {
    width: 3.625rem;
    height: 3.625rem;
  }
}

.p-footer__pagetop span {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-footer__pagetop span {
    font-size: 0.9375rem;
    line-height: 1;
  }
}

@media (any-hover: hover) {
  .p-footer__pagetop:hover::before {
    -webkit-transform: translateY(-0.375rem);
            transform: translateY(-0.375rem);
  }
}

.p-footer__brand {
  display: grid;
  justify-items: center;
}

.p-footer__logo {
  display: block;
  width: 36rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 17.5rem;
  }
}

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

.p-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  width: 100%;
  margin-top: 4.5138888889vw;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3.125rem;
    padding-right: 0;
    font-size: 0.75rem;
    line-height: 1.45;
  }
}

.p-footer__meta a {
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__meta a:hover {
    color: #e1aa64;
  }
}

.p-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-column: 2;
  gap: 0.75rem 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__meta {
    grid-column: auto;
    order: 1;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

.p-footer__actions {
  display: flex;
  justify-self: end;
  gap: 2rem;
  grid-column: 3;
}
@media screen and (max-width: 767px) {
  .p-footer__actions {
    order: 2;
    justify-self: center;
    gap: 1.25rem;
    margin-top: 4.0625rem;
  }
}

.p-footer__instagram {
  display: grid;
  place-items: center;
  gap: 0.625rem;
  min-width: 5.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-footer__instagram {
    min-width: 4.5rem;
    gap: 0.5625rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-footer__instagram:hover img {
    -webkit-transform: translateY(-0.375rem);
            transform: translateY(-0.375rem);
  }
}
.p-footer__instagram span {
  margin-top: auto;
}

.p-footer__instagram img {
  width: 3.625rem;
  height: auto;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-footer__instagram img {
    width: 3.25rem;
  }
}

.p-footer__copy {
  display: block;
  justify-self: start;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    justify-self: center;
    order: 3;
    margin-top: 1.875rem;
    font-size: 0.75rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-align: center;
  }
}

.p-header {
  position: fixed;
  top: 2.8125rem;
  left: 50%;
  z-index: 30;
  width: 100%;
  padding-inline: 3rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-header {
    top: 0.9375rem;
    padding-inline: 1rem;
  }
}

.p-header__inner {
  background-color: #fff;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  width: 100%;
  height: 5.1875rem;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    justify-content: space-between;
    height: 3.5625rem;
    padding-inline: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  body.is-fixed .p-header__inner {
    background-color: transparent;
  }
}

@media screen and (max-width: 767px) {
  body.is-fixed .p-header__logo {
    opacity: 0;
    pointer-events: none;
  }
}

.p-header__logo {
  display: block;
  width: 17.246835443%;
  max-width: 218px;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 8.375rem;
  }
}
.p-header__logo a {
  display: block;
}

.p-header__nav {
  height: inherit;
  margin-left: auto;
  justify-self: end;
}
@media screen and (max-width: 1023px) {
  .p-header__nav {
    -webkit-column-gap: 1.125rem;
       -moz-column-gap: 1.125rem;
            column-gap: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  height: inherit;
  display: flex;
  gap: 1rem;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: clamp(10px, 1.0416666667vw, 15px);
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (any-hover: hover) {
  .p-header__nav-item a:hover {
    color: #e1aa64;
  }
}

.p-header__nav-item--cta {
  display: flex;
  align-items: center;
  margin-left: 1.25rem;
}

.p-header__nav-item--cta a {
  background-color: #e1aa64;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 11.875rem;
  height: 2.5rem;
  padding-inline: 3rem;
  border-radius: 1.25rem;
  color: #fff;
  font-size: clamp(10px, 1.0416666667vw, 15px);
  font-size: 700;
  letter-spacing: 0.03em;
  text-align: center;
}
@media (any-hover: hover) {
  .p-header__nav-item--cta a:hover {
    background-color: #af8f68;
    color: #fff;
  }
}

.p-heading {
  text-align: center;
}

.p-heading__title {
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-heading__title {
    font-size: 1.5rem;
  }
}

.p-heading__sub {
  color: #e1aa64;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-heading__sub {
    font-size: 0.75rem;
  }
}

html:not(.is-loading-skip) body.is-loading:not(.is-loading-end) .p-header,
html:not(.is-loading-skip) body.is-loading:not(.is-loading-end) .p-top {
  opacity: 0;
}

html.is-loading-skip .p-loading {
  display: none;
}

.p-header,
.p-top {
  transition: opacity 1.2s ease;
}

.p-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 3s ease, visibility 3s ease;
}
.p-loading.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.p-loading.is-loaded .p-loading__logo {
  -webkit-animation: loading-logo-fade-out 1.8s ease forwards;
          animation: loading-logo-fade-out 1.8s ease forwards;
}

.p-loading__logo {
  width: 27.5rem;
  max-width: 86vw;
  opacity: 0;
  -webkit-animation: loading-logo-fade 1s ease 0.75s forwards;
          animation: loading-logo-fade 1s ease 0.75s forwards;
}
@media screen and (max-width: 767px) {
  .p-loading__logo {
    width: 16.875rem;
  }
}

@-webkit-keyframes loading-logo-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes loading-logo-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes loading-logo-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes loading-logo-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-loading {
    transition-duration: 0.01ms;
  }
  .p-loading__logo {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
  }
}
.p-contact-page {
  padding-top: 15.625rem;
  background: url(../images/lineup/lineup-bg.webp) no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .p-contact-page {
    padding-top: 7.5rem;
  }
}

.p-contact-page__section {
  padding: 6.25rem 0 11.25rem;
  margin-top: 6.875rem;
  background: url(../images/contact/contact-bg.webp) no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .p-contact-page__section {
    padding: 4.5rem 0 4.5rem;
    margin-top: 3.125rem;
  }
}

.p-contact-page__form .smf-item + .smf-item {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .smf-item + .smf-item {
    margin-top: 2rem;
  }
}
.p-contact-page__form .smf-item + .smf-item--divider {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .smf-item + .smf-item--divider {
    margin-top: 1.75rem;
  }
}

.smf-item__col--label {
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .smf-item__col--label {
    margin-bottom: 0.625rem;
  }
}

.p-contact-page__form .smf-item__label__text {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .smf-item__label__text {
    font-size: 0.9375rem;
  }
}

.p-contact-page__form .smf-item__label__text::after {
  position: absolute;
  top: 50%;
  right: -4.375rem;
  display: grid;
  place-items: center;
  color: #e03455;
  content: "※必須";
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .smf-item__label__text::after {
    position: static;
    margin-left: 0.625rem;
    font-size: 0.8125rem;
    -webkit-transform: none;
            transform: none;
  }
}

.p-contact-page__form .wp-block-snow-monkey-forms-item:nth-child(7) .smf-item__label__text::after {
  display: none;
}

.snow-monkey-form[data-screen=confirm] .p-contact-page__form .smf-item__label__text::after {
  display: none;
}

.snow-monkey-form[data-screen=confirm] .p-contact-page__form .wp-block-snow-monkey-forms-item:nth-child(8) {
  display: none;
}

.p-contact-page__form .snow-monkey-form[data-screen=confirm] .smf-item__label__text::after {
  display: none;
}

.p-contact-page__form .snow-monkey-form[data-screen=confirm] .smf-item--divider {
  display: none;
}

.p-contact-page__form .snow-monkey-form[data-screen=confirm] .smf-placeholder[data-name=agreement] {
  display: none;
}

.p-contact-page__form .smf-text-control__control,
.p-contact-page__form .smf-email-control__control,
.p-contact-page__form .smf-tel-control__control,
.p-contact-page__form .smf-textarea-control__control {
  width: 100%;
  border: 0;
  border-radius: 0.625rem;
  background-color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .smf-text-control__control,
  .p-contact-page__form .smf-email-control__control,
  .p-contact-page__form .smf-tel-control__control,
  .p-contact-page__form .smf-textarea-control__control {
    border-radius: 0.5rem;
    font-size: 1rem;
  }
}

.p-contact-page__form .smf-text-control__control,
.p-contact-page__form .smf-email-control__control,
.p-contact-page__form .smf-tel-control__control {
  min-height: 5rem;
  padding: 1.5rem 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .smf-text-control__control,
  .p-contact-page__form .smf-email-control__control,
  .p-contact-page__form .smf-tel-control__control {
    min-height: 3.5rem;
    padding: 0.875rem 1rem;
  }
}

.p-contact-page__form .smf-textarea-control__control {
  min-height: 13.75rem;
  padding: 1.125rem 1.375rem;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .smf-textarea-control__control {
    min-height: 11.25rem;
    padding: 0.875rem 1rem;
  }
}

.p-contact-page__form .smf-text-control__control::-webkit-input-placeholder,
.p-contact-page__form .smf-email-control__control::-webkit-input-placeholder,
.p-contact-page__form .smf-tel-control__control::-webkit-input-placeholder,
.p-contact-page__form .smf-textarea-control__control::-webkit-input-placeholder {
  color: #c9ced0;
}

.p-contact-page__form .smf-text-control__control::-ms-input-placeholder,
.p-contact-page__form .smf-email-control__control::-ms-input-placeholder,
.p-contact-page__form .smf-tel-control__control::-ms-input-placeholder,
.p-contact-page__form .smf-textarea-control__control::-ms-input-placeholder {
  color: #c9ced0;
}

.p-contact-page__form .smf-text-control__control::placeholder,
.p-contact-page__form .smf-email-control__control::placeholder,
.p-contact-page__form .smf-tel-control__control::placeholder,
.p-contact-page__form .smf-textarea-control__control::placeholder {
  color: #c9ced0;
}

.p-contact-page__form .smf-radio-buttons-control__control,
.p-contact-page__form .smf-checkboxes-control__control {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .smf-radio-buttons-control__control,
  .p-contact-page__form .smf-checkboxes-control__control {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.75rem;
  }
}

.p-contact-page__form .smf-radio-button-control,
.p-contact-page__form .smf-checkbox-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #222;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .smf-radio-button-control,
  .p-contact-page__form .smf-checkbox-control {
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
  }
}

.p-contact-page__form .smf-radio-button-control__control,
.p-contact-page__form .smf-checkbox-control__control {
  position: relative;
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  border: 0;
  background-color: #fff;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .smf-radio-button-control__control,
  .p-contact-page__form .smf-checkbox-control__control {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
  }
}

.p-contact-page__form .smf-radio-button-control__control {
  border-radius: 50%;
}

.p-contact-page__form .smf-radio-button-control__control::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #e1aa64;
  content: "";
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0.4);
          transform: translate(-50%, -50%) scale(0.4);
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .smf-radio-button-control__control::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.p-contact-page__form .smf-radio-button-control__control:checked {
  background-color: #fff;
}

.p-contact-page__form .smf-checkbox-control__control {
  border-radius: 0.3125rem;
}

.p-contact-page__form .smf-checkbox-control__control::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8125rem;
  height: 0.625rem;
  background-color: #fff;
  clip-path: polygon(14% 45%, 0 59%, 38% 100%, 100% 14%, 84% 0, 36% 66%);
  content: "";
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
          transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .smf-checkbox-control__control::before {
    width: 0.6875rem;
    height: 0.5rem;
  }
}

.p-contact-page__form .smf-checkbox-control__control:checked {
  background-color: #e1aa64;
}

.p-contact-page__form .smf-radio-button-control__control:checked::before,
.p-contact-page__form .smf-checkbox-control__control:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.p-contact-page__form .smf-checkbox-control__control:checked::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.p-contact-page__form .smf-radio-button-control__control:focus-visible,
.p-contact-page__form .smf-checkbox-control__control:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(225, 170, 100, .25);
  outline: none;
}

.p-contact-page__form .smf-item:has(.p-contact-form__privacyText) {
  display: none;
}

.p-contact-page__form__privacyText {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form__privacyText {
    font-size: 0.875rem;
  }
}

.p-contact-page__form__privacyText a {
  text-decoration: underline;
}

.p-contact-page .smf-action {
  margin-top: 4.375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-page .smf-action {
    margin-top: 3rem;
  }
}

.snow-monkey-form[data-screen=confirm] .smf-action {
  display: grid;
  gap: 1.125rem;
}

.p-contact-page .smf-button-control__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5rem;
  border: 0;
  border-radius: 0.625rem;
  background-image: none;
  background-color: #dcb478;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact-page .smf-button-control__control {
    min-height: 3.75rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
  }
}

.p-contact-page .smf-button-control__control:hover {
  background-color: #af8f68;
}

.snow-monkey-form[data-screen=confirm] .smf-button-control__control[data-action=back] {
  background-color: #f4eeea;
  color: #222;
}

.snow-monkey-form[data-screen=confirm] .smf-button-control__control[data-action=back]:hover {
  background-color: #e8ded5;
}

.smf-action .smf-button-control + .smf-button-control {
  margin-left: 0;
}

.p-contact-page__form .snow-monkey-form[data-screen=complete] .smf-complete-content {
  max-width: 47.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .snow-monkey-form[data-screen=complete] .smf-complete-content {
    padding: 3rem 1.25rem;
  }
}

.p-contact-page__form .snow-monkey-form[data-screen=complete] .smf-complete-content h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .snow-monkey-form[data-screen=complete] .smf-complete-content h2 {
    font-size: 1.5rem;
    text-align: left;
  }
}

.p-contact-page__form .snow-monkey-form[data-screen=complete] .smf-complete-content p {
  margin: 1.75rem 0 0;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form .snow-monkey-form[data-screen=complete] .smf-complete-content p {
    margin-top: 1.25rem;
    font-size: 1rem;
    text-align: left;
  }
}

.p-contact-page .smf-error-messages {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #e03455;
}
@media screen and (max-width: 767px) {
  .p-contact-page .smf-error-messages {
    font-size: 0.8125rem;
  }
}

.p-contact-page .smf-system-error-content-ready,
.p-contact-page .smf-system-error-content-invalid,
.p-contact-page .smf-system-error-content-unexpected {
  margin: 1.75rem 0 0;
  padding: 0.875rem 1.125rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.p-lineup-archive {
  padding-block: 15.625rem 0;
  position: relative;
  background: url(../images/top/top-products-bg.webp) repeat top center/2880px 2271px;
}
@media screen and (max-width: 767px) {
  .p-lineup-archive {
    padding-block: 7.5rem 0;
    background: url(../images/top/top-products-bg-sp.jpg) repeat top center/540px 1568px;
  }
}

.p-lineup-archive__section {
  position: relative;
  padding-bottom: 5rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-lineup-archive__section {
    padding: 0 0 4.5rem;
  }
}

.p-lineup-archive__inner {
  position: relative;
  max-width: 1170px;
}
@media screen and (max-width: 767px) {
  .p-lineup-archive__inner {
    max-width: 430px;
  }
}

.p-lineup-archive__heading {
  position: relative;
  z-index: 1;
}

.p-lineup-archive__list {
  position: relative;
  z-index: 1;
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-lineup-archive__list {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }
}

.p-lineup-archive__card {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.p-lineup-archive__image {
  width: 100%;
  aspect-ratio: 1;
  margin-inline: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-lineup-archive__image {
    width: 77.4193548387%;
  }
}
.p-lineup-archive__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-lineup-archive__name {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-lineup-archive__name {
    font-size: 1.125rem;
  }
}

.p-lineup-archive__copy {
  margin-top: 0.875rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.7647058824;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-lineup-archive__copy {
    padding-inline: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-lineup-archive__calorie {
  margin-top: auto;
  padding-top: 2.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-lineup-archive__calorie {
    padding-top: 0.625rem;
  }
}

.p-lineup-archive__calorieValue {
  color: #e1aa64;
  font-size: 1.6875rem;
  letter-spacing: 0.08em;
}

.p-lineup-archive__calorieUnit {
  margin-left: 0.25rem;
}

.p-lineup-archive__empty {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  text-align: center;
}

.p-lineup-archive__pager {
  position: relative;
  z-index: 1;
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-lineup-archive__pager {
    margin-top: 6.25rem;
  }
}
.p-lineup-archive__pager .nav-links {
  gap: 1.25rem;
  padding-inline: 0;
}
@media screen and (max-width: 767px) {
  .p-lineup-archive__pager .nav-links {
    gap: 0.75rem;
  }
}
.p-lineup-archive__pager .page-numbers {
  width: 4.125rem;
  height: 4.125rem;
  color: #c4a263;
  font-size: 1.6875rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-lineup-archive__pager .page-numbers {
    width: 3.125rem;
    height: 3.125rem;
    font-size: 1.25rem;
  }
}
.p-lineup-archive__pager .page-numbers:not(.dots) {
  background: url(../images/lineup/pager-no-current.webp) no-repeat center/contain;
}
.p-lineup-archive__pager .page-numbers.current:not(.dots) {
  background-image: url(../images/lineup/pager-current.webp);
}

.p-lineup-archive__blob {
  position: absolute;
  z-index: 0;
}
.p-lineup-archive__blob--top {
  top: -25%;
  left: -6.9444444444%;
  width: 25.4375rem;
}
.p-lineup-archive__blob--bottom {
  bottom: -10%;
  left: -10.4166666667%;
  width: 28.3125rem;
}

.p-privacy-policy-page {
  padding-top: 15.625rem;
  background: url(../images/lineup/lineup-bg.webp) no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-page {
    padding-top: 7.5rem;
  }
}

.p-privacy-policy-page__section {
  padding: 6.25rem 0 11.25rem;
  margin-top: 6.875rem;
  background-color: #f4eeea;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-page__section {
    padding: 4.5rem 0;
    margin-top: 3.125rem;
  }
}

.p-privacy-policy-page__article {
  max-width: 60rem;
  margin-inline: auto;
  padding: 4.5rem;
  border-radius: 1.875rem;
  background-color: rgba(255, 255, 255, .92);
  box-shadow: 0 1rem 2.5rem rgba(165, 149, 133, .12);
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-page__article {
    padding: 2rem 1.25rem;
    border-radius: 1.25rem;
  }
}

.p-privacy-policy-page__lead,
.p-privacy-policy-page__block,
.p-privacy-policy-page__dates {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-page__lead,
  .p-privacy-policy-page__block,
  .p-privacy-policy-page__dates {
    font-size: 0.875rem;
    line-height: 1.9;
  }
}

.p-privacy-policy-page__lead + .p-privacy-policy-page__block,
.p-privacy-policy-page__block + .p-privacy-policy-page__block,
.p-privacy-policy-page__block + .p-privacy-policy-page__dates {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-page__lead + .p-privacy-policy-page__block,
  .p-privacy-policy-page__block + .p-privacy-policy-page__block,
  .p-privacy-policy-page__block + .p-privacy-policy-page__dates {
    margin-top: 2.25rem;
  }
}

.p-privacy-policy-page__block-title {
  margin-bottom: 1rem;
  color: #e1aa64;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-page__block-title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }
}

.p-privacy-policy-page__sub-block,
.p-privacy-policy-page__measure {
  margin-top: 1.5rem;
}

.p-privacy-policy-page__sub-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-page__sub-title {
    font-size: 0.9375rem;
  }
}

.p-privacy-policy-page__list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-left: 1.2em;
  list-style: disc;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-page__list {
    gap: 0.625rem;
    margin-top: 0.75rem;
  }
}

.p-privacy-policy-page__list li {
  list-style: inherit;
}

.p-privacy-policy-page__contact,
.p-privacy-policy-page__dates {
  display: grid;
  gap: 0.375rem;
  margin-top: 1.125rem;
}

.p-privacy-policy-page__contact a {
  text-decoration: underline;
}

.p-top {
  overflow: hidden;
}

.p-top .js-scroll-fade {
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  will-change: opacity, transform;
}
@media (prefers-reduced-motion: reduce) {
  .p-top .js-scroll-fade {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    transition: none;
    will-change: auto;
  }
}

.p-top .js-scroll-fade.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  will-change: auto;
}

.p-top-foodBand {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 49.625rem;
  margin-top: -1.875rem;
  padding-top: 1.875rem;
  background-image: url(../images/top/food-pattern-bg.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-top-foodBand {
    height: 50rem;
  }
}

@supports (-webkit-touch-callout: none) {
  .p-top-foodBand {
    overflow: hidden;
    background-image: none;
    background-attachment: scroll;
    clip-path: inset(0);
  }
  .p-top-foodBand::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    height: 100lvh;
    background-image: url(../images/top/food-pattern-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
  }
}
.p-top-riceScatter {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.p-top-riceScatter__item {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  border-radius: 48% 52% 46% 54%/56% 44% 58% 42%;
  --rice-float-x: 0px;
  --rice-float-y: 14px;
  --rice-float-rotate: 0deg;
  -webkit-animation-name: riceFloat;
          animation-name: riceFloat;
  -webkit-animation-duration: 5.6s;
          animation-duration: 5.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .p-top-riceScatter__item {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: none;
            transform: none;
    will-change: auto;
  }
}

@-webkit-keyframes riceFloat {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
            transform: translate3d(0, 0, 0) rotate(0deg);
  }
  45% {
    -webkit-transform: translate3d(calc(var(--rice-float-x) * -0.45), calc(var(--rice-float-y) * -1), 0) rotate(calc(var(--rice-float-rotate) * -0.6));
            transform: translate3d(calc(var(--rice-float-x) * -0.45), calc(var(--rice-float-y) * -1), 0) rotate(calc(var(--rice-float-rotate) * -0.6));
  }
  100% {
    -webkit-transform: translate3d(var(--rice-float-x), var(--rice-float-y), 0) rotate(var(--rice-float-rotate));
            transform: translate3d(var(--rice-float-x), var(--rice-float-y), 0) rotate(var(--rice-float-rotate));
  }
}

@keyframes riceFloat {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
            transform: translate3d(0, 0, 0) rotate(0deg);
  }
  45% {
    -webkit-transform: translate3d(calc(var(--rice-float-x) * -0.45), calc(var(--rice-float-y) * -1), 0) rotate(calc(var(--rice-float-rotate) * -0.6));
            transform: translate3d(calc(var(--rice-float-x) * -0.45), calc(var(--rice-float-y) * -1), 0) rotate(calc(var(--rice-float-rotate) * -0.6));
  }
  100% {
    -webkit-transform: translate3d(var(--rice-float-x), var(--rice-float-y), 0) rotate(var(--rice-float-rotate));
            transform: translate3d(var(--rice-float-x), var(--rice-float-y), 0) rotate(var(--rice-float-rotate));
  }
}
.p-top-fv {
  background-color: #f4eeea;
  position: relative;
  overflow: hidden;
  padding: 23.1944444444% 0 13.2638888889%;
}
@media screen and (max-width: 767px) {
  .p-top-fv {
    min-height: 50rem;
    padding: 8.75rem 0 28.125rem;
  }
}
.p-top-fv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/top/fv-overlay.webp) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-top-fv::before {
    background: url(../images/top/fv-overlay-sp.webp) no-repeat center/cover;
  }
}
.p-top-fv > * {
  position: relative;
  z-index: 1;
}

.p-top-fv__inner {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.p-top-fv__blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-fv__blobs {
    display: none;
  }
}

.p-top-fv__blob {
  position: absolute;
  display: block;
}
.p-top-fv__blob--left {
  top: 21.375%;
  left: 13.8888888889%;
  width: 9.375rem;
  height: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__blob--left {
    top: 8.875rem;
    left: -4rem;
    width: 7.375rem;
    height: 7.375rem;
    opacity: 0.55;
  }
}
.p-top-fv__blob--right {
  top: 16.125%;
  right: 9.6527777778%;
  width: 15rem;
  height: 17rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__blob--right {
    top: 9.375rem;
    right: -3.625rem;
    width: 9.125rem;
    height: 10.125rem;
    opacity: 0.5;
  }
}

.p-top-fv__copy {
  position: relative;
  z-index: 3;
  width: 16.6666666667vw;
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
}
@media screen and (max-width: 767px) {
  .p-top-fv__copy {
    width: 47.0588235294vw;
  }
}

body.is-fv-animation-start .p-top-fv__copy {
  -webkit-animation: top-fv-copy-fade 0.8s ease 0.72s forwards;
          animation: top-fv-copy-fade 0.8s ease 0.72s forwards;
}

html.is-loading-skip .p-top-fv__copy {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.p-top-fv__cta {
  position: fixed;
  top: 51.25%;
  right: -11.1111111111%;
  z-index: 10;
  width: 32.9861111111%;
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0s linear 0s, -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s, -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-top-fv__cta.is-hidden {
  opacity: 0;
  -webkit-transform: translateY(1rem) scale(0.98);
          transform: translateY(1rem) scale(0.98);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s, -webkit-transform 0.35s ease;
}
@media (any-hover: hover) {
  .p-top-fv__cta:hover {
    -webkit-transform: translateX(-0.5rem) translateY(0) rotate(-1deg) scale(1);
            transform: translateX(-0.5rem) translateY(0) rotate(-1deg) scale(1);
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__cta {
    display: none;
  }
}

.p-top-fv__mockup {
  width: 15%;
  position: absolute;
  left: 10.8333333333%;
  bottom: -9.75%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-fv__mockup {
    width: 12.75rem;
    left: 50%;
    bottom: -5rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-top-fv__rice {
  position: absolute;
}

.p-top-fv__rice--left {
  width: 29.2361111111%;
  top: 25%;
  left: 21.25%;
}
@media screen and (max-width: 767px) {
  .p-top-fv__rice--left {
    width: 22.5625rem;
    top: 14.375rem;
    left: -10.875rem;
    width: 106.1764705882vw;
    top: 14.375rem;
    left: -51.1764705882vw;
  }
}

.p-top-fv__rice--right {
  width: 31.1805555556%;
  top: 28.5%;
  right: 20.4861111111%;
  -webkit-transform-origin: 50% 92%;
          transform-origin: 50% 92%;
  -webkit-transform: rotate(16deg);
          transform: rotate(16deg);
}

body.is-fv-animation-start .p-top-fv__rice--right {
  -webkit-animation: top-fv-rice-right-tilt 1.05s cubic-bezier(0.3, 0.04, 0.18, 1) both;
          animation: top-fv-rice-right-tilt 1.05s cubic-bezier(0.3, 0.04, 0.18, 1) both;
}

html.is-loading-skip .p-top-fv__rice--right {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

@media (prefers-reduced-motion: reduce) {
  .p-top-fv__copy {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .p-top-fv__rice--right,
  body.is-fv-animation-start .p-top-fv__rice--right {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__rice--right {
    width: 24rem;
    width: 112.9411764706vw;
    top: 15.625rem;
    right: -11.5625rem;
    right: -54.4117647059vw;
  }
}

@-webkit-keyframes top-fv-copy-fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(1.5rem);
            transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes top-fv-copy-fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(1.5rem);
            transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes top-fv-rice-right-tilt {
  0% {
    -webkit-transform: rotate(16deg);
            transform: rotate(16deg);
  }
  68%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes top-fv-rice-right-tilt {
  0% {
    -webkit-transform: rotate(16deg);
            transform: rotate(16deg);
  }
  68%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-top-riceScatter--philosophy {
  border-radius: 0 0 1.875rem 1.875rem;
}
.p-top-riceScatter--philosophy .p-top-riceScatter__item--1 {
  top: 2.6666666667%;
  left: 12.8472222222%;
  width: 12.2222222222%;
  --rice-float-x: 9px;
  --rice-float-y: 18px;
  --rice-float-rotate: 2deg;
  --rice-float-duration: 5.8s;
  --rice-float-delay: -1.1s;
  -webkit-animation-duration: 5.8s;
          animation-duration: 5.8s;
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}
@media screen and (max-width: 767px) {
  .p-top-riceScatter--philosophy .p-top-riceScatter__item--1 {
    top: 3.625rem;
    left: -3rem;
    width: 9.375rem;
    --rice-float-x: 4.5px;
    --rice-float-y: 9px;
    --rice-float-rotate: 1deg;
  }
}
.p-top-riceScatter--philosophy .p-top-riceScatter__item--2 {
  top: 3.0555555556%;
  right: 14.4444444444%;
  width: 8.1944444444%;
  --rice-float-x: -7px;
  --rice-float-y: 12px;
  --rice-float-rotate: -3deg;
  --rice-float-duration: 4.9s;
  --rice-float-delay: -2.4s;
  -webkit-animation-duration: 4.9s;
          animation-duration: 4.9s;
  -webkit-animation-delay: -2.4s;
          animation-delay: -2.4s;
}
@media screen and (max-width: 767px) {
  .p-top-riceScatter--philosophy .p-top-riceScatter__item--2 {
    --rice-float-x: -3.5px;
    --rice-float-y: 6px;
    --rice-float-rotate: -1.5deg;
    display: none;
  }
}
.p-top-riceScatter--philosophy .p-top-riceScatter__item--3 {
  top: 11.5555555556%;
  right: 12.9166666667%;
  width: 20.7638888889%;
  --rice-float-x: 12px;
  --rice-float-y: 24px;
  --rice-float-rotate: -1.5deg;
  --rice-float-duration: 6.7s;
  --rice-float-delay: -0.6s;
  -webkit-animation-duration: 6.7s;
          animation-duration: 6.7s;
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}
@media screen and (max-width: 767px) {
  .p-top-riceScatter--philosophy .p-top-riceScatter__item--3 {
    top: 11.25rem;
    right: -5.625rem;
    width: 16.25rem;
    --rice-float-x: 6px;
    --rice-float-y: 12px;
    --rice-float-rotate: -0.75deg;
  }
}
.p-top-riceScatter--philosophy .p-top-riceScatter__item--4 {
  top: 25%;
  right: -4.4444444444%;
  width: 15.0694444444%;
  --rice-float-x: -10px;
  --rice-float-y: 20px;
  --rice-float-rotate: 2.5deg;
  --rice-float-duration: 5.3s;
  --rice-float-delay: -3.2s;
  -webkit-animation-duration: 5.3s;
          animation-duration: 5.3s;
  -webkit-animation-delay: -3.2s;
          animation-delay: -3.2s;
}
@media screen and (max-width: 767px) {
  .p-top-riceScatter--philosophy .p-top-riceScatter__item--4 {
    top: 38.75rem;
    right: 0.4375rem;
    width: 7.5rem;
    --rice-float-x: -5px;
    --rice-float-y: 10px;
    --rice-float-rotate: 1.25deg;
  }
}
.p-top-riceScatter--philosophy .p-top-riceScatter__item--5 {
  bottom: 37%;
  right: 5.4861111111%;
  width: 15.3472222222%;
  --rice-float-x: 8px;
  --rice-float-y: 16px;
  --rice-float-rotate: -2deg;
  --rice-float-duration: 6.1s;
  --rice-float-delay: -1.8s;
  -webkit-animation-duration: 6.1s;
          animation-duration: 6.1s;
  -webkit-animation-delay: -1.8s;
          animation-delay: -1.8s;
}
@media screen and (max-width: 767px) {
  .p-top-riceScatter--philosophy .p-top-riceScatter__item--5 {
    bottom: auto;
    top: 62rem;
    left: -4.375rem;
    width: 10.625rem;
    --rice-float-x: 4px;
    --rice-float-y: 8px;
    --rice-float-rotate: -1deg;
  }
}
.p-top-riceScatter--philosophy .p-top-riceScatter__item--6 {
  bottom: 48.2222222222%;
  left: 17.2222222222%;
  width: 7.8472222222%;
  --rice-float-x: -5px;
  --rice-float-y: 11px;
  --rice-float-rotate: 3deg;
  --rice-float-duration: 4.6s;
  --rice-float-delay: -0.2s;
  -webkit-animation-duration: 4.6s;
          animation-duration: 4.6s;
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
@media screen and (max-width: 767px) {
  .p-top-riceScatter--philosophy .p-top-riceScatter__item--6 {
    bottom: auto;
    top: 50.4375rem;
    left: 3.75rem;
    width: 3.125rem;
    --rice-float-x: -2.5px;
    --rice-float-y: 5.5px;
    --rice-float-rotate: 1.5deg;
  }
}
.p-top-riceScatter--philosophy .p-top-riceScatter__item--7 {
  top: 27%;
  left: -4.4444444444%;
  width: 17.5%;
  --rice-float-x: 11px;
  --rice-float-y: 22px;
  --rice-float-rotate: -2.5deg;
  --rice-float-duration: 7.2s;
  --rice-float-delay: -4s;
  -webkit-animation-duration: 7.2s;
          animation-duration: 7.2s;
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}
@media screen and (max-width: 767px) {
  .p-top-riceScatter--philosophy .p-top-riceScatter__item--7 {
    top: 25rem;
    left: -5.9375rem;
    width: 12.5rem;
    --rice-float-x: 5.5px;
    --rice-float-y: 11px;
    --rice-float-rotate: -1.25deg;
  }
}

.p-top-philosophy {
  position: relative;
  z-index: 1;
  padding: 5.625rem 0 5rem;
  background: url(../images/top/philosophy-bg.webp) no-repeat center/cover;
  border-radius: 0 0 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy {
    padding: 4.5rem 0;
    background: url(../images/top/philosophy-bg-sp.png) no-repeat center/cover;
  }
}

.p-top-philosophy__inner {
  max-width: 1250px;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__inner {
    max-width: 630px;
  }
}

.p-top-philosophy__content {
  max-width: 72.5rem;
  margin-inline: auto;
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: minmax(0, 28.125rem) 1fr;
  align-items: center;
  gap: 5.375rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__content {
    margin-top: 2.25rem;
    grid-template-columns: 1fr;
    gap: 3.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-philosophy__body {
    order: -1;
    max-width: 450px;
    margin-inline: auto;
  }
}

.p-top-philosophy__image {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__image {
    width: 95%;
    margin-inline: auto;
  }
}
.p-top-philosophy__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-top-philosophy__catch {
  color: #e1aa64;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__catch {
    font-size: 1.375rem;
  }
}

.p-top-philosophy__text {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.9583333333;
  letter-spacing: 0.03em;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__text {
    font-size: 1rem;
  }
}

.p-top-philosophy__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: flex-start;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__tags {
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.875rem;
  }
}

.p-top-philosophy__tag {
  background-color: #e1aa64;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 7.375rem;
  height: 7.375rem;
  border-radius: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__tag {
    width: 6rem;
    height: 6rem;
  }
}
.p-top-philosophy__tag:nth-child(1) .p-top-philosophy__tagLabel {
  font-size: 0.6875rem;
  margin-bottom: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__tag:nth-child(1) .p-top-philosophy__tagLabel {
    font-size: 0.625rem;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transform-origin: center;
            transform-origin: center;
    margin-bottom: -0.1875rem;
  }
}
.p-top-philosophy__tag:nth-child(2) .p-top-philosophy__tagLabel {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__tag:nth-child(2) .p-top-philosophy__tagLabel {
    font-size: 0.875rem;
  }
}
.p-top-philosophy__tag:nth-child(3) .p-top-philosophy__tagLabel {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__tag:nth-child(3) .p-top-philosophy__tagLabel {
    font-size: 0.6875rem;
  }
}

.p-top-philosophy__tagLabel {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__tagLabel {
    font-size: 0.625rem;
  }
}

.p-top-philosophy__tagValue {
  color: #fff;
  font-size: 2.0625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__tagValue {
    font-size: 1.25rem;
  }
}

.p-top-topics {
  background-color: #e8e3dd;
  margin-top: 6.25rem;
  padding: 3.5rem 5rem 5rem;
  border-radius: 1.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-topics {
    margin-top: 1.875rem;
    padding: 1.5625rem 1.25rem 1.875rem;
  }
}

.p-top-topics__title {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-topics__title {
    font-size: 1.375rem;
  }
}

.p-top-topics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.875rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-topics__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.p-top-topics__card {
  display: flex;
  flex-direction: column;
}

.p-top-topics__cardTitle {
  background-color: #e1aa64;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem 0.875rem;
  border-radius: 0.75rem 0.75rem 0 0;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-topics__cardTitle {
    font-size: 1.0625rem;
  }
}

.p-top-topics__image {
  overflow: hidden;
  border-radius: 0 0 0.75rem 0.75rem;
  aspect-ratio: 327/202;
}
.p-top-topics__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-topics__copy {
  margin-top: 1.875rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.8235294118;
  letter-spacing: 0.023em;
}
@media screen and (max-width: 767px) {
  .p-top-topics__copy {
    font-size: 0.875rem;
    margin-top: 1.5625rem;
  }
}

.p-top-topics__blob {
  position: absolute;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top-topics__blob {
    display: none;
  }
}
.p-top-topics__blob--left {
  bottom: 6.25rem;
  left: -2.5rem;
  width: 17.9375rem;
  height: 16.5625rem;
}
.p-top-topics__blob--right {
  bottom: -10.625rem;
  right: -2.5rem;
  width: 24.25rem;
  height: 24.25rem;
}

.p-top-products {
  position: relative;
  padding: 7rem 0 3.75rem;
  background: url(../images/top/top-products-bg.webp) no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .p-top-products {
    padding: 4.5rem 0 6.25rem;
    background: url(../images/top/top-products-bg-sp.jpg) repeat top center/540px 1568px;
  }
}

.p-top-products__inner {
  max-width: 1170px;
}
@media screen and (max-width: 767px) {
  .p-top-products__inner {
    max-width: 430px;
  }
}

.p-top-products__list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-products__list {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.p-top-products__card {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.p-top-products__image {
  width: 100%;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-products__image {
    width: 77.4193548387%;
  }
}
.p-top-products__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-products__name {
  margin-top: 1.375rem;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-top-products__name {
    font-size: 1.125rem;
    margin-top: 0;
  }
}

.p-top-products__copy {
  margin-top: 0.875rem;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-top-products__copy {
    font-size: 0.875rem;
    line-height: 1.7857142857;
    padding-inline: 1.25rem;
    margin-top: 0.4375rem;
  }
}

.p-top-products__calorie {
  margin-top: auto;
  padding-top: 2.125rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-products__calorie {
    padding-top: 0.625rem;
  }
}

.p-top-products__calorieValue {
  color: #e1aa64;
  font-size: 1.625rem;
  letter-spacing: 0.08em;
}

.p-top-products__calorieUnit {
  margin-left: 0.25rem;
}

.p-top-products__btn {
  text-align: right;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-products__btn {
    text-align: center;
    margin-top: 4.375rem;
  }
}
.p-top-products__btn a {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-products__btn a {
    gap: 1rem;
    font-size: 0.75rem;
  }
}
.p-top-products__btn a::after {
  content: "";
  display: block;
  width: 4.125rem;
  height: 4.125rem;
  background: url(../images/common/btn-arrow.webp) no-repeat center/contain;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-products__btn a::after {
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media (any-hover: hover) {
  .p-top-products__btn a:hover {
    color: #e1aa64;
  }
  .p-top-products__btn a:hover::after {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
}

.p-top-products__blob {
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-products__blob {
    display: none;
  }
}
.p-top-products__blob--top {
  top: -25%;
  left: -6.9444444444%;
  width: 25.4375rem;
}
.p-top-products__blob--bottom {
  bottom: -10%;
  left: -10.4166666667%;
  width: 28.3125rem;
}

.p-top-service {
  overflow: hidden;
  position: relative;
  padding: 8.25rem 0 6.25rem;
  margin-top: -1.25rem;
  background-color: #e8e3dd;
  border-radius: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding: 4.5rem 0;
    border-radius: 1.25rem;
  }
}
.p-top-service::before {
  content: "";
  display: block;
  width: 100%;
  height: 54.6875rem;
  background: url(../images/top/top-service-bg.webp) no-repeat top center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top-service::before {
    background: url(../images/top/top-service-bg-sp.jpg) no-repeat center/100% auto;
    height: 100%;
  }
}

.p-top-service__content {
  margin-top: 3.75rem;
  display: grid;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__content {
    margin-top: 3.125rem;
    padding-inline: 0.9375rem;
    gap: 1.875rem;
  }
}

.p-top-service__panel {
  border-radius: 1.25rem;
  overflow: hidden;
}

.p-top-service__panelHead {
  background-color: #e0d7ca;
  padding: 0.875rem 1.25rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-service__panelHead {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
}

.p-top-service__panelBody {
  background-color: #fff;
  padding: 0.9375rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__panelBody {
    padding: 1.25rem 1.125rem;
  }
}

.p-top-service__priceBody {
  display: grid;
  grid-template-columns: 17.5rem 37.5rem;
  align-items: center;
  padding: 1.25rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__priceBody {
    grid-template-columns: 1fr;
    padding: 1rem 1.125rem;
  }
}

.p-top-service__priceNote {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-right: 1px solid #e2ddd5;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-service__priceNote {
    font-size: 0.8125rem;
    border-right: 0;
    border-bottom: 1px solid #e2ddd5;
    padding-bottom: 0.625rem;
  }
}

.p-top-service__priceValue {
  padding: 0.9375rem 0;
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
}
.p-top-service__priceValue span {
  margin-right: 0.375rem;
  color: #e1aa64;
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top-service__priceValue {
    padding: 0;
    font-size: 1.125rem;
  }
  .p-top-service__priceValue span {
    font-size: 2.125rem;
  }
}

.p-top-service__flowBody {
  padding: 2.25rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__flowBody {
    padding: 3.125rem 1.5625rem;
  }
}

.p-top-service__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.p-top-service__step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  text-align: center;
}
.p-top-service__step:not(:first-child) .p-top-service__stepIcon {
  position: relative;
}
.p-top-service__step:not(:first-child) .p-top-service__stepIcon::before {
  content: "";
  display: block;
  width: 0.8125rem;
  height: 1.0625rem;
  background: url(../images/top/step-triangle.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__step {
    grid-template-columns: 6.25rem minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 1.25rem;
    min-height: 5.625rem;
    text-align: left;
  }
  .p-top-service__step:not(:first-child) {
    margin-top: 1.625rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-top-service__step:not(:first-child) {
    margin-top: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service__step:not(:first-child) .p-top-service__stepIcon::before {
    content: none;
  }
  .p-top-service__step:not(:first-child)::before {
    content: "";
    position: absolute;
    top: -1.9375rem;
    left: 2.8125rem;
    width: 0.8125rem;
    height: 1.0625rem;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    background: url(../images/top/step-triangle.svg) no-repeat center/contain;
  }
}

.p-top-service__stepIcon {
  display: grid;
  place-items: center;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-top-service__stepIcon {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.p-top-service__stepName {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top-service__stepName {
    font-size: 1.25rem;
    line-height: 1.5555555556;
  }
}

.p-top-agent {
  padding: 10.625rem 0 8.75rem;
  margin-top: -1.25rem;
  background: url(../images/top/top-agent-bg.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-top-agent {
    padding: 6.875rem 0 5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-agent__wrap {
    padding-inline: 0.625rem;
  }
}

.p-top-agent__body {
  position: relative;
  padding: 5rem 5rem 2.8125rem;
  border: 1px solid #e1aa64;
  background-color: #fff;
  border-radius: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-agent__body {
    padding: 3.125rem 1.25rem 2.5rem;
  }
}

.p-top-agent__title {
  background-color: #e1aa64;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 3.125rem;
  border-radius: 1.25rem;
  font-size: 2.625rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top-agent__title {
    width: 100%;
    max-width: 210px;
    padding: 0.625rem 1.25rem;
    font-size: 1.3125rem;
    border-radius: 0.625rem;
  }
}

.p-top-agent__copy {
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 2.0476190476;
  letter-spacing: 0.07em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-top-agent__copy {
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
  }
}

.p-top-specialties {
  position: relative;
  padding: 7rem 0 9.375rem;
  background: url(../images/top/top-products-bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-top-specialties {
    padding: 4.5rem 0 6.25rem;
    background: url(../images/top/top-products-bg-sp.jpg) repeat top center/540px 1568px;
  }
}
.p-top-specialties .p-heading__title span {
  margin-right: -1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-specialties .p-heading__title span {
    margin-right: -0.75rem;
  }
}

.p-top-specialties__list {
  margin-top: 4.375rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -webkit-column-gap: 1.75rem;
     -moz-column-gap: 1.75rem;
          column-gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-specialties__list {
    grid-template-columns: 1fr;
    row-gap: 1.75rem;
    padding-inline: 0.625rem;
  }
}

.p-top-specialties__card {
  background: url(../images/top/specialties-card-bg.webp) no-repeat top center/100% auto;
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  row-gap: 1rem;
  min-height: 100%;
  padding-block: 0.9375rem 1.25rem;
  border-radius: 0.875rem;
}
@supports (grid-template-rows: subgrid) {
  .p-top-specialties__card {
    grid-row: span 4;
    grid-template-rows: subgrid;
  }
}
@media screen and (max-width: 767px) {
  .p-top-specialties__card {
    row-gap: 0;
    grid-row: auto;
    grid-template-rows: auto;
  }
}

.p-top-specialties__label {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.1875rem;
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-specialties__label {
    font-size: 0.625rem;
  }
}
.p-top-specialties__label::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.125rem;
  margin-top: 0.5rem;
  background-color: #999;
}
.p-top-specialties__label span {
  display: block;
  font-size: 1.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-specialties__label span {
    font-size: 1.625rem;
  }
}

.p-top-specialties__title {
  color: #e1aa64;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.319047619;
  text-align: left;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-specialties__title {
    font-size: 1.25rem;
    margin-top: 0.625rem;
  }
}

.p-top-specialties__image {
  overflow: hidden;
  aspect-ratio: 300/196;
}
@media screen and (max-width: 767px) {
  .p-top-specialties__image {
    margin-top: 1.5rem;
  }
}
.p-top-specialties__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-specialties__copy {
  padding-inline: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8666666667;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-top-specialties__copy {
    margin-top: 1rem;
    padding-inline: 1.5rem;
  }
}
/*# sourceMappingURL=style.css.map */
