@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* buttonの完全リセット */
button {
  /* 外観のリセット */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 枠線・背景のリセット */
  border: none;
  background: none;
  background-color: transparent;
  /* 余白のリセット */
  padding: 0;
  margin: 0;
  /* フォントの継承 */
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  /* カーソル */
  cursor: pointer;
  /* アウトラインのリセット */
  outline: none;
  /* その他 */
  text-align: inherit;
  text-decoration: none;
  vertical-align: baseline;
  /* ボックスモデル */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* フォーカス時のアウトラインを完全に削除 */
button:focus {
  outline: none;
}

/* アクティブ時の影を削除（iOS Safari） */
button:active {
  opacity: 1;
}

/* タップハイライトを削除（モバイル） */
button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-light-white: #FFFEF9;
  --color-light-black: #3A3A3A;
  --color-dark-gray: #A5A5A5;
  --color-gray: #D9D9D9;
  --color-red: #B85C5C;
  --color-light-red: #D07166;
  --color-pink: #C96E63;
  --color-light-pink: #D88378;
  --color-light-orange: rgba(234, 145, 103, 0.30);
  --color-beige: #FFF8E7;
  --color-light-beige: #F6F2F0;
  --color-peach: rgba(244, 199, 175, 0.50);
  --color-light-pink: rgba(213, 152, 153, 0.30);
  --color-green: rgba(174, 205, 115, 0.30);
  --color-light-green: rgba(214, 229, 181, 0.50);
  --color-gradient-pink: linear-gradient(180deg, #FFFEF9 0%, #F6EDEE 22.18%);
  --color-gradient-beige: linear-gradient(179deg, #FFFFF9 0.95%, #FFF8E7 27.7%, #FFFBF0 94.59%, #FFFFF9 99.34%);
  --color-gradient-gray: linear-gradient(180deg, #FFFEF9 0%, #F7F1EE 23.37%, #F7F1EE 77.4%, #FFFEF9 100%);
  --color-gradient-red: linear-gradient(90deg, #FFF7F8 0%, #F5F5F5 50%, rgba(242, 229, 226, 0.80) 100%);
  --color-gradient-brown: linear-gradient(90deg, rgba(242, 229, 226, 0.80) 0%, rgba(242, 229, 226, 0.64) 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Shippori Mincho", sans-serif;
  color: var(--color-black);
  text-decoration: none;
  list-style: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

h2 {
  font-size: 32px;
}
@media screen and (max-width: 1023px) {
  h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 18px;
  }
}

h3 {
  font-size: 24px;
}
@media screen and (max-width: 1023px) {
  h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 16px;
  }
}

a {
  color: var(--color-font-base);
  text-decoration: none;
}

address {
  font-style: normal;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

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

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.p-main-wrapper {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
}

.txt-indent-kagi {
  margin-left: -0.5em;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-inline: clamp(1.563rem, 1.012rem + 2.347vw, 3.125rem);
  background: var(--color-light-white);
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 96px;
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .l-header__inner {
    height: 103px;
  }
}

.l-header__logo {
  z-index: 101;
}

.l-header__logo-img {
  width: 97px;
  height: 69px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1023px) {
  .l-header__logo-img {
    width: 79px;
    height: 56px;
  }
}

.l-header__nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-wrapper {
    position: fixed;
    top: 103px;
    right: 0;
    width: 100%;
    height: 100vh;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFEF9), color-stop(22.18%, #F6EDEE));
    background: linear-gradient(180deg, #FFFEF9 0%, #F6EDEE 22.18%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
    padding: 94px 50px 40px;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    overflow-y: auto;
  }
}

@media screen and (max-width: 1023px) {
  .l-header__nav-wrapper.is-open {
    visibility: visible;
  }
}

@media screen and (max-width: 1023px) {
  .l-header__nav {
    width: 100%;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }
}

.l-header__nav-item {
  color: var(--color-light-black);
  font-family: "Aboreto", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-item {
    font-size: 24px;
  }
}
@media (hover: hover) {
  .l-header__nav-item:hover {
    color: var(--color-pink);
  }
}

@media screen and (max-width: 1023px) {
  .l-header__nav-link {
    display: block;
    width: 100%;
    height: 100%;
  }
}

.l-header__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.l-header__sns img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1023px) {
  .l-header__sns {
    gap: 10px;
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    margin-top: 64px;
    margin-right: auto;
  }
}

.l-header__sns-link--tiktok {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__sns-link--tiktok {
    display: block;
  }
}
.l-header__sns-link--tiktok img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 27px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
    position: relative;
    z-index: 101;
  }
}

@media screen and (max-width: 1023px) {
  .l-header__hamburger.is-open .l-header__hamburger-line:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
            transform: translateY(9px) rotate(45deg);
  }
}

@media screen and (max-width: 1023px) {
  .l-header__hamburger.is-open .l-header__hamburger-line:nth-child(2) {
    opacity: 0;
  }
}

@media screen and (max-width: 1023px) {
  .l-header__hamburger.is-open .l-header__hamburger-line:nth-child(3) {
    -webkit-transform: translateY(-5px) rotate(-45deg);
            transform: translateY(-5px) rotate(-45deg);
  }
}

@media screen and (max-width: 1023px) {
  .l-header__hamburger-line {
    display: block;
    width: 27px;
    height: 1px;
    background: var(--color-light-black);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
}

.l-footer {
  width: 100%;
  height: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-gradient-pink-from, #FFFEF9)), color-stop(22.18%, var(--color-gradient-pink-to, #F6EDEE)));
  background: linear-gradient(180deg, var(--color-gradient-pink-from, #FFFEF9) 0%, var(--color-gradient-pink-to, #F6EDEE) 22.18%);
  padding-inline: clamp(1.875rem, -3.125rem + 10.417vw, 6.25rem);
  position: relative;
  z-index: 1;
}

.l-footer__inner {
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-block: 94px 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    position: relative;
    padding-bottom: 80px;
    gap: 44px;
    display: grid;
    grid-template-columns: 85px auto;
  }
}

.l-footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.938rem, 0.717rem + 0.939vw, 1.563rem);
}

.l-footer__nav-link {
  color: var(--color-light-black);
  font-family: "Aboreto", serif;
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (hover: hover) {
  .l-footer__nav-link:hover {
    color: var(--color-pink);
  }
}

.l-footer__sns-wrapper {
  grid-area: bottom;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 37px;
}

.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 37px;
}

.l-footer__sns-link {
  display: block;
}
.l-footer__sns-link img {
  width: clamp(1.875rem, 1.743rem + 0.563vw, 2.25rem);
  height: clamp(1.875rem, 1.743rem + 0.563vw, 2.25rem);
  aspect-ratio: 1/1;
}

.l-footer__privacy {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.813rem, 0.746rem + 0.282vw, 1rem);
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l-footer__privacy {
    position: absolute;
    bottom: 40px;
    left: -2px;
  }
}

.l-footer__logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(3.125rem, -2.377rem + 23.474vw, 18.75rem);
}
@media screen and (max-width: 768px) {
  .l-footer__logo-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 44px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

.l-footer__logo {
  grid-area: logo;
  align-self: center;
  justify-self: flex-start;
}

.l-footer__logo-img {
  width: clamp(9.188rem, 7.405rem + 7.606vw, 14.25rem);
  height: clamp(6.438rem, 4.259rem + 9.296vw, 12.625rem);
}

.l-footer__contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.l-footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.l-footer__contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(10.875rem, 9.709rem + 4.977vw, 14.188rem);
  height: clamp(2.188rem, 1.857rem + 1.408vw, 3.125rem);
  padding: 10px 20px;
  border: 1px solid var(--color-light-black);
  border-radius: 100vmax;
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.l-footer__contact-btn:hover {
  background: var(--color-white);
}

.l-footer__contact-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.l-footer__contact-tel-text {
  color: #000;
  font-family: "Aboreto", serif;
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 400;
  line-height: 2.1;
}

.l-footer__contact-tel-number {
  color: var(--color-light-black);
  font-family: "Aboreto", serif;
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-weight: 400;
  line-height: normal;
}

.l-footer__copyright {
  margin-top: 37px;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    position: absolute;
    bottom: 20px;
    left: -2px;
    margin-top: 0;
  }
}

