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

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th {
  text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

sup {
  vertical-align: text-top;
}

img,
picture {
  max-width: 100%;
  vertical-align: top;
}

iframe {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

span {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

a {
  display: inline-block;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  vertical-align: middle;
  transition: ease-in-out, 0.3s;
}

:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

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

body {
  color: #231815;
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.js-body.is-active {
  overflow: hidden;
}

.js-parallax {
  overflow: hidden;
  will-change: transform;
}

.js-parallax img {
  height: 130%;
}

.js-parallax-self {
  will-change: transform;
}

button {
  color: #231815;
}

.l-inner {
  width: 100%;
  max-width: 63.125rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 100%;
    max-width: 40rem;
    padding-inline: 1.25rem;
  }
}

.l-inner--lg {
  max-width: 106.5rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .l-inner--lg {
    padding-inline: 1.25rem;
  }
}

.c-gradient {
  position: relative;
}

.c-gradient::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 44.53125vw;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-gradient::before {
    height: 5rem;
  }
}

.c-gradient--top::before {
  top: -0.0625rem;
  background: linear-gradient(to bottom, #ffffff 0%, transparent 50%, transparent 100%);
}

.c-gradient--bottom::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 7.5rem;
  pointer-events: none;
  z-index: 1;
  bottom: -0.0625rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 768px) {
  .c-gradient--bottom::after {
    height: 5rem;
  }
}

.c-home-button {
  display: block;
  padding-block: 0.75rem;
  padding-inline: 0.5rem;
  width: 100%;
  max-width: 23.4375rem;
  background: #f1ede5;
  border: 0.1875rem solid #f1ede5;
  border-radius: 100vh;
  color: #231815;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .c-home-button {
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
  }
}

@media (any-hover: hover) {
  .c-home-button:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-0.125rem);
  }
}
.c-home-title {
  color: #cc4347;
  font-family: "Libre Baskerville", serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-home-title {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.p-number {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 1;
  width: 2.6875rem;
  height: 2.6875rem;
  font-family: "Libre Baskerville", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.052em;
  border-right: 0.0625rem solid #ffffff;
  border-bottom: 0.0625rem solid #ffffff;
}
@media screen and (max-width: 768px) {
  .p-number {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.875rem;
    padding: 0.1875rem 0.5rem 0.625rem 0.3125rem;
  }
}

.p-404 {
  position: relative;
  overflow: hidden;
  padding-block: 7.5rem 8.75rem;
  background: #f1ede5;
}
@media screen and (max-width: 768px) {
  .p-404 {
    padding-block: 4.375rem 5.625rem;
  }
}

.p-404__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}

.p-404__content {
  position: relative;
  padding: 4rem 3rem;
  background-color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(77, 129, 100, 0.2);
  border-radius: 1.125rem;
  box-shadow: 0 1rem 2.5rem rgba(35, 24, 21, 0.12);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-404__content {
    padding: 2.75rem 1.5rem;
    border-radius: 0.875rem;
  }
}

.p-404__title {
  color: #231815;
  font-size: 2.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.55;
}
@media screen and (max-width: 768px) {
  .p-404__title {
    font-size: 1.5rem;
    line-height: 1.65;
    letter-spacing: 0.03em;
  }
}

.p-404__btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-404__btn {
    margin-top: 2rem;
  }
}

.p-404__btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16.25rem;
  padding: 0.875rem 1.75rem;
  border: 2px solid #4d8164;
  border-radius: 100vh;
  background-color: #4d8164;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-404__btn a {
    min-width: 100%;
    padding: 0.875rem 1.25rem;
  }
}

@media (any-hover: hover) {
  .p-404__btn a:hover {
    background-color: rgba(77, 129, 100, 0.08);
    color: #4d8164;
    transform: translateY(-0.125rem);
  }
}
.p-about__fv {
  width: 100%;
  aspect-ratio: 1920/516;
  background-image: url("../images/about/fv.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .p-about__fv {
    aspect-ratio: 375/280;
  }
}

.p-about__intro-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1920/1080;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-about__intro-image {
    aspect-ratio: 375/460;
  }
}

.p-about__intro-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__message {
  margin-top: 10rem;
  background-color: #4d8164;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-about__message {
    margin-top: 0;
    padding-block: 3.75rem;
  }
}

.p-about__message-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-about__message-inner {
    flex-direction: column;
    gap: 2.5rem;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 1.25rem;
  }
}

.p-about__message-content {
  width: 100%;
  flex-shrink: 0;
  max-width: 29.4375rem;
}

.p-about__message-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-about__message-header {
    gap: 0.75rem;
  }
}

.p-about__message-line {
  width: 1.1875rem;
  height: 0.125rem;
  margin-top: 1.5rem;
  background-color: #ffffff;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-about__message-line {
    width: 1rem;
    margin-top: 0.9375rem;
  }
}

.p-about__message-title {
  color: #ffffff;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.5294117647;
  letter-spacing: 0.033em;
}
@media screen and (max-width: 768px) {
  .p-about__message-title {
    font-size: 1.375rem;
  }
}

.p-about__message-text {
  margin-top: 2.375rem;
  color: #ffffff;
  line-height: 2.4375;
}
@media screen and (max-width: 768px) {
  .p-about__message-text {
    margin-top: 1.5rem;
  }
}

.p-about__message-signature {
  margin-top: 1.5em;
  color: #ffffff;
  line-height: 2.4375;
}

.p-about__message-image {
  flex-shrink: 0;
  width: 50vw;
  height: auto;
  aspect-ratio: 960/876;
}
@media screen and (max-width: 768px) {
  .p-about__message-image {
    width: 100%;
  }
}

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

.p-about__mission {
  position: relative;
  margin-top: 10rem;
  padding-top: 8.375rem;
  padding-bottom: 4.375rem;
  aspect-ratio: 1920/1170;
}
@media screen and (max-width: 768px) {
  .p-about__mission {
    margin-top: 7.5rem;
    padding-block: 3.75rem;
    aspect-ratio: auto;
  }
}

.p-about__mission-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: clip;
}

.p-about__mission-bg img {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__mission-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-about__mission-inner {
    display: block;
  }
}

.p-about__mission-header {
  display: flex;
  align-items: center;
  align-self: flex-end;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-about__mission-header {
    align-items: flex-start;
    flex-direction: row;
  }
}

.p-about__mission-line {
  width: 2px;
  height: 1.2125rem;
  margin-top: -1.875rem;
  margin-left: 2.75rem;
  background-color: #ffffff;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-about__mission-line {
    width: 1rem;
    height: 0.125rem;
    margin-top: 0.9375rem;
    margin-left: 0;
  }
}

.p-about__mission-title {
  font-size: 2.125rem;
  font-weight: 600;
  color: #ffffff;
  writing-mode: vertical-rl;
  letter-spacing: 0.033em;
  line-height: 1.4;
  text-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .p-about__mission-title {
    font-size: 1.375rem;
    writing-mode: horizontal-tb;
  }
}

.p-about__mission-list {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__mission-list {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
  }
}

.p-about__mission-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: calc((100% - 3rem) / 3);
  padding-block: 4.3125rem;
  padding-inline: 4.375rem;
  background-color: rgba(255, 255, 255, 0.11);
  -webkit-backdrop-filter: blur(0.75rem);
          backdrop-filter: blur(0.75rem);
}
@media (max-width: 1700px) {
  .p-about__mission-item {
    padding-inline: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about__mission-item {
    width: 100%;
    align-items: flex-start;
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    padding-inline: 1.25rem;
  }
}

.p-about__mission-item-title {
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.4230769231;
  letter-spacing: 0.052em;
}
@media screen and (max-width: 768px) {
  .p-about__mission-item-title {
    font-size: 1.25rem;
  }
}

.p-about__mission-item-text {
  margin-top: 1.6875rem;
  color: #ffffff;
  line-height: 1.625;
}

.p-about__hokkaido {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-about__hokkaido {
    margin-top: 7.5rem;
  }
}

.p-about__hokkaido-inner {
  display: flex;
  gap: 5.25rem;
}
@media screen and (max-width: 768px) {
  .p-about__hokkaido-inner {
    flex-direction: column-reverse;
    padding-inline: 1.25rem;
  }
}

.p-about__hokkaido-images {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-about__hokkaido-images {
    width: 100%;
    gap: 0.75rem;
  }
}

.p-about__hokkaido-image {
  max-width: 33.8125rem;
  height: auto;
  aspect-ratio: 541/811;
}

.p-about__hokkaido-image:nth-of-type(2) {
  margin-top: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-about__hokkaido-image:nth-of-type(2) {
    margin-top: 2.5rem;
  }
}

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

.p-about__hokkaido-content {
  flex-shrink: 0;
  max-width: 30rem;
  padding-top: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-about__hokkaido-content {
    padding-top: 0;
  }
}

.p-about__hokkaido-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__hokkaido-header {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
}

.p-about__hokkaido-line {
  width: 1.1875rem;
  height: 0.125rem;
  margin-top: 1.375rem;
  background-color: #cc4347;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-about__hokkaido-line {
    width: 1rem;
    margin-top: 0.9375rem;
  }
}

.p-about__hokkaido-title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.033em;
}
@media screen and (max-width: 768px) {
  .p-about__hokkaido-title {
    font-size: 1.375rem;
  }
}

.p-about__hokkaido-text {
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-about__hokkaido-text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-about__business {
  margin-top: 11.875rem;
}
@media screen and (max-width: 768px) {
  .p-about__business {
    margin-top: 7.5rem;
  }
}

.p-about__business-inner {
  width: 100%;
  max-width: 82.5rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-about__business-inner {
    max-width: 40rem;
    padding-inline: 1.25rem;
  }
}

.p-about__business-box {
  padding-block: 6.25rem;
  padding-inline: 6.125rem;
  border: 0.625rem solid #f1ede5;
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-about__business-box {
    padding: 2rem 1.25rem;
    border-radius: 0.75rem;
  }
}

.p-about__business-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .p-about__business-header {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
}

.p-about__business-line {
  width: 1.1875rem;
  height: 1px;
  margin-top: 1.5rem;
  background-color: #cc4347;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-about__business-line {
    width: 1rem;
    margin-top: 0.9375rem;
  }
}

.p-about__business-title {
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.5294117647;
  letter-spacing: 0.033em;
}
@media screen and (max-width: 768px) {
  .p-about__business-title {
    font-size: 1.375rem;
  }
}

