@charset "UTF-8";
/* リキッドレイアウト対応 */
/*======================================
  デザインアプローチ設定  
======================================*/
/*======================================
  インナー幅設定  
======================================*/
/*======================================
  アートボード幅設定
======================================*/
/*======================================
  余白設定
======================================*/
/*======================================
  フォント設定
======================================*/
/*======================================
  色の指定
======================================*/
/*======================================
  デフォルト設定
======================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #3a2e2a;
  background-color: #f8f5f0;
  line-height: 1.5;
  position: relative;
  z-index: -10;
}

/*======================================
  画像レイヤー接頭辞による分類  
======================================*/
/*======================================
  自動コーディング設定
======================================*/
/*======================================
  Margin方向性ルール設定
======================================*/
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

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

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

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

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

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

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

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

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

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

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

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

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

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.75rem 1rem 3.75rem;
  border: 1px solid #3a2e2a;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-btn {
    width: fit-content;
  }
}

.c-btn span {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

.c-btn__icon {
  position: relative;
  width: 3rem;
  height: 1.5rem;
}

.c-btn__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask-image: var(--arrow-right-icon-url);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: var(--arrow-right-icon-url);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #3a2e2a;
  transition: background-color 0.3s ease;
}

@media (any-hover: hover) {
  .c-btn:hover {
    color: #f8f5f0;
    background-color: #c9a66b;
    border-color: #c9a66b;
  }
  .c-btn:hover .c-btn__icon::after {
    background-color: #f8f5f0;
  }
}
.c-head {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-head {
    font-size: 4rem;
  }
}

.l-inner {
  max-width: 34.375rem;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.p-footer {
  background-color: #fff;
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-block: 3rem 2.5rem;
  }
}

.p-footer.--fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (min-width: 768px) {
  .p-footer__inner.l-inner {
    max-width: 88.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.p-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin-inline: 0;
  }
}

.p-footer__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-footer__nav {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__menu {
    display: flex;
    gap: 1.25rem;
  }
}

.p-footer__menu-item {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__menu-item {
    padding: 0.75rem 0.5rem;
  }
}

.p-footer__menu-item:not(:first-child) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__menu-item:not(:first-child) {
    margin-top: 0;
  }
}

.p-footer__menu-link {
  display: block;
  color: #3a2e2a;
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-footer__menu-link {
    font-size: 1.125rem;
  }
}

@media (any-hover: hover) {
  .p-footer__menu-link:hover {
    opacity: 0.7;
  }
}
.p-footer__bottomWrapper {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottomWrapper {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

.p-footer__privacy {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  text-decoration: underline;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__privacy {
    margin-inline: 0;
  }
}

.p-footer__tokushoho {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  text-decoration: underline;
  width: fit-content;
  margin: 1rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-footer__tokushoho {
    margin: 0;
  }
}

.p-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    padding-top: 0;
    justify-content: flex-start;
  }
}

.p-footer__copyright-text {
  color: #3a2e2a;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright-text {
    font-size: 0.875rem;
  }
}

.p-header {
  background-color: #f8f5f0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: border-bottom 0.3s;
}
.p-header:has(.p-header__drawer.is-active) {
  border-bottom: 1px solid #d9d2c5;
}

.p-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid #dad9d7;
}

.p-header__inner.l-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 88.125rem;
  height: 3.375rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner.l-inner {
    height: 4.5rem;
    padding-inline: 1.5625rem;
    gap: 1.25rem;
    position: relative;
  }
}

.p-header__logo {
  display: flex;
  align-items: center;
  width: 11.25rem;
  height: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 14.625rem;
  }
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
    flex: 1;
    height: inherit;
  }
}

.p-header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  list-style: none;
  height: inherit;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-header__menu {
    gap: 0.1875rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-header__menu {
    gap: 0.3125rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-header__menu {
    gap: 1.25rem;
  }
}

.p-header__menu-item {
  position: relative;
  height: inherit;
}

@media screen and (min-width: 768px) {
  .p-header__menu-item--has-sub:hover .p-header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media screen and (min-width: 768px) {
  .p-header__menu-item--button {
    height: fit-content;
    padding-block: 10px;
  }
}

.p-header__menu-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 0.5rem;
  color: #3a2e2a;
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  transition: opacity 0.3s;
  height: inherit;
}
.p-header__menu-link:hover {
  opacity: 0.7;
}

.p-header__menu-link--button {
  padding: 0.75rem 3rem;
  border: 1px solid #3a2e2a;
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .p-header__menu-link--button {
    padding-inline: 1rem;
  }
}
@media (any-hover: hover) {
  .p-header__menu-link--button:hover {
    background-color: #e85a1c;
    color: #f8f5f0;
    border-color: #e85a1c;
    opacity: 1;
  }
}
.p-header__menu-text {
  display: block;
  position: relative;
}

.p-header__menu-text::after {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  width: 0;
  height: 0.125rem;
  background-color: #3a2e2a;
  transition: width 0.3s;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__menu-text::after {
    display: block;
  }
}

@media (any-hover: hover) {
  .p-header__menu-link:not(.p-header__menu-link--button):hover .p-header__menu-text::after {
    width: 100%;
  }
}
.p-header__menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  margin: 0;
}
.p-header__menu-icon img {
  width: 1rem;
  height: 0.5rem;
  display: block;
}

.p-header__submenu {
  position: absolute;
  top: 80%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.625rem);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  background-color: #f8f5f0;
  padding: 1rem 0;
  margin: 0;
  list-style: none;
  min-width: 12.5rem;
  border: 1px solid #3a2e2a;
  z-index: 100;
}

.p-header__submenu-item {
  margin-bottom: 0.5rem;
}
.p-header__submenu-item:last-child {
  margin-bottom: 0;
}

.p-header__submenu-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #3a2e2a;
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  transition: background-color 0.3s;
}
.p-header__submenu-link:hover {
  background-color: rgba(58, 46, 42, 0.05);
}

.p-header__drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.375rem;
  height: 3.375rem;
  background: #c9a66b;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 200;
}
@media screen and (min-width: 768px) {
  .p-header__drawer-btn {
    display: none;
  }
}

.p-header__drawer-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.3125rem;
  height: 1.3125rem;
}
.p-header__drawer-icon span {
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: #f8f5f0;
  transition: transform 0.3s, opacity 0.3s;
}

.p-header__drawer-btn[aria-expanded=true] .p-header__drawer-icon span:nth-child(1) {
  transform: translateY(0.59375rem) rotate(45deg);
}
.p-header__drawer-btn[aria-expanded=true] .p-header__drawer-icon span:nth-child(2) {
  opacity: 0;
}
.p-header__drawer-btn[aria-expanded=true] .p-header__drawer-icon span:nth-child(3) {
  transform: translateY(-0.59375rem) rotate(-45deg);
}