.l-footer__copyright small {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.813rem, 0.746rem + 0.282vw, 1rem);
  font-weight: 400;
  line-height: normal;
}

.c-spacer {
  display: block;
  width: 100%;
  height: 48px;
}
.c-spacer--size-8 {
  height: 8px;
}
.c-spacer--size-16 {
  height: 16px;
}
.c-spacer--size-24 {
  height: 24px;
}
.c-spacer--size-32 {
  height: 32px;
}
.c-spacer--size-48 {
  height: 48px;
}
.c-spacer--size-64 {
  height: 64px;
}
.c-spacer--size-80 {
  height: 80px;
}
.c-spacer--size-96 {
  height: 96px;
}
.c-spacer--size-128 {
  height: 128px;
}
.c-spacer--size-100-50 {
  height: 100px;
}
@media screen and (max-width: 768px) {
  .c-spacer--size-24 {
    height: 20px;
  }
  .c-spacer--size-32 {
    height: 30px;
  }
  .c-spacer--size-48 {
    height: 45px;
  }
  .c-spacer--size-64 {
    height: 60px;
  }
  .c-spacer--size-80 {
    height: 70px;
  }
  .c-spacer--size-96 {
    height: 80px;
  }
  .c-spacer--size-128 {
    height: 100px;
  }
}

.c-section-title {
  font-family: "Aboreto", serif;
  font-size: clamp(1.875rem, 1.831rem + 0.188vw, 2rem);
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-black);
  margin-bottom: clamp(1.875rem, 0.995rem + 3.756vw, 4.375rem);
}

.c-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.75rem, 0.53rem + 0.939vw, 1.25rem);
  margin-bottom: clamp(1.25rem, 0.92rem + 1.408vw, 2.188rem);
}
@media screen and (max-width: 640px) {
  .c-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
  }
}

.c-title__en {
  font-family: "Aboreto", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-black);
}

.c-title__ja {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-black);
}
@media screen and (max-width: 640px) {
  .c-title__ja {
    font-weight: 500;
  }
}

.c-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-menu-item__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.c-menu-item__name {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-light-black);
  margin-top: clamp(0.313rem, 0.202rem + 0.469vw, 0.625rem);
}
@media screen and (max-width: 640px) {
  .c-menu-item__name {
    font-weight: 400;
  }
}

.p-main-menu__menu-note--regular {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: var(--color-light-black);
}

.p-main-menu__menu-note--regular-note {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.c-menu-item__desc {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-light-black);
  margin-top: 5px;
}

.c-menu-item__price {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: var(--color-light-black);
}
@media screen and (max-width: 640px) {
  .c-menu-item__price {
    font-weight: 400;
  }
}

.c-menu-item__price-unit {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: var(--color-light-black);
}

/*p-page-fv*/
.p-page-fv {
  width: 100%;
  height: 378px;
  background: -webkit-gradient(linear, left top, right top, from(var(--color-gradient-red-80, rgba(242, 229, 226, 0.8))), to(var(--color-gradient-red-64, rgba(242, 229, 226, 0.64))));
  background: linear-gradient(90deg, var(--color-gradient-red-80, rgba(242, 229, 226, 0.8)) 0%, var(--color-gradient-red-64, rgba(242, 229, 226, 0.64)) 100%);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
  padding-block: clamp(1.188rem, 0.505rem + 2.911vw, 3.125rem);
}
@media screen and (max-width: 640px) {
  .p-page-fv {
    height: 228px;
  }
}

.p-page-fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
}

.p-page-fv__title {
  color: var(--color-light-black);
  font-family: "Aboreto", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
}

/*button*/
.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: clamp(2.313rem, 2.026rem + 1.221vw, 3.125rem);
  padding: clamp(0.563rem, 0.342rem + 0.939vw, 1.188rem) clamp(0.875rem, 0.523rem + 1.502vw, 1.875rem);
  border: 1px solid transparent;
  border-radius: 100vmax;
  background: var(--color-light-red);
  color: var(--color-white);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.938rem, 0.871rem + 0.282vw, 1.125rem);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.05rem;
  text-decoration: none;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (hover: hover) {
  .c-button:hover {
    border-color: var(--color-light-red);
    background: var(--color-white);
    color: var(--color-light-red);
  }
}
@media screen and (max-width: 640px) {
  .c-button {
    font-weight: 600;
    line-height: 1;
  }
}

.c-button--small {
  width: 177px;
}
@media screen and (max-width: 640px) {
  .c-button--small {
    width: 140px;
  }
}

.c-button--send-button {
  width: 170px;
  height: 50px;
  padding: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01rem;
  display: block;
}
@media screen and (max-width: 640px) {
  .c-button--send-button {
    width: 160px;
    height: 37px;
    font-weight: 600;
  }
}

.c-button-wrapper input[type=submit] {
  line-height: 1;
  cursor: pointer;
}

.p-top-about::after,
.p-farmers__body::after,
.p-message__inner::after,
.p-top-contact::after,
.p-access__hours::after {
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}
.p-top-about.is-flower-visible::after,
.p-farmers__body.is-flower-visible::after,
.p-message__inner.is-flower-visible::after,
.p-top-contact.is-flower-visible::after,
.p-access__hours.is-flower-visible::after {
  opacity: 1;
}

.p-fv {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 28.75% 1fr;
  padding-top: 96px;
  background: var(--color-light-white);
}
@media screen and (max-width: 1023px) {
  .p-fv {
    padding-top: 103px;
  }
}
@media screen and (max-width: 768px) {
  .p-fv {
    grid-template-columns: 80px 1fr;
  }
}

.p-fv__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 10;
}

.p-fv__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-fv__catch {
    display: block;
  }
}

.p-fv__catch-1,
.p-fv__catch-2 {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1.25rem, 1.05rem + 0.845vw, 1.75rem);
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-black);
  letter-spacing: 0.35em;
}
@media screen and (max-width: 768px) {
  .p-fv__catch-1,
  .p-fv__catch-2 {
    display: inline;
  }
}

.p-fv__catch-2 {
  padding-top: 42px;
}
@media screen and (max-width: 768px) {
  .p-fv__catch-2 {
    padding-top: 0;
  }
}

.p-fv__swiper {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-fv__swiper {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}

.p-fv__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.p-fv__scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  position: absolute;
  left: 15%;
  bottom: clamp(1.875rem, 1.215rem + 2.817vw, 3.75rem);
}
@media screen and (max-width: 768px) {
  .p-fv__scroll {
    display: none;
  }
}

.p-fv__scroll-text {
  font-family: "Aboreto", serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-light-black);
  line-height: normal;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.p-fv__scroll-line {
  display: block;
  width: 1px;
  height: 200px;
  background: var(--color-light-black);
  position: relative;
  overflow: hidden;
}
.p-fv__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gray);
  -webkit-animation: scrollLine 2s ease-in-out infinite;
          animation: scrollLine 2s ease-in-out infinite;
}

@-webkit-keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
.p-fv__dots {
  position: absolute;
  bottom: 2%;
  left: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.625rem, 0.405rem + 0.939vw, 1.25rem);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-fv__dots {
    bottom: 12%;
    left: 15%;
  }
}

.p-fv__dot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #FFF;
  -webkit-transition: background 0.3s ease, border-color 0.3s ease;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.p-fv__dot.is-active {
  background: rgba(255, 255, 255, 0.95);
  border-color: transparent;
}
@media screen and (max-width: 768px) {
  .p-fv__dot {
    display: none;
  }
}

.p-fv__news {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  z-index: 10;
  padding-inline: 16px;
  padding-block: clamp(0.625rem, 0.339rem + 1.221vw, 1.438rem);
  gap: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  cursor: pointer;
  min-width: 300px;
  max-width: 450px;
}
@media (hover: hover) {
  .p-fv__news:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .p-fv__news {
    left: 0;
    right: 0;
    min-width: unset;
    max-width: 100%;
    width: 100%;
    padding-inline: 24px;
    border: none;
  }
}

