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

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

picture, img {
  display: block;
  width: 100%;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes fadeinUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}
@keyframes fadeinUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}
@-webkit-keyframes fadeoutBottom {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    visibility: hidden;
  }
}
@keyframes fadeoutBottom {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    visibility: hidden;
  }
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media screen and (min-width: 1024px) {
  html {
    font-size: clamp(8px, 3.0769px + 0.4808vw, 10px);
  }
}

body {
  color: #54443c;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: var(--wp--preset--font-size--normal);
  line-height: 1.7;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  font: inherit;
  color: inherit;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

/*——————————————————————
コンテンツ幅
最大幅はtheme.jsonで設定
※今回は1040pxと1120pxを設定
※左右16px余白がある状態（343px）で計算
——————————————————————*/
.l-container {
  width: min(91.4666666667vw, 46rem);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 744px) {
  .l-container {
    width: min(91.4666666667vw, 70rem);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .l-container {
    width: min(91.4666666667vw, var(--wp--style--global--content-size));
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .l-container.--wide {
    width: min(91.4666666667vw, var(--wp--style--global--wide-size));
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1.6rem;
  -webkit-box-shadow: 0 0.2rem 2.4rem rgba(200, 180, 185, 0.4);
          box-shadow: 0 0.2rem 2.4rem rgba(200, 180, 185, 0.4);
  height: 5.6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .l-header {
    padding: 1.6rem 4rem;
    height: 7.1rem;
    gap: 4rem;
  }
}

.l-header__branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.4rem;
}
@media screen and (min-width: 1280px) {
  .l-header__branding {
    gap: 0.2rem;
  }
}

.l-header__branding-desc {
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1;
  color: #54443c;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .l-header__branding-desc {
    font-size: 1rem;
    letter-spacing: 0.04em;
    font-weight: 400;
  }
}

.l-header__branding-logo {
  display: block;
  width: 17.8rem;
  aspect-ratio: 178/12;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .l-header__branding-logo {
    width: 25.9rem;
  }
}
.l-header__branding-logo a {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-header__branding-logo a:hover {
  opacity: 0.7;
}
.l-header__branding-logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__nav {
  display: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .l-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.8rem;
}

.l-header__nav-item:nth-child(1) {
  padding-right: 1.2rem;
}

.l-header__nav-item a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #54443c;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (any-hover: hover) {
  .l-header__nav-item a:hover {
    color: #a68a8a;
  }
}

.l-header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .l-header__cta {
    gap: 0;
  }
}

body.is-drawer-open {
  overflow: hidden;
}
body.is-drawer-open .l-header__cta-reserve {
  display: none;
}

.l-header__hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  width: 3.1rem;
  padding: 0.8rem 0 0;
  background: transparent;
  border: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .l-header__hamburger {
    display: none;
  }
}

.l-header__hamburger-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 1.2rem;
}
.l-header__hamburger-icon span {
  display: block;
  width: 100%;
  height: 1px;
  background: #54443c;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.l-header__hamburger-text {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1;
  color: #54443c;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.l-header__hamburger.is-open .l-header__hamburger-icon span:nth-child(1) {
  -webkit-transform: translateY(0.75rem) rotate(35deg);
          transform: translateY(0.75rem) rotate(35deg);
}

.l-header__hamburger.is-open .l-header__hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.is-open .l-header__hamburger-icon span:nth-child(3) {
  -webkit-transform: translateY(-0.35rem) rotate(-35deg);
          transform: translateY(-0.35rem) rotate(-35deg);
}

.l-header__hamburger.is-open .l-header__hamburger-text {
  opacity: 0;
}

.l-header__drawer {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: #fcf7f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 5.6rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 14.8rem 2rem 5.5rem 2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .l-header__drawer {
    display: none;
  }
}

.l-header__drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.l-header__drawer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
}

.l-header__drawer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-header__drawer-item a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.6;
  color: #54443c;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .l-header__drawer-item a:hover {
    opacity: 0.7;
  }
}

.l-header__drawer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-footer {
  padding-block: 4rem 1.6rem;
  background: #fcf7f8;
}

.l-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .l-footer__container {
    gap: 2.4rem;
  }
}

.l-footer__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.l-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .l-footer__menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3.2rem;
  }
}

.l-footer__menu-item a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer__menu-item a:hover {
    color: #a68a8a;
  }
}

.l-footer__copyright {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #a68a8a;
  text-align: center;
}

.l-main {
  overflow: hidden;
  padding-top: 5.6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .l-main {
    padding-top: 7.1rem;
  }
}