.p-about__business-content {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12.875rem;
}
@media screen and (max-width: 768px) {
  .p-about__business-content {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-about__business-company:first-child {
  position: relative;
}

.p-about__business-company:first-child::before {
  content: "";
  position: absolute;
  top: 2.0625rem;
  left: 10.3125rem;
  width: 26.5rem;
  height: 1px;
  background-color: #cc4347;
}
@media screen and (max-width: 768px) {
  .p-about__business-company:first-child::before {
    display: none;
  }
}

.p-about__business-company-header {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__business-company-header {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
}

.p-about__business-company-name {
  padding: 0.625rem 1.375rem;
  font-size: 1.875rem;
  font-weight: 600;
  color: #cc4347;
  border: 1px solid #cc4347;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-about__business-company-name {
    padding: 0.625rem 1.25rem;
    font-size: 1.25rem;
  }
}

.p-about__business-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-about__business-items {
    gap: 1rem;
  }
}

.p-about__business-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.p-about__business-item-line {
  width: 1.5px;
  align-self: stretch;
  margin-top: 0.125rem;
  background-color: #cc4347;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-about__business-item-line {
    margin-top: 0.125rem;
  }
}

.p-about__business-item-content {
  flex: 1;
}

.p-about__business-item-title {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-about__business-item-title {
    margin-bottom: 0.375rem;
    font-size: 1.125rem;
  }
}

.p-about__business-item-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-about__business-item-text {
    font-size: 0.8125rem;
  }
}

.p-access__company {
  margin-top: 9.125rem;
}
@media screen and (max-width: 768px) {
  .p-access__company {
    margin-top: 7.5rem;
  }
}

.p-access__company-inner {
  display: flex;
  gap: 7.0625rem;
}
@media screen and (max-width: 768px) {
  .p-access__company-inner {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.p-access__company-image {
  flex: 1;
  min-width: 0;
  aspect-ratio: 997/764;
  margin-left: calc(-1 * max(1.5625rem, (100vw - 103.375rem - 1.5625rem * 2) / 2 + 1.5625rem));
}
@media screen and (max-width: 768px) {
  .p-access__company-image {
    width: 100%;
    margin-left: 0;
  }
}

.p-access__company-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-access__company-content {
  flex-shrink: 0;
  width: 42.3125rem;
}
@media screen and (max-width: 768px) {
  .p-access__company-content {
    width: 100%;
  }
}

.p-access__company-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-access__company-header {
    gap: 0.75rem;
  }
}

.p-access__company-line {
  width: 1.1875rem;
  height: 0.125rem;
  margin-top: 1rem;
  background-color: #cc4347;
}
@media screen and (max-width: 768px) {
  .p-access__company-line {
    width: 1rem;
    margin-top: 0.9375rem;
  }
}

.p-access__company-title {
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.033em;
}
@media screen and (max-width: 768px) {
  .p-access__company-title {
    font-size: 1.375rem;
  }
}

.p-access__company-table {
  width: 100%;
  margin-top: 2.5rem;
}

.p-access__company-row {
  display: flex;
  align-items: flex-start;
  padding-block: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-access__company-row {
    flex-direction: column;
    gap: 0.5rem;
    padding-block: 1rem;
  }
}

.p-access__company-row + .p-access__company-row {
  border-top: 1px solid #f2f2e4;
}

.p-access__company-row:last-child {
  border-bottom: 1px solid #f2f2e4;
}

@media screen and (max-width: 768px) {
  .p-access__company-row--map {
    gap: 0.75rem;
  }
}

.p-access__company-term {
  flex-shrink: 0;
  width: 6.5625rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-access__company-term {
    width: 100%;
  }
}

.p-access__company-desc {
  width: 100%;
  line-height: 1.1;
}

.p-access__company-map {
  width: 100%;
  max-width: 35.75rem;
  aspect-ratio: 572/257;
  margin-top: 0.875rem;
}

.p-access__company-map iframe {
  width: 100%;
  height: 100%;
}

.p-access__company-map-link {
  display: block;
  margin-top: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6428571429;
  text-align: right;
  transition: ease-in-out, 0.3s;
  text-decoration: underline;
}

.p-access__company-map-link:hover {
  opacity: 0.7;
}

.p-access__company-map-icon {
  flex-shrink: 0;
}

.p-access__gallery {
  margin-top: 8.75rem;
}
@media screen and (max-width: 768px) {
  .p-access__gallery {
    margin-top: 7.5rem;
  }
}

.p-access__gallery-full {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

.p-access__gallery-full.js-zoomOut img {
  transform: scale(1.1);
  transform-origin: center;
  transition: transform 4.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.p-access__gallery-full.js-zoomOut.is-visible img {
  transform: scale(1);
}

.p-access__gallery-row {
  position: relative;
  width: 100%;
}

.p-access__gallery-row--01 {
  display: block;
  position: relative;
  margin-top: -5.3645833333vw;
  min-height: 75.7291666667vw;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-row--01 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-inline: 1.25rem;
    min-height: auto;
  }
}

.p-access__gallery-item--small {
  position: relative;
  width: 32.5520833333vw;
  margin-left: 6.9270833333vw;
  aspect-ratio: 625/498;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-item--small {
    position: static;
    width: 70%;
    margin-left: 0;
  }
}

.p-access__gallery-item--large {
  position: absolute;
  top: calc(25.9375vw + 3.125vw);
  right: 0;
  width: 83.3333333333vw;
  aspect-ratio: 1600/999;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-item--large {
    position: static;
    width: 100%;
  }
}

.p-access__gallery-row--02 {
  margin-top: 1.9791666667vw;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-row--02 {
    margin-top: 1.5rem;
    padding-inline: 1.25rem;
  }
}

.p-access__gallery-item--left {
  width: 45.2604166667vw;
  aspect-ratio: 869/693;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-item--left {
    width: 100%;
  }
}

.p-access__gallery-full + .p-access__gallery-row,
.p-access__gallery-row + .p-access__gallery-full {
  margin-top: -4.6875vw;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-full + .p-access__gallery-row,
  .p-access__gallery-row + .p-access__gallery-full {
    margin-top: 1.5rem;
  }
}

.p-access__gallery-row--03 {
  position: relative;
  margin-top: 1.25vw;
  min-height: 93.125vw;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-row--03 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-inline: 1.25rem;
    min-height: auto;
  }
}

.p-access__gallery-row.p-access__gallery-row--03 {
  margin-top: -3.90625vw;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-row.p-access__gallery-row--03 {
    margin-top: 1.5rem;
  }
}

.p-access__gallery-item--wide {
  position: relative;
  width: 76.40625vw;
  margin-left: 16.6666666667vw;
  aspect-ratio: 1467/916;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-item--wide {
    position: static;
    width: 100%;
    margin-left: 0;
  }
}

.p-access__gallery-item--bottom-left {
  position: absolute;
  top: calc(47.7083333333vw + 3.125vw);
  left: 6.9270833333vw;
  width: 39.84375vw;
  aspect-ratio: 765/586;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-item--bottom-left {
    position: static;
    width: 100%;
    left: 0;
  }
}

.p-access__gallery-item--bottom-right {
  position: absolute;
  top: calc(47.7083333333vw + 3.125vw + 20.0520833333vw);
  left: 44.8958333333vw;
  width: 20.9895833333vw;
  aspect-ratio: 1/1;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-item--bottom-right {
    position: static;
    width: 70%;
    margin-left: auto;
  }
}

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

.p-access__gallery-full--last {
  margin-top: -2.03125vw;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-full--last {
    margin-top: 1.5rem;
  }
}

.p-access__gallery-grid {
  margin-top: 2.96875vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-grid {
    margin-top: 1.5rem;
    padding-inline: 1.25rem;
  }
}

.p-access__gallery-grid-inner {
  position: relative;
  z-index: 5;
  width: min(100vw, 120rem);
  height: min(49.5833333333vw, 59.5rem);
}
@media screen and (max-width: 768px) {
  .p-access__gallery-grid-inner {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

.p-access__gallery-grid-item {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-grid-item {
    position: static;
    aspect-ratio: 1/1;
  }
}

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

.p-access__gallery-grid-item--01 {
  top: 0;
  left: 0;
  width: min(24.21875vw, 29.0625rem);
  height: min(24.21875vw, 29.0625rem);
}
@media screen and (max-width: 768px) {
  .p-access__gallery-grid-item--01 {
    width: 100%;
    height: auto;
  }
}

.p-access__gallery-grid-item--02 {
  top: 0;
  left: min(25.2604166667vw, 30.3125rem);
  width: min(24.21875vw, 29.0625rem);
  height: min(24.21875vw, 29.0625rem);
}
@media screen and (max-width: 768px) {
  .p-access__gallery-grid-item--02 {
    width: 100%;
    height: auto;
  }
}

.p-access__gallery-grid-item--03 {
  top: 0;
  left: min(50.5208333333vw, 60.625rem);
  width: min(24.21875vw, 29.0625rem);
  height: min(24.21875vw, 29.0625rem);
}
@media screen and (max-width: 768px) {
  .p-access__gallery-grid-item--03 {
    width: 100%;
    height: auto;
  }
}

.p-access__gallery-grid-item--04 {
  top: min(25.3645833333vw, 30.4375rem);
  left: min(25.2604166667vw, 30.3125rem);
  width: min(24.21875vw, 29.0625rem);
  height: min(24.21875vw, 29.0625rem);
}
@media screen and (max-width: 768px) {
  .p-access__gallery-grid-item--04 {
    width: 100%;
    height: auto;
  }
}

.p-access__gallery-grid-item--05 {
  top: min(25.3645833333vw, 30.4375rem);
  left: min(50.5208333333vw, 60.625rem);
  width: min(24.21875vw, 29.0625rem);
  height: min(24.21875vw, 29.0625rem);
}
@media screen and (max-width: 768px) {
  .p-access__gallery-grid-item--05 {
    width: 100%;
    height: auto;
  }
}

.p-access__gallery-grid-item--06 {
  top: min(25.3645833333vw, 30.4375rem);
  left: min(75.78125vw, 90.9375rem);
  width: min(24.21875vw, 29.0625rem);
  height: min(24.21875vw, 29.0625rem);
}
@media screen and (max-width: 768px) {
  .p-access__gallery-grid-item--06 {
    width: 100%;
    height: auto;
  }
}

.p-access__gallery-full--10 {
  margin-top: -0.8854166667vw;
}
@media screen and (max-width: 768px) {
  .p-access__gallery-full--10 {
    margin-top: 1.5rem;
  }
}

.p-access__gallery-full--11 {
  margin-top: 0;
}

.p-access + .p-footer.p-footer__layout {
  margin-top: 0;
}

.p-breadcrumbs__inner {
  max-width: 106.25rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}

.p-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 2.125rem;
       column-gap: 2.125rem;
  row-gap: 0.5rem;
  color: #1a1411;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6428571429;
}
@media screen and (max-width: 768px) {
  .p-breadcrumbs__list {
    font-size: 0.75rem;
  }
}

.p-breadcrumbs__list li {
  display: flex;
  align-items: center;
  position: relative;
}

.p-breadcrumbs__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #1a1411;
  border-right: 1px solid #1a1411;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-breadcrumbs__list li:not(:last-child)::after {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-breadcrumbs__list a {
  display: inline-flex;
  align-items: center;
  color: #1a1411;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.p-breadcrumbs__list span {
  display: inline-flex;
  align-items: center;
  line-height: 1.3;
}

.p-breadcrumbs__list .current-item {
  color: inherit;
}

@media (any-hover: hover) {
  .p-breadcrumbs__list a:hover {
    color: #cc4347;
  }
}
.p-circular-agriculture__intro-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1080;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__intro-image {
    aspect-ratio: 375/460;
  }
}