.p-fv__news-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Aboreto", serif;
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-weight: 400;
  color: var(--color-light-black);
}

.p-fv__news-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0.313rem, 0.246rem + 0.282vw, 0.5rem);
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .p-fv__news-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-fv__news-date {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.813rem, 0.79rem + 0.094vw, 0.875rem);
  font-weight: 400;
  color: rgba(58, 58, 58, 0.8);
  line-height: normal;
}

.p-fv__news-title {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.813rem, 0.746rem + 0.282vw, 1rem);
  font-weight: 400;
  color: var(--color-light-black);
  line-height: normal;
  text-decoration: none;
  white-space: normal;
  overflow: hidden;
}
.p-fv__news-title:hover {
  opacity: 0.7;
}

.l-main-content {
  position: relative;
  z-index: 1;
  background: var(--color-light-white);
  border-radius: 1.25rem 1.25rem 0 0;
}

.p-top-about {
  padding-block: 80px clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
  background: var(--color-light-white);
  position: relative;
  overflow: hidden;
}
.p-top-about::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(8.563rem, 3.369rem + 22.16vw, 23.313rem);
  height: clamp(4.563rem, 1.812rem + 11.737vw, 12.375rem);
  background-image: url("../img/flower-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.p-top-about__inner {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}

.p-top-about__title {
  margin-bottom: clamp(1.875rem, 0.335rem + 6.573vw, 6.25rem);
}

.p-top-about__lead {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.p-top-about__text {
  color: var(--color-light-black);
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1rem, 0.956rem + 0.188vw, 1.125rem);
  font-weight: 400;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .p-top-about__text {
    line-height: 1.6;
    text-align: left;
  }
}

.p-top-about__subtitle {
  color: var(--color-light-black);
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1.125rem, 1.081rem + 0.188vw, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin-block: clamp(1.875rem, 0.995rem + 3.756vw, 4.375rem) clamp(1.25rem, 1.14rem + 0.469vw, 1.563rem);
}

.p-top-about__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.938rem, 0.827rem + 0.469vw, 1.25rem);
}
@media screen and (max-width: 768px) {
  .p-top-about__cards {
    grid-template-columns: 1fr;
  }
}

.p-top-about__card {
  overflow: hidden;
}

.p-top-about__card-link {
  display: block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.p-top-about__card-image-wrap {
  position: relative;
  aspect-ratio: 359/190;
  overflow: hidden;
}

.p-top-about__card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.p-top-about__card-link:hover .p-top-about__card-image {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.p-top-about__card-body {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}

.p-top-about__card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-top-about__card-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 5px;
  }
}

.p-top-about__card-num {
  color: var(--color-white);
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1.25rem, 0.986rem + 1.127vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
}

.p-top-about__card-name {
  color: var(--color-white);
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1rem, 0.824rem + 0.751vw, 1.5rem);
  font-weight: 500;
  line-height: 2;
}

.p-top-about__card-more {
  color: var(--color-white);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.938rem, 0.915rem + 0.094vw, 1rem);
  font-weight: 400;
  line-height: 1.25;
  border-bottom: 0.5px solid var(--color-white);
  padding-bottom: 5px;
  margin-top: 18px;
}
@media screen and (max-width: 640px) {
  .p-top-about__card-more {
    line-height: 1;
  }
}

.p-top-menu {
  padding-block: 80px clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
  background: var(--color-light-white);
}

.p-top-menu__inner {
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
}

.p-top-menu__layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}
@media screen and (max-width: 768px) {
  .p-top-menu__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
  }
}

.p-top-menu__side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.25rem, 0.75rem + 2.13vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .p-top-menu__side {
    display: none;
  }
}

.p-top-menu__sp-imgs {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-top-menu__sp-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
    margin-block: 43px 61px;
    width: 100%;
  }
}

.p-top-menu__sp-img-wrap {
  overflow: hidden;
  aspect-ratio: 115/77;
}

.p-top-menu__sp-img-wrap--right {
  margin-top: 29px;
}

.p-top-menu__sp-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-menu__side--left,
.p-top-menu__side--right {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 75px;
}