.c-reserve-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
  width: 30.9rem;
  max-width: 100%;
  padding: 1.6rem 2rem 1.4rem 2rem;
  background: #c35f77;
  border: 2px solid #c35f77;
  border-radius: 100vmax;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  white-space: nowrap;
  -webkit-box-shadow: 0 0.8rem 2.4rem rgba(200, 180, 185, 0.4);
          box-shadow: 0 0.8rem 2.4rem rgba(200, 180, 185, 0.4);
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.c-reserve-btn svg {
  width: 2.4rem;
  height: 2.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (any-hover: hover) {
  .c-reserve-btn:hover {
    background: #ffffff;
    color: #c35f77;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-reserve-btn {
    width: 43.6rem;
    max-width: 100%;
    font-size: 2.2rem;
    letter-spacing: 0.15em;
    padding: 2.2rem 4rem;
    gap: 2rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-cta__button .c-reserve-btn {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-reserve-btn--header {
  width: auto;
  max-width: 100%;
  gap: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 100vmax;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  -webkit-box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.c-reserve-btn--header svg {
  width: 1.6rem;
  height: 1.6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-reserve-btn--header {
    padding: 0.4rem 3.9rem 0.5rem 3.9rem;
    font-size: 1.6rem;
    letter-spacing: 0.16rem;
    gap: 0.8rem;
  }
}
.l-header__drawer .c-reserve-btn--header {
  padding: 0.4rem 4rem;
}

.c-more-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  padding: 1.6rem 3.8rem 1.5rem 3.8rem;
  background: #54443c;
  border: 2px solid #54443c;
  border-radius: 100vmax;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.1;
  white-space: nowrap;
  -webkit-box-shadow: 0 0.8rem 2.4rem rgba(200, 180, 185, 0.4);
          box-shadow: 0 0.8rem 2.4rem rgba(200, 180, 185, 0.4);
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.c-more-btn span {
  letter-spacing: 0.08em;
  line-height: 1;
}
@media (any-hover: hover) {
  .c-more-btn:hover {
    background: #ffffff;
    color: #54443c;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-more-btn {
    font-size: 1.8rem;
  }
}

.c-form {
  display: grid;
  gap: 24px;
}
.c-form input:not([name*=zip]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]),
.c-form textarea {
  width: 100%;
}
.c-form input[name*=zip] {
  width: 5em;
}
.c-form input,
.c-form select,
.c-form textarea {
  border: 1px solid #D4D4D4;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1em;
  padding: 8px;
}
.c-form-content {
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 744px) {
  .c-form-content {
    gap: 24px;
    grid-template-columns: 11em 1fr;
  }
}
.c-form-content__title {
  font-weight: 700;
}
@media screen and (min-width: 744px) {
  .c-form-content__title {
    padding-top: 0.45em;
  }
}
.c-form-content__title.hissu {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.c-form-content__title.hissu::after {
  background: #54443c;
  border-radius: 5px;
  color: #fff;
  content: "必須";
  font-size: 0.75em;
  line-height: 1;
  padding: 4px;
  -webkit-transform: translateY(0.2em);
          transform: translateY(0.2em);
}
.c-form-privacy {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e7e7e7;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-inline: auto;
  padding: 2rem;
  text-align: center;
  width: min(100%, 500px);
}
.c-form-privacy a {
  color: #c35f77;
  text-decoration: underline;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-form-privacy a:hover {
  color: rgb(187.0909090909, 73.9090909091, 101.0727272727);
}
.c-form-btns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.c-form-btns input {
  background: #54443c;
  border: 1px solid transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.25em;
  font-weight: 700;
  max-width: 100%;
  padding: 1em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 32rem;
}
.c-form-btns input:hover {
  background: #fff;
  border-color: #54443c;
  color: #54443c;
}
.c-form-btns input:disabled {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.c-form-btns .wpcf7-spinner {
  display: none;
}
.c-form-btn__back {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.c-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 744px) {
  .c-heading {
    gap: 3.2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-heading {
    gap: 4rem;
  }
}

.c-heading__subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.24em;
  color: #a68a8a;
  text-transform: uppercase;
}
@media screen and (min-width: 744px) {
  .c-heading__subtitle {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-heading__subtitle {
    font-size: 2rem;
  }
}

.c-heading__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #54443c;
}
@media screen and (min-width: 744px) {
  .c-heading__title {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-heading__title {
    font-size: 3.6rem;
  }
}

.wp-pagenavi {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3rem;
}
.wp-pagenavi > * {
  background: #fff;
  border-radius: 50%;
  display: grid;
  font-size: 1.2em;
  font-weight: 700;
  height: clamp(2.9rem, 8vw, 3.8rem);
  line-height: 1;
  place-items: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: clamp(2.9rem, 8vw, 3.8rem);
}
.wp-pagenavi > *:not(.current):not(.extend) {
  cursor: pointer;
}
.wp-pagenavi > *:not(.current):not(.extend):hover {
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
}
.wp-pagenavi .current {
  color: #fff;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: transparent;
  position: relative;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  bottom: 0;
  content: "\f105";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-size: 1em;
  font-weight: 700;
  height: 1em;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 0.6em;
}
.wp-pagenavi .previouspostslink::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.c-pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-pagination a.page-numbers,
.c-pagination span.page-numbers.current {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  display: grid;
  place-content: center;
  border-radius: 0.4rem;
  width: 3.4rem;
  height: 3.4rem;
}

.c-pagination a.page-numbers {
  background-color: #f4dbdb;
  color: #c35f77;
}

.c-pagination span.page-numbers.current {
  background-color: #c35f77;
  color: #ffffff;
}

@media (any-hover: hover) {
  .c-pagination a.page-numbers:hover {
    opacity: 0.7;
  }
}
.c-pagination span.page-numbers.dots {
  background-color: transparent;
  color: #c35f77;
  display: grid;
  place-content: center;
  height: 3.4rem;
  width: auto;
  min-width: auto;
}

/* Newsカードコンポーネント
***************************************************************/
.c-news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  padding-block: 2.4rem;
  border-bottom: 1px solid #f4dbdb;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-news-card {
    gap: 2.4rem;
    padding-block: 3.6rem 3.5rem;
  }
}
@media (any-hover: hover) {
  .c-news-card:hover .c-news-card__circle-icon {
    background: #f4dbdb;
  }
  .c-news-card:hover .c-news-card__date {
    opacity: 0.7;
  }
  .c-news-card:hover .c-news-card__title {
    color: #a68a8a;
  }
}

.c-news-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  -webkit-transition: opacity 0.3s, color 0.3s;
  transition: opacity 0.3s, color 0.3s;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-news-card__meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8rem;
  }
}

.c-news-card__date {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #a68a8a;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-news-card__date {
    font-size: 1.5rem;
    -webkit-padding-before: 0.6rem;
            padding-block-start: 0.6rem;
  }
}

.c-news-card__title {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.15em;
  color: #54443c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.c-news-card__circle-icon {
  display: grid;
  place-content: center;
  width: 3.2rem;
  aspect-ratio: 1;
  border-radius: 100vmax;
  border: 1px solid #f4dbdb;
  color: #a68a8a;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-news-card__circle-icon {
    width: 4rem;
  }
}
.c-news-card__circle-icon::before {
  content: "→";
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-news-card__circle-icon::before {
    font-size: 1.8rem;
  }
}

.c-page-hero {
  background: #fcf7f8;
}

.c-page-hero__container {
  border-bottom: 1px solid #f4dbdb;
  padding-block: 8rem;
}
@media screen and (min-width: 744px) {
  .c-page-hero__container {
    padding-block: 8rem 4.2rem;
  }
}

.c-page-hero__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
@media screen and (min-width: 744px) {
  .c-page-hero__group {
    gap: 3.2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-page-hero__group {
    gap: 4rem;
  }
}

.c-page-hero__subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.24em;
  color: #a68a8a;
  text-transform: uppercase;
}
@media screen and (min-width: 744px) {
  .c-page-hero__subtitle {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-page-hero__subtitle {
    font-size: 2rem;
  }
}

.c-page-hero__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.6;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 744px) {
  .c-page-hero__title {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c-page-hero__title {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 743px) {
  .c-table * {
    display: block;
  }
}
.c-table tr {
  background: #fff;
  border-top: 1px solid #f4dbdb;
}
@media screen and (max-width: 743px) {
  .c-table tr {
    display: grid;
    gap: 4px;
    padding-block: 8px;
  }
}
.c-table tr:last-child {
  border-bottom: 1px solid #f4dbdb;
}
.c-table td {
  border: none !important;
}
@media screen and (max-width: 743px) {
  .c-table td {
    padding-block: 0;
  }
}
.c-table td:first-child {
  font-weight: 700;
}

.u-fadeinUp {
  opacity: 0;
  visibility: hidden;
}
.u-fadeinUp-active {
  -webkit-animation-name: fadeinUp;
          animation-name: fadeinUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  visibility: hidden;
}

/**
デバイス種別ごとの非表示クラス
.u-only-touch > タッチデバイスのみ表示
.u-only-mouse > マウスデバイスのみ表示
**/
@media (hover: hover) {
  .u-only-touch {
    display: none !important;
  }
}

@media (hover: none) {
  .u-only-mouse {
    display: none !important;
  }
}

/**
各ブレークポイントごとの非表示クラス
使用例：
.u-md-min-hide
.u-lg-max-hide 
**/
@media screen and (min-width: 321px) {
  .u-xs-min-hide {
    display: none !important;
  }
}

@media screen and (min-width: 512px) {
  .u-sm-min-hide {
    display: none !important;
  }
}

@media screen and (min-width: 744px) {
  .u-md-min-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .u-lg-min-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1280px) {
  .u-xl-min-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1920px) {
  .u-xxl-min-hide {
    display: none !important;
  }
}

@media screen and (max-width: 320px) {
  .u-xs-max-hide {
    display: none !important;
  }
}

@media screen and (max-width: 511px) {
  .u-sm-max-hide {
    display: none !important;
  }
}

@media screen and (max-width: 743px) {
  .u-md-max-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .u-lg-max-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1279px) {
  .u-xl-max-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1919px) {
  .u-xxl-max-hide {
    display: none !important;
  }
}

.p-fv {
  position: relative;
  z-index: 0;
  background: url(../images/pages/top/bg_fv--sp.webp) no-repeat 50% 0%/cover;
  overflow: hidden;
}
@media screen and (min-width: 512px) {
  .p-fv {
    background-position: 50% 15%;
  }
}
@media screen and (min-width: 744px) {
  .p-fv {
    background: url(../images/pages/top/bg_fv--pc.webp) no-repeat 99.9% 50%/cover;
  }
}
@media screen and (min-width: 1920px) {
  .p-fv {
    background-position: 99.9% 0%;
  }
}

.p-fv__inner {
  padding: 1.3rem 1.6rem 2rem 1.6rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  max-width: 53.2rem;
}
@media screen and (min-width: 744px) {
  .p-fv__inner {
    padding-inline: 4rem;
    max-width: 78rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-fv__inner {
    padding: 9.5rem 4rem 3.2rem 4rem;
    max-width: 120rem;
  }
}

.p-fv__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3rem;
  -webkit-margin-start: -0.7rem;
          margin-inline-start: -0.7rem;
  padding-inline: 0.6rem;
}
@media screen and (min-width: 744px) {
  .p-fv__head {
    gap: 0.2rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    padding-inline: 0 0.8rem;
  }
}

.p-fv__tagline {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.52;
  color: #a68a8a;
  text-align: left;
}
@media screen and (min-width: 744px) {
  .p-fv__tagline {
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    line-height: 2;
    -webkit-padding-start: 1.6rem;
            padding-inline-start: 1.6rem;
  }
}

.p-fv__subtitle {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: #c35f77;
  position: relative;
  padding-block: 0.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
@media screen and (min-width: 744px) {
  .p-fv__subtitle {
    font-size: 2.4rem;
  }
}
.p-fv__subtitle::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, color-stop(83%, #ffffff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, #ffffff 83%, rgba(255, 255, 255, 0));
  top: 0;
  left: calc(50% - 50vw);
  right: 0;
  width: auto;
  height: 100%;
  z-index: -1;
}

/*文字のシャドウ分を考慮して調整*/
.p-fv__heading {
  -webkit-margin-before: 18.6rem;
          margin-block-start: 18.6rem;
  width: 30.7rem;
  aspect-ratio: 307/128;
  -webkit-margin-start: -0.9rem;
          margin-inline-start: -0.9rem;
}
@media screen and (min-width: 744px) {
  .p-fv__heading {
    -webkit-margin-before: 5.4rem;
            margin-block-start: 5.4rem;
    width: min(50.6720430108vw, 450px);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-fv__heading {
    -webkit-margin-before: 5.4rem;
            margin-block-start: 5.4rem;
    width: 80.1rem;
    aspect-ratio: 801/102;
  }
}
.p-fv__heading img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-fv__strength {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-margin-start: -0.7rem;
          margin-inline-start: -0.7rem;
}
@media screen and (min-width: 744px) {
  .p-fv__strength {
    gap: 1.8rem;
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
    -webkit-margin-start: 0rem;
            margin-inline-start: 0rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-fv__strength-item {
  width: 12rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-shadow: 0 0.605rem 0.908rem rgba(200, 180, 185, 0.24);
          box-shadow: 0 0.605rem 0.908rem rgba(200, 180, 185, 0.24);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.8rem 1rem 0 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
.p-fv__strength-item::before {
  content: "";
  position: absolute;
  background: url(../images/pages/top/bg_fv-circle.webp) no-repeat center center/contain;
  inset: 0;
  z-index: -1;
}
.p-fv__strength-item:nth-of-type(1) {
  translate: 0.6rem 0;
}
.p-fv__strength-item:nth-of-type(2) {
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
}
.p-fv__strength-item:nth-of-type(3) {
  translate: -0.6rem 0;
}
@media screen and (min-width: 744px) {
  .p-fv__strength-item:nth-of-type(1) {
    translate: 0 0;
  }
  .p-fv__strength-item:nth-of-type(2) {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
  .p-fv__strength-item:nth-of-type(3) {
    translate: 0 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-fv__strength-item {
    gap: 1.5rem;
    width: 17.5rem;
    padding: 3.1rem 1rem 0 1rem;
  }
}

.p-fv__strength-icon {
  width: 4rem;
  height: 2.8rem;
  aspect-ratio: 45/28;
}
.p-fv__strength-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-fv__strength-icon {
    width: 4.5rem;
  }
}

.p-fv__strength-text {
  font-weight: 500;
  font-size: 1.4rem;
  color: #a68a8a;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-fv__strength-text {
    font-size: 1.753rem;
    letter-spacing: 0.15em;
  }
}

.p-fv__cta {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
  background: #ffffff;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0.8rem 2.4rem rgba(200, 180, 185, 0.4);
          box-shadow: 0 0.8rem 2.4rem rgba(200, 180, 185, 0.4);
  padding: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-fv__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: min(5.5555555556vw, 80px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-margin-before: 6.4rem;
            margin-block-start: 6.4rem;
    padding: 3rem 8rem;
  }
}

.p-fv__cta-label {
  background: #54443c;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 0.4rem 1.6rem;
  width: 100%;
}
@media screen and (min-width: 744px) {
  .p-fv__cta-label {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.3;
  }
}

.p-fv__cta-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-margin-before: 0.2rem;
          margin-block-start: 0.2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-fv__cta-price {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-fv__cta-original {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p-fv__cta-original-label {
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: left;
}
@media screen and (min-width: 744px) {
  .p-fv__cta-original-label {
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    line-height: 1.52;
  }
}

.p-fv__cta-original-amount {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  white-space: nowrap;
  position: relative;
}
.p-fv__cta-original-amount::before {
  content: "";
  position: absolute;
  background: #54443c;
  height: 1px;
  width: 100%;
  top: 0.5833333333em;
  left: 0;
}
@media screen and (min-width: 744px) {
  .p-fv__cta-original-amount {
    font-size: 3.2rem;
  }
}

.p-fv__cta-original-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-family: "Shippori Mincho", serif;
  color: #54443c;
  gap: 0.2rem;
  line-height: 1;
  font-weight: 500;
}

.p-fv__cta-original-tax {
  font-size: 0.8rem;
  display: inline-block;
}
@media screen and (min-width: 744px) {
  .p-fv__cta-original-tax {
    font-size: 1rem;
  }
}

.p-fv__cta-original-yen {
  font-size: 1.2rem;
  display: inline-block;
}
@media screen and (min-width: 744px) {
  .p-fv__cta-original-yen {
    font-size: 1.4rem;
  }
}

.p-fv__cta-arrow svg {
  width: 2.8rem;
  height: 2.8rem;
}
@media screen and (min-width: 744px) {
  .p-fv__cta-arrow svg {
    width: 4rem;
    height: 4rem;
  }
}

.p-fv__cta-special {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #c35f77;
  line-height: 1;
  gap: 0.1rem;
}
@media screen and (min-width: 744px) {
  .p-fv__cta-special {
    gap: 0.2rem;
  }
}

.p-fv__cta-special-amount {
  font-size: 4.4rem;
  white-space: nowrap;
}
@media screen and (min-width: 744px) {
  .p-fv__cta-special-amount {
    font-size: 6.4rem;
    letter-spacing: 0.02em;
  }
}

.p-fv__cta-special-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 0.14rem;
}
@media screen and (min-width: 744px) {
  .p-fv__cta-special-unit {
    gap: 0;
  }
}

.p-fv__cta-special-tax {
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  font-weight: 500;
}
@media screen and (min-width: 744px) {
  .p-fv__cta-special-tax {
    font-size: 1.4rem;
  }
}

.p-fv__cta-special-yen {
  font-weight: 500;
  font-size: 2.2rem;
}
@media screen and (min-width: 744px) {
  .p-fv__cta-special-yen {
    font-size: 3.2rem;
  }
}

.p-fv__cta-link {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-fv__cta-link {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.p-fv__annotation {
  font-weight: 400;
  font-size: 1rem;
  text-align: right;
  letter-spacing: 0.08em;
  line-height: 1.3;
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
}

.p-top-news {
  background: -webkit-gradient(linear, left top, left bottom, from(#fcf7f8), to(#fbeeef));
  background: linear-gradient(to bottom, #fcf7f8 0%, #fbeeef 100%);
  padding: 8rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-top-news {
    padding: 16rem 0;
  }
}
.p-top-news::before {
  content: "";
  position: absolute;
  left: -7.4rem;
  top: -8rem;
  width: 22.9rem;
  aspect-ratio: 1;
  background: url(../images/pages/top/deco_flower.webp) no-repeat 50% 50%/contain;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-top-news::before {
    width: 51.6rem;
    left: -23.6rem;
    top: -14.8rem;
  }
}
.p-top-news::after {
  content: "";
  position: absolute;
  right: -11rem;
  bottom: -9rem;
  width: 22.9rem;
  aspect-ratio: 1;
  background: url(../images/pages/top/deco_flower.webp) no-repeat 50% 50%/contain;
  pointer-events: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-top-news::after {
    width: 51.6rem;
    right: -19.6rem;
    bottom: -18.1rem;
  }
}

.p-top-news__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-top-news__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-top-news__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 33.8rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 31.3rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-top-news__heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}

.p-top-news__more {
  text-align: center;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-top-news__more {
    text-align: left;
  }
}

.p-top__news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-top__news-list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 0;
  }
}

.p-top-news__empty {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.p-message {
  background-color: #ffffff;
  padding-block: 8rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-message {
    padding-block: 16rem;
  }
}
.p-message::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 21.8rem;
  top: 0;
  right: 0;
  background: url(../images/pages/top/deco_blur-message01--sp.webp) no-repeat center center/cover;
  pointer-events: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-message::before {
    width: 56.1rem;
    height: 50.4rem;
    top: -1rem;
    right: 0;
    background: url(../images/pages/top/deco_blur-message01--pc.webp) no-repeat center center/cover;
  }
}
.p-message::after {
  content: "";
  position: absolute;
  width: 24.6rem;
  height: 31.1rem;
  bottom: 0;
  left: 0;
  background: url(../images/pages/top/deco_blur-message02--sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-message::after {
    width: 58.7rem;
    height: 60.4rem;
    bottom: 0;
    left: 0;
    background: url(../images/pages/top/deco_blur-message02--pc.webp) no-repeat center center/cover;
  }
}

.p-message__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  -webkit-margin-before: 4.5rem;
          margin-block-start: 4.5rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-message__container {
    gap: 4rem;
    -webkit-margin-before: 12.3rem;
            margin-block-start: 12.3rem;
  }
}

.p-message__intro {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  -webkit-padding-start: 1.7rem;
          padding-inline-start: 1.7rem;
  -webkit-margin-start: -0.65rem;
          margin-inline-start: -0.65rem;
  width: calc(100% + 1.3rem);
  position: relative;
  z-index: 1;
}
.p-message__intro::before {
  content: "";
  position: absolute;
  background: url(../images/pages/top/icon_message-quote.svg) no-repeat 0 0/contain;
  top: -0.5rem;
  left: 0;
  width: 3.4rem;
  height: 3.2rem;
  z-index: -1;
}
@media screen and (min-width: 744px) {
  .p-message__intro {
    font-size: min(2.688172043vw, 3.6rem);
    letter-spacing: 0.12em;
  }
  .p-message__intro::before {
    top: -2.3rem;
    width: 6.8rem;
    height: 6.4rem;
  }
}

.p-message__grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-areas: "lead" "closing" "image" "profile";
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-message__grid {
    grid-template-columns: minmax(0, 1fr) 36.5rem;
    grid-template-areas: "lead image" "closing closing" "profile profile";
    -webkit-column-gap: 3.8rem;
       -moz-column-gap: 3.8rem;
            column-gap: 3.8rem;
  }
}

.p-message__cell--lead {
  grid-area: lead;
}

.p-message__lead-text,
.p-message__closing-text,
.p-message__profile-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-message__lead-text,
  .p-message__closing-text,
  .p-message__profile-text {
    line-height: 2;
  }
}

.p-message__worries {
  background-color: #f9f9f9;
  border-left: 3px solid #a68a8a;
  border-radius: 1.6rem;
  -webkit-box-shadow: 0 0.4rem 2rem rgba(200, 180, 185, 0.05);
          box-shadow: 0 0.4rem 2rem rgba(200, 180, 185, 0.05);
  padding: 2.4rem 1.6rem 2.4rem 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.8rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #a68a8a;
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-message__worries {
    padding: 3.2rem 2rem 3.2rem 1.7rem;
    letter-spacing: 0.15em;
    gap: 1.6rem;
  }
}

.p-message__cell--closing {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
  grid-area: closing;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-message__cell--closing {
    margin-top: 3.2rem;
    -webkit-padding-end: 4rem;
            padding-inline-end: 4rem;
  }
}

.p-message__cell--image {
  grid-area: image;
  width: 100%;
  aspect-ratio: 343/162;
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
  border-radius: 0.8rem;
  overflow: hidden;
}
.p-message__cell--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 5%;
     object-position: 50% 5%;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-message__cell--image {
    margin-top: 0;
    aspect-ratio: 365/370;
  }
}

.p-message__cell--profile {
  grid-area: profile;
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #a68a8a;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-message__cell--profile {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
    padding-top: 2.4rem;
  }
}

.p-message__profiles-head {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #a68a8a;
}

.p-message__profiles-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-message__profiles-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem;
  }
}

.p-message__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-message__profile {
    padding: 1.2rem;
  }
}

.p-message__profile-name-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}

.p-message__profile-name {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.15em;
}

.p-message__profile-note {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.52;
  letter-spacing: 0.08em;
}

.p-message__profile-line {
  width: 4rem;
  border-top: 1px solid #a68a8a;
}

.p-feature {
  background-color: #fcf7f8;
  padding-block: 8rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-feature {
    padding-block: 16rem;
  }
}
.p-feature::before {
  content: "";
  position: absolute;
  left: -8.6rem;
  top: -6.1rem;
  width: 22.9rem;
  aspect-ratio: 1;
  background: url(../images/pages/top/deco_flower.webp) no-repeat 50% 50%/contain;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-feature::before {
    width: 51.6rem;
    left: -10.3rem;
    top: -6.3rem;
  }
}
.p-feature::after {
  content: "";
  position: absolute;
  right: -9.3rem;
  bottom: -4.8rem;
  width: 22.9rem;
  aspect-ratio: 1;
  background: url(../images/pages/top/deco_flower.webp) no-repeat 50% 50%/contain;
  pointer-events: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-feature::after {
    width: 51.6rem;
    right: -15.3rem;
    bottom: 36.3rem;
  }
}

.p-feature__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-feature__container {
    gap: 10rem;
  }
}

.p-feature__intro {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 744px) {
  .p-feature__intro {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-feature__intro {
    gap: 4rem;
  }
}

.p-feature__intro-text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 744px) {
  .p-feature__intro-text {
    line-height: 2;
    width: 38rem;
    max-width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-feature__intro-text {
    width: 40rem;
  }
}

.p-feature__intro-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 34.3rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 744px) {
  .p-feature__intro-image {
    width: 43.2692307692%;
    gap: 0.8rem;
    margin-inline: 0;
  }
}

.p-feature__intro-image-frame {
  aspect-ratio: 343/200;
  border-radius: 0.8rem;
  overflow: hidden;
}
.p-feature__intro-image-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-feature__intro-caption {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;
}

.p-feature__cards-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-feature__cards-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.p-feature__card {
  background-color: #ffffff;
  border-radius: 1.6rem;
  padding: 1.6rem;
  -webkit-box-shadow: 0 0.8rem 1.2rem rgba(200, 180, 185, 0.24);
          box-shadow: 0 0.8rem 1.2rem rgba(200, 180, 185, 0.24);
}
@media screen and (min-width: 744px) {
  .p-feature__card {
    padding: 2.4rem;
  }
}

.p-feature__card-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}

.p-feature__card-icon {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 5.6rem;
  background-color: #faf1ef;
  display: grid;
  place-content: center;
  -webkit-box-shadow: inset 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
.p-feature__card-icon img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-feature__card-title {
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.3;
  letter-spacing: 0.15em;
  color: #c35f77;
}

.p-feature__card-image {
  width: 31.1rem;
  max-width: 100%;
  margin-inline: auto;
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  aspect-ratio: 311/164;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media screen and (min-width: 744px) {
  .p-feature__card-image {
    width: 28.2rem;
    -webkit-margin-before: 1.6rem;
            margin-block-start: 1.6rem;
    aspect-ratio: 282/164;
  }
}
.p-feature__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-feature__card-text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #54443c;
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
}
@media screen and (min-width: 744px) {
  .p-feature__card-text {
    line-height: 2;
    -webkit-margin-before: 1.6rem;
            margin-block-start: 1.6rem;
  }
}

.p-feature__card-note {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 400;
}
@media screen and (min-width: 744px) {
  .p-feature__card-note {
    letter-spacing: 0.08em;
  }
}

.p-feature__steps-container {
  width: 100%;
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 2rem 1.6rem 2.4rem;
  -webkit-box-shadow: 0 0.8rem 2.4rem rgba(200, 180, 185, 0.24);
          box-shadow: 0 0.8rem 2.4rem rgba(200, 180, 185, 0.24);
}
@media screen and (min-width: 744px) {
  .p-feature__steps-container {
    padding: 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-feature__steps-container {
    border-radius: 4rem;
    padding: 4rem;
    gap: 6.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-feature__steps-heading {
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  line-height: 1.3;
  color: #c35f77;
  text-align: center;
  -webkit-padding-after: 1.2rem;
          padding-block-end: 1.2rem;
  border-bottom: 1px solid rgba(166, 138, 138, 0.5);
}
@media screen and (min-width: 744px) {
  .p-feature__steps-heading {
    font-size: 2.4rem;
    letter-spacing: 0.12em;
    line-height: 1.8;
    text-align: left;
    -webkit-padding-after: 0.8rem;
            padding-block-end: 0.8rem;
  }
}

.p-feature__steps-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-feature__steps-contents {
    gap: 2.4rem;
  }
}

.p-feature__steps-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
@media screen and (min-width: 744px) {
  .p-feature__steps-item {
    gap: 0;
  }
}

.p-feature__step-title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}

.p-feature__step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 100vmax;
  background-color: #faf1ef;
  -webkit-box-shadow: inset 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
  display: grid;
  place-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  color: #a68a8a;
}

.p-feature__step-title {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.15em;
  color: #c35f77;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-feature__step-title {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 500;
  }
}

.p-feature__step-text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #54443c;
  -webkit-padding-start: 5.6rem;
          padding-inline-start: 5.6rem;
}
@media screen and (min-width: 744px) {
  .p-feature__step-text {
    line-height: 2;
  }
}