.p-header__drawer {
  position: fixed;
  top: 3.375rem;
  right: 0;
  width: 100%;
  height: calc(100vh - 3.375rem);
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.p-header__drawer.is-active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.p-header__drawer.is-active .p-header__drawer-content {
  transform: translateX(0);
}

.p-header__drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.p-header__drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 23.4375rem;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.3s;
  overflow-y: auto;
  padding-top: 3rem;
  display: flex;
}

.p-header__drawer-nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
  padding-inline: 1.5625rem;
}

.p-header__drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-header__drawer-menu-item {
  display: flex;
  flex-direction: column;
}

.p-header__drawer-menu-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding-block: 0.75rem 1.5rem;
  background: transparent;
  border-bottom: 1px solid #d9d2c5;
  color: #3a2e2a;
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.p-header__drawer-menu-text {
  display: block;
}

.p-header__drawer-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  margin: 0;
}
.p-header__drawer-menu-icon img {
  width: 1rem;
  height: 0.5rem;
  display: block;
  transition: transform 0.3s;
}

.p-header__drawer-menu-item--has-sub.is-open .p-header__drawer-menu-link {
  border-bottom: none;
}
.p-header__drawer-menu-item--has-sub.is-open .p-header__drawer-menu-icon img {
  transform: rotate(180deg);
}

.p-header__drawer-submenu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.p-header__drawer-menu-item--has-sub.is-open .p-header__drawer-submenu {
  max-height: 31.25rem;
}

.p-header__drawer-submenu-link {
  display: block;
  color: #3a2e2a;
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.5rem 0;
}

.p-header__drawer-button {
  margin-top: 1.5rem;
  padding: 1.5rem 0;
}

.p-header__drawer-button-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 20.3125rem;
  padding: 0.75rem 3rem;
  background-color: #e85a1c;
  color: #f8f5f0;
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  box-shadow: 0 0.25rem 0.625rem rgba(76, 51, 26, 0.25);
  margin: 0 auto;
}

.p-404 {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-404 {
    padding-block: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-404__inner.l-inner {
    max-width: 53.125rem;
  }
}

.p-404__title {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}

.p-404__text {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-404__text {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.p-404__text:last-of-type {
  margin-bottom: 0;
}

.p-404__btnWrapper {
  width: fit-content;
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-404__btnWrapper {
    margin-top: 5rem;
  }
}

.p-404__btn.c-btn {
  padding-inline: 2.75rem 3.75rem;
}

.p-404__btn.c-btn .c-btn__icon {
  transform: scale(-1, 1);
}

.p-about-company {
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-about-company {
    padding-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about-company__inner.l-inner {
    max-width: 46.875rem;
  }
}

.p-about-company__head {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about-company__head {
    font-size: 2.5rem;
  }
}

.p-about-company__content {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-about-company__content {
    margin-top: 4rem;
  }
}

.p-about-company__item {
  border-bottom: 1px solid #D9D2C5;
  padding-block: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-company__item {
    display: flex;
    gap: 6rem;
    padding-block: 2rem;
  }
}

.p-about-company__item:first-child {
  padding-top: 0;
}

.p-about-company__item dt {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-about-company__item dt {
    min-width: 3.375rem;
  }
}

.p-about-company__item dd {
  font-size: 1.125rem;
  line-height: 1.8;
}

.p-about-fv {
  background-color: #D9D2C5;
  padding-block: 2.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about-fv {
    aspect-ratio: 1440/350;
    padding-block: 0;
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .p-about-fv__inner.l-inner {
    max-width: initial;
    padding-inline: 0;
    height: 100%;
  }
}

.p-about-fv__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 56.2666666667%;
  height: 100%;
}

.p-about-fv__image img {
  height: 100%;
}

.p-about-fv__titleWrapper {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-about-fv__titleWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    aspect-ratio: 1440/350;
    height: 100%;
    left: 8%;
  }
}

.p-about-fv__titleEn {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-about-fv__titleEn {
    font-size: 2rem;
  }
}

.p-about-fv__titleJa {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-about-fv__titleJa {
    font-size: 2.5rem;
    margin-top: 0.5rem;
  }
}

.p-about-values {
  background-color: #D9D2C5;
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-about-values {
    padding-block: 6.25rem;
  }
}

.p-about-values__titleWrapper {
  border-bottom: 1px solid #c9a66b;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about-values__titleWrapper {
    padding-bottom: 1.5rem;
  }
}

.p-about-values__subHead {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about-values__subHead {
    font-size: 2rem;
  }
}

.p-about-values__head {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about-values__head {
    font-size: 2.5rem;
  }
}

.p-about-values__desc {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 1rem;
}

.p-about-values__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-about-values__lists {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4rem;
    gap: 4rem 2.5rem;
  }
}

.p-about-values__list {
  background-color: #f8f5f0;
  border-radius: 0.625rem;
  padding: 3.125rem 1.25rem 2.5rem;
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: #C9A66B;
}
@media screen and (min-width: 768px) {
  .p-about-values__list {
    padding: 4rem 5rem;
  }
}

.p-about-values__subTitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-about-values__subTitle {
    font-size: 3rem;
  }
}

.p-about-values__subTitle span {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-about-values__subTitle span {
    font-size: 4rem;
  }
}

.p-about-values__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 0.5rem;
}

.p-about-values__text {
  font-size: 1.125rem;
  line-height: 1.8;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about-values__text {
    padding-top: 1.5rem;
  }
}

.p-about {
  background: url(/wp-content/themes/hermifine/assets/images/about/about-bg-test.webp) no-repeat center center/cover;
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-about {
    background-position-y: 61%;
    padding-block: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__inner.l-inner {
    max-width: 46.875rem;
  }
}

.p-about__subHead {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__subHead {
    font-size: 2rem;
  }
}

.p-about__head {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about__head {
    font-size: 2.5rem;
  }
}

.p-about__textWrapper {
  margin-top: 4rem;
}

.p-about__text {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: justify;
}

.p-about__text:not(:first-child) {
  margin-top: 1em;
}

.p-case {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-case {
    padding-block: 9.375rem 6.25rem;
  }
}

.p-case__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-case__lists {
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 4rem;
  }
}