.p-circular-agriculture__intro-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-circular-agriculture__hero {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1920/1080;
  background: url(../images/circular-agriculture/bg_02.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__hero {
    aspect-ratio: auto;
    min-height: 31.25rem;
    background: url(../images/circular-agriculture/bg_02.webp) center/cover no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .p-circular-agriculture__hero::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(0.1875rem) brightness(0.75);
            backdrop-filter: blur(0.1875rem) brightness(0.75);
    z-index: 0;
  }
}

.p-circular-agriculture__hero-bg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-circular-agriculture__hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 120rem;
  height: 100%;
  margin-inline: auto;
}

.p-circular-agriculture__hero-content {
  position: relative;
  max-width: 49.6875rem;
  padding: 4.375rem;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.11);
  -webkit-backdrop-filter: blur(2.1875rem) brightness(0.75);
          backdrop-filter: blur(2.1875rem) brightness(0.75);
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__hero-content {
    max-width: 100%;
    padding: 1.875rem 1.25rem;
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}

.p-circular-agriculture__hero-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__hero-header {
    gap: 0.75rem;
  }
}

.p-circular-agriculture__hero-line {
  display: block;
  width: 1.1875rem;
  height: 0.125rem;
  margin-top: 1.5rem;
  background-color: #ffffff;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__hero-line {
    width: 1rem;
    margin-top: 0.9375rem;
  }
}

.p-circular-agriculture__hero-title {
  font-size: 2.125rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5294117647;
  letter-spacing: 0.033em;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__hero-title {
    font-size: 1.375rem;
  }
}

.p-circular-agriculture__hero-text {
  margin-top: 1.875rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__hero-text {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-circular-agriculture__features {
  margin-top: 11.875rem;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__features {
    margin-top: 7.5rem;
  }
}

.p-circular-agriculture__features-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 83.125rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__features-header {
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
}

.p-circular-agriculture__features-line {
  display: block;
  width: 1.1875rem;
  height: 0.125rem;
  margin-top: 1.5rem;
  background-color: #cc4347;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__features-line {
    width: 1rem;
    margin-top: 0.9375rem;
  }
}

.p-circular-agriculture__features-title {
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.5294117647;
  letter-spacing: 0.033em;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__features-title {
    font-size: 1.5rem;
  }
}

.p-circular-agriculture__features-slider {
  margin-top: 3.125rem;
}

.p-circular-agriculture__features-list {
  display: flex;
}

.p-circular-agriculture__features-item {
  position: relative;
  aspect-ratio: 1280/853;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__features-item {
    aspect-ratio: 485/420;
  }
}

.p-circular-agriculture__features-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.71), transparent, transparent, transparent);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__features-item::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.71), transparent);
  }
}

.p-circular-agriculture__features-item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-circular-agriculture__features-item-content {
  position: relative;
  z-index: 1;
  padding: 2.8125rem 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__features-item-content {
    padding: 2.5rem 1.25rem;
  }
}

.p-circular-agriculture__features-item-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.0833333333;
  letter-spacing: 0.052em;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__features-item-title {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.p-circular-agriculture__features-item-text {
  margin-top: 1.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5625;
}
@media screen and (max-width: 768px) {
  .p-circular-agriculture__features-item-text {
    margin-top: 1rem;
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

.p-company__body {
  margin-top: 2rem;
}
@media screen and (max-width: 375px) {
  .p-company__body {
    margin-top: 2.5rem;
  }
}

.p-company__table-th,
.p-company__table-td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-company__table-th,
  .p-company__table-td {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}

.p-company__table-tr:first-child {
  border-top: 0.125rem solid #000;
}

.p-company__table-tr:last-child {
  border-bottom: 0.125rem solid #000;
}

.p-company__table-tr:not(:first-child) {
  border-top: 0.0625rem solid #000;
}

@media screen and (max-width: 375px) {
  .p-company__table-tr {
    display: flex;
    flex-direction: column;
  }
}

.p-company__table-th {
  width: 12.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.9565217391;
  letter-spacing: 0.04em;
  text-align: center;
  background: #eeeff2;
}
@media screen and (max-width: 375px) {
  .p-company__table-th {
    width: 100%;
  }
}

.p-company__table-th__txt {
  display: inline-block;
  width: 5.875rem;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}

.p-company__table-td {
  font-size: 1rem;
  line-height: 2.9565217391;
  letter-spacing: 0.04em;
  padding-left: 2.5rem;
}
@media screen and (max-width: 375px) {
  .p-company__table-td {
    padding: 1rem 0 1rem;
    padding-left: 0;
    line-height: 1.9;
    text-align: center;
  }
}

.p-company__table--position {
  display: inline-block;
  width: 5.25rem;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}

.p-company__table--name {
  display: inline-block;
  margin-left: 1em;
}
@media screen and (max-width: 375px) {
  .p-company__table--name {
    width: 5.5625rem;
    text-align: left;
  }
}

/* ========================================
   Drawer Menu
   ======================================== */
.p-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background: #f1ede5;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  overflow-y: auto;
}

.p-drawer.is-open {
  transform: translateY(0);
}

.p-drawer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 4.375rem 5rem 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-drawer__inner {
    flex-direction: column;
    padding-top: 37.3333333333vw;
    padding-inline: 1.25rem;
    padding-bottom: 2.5rem;
    gap: 5rem;
    overflow-y: auto;
  }
}

.p-drawer__info {
  max-width: 30rem;
}
@media screen and (max-width: 768px) {
  .p-drawer__info {
    order: 2;
    max-width: 100%;
    width: 100%;
  }
}

.p-drawer__brand {
  max-width: 18.75rem;
}
@media screen and (max-width: 768px) {
  .p-drawer__brand {
    max-width: 13.75rem;
    margin-inline: auto;
  }
}

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

.p-drawer__contact {
  margin-top: 2.5rem;
  border: 0.0625rem solid #231815;
  padding: 1.875rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-drawer__contact {
    margin-top: 1.25rem;
    padding: 1.25rem 1.5rem;
  }
}

.p-drawer__tel {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-drawer__tel {
    font-size: 0.9375rem;
  }
}

.p-drawer__tel a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .p-drawer__tel a {
    pointer-events: auto;
  }
}

.p-drawer__email {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-drawer__email {
    font-size: 0.9375rem;
  }
}

.p-drawer__email a {
  color: inherit;
  text-decoration: none;
  vertical-align: top;
}

.p-drawer__address {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-drawer__address {
    font-size: 0.9375rem;
  }
}

.p-drawer__nav {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-drawer__nav {
    order: 1;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
}

/* ========================================
   Footer Section
   ======================================== */
.p-footer {
  position: relative;
}

.p-footer__layout {
  margin-top: 14.625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__layout {
    margin-top: 6.875rem;
  }
}

.p-footer__inner {
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  padding-inline: 1.25rem;
  background: #f2f2f2;
}

.p-footer__logo {
  position: absolute;
  top: -3.5625rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 2.875rem;
  aspect-ratio: 46/97;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    top: -2.6875rem;
    max-width: 2rem;
  }
}

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

.p-footer__brand {
  display: block;
  max-width: 19.8125rem;
  margin-inline: auto;
  aspect-ratio: 317/37;
}
@media screen and (max-width: 768px) {
  .p-footer__brand {
    max-width: 15rem;
  }
}

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

.p-footer__brand-en {
  margin-top: 1.125rem;
  font-size: 0.75rem;
  font-family: "Libre Baskerville", serif;
  color: #cc4347;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer__brand-en {
    font-size: 0.6875rem;
  }
}

.p-footer__contact {
  margin-top: 2.375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer__contact {
    margin-top: 1.25rem;
  }
}

.p-footer__tel-fax {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-footer__tel-fax {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
}

.p-footer__tel {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-footer__tel {
    font-size: 0.75rem;
  }
}

.p-footer__tel a {
  color: inherit;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-footer__tel a {
    pointer-events: auto;
  }
}

.p-footer__fax {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-footer__fax {
    font-size: 0.75rem;
  }
}

.p-footer__email {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-footer__email {
    font-size: 0.75rem;
  }
}

.p-footer__email a {
  color: inherit;
  text-decoration: none;
  vertical-align: top;
}

.p-footer__copyright-wrapper {
  background: #cc4347;
  padding: 0.75rem 1.25rem;
  text-align: center;
}

.p-footer__copyright {
  font-size: 0.8125rem;
  color: #ffffff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-footer__copyright {
    font-size: 0.625rem;
  }
}

/* ========================================
   Global Navigation (shared between header & drawer)
   ======================================== */
/* ========================================
   ヘッダー内：横書きナビ（スクロール後に表示）
   ======================================== */
.p-header__nav--horizontal .p-gnav__list {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 1800px) {
  .p-header__nav--horizontal .p-gnav__list {
    gap: 1.75rem;
  }
}

.p-header__nav--horizontal .p-gnav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.p-header__nav--horizontal .p-gnav__item a::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background-color: #cc4347;
  -webkit-mask-image: url(../images/common/icon_cherryblossom.svg);
          mask-image: url(../images/common/icon_cherryblossom.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  opacity: 0;
  transition: ease-in-out, 0.3s;
}

@media (any-hover: hover) {
  .p-header__nav--horizontal .p-gnav__item a:hover::before {
    opacity: 1;
  }
}

.p-header__nav--horizontal .p-gnav__item.is-current a::before {
  opacity: 1;
}

.p-header__nav--horizontal .p-gnav__ja {
  font-size: 1.375rem;
  font-weight: 700;
  color: #231815;
  line-height: 1.6;
}
@media (max-width: 1800px) {
  .p-header__nav--horizontal .p-gnav__ja {
    font-size: 1.125rem;
  }
}