.p-top-menu__side--left {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p-top-menu__img-wrap {
  width: 86%;
  aspect-ratio: 320/213;
  overflow: hidden;
}

.p-top-menu__img-small {
  width: 74%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.p-top-menu__left-bottom {
  margin-bottom: 75px;
  width: 64%;
  aspect-ratio: 3/2;
}

.p-top-menu__right-bottom {
  margin-bottom: 20px;
}

.p-top-menu__right-bottom {
  margin-top: auto;
}

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

.p-top-menu__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-top-menu__catch {
  color: var(--color-light-black);
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1.125rem, 1.6666666667vw, 1.5rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.15em;
  margin-bottom: clamp(1rem, 0.604rem + 1.69vw, 2.125rem);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-top-menu__catch {
    line-height: 1.5;
  }
}

.p-top-menu__arch-wrap {
  width: 90%;
  aspect-ratio: 308/409;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
}

.p-top-menu__arch-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-menu__desc {
  color: var(--color-light-black);
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.9375rem, 1.3888888889vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: clamp(1rem, 0.604rem + 1.69vw, 2.125rem);
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .p-top-menu__desc {
    line-height: normal;
  }
}

.p-top-menu__note {
  color: var(--color-light-black);
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.75rem, 1.1111111111vw, 1rem);
  font-weight: 500;
  line-height: 1.9;
  margin-top: clamp(0.75rem, 0.266rem + 2.066vw, 2.125rem);
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .p-top-menu__note {
    line-height: normal;
  }
}

.p-top-menu__btn {
  margin-top: 20px;
}

.mod-anim.is-fade {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.mod-anim.is-fade.js-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.mod-anim.is-fade[data-delay="0"] {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.mod-anim.is-fade[data-delay="1"] {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.mod-anim.is-fade[data-delay="2"] {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.mod-anim.is-fade[data-delay="3"] {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.p-top-instagram {
  padding-block: 10px;
  padding-inline: clamp(0.781rem, -0.044rem + 3.521vw, 3.125rem);
}
@media screen and (max-width: 768px) {
  .p-top-instagram {
    padding-bottom: 40px;
  }
}

.p-top-instagram__inner {
  padding-block: clamp(2.5rem, 1.4rem + 4.695vw, 5.625rem);
  padding-inline: clamp(1rem, 0.252rem + 3.192vw, 3.125rem);
  margin-inline: auto;
  background: rgba(255, 248, 231, 0.6);
  border-radius: clamp(2.5rem, 1.62rem + 3.756vw, 5rem) 0;
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
}

.p-top-instagram__title {
  margin-bottom: 10px;
}

.p-top-instagram__account-icon {
  width: 20px;
  height: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.p-top-instagram__account-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-top-instagram__account-text {
  color: var(--color-light-black);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(0.813rem, 0.746rem + 0.282vw, 1rem);
  font-weight: 500;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

.p-top-instagram__feed {
  margin-top: 2.5rem;
  margin-inline: auto;
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-instagram__feed {
    margin-top: 1.5rem;
  }
}

.p-top-access {
  padding-block: clamp(5rem, 4.12rem + 3.756vw, 7.5rem) clamp(3.125rem, 2.465rem + 2.817vw, 5rem);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFEF9), color-stop(24.04%, #F7F1EE), color-stop(90.38%, #F7F1EE), to(#FFFEF9));
  background: linear-gradient(180deg, #FFFEF9 0%, #F7F1EE 24.04%, #F7F1EE 90.38%, #FFFEF9 100%);
}

.p-top-access__inner {
  max-width: 1180px;
  width: 100%;
  margin-inline: auto;
}

.p-top-access__title {
  margin-bottom: clamp(1.875rem, 0.995rem + 3.756vw, 4.375rem);
}

.p-top-access__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.25rem, -1.321rem + 5.357vw, 3.5rem);
}
@media screen and (max-width: 768px) {
  .p-top-access__body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-access__details-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.p-top-access .p-top-access__details-row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-top-access .p-top-access__details-row:not(:first-child) {
  padding-top: clamp(0.938rem, 0.849rem + 0.376vw, 1.188rem);
}

.p-top-access__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: clamp(3.125rem, 2.905rem + 0.939vw, 3.75rem);
}
@media screen and (max-width: 768px) {
  .p-top-access__btn-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-top-news {
  padding-block: clamp(5rem, 4.12rem + 3.756vw, 7.5rem) clamp(2.5rem, 0.739rem + 7.512vw, 7.5rem);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
  background: var(--color-light-white);
}

.p-top-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.25rem, -0.423rem + 7.136vw, 6rem);
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-top-news__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-top-news__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 0;
}

.p-top-news__list {
  max-width: 670px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-news__list {
    gap: 16px;
  }
}

.p-news__item-link.p-top-news__item-link {
  border-bottom: 0.5px solid rgba(58, 58, 58, 0.5);
  padding-block: 0 10px;
}

.p-top-contact {
  padding: 5rem clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
  background: var(--color-light-white);
  position: relative;
}
.p-top-contact::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(8.563rem, 3.369rem + 22.16vw, 23.313rem);
  height: clamp(4.563rem, 1.812rem + 11.737vw, 12.375rem);
  background-image: url("../img/flower-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.p-top-contact__title {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-contact__title {
    margin-bottom: 30px;
  }
}

.p-top-contact__inner {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}

.p-top-contact__lead {
  margin-top: 1rem;
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}

.p-top-contact__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(2.5rem, 1.84rem + 2.817vw, 4.375rem);
  border: 0.8px solid rgba(58, 58, 58, 0.8);
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
  background: var(--color-white);
}
.p-top-contact__box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.5px;
  height: 140px;
  background: rgba(58, 58, 58, 0.8);
}
@media screen and (max-width: 768px) {
  .p-top-contact__box::after {
    width: 80%;
    height: 0.5px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .p-top-contact__box {
    grid-template-columns: 1fr;
  }
}

.p-top-contact__tel-block {
  width: 100%;
  min-width: 0;
  padding-block: 2.5rem;
  padding-inline: clamp(1.25rem, 0.81rem + 1.878vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .p-top-contact__tel-block {
    padding-block: 30px 15px;
    margin-inline: auto;
  }
}

.p-top-contact__tel-label {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1.125rem, 0.993rem + 0.563vw, 1.5rem);
  font-weight: 500;
}

.p-top-contact__tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5rem;
  margin-top: 7px;
  text-decoration: none;
  color: var(--color-light-black);
}

.p-top-contact__tel-prefix {
  font-family: "Aboreto", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.1;
}

.p-top-contact__tel-number {
  font-family: "Aboreto", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.p-top-contact__tel-hours {
  margin-top: 7px;
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.p-top-contact__tel-note {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.p-top-contact__form-block {
  width: 100%;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: relative;
  padding-block: 2.5rem;
  padding-inline: clamp(1.25rem, 0.81rem + 1.878vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .p-top-contact__form-block {
    padding-block: 20px 30px;
    padding-inline: 20px;
    margin-inline: auto;
  }
}

.p-top-contact__form-label {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1.125rem, 0.993rem + 0.563vw, 1.5rem);
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.p-top-contact__form-text {
  margin-top: 10px;
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.p-top-contact__form-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border: 1px solid var(--color-light-black);
  border-radius: 50%;
  font-size: 16px;
  color: var(--color-light-black);
  position: absolute;
  right: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(8px);
          transform: translateY(-50%) translateX(8px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-top-contact__form-arrow {
    right: 20%;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    -webkit-transition: none;
    transition: none;
  }
}

@media screen and (min-width: 769px) {
  .p-top-contact__form-block:hover {
    background: -webkit-gradient(linear, left top, right top, from(#FFFEF9), color-stop(24.04%, #F7F1EE), color-stop(90.38%, #F7F1EE), to(#FFFEF9));
    background: linear-gradient(90deg, #FFFEF9 0%, #F7F1EE 24.04%, #F7F1EE 90.38%, #FFFEF9 100%);
  }
  .p-top-contact__form-block:hover .p-top-contact__form-arrow {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
  }
}
.p-menu-info {
  padding-block: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
  padding-inline: clamp(1.25rem, -2.205rem + 14.742vw, 11.063rem);
  background-color: var(--color-light-white);
}

.p-menu-info__inner {
  max-width: 960px;
  width: 100%;
  margin-inline: auto;
}

.p-menu-info__banner {
  background: #F5F1EF;
  border: 1px solid #fff;
  outline: 1px solid #fff;
  outline-offset: -10px;
  padding: clamp(1rem, 0.516rem + 2.066vw, 2.375rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.25rem, -0.036rem + 2.679vw, 2.375rem);
}
@media screen and (max-width: 1023px) {
  .p-menu-info__banner {
    grid-template-columns: 1fr;
  }
}

.p-menu-info__banner-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .p-menu-info__banner-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-menu-info__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.p-menu-info__icon {
  width: clamp(3rem, 2.12rem + 3.756vw, 5.5rem);
  height: auto;
}

.p-menu-info__icon-plus {
  font-size: clamp(1.25rem, 0.81rem + 1.878vw, 2.5rem);
  font-family: "Shippori Mincho", sans-serif;
  font-weight: 400;
  color: var(--color-light-black);
  line-height: 1;
}

.p-menu-info__banner-caption {
  text-align: left;
  font-family: "Shippori Mincho", sans-serif;
  color: var(--color-light-black);
}
@media screen and (max-width: 1023px) {
  .p-menu-info__banner-caption {
    text-align: center;
  }
}

.p-menu-info__caption-text {
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-weight: 600;
  line-height: 1.7;
  display: block;
}

.p-menu-info__caption-highlight {
  font-size: clamp(1.25rem, 1.162rem + 0.376vw, 1.5rem);
  font-weight: 600;
  line-height: 1.7;
}

.p-menu-info__banner-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .p-menu-info__banner-right {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-inline: auto;
  }
}

.p-menu-info__order-text {
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-family: "Shippori Mincho", sans-serif;
  color: var(--color-light-black);
  font-weight: 400;
  line-height: 1.7;
  white-space: nowrap;
}

.p-menu-info__order-text--large {
  font-size: clamp(1.25rem, 0.986rem + 1.127vw, 2rem);
}

.p-menu-info__order-note {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.938rem, 0.915rem + 0.094vw, 1rem);
  font-weight: 400;
  line-height: 2.1;
  color: var(--color-light-black);
}

.p-how-to-order {
  padding-block: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
  padding-inline: clamp(1.25rem, -0.511rem + 7.512vw, 6.25rem);
  background-color: var(--color-light-white);
}

.p-how-to-order__inner {
  max-width: 1160px;
  width: 100%;
  margin-inline: auto;
}

.p-how-to-order__heading {
  font-family: "Aboreto", serif;
  font-size: clamp(1.5rem, 1.06rem + 1.878vw, 2.5rem);
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-black);
  margin-bottom: clamp(2rem, 1.12rem + 3.756vw, 4.5rem);
}

.p-how-to-order__steps {
  max-width: 1160px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .p-how-to-order__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}

.p-how-to-order__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.p-how-to-order__step-label {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: normal;
}

.p-how-to-order__step-text {
  font-family: "Aboreto", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.p-how-to-order__step-number {
  font-family: "Aboreto", serif;
  font-size: clamp(1.5rem, 1.06rem + 1.878vw, 2rem);
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-red);
}

.p-how-to-order__step-img {
  width: clamp(5.313rem, 3.112rem + 9.39vw, 11.563rem);
  height: clamp(5.313rem, 3.112rem + 9.39vw, 11.563rem);
  aspect-ratio: 1/1;
}

.p-how-to-order__step-caption {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.875rem, 0.787rem + 0.376vw, 1.25rem);
  font-weight: 500;
  line-height: normal;
  color: var(--color-light-black);
  text-align: center;
}

.p-main-menu {
  padding-block: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
  padding-inline: clamp(1.25rem, -0.511rem + 7.512vw, 6.25rem);
  background-color: var(--color-light-white);
}

.p-main-menu__inner {
  max-width: 1160px;
  width: 100%;
  margin-inline: auto;
}

.p-main-menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: clamp(0.313rem, -1.338rem + 7.042vw, 5rem);
     -moz-column-gap: clamp(0.313rem, -1.338rem + 7.042vw, 5rem);
          column-gap: clamp(0.313rem, -1.338rem + 7.042vw, 5rem);
  row-gap: clamp(0.75rem, -0.306rem + 4.507vw, 3.75rem);
  list-style: none;
  margin-bottom: clamp(2.188rem, 1.637rem + 2.347vw, 3.75rem);
}
@media screen and (max-width: 768px) {
  .p-main-menu__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .p-main-menu__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-main-menu__menu-note {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-main-menu__menu-note {
    display: block;
  }
}

.p-drink-menu {
  padding-block: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
  background-color: var(--color-light-white);
}

.p-drink-menu__title {
  padding-inline: clamp(1.25rem, -0.511rem + 7.512vw, 6.25rem);
}

.p-drink-menu__banner {
  background: var(--color-gradient-red);
  padding-block: clamp(1.875rem, 0.995rem + 3.756vw, 4.375rem);
  padding-inline: clamp(1.25rem, -0.511rem + 7.512vw, 6.25rem);
  margin-bottom: clamp(2.5rem, 1.87rem + 2.691vw, 4.5rem);
}
@media screen and (max-width: 1023px) {
  .p-drink-menu__banner {
    padding-block: clamp(2.5rem, 1.87rem + 2.691vw, 4.375rem);
    margin-bottom: clamp(2.5rem, 1.87rem + 2.691vw, 4.5rem);
  }
}

.p-drink-menu__banner-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.25rem, -0.29rem + 6.573vw, 5.625rem);
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-drink-menu__banner-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    flex-direction: column;
    gap: clamp(1.25rem, 1.03rem + 0.939vw, 1.875rem);
  }
}

.p-drink-menu__banner-name {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1.375rem, 1.057rem + 1.356vw, 1.875rem);
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-black);
}
@media screen and (max-width: 1023px) {
  .p-drink-menu__banner-name {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-drink-menu__banner-name {
    text-align: left;
  }
}

.p-drink-menu__banner-desc {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  color: var(--color-light-black);
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-drink-menu__banner-desc {
    width: 100%;
    font-size: 14px;
  }
}

.p-drink-menu__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2rem, 1.56rem + 1.878vw, 3.25rem);
  padding-inline: clamp(1.25rem, -0.511rem + 7.512vw, 6.25rem);
  max-width: 900px;
  margin-inline: auto;
}

.c-drink-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.c-drink-category__label {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.938rem, 0.915rem + 0.094vw, 1rem);
  font-weight: 600;
  line-height: normal;
  color: var(--color-light-black);
  margin-bottom: clamp(0.938rem, 0.827rem + 0.469vw, 1.25rem);
}