.p-case__list {
  box-shadow: -6px -6px 4px #FFFBF4, 6px 6px 4px #EEE8E2;
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-case__thumb img {
  aspect-ratio: 325/200;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-case__thumb img {
    aspect-ratio: 358/200;
  }
}

.p-case__body {
  background-color: #fff;
  padding: 2rem 1.5rem;
}

.p-case__title {
  font-size: 1.125rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-case__date {
  display: block;
  font-size: 1rem;
  margin-top: 1rem;
}

.p-common-contact {
  background-color: #f8f5f0;
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-common-contact {
    padding-block: 9.375rem;
  }
}

.p-common-contact__content {
  background-color: #fff;
  padding: 4rem 1.25rem;
  box-shadow: 0px 0px 10px rgba(196, 172, 149, 0.15);
  border-radius: 0.625rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-common-contact__content {
    display: flex;
    padding: 3.5rem 0 3.5rem 7.5rem;
    margin-top: 4rem;
    overflow: hidden;
    border-radius: 0.625rem;
    position: relative;
  }
}

.p-common-contact__img {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-common-contact__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 62.9166666667%;
    height: 100%;
    margin-top: 0;
  }
}

.p-common-contact__img img {
  aspect-ratio: 285/210;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-common-contact__img img {
    aspect-ratio: 755/442;
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-common-contact__body {
    position: relative;
    z-index: 1;
  }
}

.p-common-contact__heading {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-common-contact__heading {
    text-align: left;
  }
}

.p-common-contact__textWrapper {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-common-contact__textWrapper {
    margin-top: 2.5rem;
  }
}

.p-common-contact__text {
  font-size: 1.125rem;
}

.p-common-contact__text:not(:first-child) {
  margin-top: 1rem;
}

.p-common-contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1rem;
  color: #f8f5f0;
  background-color: #e85a1c;
  text-align: center;
  padding-block: 0.75rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-common-contact__btn {
    font-size: 1.125rem;
    width: 20rem;
    margin-top: 2.5rem;
    transition: opacity 0.3s ease;
  }
}

@media (any-hover: hover) {
  .p-common-contact__btn:hover {
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
  .p-top-mv .p-common-contact__btn:hover {
    opacity: 0.5;
  }
}
.p-common-contact__under {
  background: #c9a66b;
  border-radius: 0.625rem;
  padding: 3rem 0.9375rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-common-contact__under {
    margin-top: 4rem;
  }
}

.p-common-contact__underHead {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
  padding-bottom: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-common-contact__underHead {
    font-size: 1.5rem;
  }
}

.p-common-contact__underHead::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6.25rem;
  height: 1px;
  background-color: #f8f5f0;
}
@media screen and (min-width: 768px) {
  .p-common-contact__underHead::before {
    width: 5rem;
  }
}

.p-common-contact__underBtn {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  font-weight: 700;
  background-color: #f8f5f0;
  text-align: center;
  padding: 0.75rem 3.5625rem;
  margin-top: 2rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-common-contact__underBtn {
    font-size: 1.125rem;
    width: fit-content;
    margin-inline: auto;
    transition: opacity 0.3s ease;
  }
}

@media (any-hover: hover) {
  .p-common-contact__underBtn:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}
.p-contact {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-block: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__content {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__content:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.p-contact__content:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-contact__content:not(:first-child) {
    margin-top: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__img {
    width: 50%;
  }
}

.p-contact__img img {
  aspect-ratio: 325/250;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-contact__img img {
    aspect-ratio: 600/600;
  }
}

.p-contact__bodyWrapper {
  background-color: #fff;
  padding: 3rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__bodyWrapper {
    width: 50%;
    padding: 0;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 29.5rem;
    width: 100%;
  }
}

.p-contact__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.8;
  border-bottom: 0.0625rem solid #c9a66b;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 2rem;
  }
}

.p-contact__text {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: justify;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    margin-top: 3.5rem;
  }
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 0.75rem !important;
  margin-top: 0.5rem;
}

.p-feature__content {
  margin-inline: calc(50% - 50vi);
}
@media screen and (min-width: 768px) {
  .p-feature__content {
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__content:nth-child(even) {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__img {
    width: 50%;
  }
}

.p-feature__img img {
  aspect-ratio: 375/261;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-feature__img img {
    aspect-ratio: 720/500;
  }
}

.p-feature__body {
  padding: 2.5rem 1.5625rem 4rem;
}
@media screen and (min-width: 768px) {
  .p-feature__body {
    width: 50%;
    padding-block: 0;
    padding-inline: 5rem 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__content:nth-child(even) .p-feature__body {
    padding-block: 0;
    padding-inline: 7.5rem 5rem;
  }
}

.p-feature__head {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-feature__head {
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__head.--nowrap {
    white-space: nowrap;
  }
}

.p-feature__text {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: justify;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-feature__text {
    margin-top: 2.5rem;
  }
}

.p-finemint3000__content {
  margin-inline: calc(50% - 50vi);
}
@media screen and (min-width: 768px) {
  .p-finemint3000__content {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .p-finemint3000__img {
    width: 50%;
  }
}

.p-finemint3000__img img {
  aspect-ratio: 375/375;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-finemint3000__img img {
    aspect-ratio: 720/720;
  }
}

.p-finemint3000__bodyWrapper {
  background-color: #D9D2C5;
  padding: 3rem 1.5625rem 4rem;
}
@media screen and (min-width: 768px) {
  .p-finemint3000__bodyWrapper {
    width: 50%;
    padding: 0;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-finemint3000__body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: fit-content;
    max-width: 30rem;
  }
}

.p-finemint3000__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-finemint3000__title {
    font-size: 3rem;
  }
}

.p-finemint3000__text {
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-finemint3000__text {
    margin-top: 3.5rem;
  }
}

.p-flow {
  background-color: #E7E1DB;
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding-block: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__inner.l-inner {
    max-width: 53.125rem;
  }
}

.p-flow__head {
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow__head {
    font-size: 2.5rem;
  }
}

.p-flow__contentWrapper {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-flow__contentWrapper {
    margin-top: 4rem;
  }
}

.p-flow__content {
  background-color: #fff;
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: #C9A66B;
  border-radius: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__content {
    display: flex;
    gap: 2.5rem;
    padding: 4rem;
  }
}

.p-flow__content:not(:first-child) {
  margin-top: 3.125rem;
}

.p-flow__content:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.0625rem;
  height: 3.125rem;
  background-color: #c9a66b;
}

@media screen and (min-width: 768px) {
  .p-flow__img {
    width: 20.75rem;
  }
}

.p-flow__img img {
  aspect-ratio: 332/220;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-flow__img img {
    height: 100%;
  }
}

.p-flow__body {
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-flow__body {
    flex: 1;
    padding: 0;
  }
}

.p-flow__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.35;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow__title {
    text-align: left;
  }
}

.p-flow__text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.p-form {
  padding-block: 4rem;
  background-color: #f8f5f0;
}
@media screen and (min-width: 768px) {
  .p-form {
    padding-block: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form__inner.l-inner {
    max-width: 53.125rem;
    margin-inline: auto;
  }
}

.p-form__head {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
  color: #3a2e2a;
}
@media screen and (min-width: 768px) {
  .p-form__head {
    font-size: 2rem;
  }
}

.p-form__content {
  background-color: #fff;
  padding: 2.5rem 1.25rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-form__content {
    padding: 4rem;
    margin-top: 4rem;
  }
}

.p-form__content .wpcf7-form {
  margin: 0;
}

.p-form__field.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-form__field.wpcf7-form-control-wrap {
    margin-bottom: 2.5rem;
  }
}

.p-form__field.wpcf7-form-control-wrap:last-of-type {
  margin-bottom: 0;
}

.p-form__field.wpcf7-form-control-wrap label,
.p-form__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #3a2e2a;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__field.wpcf7-form-control-wrap label,
  .p-form__label {
    font-size: 1.125rem;
  }
}

.p-form__required {
  display: inline-block;
  font-size: 0.75rem;
  color: #3a2e2a;
  background-color: transparent;
  border: 1px solid #3a2e2a;
  padding: 0.125rem 0.5rem;
  border-radius: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-form__required {
    font-size: 0.875rem;
    padding: 0.25rem 0.625rem;
  }
}

.p-form__radio.wpcf7-radio,
.p-form__field.wpcf7-form-control-wrap .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-form__radio.wpcf7-radio,
  .p-form__field.wpcf7-form-control-wrap .wpcf7-radio {
    gap: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  #application-type-2 {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
  }
}