.p-header__nav--horizontal .p-gnav__en {
  color: #cc4347;
  font-size: 1.125rem;
  font-family: "Libre Baskerville", serif;
  line-height: 1;
}
@media (max-width: 1800px) {
  .p-header__nav--horizontal .p-gnav__en {
    font-size: 0.9375rem;
  }
}

.p-header__nav--horizontal .p-gnav__purchase--circle {
  flex-direction: row;
}

/* ========================================
   ヘッダー内：縦書きナビ（下層ページ初期状態で表示）
   ======================================== */
.p-header__nav--vertical .p-gnav__list {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
}

.p-header__nav--vertical .p-gnav__item {
  writing-mode: vertical-rl;
}

.p-header__nav--vertical .p-gnav__item a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
}

.p-header__nav--vertical .p-gnav__item a::before {
  content: "";
  position: absolute;
  top: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background-color: #cc4347;
  -webkit-mask-image: url(../images/common/icon_cherryblossom.svg);
          mask-image: url(../images/common/icon_cherryblossom.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  opacity: 0;
  transition: ease-in-out, 0.3s;
}

@media (any-hover: hover) {
  .p-header__nav--vertical .p-gnav__item a:hover::before {
    opacity: 1;
  }
}

.p-header__nav--vertical .p-gnav__item.is-current a::before {
  opacity: 1;
}

.p-header__nav--vertical .p-gnav__ja {
  font-size: 1.375rem;
  font-weight: 700;
  color: #231815;
  line-height: 1.1;
}
@media (max-width: 1800px) {
  .p-header__nav--vertical .p-gnav__ja {
    font-size: 1.125rem;
  }
}

.p-header__nav--vertical .p-gnav__en {
  font-size: 1.125rem;
  font-family: "Libre Baskerville", serif;
  color: #cc4347;
  line-height: 1.1;
}
@media (max-width: 1800px) {
  .p-header__nav--vertical .p-gnav__en {
    font-size: 0.9375rem;
  }
}

/* ========================================
   購入ボタン：丸型（下層ページ用）
   ======================================== */
.p-gnav__purchase--circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5625rem;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .p-gnav__purchase--circle:hover {
    opacity: 0.8;
    transform: translateY(-0.125rem);
  }
}

/* アイコン部分：赤い円の中に白いカートアイコン */
.p-gnav__purchase--circle .p-gnav__purchase-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4375rem;
  height: 3.4375rem;
  background: #cc4347;
  border-radius: 100vh;
}

/* カートアイコン本体（白色） */
.p-gnav__purchase--circle .p-gnav__purchase-icon::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: #ffffff;
  -webkit-mask-image: url(../images/common/icon_cart.svg);
          mask-image: url(../images/common/icon_cart.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

/* テキスト：縦書き・赤色 */
.p-gnav__purchase--circle .p-gnav__purchase-text {
  color: #cc4347;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.1;
  writing-mode: vertical-rl;
}
@media (max-width: 1800px) {
  .p-gnav__purchase--circle .p-gnav__purchase-text {
    font-size: 1.125rem;
  }
}

.p-header__nav--horizontal .p-gnav__purchase-text {
  writing-mode: horizontal-tb;
}

/* --- ドロワー内での表示 --- */
.p-drawer__nav .p-gnav__list {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-drawer__nav .p-gnav__list {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
  }
}

.p-drawer__nav .p-gnav__item {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-drawer__nav .p-gnav__item {
    writing-mode: horizontal-tb;
    text-align: center;
  }
}

.p-drawer__nav .p-gnav__item a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-drawer__nav .p-gnav__item a {
    gap: 0.25rem;
  }
}

.p-drawer__nav .p-gnav__item a::before {
  content: "";
  position: absolute;
  top: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background-color: #cc4347;
  -webkit-mask-image: url(../images/common/icon_cherryblossom.svg);
          mask-image: url(../images/common/icon_cherryblossom.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  opacity: 0;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-drawer__nav .p-gnav__item a::before {
    display: none;
  }
}

@media (any-hover: hover) {
  .p-drawer__nav .p-gnav__item a:hover::before {
    opacity: 1;
  }
}

.p-drawer__nav .p-gnav__item.is-current a::before {
  opacity: 1;
}

.p-drawer__nav .p-gnav__ja {
  font-size: 1.375rem;
  font-weight: 700;
  color: #231815;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-drawer__nav .p-gnav__ja {
    font-size: 1rem;
  }
}

.p-drawer__nav .p-gnav__en {
  color: #cc4347;
  font-size: 1.25rem;
  font-family: "Libre Baskerville", serif;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-drawer__nav .p-gnav__en {
    font-size: 0.75rem;
  }
}

/* ドロワー内の購入ボタン */
.p-drawer__nav .p-gnav__purchase {
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  gap: 0.375rem;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-drawer__nav .p-gnav__purchase {
    writing-mode: horizontal-tb;
    flex-direction: row;
    justify-content: center;
    width: auto;
    height: auto;
    gap: 0.5rem;
  }
}

@media (any-hover: hover) {
  .p-drawer__nav .p-gnav__purchase:hover {
    transform: translateY(-0.125rem);
  }
  .p-drawer__nav .p-gnav__purchase:hover .p-gnav__purchase-icon {
    background: #cc4347;
  }
  .p-drawer__nav .p-gnav__purchase:hover .p-gnav__purchase-text {
    color: #cc4347;
  }
}
.p-drawer__nav .p-gnav__purchase-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4375rem;
  height: 3.4375rem;
  background: #cc4347;
  border-radius: 100vh;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-drawer__nav .p-gnav__purchase-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-drawer__nav .p-gnav__purchase-icon::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: #ffffff;
  -webkit-mask-image: url(../images/common/icon_cart.svg);
          mask-image: url(../images/common/icon_cart.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 768px) {
  .p-drawer__nav .p-gnav__purchase-icon::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-drawer__nav .p-gnav__purchase-text {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.1;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-drawer__nav .p-gnav__purchase-text {
    font-size: 1rem;
  }
}

/* ========================================
   Hamburger Button
   ======================================== */
.p-hamburger {
  display: block;
  position: relative;
  width: 4.1875rem;
  height: 2.8125rem;
  z-index: 10000;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
@media (max-width: 1750px) {
  .p-hamburger {
    width: 3.125rem;
    height: 2.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .p-hamburger {
    width: 2.5rem;
    height: 1.875rem;
  }
}

/* 下層ページPC時は非表示（トップページ以外） */
body:not(.home) .p-hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  body:not(.home) .p-hamburger {
    display: block;
  }
}

.p-hamburger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: #ffffff;
  border-radius: 0.125rem;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-hamburger__bar {
    background: #231815;
  }
}

.p-header.is-scrolled .p-hamburger__bar {
  background: #231815;
}

.p-hamburger__bar:nth-of-type(1) {
  top: 0;
  animation: hamburger-bar01 0.75s forwards;
}
@media (max-width: 1750px) {
  .p-hamburger__bar:nth-of-type(1) {
    animation: hamburger-bar01-1700 0.75s forwards;
  }
}
@media screen and (max-width: 768px) {
  .p-hamburger__bar:nth-of-type(1) {
    animation: hamburger-bar01-md 0.75s forwards;
  }
}

.p-hamburger__bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease-in-out, opacity 0.25s 0.25s;
}

.p-hamburger__bar:nth-of-type(3) {
  bottom: 0;
  animation: hamburger-bar03 0.75s forwards;
}
@media (max-width: 1750px) {
  .p-hamburger__bar:nth-of-type(3) {
    animation: hamburger-bar03-1700 0.75s forwards;
  }
}
@media screen and (max-width: 768px) {
  .p-hamburger__bar:nth-of-type(3) {
    animation: hamburger-bar03-md 0.75s forwards;
  }
}