.c-drink-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  max-width: 600px;
  width: 100%;
  margin-inline: auto;
}

.c-drink-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: 0.5px solid rgba(58, 58, 58, 0.5);
}
@media screen and (max-width: 640px) {
  .c-drink-list__item {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 50px;
  }
}

.c-drink-list__name {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.938rem, 0.915rem + 0.094vw, 1rem);
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-black);
}

.c-drink-list__price {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.938rem, 0.915rem + 0.094vw, 1rem);
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-black);
  white-space: nowrap;
}

.p-drink-menu__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(1.875rem, 0.995rem + 3.756vw, 4.375rem);
}

.p-drink-menu__img-wrap {
  width: clamp(12.75rem, 11.87rem + 3.756vw, 15.25rem);
  overflow: hidden;
}

.p-drink-menu__img-wrap--02 {
  display: block;
}
@media screen and (max-width: 640px) {
  .p-drink-menu__img-wrap--02 {
    display: none;
  }
}

.p-drink-menu__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.p-news {
  background: var(--color-light-white);
}

.p-news__wrapper {
  width: min(960px, 100%);
  padding-inline: clamp(1.563rem, 0.352rem + 5.164vw, 5rem);
  padding-block: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
  margin-inline: auto;
}

.p-news__title {
  color: var(--color-light-black);
  font-family: "Aboreto", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: clamp(0.625rem, 0.515rem + 0.469vw, 0.938rem);
}

.p-news__pickup-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.938rem, 0.167rem + 3.286vw, 3.125rem);
  margin-bottom: clamp(1.875rem, 0.423rem + 6.197vw, 6rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 640px) {
  .p-news__pickup-link {
    grid-template-columns: 1fr;
  }
}

.p-news__pickup-image {
  width: 100%;
  aspect-ratio: 414/238;
  overflow: hidden;
}
.p-news__pickup-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.p-news__pickup-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-news__pickup-new {
  color: rgba(58, 58, 58, 0.8);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 2;
}

.p-news__pickup-date {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.938rem, 0.915rem + 0.094vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 2;
}

.p-news__pickup-heading {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.938rem, 0.915rem + 0.094vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 10px;
}

.p-news__pickup-text {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.938rem, 0.915rem + 0.094vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.p-news__list {
  list-style: none;
}

.p-news__item-link {
  display: grid;
  grid-template-columns: clamp(6.25rem, 5.15rem + 4.695vw, 9.375rem) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.875rem, 1.215rem + 2.817vw, 3.75rem);
  padding-block: 8px;
  border-bottom: 0.5px solid rgba(58, 58, 58, 0.5);
}

.p-news__item-date-wrap {
  position: relative;
  padding-left: 26px;
}

.p-news__pin-icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-news__item-date {
  color: rgba(58, 58, 58, 0.8);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
}

.p-news__item-title {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
}

.p-news__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-top: clamp(1.875rem, 0.423rem + 6.197vw, 6rem);
}

.p-news__page-item {
  color: var(--color-gray);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
  text-decoration: none;
  cursor: pointer;
}

.p-news__page-item--current {
  color: var(--color-light-black);
}

.p-news-detail__inner {
  width: min(1120px, 100%);
  padding-inline: clamp(1.563rem, 0.352rem + 5.164vw, 5rem);
  padding-block: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
  background-color: var(--color-light-white);
  margin-inline: auto;
}

.p-news-detail__header {
  margin-bottom: 50px;
}

.p-news-detail__date {
  color: rgba(58, 58, 58, 0.8);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 500;
  line-height: 2;
  margin-bottom: 10px;
}

.p-news-detail__title {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1.25rem, 1.162rem + 0.376vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
}

.p-news-detail__text {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
}

.p-news-detail__image {
  width: clamp(20.313rem, 12.148rem + 34.836vw, 43.5rem);
  height: clamp(13.5rem, 8.835rem + 19.906vw, 26.75rem);
  margin-inline: auto;
  margin-block: clamp(2.063rem, 0.588rem + 6.291vw, 6.25rem);
}

.p-news-detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-news-detail__button {
  text-align: center;
}

.p-contact {
  padding-inline: clamp(1.875rem, -3.125rem + 10.417vw, 6.25rem);
  padding-block: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
  background-color: var(--color-light-white);
}

.p-contact__inner {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}

.p-contact__heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 9px;
}

.p-contact__lead {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
}

.p-contact__required-note {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: clamp(1.25rem, 0.81rem + 1.878vw, 2.5rem);
}

.p-contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.938rem, 0.827rem + 0.469vw, 1.25rem);
}

.p-contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p-contact__field p {
  margin: 0;
}
.p-contact__field br {
  display: none;
}
@media screen and (max-width: 640px) {
  .p-contact__field {
    gap: 0;
  }
}

.p-contact__label {
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-weight: 400;
  line-height: 2.1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.p-contact__input,
.p-contact__textarea {
  width: 100%;
  border: 1px solid var(--color-light-black);
  background-color: transparent;
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  color: var(--color-light-black);
  outline: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.p-contact__input:focus,
.p-contact__textarea:focus {
  border-color: var(--color-red);
}

.p-contact__input {
  height: clamp(1.75rem, 1.486rem + 1.127vw, 2.5rem);
  padding-inline: 16px;
}

.p-contact__textarea {
  height: 167px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.7;
}

.p-contact__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-top: 0.5rem;
}
.p-contact__privacy p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  margin: 0;
}
.p-contact__privacy p br {
  display: none;
}
.p-contact__privacy .wpcf7-form-control-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.p-contact__privacy .wpcf7-not-valid-tip {
  width: 100%;
  text-align: center;
  margin-top: 4px;
}