.wpcf7-list-item {
  padding-block: 0.25rem;
  margin: 0 !important;
}

.wpcf7-radio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

input[type=radio] {
  position: relative;
  width: 1rem;
  height: 1rem;
  margin: 0;
  padding: 0;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=radio]:checked {
  border-color: #3a2e2a;
}

input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.625rem;
  background-color: #3a2e2a;
  border-radius: 50%;
}

.p-form__field {
  font-size: 1rem;
  color: #3a2e2a;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__field {
    font-size: 1.125rem;
  }
}

.p-form__field.--first {
  margin-top: 0;
}

.p-form__input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: #3a2e2a;
  background-color: #f8f5f0;
  border: 1px solid #d9d2c5;
}

.p-form__input.wpcf7-text::placeholder,
.p-form__input.wpcf7-email::placeholder,
.p-form__input.wpcf7-tel::placeholder,
.p-form__field.wpcf7-form-control-wrap .wpcf7-text::placeholder,
.p-form__field.wpcf7-form-control-wrap .wpcf7-email::placeholder,
.p-form__field.wpcf7-form-control-wrap .wpcf7-tel::placeholder {
  color: #999;
}

.p-form__input.wpcf7-text:focus,
.p-form__input.wpcf7-email:focus,
.p-form__input.wpcf7-tel:focus,
.p-form__field.wpcf7-form-control-wrap .wpcf7-text:focus,
.p-form__field.wpcf7-form-control-wrap .wpcf7-email:focus,
.p-form__field.wpcf7-form-control-wrap .wpcf7-tel:focus {
  outline: none;
  border-color: #c9a66b;
}

.p-form__textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: #3a2e2a;
  background-color: #f6f4f1;
  border: 1px solid #e0e0e0;
  min-height: 11.25rem;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .p-form__textarea {
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
    min-height: 9.875rem;
  }
}

.p-form__textarea.wpcf7-textarea::placeholder,
.p-form__field.wpcf7-form-control-wrap .wpcf7-textarea::placeholder {
  color: #999;
}

.p-form__textarea.wpcf7-textarea:focus,
.p-form__field.wpcf7-form-control-wrap .wpcf7-textarea:focus {
  outline: none;
  border-color: #c9a66b;
}

.p-form__checkbox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-form__checkbox {
    margin-top: 0.5rem;
  }
}

.p-form__checkboxInput {
  position: relative;
  margin: 0;
  padding: 0;
  width: 1rem;
  height: 1rem;
  border: 1px solid #3a2e2a;
  border-radius: 0.125rem;
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.p-form__checkboxInput:checked {
  background-color: #c9a66b;
  border-color: #c9a66b;
}

.p-form__checkboxInput:checked::after {
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.375rem;
  height: 0.625rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-form__checkboxInput:checked::after {
    top: 44%;
  }
}

.p-form__checkbox.wpcf7-checkbox .wpcf7-list-item label,
.p-form__field.wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  margin-bottom: 0;
}

.p-form__checkbox.wpcf7-checkbox input[type=checkbox],
.p-form__field.wpcf7-form-control-wrap .wpcf7-checkbox input[type=checkbox] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  padding: 0;
  border: 1px solid #e0e0e0;
  border-radius: 0.125rem;
  background-color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.p-form__checkbox.wpcf7-checkbox input[type=checkbox]:checked,
.p-form__field.wpcf7-form-control-wrap .wpcf7-checkbox input[type=checkbox]:checked {
  border-color: #3a2e2a;
  background-color: #3a2e2a;
}

.p-form__checkbox.wpcf7-checkbox input[type=checkbox]:checked::after,
.p-form__field.wpcf7-form-control-wrap .wpcf7-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.375rem;
  height: 0.625rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.p-form__checkbox.wpcf7-checkbox .wpcf7-list-item-label,
.p-form__field.wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item-label {
  font-size: 1rem;
  color: #3a2e2a;
}
@media screen and (min-width: 768px) {
  .p-form__checkbox.wpcf7-checkbox .wpcf7-list-item-label,
  .p-form__field.wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item-label {
    font-size: 1.125rem;
  }
}

.p-form__privacy {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-form__privacy {
    font-size: 1.125rem;
    text-align: center;
    margin-top: 2.5rem;
  }
}

.p-form__privacyText {
  font-size: 0.9375rem;
  color: #3a2e2a;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-form__privacyText {
    font-size: 1.125rem;
    margin-top: 2.5rem;
  }
}

.p-form__privacyLink {
  text-decoration: underline;
}

.wpcf7-turnstile {
  text-align: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-turnstile {
    margin-top: 2.5rem;
  }
}

.cf-turnstile {
  max-width: 285px !important;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .cf-turnstile {
    max-width: none !important;
  }
}

.cf-turnstile iframe {
  max-width: 285px !important;
}
@media screen and (min-width: 768px) {
  .cf-turnstile iframe {
    max-width: none !important;
  }
}

.p-form__button.wpcf7-submit,
.p-form__content .wpcf7-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background-color: #e85a1c;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  margin-top: 2rem;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-form__button.wpcf7-submit,
  .p-form__content .wpcf7-submit {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    margin-top: 2.5rem;
  }
}