.p-feature__steps-image {
  width: 31.1rem;
  max-width: 100%;
  margin-inline: auto;
  aspect-ratio: 311/314;
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
}
@media screen and (min-width: 744px) {
  .p-feature__steps-image {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    aspect-ratio: 400/339;
    width: 30%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 744px) {
  .p-feature__steps-image {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    aspect-ratio: 400/339;
    width: 41.6666666667%;
  }
}
.p-feature__steps-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 85% 50%;
     object-position: 85% 50%;
}
@media screen and (min-width: 744px) {
  .p-feature__steps-image img {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

.p-feature__annotation {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
}
@media screen and (min-width: 744px) {
  .p-feature__annotation {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
}

.p-menu {
  padding: 8rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(50%, rgba(252, 247, 248, 0.5)), to(#ffffff));
  background: linear-gradient(180deg, #ffffff 0%, rgba(252, 247, 248, 0.5) 50%, #ffffff 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-menu {
    padding: 16rem 0;
  }
}
.p-menu::before {
  content: "";
  position: absolute;
  width: 26.8rem;
  height: 23.7rem;
  top: 0;
  right: 0;
  background: url(../images/pages/top/deco_blur-menu01--sp.webp) no-repeat center center/cover;
  pointer-events: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-menu::before {
    width: 54.9rem;
    height: 78.1rem;
    top: 0;
    right: 0;
    background: url(../images/pages/top/deco_blur-menu01--pc.webp) no-repeat center center/cover;
  }
}
.p-menu::after {
  content: "";
  position: absolute;
  width: 26.9rem;
  height: 19.7rem;
  bottom: -6rem;
  left: 0;
  background: url(../images/pages/top/deco_blur-menu02--sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-menu::after {
    width: 54.5rem;
    height: 61rem;
    bottom: 0;
    left: 0;
    background: url(../images/pages/top/deco_blur-menu02--pc.webp) no-repeat center center/cover;
  }
}

.p-menu__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}
@media screen and (min-width: 744px) {
  .p-menu__contents {
    gap: 4rem;
    -webkit-margin-before: 6rem;
            margin-block-start: 6rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-menu__contents {
    -webkit-margin-before: 10rem;
            margin-block-start: 10rem;
  }
}

.p-menu__lead {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 744px) {
  .p-menu__lead {
    text-align: center;
    line-height: 2;
  }
}

.p-menu__card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  padding-inline: 0.65rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-menu__card-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem 2.5rem;
    padding-inline: 0rem;
  }
}

.p-menu__card {
  padding: 1.6rem;
  background: #ffffff;
  border: 1px solid #fcf7f8;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0.8rem 1.6rem rgba(166, 138, 138, 0.12);
          box-shadow: 0 0.8rem 1.6rem rgba(166, 138, 138, 0.12);
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-menu__card {
    padding: 2.4rem;
    border-radius: 3.2rem;
    border-color: #faf1ef;
  }
}

.p-menu__card-title {
  -webkit-padding-after: 0.8rem;
          padding-block-end: 0.8rem;
  color: #c35f77;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(166, 138, 138, 0.5);
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-menu__card-title {
    -webkit-padding-after: 1.6rem;
            padding-block-end: 1.6rem;
  }
}

.p-menu__card-body {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
  padding: 1.2rem;
  background: #faf1ef;
  border-radius: 1.6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-menu__card-body {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
    padding: 1.2rem 2rem;
    min-height: 17.8rem;
  }
}

.p-menu__time {
  color: #a68a8a;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.15em;
}

.p-menu__desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-menu__desc {
    line-height: 2;
  }
}

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

.p-menu__cta-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  padding: 1.4rem 2.5rem;
  background: #54443c;
  border: 2px solid #54443c;
  border-radius: 100vmax;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.6;
  white-space: nowrap;
  -webkit-box-shadow: 0 0.8rem 2.4rem rgba(200, 180, 185, 0.4);
          box-shadow: 0 0.8rem 2.4rem rgba(200, 180, 185, 0.4);
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-menu__cta-link span {
  letter-spacing: 0.08em;
  line-height: 1;
}
@media (any-hover: hover) {
  .p-menu__cta-link:hover {
    background: #ffffff;
    color: #54443c;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-menu__cta-link {
    padding: 2.4rem 6.4rem;
    font-size: 2.2rem;
    line-height: 1.4;
    letter-spacing: 0.15em;
  }
}

.p-menu__note {
  width: 100%;
  color: #54443c;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: right;
}

.p-flow {
  padding: 8rem 0;
  background: #fcf7f8;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-flow {
    padding: 16rem 0;
  }
}
.p-flow::before {
  content: "";
  position: absolute;
  left: -4.1rem;
  top: -8rem;
  width: 22.9rem;
  aspect-ratio: 1;
  background: url(../images/pages/top/deco_flower.webp) no-repeat 50% 50%/contain;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-flow::before {
    width: 51.6rem;
    left: -9.5rem;
    top: -9.5rem;
  }
}
.p-flow::after {
  content: "";
  position: absolute;
  right: -9.2rem;
  bottom: -6.8rem;
  width: 22.9rem;
  aspect-ratio: 1;
  background: url(../images/pages/top/deco_flower.webp) no-repeat 50% 50%/contain;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-flow::after {
    display: none;
  }
}

.p-flow__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}
@media screen and (min-width: 744px) {
  .p-flow__contents {
    max-width: 80rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-flow__contents {
    -webkit-margin-before: 10rem;
            margin-block-start: 10rem;
    gap: 1.6rem;
  }
}

.p-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-flow__list {
    gap: 2.4rem;
  }
}