.p-contact__checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--color-light-black);
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}
.p-contact__checkbox:checked {
  background-color: var(--color-red);
  border-color: var(--color-red);
}
.p-contact__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -56%) rotate(45deg);
          transform: translate(-50%, -56%) rotate(45deg);
  width: 0.3125rem;
  height: 0.625rem;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
}

.p-contact__privacy-label {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.1;
  cursor: pointer;
}

.p-contact__button-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(1rem, 0.252rem + 3.192vw, 3.125rem);
}

.c-required {
  color: var(--color-red);
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

abbr.wpcf7-required {
  display: none;
}

.wpcf7-not-valid {
  border-color: var(--color-red);
  background-color: var(--color-light-pink);
}

.wpcf7-not-valid-tip {
  color: var(--color-red);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 6px;
  display: block;
}

.wpcf7-response-output {
  font-family: "Aboreto", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  text-align: left;
  margin: 0 !important;
  padding: 15px 10px !important;
  border: none !important;
  background: var(--color-light-pink);
}

.wpcf7-mail-sent-ok {
  border: 1px solid var(--color-red);
  color: var(--color-red);
  background: transparent;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  padding: 15px 10px !important;
  border: none !important;
  background: var(--color-light-pink);
  color: var(--color-light-black);
  font-family: "Aboreto", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}
.wpcf7 form.invalid .wpcf7-response-output::before,
.wpcf7 form.unaccepted .wpcf7-response-output::before {
  content: "※";
  color: #B85C5C;
  font-family: "Aboreto", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.p-contact-thanks {
  padding-block: clamp(5rem, 3.239rem + 7.512vw, 10rem);
  padding-inline: clamp(1.563rem, 0.352rem + 5.164vw, 5rem);
  background-color: var(--color-light-white);
}

.p-contact-thanks__inner {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}

.p-contact-thanks__box {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-contact-thanks__box {
    text-align: left;
  }
}

.p-contact-thanks__heading {
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: clamp(1.25rem, 0.81rem + 1.878vw, 2.5rem);
}

.p-contact-thanks__text {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-contact-thanks__text {
    text-align: left;
  }
}

.p-access {
  background-color: var(--color-light-white);
}

.p-access__info {
  width: min(1360px, 100%);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
  margin-inline: auto;
}

.p-access__info-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 0.286rem + 3.571vw, 3.5rem);
  padding-block: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
}
@media screen and (max-width: 768px) {
  .p-access__info-inner {
    grid-template-columns: 1fr;
  }
}

.p-access__map {
  max-width: 478px;
  width: 100%;
  height: 288px;
  overflow: hidden;
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (max-width: 768px) {
  .p-access__map {
    max-width: 100%;
  }
}

.p-access__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-access__details-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 0.393rem + 1.786vw, 2rem);
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-access__details-row:not(:first-child) {
  padding-top: 19px;
}

.p-access__details-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.1;
}

.p-access__details-value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.1;
}

.p-access__tel-link {
  color: var(--color-light-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.p-access__directions {
  margin-bottom: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
}

.p-access__direction-block {
  margin-bottom: clamp(1.875rem, 1.435rem + 1.878vw, 3.125rem);
}

.p-access__direction-title {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.01em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.p-access__direction-title::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: var(--color-light-black);
}

.p-access__direction-text {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.p-access__hours {
  position: relative;
  width: min(1360px, 100%);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
  padding-bottom: 173px;
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .p-access__hours {
    padding-bottom: 20px;
  }
}

.p-access__hours-title {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.p-access__hours-table {
  width: min(840px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
  border-collapse: collapse;
}

.p-access__hours-th,
.p-access__hours-label,
.p-access__hours-cell {
  border-bottom: none;
  position: relative;
}
.p-access__hours-th::after,
.p-access__hours-label::after,
.p-access__hours-cell::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(58, 58, 58, 0.5);
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}
@media screen and (max-width: 768px) {
  .p-access__hours-th,
  .p-access__hours-label,
  .p-access__hours-cell {
    padding: 0 8px 12px;
  }
}

.p-access__hours-th {
  padding-block: 20px;
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-access__hours-th {
    padding: 0 8px 12px;
  }
}

.p-access__hours-th--empty {
  width: clamp(6.313rem, 1.933rem + 18.685vw, 18.75rem);
}

@media screen and (max-width: 640px) {
  .p-access__hours-th-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 640px) {
  .p-access__hours-th-sep {
    display: none;
  }
}

.p-access__hours-row td {
  padding-block: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .p-access__hours-row td {
    text-align: center;
  }
}

.p-access__hours-row {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-weight: 400;
  line-height: normal;
}

.p-access__hours-cell {
  color: var(--color-light-black);
  vertical-align: middle;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-access__hours-cell {
    padding: 16px 8px;
  }
}
@media screen and (max-width: 640px) {
  .p-access__hours-cell {
    text-align: center;
  }
}

.p-access__hours-note {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.1;
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .p-access__hours-note {
    line-height: 1.2;
    margin-top: 25px;
  }
}

.p-access__flower {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 273px;
  pointer-events: none;
}
@media screen and (max-width: 640px) {
  .p-access__flower {
    display: none;
  }
}

.p-access__flower img {
  width: 100%;
  height: auto;
  display: block;
}

.p-access__flower--sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .p-access__flower--sp {
    display: block;
    width: 123px;
    position: absolute;
    bottom: 0;
    right: -25px;
    pointer-events: none;
  }
}

#features,
#farmers,
#vegetable,
#gallery,
#message {
  scroll-margin-top: 103px;
}

.p-about-nav {
  padding-block: clamp(2.5rem, 1.84rem + 2.817vw, 4.375rem);
  padding-inline: clamp(1.563rem, 0.352rem + 5.164vw, 5rem);
  background: var(--color-light-white);
}
@media screen and (max-width: 768px) {
  .p-about-nav {
    padding-bottom: 0;
  }
}

.p-about-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0.313rem, 0.202rem + 0.469vw, 0.625rem);
  list-style: none;
  border-bottom: 1px solid var(--color-gray);
  border-top: 1px solid var(--color-gray);
  max-width: 740px;
  padding-block: 20px;
  width: 100%;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-about-nav__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: clamp(0.313rem, 0.202rem + 0.469vw, 0.625rem);
       -moz-column-gap: clamp(0.313rem, 0.202rem + 0.469vw, 0.625rem);
            column-gap: clamp(0.313rem, 0.202rem + 0.469vw, 0.625rem);
    row-gap: 0;
    padding-block: 13px;
  }
}

.p-about-nav__item--dot {
  color: var(--color-light-black);
  font-family: "Aboreto", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-about-nav__item--dot {
    line-height: normal;
  }
}

.p-about-nav__link {
  font-family: "Aboreto", serif;
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-weight: 400;
  line-height: 2.1;
  color: var(--color-light-black);
  text-decoration: none;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
@media screen and (max-width: 768px) {
  .p-about-nav__link {
    line-height: normal;
  }
}

.p-about-nav__link:hover {
  color: rgba(58, 58, 58, 0.5);
}

.p-features {
  background: var(--color-gradient-beige);
  padding-block: clamp(2.5rem, 1.62rem + 3.756vw, 5rem) clamp(2.5rem, 0.739rem + 7.512vw, 7.5rem);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
}

.p-features__inner {
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
}

.p-features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2.188rem, 1.857rem + 1.408vw, 3.125rem);
}

.p-features__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(2.25rem, -0.393rem + 5.506vw, 4.563rem);
     -moz-column-gap: clamp(2.25rem, -0.393rem + 5.506vw, 4.563rem);
          column-gap: clamp(2.25rem, -0.393rem + 5.506vw, 4.563rem);
  padding-inline: 28px;
}
@media screen and (max-width: 768px) {
  .p-features__item {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding-inline: 0;
  }
}