@media (any-hover: hover) {
  .p-form__button.wpcf7-submit:hover,
  .p-form__content .wpcf7-submit:hover {
    opacity: 0.8;
  }
}
.p-form__button.wpcf7-submit:active,
.p-form__content .wpcf7-submit:active {
  opacity: 0.9;
}

.p-form__error.wpcf7-not-valid-tip,
.p-form__field.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: block;
  font-size: 0.875rem;
  color: #d32f2f;
  margin-top: 0.5rem;
  line-height: 1.5;
  min-height: 1.3125rem;
}

.p-form__field.wpcf7-form-control-wrap::after {
  content: "";
  display: block;
  height: 1.8125rem;
  visibility: hidden;
  pointer-events: none;
}

.p-form__field.wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip)::after,
.p-form__field.wpcf7-form-control-wrap.has-error-tip::after {
  display: none;
}

.p-form__input.wpcf7-not-valid {
  border-color: #e85a1c !important;
}

.p-form__success.wpcf7-mail-sent-ok,
.p-form__content .wpcf7-mail-sent-ok {
  background-color: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: 0.25rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #2e7d32;
  font-size: 0.875rem;
}

.p-form__errorMessage.wpcf7-mail-sent-ng,
.p-form__content .wpcf7-mail-sent-ng {
  background-color: #ffebee;
  border: 1px solid #d32f2f;
  border-radius: 0.25rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #d32f2f;
  font-size: 0.875rem;
}

.p-form__spinner.wpcf7-spinner,
.p-form__content .wpcf7-spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: p-form-spin 0.6s linear infinite;
  margin-right: 0.5rem;
}

@keyframes p-form-spin {
  to {
    transform: rotate(360deg);
  }
}
.p-gallery {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-gallery {
    padding-block: 6.25rem 9.375rem;
  }
}

.p-gallery__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-gallery__title {
    font-size: 2.5rem;
  }
}

.p-gallery__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-gallery__lists {
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem 1.25rem;
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-gallery__list:nth-child(1), .p-gallery__list:nth-child(2) {
    grid-column: span 3;
  }
  .p-gallery__list:nth-child(3), .p-gallery__list:nth-child(4), .p-gallery__list:nth-child(5) {
    grid-column: span 2;
  }
}

.p-news {
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding-block: 6.875rem 6.25rem;
  }
}

.p-news__item {
  border-bottom: 1px solid #d9d2c5;
  padding-right: 2.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news__item {
    padding-right: 4.25rem;
  }
}

.p-news__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background: url(/wp-content/themes/hermifine/assets/images/common/news-arrow-icon.svg) no-repeat center center/cover;
}

.p-news__link {
  display: block;
  padding-block: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__link {
    padding-block: 2.5rem;
  }
}

@media (any-hover: hover) {
  .p-news__link:hover {
    opacity: 0.7;
  }
}
.p-news__date {
  font-size: 1.125rem;
  line-height: 1.8;
}

.p-news__title {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.5rem;
}

.pagination {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 5rem;
  }
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  text-align: center;
  color: #c9a66b;
  border-radius: 0.25rem;
  border: 1px solid #c9a66b;
  width: 2rem;
  height: 2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .page-numbers {
    width: 3.125rem;
    height: 3.125rem;
  }
}

@media (any-hover: hover) {
  .page-numbers:hover {
    background-color: #c9a66b;
    color: #fff;
  }
  .page-numbers:hover img {
    filter: brightness(0) invert(1);
  }
}
.page-numbers.current {
  background-color: #c9a66b;
  color: #fff;
}

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .pagination__item {
    gap: 1rem;
  }
}

.prev img,
.next img {
  width: 1.25rem;
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .prev img,
  .next img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-online {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-online {
    padding-block: 9.375rem;
  }
}

.p-online__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-online__lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.25rem;
  }
}

.p-online__list {
  border-radius: 0.625rem;
  filter: drop-shadow(-6px -6px 4px #fffbf4) drop-shadow(6px 6px 4px #eee8e2);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-online__list:first-child {
    display: flex;
    align-items: center;
    gap: 0;
    grid-column: span 2;
  }
}