@keyframes hamburger-bar01 {
  0% {
    transform: translateY(1.34375rem) rotate(45deg);
  }
  50% {
    transform: translateY(1.34375rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes hamburger-bar03 {
  0% {
    transform: translateY(-1.34375rem) rotate(-45deg);
  }
  50% {
    transform: translateY(-1.34375rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.js-hamburger.is-active .p-hamburger__bar {
  background: #231815;
}

.js-hamburger.is-active .p-hamburger__bar:nth-of-type(1) {
  animation: hamburger-bar01-active 0.75s forwards;
}
@media (max-width: 1750px) {
  .js-hamburger.is-active .p-hamburger__bar:nth-of-type(1) {
    animation: hamburger-bar01-active-1700 0.75s forwards;
  }
}
@media screen and (max-width: 768px) {
  .js-hamburger.is-active .p-hamburger__bar:nth-of-type(1) {
    animation: hamburger-bar01-active-md 0.75s forwards;
  }
}

.js-hamburger.is-active .p-hamburger__bar:nth-of-type(2) {
  opacity: 0;
}

.js-hamburger.is-active .p-hamburger__bar:nth-of-type(3) {
  animation: hamburger-bar03-active 0.75s forwards;
}
@media (max-width: 1750px) {
  .js-hamburger.is-active .p-hamburger__bar:nth-of-type(3) {
    animation: hamburger-bar03-active-1700 0.75s forwards;
  }
}
@media screen and (max-width: 768px) {
  .js-hamburger.is-active .p-hamburger__bar:nth-of-type(3) {
    animation: hamburger-bar03-active-md 0.75s forwards;
  }
}

@keyframes hamburger-bar01-active {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(1.34375rem) rotate(0);
  }
  100% {
    transform: translateY(1.34375rem) rotate(45deg);
  }
}
@keyframes hamburger-bar03-active {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-1.34375rem) rotate(0);
  }
  100% {
    transform: translateY(-1.34375rem) rotate(-45deg);
  }
}
/* 1700px用キーフレーム (height: 35, bar: 2 → translateY: 16.5) */
@keyframes hamburger-bar01-1700 {
  0% {
    transform: translateY(1.03125rem) rotate(45deg);
  }
  50% {
    transform: translateY(1.03125rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes hamburger-bar03-1700 {
  0% {
    transform: translateY(-1.03125rem) rotate(-45deg);
  }
  50% {
    transform: translateY(-1.03125rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes hamburger-bar01-active-1700 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(1.03125rem) rotate(0);
  }
  100% {
    transform: translateY(1.03125rem) rotate(45deg);
  }
}
@keyframes hamburger-bar03-active-1700 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-1.03125rem) rotate(0);
  }
  100% {
    transform: translateY(-1.03125rem) rotate(-45deg);
  }
}
/* md用キーフレーム (height: 30, bar: 2 → translateY: 14) */
@keyframes hamburger-bar01-md {
  0% {
    transform: translateY(0.875rem) rotate(45deg);
  }
  50% {
    transform: translateY(0.875rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes hamburger-bar03-md {
  0% {
    transform: translateY(-0.875rem) rotate(-45deg);
  }
  50% {
    transform: translateY(-0.875rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes hamburger-bar01-active-md {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(0.875rem) rotate(0);
  }
  100% {
    transform: translateY(0.875rem) rotate(45deg);
  }
}
@keyframes hamburger-bar03-active-md {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-0.875rem) rotate(0);
  }
  100% {
    transform: translateY(-0.875rem) rotate(-45deg);
  }
}
/* ========================================
   Header Section
   ======================================== */
.p-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}

.p-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-block: 3.75rem;
  padding-right: 3.9375rem;
  padding-left: 5.625rem;
  transition: ease-in-out, 0.3s;
}
@media (max-width: 1750px) {
  .p-header__inner {
    padding-block: 1.875rem;
    padding-top: 3.125vw;
  }
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.875rem;
    padding-inline: 1rem;
  }
}

.p-header.is-scrolled .p-header__inner {
  align-items: center;
  padding-block: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-header.is-scrolled .p-header__inner {
    padding-top: 0.5rem;
    padding-bottom: 0.875rem;
  }
}

.p-header__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  z-index: -1;
  opacity: 0;
  transition: ease-in-out, 0.3s;
}

.p-header.is-scrolled .p-header__inner::before {
  opacity: 1;
}

.p-header.is-drawer-open .p-header__inner::before {
  opacity: 0;
}

.p-header__logo {
  z-index: 1;
  max-width: 29.3125rem;
  aspect-ratio: 469/89;
  transition: ease-in-out, 0.3s;
}
@media (max-width: 1750px) {
  .p-header__logo {
    max-width: 17.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    max-width: 13.75rem;
  }
}

.p-header.is-drawer-open .p-header__logo {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-header.is-drawer-open .p-header__logo {
    opacity: 1;
    pointer-events: auto;
  }
}

.p-header__logo a {
  width: 100%;
  height: 100%;
}

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

.p-header--under .p-header__inner {
  padding-left: 3.5625rem;
  padding-right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-header--under .p-header__inner {
    padding-inline: 0.875rem;
  }
}

/* ========================================
   ナビゲーション表示制御
   ======================================== */
/* 基本：全ナビ非表示（SPでは常に非表示） */
.p-header__nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-header__nav {
    display: none;
  }
}

/* トップページ：全ナビ非表示 */
.home .p-header__nav {
  display: none;
}

/* ========================================
   下層ページ：ヘッダー背景
   ======================================== */
/* 下層ページ初期状態：白背景を表示 */
body:not(.home) .p-header__inner::before {
  opacity: 1;
  background: #ffffff;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

/* 下層ページスクロール後：半透明白背景+blur */
body:not(.home) .p-header.is-scrolled .p-header__inner::before {
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

/* ========================================
   下層ページ：縦書きナビ（初期状態）
   ======================================== */
/* 下層ページ初期：縦書きナビを表示 */
body:not(.home) .p-header__nav--vertical {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 7.6875rem;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  body:not(.home) .p-header__nav--vertical {
    display: none;
  }
}

/* 下層ページ初期：横書きナビを非表示 */
body:not(.home) .p-header__nav--horizontal {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  body:not(.home) .p-header__nav--horizontal {
    display: none;
  }
}

/* ========================================
   下層ページ：スクロール後（横書きナビに切り替え）
   ======================================== */
/* スクロール後：縦書きナビを非表示 */
body:not(.home) .p-header.is-scrolled .p-header__nav--vertical {
  display: none;
  opacity: 0;
  visibility: hidden;
}

/* スクロール後：横書きナビを表示 */
body:not(.home) .p-header.is-scrolled .p-header__nav--horizontal {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 2.5rem;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1800px) {
  body:not(.home) .p-header.is-scrolled .p-header__nav--horizontal {
    gap: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  body:not(.home) .p-header.is-scrolled .p-header__nav--horizontal {
    display: none;
  }
}

/* ========================================
   下層ページ：スクロールアニメーション
   ======================================== */
/* 下層ページのヘッダーにスクロールアニメーションを適用（PCのみ） */
@media screen and (min-width: 769px) {
  body:not(.home) .p-header {
    animation: none;
  }
  /* スクロール開始時（縦書きナビ→横書きナビへ） */
  body:not(.home) .p-header.is-scroll-forward {
    animation: header-hide-show 0.6s ease-in-out forwards;
  }
  /* スクロール解除時（横書きナビ→縦書きナビへ） */
  body:not(.home) .p-header.is-scroll-reverse {
    animation: header-show-hide 0.6s ease-in-out forwards;
  }
}
@keyframes header-hide-show {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-100%);
  }
  60% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes header-show-hide {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-100%);
  }
  60% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.p-header__actions {
  display: flex;
  gap: 1rem;
  z-index: 1;
  transition: ease-in-out, 0.3s;
}
@media (max-width: 1750px) {
  .p-header__actions {
    align-items: center;
  }
}

.p-header.is-scrolled .p-header__actions {
  align-items: center;
}

/* 下層ページPC時：actionsを非表示（ナビを右端に配置するため） */
body:not(.home) .p-header__actions {
  display: none;
  /* SP時は表示（ハンバーガーメニュー必要） */
}
@media screen and (max-width: 768px) {
  body:not(.home) .p-header__actions {
    display: flex;
  }
}

/* カートアイコン：SPのみ表示 */
.p-header__cart {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-header__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.875rem;
    height: 1.875rem;
  }
}

.p-header__cart-icon {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  background: #000;
  -webkit-mask-image: url(../images/common/icon_cart.svg);
          mask-image: url(../images/common/icon_cart.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.p-home-about {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1920/900;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-home-about {
    aspect-ratio: 375/460;
  }
}

.p-home-about__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  will-change: transform;
}

.p-home-about__bg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home-about__inner.l-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 109.375rem;
  padding-top: 11.8125rem;
  padding-bottom: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__inner.l-inner {
    padding-block: 2.5rem;
  }
}

.p-home-about__copy {
  padding-left: 3.4375rem;
  font-size: 2.5625rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.24em;
}
@media screen and (max-width: 768px) {
  .p-home-about__copy {
    padding-left: 0;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
  }
}

.p-home-about__content {
  align-self: flex-end;
}

.p-home-about__button {
  margin-top: 0.75rem;
}

.p-home-about__button .c-home-button {
  margin-left: auto;
}

.p-home-access {
  margin-top: 10.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-access {
    margin-top: 3.75rem;
  }
}

.p-home-access__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-home-access__inner {
    flex-direction: column;
  }
}

.p-home-access__body {
  width: 50%;
  padding-top: 4.375rem;
  padding-bottom: 3.125rem;
  padding-left: 3.75rem;
  padding-right: 5.8125rem;
  background: #f1ede5;
}
@media screen and (max-width: 768px) {
  .p-home-access__body {
    width: 100%;
    padding: 2.5rem 1.25rem;
  }
}

.p-home-access__balloon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-access__balloon {
    justify-content: flex-start;
    gap: 2.1875rem;
    margin-top: 1.375rem;
  }
}

.p-home-access__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 12.75rem;
}
@media screen and (max-width: 768px) {
  .p-home-access__heading {
    align-items: center;
    padding-right: 0;
  }
}

.p-home-access__icon {
  width: 1.75rem;
  height: auto;
  margin-right: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-home-access__icon {
    margin-right: 0;
  }
}

.p-home-access__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-home-access__en {
  margin-top: 0.5rem;
}

.p-home-access__photo {
  width: 8.75rem;
  height: 8.75rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-home-access__photo {
    width: 6.25rem;
    height: 6.25rem;
  }
}

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

.p-home-access__balloon-text {
  position: relative;
  padding: 1.5rem 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-home-access__balloon-text {
    padding: 2rem 1rem;
    font-size: 1rem;
  }
}

.p-home-access__balloon-text::before,
.p-home-access__balloon-text::after {
  content: "";
  position: absolute;
  left: 0;
  width: 6.875rem;
  height: 0.25rem;
  background: url(../images/home/access_bar.webp) no-repeat center/contain;
}

.p-home-access__balloon-text::before {
  top: -0.625rem;
  transform: rotate(-15deg);
  transform-origin: right center;
}

.p-home-access__balloon-text::after {
  bottom: -0.625rem;
  transform: rotate(15deg);
  transform-origin: right center;
}

.p-home-access__info {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-home-access__info {
    margin-top: 1.5rem;
  }
}

.p-home-access__route {
  display: flex;
  gap: 1rem;
  margin-top: 2.75rem;
  justify-content: flex-end;
  text-align: left;
  padding-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-access__route {
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.75rem;
    padding-right: 0;
  }
}