.p-features__item--reverse {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .p-features__item--reverse {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }
}

.p-features__item--reverse .p-features__img-wrap {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 768px) {
  .p-features__item--reverse .p-features__img-wrap {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.p-features__item--reverse .p-features__body {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 768px) {
  .p-features__item--reverse .p-features__body {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.p-features__img-wrap {
  max-width: 617px;
  width: 100%;
  aspect-ratio: 617/410;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-features__img-wrap {
    width: 100%;
    height: auto;
  }
}

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

.p-features__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.313rem, -0.348rem + 2.817vw, 2.188rem);
}

.p-features__heading {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1.25rem, 1.162rem + 0.376vw, 1.5rem);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .p-features__heading {
    line-height: normal;
  }
}

.p-features__text {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1rem, 0.956rem + 0.188vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .p-features__text {
    line-height: 1.5;
  }
}

@-webkit-keyframes fadeUpIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-farmers {
  background: var(--color-light-white);
  padding-block: clamp(2.5rem, 1.62rem + 3.756vw, 5rem) clamp(2.5rem, 0.739rem + 7.512vw, 7.5rem);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
  position: relative;
  overflow: hidden;
}
.p-farmers::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(11.25rem, 8.895rem + 10.047vw, 17.938rem);
  height: clamp(6rem, 4.856rem + 4.883vw, 9.25rem);
  background-image: url("../img/flower-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .p-farmers::after {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
    top: -2%;
    right: -6%;
    overflow: hidden;
  }
}

.p-farmers__title {
  margin-bottom: 20px;
}

.p-farmers__lead {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-light-black);
}

.p-farmers__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  margin-top: 3rem;
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-farmers__body {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }
}

.p-farmers__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-farmers__item {
  border-top: 1px solid var(--color-gray);
  cursor: pointer;
}
.p-farmers__item:last-child {
  border-bottom: 1px solid var(--color-gray);
}
.p-farmers__item:first-child {
  border-top: none;
}

.p-farmers__item-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0.25rem;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 768px) {
  .p-farmers__item-main {
    padding: 1rem 0;
    gap: 0.75rem;
  }
}

.p-farmers__avatar {
  width: 65px;
  height: 65px;
  border-radius: 100vmax;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-farmers__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.p-farmers__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-light-black);
  margin-bottom: 8px;
}
@media screen and (max-width: 640px) {
  .p-farmers__name {
    margin-bottom: 10px;
  }
}

.p-farmers__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 960px) {
  .p-farmers__arrow {
    display: none !important;
  }
}

.p-farmers__item.is-active .p-farmers__arrow {
  opacity: 1;
}

.p-farmers__vegs {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: rgba(58, 58, 58, 0.65);
}

.p-farmers__toggle-btn {
  display: none;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--color-gray);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  margin-top: auto;
}
@media screen and (max-width: 960px) {
  .p-farmers__toggle-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-farmers__toggle-icon {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  position: relative;
}

.p-farmers__toggle-icon::before,
.p-farmers__toggle-icon::after {
  content: "";
  display: block;
  position: absolute;
  background: var(--color-light-black);
  border-radius: 1px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.p-farmers__toggle-icon::before {
  width: 0.75rem;
  height: 1px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-farmers__toggle-icon::after {
  width: 1px;
  height: 0.75rem;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-farmers__item.is-open .p-farmers__toggle-icon::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.p-farmers__accordion {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}

.p-farmers__accordion-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 0 1.25rem 1.25rem calc(4.0625rem + 0.75rem);
}

.p-farmers__visual-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease;
}
@media screen and (max-width: 960px) {
  .p-farmers__visual-comment {
    display: none !important;
  }
}

.p-farmers__item.is-active .p-farmers__visual-comment {
  max-height: 160px;
  opacity: 1;
  margin-top: 10px;
}

.p-farmers__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 149px;
  padding-block: 2px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 21px;
  background: #F6EDEE;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
}

.p-farmers__comment {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-black);
}
@media screen and (max-width: 640px) {
  .p-farmers__comment {
    line-height: 1.5;
  }
}

.p-farmers__visual {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 960px) {
  .p-farmers__visual {
    display: none;
  }
}

.p-farmers__visual-sticky {
  position: sticky;
  top: 6.25rem;
}

.p-farmers__visual-inner {
  position: relative;
  aspect-ratio: 634/455;
  width: 100%;
}

.p-farmers__visual-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.p-farmers__visual-item.is-active {
  opacity: 1;
  visibility: visible;
}

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

@media screen and (min-width: 769px) {
  .p-farmers__list:hover .p-farmers__item:not(:hover) .p-farmers__item-main {
    opacity: 0.45;
  }
  .p-farmers__item:hover .p-farmers__item-main {
    opacity: 1;
  }
}
.p-vegetable {
  background: var(--color-light-white);
  padding-block: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
}
@media screen and (max-width: 640px) {
  .p-vegetable {
    padding-bottom: 50px;
  }
}

.p-vegetable__title {
  margin-bottom: 20px;
}

.p-vegetable__lead-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}

.p-vegetable__lead {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-light-black);
}

.p-vegetable__note {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.813rem, 0.768rem + 0.188vw, 0.938rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-light-black);
}

.p-vegetable__subtitle {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: var(--color-light-black);
  margin-top: clamp(1.563rem, 0.572rem + 4.225vw, 4.375rem);
}
@media screen and (max-width: 640px) {
  .p-vegetable__subtitle {
    font-weight: 500;
    letter-spacing: 0;
  }
}

.p-vegetable__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.875rem, 1.215rem + 2.817vw, 3.75rem);
  margin-inline: auto;
  max-width: 990px;
  width: 100%;
}

.p-vegetable__item {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 64px;
     -moz-column-gap: 64px;
          column-gap: 64px;
}
@media screen and (max-width: 960px) {
  .p-vegetable__item {
    grid-template-columns: 1fr;
    margin-top: 10px;
    row-gap: 20px;
  }
}

.p-vegetable__img-col {
  position: relative;
  padding-top: clamp(2.125rem, 1.993rem + 0.563vw, 2.5rem);
}

.p-vegetable__en {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(2rem, 1.934rem + 0.282vw, 2.188rem);
  font-weight: 400;
  line-height: normal;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  white-space: nowrap;
}

.p-vegetable__en--peach {
  color: var(--color-peach);
}

.p-vegetable__en--green {
  color: var(--color-light-green);
}

.p-vegetable__img-wrap {
  position: relative;
  width: clamp(20.25rem, 17.939rem + 9.859vw, 26.813rem);
  height: clamp(11.188rem, 8.371rem + 12.019vw, 19.188rem);
}

.p-vegetable__img-wrap::after {
  content: "";
  position: absolute;
  width: 101%;
  height: 53%;
  z-index: 0;
}

.p-vegetable__img-wrap--bottom-right::after {
  left: 7%;
  bottom: -8%;
  background: var(--color-light-pink);
}

.p-vegetable__img-wrap--top-left::after {
  right: 7%;
  bottom: -8%;
  background: var(--color-green);
}

.p-vegetable__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-vegetable__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-vegetable__name {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1.25rem, 1.162rem + 0.376vw, 1.5rem);
  font-weight: 500;
  line-height: normal;
  color: var(--color-light-black);
}

.p-vegetable__desc {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.938rem, 0.915rem + 0.094vw, 1rem);
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-black);
  margin-top: clamp(0.313rem, 0.202rem + 0.469vw, 0.625rem);
}

.p-vegetable__effect-label {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.938rem, 0.915rem + 0.094vw, 1rem);
  font-weight: 400;
  line-height: normal;
  color: rgba(58, 58, 58, 0.5);
  margin-top: clamp(0.625rem, 0.405rem + 0.939vw, 1.25rem);
}
@media screen and (max-width: 640px) {
  .p-vegetable__effect-label {
    font-weight: 500;
  }
}

.p-vegetable__effect {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(0.938rem, 0.915rem + 0.094vw, 1rem);
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-black);
}