@media screen and (min-width: 768px) {
  .p-online__list:first-child .p-online__img {
    width: 50%;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-online__list:first-child .p-online__bodyWrapper {
    background-color: #fff;
    width: 50%;
    height: 100%;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-online__bodyWrapper .p-online__body {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2.5rem;
    width: 27.5rem;
    height: 100%;
    padding: 0;
    align-content: center;
  }
}

.p-online__body {
  background-color: #fff;
  height: 100%;
  padding: 2.5rem 1.25rem;
}

.p-online__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-online__title {
    font-size: 2rem;
  }
}

.p-online__price {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-online__price {
    font-weight: 400;
  }
}

.p-online__tax {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-online__tax {
    font-weight: 400;
  }
}

.p-online__text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.p-online__btnWrapper {
  margin-top: 2rem;
}

.p-online__btn {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background-color: #e85a1c;
  border-color: #e85a1c;
  text-align: center;
}

.p-online__btn.c-btn {
  padding-left: 3.5rem;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .p-online__btn.c-btn:hover {
    background-color: #e85a1c;
    opacity: 0.5;
  }
}
.p-online__btn .c-btn__icon {
  position: relative;
  width: 3rem;
  height: 1.5rem;
}

.p-online__btn .c-btn__icon img {
  display: none;
}

.p-online__btn .c-btn__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask-image: url(/wp-content/themes/hermifine/assets/images/common/arrow-right.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(/wp-content/themes/hermifine/assets/images/common/arrow-right.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #fff;
}

.p-privacy {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    padding-block: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-privacy__inner {
    max-width: 53.125rem;
  }
}

.p-privacy__intro {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__intro {
    margin-bottom: 2.5rem;
  }
}

.p-privacy__head {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__head {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.p-privacy__text {
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

.p-privacy__text.--mb0 {
  margin-bottom: 0;
}

.p-privacy__text.--email {
  display: flex;
  align-items: center;
}

.p-privacy__text.--email img {
  width: 11.875rem;
  transform: translateY(2px);
}

.p-privacy__content {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__content {
    margin-bottom: 2.5rem;
  }
}

.p-privacy__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.p-privacy__list {
  line-height: 1.8;
  counter-reset: privacy-counter;
  list-style: none;
  padding-left: 0;
}

.p-privacy__listItem {
  font-size: 1rem;
  line-height: 1.8;
  counter-increment: privacy-counter;
  position: relative;
  padding-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__listItem {
    font-size: 1.125rem;
    padding-left: 1.75rem;
  }
}
.p-privacy__listItem::before {
  content: counter(privacy-counter) ".";
  position: absolute;
  left: 0;
}
.p-privacy__listItem .p-privacy__list {
  counter-reset: privacy-counter;
  margin-top: 0.5rem;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__listItem .p-privacy__list {
    margin-left: 1.5rem;
  }
}

.p-scene {
  background-color: #E7E1DB;
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-scene {
    padding-block: 9.375rem;
  }
}

.p-scene__head {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-scene__head {
    font-size: 2rem;
  }
}

.p-scene__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-scene__lists {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4rem;
    gap: 4rem 2.5rem;
  }
}

.p-scene__list {
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-scene__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35;
  background-color: #f8f5f0;
  text-align: center;
  padding-block: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-scene__title {
    padding-top: 2.5rem;
  }
}

.p-single {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-single {
    padding-block: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-single__inner.l-inner {
    max-width: 53.125rem;
  }
}

.p-single__title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-single__title {
    font-size: 2rem;
  }
}

.p-single__date {
  display: block;
  font-size: 1.125rem;
  color: #c9a66b;
  border-bottom: 2px solid #c9a66b;
  padding-bottom: 1rem;
  margin-block: 1rem 3rem;
}
@media screen and (min-width: 768px) {
  .p-single__date {
    padding-bottom: 0.5rem;
    margin-block: 0.5rem 2.5rem;
  }
}

.p-single__thumb {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-single__thumb {
    margin-bottom: 3.5rem;
  }
}

.p-single__thumb img {
  aspect-ratio: 325/200;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single__thumb img {
    aspect-ratio: 800/450;
  }
}

.p-single__content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #E7E1DB;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-single__content h2 {
    font-size: 1.5rem;
    padding: 1rem;
  }
}

.p-single__content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid #c9a66b;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.p-single__content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.p-single__content p {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.p-single__content .wp-block-image {
  width: fit-content;
  height: auto;
  margin: 0 auto 2rem;
}

.p-single__btnWrapper {
  width: fit-content;
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-single__btnWrapper {
    margin-top: 5rem;
  }
}

.p-single__btn.c-btn {
  padding-inline: 2.75rem 3.75rem;
}

.p-single__btn.c-btn .c-btn__icon {
  transform: scale(-1, 1);
}

.p-spec {
  background-color: #E7E1DB;
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-spec {
    padding-top: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-spec__inner.l-inner {
    max-width: 53.125rem;
  }
}

.p-spec__head {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-spec__head {
    font-size: 2.5rem;
  }
}

.p-spec__content {
  border: 1px solid #3a2e2a;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-spec__content {
    margin-top: 2.5rem;
  }
}

.p-spec__item {
  display: flex;
  align-items: center;
}

.p-spec__item:not(:last-child) {
  border-bottom: 1px solid #3a2e2a;
}

.p-spec__item dt {
  font-size: 1rem;
  font-weight: 700;
  background-color: #D9D2C5;
  border-right: 1px solid #3a2e2a;
  width: 32%;
  padding: 1rem 0 1rem 1.25rem;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-spec__item dt {
    font-size: 1.125rem;
    width: 21.75%;
  }
}

.p-spec__item dd {
  flex: 1;
  align-self: stretch;
  align-content: center;
  font-size: 1rem;
  background-color: #f8f5f0;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-spec__item dd {
    font-size: 1.125rem;
  }
}