.p-home-access__route-label {
  padding-top: 3.4375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.p-home-access__route-detail {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.14em;
}

.p-home-access__route-detail p + p {
  margin-top: 1rem;
}

.p-home-access__map {
  width: 50%;
  aspect-ratio: 960/592;
}
@media screen and (max-width: 768px) {
  .p-home-access__map {
    width: 100%;
    aspect-ratio: 16/9;
  }
}

.p-home-access__map iframe {
  width: 100%;
  height: 100%;
}

.p-home-circular-agriculture {
  aspect-ratio: 1920/1080;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .p-home-circular-agriculture {
    aspect-ratio: auto;
  }
}

.p-home-circular-agriculture__inner.l-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding-top: 23.125rem;
  padding-bottom: 22.1875rem;
}
@media screen and (max-width: 768px) {
  .p-home-circular-agriculture__inner.l-inner {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-home-circular-agriculture__body {
  position: relative;
  z-index: 50;
  width: 100%;
  max-width: 82.5rem;
  margin-right: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-home-circular-agriculture__body {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }
}

.p-home-circular-agriculture__copy {
  font-size: 2.5625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 768px) {
  .p-home-circular-agriculture__copy {
    font-size: 1.5rem;
    letter-spacing: 0.01em;
  }
}

.p-home-circular-agriculture__content {
  margin-top: 8.75rem;
  margin-left: auto;
  padding-left: 14.375rem;
}
@media screen and (max-width: 768px) {
  .p-home-circular-agriculture__content {
    margin-top: 1.5rem;
    padding-left: 0;
  }
}

.p-home-circular-agriculture__label {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

.p-home-circular-agriculture__icon {
  width: 2rem;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-home-circular-agriculture__icon {
    width: 1.5rem;
  }
}

.p-home-circular-agriculture__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-home-circular-agriculture__en.c-home-title {
  letter-spacing: 0.1em;
}

.p-home-circular-agriculture__title {
  margin-top: 1.4375rem;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-home-circular-agriculture__title {
    font-size: 1.125rem;
    letter-spacing: 0.1em;
  }
}

.p-home-circular-agriculture__button {
  margin-top: 2rem;
}

.p-home-circular-agriculture__image {
  position: absolute;
  top: 2.2916666667vw;
  left: 69.0104166667vw;
  width: 100%;
  max-width: 47.9166666667vw;
  aspect-ratio: 1;
  opacity: 0;
  translate: -50% 80px;
  rotate: -45deg;
  transition: opacity 2.6s ease, translate 1.6s ease, rotate 1.6s ease;
}
@media (max-width: 1700px) {
  .p-home-circular-agriculture__image {
    top: 7.3vw;
  }
}
@media (max-width: 1500px) {
  .p-home-circular-agriculture__image {
    top: 9vw;
  }
}
@media screen and (max-width: 768px) {
  .p-home-circular-agriculture__image {
    width: 100%;
    max-width: 100%;
    position: static;
    translate: 0;
  }
}

.p-home-circular-agriculture__image.is-visible {
  opacity: 1;
  translate: -50% 0;
  rotate: 0deg;
}
@media screen and (max-width: 768px) {
  .p-home-circular-agriculture__image.is-visible {
    translate: 0;
  }
}

.p-home-circular-agriculture__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-home-fv {
  aspect-ratio: 1920/884;
}
@media screen and (max-width: 768px) {
  .p-home-fv {
    aspect-ratio: auto;
    height: 40rem;
  }
}

.p-home-fv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-home-fv__title {
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #ffffff;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.2702702703;
  letter-spacing: 0.22em;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-home-fv__title {
    top: 46%;
    font-size: 1.75rem;
    line-height: 1.4;
  }
}

.p-home-fv__list {
  width: 100%;
  height: 100%;
}

.p-home-fv__item {
  height: 100%;
  overflow: hidden;
}

.p-home-fv__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.15);
}

.p-home-fv__item.is-zooming img {
  animation: fv-zoom-out 7s linear forwards;
}

.p-home-fv__item.is-zoom-paused img {
  animation-play-state: paused;
}

@keyframes fv-zoom-out {
  0% {
    transform: scale(1.13);
  }
  100% {
    transform: scale(1);
  }
}
.p-home-fv__scroll {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-home-fv__scroll {
    bottom: 1rem;
  }
}

.p-home-fv__scroll-arrow {
  display: block;
  width: 1.25rem;
  height: 2.5rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-home-fv__scroll-arrow {
    height: 1.875rem;
  }
}

.p-home-fv__scroll-arrow::before {
  content: "↓";
  position: absolute;
  top: 0;
  left: 50%;
  color: #ffffff;
  font-size: 2.125rem;
  line-height: 1;
  transform: translateX(-50%);
  animation: scroll-arrow 2s linear infinite;
}

.p-home-fv__scroll-text {
  font-family: "Libre Baskerville", serif;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .p-home-fv__scroll-text {
    font-size: 0.75rem;
  }
}

.js-title-char {
  display: inline-block;
  opacity: 0;
}

.js-title-char.is-visible {
  animation: title-char-appear 0.6s ease-in-out forwards;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transition-delay: var(--fade-delay, 0s);
}

.js-fadeUp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeUp-stagger,
.js-fadeUp-stagger-grid {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transition-delay: var(--fade-delay, 0s);
}

.js-fadeUp-stagger.is-visible,
.js-fadeUp-stagger-grid.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeUp.no-transition,
.js-fadeUp-stagger.no-transition,
.js-fadeUp-stagger-grid.no-transition,
.js-zoomOut.no-transition {
  transition: none !important;
}

.js-title-char.no-transition {
  animation: none !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@keyframes title-char-appear {
  0% {
    opacity: 0;
    transform: translateY(0.2em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scroll-arrow {
  0% {
    transform: translateX(-50%) translateY(-100%);
    opacity: 1;
  }
  45% {
    transform: translateX(-50%) translateY(100%);
    opacity: 1;
  }
  45.1% {
    opacity: 0;
  }
  99.9% {
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(-100%);
    opacity: 1;
  }
}
.wp-block-lazyblock-fv-slider {
  height: 100%;
}

.p-home-instagram__inner.l-inner {
  max-width: 98.125rem;
  padding-top: 4.1875rem;
}

.p-home-instagram__en {
  text-align: center;
}

.p-home-instagram__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-home-instagram__heading {
    margin-top: 1.25rem;
  }
}

.p-home-instagram__icon {
  width: 1.75rem;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-home-instagram__title {
  font-family: "Libre Baskerville", serif;
  font-size: 2.3125rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-home-instagram__title {
    font-size: 1.5rem;
  }
}

.p-home-instagram__body {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-home-instagram__body {
    max-width: 80%;
    margin-top: 2.5rem;
    margin-inline: auto;
  }
}

.p-home-instagram__box #sbi_images {
  border-radius: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-home-instagram__box #sbi_images {
    border-radius: 0;
  }
}

#sb_instagram #sbi_images {
  padding: 0;
}

.sbi_photo_wrap {
  overflow: hidden;
}

.sbi_photo_wrap img {
  transition: ease-in-out, 0.5s !important;
}

@media (any-hover: hover) {
  a.sbi_photo:hover {
    transition: ease-in-out, 0.5s !important;
  }
  a.sbi_photo:hover img {
    scale: 1.05 !important;
    transition: ease-in-out, 0.5s !important;
  }
}
.p-home-news__inner {
  max-width: 70rem;
  padding-top: 2.75rem;
  padding-bottom: 4.8125rem;
}

.p-home-news__wrapper {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 3.75rem;
  padding-right: 7.8125rem;
  padding-left: 8.125rem;
  border: 0.6875rem solid #f1ede5;
  border-radius: 100vh;
}
@media screen and (max-width: 768px) {
  .p-home-news__wrapper {
    padding: 1.875rem 1rem;
    border-radius: 1.875rem;
  }
}

.p-home-news__header {
  text-align: center;
}

.p-home-news__en-title {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  padding-inline: 1.25rem;
  background: #ffffff;
  line-height: 1.2;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-home-news__en-title {
    top: -0.875rem;
    font-size: 0.875rem;
  }
}

.p-home-news__title {
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-home-news__title {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}

.p-home-news__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-home-news__body {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1rem;
  }
}

.p-home-news__list {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-home-news__list {
    width: 100%;
  }
}

.p-home-news__item + .p-home-news__item {
  margin-top: 1rem;
}

.p-home-news__item a {
  display: flex;
  align-items: center;
  gap: 3.125rem;
  text-decoration: none;
  color: #231815;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-home-news__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
    padding: 0.625rem 0.25rem;
  }
}

@media (any-hover: hover) {
  .p-home-news__item a:hover {
    color: #cc4347;
  }
}
.p-home-news__meta {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-home-news__meta {
    gap: 0.625rem;
  }
}

.p-home-news__label {
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-home-news__label {
    font-size: 1rem;
  }
}

.p-home-news__date {
  font-size: 1.125rem;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-home-news__date {
    font-size: 1rem;
  }
}

.p-home-news__text {
  font-size: 1.125rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-home-news__text {
    font-size: 1rem;
  }
}

.p-home-news__empty {
  flex: 1;
  font-size: 1.125rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-home-news__empty {
    font-size: 1rem;
  }
}

.p-home-news__button {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-home-news__button {
    margin-left: auto;
  }
}

.p-home-news__button-link {
  display: inline-block;
  padding: 0.625rem 1.75rem;
  background: #f1ede5;
  border: 0.1875rem solid #f1ede5;
  border-radius: 100vh;
  line-height: 1;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-home-news__button-link {
    padding: 0.375rem 1.625rem;
  }
}

@media (any-hover: hover) {
  .p-home-news__button-link:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-0.125rem);
  }
}
.p-home-online__images {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-home-online__images {
    flex-wrap: wrap;
  }
}

.p-home-online__image {
  height: 47.6875rem;
}
@media screen and (max-width: 768px) {
  .p-home-online__image {
    height: 18.75rem;
  }
}

.p-home-online__image:first-child,
.p-home-online__image:nth-child(2) {
  width: 31.3020833334%;
}
@media screen and (max-width: 768px) {
  .p-home-online__image:first-child,
  .p-home-online__image:nth-child(2) {
    width: 50%;
  }
}

.p-home-online__image--last {
  position: relative;
  width: 37.3958333333%;
}
@media screen and (max-width: 768px) {
  .p-home-online__image--last {
    width: 100%;
  }
}

.p-home-online__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}