.p-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-flow__item {
    gap: 2.4rem;
  }
}
.p-flow__item::before {
  content: "";
  position: absolute;
  left: calc(2.8rem - 0.5px);
  top: 4rem;
  width: 1px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(166, 138, 138, 0.3)), to(#f2e8eb));
  background: linear-gradient(180deg, rgba(166, 138, 138, 0.3) 0%, #f2e8eb 100%);
  z-index: -1;
}
.p-flow__item:last-child::before {
  display: none;
}

.p-flow__step-badge {
  width: 5.6rem;
  aspect-ratio: 1;
  border: 1px solid #faf1ef;
  border-radius: 100vmax;
  background: #ffffff;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  display: grid;
  place-content: center;
  gap: 0.2rem;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}

.p-flow__step-label,
.p-flow__step-number {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: #a68a8a;
  text-align: center;
}

.p-flow__card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  -webkit-box-shadow: 0 0.8rem 1.2rem rgba(200, 180, 185, 0.24);
          box-shadow: 0 0.8rem 1.2rem rgba(200, 180, 185, 0.24);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-flow__card {
    border-radius: 2.4rem;
    padding: 3.2rem 2.4rem;
  }
}
.p-flow__card.p-flow__card--first {
  padding: 1.6rem 0.2rem 1.6rem 1.6rem;
}
@media screen and (min-width: 744px) {
  .p-flow__card.p-flow__card--first {
    padding: 1.6rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-flow__card.p-flow__card--first {
    padding: 3.2rem 2.4rem;
  }
}

.p-flow__title {
  color: #c35f77;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-flow__title {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.15em;
  }
}