.p-spec__note {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.p-strength__content {
  margin-inline: calc(50% - 50vi);
}
@media screen and (min-width: 768px) {
  .p-strength__content {
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-strength__content:nth-child(even) {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-strength__img {
    width: 50%;
  }
}

.p-strength__img img {
  aspect-ratio: 375/261;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-strength__img img {
    aspect-ratio: 720/500;
  }
}

.p-strength__body {
  padding: 2.5rem 1.5625rem 4rem;
}
@media screen and (min-width: 768px) {
  .p-strength__body {
    width: 50%;
    padding-block: 0;
    padding-inline: 5rem 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-strength__content:nth-child(even) .p-strength__body {
    padding-block: 0;
    padding-inline: 7.5rem 5rem;
  }
}

.p-strength__head {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-strength__head {
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-strength__head.--nowrap {
    white-space: nowrap;
  }
}

.p-strength__text {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: justify;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-strength__text {
    margin-top: 2.5rem;
  }
}

.u-tab {
  display: none;
}
@media (min-width: 1440px) {
  .u-tab {
    display: block;
  }
}

.p-sub-fv {
  background-color: #D9D2C5;
  aspect-ratio: 375/150;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-sub-fv {
    padding-block: 0;
    aspect-ratio: 1440/350;
  }
}

.p-sub-fv.--large {
  aspect-ratio: 375/200;
}
@media screen and (min-width: 768px) {
  .p-sub-fv.--large {
    aspect-ratio: 1440/350;
  }
}

.p-sub-fv.--company {
  background-color: #c9a66b;
}

.p-sub-fv__inner {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-fv__inner {
    max-width: initial;
    padding-inline: 0;
  }
}

.p-sub-fv__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

.p-sub-fv__image.--large img {
  aspect-ratio: 375/200;
}
@media screen and (min-width: 768px) {
  .p-sub-fv__image.--large img {
    aspect-ratio: 1440/350;
  }
}

.p-sub-fv__image.--company {
  bottom: 0;
  width: 50%;
}

.p-sub-fv__image.--company img {
  height: 100%;
}

.p-sub-fv__titleWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  aspect-ratio: 375/150;
  height: 100%;
  position: relative;
  left: 8%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-sub-fv__titleWrapper {
    aspect-ratio: 1440/350;
  }
}

.p-sub-fv__titleWrapper.--feature {
  left: 0;
  text-align: center;
}

.p-sub-fv__titleWrapper.--black {
  color: #3a2e2a;
}

.p-sub-fv__titleWrapper.--large {
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-sub-fv__titleWrapper.--large {
    left: 8%;
  }
}

.p-sub-fv__titleEn {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-sub-fv__titleEn {
    font-size: 2rem;
  }
}

.p-sub-fv__titleJa {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-sub-fv__titleJa {
    font-size: 2.5rem;
    margin-top: 0.5rem;
  }
}

.p-sub-fv__titleJa.--large {
  font-size: 1.125rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-fv__titleJa.--large {
    font-size: 2.5rem;
  }
}

.p-thanks {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-thanks {
    padding-block: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-thanks__inner.l-inner {
    max-width: 53.125rem;
  }
}

.p-thanks__title {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}

.p-thanks__text {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__text {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.p-thanks__text:last-of-type {
  margin-bottom: 0;
}

.p-thanks__btnWrapper {
  width: fit-content;
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-thanks__btnWrapper {
    margin-top: 5rem;
  }
}

.p-thanks__btn.c-btn {
  padding-inline: 2.75rem 3.75rem;
}

.p-thanks__btn.c-btn .c-btn__icon {
  transform: scale(-1, 1);
}

.p-tokushoho {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-tokushoho {
    padding-block: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-tokushoho__inner.l-inner {
    max-width: 65.625rem;
  }
}

.p-tokushoho__head {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-tokushoho__head {
    font-size: 2.5rem;
  }
}

.p-tokushoho__list {
  border: 1px solid #3a2e2a;
  margin-top: 1.5rem;
  border-collapse: collapse;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-tokushoho__list {
    margin-top: 2.5rem;
  }
}

.p-tokushoho__item:not(:last-child) {
  border-bottom: 1px solid #3a2e2a;
}

.p-tokushoho__item {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-tokushoho__item {
    display: table-row;
  }
}

.p-tokushoho__term {
  font-size: 1rem;
  font-weight: 700;
  background-color: #d9d2c5;
  border-bottom: 1px solid #3a2e2a;
  width: 100%;
  padding: 1rem 0 1rem 1.25rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-tokushoho__term {
    font-size: 1.125rem;
    width: 21.75%;
    border-right: 1px solid #3a2e2a;
    border-bottom: none;
    vertical-align: middle;
    display: table-cell;
  }
}

.p-tokushoho__desc {
  font-size: 1rem;
  background-color: #f8f5f0;
  padding: 1rem 0 1rem 1.25rem;
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-tokushoho__desc {
    font-size: 1.125rem;
    vertical-align: middle;
    display: table-cell;
  }
}

.p-top-about {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-about {
    padding-block: 9.375rem;
  }
}

.p-top-about__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__inner {
    flex-direction: row;
    gap: 3.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-about__inner {
    gap: 5rem;
  }
}

.p-top-about__body {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-top-about__body {
    display: block;
    flex: 1;
  }
}

.p-top-about__head.c-head {
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-top-about__head.c-head {
    text-align: left;
  }
}

.p-top-about__headJa {
  order: 3;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-about__headJa {
    font-size: 1.75rem;
    margin-top: 1.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-about__headJa {
    font-size: 2rem;
  }
}

.p-top-about__text {
  order: 4;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: -1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__text {
    margin-top: 2.625rem;
  }
}

.p-top-about__btnWrapper {
  order: 5;
}
@media screen and (min-width: 768px) {
  .p-top-about__btnWrapper {
    margin-top: 3.5rem;
  }
}

.p-top-about__btn.c-btn {
  padding-left: 2.5rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-top-about__btn.c-btn {
    padding-left: 3.5rem;
  }
}

.p-top-about__img {
  order: 2;
}
@media screen and (min-width: 768px) {
  .p-top-about__img {
    width: 54.5454545455%;
    margin-right: calc(50% - 50vi);
  }
}

.p-top-about__img img {
  aspect-ratio: 325/241;
  object-fit: cover;
  border-radius: 0.625rem 0 0 0.625rem;
  box-shadow: -6px -6px 4px #FFFBF4, 6px 6px 4px #EEE8E2;
}
@media screen and (min-width: 768px) {
  .p-top-about__img img {
    aspect-ratio: 720/534;
  }
}

.p-top-case__content {
  margin-inline: calc(50% - 50vi);
}
@media screen and (min-width: 768px) {
  .p-top-case__content {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .p-top-case__img {
    width: 50%;
  }
}

.p-top-case__img img {
  aspect-ratio: 375/380;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-top-case__img img {
    aspect-ratio: 720/822;
  }
}

.p-top-case__bodyWrapper {
  background-color: #D9D2C5;
  padding: 3rem 1.5625rem 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-case__bodyWrapper {
    width: 50%;
    padding: 0;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-top-case__body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30rem;
    height: fit-content;
  }
}

.p-top-case__desc {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-case__desc {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-top-case__desc {
    margin-top: 1.5rem;
  }
}

.p-top-case__articleWrapper {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top-case__articleWrapper {
    margin-top: 3.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-case__articleWrapper {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-top-case__articleWrapper {
    margin-top: 3.5rem;
  }
}

.p-top-case__item {
  background-color: #f8f5f0;
}

.p-top-case__item:not(:first-child) {
  margin-top: 1.5rem;
}

.p-top-case__link {
  display: flex;
  align-items: center;
}

.p-top-case__thumb {
  width: 6.6875rem;
}

.p-top-case__thumb img {
  aspect-ratio: 107/80;
  object-fit: cover;
}

.p-top-case__titleWrapper {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 1rem;
  position: relative;
}

.p-top-case__titleWrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background: url(/wp-content/themes/hermifine/assets/images/common/main-arrow-right.svg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-top-case__titleWrapper::after {
    right: 0.3125rem;
  }
}

.p-top-case__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  font-size: 1.125rem;
  font-weight: 400;
  width: 85%;
}
@media screen and (min-width: 768px) {
  .p-top-case__title {
    width: 90%;
  }
}

.p-top-case__btnWrapper {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top-case__btnWrapper {
    width: fit-content;
    margin: 2rem auto 0;
  }
}
@media screen and (min-width: 1440px) {
  .p-top-case__btnWrapper {
    margin-top: 3.5rem;
  }
}

.p-top-gallery {
  padding-block: 4rem;
}

@media screen and (min-width: 768px) {
  .p-top-gallery__splide {
    visibility: visible !important;
  }
}

.p-top-gallery__splide .splide__track {
  overflow: hidden;
  border-radius: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-gallery__splide .splide__track {
    overflow: visible;
    border-radius: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-top-gallery__splide .splide__list {
    display: flex;
    gap: 1.25rem;
    transform: none !important;
  }
}

.p-top-gallery__splide .splide__slide {
  border-radius: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-gallery__splide .splide__slide {
    width: auto !important;
    flex: 1;
  }
}

.p-top-gallery__splide .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: -6px -6px 4px #FFFBF4, 6px 6px 4px #EEE8E2;
  border-radius: 0.875rem;
}

.p-top-gallery__splide .splide__pagination {
  position: static;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.splide__pagination__page {
  width: 0.5rem !important;
  height: 0.5rem !important;
}

.splide__pagination__page.is-active {
  background-color: #c9a66b;
}

.splide__pagination__page.is-active {
  transform: initial !important;
}

.p-top-mv {
  background: url(/wp-content/themes/hermifine/assets/images/top/mv_sp.webp) no-repeat center center/cover;
  padding-block: 6.375rem 2.5rem;
  position: relative;
  --mask-percent: 0%;
  mask-image: linear-gradient(to right, black 0%, black var(--mask-percent), transparent var(--mask-percent));
  mask-size: 100% 100%;
  mask-position: 0 0;
  mask-repeat: no-repeat;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-top-mv {
    background: url(/wp-content/themes/hermifine/assets/images/top/mv.webp) no-repeat center center/cover;
    padding-block: 9rem 8.75rem;
  }
}

.p-top-mv__titleEn {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0px 0px 8px rgb(76, 51, 26);
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .p-top-mv__titleEn {
    font-size: 5.625rem;
    line-height: 1.3;
  }
}

.p-top-mv__titleEn {
  opacity: 0;
  transform: translateY(20px);
}

.p-top-mv__titleJa {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0px 0px 8px rgb(76, 51, 26);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
}
@media screen and (min-width: 768px) {
  .p-top-mv__titleJa {
    font-size: 2.25rem;
  }
}

.p-top-mv .p-common-contact__btn {
  --opacity: 0;
  opacity: var(--opacity);
  transform: translateX(30px);
}
@media screen and (min-width: 768px) {
  .p-top-mv .p-common-contact__btn {
    transition: opacity 0.3s ease;
  }
}

@keyframes slideInFromLeft {
  0% {
    --mask-percent: 0%;
    opacity: 0;
  }
  100% {
    --mask-percent: 100%;
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.no-js .p-top-mv,
.p-top-mv.no-gsap {
  animation: slideInFromLeft 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.no-js .p-top-mv__titleEn,
.p-top-mv__titleEn.no-gsap {
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.no-js .p-top-mv__titleJa,
.p-top-mv__titleJa.no-gsap {
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.no-js .p-top-mv .p-common-contact__btn,
.p-top-mv .p-common-contact__btn.no-gsap {
  animation: slideInFromRight 0.6s ease-out 1.5s both;
}

.p-top-news {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-news {
    padding-block: 6.25rem;
  }
}

.p-top-news__head {
  margin-bottom: 1.5rem;
}

.p-top-news__item {
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .p-top-news__item:hover {
    opacity: 0.7;
  }
}
.p-top-news__date {
  font-size: 1.125rem;
  line-height: 1.8;
}

.p-top-news__link {
  display: block;
  padding-block: 1.5rem;
  border-bottom: 1px solid #D9D2C5;
}
@media screen and (min-width: 768px) {
  .p-top-news__link {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}

.p-top-news__title {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  padding-right: 2.25rem;
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-news__title {
    padding-right: 4.25rem;
  }
}

.p-top-news__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background: url(/wp-content/themes/hermifine/assets/images/common/news-arrow-icon.svg) no-repeat center center/cover;
}

.p-top-news__btnWrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__btnWrapper {
    margin-top: 4rem;
  }
}

.p-top-online {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-online {
    padding-block: 12.5rem;
  }
}

.p-top-online__inner.l-inner {
  padding-inline: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-top-online__inner.l-inner {
    padding-inline: 1.5625rem;
  }
}

.p-top-online__desc {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-online__desc {
    margin-top: 1.5rem;
  }
}

.p-top-online__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top-online__content {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
  }
}

.p-top-online__img {
  box-shadow: -6px -6px 4px #FFFBF4, 6px 6px 4px #EEE8E2;
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-top-online__btnWrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top-online__btnWrapper {
    margin-top: 4rem;
  }
}

.p-top-product {
  padding-block: 4rem 0;
}
@media screen and (min-width: 768px) {
  .p-top-product {
    padding-block: 6.25rem 0;
  }
}

.p-top-product__desc {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 1.5rem;
}

.p-top-product__content {
  margin: 3rem calc(50% - 50vi) 0;
}
@media screen and (min-width: 768px) {
  .p-top-product__content {
    display: flex;
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-product__img {
    width: 50%;
  }
}

.p-top-product__wrapper {
  background-color: #D9D2C5;
  padding: 3rem 1.5625rem 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-product__wrapper {
    width: 50%;
    padding: 0;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-top-product__body {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16.6666666667%;
    height: fit-content;
  }
}

.p-top-product__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-top-product__title {
    font-size: 3rem;
  }
}

.p-top-product__text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-product__text {
    margin-top: 0.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-top-product__text {
    margin-top: 1.5rem;
  }
}

.p-top-pruduct__img2 {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-pruduct__img2 {
    width: 25rem;
    margin-top: 0.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-top-pruduct__img2 {
    margin-top: 1.5rem;
  }
}

.p-top-pruduct__img2 img {
  aspect-ratio: 325/208;
  object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-pruduct__img2 img {
    aspect-ratio: 400/255;
  }
}

.p-top-pruduct__btnWrapper {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top-pruduct__btnWrapper {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-top-pruduct__btnWrapper {
    margin-top: 3.5rem;
  }
}

.p-top-strengths {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-strengths {
    padding-block: 6.25rem;
  }
}

.p-top-strengths__head {
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__head {
    font-size: 2.5rem;
  }
}

.p-top-strengths__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__items {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-strengths__item {
    width: 23.375rem;
  }
}

.p-top-strengths__img img {
  aspect-ratio: 325/325;
  object-fit: cover;
  box-shadow: -6px -6px 4px #FFFBF4, 6px 6px 4px #EEE8E2;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__img img {
    aspect-ratio: 350/350;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-strengths__img img {
    aspect-ratio: 374/374;
  }
}

.p-top-strengths__btnWrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__btnWrapper {
    margin-top: 4rem;
  }
}

.p-top-strengths__btn.c-btn {
  width: 100%;
  padding-inline: 5rem 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__btn.c-btn {
    width: fit-content;
  }
}

.p-warranty {
  background-color: #E7E1DB;
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-warranty {
    padding-block: 6.25rem 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-warranty__inner.l-inner {
    max-width: 53.125rem;
  }
}

.p-warranty__head {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-warranty__head {
    font-size: 2.5rem;
  }
}

.p-warranty__desc {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 1rem;
}

.p-warranty__content {
  background-color: #f8f5f0;
  padding: 2.5rem 1.25rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-warranty__content {
    padding: 4rem 3.125rem;
    margin-top: 2.5rem;
  }
}

.p-warranty__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid #D9D2C5;
  text-align: center;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-warranty__title {
    font-size: 2rem;
  }
}

.p-warranty__title.--ls {
  letter-spacing: ls(-0.02em);
}
@media screen and (min-width: 768px) {
  .p-warranty__title.--ls {
    letter-spacing: 0;
  }
}

.p-warranty__text {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: justify;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-warranty__text {
    padding-inline: 0.875rem;
  }
}

.p-warranty__lists {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-warranty__lists {
    padding-inline: 0.875rem;
  }
}

.p-warranty__list {
  font-size: 1.125rem;
  padding-left: 1em;
  text-indent: -1em;
  position: relative;
}