.p-home-online__copy {
  position: absolute;
  top: 4.25rem;
  left: 2.5rem;
  font-size: 2.5625rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-home-online__copy {
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}

.p-home-online__button {
  position: absolute;
  right: 1.875rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 23.4375rem;
  padding-right: 0.5rem;
  background: #ffffff;
  border: 0.1875rem solid #cc4347;
  border-radius: 100vh;
  color: #cc4347;
  font-size: 1.125rem;
  text-decoration: none;
  line-height: 1;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-home-online__button {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    gap: 0.75rem;
    max-width: 20.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-home-online__button.js-fadeUp {
    transform: translateX(-50%) translateY(30px);
  }
}

@media screen and (max-width: 768px) {
  .p-home-online__button.js-fadeUp.is-visible {
    transform: translateX(-50%) translateY(0);
  }
}

@media (any-hover: hover) {
  .p-home-online__button:hover {
    background: #cc4347;
    color: #ffffff;
    transform: translateY(-0.125rem);
  }
}
@media screen and (any-hover: hover) and (max-width: 768px) {
  .p-home-online__button:hover {
    transform: translateX(-50%) translateY(-0.125rem);
  }
}
@media (any-hover: hover) {
  .p-home-online__button:hover .p-home-online__cart {
    background-color: #ffffff;
  }
  .p-home-online__button:hover .p-home-online__cart img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(44%) saturate(2156%) hue-rotate(339deg) brightness(91%) contrast(87%);
  }
}
.p-home-online__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
  background: #cc4347;
  border-radius: 100vh;
  flex-shrink: 0;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-home-online__cart {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.p-home-online__cart img {
  width: 1.375rem;
  height: 1.375rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-home-online__cart img {
    width: 1.125rem;
  }
}

.p-home-online__button-text {
  font-size: 1.125rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-home-online__button-text {
    font-size: 1rem;
  }
}

.p-home-online__content {
  position: absolute;
  bottom: 5.625rem;
  right: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-home-online__content {
    right: auto;
    left: 50%;
    bottom: 4.1875rem;
    transform: translateX(-50%);
    width: 100%;
    max-width: 20.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-home-online__content .p-title-row {
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
  }
}

.p-home-online__content .p-title-row__title {
  color: #cc4347;
}
@media screen and (max-width: 768px) {
  .p-home-online__content .p-title-row__title {
    color: #ffffff;
  }
}

.p-home-online__content .c-home-title {
  color: #cc4347;
}

.p-home-online__product-button {
  margin-top: 0.75rem;
}

.p-home-online__product-button .c-home-button {
  margin-left: auto;
}

.p-home-sns {
  position: fixed;
  top: 0;
  right: max(0.625rem, env(safe-area-inset-right));
  z-index: 100;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .p-home-sns {
    top: 50%;
    right: max(0.625rem, env(safe-area-inset-right));
  }
}

.p-home-sns__link {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-home-sns__link {
    gap: 0.5rem;
  }
}

@media (any-hover: hover) {
  .p-home-sns__link:hover {
    color: #cc4347;
  }
}
.p-home-sns__text {
  writing-mode: vertical-rl;
  font-family: "Libre Baskerville", serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (max-width: 1800px) {
  .p-home-sns__text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .p-home-sns__text {
    font-size: 0.875rem;
  }
}

.p-home-sns__icon {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  background: #231815;
  -webkit-mask-image: url(../images/common/instagram_01.svg);
          mask-image: url(../images/common/instagram_01.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.3s;
}
@media (max-width: 1500px) {
  .p-home-sns__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-home-sns__icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (any-hover: hover) {
  .p-home-sns__link:hover .p-home-sns__icon {
    background: #cc4347;
  }
}
.p-news-detail__inner {
  max-width: 83.125rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
  padding-top: 4.5625rem;
}

.p-news-detail__date {
  font-family: "Libre Baskerville", serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2857142857;
  letter-spacing: 0.123em;
  color: #cc4347;
}
@media screen and (max-width: 768px) {
  .p-news-detail__date {
    font-size: 0.75rem;
  }
}

.p-news-detail__title {
  margin-top: 1rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.052em;
}
@media screen and (max-width: 768px) {
  .p-news-detail__title {
    margin-top: 0.75rem;
    font-size: 1.375rem;
  }
}

.p-news-detail__body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body {
    margin-top: 1.875rem;
  }
}

.p-news-detail__body > *:first-child {
  margin-top: 0;
}

.p-news-detail__body p {
  margin-top: 1.6875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #1a1411;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body p {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-news-detail__body h2 {
  margin-top: 4.125rem;
  padding-left: 0.875rem;
  background-color: #f5f5f5;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.875;
  letter-spacing: 0.052em;
  color: #1a1411;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body h2 {
    margin-top: 3rem;
    padding-inline: 0.625rem;
    font-size: 1.25rem;
    line-height: 2;
  }
}

.p-news-detail__body h3 {
  position: relative;
  margin-top: 4.125rem;
  padding-left: 1.8125rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.7777777778;
  letter-spacing: 0.025em;
  color: #cc4347;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body h3 {
    margin-top: 3rem;
    padding-left: 1.25rem;
    font-size: 1rem;
  }
}

.p-news-detail__body h3::before {
  content: "";
  position: absolute;
  top: 0.5lh;
  left: 0;
  width: 0.9375rem;
  height: 1px;
  background-color: #cc4347;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-news-detail__body h3::before {
    top: 0.55lh;
  }
}

.p-news-detail__body ol {
  margin-top: 3.8125rem;
  padding-left: 1.5rem;
  list-style-type: decimal;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body ol {
    margin-top: 2.5rem;
    padding-left: 1.25rem;
  }
}

.p-news-detail__body ol li {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4444444444;
  letter-spacing: 0.052em;
  color: #1a1411;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body ol li {
    font-size: 0.9375rem;
  }
}

.p-news-detail__body ol li::marker {
  color: #cc4347;
}

.p-news-detail__body ol li + li {
  margin-top: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body ol li + li {
    margin-top: 0.375rem;
  }
}

.p-news-detail__body ul {
  margin-top: 2.5rem;
  padding-left: 1rem;
  list-style-type: disc;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body ul {
    margin-top: 1.75rem;
    padding-left: 1rem;
  }
}

.p-news-detail__body ul li {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875;
  letter-spacing: 0.036em;
  color: #1a1411;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body ul li {
    font-size: 0.875rem;
  }
}

.p-news-detail__body ul li::marker {
  color: #cc4347;
}

.p-news-detail__body ul li + li {
  margin-top: 0.0625rem;
}

.p-news-detail__body blockquote {
  position: relative;
  margin-top: 3.3125rem;
  padding: 2.6875rem 2.3125rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body blockquote {
    margin-top: 2.25rem;
    padding: 1.875rem 1.5rem;
  }
}

.p-news-detail__body blockquote p {
  margin-top: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.036em;
  color: #1a1411;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body blockquote p {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-news-detail__body blockquote::before {
  content: "“";
  position: absolute;
  top: 0.625rem;
  left: 0.875rem;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.052em;
  color: #cc4347;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body blockquote::before {
    left: 0.625rem;
    font-size: 1.5rem;
  }
}

.p-news-detail__body blockquote::after {
  content: "”";
  position: absolute;
  right: 1.3125rem;
  bottom: 0.625rem;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.052em;
  color: #cc4347;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body blockquote::after {
    right: 0.875rem;
    font-size: 1.5rem;
  }
}

.p-news-detail__body figure {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body figure {
    margin-top: 1.25rem;
  }
}

.p-news-detail__body img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1280/857;
}

.p-news-detail__body > *:last-child {
  margin-top: 3.625rem;
}
@media screen and (max-width: 768px) {
  .p-news-detail__body > *:last-child {
    margin-top: 2.5rem;
  }
}

.p-news-detail__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-news-detail__nav {
    flex-wrap: wrap;
    margin-top: 3.125rem;
  }
}

.p-news-detail__nav-item {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-news-detail__nav-item {
    flex: none;
  }
}

.p-news-detail__nav-item--prev {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-news-detail__nav-item--prev {
    order: 1;
  }
}

.p-news-detail__nav-item--list {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-news-detail__nav-item--list {
    order: 3;
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-news-detail__nav-item--next {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-news-detail__nav-item--next {
    order: 2;
  }
}

.p-news-detail__nav-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4285714286;
  letter-spacing: 0.052em;
  color: #1a1411;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-news-detail__nav-link {
    font-size: 0.75rem;
  }
}

.p-news-detail__nav-item--list .p-news-detail__nav-link {
  position: relative;
  isolation: isolate;
  padding: 0.6875rem 2.8125rem;
  border-radius: 100vh;
  overflow: hidden;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-news-detail__nav-item--list .p-news-detail__nav-link {
    padding: 0.5rem 1.875rem;
  }
}

.p-news-detail__nav-item--list .p-news-detail__nav-link::before,
.p-news-detail__nav-item--list .p-news-detail__nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.p-news-detail__nav-item--list .p-news-detail__nav-link::before {
  background-color: #ecece2;
  z-index: -2;
}

.p-news-detail__nav-item--list .p-news-detail__nav-link::after {
  background-color: #cc4347;
  transform: translateX(-101%);
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}

.p-news-detail__nav-item--prev .p-news-detail__nav-link::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  background-color: #1a1411;
  -webkit-mask-image: url("../images/common/icon_arrow.svg");
  mask-image: url("../images/common/icon_arrow.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: scaleX(-1);
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.p-news-detail__nav-item--next .p-news-detail__nav-link::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  background-color: #1a1411;
  -webkit-mask-image: url("../images/common/icon_arrow.svg");
  mask-image: url("../images/common/icon_arrow.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .p-news-detail__nav-link:hover {
    color: #cc4347;
  }
  .p-news-detail__nav-item--prev .p-news-detail__nav-link:hover::before {
    background-color: #cc4347;
    transform: scaleX(-1) translateX(0.1875rem);
  }
  .p-news-detail__nav-item--next .p-news-detail__nav-link:hover::after {
    background-color: #cc4347;
    transform: translateX(0.1875rem);
  }
  .p-news-detail__nav-item--list .p-news-detail__nav-link:hover {
    color: #ffffff;
    transform: translateY(-0.125rem);
  }
  .p-news-detail__nav-item--list .p-news-detail__nav-link:hover::after {
    transform: translateX(0);
  }
}
.p-news__inner {
  max-width: 83.125rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
  padding-top: 9.125rem;
}
@media screen and (max-width: 768px) {
  .p-news__inner {
    padding-top: 6.25rem;
    padding-bottom: 11.25rem;
  }
}

.p-news__item + .p-news__item {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-news__item + .p-news__item {
    margin-top: 2rem;
  }
}

.p-news__link {
  display: flex;
  gap: 2.625rem;
  text-decoration: none;
  color: #1a1411;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-news__link {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (any-hover: hover) {
  .p-news__link:hover .p-news__more {
    background-position: left;
    color: #ffffff;
  }
}
.p-news__item-header {
  flex-shrink: 0;
  width: 20.8125rem;
  height: 100%;
  aspect-ratio: 333/223;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .p-news__item-header {
    width: 100%;
  }
}

.p-news__item-header img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .p-news__link:hover .p-news__item-header img {
    transform: scale(1.05);
  }
}
.p-news__item-body {
  position: relative;
  flex: 1;
  min-width: 0;
  padding-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-news__item-body {
    padding-top: 0;
  }
}

.p-news__date {
  font-family: "Libre Baskerville", serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2857142857;
  letter-spacing: 0.123em;
  color: #b22d35;
}
@media screen and (max-width: 768px) {
  .p-news__date {
    font-size: 0.8125rem;
  }
}

.p-news__title {
  margin-top: 1.125rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.052em;
}
@media screen and (max-width: 768px) {
  .p-news__title {
    margin-top: 0.5rem;
    font-size: 1.125rem;
  }
}

.p-news__excerpt {
  display: -webkit-box;
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.7142857143;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-news__excerpt {
    margin-top: 0.5rem;
    -webkit-line-clamp: 2;
    font-size: 0.8125rem;
  }
}