.p-flow__supplement {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  background: #f9f9f9;
  border-radius: 1.2rem;
  padding: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-flow__supplement {
    margin-top: 1.6rem;
    width: 100%;
  }
}

.p-flow__supplement-head {
  background: #ffffff;
  border-radius: 0.4rem;
  padding: 0.2rem 0.4rem;
  color: #a68a8a;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: 0.08em;
}

.p-flow__supplement-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: 0.08em;
}

.p-flow__supplement-accent {
  color: #c35f77;
}

.p-flow__note {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.08em;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

.p-faq {
  padding: 8rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fcf7f8));
  background: linear-gradient(180deg, #ffffff 0%, #fcf7f8 100%);
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-faq {
    padding: 16rem 0;
  }
}

.p-faq__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-faq__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8rem;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-faq__heading {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-faq__list {
    gap: 3.2rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-faq__item {
  padding: 1.6rem;
  background: #ffffff;
  border: 1px solid #fcf7f8;
  border-radius: 1.2rem;
  -webkit-box-shadow: 0.2rem 0.2rem 0.4rem rgba(166, 138, 138, 0.24);
          box-shadow: 0.2rem 0.2rem 0.4rem rgba(166, 138, 138, 0.24);
}
@media screen and (min-width: 744px) {
  .p-faq__item {
    padding: 4rem;
  }
}

.p-faq__q,
.p-faq__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
@media screen and (min-width: 744px) {
  .p-faq__q,
  .p-faq__a {
    gap: 2.4rem;
  }
}

.p-faq__q {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-faq__a {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 744px) {
  .p-faq__a {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.p-faq__badge {
  width: 3.2rem;
  aspect-ratio: 1;
  border-radius: 100vmax;
  display: grid;
  place-content: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: #a68a8a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-faq__badge--q {
  background: #faf1ef;
}

.p-faq__badge--a {
  background: #f9f9f9;
}

.p-faq__q-text {
  color: #c35f77;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.15em;
}

.p-faq__a-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.p-faq__a-note {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.08em;
  display: inline-block;
}
@media screen and (min-width: 744px) {
  .p-faq__a-note {
    display: inline;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-faq__list {
    gap: 3.2rem;
  }
  .p-faq__item {
    padding: 4rem;
    border-radius: 2.4rem;
  }
  .p-faq__q,
  .p-faq__a {
    gap: 2.4rem;
  }
  .p-faq__q-text {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.15em;
  }
  .p-faq__a-text {
    line-height: 2;
  }
}
.p-staff {
  padding: 8rem 0;
  background: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-staff {
    padding: 16rem 0;
  }
}
.p-staff::before {
  content: "";
  position: absolute;
  width: 28.6rem;
  height: 25.5rem;
  top: 0;
  right: 0;
  background: url(../images/pages/top/deco_blur-staff01--sp.webp) no-repeat center center/cover;
  pointer-events: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-staff::before {
    width: 60rem;
    height: 64.1rem;
    top: 0;
    right: 0;
    background: url(../images/pages/top/deco_blur-staff01--pc.webp) no-repeat center center/cover;
  }
}
.p-staff::after {
  content: "";
  position: absolute;
  width: 23.9rem;
  height: 23.6rem;
  bottom: 0;
  left: 0;
  background: url(../images/pages/top/deco_blur-staff02--sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-staff::after {
    width: 45.6rem;
    height: 77.3rem;
    bottom: 0;
    left: 0;
    background: url(../images/pages/top/deco_blur-staff02--pc.webp) no-repeat center center/cover;
  }
}

.p-staff__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-staff__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem;
    -webkit-margin-before: 10rem;
            margin-block-start: 10rem;
  }
}

.p-staff__image {
  width: 24rem;
  aspect-ratio: 240/292;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-staff__image {
    width: 24.1rem;
  }
}
.p-staff__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-staff__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  padding-inline: 3.7rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-staff__text {
    max-width: 59.9rem;
    padding-inline: 0;
  }
}

.p-staff__name {
  color: #a68a8a;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.p-staff__desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-staff__desc {
    line-height: 2;
  }
}

.p-access {
  padding: 8rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(252, 247, 248, 0.5)), to(#ffffff));
  background: linear-gradient(180deg, rgba(252, 247, 248, 0.5) 0%, #ffffff 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-access {
    padding: 16rem 0;
  }
}
.p-access::before {
  content: "";
  position: absolute;
  left: -7rem;
  top: -8rem;
  width: 22.9rem;
  aspect-ratio: 1;
  background: url(../images/pages/top/deco_flower.webp) no-repeat 50% 50%/contain;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-access::before {
    width: 51.6rem;
    left: -11.8rem;
    top: -9.2rem;
  }
}
.p-access::after {
  content: "";
  position: absolute;
  right: -8.3rem;
  bottom: -7.7rem;
  width: 22.9rem;
  aspect-ratio: 1;
  background: url(../images/pages/top/deco_flower.webp) no-repeat 50% 50%/contain;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-access::after {
    width: 51.6rem;
    right: -16.6rem;
    bottom: -13.9rem;
  }
}

.p-access__contents {
  background: #ffffff;
  border: 1px solid #faf1ef;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0.8rem 2.4rem rgba(200, 180, 185, 0.24);
          box-shadow: 0 0.8rem 2.4rem rgba(200, 180, 185, 0.24);
  padding: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  overflow: hidden;
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}
@media screen and (min-width: 744px) {
  .p-access__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
    padding: 4rem;
    border-radius: 4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-margin-before: 10rem;
            margin-block-start: 10rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-access__contents {
    border-radius: 4rem;
    -webkit-margin-before: 10rem;
            margin-block-start: 10rem;
    gap: 4rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-access__info {
    width: 53.8rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.p-access__salon-name {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.12em;
  -webkit-padding-after: 0.8rem;
          padding-block-end: 0.8rem;
  border-bottom: 1px solid rgba(166, 138, 138, 0.5);
  text-align: center;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-access__salon-name {
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.12em;
    padding-block: 0.8rem 2.4rem;
    text-align: left;
  }
}

.p-access__list {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-access__list {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
    gap: 3.2rem;
  }
}

.p-access__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  color: #a68a8a;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-access__label {
    gap: 1.2rem;
    line-height: 2;
  }
}

.p-access__icon {
  width: 2.4rem;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-access__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-access__detail {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  -webkit-padding-start: 3.2rem;
          padding-inline-start: 3.2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-access__detail {
    line-height: 2;
  }
}

.p-access__map {
  opacity: 0.8;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 744px) {
  .p-access__map {
    width: 41.8010752688%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-access__map {
    width: 39.7916666667%;
  }
}

.p-access__map-frame {
  aspect-ratio: 1/1;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-access__map-frame {
    aspect-ratio: 382/464;
  }
}
.p-access__map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  vertical-align: top;
}

.p-cta {
  position: relative;
  padding: 8rem 0;
  color: #ffffff;
  background: url(../images/pages/top/bg_cta.webp) no-repeat center center/cover;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-cta {
    padding: 16rem 0;
  }
}

.p-cta__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-cta__container {
    gap: 10rem;
  }
}

.p-cta__catch {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #ffffff;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-cta__catch {
    font-size: 3.6rem;
    letter-spacing: 0.12em;
  }
}

.p-cta__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #ffffff;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-cta__text {
    line-height: 2;
    max-width: 78rem;
  }
}

/* 下層ページ
***************************************************************/
.p-news {
  padding-block: 4rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fcf7f8), to(#fbeeef));
  background: linear-gradient(180deg, #fcf7f8 0%, #fbeeef 100%);
}
@media screen and (min-width: 744px) {
  .p-news {
    padding-block: 8rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-news {
    padding-block: 16rem;
  }
}

.p-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  width: 100%;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-news__list {
    gap: 0;
  }
}

.p-news__empty {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.p-news__pagination {
  margin-top: 4rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-news__pagination {
    margin-top: 8rem;
  }
}

.p-single {
  background: -webkit-gradient(linear, left top, left bottom, from(#fcf7f8), to(#fbeeef));
  background: linear-gradient(180deg, #fcf7f8 0%, #fbeeef 100%);
  padding-block: 4rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 744px) {
  .p-single {
    padding-block: 6rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-single {
    padding-block: 8rem;
  }
}
.p-single .l-container > * + * {
  margin-top: 1.6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-single .l-container > * + * {
    margin-top: 2.4rem;
  }
}
.p-single h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.12em;
  padding-block: 0.8rem;
  border-bottom: 1px solid #54443c;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-single h2 {
    font-size: 2.4rem;
    padding-block: 1.6rem;
  }
}
.p-single h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.15em;
}
.p-single p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-single p {
    line-height: 2;
  }
}
.p-single a:not([class]) {
  color: var(--wp--preset--color--link);
  text-decoration: underline;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-single ul {
  list-style: none;
  -webkit-padding-start: 0.1em;
          padding-inline-start: 0.1em;
}
.p-single ul li {
  position: relative;
  padding-left: 1.4em;
}
.p-single ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: currentColor;
}
.p-single ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.p-single li {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-single li {
    line-height: 2;
  }
}
.p-single strong {
  font-weight: 700;
}
.p-single .p-single__link {
  margin-top: 4rem;
  text-align: center;
}
.p-single .p-single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-single .p-single__head {
    gap: 2.4rem;
  }
}
.p-single .p-single__thumbnail {
  overflow: hidden;
  border-radius: 0.8rem;
  aspect-ratio: 343/172;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-single .p-single__thumbnail {
    border-radius: 2rem;
    aspect-ratio: 1040/520;
  }
}
.p-single .p-single__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-single .p-single__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .p-single .p-single__title {
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.8;
  }
}
.p-single .p-single__date {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #a68a8a;
  display: block;
  text-align: right;
}

.p-privacy h2 {
  font-size: 1.25em;
  font-weight: 700;
}
.p-privacy * + h2 {
  margin-top: 2em;
}
.p-privacy ul {
  list-style: disc;
  padding-left: 1.5em;
}
.p-privacy ol {
  list-style: decimal;
  padding-left: 1.5em;
}/*# sourceMappingURL=style.css.map */