.p-gallery {
  background: var(--color-gradient-beige);
  padding-block: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
}
@media screen and (max-width: 768px) {
  .p-gallery {
    padding-inline: 0;
  }
}
@media screen and (max-width: 640px) {
  .p-gallery {
    padding-top: 50px;
  }
}

.p-gallery__inner {
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
}

.p-gallery__title {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-gallery__title {
    padding-inline: clamp(1.563rem, 0.668rem + 3.817vw, 2.5rem);
  }
}
@media screen and (max-width: 640px) {
  .p-gallery__title {
    margin-bottom: 30px;
  }
}

.p-gallery__text {
  color: var(--color-light-black);
  font-family: "Shippori Mincho", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: clamp(1.875rem, 0.995rem + 3.756vw, 4.375rem);
}
@media screen and (max-width: 768px) {
  .p-gallery__text {
    padding-inline: clamp(1.563rem, 0.668rem + 3.817vw, 2.5rem);
  }
}
@media screen and (max-width: 640px) {
  .p-gallery__text {
    line-height: 1.5;
  }
}

.p-gallery__main {
  width: clamp(15.25rem, 8.582rem + 28.451vw, 34.188rem);
  margin-inline: auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-gallery__main {
    display: none;
  }
}

.p-gallery__main-img {
  width: 100%;
  aspect-ratio: 575/427;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}

.p-gallery__main-img.is-fading {
  opacity: 0;
}

.p-gallery__swiper-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-gallery__swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    overflow: hidden;
    padding-inline: clamp(1.563rem, 0.668rem + 3.817vw, 2.5rem);
  }
}

.p-gallery__swiper {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-gallery__swiper {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    overflow: hidden;
  }
}

.p-gallery__swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  overflow: hidden;
}

.p-gallery__swiper-wrapper .swiper-button-prev,
.p-gallery__swiper-wrapper .swiper-button-next {
  position: static;
  -webkit-transform: none;
          transform: none;
  margin: 0;
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  border: 0.656px solid rgba(58, 58, 58, 0.8);
  background: none;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-gallery__swiper-wrapper .swiper-button-prev,
  .p-gallery__swiper-wrapper .swiper-button-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-gallery__swiper-wrapper .swiper-button-prev::after,
.p-gallery__swiper-wrapper .swiper-button-next::after {
  display: none;
}

.p-gallery__swiper-wrapper .swiper-button-prev svg,
.p-gallery__swiper-wrapper .swiper-button-next svg {
  fill: none;
}

.p-gallery__thumbs-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.p-gallery__thumbs-wrap::-webkit-scrollbar {
  display: none;
}

.p-gallery__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-inline: auto;
  margin-top: clamp(0.938rem, 0.607rem + 1.408vw, 1.875rem);
}
@media screen and (max-width: 768px) {
  .p-gallery__thumbs {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.p-gallery__thumb {
  position: relative;
  width: clamp(8.75rem, 7.37rem + 2.35vw, 10.375rem);
  height: 114px;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  outline: 2px solid transparent;
  outline-offset: 0;
  -webkit-transition: opacity 0.3s ease, outline-offset 0.2s ease;
  transition: opacity 0.3s ease, outline-offset 0.2s ease;
}
@media screen and (max-width: 768px) {
  .p-gallery__thumb {
    width: 80px;
    height: 54px;
    padding-bottom: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-gallery__thumb.is-active {
  opacity: 0.45;
}

@media screen and (min-width: 1500px) {
  .p-gallery__thumb:hover {
    opacity: 0.45;
  }
}

.p-gallery__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 768px) {
  .p-gallery__thumb img {
    position: static;
  }
}

@media screen and (min-width: 1500px) {
  .p-gallery__thumb:hover img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
}

.p-message {
  background: var(--color-light-white);
  padding-block: clamp(3.125rem, 1.585rem + 6.573vw, 7.5rem) clamp(2.5rem, 1.72rem + 3.756vw, 5rem);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
}

.p-message__inner {
  position: relative;
  max-width: 960px;
  width: 100%;
  margin-inline: auto;
}
.p-message__inner::after {
  content: "";
  position: absolute;
  bottom: -42%;
  left: -20%;
  width: 100%;
  height: 100%;
  background-image: url("../img/flower-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: clamp(11.25rem, 8.895rem + 10.047vw, 17.938rem);
  height: clamp(6rem, 4.856rem + 4.883vw, 9.25rem);
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-message__inner::after {
    left: -10%;
  }
}
@media screen and (max-width: 768px) {
  .p-message__inner::after {
    bottom: -25%;
  }
}

.p-message__title {
  margin-bottom: clamp(1.875rem, 1.215rem + 2.817vw, 3.75rem);
}

.p-message__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.875rem, -0.766rem + 11.268vw, 9.375rem);
}
@media screen and (max-width: 768px) {
  .p-message__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-message__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.p-message__text {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-light-black);
}

.p-message__text--strong {
  font-weight: 500;
}

.p-message__img-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: clamp(12.813rem, 10.722rem + 8.92vw, 18.75rem);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-message__img-wrap {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.p-message__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-message__flower {
  position: absolute;
  bottom: -10%;
  left: -3%;
  width: clamp(10.813rem, 6.411rem + 18.779vw, 23.313rem);
  height: clamp(5.75rem, 3.417rem + 9.953vw, 12.375rem);
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (max-width: 640px) {
  .p-message__flower {
    bottom: -5%;
  }
}

.p-company {
  background: var(--color-light-white);
  padding-block: clamp(5rem, 4.12rem + 3.756vw, 7.5rem) clamp(2.5rem, 0.739rem + 7.512vw, 7.5rem);
  padding-inline: clamp(1.563rem, -0.088rem + 7.042vw, 6.25rem);
}

.p-company__inner {
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
}

.p-company__title {
  margin-bottom: clamp(2.188rem, 1.637rem + 2.347vw, 4.375rem);
}

.p-company__table {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}

.p-company__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.25rem, -0.511rem + 7.512vw, 6.25rem);
  padding-block: clamp(1.875rem, 1.765rem + 0.469vw, 2.188rem) clamp(0.313rem, 0.202rem + 0.469vw, 0.625rem);
  border-bottom: 0.5px solid rgba(58, 58, 58, 0.5);
}
.p-company__row:first-child {
  padding-top: 0;
}

.p-company__label {
  font-family: "Shippori Mincho", sans-serif;
  font-size: clamp(1rem, 0.956rem + 0.188vw, 1.125rem);
  font-weight: 400;
  line-height: 1.9444444444;
  color: var(--color-light-black);
  white-space: nowrap;
}

.p-company__value {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-light-black);
}

.p-privacy__main {
  padding-block: clamp(2.5rem, 1.18rem + 5.634vw, 6.25rem);
  padding-inline: clamp(1.875rem, -3.125rem + 10.417vw, 6.25rem);
  background-color: var(--color-light-white);
}

.p-privacy__inner {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
}

.p-privacy__intro {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 400;
  line-height: normal;
  margin-bottom: clamp(1.25rem, 0.81rem + 1.878vw, 2.5rem);
}

.p-privacy__sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.25rem, 0.81rem + 1.878vw, 2.5rem);
}

.p-privacy__section-heading {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 600;
  line-height: normal;
}

.p-privacy__section-text {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 400;
  line-height: normal;
}

.p-privacy__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-privacy__list-item {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 400;
  line-height: normal;
  padding-left: 16px;
}
.p-privacy__list-item::before {
  content: "・";
  margin-left: -16px;
}

.p-privacy__footer {
  margin-top: clamp(1.25rem, 0.81rem + 1.878vw, 2.5rem);
}

.p-privacy__footer-text {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 400;
  line-height: normal;
}

.p-notfound {
  padding-block: clamp(5rem, 3.239rem + 7.512vw, 10rem);
  padding-inline: clamp(1.563rem, 0.352rem + 5.164vw, 5rem);
  background-color: var(--color-light-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-notfound__inner {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.25rem, 0.81rem + 1.878vw, 2.5rem);
}

.p-notfound__heading {
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

.p-notfound__text {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}/*# sourceMappingURL=style.css.map */