.p-news__more {
  display: block;
  width: 10.6875rem;
  margin-top: 1.0625rem;
  margin-left: auto;
  padding: 0.6875rem 2.8125rem;
  background: linear-gradient(to right, #cc4347 50%, #ecece2 50%);
  background-size: 210% 100%;
  background-position: right;
  border-radius: 100vh;
  color: #1a1411;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875;
  text-align: center;
  transition: background-position 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-news__more {
    width: 8.75rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
}

.p-news__empty {
  font-size: 1.125rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-news__empty {
    font-size: 1rem;
  }
}

.p-news__pagination {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-news__pagination {
    margin-top: 3.75rem;
  }
}

.p-news__pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6875rem;
}

.p-news__pagination-item .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e0e0cc;
  color: #1a1411;
  font-family: "Libre Baskerville", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.p-news__pagination-item .page-numbers.current {
  background: #ecece3;
  border-color: #ecece3;
}

.p-news__pagination-item .page-numbers.dots {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
}

@media (any-hover: hover) {
  .p-news__pagination-item a.page-numbers:hover {
    background: rgba(236, 236, 227, 0.6);
  }
}
.p-news__pagination-item--prev {
  margin-right: 0.875rem;
}

.p-news__pagination-item--next {
  margin-left: 0.875rem;
}

.p-news__pagination-prev,
.p-news__pagination-next {
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url("../images/common/icon_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease-in-out;
}

.p-news__pagination-prev {
  transform: scaleX(-1);
}

@media (any-hover: hover) {
  .p-news__pagination-prev:hover {
    transform: scaleX(-1) translateX(0.1875rem);
  }
  .p-news__pagination-next:hover {
    transform: translateX(0.1875rem);
  }
}
.p-opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
  opacity: 1;
  transition: opacity 1s ease-out;
}

.p-opening.is-fadeout {
  opacity: 0;
}

.p-opening.is-hidden {
  pointer-events: none;
  visibility: hidden;
}

.p-opening__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-opening__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  animation: openingZoomIn 3.5s ease-out forwards;
}

.p-opening__logo {
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  animation: openingLogoIn 1.2s ease-out 0.6s forwards;
}
@media screen and (max-width: 768px) {
  .p-opening__logo {
    width: 100%;
    text-align: center;
  }
}

.p-opening__logo img {
  width: min(400px, 40vw);
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-opening__logo img {
    width: min(14.0625rem, 70vw);
  }
}

@keyframes openingZoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes openingLogoIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
body.is-opening-active {
  overflow: hidden;
}

/* ========================================
   Page Top Button
   ======================================== */
.p-page-top {
  position: absolute;
  right: 2.3125rem;
  top: -3.5625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  color: #cc4347;
  letter-spacing: 0.25em;
  line-height: 1;
  cursor: pointer;
  transition: ease-in-out, 0.3s;
}

.p-page-top::before,
.p-page-top::after {
  content: "";
  display: block;
}

.p-page-top::before {
  width: 0.0625rem;
  height: 1.25rem;
  background: currentColor;
}

.p-page-top::after {
  position: absolute;
  top: 0.0625rem;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.0625rem solid currentColor;
  border-right: 0.0625rem solid currentColor;
  transform: translateX(-50%) rotate(-45deg);
  transform-origin: center;
}

.p-page-top:hover {
  color: #231815;
  transform: translateY(-8px);
}

.p-product__nav {
  margin-top: 9.375rem;
}
@media screen and (max-width: 768px) {
  .p-product__nav {
    margin-top: 4.375rem;
  }
}

.p-product__nav.l-inner {
  max-width: 83.125rem;
}

.p-product__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-product__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.75rem;
  }
}

.p-product__item {
  position: relative;
  overflow: hidden;
  border: 1px solid #9f9f9f;
}

.p-product__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #cc4347;
  transform: translateX(-101%);
  transition: 0.3s ease-in-out;
  transition: ease-in-out, 0.3s;
}

.p-product__item a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.25rem 3.25rem 1.25rem 1.625rem;
  color: #1a1411;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1818181818;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-product__item a {
    padding: 0.75rem 2rem 0.75rem 0.75rem;
    font-size: 1rem;
  }
}

.p-product__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #1a1411;
  -webkit-mask-image: url("../images/common/icon_arrow.svg");
          mask-image: url("../images/common/icon_arrow.svg");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transform: translateY(-50%) rotate(90deg);
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-product__item a::after {
    right: 0.75rem;
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-product__item:hover::before,
.p-product__item:focus-within::before {
  transform: translateX(0);
}

.p-product__item:hover a,
.p-product__item:focus-within a {
  color: #ffffff;
}

.p-product__item:hover a::after,
.p-product__item:focus-within a::after {
  background-color: #ffffff;
}

.p-product__detail {
  margin-top: 12.0625rem;
}
@media screen and (max-width: 768px) {
  .p-product__detail {
    margin-top: 5rem;
  }
}

.p-product__block + .p-product__block {
  margin-top: 9.1875rem;
}
@media screen and (max-width: 768px) {
  .p-product__block + .p-product__block {
    margin-top: 6.25rem;
  }
}

.p-product__header {
  position: relative;
}

.p-product__body {
  margin-top: 2.1875rem;
}

.p-product__title {
  position: relative;
  padding-left: 2.025rem;
  color: #1a1411;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.5294117647;
  letter-spacing: 0.033em;
}
@media screen and (max-width: 768px) {
  .p-product__title {
    padding-left: 1.5rem;
    font-size: 1.375rem;
  }
}

.p-product__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.2125rem;
  border-top: 1.5px solid #cc4347;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-product__title::before {
    width: 0.9375rem;
  }
}

.p-product__images {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-product__images {
    flex-direction: column;
  }
}

.p-product__description + .p-product__images {
  margin-top: 0;
}

.p-product__image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-product__image {
    width: 100%;
  }
}

.p-product__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 960/642;
}

.p-product__content {
  padding-block: 5.375rem;
  background-color: #efefef;
}
@media screen and (max-width: 768px) {
  .p-product__content {
    padding-block: 2.875rem;
  }
}

.p-product__comment {
  color: #1a1411;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.6785714286;
  letter-spacing: 0.033em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-product__comment {
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}

.p-product__online {
  padding-block: 8.375rem;
  background-color: #efefef;
}
@media screen and (max-width: 768px) {
  .p-product__online {
    padding-block: 5rem;
  }
}

.p-product__online-inner {
  max-width: 106.5rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-product__online-inner {
    padding-inline: 1.25rem;
  }
}

.p-product__online-header {
  position: relative;
}

.p-product__online-title {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 2.025rem;
  color: #1a1411;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.5294117647;
  letter-spacing: 0.033em;
}
@media screen and (max-width: 768px) {
  .p-product__online-title {
    padding-left: 1.5rem;
    font-size: 1.5rem;
  }
}

.p-product__online-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.2125rem;
  border-top: 1.5px solid #cc4347;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-product__online-title::before {
    width: 0.9375rem;
  }
}

.p-product__online-body {
  margin-top: 1.25rem;
}

.p-product__online-text {
  color: #1a1411;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6666666667;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-product__online-text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.p-product__online-button {
  display: flex;
  align-items: center;
  gap: 1.9375rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 2.3125rem;
  padding-right: 3.4375rem;
  background-color: #ffffff;
  border: 2px solid #cc4347;
  border-radius: 1.75rem;
  color: #cc4347;
  text-decoration: none;
  line-height: 1;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-product__online-button {
    width: 100%;
    margin-top: 1.75rem;
    padding-right: 1.25rem;
  }
}

.p-product__online-image {
  margin-top: 3.75rem;
  width: 100%;
  height: auto;
  aspect-ratio: 1654/587;
}
@media screen and (max-width: 768px) {
  .p-product__online-image {
    margin-top: 2.5rem;
  }
}

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

@media (any-hover: hover) {
  .p-product__online-button:hover {
    background-color: #cc4347;
    color: #ffffff;
    transform: translateY(-0.125rem);
  }
  .p-product__online-button:hover .p-product__online-cart {
    background-color: #ffffff;
  }
  .p-product__online-button:hover .p-product__online-cart img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(44%) saturate(2156%) hue-rotate(339deg) brightness(91%) contrast(87%);
  }
}
.p-product__online-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.3125rem;
  height: 3.3125rem;
  margin-left: -0.03125rem;
  background-color: #cc4347;
  border: 1px solid #cc4347;
  border-radius: 100vh;
  flex-shrink: 0;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-product__online-cart {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.p-product__online-cart img {
  width: 1.375rem;
  height: 1.375rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-product__online-cart img {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.p-product__online-button-text {
  font-size: 1.25rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-product__online-button-text {
    font-size: 1rem;
  }
}

.p-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-title-row {
    gap: 0.5rem;
  }
}

.p-title-row__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.p-title-row__icon {
  width: 2rem;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-title-row__icon {
    width: 1.5rem;
  }
}

.p-title-row__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-title-row__title {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  .p-title-row__title {
    font-size: 1.125rem;
    letter-spacing: 0.1em;
  }
}

.p-home-about .p-title-row__title {
  color: #ffffff;
}

.p-under-fv {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/468;
  margin-top: 0.9375rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .p-under-fv {
    margin-top: 0.375rem;
    aspect-ratio: 375/170;
  }
}

.p-under-fv__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-under-fv__inner {
    max-width: 40rem;
    padding-inline: 1.25rem;
  }
}

.p-under-fv__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-under-fv__header {
    gap: 0.25rem;
    padding-bottom: 2.5rem;
  }
}

.p-under-fv__subtitle {
  font-family: "Libre Baskerville", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-under-fv__subtitle {
    font-size: 0.9375rem;
  }
}

.p-under-fv__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-under-fv__title {
    font-size: 1.625rem;
    letter-spacing: normal;
  }
}

.p-under {
  margin-top: var(--under-header-offset, 0px);
}
@media screen and (max-width: 768px) {
  .p-under {
    margin-top: 6.25rem;
  }
}

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

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

.u-df {
  display: flex;
}

.u-jc-c {
  justify-content: center;
}

.u-jc-sb {
  justify-content: space-between;
}

.u-ai-c {
  align-items: center;
}

@media screen and (max-width: 768px) {
  .u-ai-c-md-max {
    align-items: center;
  }
}

.u-fd-c {
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .u-fd-c-md-max {
    flex-direction: column;
  }
}

.u-font-medium {
  font-weight: 500;
}

.u-font-bold {
  font-weight: 700;
}

.u-po-rel {
  position: relative;
}

.u-po-abs {
  position: absolute;
}

@media screen and (max-width: 768px) {
  .u-po-sta-md-max {
    position: static;
  }
}
/*# sourceMappingURL=style.css.map */
