@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@700&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@layer foundation, vendor, layout, component, project, page, utilities;
:root {
  --sans-serif: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  --serif: "Zen Old Mincho", serif;
  --en-serif: "Oswald", serif;
  --base: #fff;
  --main: #505050;
  --accent: #c83232;
  --primary-color: #a087b7;
  --color-red: #e23f43;
  --color-blue: #416081;
  --color-green: #507c5b;
  --color-purple: #654d7d;
  --color-brown: #7c4c4c;
  --family-one-day: #4662A2;
  --family-two-days: #8D497A;
  --family-comfort: #64519C;
  --general-funeral: #3F7F6D;
  --direct-funeral: #6b6666;
  --welfare: #ffb800;
  --brown: #5D4634;
  --brown-dark: #5D4634;
  --purple: #72679E;
  --yellow: #FFE10A;
  --beige: #f4eee7;
  --header-h: 5rem;
  --container-w: 62.5rem;
  --container-space: 2.5rem;
  --transition-default: all .3s ease;
}
@media screen and (max-width: 767px) {
  :root {
    --header-h: 16vw;
    --container-space: 6.6666666667vw;
    --header-sub-h: 70px;
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
figure {
  all: unset;
  display: revert;
}

ol,
ul {
  list-style: none;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  text-size-adjust: 100%;
  font-family: var(--sans-serif);
  line-height: 1.8;
  min-width: 320px;
  color: var(--main);
  background: var(--base);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus-visible {
  outline: 2px solid blue;
}

img,
svg,
iframe,
video,
picture {
  max-width: 100%;
}

img {
  letter-spacing: 0;
  font-size: 12px;
  height: auto;
  vertical-align: middle;
}

a {
  word-break: break-all;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}

small {
  font-size: 80%;
}

button,
input[type=button],
input[type=submit] {
  cursor: pointer;
  font: inherit;
}

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

label {
  cursor: pointer;
  display: inline-block;
}

/*========================================
  LP専用のフッター
========================================*/
.l-footer {
  color: #fff;
  background: var(--brown-dark);
  border-top: 12px solid var(--purple);
  padding-bottom: var(--header-sub-h);
}
@media screen and (max-width: 767px) {
  .l-footer {
    border-width: 6px;
  }
}
.l-footer__inner {
  display: grid;
  grid-template-columns: 20rem repeat(3, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 3rem;
  padding-block: 4.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    display: block;
    padding-block: 7.4666666667vw 3.2vw;
  }
}
.l-footer__logo {
  grid-column: 1;
  grid-row: 1;
  display: block;
  width: 13.75rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 36.6666666667vw;
  }
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}
.l-footer__name {
  grid-column: 1;
  grid-row: 2;
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--yellow);
}
@media screen and (max-width: 767px) {
  .l-footer__name {
    margin-top: 4.2666666667vw;
    font-size: 4.2666666667vw;
  }
}
.l-footer__info {
  grid-column: 1;
  grid-row: 3;
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    margin-top: 1.0666666667vw;
    font-size: 3.7333333333vw;
    line-height: 1.8;
  }
}
.l-footer__nav {
  grid-row: 1/-1;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    margin-top: 2.6666666667vw;
  }
}
.l-footer__nav-ttl {
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
}
@media screen and (max-width: 767px) {
  .l-footer__nav-ttl {
    font-size: 4.2666666667vw;
  }
}
.l-footer__nav-list {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list {
    margin-top: 0.8vw;
    font-size: 3.7333333333vw;
  }
}
.l-footer__nav-list a {
  color: #fff;
  text-decoration: none;
  text-underline-offset: 2px;
}
@media (any-hover: hover) {
  .l-footer__nav-list a:hover {
    text-decoration: underline;
  }
}
.l-footer__bottom {
  padding-block: 1.75rem;
  font-size: 0.875rem;
  text-align: center;
  background-color: #001111;
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    margin-top: 5.3333333333vw;
    padding-block: 3.2vw;
    font-size: 3.2vw;
  }
}
.l-footer__bottom-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .l-footer__bottom-links {
    gap: 2.1333333333vw;
    margin-top: 1.6vw;
  }
}
.l-footer__bottom-links a {
  color: #fff;
  text-decoration: none;
}

/*========================================
  LP共通のヘッダー
========================================*/
.l-header {
  display: grid;
  place-items: center;
  padding: 1rem 0;
  background: var(--base);
  border-bottom: 1px solid #eee;
  min-height: var(--header-h);
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 2.1333333333vw;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__logo {
  display: block;
  width: 11.25rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 35.2vw;
  }
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
@media (any-hover: hover) {
  .l-header__logo {
    transition: 0.3s;
    transition-property: opacity;
  }
  .l-header__logo:hover {
    opacity: 0.8;
  }
}

.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 4.375rem;
  padding: 1.25rem 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-btn {
    min-height: 9.3333333333vw;
    padding: 2.1333333333vw 3.2vw;
    font-size: 3.4666666667vw;
  }
}
@media (any-hover: hover) {
  .c-btn {
    transition: 0.3s;
    transition-property: filter;
  }
  .c-btn:hover {
    filter: drop-shadow(2px 4px 6px var(--main));
  }
}
.c-btn.-arrow::after {
  content: "";
  position: absolute;
  inset-block: 0;
  right: 1.5rem;
  transform: rotate(45deg);
  width: 0.625rem;
  height: 0.625rem;
  margin-block: auto;
  border-top: 2px solid;
  border-right: 2px solid;
}
@media screen and (max-width: 767px) {
  .c-btn.-arrow::after {
    right: 4vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.c-btn.-arrow.-color-beige::after {
  border-top-color: #9B7F4A;
  border-right-color: #9B7F4A;
}
.c-btn.-arrow.-color-purple::after {
  border-top-color: var(--purple);
  border-right-color: var(--purple);
}
.c-btn.-arrow.-color-red::after {
  border-top-color: #fff;
  border-right-color: #fff;
}
.c-btn.-outline {
  border: 2px solid;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .c-btn.-outline {
    border-radius: 2vw;
  }
}
.c-btn.-outline.-color-beige {
  color: #9B7F4A;
  background: var(--beige);
  border-color: #9B7F4A;
}
.c-btn.-outline.-color-purple {
  color: var(--purple);
  background: #EBE4F2;
  border-color: var(--purple);
}
.c-btn.-outline.-color-red {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.c-container {
  width: min(var(--container-w), 100% - var(--container-space) * 2);
  margin-inline: auto;
}

.p-section-head {
  padding: 2.5rem max(var(--container-space), (100% - var(--container-w)) / 2);
  color: #fff;
  background: var(--brown);
}
@media screen and (min-width: 768px) {
  .p-section-head {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-section-head {
    padding: 3.2vw var(--container-space);
  }
}
.p-section-head__sub {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-section-head__sub {
    font-size: 4.2666666667vw;
  }
}
.p-section-head__main {
  margin-top: 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--yellow);
}
@media screen and (max-width: 767px) {
  .p-section-head__main {
    margin-top: 0.6666666667vw;
    font-size: 7.4666666667vw;
  }
}

.p-section-lead {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-section-lead {
    font-size: 3.7333333333vw;
    line-height: 1.7;
  }
}

.p-fv {
  position: relative;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-fv {
    background: url(../../assets/img/page/fukuoka-higashi/fv.webp) center/cover no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__content-wrap {
    background: url(../../assets/img/page/fukuoka-higashi/fv_sp.webp) center/cover no-repeat;
  }
}
.p-fv__inner {
  position: relative;
  padding-block: 3.5rem 1.25rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-fv__inner {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__inner {
    padding-block: 3.7333333333vw 4.8vw;
  }
}
.p-fv__badge {
  width: fit-content;
  text-align: center;
  padding: 0.375rem 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--purple);
  border-radius: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-fv__badge {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__badge {
    width: auto;
    padding: 0.5333333333vw;
    font-size: 5.8666666667vw;
    border-radius: 0.375rem;
  }
}
.p-fv__ttl {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 1px 1px 6px #2E1901;
}
@media screen and (max-width: 767px) {
  .p-fv__ttl {
    margin-top: 4.2666666667vw;
    font-size: 7.8666666667vw;
  }
}
@media screen and (min-width: 992px) {
  .p-fv__content {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__content-txt {
    flex: 0 0 50%;
  }
}
.p-fv__sub-ttl {
  margin-top: 2.5rem;
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-fv__sub-ttl {
    margin-top: 6.6666666667vw;
    font-size: 4vw;
  }
}
.p-fv__txt {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-fv__txt {
    font-size: 3.2vw;
    line-height: 1.7;
  }
}
.p-fv__badges {
  display: flex;
  gap: 0.625rem;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .p-fv__badges {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__badges {
    width: min(100%, 31.25rem);
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__badges {
    gap: 1.0666666667vw;
    width: auto;
    margin-top: 2.6666666667vw;
  }
}
.p-fv__badge-item {
  position: relative;
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  width: calc((100% - 1.25rem) / 3);
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  color: #5A3C00;
  border-radius: 50%;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-fv__badge-item {
    padding: 1.0666666667vw;
    font-size: 3.4666666667vw;
  }
}
.p-fv__badge-item::before, .p-fv__badge-item::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.p-fv__badge-item::before {
  background: rgba(255, 255, 255, 0.75);
  width: 85%;
  height: 85%;
}
.p-fv__badge-item::after {
  background: rgba(255, 255, 255, 0.51);
}
.p-fv__badge-item-txt {
  position: relative;
  z-index: 2;
}

.p-reason__inner {
  padding-block: 3.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-reason__inner {
    padding-block: 3.2vw 7.4666666667vw;
  }
}
.p-reason__lead {
  font-size: 1.125rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-reason__lead {
    font-size: 3.7333333333vw;
    line-height: 1.8;
  }
}
.p-reason__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-reason__list {
    display: flex;
    flex-direction: column;
    gap: 3.2vw;
    margin-top: 4.2666666667vw;
  }
}
.p-reason__item {
  padding: 0 1.25rem 1.25rem;
  background: #F4EEE7;
  border: 10px solid #E5DACD;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .p-reason__item {
    padding: 0 2.6666666667vw 5.3333333333vw;
    border-width: 5px;
    border-radius: 8px;
  }
}
.p-reason__num {
  display: block;
  width: 9.375rem;
  margin: 0 auto 1.5rem;
  padding-block: 0.625rem 1.25rem;
  font-family: var(--serif);
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  background-color: #E5DACD;
  border-radius: 0 0 16px 16px;
  color: var(--brown);
}
@media screen and (max-width: 767px) {
  .p-reason__num {
    width: 17.3333333333vw;
    margin-bottom: 1.8666666667vw;
    padding-block: 1.0666666667vw 2.1333333333vw;
    font-size: 6.6666666667vw;
    border-radius: 0 0 8px 8px;
  }
}
.p-reason__ttl {
  font-size: 1.625rem;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .p-reason__ttl {
    font-size: 4.6666666667vw;
    line-height: 1.65;
    text-align: left;
  }
}
.p-reason__txt {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-reason__txt {
    margin-top: 0.5333333333vw;
    font-size: 3.2vw;
    line-height: 1.8;
  }
}
.p-reason__map {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-reason__map {
    margin-top: 2.1333333333vw;
  }
}
.p-reason__map img {
  width: 100%;
  height: auto;
}
.p-reason__img-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-reason__img-list {
    gap: 2.1333333333vw 1.0666666667vw;
    margin-top: 2.6666666667vw;
  }
}
.p-reason__img-item img {
  width: 100%;
  object-fit: cover;
}
.p-reason__img-item.-main {
  grid-column: span 3;
}
.p-reason__photo {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-reason__photo {
    margin-top: 2.6666666667vw;
  }
}
.p-reason__photo img {
  width: 100%;
}

.p-plan {
  background: var(--beige);
}
.p-plan__inner {
  padding-block: 3.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-plan__inner {
    padding-block: 2.6666666667vw 9.3333333333vw;
  }
}
.p-plan__lead {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-plan__lead {
    font-size: 3.7333333333vw;
    line-height: 1.7;
  }
}
.p-plan__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30.125rem, 1fr));
  gap: 3.5rem 2rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-plan__list {
    display: flex;
    flex-direction: column;
    gap: 7.4666666667vw;
    margin-top: 4.9333333333vw;
  }
}
.p-plan__item {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5ddd2;
  box-shadow: 14px 14px 0 0 #E5DACD;
}
@media screen and (max-width: 767px) {
  .p-plan__item {
    display: block;
    box-shadow: 1.8666666667vw 1.8666666667vw 0 0 #E5DACD;
  }
}
.p-plan__badge {
  display: grid;
  place-content: center;
  position: absolute;
  top: 4.375rem;
  right: 0.9375rem;
  width: 7.5rem;
  height: 7.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-plan__badge {
    top: 11.3333333333vw;
    right: 0.6666666667vw;
    width: 22vw;
    height: 22vw;
    font-size: 3.6vw;
  }
}
.p-plan__badge::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #AC8C3F;
  width: 89%;
  height: 89%;
  border-radius: 50%;
}
.p-plan__badge-txt {
  position: relative;
  z-index: 2;
}
.p-plan__head {
  padding: 1.5rem 1.25rem 1rem;
  text-align: center;
  color: #fff;
  background: #4662A2;
}
@media screen and (max-width: 767px) {
  .p-plan__head {
    padding: 4.8vw 2.6666666667vw 2.6666666667vw;
  }
}
.-family-one-day .p-plan__head {
  background: var(--family-one-day);
}
.-family-two-days .p-plan__head {
  background: var(--family-two-days);
}
.-family-comfort .p-plan__head {
  background: var(--family-comfort);
}
.-general-funeral .p-plan__head {
  background: var(--general-funeral);
}
.p-plan__name {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-plan__name {
    font-size: 5.8666666667vw;
    line-height: 1;
  }
}
.p-plan__catch {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__catch {
    margin-top: 1.0666666667vw;
    font-size: 3.2vw;
  }
}
.p-plan__img img {
  width: 100%;
  height: auto;
}
.p-plan__body {
  flex: 1;
  padding: 2rem 1.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-plan__body {
    padding: 5.3333333333vw 4vw 2.6666666667vw;
  }
}
.p-plan__body .p-fee__price-list {
  align-items: start;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-plan__body .p-fee__price-list {
    justify-content: center;
    gap: 4.375rem;
  }
}
.p-plan__body .p-fee__price-list dt {
  margin-left: -0.5em;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__body .p-fee__price-list dt {
    font-size: 2.9333333333vw;
  }
}
.p-plan__body .p-fee__price-list div.member .p-fee__price-main {
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-plan__body .p-fee__price-list div.member .p-fee__price-main {
    margin-top: 0.8vw;
  }
}
.p-plan__body .p-fee__price-list div.member .p-fee__price-main::before {
  top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__body .p-fee__price-list div.member .p-fee__price-main::before {
    top: 1.6vw;
  }
}
.p-plan__body .p-fee__price-list div.member .p-fee__price-tax,
.p-plan__body .p-fee__price-list div.member .p-fee__price-total {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__body .p-fee__price-list div.member .p-fee__price-tax,
  .p-plan__body .p-fee__price-list div.member .p-fee__price-total {
    font-size: 2.9333333333vw;
  }
}
.p-plan__body .p-fee__price-list div.member .p-fee__price-total {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-plan__body .p-fee__price-list div.member .p-fee__price-total {
    margin-top: 2.1333333333vw;
  }
}
.p-plan__body .p-fee__price-main {
  font-size: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__body .p-fee__price-main {
    font-size: 7.3333333333vw;
  }
}
.p-plan__body .p-fee__price-main.-excluding-tax {
  font-size: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__body .p-fee__price-main.-excluding-tax {
    font-size: 4.4vw;
  }
}
.p-plan__body .p-fee__price-tax,
.p-plan__body .p-fee__price-total {
  text-align: left;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__body .p-fee__price-tax,
  .p-plan__body .p-fee__price-total {
    font-size: 2.9333333333vw;
  }
}
.p-plan__body .p-fee__price-total {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-plan__body .p-fee__price-total {
    margin-top: 2.6666666667vw;
  }
}
.p-plan__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8125rem;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-plan__tags {
    gap: 3.4666666667vw;
    margin-top: 4.8vw;
  }
}
.p-plan__tag {
  padding: 0.25rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #505050;
  background: #F4EEE7;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-plan__tag {
    padding: 1.0666666667vw 2.6666666667vw;
    font-size: 2.9333333333vw;
    border-radius: 5px;
  }
}
.p-plan__includes {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-plan__includes {
    margin-top: 4.2666666667vw;
    font-size: 3.2vw;
  }
}
.p-plan__desc {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-plan__desc {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.p-plan__not-include {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-plan__not-include {
    margin-top: 8.2666666667vw;
  }
}
.p-plan__not-include-ttl {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.7;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-plan__not-include-ttl {
    font-size: 3.7333333333vw;
  }
}
.p-plan__not-include-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-plan__not-include-list {
    gap: 1.3333333333vw;
    margin-top: 2vw;
    margin-right: -1.3333333333vw;
  }
}
.p-plan__not-include-item {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-plan__not-include-item {
    padding: 1.2vw 1.3333333333vw;
    font-size: 2.9333333333vw;
    border-radius: 5px;
  }
}
.p-plan__kyojo {
  margin-top: 3.5rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-plan__kyojo {
    margin-top: 7.6vw;
  }
}
.p-plan__kyojo-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  background-color: #9B7F4A;
}
@media screen and (min-width: 768px) {
  .p-plan__kyojo-head {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__kyojo-head {
    padding: 2.6666666667vw 2vw;
    gap: 2.6666666667vw;
  }
}
.p-plan__kyojo-label {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #9B7F4A;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-plan__kyojo-label {
    padding: 1.3333333333vw 1.7333333333vw;
    font-size: 2.9333333333vw;
  }
}
.p-plan__kyojo-ttl {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-plan__kyojo-ttl {
    font-size: 4.9333333333vw;
  }
}
.p-plan__kyojo-body {
  padding: 1.875rem 2.5rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-plan__kyojo-body {
    padding: 4vw 2.6666666667vw 7.3333333333vw;
  }
}
.p-plan__kyojo-desc {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-plan__kyojo-desc {
    font-size: 4.6666666667vw;
    line-height: 1.3;
  }
}
.p-plan__kyojo-desc .txt-lg {
  font-size: 2.9375rem;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .p-plan__kyojo-desc .txt-lg {
    font-size: 6.2666666667vw;
  }
}
.p-plan__kyojo-txt {
  margin-top: 1.5625rem;
  font-size: 1.25rem;
  line-height: 1.9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__kyojo-txt {
    margin-top: 3.7333333333vw;
    font-size: 2.6666666667vw;
    line-height: 1.8;
    text-align: left;
  }
}

.p-facility__body {
  padding-block: 3.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-facility__body {
    padding-block: 3.6vw 6.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-facility__img-group {
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-facility__img-group .p-facility__main-img {
    margin-top: 0;
    height: 100%;
  }
}
.p-facility__img-group .p-facility__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-facility__img-group .p-facility__grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-facility__img-group.-rev-pc {
    grid-template-columns: 30% 1fr;
  }
}
@media screen and (min-width: 768px) {
  .p-facility__img-group.-rev-pc .p-facility__main-img {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-facility__img-group.-rev-pc .p-facility__grid {
    order: 1;
  }
}
.p-facility__main-img {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-facility__main-img {
    margin-top: 3.2vw;
  }
}
.p-facility__main-img img {
  width: 100%;
  height: auto;
}
.p-facility__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-facility__grid {
    gap: 2.6666666667vw;
    margin-top: 2.6666666667vw;
  }
}
.p-facility__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-facility__txt {
  margin-top: 3rem;
  font-size: 1.125rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-facility__txt {
    margin-top: 5.7333333333vw;
    font-size: 3.2vw;
    line-height: 1.8;
  }
}
.p-facility__txt + .p-facility__main-img {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-facility__txt + .p-facility__main-img {
    margin-top: 6.6666666667vw;
  }
}
.p-facility__feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-facility__feature-list {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-top: 9.3333333333vw;
  }
}
.p-facility__feature {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-facility__feature {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    border-radius: 0;
  }
}
.p-facility__feature-img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.p-facility__feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-facility__feature-body {
  gap: 0.75rem;
  padding: 0.625rem 1.25rem 1.25rem;
  background: var(--beige);
}
@media screen and (max-width: 767px) {
  .p-facility__feature-body {
    display: block;
    gap: 0;
    padding: 1.3333333333vw 3.2vw;
  }
}
.p-facility__feature-ttl {
  font-size: 1.375rem;
  font-weight: 700;
  color: #9B7F4A;
}
@media screen and (max-width: 767px) {
  .p-facility__feature-ttl {
    font-size: 4.2666666667vw;
  }
}
.p-facility__feature-txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-facility__feature-txt {
    font-size: 2.9333333333vw;
    line-height: 1.7;
  }
}

.p-hall-list__inner {
  padding-block: 3.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-hall-list__inner {
    padding-block: 4vw;
  }
}
.p-hall-list__group {
  margin-top: 3.5rem;
  border: 2px solid #9B7F4A;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-hall-list__group {
    margin-top: 4.2666666667vw;
    border-radius: 0;
  }
}
.p-hall-list__head {
  padding: 2rem 1.5rem 1.5rem;
  color: #fff;
  text-align: center;
  background: #9B7F4A;
}
@media screen and (max-width: 767px) {
  .p-hall-list__head {
    padding: 3.0666666667vw 2.6666666667vw 2vw;
  }
}
.p-hall-list__head-name {
  font-family: var(--serif);
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-hall-list__head-name {
    font-size: 6.1333333333vw;
    line-height: 1;
  }
}
.p-hall-list__head-addr {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-hall-list__head-addr {
    margin-top: 0.5333333333vw;
    font-size: 3.2vw;
  }
}
.p-hall-list__body {
  padding: 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-hall-list__body {
    padding: 4vw 2.6666666667vw;
  }
}
.p-hall-list__img img {
  width: 100%;
  height: auto;
}
.p-hall-list__list {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5625rem;
  overflow: auto hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
  scrollbar-color: #9b7f4a #f1f1f1;
}
@media screen and (max-width: 767px) {
  .p-hall-list__list {
    gap: 3.2vw;
    margin-top: 3.3333333333vw;
  }
}
.p-hall-list__list::-webkit-scrollbar {
  height: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-hall-list__list::-webkit-scrollbar {
    height: 1.0666666667vw;
  }
}
.p-hall-list__list::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.p-hall-list__list::-webkit-scrollbar-thumb {
  background: #9b7f4a;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-hall-list__list::-webkit-scrollbar-thumb {
    border-radius: 0.5333333333vw;
  }
}
@media (any-hover: hover) {
  .p-hall-list__list::-webkit-scrollbar-thumb:hover {
    background: #7d6639;
  }
}
.p-hall-list__item {
  flex-shrink: 0;
  width: 37.5rem;
  scroll-snap-align: start;
}
@media screen and (max-width: 767px) {
  .p-hall-list__item {
    width: 65.3333333333vw;
  }
}
.p-hall-list__scroll-txt {
  text-align: center;
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-hall-list__scroll-txt {
    margin-top: 1.3333333333vw;
    font-size: 2.6666666667vw;
  }
}
.p-hall-list__scroll-txt span {
  display: inline-block;
  position: relative;
  padding-inline: 2em;
}
.p-hall-list__scroll-txt span::before, .p-hall-list__scroll-txt span::after {
  content: "";
  display: block;
  position: absolute;
  inset-block: 0;
  margin-block: auto;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #505050;
  aspect-ratio: 1;
  width: 1em;
}
.p-hall-list__scroll-txt span::before {
  left: 0;
  transform: scale(-1);
  animation: left-to-right 2s infinite;
}
.p-hall-list__scroll-txt span::after {
  right: 0;
  animation: right-to-left 2s infinite;
}
@keyframes left-to-right {
  0% {
    transform: translateX(-50%) scale(-1);
  }
  50% {
    transform: translateX(50%) scale(-1);
  }
  100% {
    transform: translateX(-50%) scale(-1);
  }
}
@keyframes right-to-left {
  0% {
    transform: translateX(50%);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50%);
  }
}
.p-hall-list__txt {
  font-size: 1rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-hall-list__txt {
    font-size: 3.7333333333vw;
    line-height: 1.8;
  }
}
.p-hall-list__grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-hall-list__grid {
    gap: 5.3333333333vw;
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-hall-list__grid-item.-detail {
    grid-column: span 2;
    grid-row: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-hall-list__grid-item.-addr {
    grid-column: 1;
    grid-row: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-hall-list__grid-item.-access {
    grid-column: 2;
    grid-row: 2;
  }
}
.p-hall-list__dl {
  display: grid;
  gap: 2.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-hall-list__dl {
    margin-top: 1.0666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-hall-list__dl.-flex-sp {
    display: flex;
    flex-wrap: wrap;
    gap: 3.4666666667vw 6vw;
  }
}
@media screen and (max-width: 767px) {
  .p-hall-list__dl.-flex-sp > div {
    flex: 1;
  }
}
.p-hall-list__dl.-collum {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-hall-list__dl.-collum {
    gap: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-hall-list__dl div.half-sp {
    flex: 0 0 calc(50% - 3.0666666667vw);
  }
}
@media screen and (min-width: 768px) {
  .p-hall-list__dl div.type-01 {
    grid-row: 1;
    grid-column: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-hall-list__dl div.type-02 {
    grid-row: 2;
    grid-column: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-hall-list__dl div.type-03 {
    grid-column: 2;
    grid-row: span 2;
  }
}
.p-hall-list__dl div dt {
  padding-bottom: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  border-bottom: 4px solid #F4EEE7;
}
@media screen and (max-width: 767px) {
  .p-hall-list__dl div dt {
    padding-bottom: 0.5333333333vw;
    font-size: 3.4666666667vw;
  }
}
.p-hall-list__dl div dd {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-hall-list__dl div dd {
    margin-top: 0.8vw;
    font-size: 3.2vw;
  }
}
.p-hall-list__items li {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-hall-list__items li {
    line-height: 1.65;
  }
}
@media screen and (max-width: 767px) {
  .p-hall-list__items.-row-2-sp {
    display: flex;
    flex-direction: column;
    gap: 0 1.3333333333vw;
  }
}
.p-hall-list__sect-ttl {
  padding: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
  background-color: #F4EEE7;
  color: #1E1E1E;
}
@media screen and (max-width: 767px) {
  .p-hall-list__sect-ttl {
    padding: 0.5333333333vw;
    font-size: 3.7333333333vw;
  }
}
.p-hall-list__addr {
  margin-top: 1rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-hall-list__addr {
    margin-top: 1.0666666667vw;
    font-size: 3.2vw;
  }
}
.p-hall-list__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-inline: calc(1.25rem * -1);
  margin-top: 2.5rem;
  padding-top: 1.875rem;
  border-top: 2px solid #9B7F4A;
  padding-inline: var(--container-space);
}
@media screen and (max-width: 991px) {
  .p-hall-list__btns {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-hall-list__btns {
    gap: 2vw;
    margin-inline: -2.6666666667vw;
    margin-top: 5.3333333333vw;
    padding-top: 4vw;
    padding-inline: 2.6666666667vw;
  }
}
.p-hall-list__tel, .p-hall-list__btn {
  height: 6.5625rem;
  color: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .p-hall-list__tel, .p-hall-list__btn {
    height: 12vw;
    border-radius: 2vw;
  }
}
.p-hall-list__btn {
  font-size: 1.5rem;
  font-weight: 500;
  background-color: var(--purple);
  border: 2px solid var(--purple);
}
@media screen and (max-width: 767px) {
  .p-hall-list__btn {
    font-size: 4.2666666667vw;
  }
}
.p-hall-list__btn::after {
  content: "";
  display: block;
  position: absolute;
  inset-block: 0;
  right: 1.875rem;
  margin-block: auto;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-hall-list__btn::after {
    right: 4vw;
    width: 2.2666666667vw;
    height: 2.2666666667vw;
  }
}
.p-hall-list__tel {
  display: grid !important;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  background-color: var(--accent);
  border: 2px solid var(--accent);
}
@media screen and (max-width: 767px) {
  .p-hall-list__tel {
    height: 18.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.p-hall-list__tel-num {
  font-family: var(--en-serif);
  font-size: 2rem;
  font-weight: 700;
  padding-left: 1em;
  background: url(../../assets/img/page/fukuoka-higashi/icon_tel_white.svg) no-repeat center left/0.7em;
}
@media screen and (max-width: 767px) {
  .p-hall-list__tel-num {
    font-size: 6.1333333333vw;
  }
}
.p-hall-list__note {
  position: relative;
  margin-top: 5rem;
  padding: 2rem 2.5rem 2.5rem;
  text-align: center;
  background-color: #F4EEE7;
  border: 7px solid var(--accent);
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .p-hall-list__note {
    margin-top: 8vw;
    padding: 2.1333333333vw 2.6666666667vw 3.6vw;
    text-align: left;
    border-width: 1.0666666667vw;
  }
}
.p-hall-list__note::before, .p-hall-list__note::after {
  content: "";
  display: block;
  position: absolute;
  inset-inline: 0;
  margin-inline: auto;
}
.p-hall-list__note::before {
  bottom: -1.875rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1.875rem solid transparent;
  border-left: 1.875rem solid transparent;
  border-top: 1.875rem solid var(--accent);
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-hall-list__note::before {
    bottom: -4vw;
    border-right: 4vw solid transparent;
    border-left: 4vw solid transparent;
    border-top: 4vw solid var(--accent);
  }
}
.p-hall-list__note::after {
  bottom: -1.25rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1.625rem solid transparent;
  border-left: 1.625rem solid transparent;
  border-top: 1.625rem solid #F4EEE7;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-hall-list__note::after {
    bottom: -2.6666666667vw;
    border-right: 3.4666666667vw solid transparent;
    border-left: 3.4666666667vw solid transparent;
    border-top: 3.4666666667vw solid #F4EEE7;
  }
}
.p-hall-list__note-txt {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .p-hall-list__note-txt {
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
}
.p-hall-list__note-txt .txt-lg {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
@media screen and (max-width: 767px) {
  .p-hall-list__note-txt .txt-lg {
    font-size: 5.0666666667vw;
  }
}

.p-consult__inner {
  padding-block: 3.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-consult__inner {
    padding-block: 4vw 8.6666666667vw;
  }
}
@media screen and (min-width: 992px) {
  .p-consult__content {
    display: flex;
    gap: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-consult__content-item {
    flex: 0 0 calc(50% - 2.5rem);
  }
}
.p-consult__img {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-consult__img {
    margin-top: 4.6666666667vw;
  }
}
.p-consult__img img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-consult__img img {
    aspect-ratio: 16/9;
    object-position: center center;
    object-fit: cover;
  }
}
.p-consult__txt {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-consult__txt {
    margin-top: 3.2vw;
    font-size: 3.2vw;
    line-height: 1.85;
  }
}
.p-consult__box {
  margin-top: 3.5rem;
  padding: 2.1875rem 1.875rem;
  background: var(--beige);
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-consult__box {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-consult__box {
    margin-top: 4.6666666667vw;
    padding: 4.6666666667vw 8vw 7.6vw;
    border-radius: 20px;
  }
}
.p-consult__box-ttl {
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 0.75rem;
  color: #9B7F4A;
}
@media screen and (max-width: 767px) {
  .p-consult__box-ttl {
    text-decoration-thickness: 4px;
    text-underline-offset: 0.75rem;
    font-size: 4.8vw;
  }
}
.p-consult__list {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-consult__list {
    margin-top: 3.6vw;
  }
}
.p-consult__list li {
  padding-left: 2.2em;
  font-size: 1.0625rem;
  font-weight: 500;
  background: url(../../assets/img/page/fukuoka-higashi/icon_check.svg) no-repeat left center/1.55em;
}
@media screen and (max-width: 767px) {
  .p-consult__list li {
    font-size: 3.4666666667vw;
  }
}
.p-consult__list li + li {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-consult__list li + li {
    margin-top: 1.0666666667vw;
    padding-top: 1.0666666667vw;
  }
}
.p-consult__check {
  flex-shrink: 0;
  color: var(--accent);
}
.p-consult__promo {
  margin-top: 4.5rem;
  padding-block: 3.5rem 2.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  background: url(../../assets/img/page/fukuoka-higashi/consult_bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-consult__promo {
    margin-top: 6.6666666667vw;
    padding-block: 4.5333333333vw 1.3333333333vw;
  }
}
.p-consult__promo-ttl {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #001111;
}
@media screen and (max-width: 767px) {
  .p-consult__promo-ttl {
    font-size: 5.7333333333vw;
  }
}
.p-consult__promo-ttl::before {
  content: "";
  position: absolute;
  bottom: -0.875rem;
  inset-inline: 0;
  width: 24.375rem;
  height: 2.5rem;
  margin-inline: auto;
  background: url(../../assets/img/page/fukuoka-higashi/consult_ttl_bg.webp) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-consult__promo-ttl::before {
    bottom: -1.3333333333vw;
    width: 70.1333333333vw;
    height: 7.2vw;
  }
}
.p-consult__promo-ttl span {
  position: relative;
  z-index: 2;
}
.p-consult__promo-txt {
  margin-top: 2rem;
  font-size: 1.25rem;
  line-height: 1.9;
  text-align: center;
  color: #001111;
}
@media screen and (max-width: 767px) {
  .p-consult__promo-txt {
    margin-top: 2.9333333333vw;
    font-size: 3.2vw;
    line-height: 1.85;
    text-align: left;
  }
}
.p-consult__promo-btn-wrap {
  max-width: 26.25rem;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-consult__promo-btn-wrap {
    max-width: 81.3333333333vw;
    margin-top: 6.6666666667vw;
  }
}

.p-area__inner {
  padding-block: 3.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-area__inner {
    padding-block: 4vw 6.6666666667vw;
  }
}
.p-area__notice {
  padding: 1rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #9b7f4a;
  text-align: center;
  background: #fff;
  border: 2px solid #9b7f4a;
}
@media screen and (max-width: 767px) {
  .p-area__notice {
    padding: 0.4vw;
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 992px) {
  .p-area__content {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}
.p-area__txt {
  font-size: 1rem;
  line-height: 1.9;
  color: #505050;
}
@media screen and (max-width: 991px) {
  .p-area__txt {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area__txt {
    margin-top: 3.6vw;
    font-size: 3.4666666667vw;
    line-height: 1.7;
  }
}
.p-area__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-area__list {
    gap: 1.7333333333vw;
    margin-top: 4.5333333333vw;
  }
}
.p-area__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  font-size: 0.9375rem;
  color: #1e1e1e;
  background: var(--beige);
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-area__row {
    gap: 1.0666666667vw;
    padding: 2.1333333333vw 4vw;
    font-size: 2.6666666667vw;
    border-radius: 2.6666666667vw;
  }
}
.p-area__row-hall {
  flex-shrink: 0;
  font-size: 0.9375rem;
  color: #1e1e1e;
}
@media screen and (max-width: 767px) {
  .p-area__row-hall {
    font-size: 2.9333333333vw;
  }
}
.p-area__row-hall strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: #73679f;
}
@media screen and (max-width: 767px) {
  .p-area__row-hall strong {
    font-size: 3.4666666667vw;
  }
}
.p-area__row-hall strong.wakamiya {
  color: #613cb1;
}
.p-area__row-hall strong.matsuzaki {
  color: #3c86cb;
}
.p-area__row-hall strong.aobara {
  color: #edac46;
}
@media screen and (min-width: 992px) {
  .p-area__map {
    flex: 0 0 calc(50% - 2.5rem);
  }
}
@media screen and (max-width: 991px) {
  .p-area__map {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area__map {
    margin-top: 8vw;
  }
}
.p-area__map iframe,
.p-area__map img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 0;
}
@media screen and (max-width: 767px) {
  .p-area__map iframe,
  .p-area__map img {
    aspect-ratio: 1;
  }
}

.p-cremation__inner {
  padding-block: 3.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-cremation__inner {
    padding-block: 4vw 8vw;
  }
}
@media screen and (min-width: 992px) {
  .p-cremation__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.p-cremation__item {
  margin-top: 4rem;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-cremation__item {
    margin-top: 6.6666666667vw;
    border-radius: 0;
  }
}
.p-cremation__item.-gold {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-cremation__item.-gold {
    margin-top: 8vw;
  }
}
.p-cremation__item.-gold .p-cremation__item-head {
  background: #9b7f4a;
}
.p-cremation__item.-gold .p-cremation__item-body {
  background: var(--beige);
}
.p-cremation__item.-gold .c-btn.-outline {
  color: #9b7f4a;
  border-color: #a48d2d;
}
.p-cremation__item.-gold .c-btn.-outline .c-icon-arrow-r {
  background-color: #a58c2e;
}
.p-cremation__item-head {
  padding: 1.5rem 2rem 2rem;
  text-align: center;
  color: #fff;
  background: #73679f;
}
@media screen and (max-width: 767px) {
  .p-cremation__item-head {
    padding: 1.6vw 2.6666666667vw 4vw;
  }
}
.p-cremation__item-label {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-cremation__item-label {
    font-size: 3.2vw;
  }
}
.p-cremation__item-name {
  margin-top: 0.875rem;
  font-family: var(--serif);
  font-size: 2.375rem;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-cremation__item-name {
    margin-top: 1.4666666667vw;
    font-size: 6.1333333333vw;
    line-height: 1;
  }
}
.p-cremation__item-body {
  padding: 1.875rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #505050;
  background: #ebe4f2;
}
@media screen and (max-width: 767px) {
  .p-cremation__item-body {
    padding: 2.6666666667vw 3.6vw 6.6666666667vw;
    font-size: 3.2vw;
    line-height: 1.85;
  }
}
.p-cremation__item-list {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-cremation__item-list {
    margin-top: 2.6666666667vw;
  }
}
.p-cremation__item-list li {
  font-size: 0.9375rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-cremation__item-list li {
    font-size: 2.6666666667vw;
    line-height: 1.75;
  }
}
.p-cremation__item-list li::before {
  content: "・";
}
.p-cremation__item-btn-wrap {
  max-width: 26.25rem;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-cremation__item-btn-wrap {
    max-width: 76vw;
    margin-top: 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-cremation__item-btn {
    font-size: 3.2vw;
  }
}

.p-flow__inner {
  padding-block: 3.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding-block: 5.3333333333vw 0.6666666667vw;
  }
}
.p-flow__lead {
  padding: 1.75rem 2.5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #505050;
  background: var(--beige);
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-flow__lead {
    padding: 2.1333333333vw;
    font-size: 3.4666666667vw;
    line-height: 1.7;
    border-radius: 10px;
  }
}
.p-flow__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 3.125rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    margin-top: 2.6666666667vw;
    grid-template-columns: 1fr;
    gap: 1.3333333333vw;
  }
}
.p-flow__item {
  position: relative;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    align-content: start;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    grid-template-columns: 11.7333333333vw 1fr;
    gap: 2.1333333333vw;
    align-items: center;
    padding-bottom: 5.3333333333vw;
  }
}
.p-flow__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  font-family: var(--en-serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  background: #9b7f4a;
  border-radius: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-flow__num {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__num {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
    font-size: 3.4666666667vw;
    border-radius: 3.4666666667vw;
  }
}
.p-flow__num strong {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-flow__num strong {
    font-size: 4.4vw;
  }
}
.p-flow__ttl {
  font-size: 1.375rem;
  font-weight: 800;
  color: #9b7f4a;
}
@media screen and (min-width: 768px) {
  .p-flow__ttl {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__ttl {
    font-size: 3.4666666667vw;
  }
}
.p-flow__txt {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #1e1e1e;
}
@media screen and (max-width: 767px) {
  .p-flow__txt {
    margin-top: 0;
    font-size: 2.6666666667vw;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__txt a[href^="tel:"] {
    text-decoration: none;
    color: inherit;
  }
}
.p-flow__arrow {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .p-flow__arrow {
    right: -0.9375rem;
    width: 0.125rem;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__arrow {
    left: 0;
    width: 100%;
    height: 5.4666666667vw;
  }
}
.p-flow__arrow::before {
  content: "";
  position: absolute;
  background: #9b7f4a;
}
@media screen and (min-width: 768px) {
  .p-flow__arrow::before {
    right: 0;
    height: 100%;
    width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__arrow::before {
    inset: 50% 0 auto;
    height: 2px;
  }
}
.p-flow__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.875rem;
  height: 1.875rem;
  background: #fff;
  border-right: 2px solid #9b7f4a;
  border-bottom: 2px solid #9b7f4a;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .p-flow__arrow::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__arrow::after {
    top: 1.0666666667vw;
    width: 4vw;
    height: 4vw;
    transform: translateX(-50%) rotate(45deg);
  }
}

.p-review {
  background: var(--beige);
}
.p-review__inner {
  padding-block: 3.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-review__inner {
    padding-block: 4vw 10vw;
  }
}
.p-review__score {
  margin-top: 3rem;
  padding: 2.5rem;
  background: #fff;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-review__score {
    margin-top: 5.3333333333vw;
    padding: 3.6vw;
    border-radius: 2vw;
  }
}
.p-review__score-label {
  display: block;
  padding: 1rem 1.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #505050;
  background: #ddd8ed;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-review__score-label {
    padding: 1.6vw 2.6666666667vw;
    font-size: 2.6666666667vw;
    border-radius: 1.3333333333vw;
  }
}
.p-review__score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-review__score-item:first-child {
  flex-shrink: 0;
}
.p-review__score-txt {
  font-size: 1.625rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-review__score-txt {
    font-size: 4vw;
  }
}
.p-review__score-txt .txt-lg {
  font-size: 1.5em;
  color: var(--accent);
}
.p-review__score-note {
  text-align: right;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-review__score-note {
    font-size: 3.2vw;
  }
}
.p-review__score-num {
  margin-top: 1.25rem;
  padding-left: 1.25rem;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-review__score-num {
    margin-top: 2vw;
    padding-left: 2.2666666667vw;
    font-size: 7.4666666667vw;
  }
}
.p-review__stars {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  font-size: 1.25rem;
  color: var(--yellow);
  letter-spacing: 0.3em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-review__stars {
    margin-top: 1.0666666667vw;
    padding-left: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.p-review__score-note {
  margin-top: 0.25rem;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-review__score-note {
    margin-top: -0.2666666667vw;
    padding-left: 2.6666666667vw;
    font-size: 2.1333333333vw;
  }
}
.p-review__halls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-review__halls {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3333333333vw;
    margin-top: 2.6666666667vw;
  }
}
.p-review__hall {
  padding: 1.25rem 1.75rem 1.5rem;
  font-size: 0.9375rem;
  background: #fff;
  border: 2px solid #9b7f4a;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-review__hall {
    padding: 1.3333333333vw;
    font-size: 1.6vw;
    border-radius: 1.3333333333vw;
  }
}
.p-review__hall a {
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-review__hall {
    transition: 0.3s;
    transition-property: filter;
  }
  .p-review__hall:hover {
    filter: drop-shadow(2px 4px 6px var(--main));
  }
}
.p-review__hall-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-review__hall-name {
    font-size: 2.9333333333vw;
  }
}
.p-review__hall-addr {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-review__hall-addr {
    margin-top: 0;
    font-size: 2.6666666667vw;
  }
}
.p-review__hall-star {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-review__hall-star {
    margin-top: 0.6666666667vw;
    font-size: 2.6666666667vw;
  }
}
.p-review__hall-star-num {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1;
  color: #505050;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-review__hall-star-num {
    font-size: 2.6666666667vw;
  }
}
.p-review__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-review__list {
    display: flex;
    gap: 4.4vw;
    margin-top: 4.6666666667vw;
    margin-right: calc(var(--container-space) * -1);
    padding-right: var(--container-space);
    overflow: auto hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
  }
}
.p-review__item {
  padding: 2.25rem 2.5rem;
  background: #fff;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-review__item {
    flex-shrink: 0;
    width: 70.2666666667vw;
    padding: 4vw;
    border-radius: 2vw;
    scroll-snap-align: start;
  }
}
.p-review__item-head {
  font-size: 1rem;
  font-weight: 700;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-review__item-head {
    font-size: 2.9333333333vw;
  }
}
.p-review__item-star {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-review__item-star {
    margin-top: 0.5333333333vw;
    font-size: 2.6666666667vw;
  }
}
.p-review__item-txt {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #1e1e1e;
}
@media screen and (max-width: 767px) {
  .p-review__item-txt {
    margin-top: 2.6666666667vw;
    font-size: 2.6666666667vw;
    line-height: 1.55;
  }
}
.p-review__item-tag {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #505050;
  background: #ddd8ed;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-review__item-tag {
    margin-top: 1.6vw;
    padding: 1.7333333333vw 3.3333333333vw;
    font-size: 2.6666666667vw;
    border-radius: 1.3333333333vw;
  }
}
.p-review__btn-wrap {
  max-width: 26.25rem;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-review__btn-wrap {
    max-width: 76vw;
    margin-top: 8vw;
  }
}

.p-staff__inner {
  padding-block: 3.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-staff__inner {
    padding-block: 5.0666666667vw 10vw;
  }
}
.p-staff__lead {
  font-size: 1rem;
  line-height: 1.9;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-staff__lead {
    font-size: 3.7333333333vw;
    line-height: 1.8;
  }
}
.p-staff__card {
  display: grid;
  grid-template-columns: 23.75rem 1fr;
  align-items: stretch;
  margin-top: 3rem;
  overflow: hidden;
  background: var(--beige);
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-staff__card {
    display: block;
    margin-top: 3.2vw;
    border-radius: 2.6666666667vw;
  }
}
.p-staff__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-staff__photo img {
    height: auto;
    aspect-ratio: 650/531;
  }
}
.p-staff__info {
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-staff__info {
    padding: 4vw 4vw 7.3333333333vw;
  }
}
.p-staff__role {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-staff__role {
    font-size: 2.4vw;
  }
}
.p-staff__name {
  font-size: 1.75rem;
  font-weight: 600;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-staff__name {
    font-size: 4vw;
  }
}
.p-staff__name-sub {
  margin-left: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-staff__name-sub {
    margin-left: 3.6vw;
    font-size: 2.4vw;
  }
}
.p-staff__comment {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-staff__comment {
    margin-top: 2.9333333333vw;
    font-size: 2.6666666667vw;
    line-height: 1.8;
  }
}
.p-staff__link-banner {
  display: block;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-staff__link-banner {
    margin-top: 2.1333333333vw;
  }
}
.p-staff__link-banner img {
  width: 100%;
  height: auto;
}
@media (any-hover: hover) {
  .p-staff__link-banner {
    transition: 0.3s;
    transition-property: filter;
  }
  .p-staff__link-banner:hover {
    filter: drop-shadow(2px 4px 6px var(--main));
  }
}
.p-staff__section-ttl {
  margin-top: 5rem;
  padding: 1.25rem;
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: var(--purple);
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-staff__section-ttl {
    margin-top: 8.6666666667vw;
    padding: 1.0666666667vw;
    font-size: 4.8vw;
    border-radius: 0;
  }
}
.p-staff__manager-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-staff__manager-list {
    display: flex;
    flex-direction: column;
    gap: 4.6666666667vw;
    margin-top: 4vw;
  }
}
.p-staff__manager {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #efedf5;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-staff__manager {
    display: block;
    border-radius: 2.6666666667vw;
  }
}
.p-staff__manager-photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-staff__manager-photo img {
    aspect-ratio: 650/360;
  }
}
.p-staff__manager-info {
  flex: 1;
  padding: 1.5rem 1.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-staff__manager-info {
    padding: 4vw 4vw 6.2666666667vw;
  }
}
.p-staff__manager-role {
  font-size: 0.875rem;
  font-weight: 500;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-staff__manager-role {
    font-size: 2.4vw;
  }
}
.p-staff__manager-name {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-staff__manager-name {
    margin-top: 0.2666666667vw;
    font-size: 4vw;
  }
}
.p-staff__manager-comment {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-staff__manager-comment {
    margin-top: 1.6vw;
    font-size: 2.6666666667vw;
    line-height: 1.7;
  }
}
.p-staff__btn-wrap {
  max-width: 26.25rem;
  margin-inline: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-staff__btn-wrap {
    max-width: 76vw;
    margin-top: 9.3333333333vw;
  }
}

.p-tips {
  background: var(--beige);
}
.p-tips__inner {
  padding-block: 3.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-tips__inner {
    padding-block: 6.6666666667vw 11.3333333333vw;
  }
}
.p-tips__lead {
  font-size: 1rem;
  line-height: 1.9;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-tips__lead {
    font-size: 3.7333333333vw;
    line-height: 1.8;
  }
}
.p-tips__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  margin-top: 3rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-tips__list {
    display: flex;
    flex-direction: column;
    gap: 3.3333333333vw;
    margin-top: 4.2666666667vw;
    padding-left: 3.3333333333vw;
  }
}
.p-tips__item {
  position: relative;
  padding: 1.75rem 2rem 1.75rem 2.5rem;
  background: #fff;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-tips__item {
    padding: 2.6666666667vw 2.6666666667vw 2.6666666667vw 6.4vw;
    border-radius: 2vw;
  }
}
.p-tips__num {
  position: absolute;
  top: 50%;
  left: -1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: var(--purple);
  border-radius: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-tips__num {
    top: 50%;
    left: -3.7333333333vw;
    width: 7.4666666667vw;
    height: 7.4666666667vw;
    font-size: 3.7333333333vw;
  }
}
.p-tips__ttl {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--purple);
}
@media screen and (max-width: 767px) {
  .p-tips__ttl {
    font-size: 3.4666666667vw;
  }
}
.p-tips__txt {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-tips__txt {
    margin-top: 0.4vw;
    font-size: 2.6666666667vw;
    line-height: 1.55;
  }
}

.p-faq__inner {
  padding-block: 3.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-faq__inner {
    padding-block: 6.6666666667vw 10vw;
  }
}
.p-faq__lead {
  font-size: 1rem;
  line-height: 1.9;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-faq__lead {
    font-size: 3.7333333333vw;
    line-height: 1.8;
  }
}
.p-faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    margin-top: 5.3333333333vw;
    grid-template-columns: 1fr;
    gap: 2.6666666667vw;
  }
}
.p-faq__row {
  border: 6px solid var(--beige);
  padding: 1.25rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-faq__row {
    border-width: 3px;
    padding: 2.6666666667vw 2.6666666667vw 2.6666666667vw;
  }
}
.p-faq__q {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--purple);
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    gap: 2.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.p-faq__q-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: -0.25rem;
  font-family: var(--en-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: var(--purple);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-faq__q-icon {
    margin-top: -0.6666666667vw;
    width: 7.4666666667vw;
    height: 7.4666666667vw;
    font-size: 3.7333333333vw;
  }
}
.p-faq__a {
  margin-top: 1.25rem;
  padding-left: 3.75rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .p-faq__a {
    padding-left: 10.1333333333vw;
    margin-top: 2.9333333333vw;
    font-size: 2.6666666667vw;
    line-height: 1.55;
  }
}

.p-contact.-type02 {
  background-color: #F4EEE7;
}
@media screen and (min-width: 768px) {
  .p-fv .p-contact {
    background-color: transparent;
  }
}
.p-contact__inner {
  padding-block: 4rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding-block: 6.6666666667vw 4.8vw;
  }
}
@media screen and (max-width: 767px) {
  .p-contact.-web-contact .p-contact__inner {
    padding-block-start: 1.3333333333vw;
    padding-block-end: 6.6666666667vw;
  }
}
.p-contact__head {
  padding: 1.75rem;
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  line-height: 1;
  background: var(--purple);
}
@media screen and (max-width: 767px) {
  .p-contact__head {
    padding: 3.2vw;
    font-size: 5.0666666667vw;
  }
}
.p-contact__body {
  padding-block: 4rem 4.5rem;
  text-align: center;
  background: var(--beige);
  box-shadow: 0 0 0 100vmax var(--beige);
  clip-path: inset(0 -100vmax);
}
@media screen and (max-width: 767px) {
  .p-contact__body {
    padding-block: 7.2vw 8.8vw;
  }
}
.p-contact__ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--purple);
}
@media screen and (max-width: 767px) {
  .p-contact__ttl {
    font-size: 6vw;
  }
}
.p-contact__txt {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-contact__txt {
    margin-top: 2vw;
    font-size: 3.7333333333vw;
    line-height: 1.7;
  }
}
.p-contact__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 47.5rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__btns {
    display: flex;
    flex-direction: column;
    gap: 2.6666666667vw;
    max-width: none;
    margin-top: 3.7333333333vw;
  }
}
.p-contact__tel-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 1.25rem 2rem;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-btn {
    gap: 0.5333333333vw;
    padding: 3.7333333333vw;
    border-radius: 1.0666666667vw;
  }
}
.p-contact__tel-btn::after {
  content: "";
  position: absolute;
  inset-block: 0;
  right: 0.9375rem;
  transform: rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  margin-block: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-btn::after {
    right: 4vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.p-contact__tel-btn-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  padding-left: 0.8em;
  line-height: 1.2;
  background: url(../../assets/img/page/fukuoka-higashi/icon_tel_white.svg) no-repeat left top 0.1em/0.75em;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-btn-main {
    gap: 1.0666666667vw;
    font-size: 5.0666666667vw;
  }
}
.p-contact__tel-btn-sub {
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-btn-sub {
    font-size: 2.9333333333vw;
  }
}
.p-contact__form-btn {
  min-height: 5.625rem;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  background-color: #fff;
  border-radius: 15px;
  border-color: var(--purple);
}
@media screen and (max-width: 767px) {
  .p-contact__form-btn {
    min-height: 9.3333333333vw;
    padding: 2.9333333333vw;
    font-size: 4.2666666667vw;
    border-radius: 8px;
  }
}
.p-contact__form-btn::after {
  content: "";
  position: absolute;
  inset-block: 0;
  right: 0.9375rem;
  transform: rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  margin-block: auto;
  border-top: 2px solid var(--purple);
  border-right: 2px solid var(--purple);
}
@media screen and (max-width: 767px) {
  .p-contact__form-btn::after {
    right: 4vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.p-contact__note {
  margin-top: 1.5rem;
  font-size: 1rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
@media screen and (max-width: 767px) {
  .p-contact__note {
    margin-top: 3.2vw;
    font-size: 3.2vw;
  }
}
.p-contact__banner {
  display: block;
  position: relative;
  padding: 2.25rem 2.5rem 2rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--purple);
  border-radius: 0.5rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-contact__banner {
    padding: 4.5333333333vw 2.6666666667vw 4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-contact.-web-contact .p-contact__banner {
    padding-block: 3.3333333333vw 2vw;
  }
}
@media (any-hover: hover) {
  .p-contact__banner[href] {
    transition: 0.3s;
    transition-property: filter;
  }
  .p-contact__banner[href]:hover {
    filter: drop-shadow(2px 4px 6px var(--main));
  }
  .p-contact__banner[href]:hover .c-btn {
    pointer-events: none;
  }
}
.p-contact__banner-badge {
  position: absolute;
  top: -1.625rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 0.25rem 1.25rem;
  font-size: 1.375rem;
  font-weight: 600;
  color: #fff;
  background: var(--purple);
  border-radius: 0.5rem;
  white-space: nowrap;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-contact__banner-badge {
    min-width: 23.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__banner-badge {
    top: -3.4666666667vw;
    left: 50%;
    padding: 0.5333333333vw 1.8666666667vw;
    font-size: 2.9333333333vw;
    border-radius: 0.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-contact.-web-contact .p-contact__banner-badge {
    font-size: 4.8vw;
  }
}
.p-contact__banner-tel {
  display: inline-block;
  font-family: var(--en-serif);
  font-size: 4.375rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  text-decoration: none;
  padding-left: 0.8em;
  background: url(../../assets/img/page/fukuoka-higashi/icon_tel_red.svg) no-repeat left top 0.15em/0.65em;
}
@media screen and (min-width: 768px) {
  .p-contact__banner-tel {
    background-position: left top 0.15em;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__banner-tel {
    font-size: 10.8vw;
  }
}
.p-contact__banner-note {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0A0A0A;
}
@media screen and (max-width: 767px) {
  .p-contact__banner-note {
    margin-top: -1.0666666667vw;
    font-size: 2.4vw;
  }
}
.p-contact__banner-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__banner-tags {
    gap: 1.3333333333vw;
    margin-top: 1.0666666667vw;
  }
}
.p-contact__banner-tag {
  min-width: 11.25rem;
  padding: 0.5rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__banner-tag {
    min-width: 27.7333333333vw;
    padding: 0.8vw 2.1333333333vw;
    font-size: 2.4vw;
  }
}
.p-contact__banner-content {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 53%;
  gap: 1.25rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact__banner-content {
    grid-template-columns: 1fr 50%;
    gap: 2.6666666667vw;
    margin-block: -2.6666666667vw -7.2vw;
  }
}
.p-contact__banner-contact-btn {
  position: relative;
  z-index: 2;
}
.p-contact__banner-contact-btn .c-btn {
  display: grid;
  place-content: center;
  gap: 0;
  line-height: 1.5;
  border-radius: 5px;
  font-size: 1.125rem;
  font-weight: 700;
  background-color: var(--accent);
  background-color: var(--accent);
}
@media screen and (min-width: 768px) {
  .p-contact__banner-contact-btn .c-btn {
    padding: 1.875rem 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__banner-contact-btn .c-btn {
    min-height: 13.3333333333vw;
    font-size: 3.2vw;
  }
}
.p-contact__banner-img {
  position: relative;
  margin: -3.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__banner-img {
    margin: -2.6666666667vw -5.3333333333vw;
  }
}
.p-contact__banner-img img {
  width: 95%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__banner-img img {
    position: relative;
    top: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__banner-img img {
    width: 100%;
  }
}
.p-contact__banner-img-txt {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: #b02418;
  background-color: #fff;
  border: 2px solid #f9da78;
}
@media screen and (max-width: 767px) {
  .p-contact__banner-img-txt {
    bottom: 9.3333333333vw;
    left: calc(50% + 1.3333333333vw);
    padding: 1.3333333333vw;
    font-size: 2.6666666667vw;
  }
}

.p-contact-row {
  background-color: #EFEFEF;
}
@media screen and (min-width: 768px) {
  .p-contact-row.-bg-transparent {
    background-color: transparent;
  }
}
@media (1085px <= width) {
  .p-contact-row__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (1085px <= width) {
  .p-contact-row .p-contact__banner {
    height: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-row .p-contact__banner + .p-contact-row .p-contact__banner {
    padding-block-start: 1.3333333333vw;
  }
}
@media (1085px <= width) {
  .p-contact-row .p-contact__banner-tel {
    font-size: 3.75rem;
  }
}
@media (width <= 1084px) {
  .p-contact-row .p-contact__banner-content {
    width: min(100%, 34.375rem);
    margin-inline: auto;
  }
}

.p-fixed-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--header-sub-h);
  background-color: #e5e5e5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-fixed-nav {
    display: block;
    padding: 7px;
  }
}
.p-fixed-nav.is-show {
  opacity: 1;
  visibility: visible;
}
.p-fixed-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 170px);
  gap: 10px;
  justify-content: center;
}
.p-fixed-nav__item {
  line-height: 1;
}
.p-fixed-nav__link {
  display: block;
}

.p-fee {
  --fee-margin-inline: 30px;
}
@media screen and (max-width: 767px) {
  .p-fee {
    --fee-margin-inline: 2.6666666667vw;
  }
}
.p-fee__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  margin-top: 36px;
}
@media (width <= 1050px) {
  .p-fee__items {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-fee__items {
    gap: 4.8vw;
    margin-top: 5.3333333333vw;
  }
}
.p-fee__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  margin-top: 0;
  background-color: #fff;
}
.p-fee__item.-family-one-day .p-fee__ttl {
  background-color: var(--family-one-day);
  border-color: var(--family-one-day);
  color: #fff;
}
.p-fee__item.-family-one-day .p-fee__price-ttl {
  color: var(--family-one-day);
  border-color: var(--family-one-day);
}
.p-fee__item.-family-two-days .p-fee__ttl {
  background-color: var(--family-two-days);
  border-color: var(--family-two-days);
  color: #fff;
}
.p-fee__item.-family-two-days .p-fee__price-ttl {
  color: var(--family-two-days);
  border-color: var(--family-two-days);
}
.p-fee__item.-family-comfort .p-fee__ttl {
  background-color: var(--family-comfort);
  border-color: var(--family-comfort);
  color: #fff;
}
.p-fee__item.-family-comfort .p-fee__price-ttl {
  color: var(--family-comfort);
  border-color: var(--family-comfort);
}
.p-fee__item.-general-funeral .p-fee__ttl {
  background-color: var(--general-funeral);
  border-color: var(--general-funeral);
  color: #fff;
}
.p-fee__item.-general-funeral .p-fee__price-ttl {
  color: var(--general-funeral);
  border-color: var(--general-funeral);
}
.p-fee__item.-direct-funeral .p-fee__ttl {
  background-color: var(--direct-funeral);
  border-color: var(--direct-funeral);
  color: #fff;
}
.p-fee__item.-direct-funeral .p-fee__price-ttl {
  color: var(--direct-funeral);
  border-color: var(--direct-funeral);
}
.p-fee__item.-welfare {
  grid-template-rows: initial;
  grid-row: auto;
}
@media (1051px <= width) {
  .p-fee__item.-welfare {
    grid-column: span 2;
    grid-template-columns: auto 1fr;
  }
}
.p-fee__item.-welfare .p-fee__ttl {
  display: grid;
  align-items: center;
  height: 100%;
  background-color: var(--welfare);
  border-color: var(--welfare);
  color: #fff;
}
.p-fee__ttl {
  padding: 14px;
  font-size: 30px;
  font-weight: 600;
  color: var(--main);
  text-align: center;
  background-color: #e6e6e6;
}
@media screen and (max-width: 767px) {
  .p-fee__ttl {
    padding: 2.6666666667vw;
    font-size: 4.9333333333vw;
  }
}
.p-fee__img img {
  width: 100%;
}
.p-fee__price {
  padding-block: 25px 20px;
  margin-inline: var(--fee-margin-inline);
}
@media screen and (max-width: 767px) {
  .p-fee__price {
    padding-block: 4.2666666667vw 3.4666666667vw;
  }
}
.p-fee__price-ttl {
  padding: 8px;
  margin-bottom: 1em;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  border: 1px solid;
  border-radius: 100vmax;
}
@media screen and (max-width: 767px) {
  .p-fee__price-ttl {
    padding: 2vw;
    font-size: 3.7333333333vw;
  }
}
.p-fee__price-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
@media (width <= 1050px) {
  .p-fee__price-list {
    justify-content: center;
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-fee__price-list {
    justify-content: space-between;
    gap: 0;
  }
}
.p-fee__price-list div dt {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-fee__price-list div dt {
    font-size: 3.6vw;
  }
}
.p-fee__price-list div dd {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-fee__price-list div dd {
    margin-top: 5px;
  }
}
.p-fee__price-list div.member dd {
  margin-top: 0;
}
.p-fee__price-list div.member .p-fee__price-main {
  position: relative;
}
.p-fee__price-list div.member .p-fee__price-main::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -45px;
  display: block;
  aspect-ratio: 20/32;
  width: 20px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: #E23F43;
}
@media (width <= 1080px) {
  .p-fee__price-list div.member .p-fee__price-main::before {
    left: -30px;
  }
}
@media screen and (max-width: 767px) {
  .p-fee__price-list div.member .p-fee__price-main::before {
    top: 3.2vw;
    left: -5.3333333333vw;
    width: 3.3333333333vw;
  }
}
.p-fee__price-list div.member .p-fee__price-tax {
  margin-left: 2px;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-fee__price-list div.member .p-fee__price-tax {
    font-size: 4.8vw;
  }
}
.p-fee__price-list div.member .p-fee__price-total {
  margin-top: 5px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-fee__price-list div.member .p-fee__price-total {
    font-size: 4.2666666667vw;
  }
}
.p-fee__price-list div.member .special-price-ttl {
  margin-top: 30px;
}
.p-fee__price-list div.member .special-price-main.p-fee__price-main {
  color: var(--primary-color) !important;
}
.p-fee__price-list div.member .special-price-main.p-fee__price-main::before {
  background-color: var(--primary-color);
}
.p-fee__price-main {
  font-family: var(--en-serif) !important;
  font-size: 58px;
  font-weight: 700;
  color: #E23F43 !important;
}
@media screen and (max-width: 767px) {
  .p-fee__price-main {
    font-size: 10.1333333333vw;
  }
}
.p-fee__price-main * {
  color: inherit;
}
.p-fee__price-main.-excluding-tax {
  font-family: var(--en-serif) !important;
  font-size: 32px;
  font-weight: 400;
  color: #111 !important;
}
@media screen and (max-width: 767px) {
  .p-fee__price-main.-excluding-tax {
    font-size: 7.2vw;
  }
}
.p-fee__price-tax {
  margin-left: 8px;
  font-family: var(--sans-serif) !important;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-fee__price-tax {
    margin-left: 0.5333333333vw;
    font-size: 4.2666666667vw;
  }
}
.p-fee__price-total {
  text-align: right;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-fee__price-total {
    font-size: 3.2vw;
  }
}
.p-fee__price-note {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-fee__price-note {
    margin-top: 4vw;
    font-size: 3.4666666667vw;
  }
}
.p-fee__price-note + .p-fee__price-note {
  margin-top: 5px;
}
.p-fee__features {
  padding-block: 5px;
  margin-inline: var(--fee-margin-inline);
  color: var(--main);
}
.p-fee__features * {
  color: inherit;
}
.p-fee__features.-adjust-mb {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .p-fee__features.-adjust-mb {
    margin-bottom: 4.6666666667vw;
  }
}
.p-fee__features-ttl {
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--main);
  text-align: center;
  background-color: #f4eee7;
}
@media screen and (max-width: 767px) {
  .p-fee__features-ttl {
    padding: 1.3333333333vw;
    font-size: 4vw;
  }
}
.p-fee__features-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 27px 20px;
  margin-top: 23px;
}
@media screen and (max-width: 767px) {
  .p-fee__features-items {
    gap: 4.2666666667vw 3.7333333333vw;
    margin-top: 3.4666666667vw;
  }
}
.p-fee__features-item {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .p-fee__features-item {
    grid-template-columns: 18vw 1fr;
    gap: 1.8666666667vw;
  }
}
.p-fee__features-item.-item-center {
  align-items: center;
}
.p-fee__feature-ttl {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-fee__feature-ttl {
    font-size: 2.8vw;
  }
}
.p-fee__feature-txt {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-fee__feature-txt {
    margin-top: 0.8vw;
    font-size: 2.6666666667vw;
    line-height: 1.45;
  }
}
.p-fee__included {
  grid-column: span 2;
  padding: 10px 20px;
  padding-block: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--sub);
  background-color: #f4eee7;
}
@media screen and (max-width: 767px) {
  .p-fee__included {
    padding-block: 1.3333333333vw;
    font-size: 2.6666666667vw;
  }
}
.p-fee__included * {
  line-height: inherit;
  color: inherit;
}
.p-fee__note {
  padding: 10px 15px;
  margin-block: 10px 35px;
  margin-inline: var(--fee-margin-inline);
  font-size: 15px;
  line-height: 1.4;
  color: var(--sub);
  background-color: #fcf789;
}
@media screen and (max-width: 767px) {
  .p-fee__note {
    padding: 1.3333333333vw 2.6666666667vw;
    margin-block: 2.6666666667vw 4.8vw;
    font-size: 2.6666666667vw;
  }
}
.p-fee__note * {
  line-height: inherit;
  color: inherit;
}
.p-fee__desc {
  padding-block: 25px 0;
  margin-inline: var(--fee-margin-inline);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--main);
}
@media screen and (max-width: 767px) {
  .p-fee__desc {
    padding-block: 5.3333333333vw 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.p-fee__plan-desc {
  padding-block: 27px 0;
  margin-inline: var(--fee-margin-inline);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--main);
}
@media screen and (max-width: 767px) {
  .p-fee__plan-desc {
    padding-block: 5.3333333333vw 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.p-fee__price-btn-wrap {
  text-align: center;
  margin-inline: var(--fee-margin-inline);
  padding-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .p-fee__price-btn-wrap {
    padding-block: 2.6666666667vw 5.3333333333vw;
  }
}
.p-fee__price-btn-wrap .p-btn-arrow__txt {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-fee__price-btn-wrap .p-btn-arrow__txt {
    font-size: 3.7333333333vw;
  }
}
.p-fee__price-btn {
  --btn-w: 100%;
  --btn-h: 56px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .p-fee__price-btn {
    --btn-h: 13.3333333333vw;
    font-size: 4vw;
  }
}
.p-fee__price-btn::before {
  content: "";
  display: block;
  position: absolute;
  inset-block: 0;
  right: 20px;
  background: url(../img/common/icon/icon_solid_arrow_white_01.svg) no-repeat center center/contain;
  width: 10px;
  height: 14px;
  margin-block: auto;
  stroke: #fff;
}
.p-fee__price-btn span {
  font-weight: inherit;
}
@media (hover: hover) {
  .p-fee__price-btn:hover.c-btn-family-one-day::before {
    background-image: url(../img/common/icon/icon_solid_arrow_blue_01.svg);
  }
  .p-fee__price-btn:hover.c-btn-family-two-days::before {
    background-image: url(../img/common/icon/icon_solid_arrow_pink_01.svg);
  }
  .p-fee__price-btn:hover.c-btn-family-comfort::before {
    background-image: url(../img/common/icon/icon_solid_arrow_purple_01.svg);
  }
  .p-fee__price-btn:hover.c-btn-general-funeral::before {
    background-image: url(../img/common/icon/icon_solid_arrow_green_01.svg);
  }
  .p-fee__price-btn:hover.c-btn-direct-funeral::before {
    background-image: url(../img/common/icon/icon_solid_arrow_brown_01.svg);
  }
}
.p-fee__welfare-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
}
@media (width <= 1050px) {
  .p-fee__welfare-price {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-fee__welfare-price {
    padding: 4vw;
  }
}
.p-fee__welfare-price-ttl {
  font-size: 16px;
  font-weight: 500;
  color: var(--main);
}
@media screen and (max-width: 767px) {
  .p-fee__welfare-price-ttl {
    font-size: 3.7333333333vw;
  }
}
.p-fee__welfare-price-main {
  margin-left: 20px;
  font-size: 42px;
  font-weight: 700;
  color: var(--main);
}
@media (width <= 1050px) {
  .p-fee__welfare-price-main {
    margin-top: 10px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-fee__welfare-price-main {
    font-size: 7.2vw;
  }
}
.p-fee__welfare-price-tax {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--main);
}
@media screen and (max-width: 767px) {
  .p-fee__welfare-price-tax {
    font-size: 3.7333333333vw;
  }
}
.p-fee__welfare-price-note {
  margin-left: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--sub);
}
@media (width <= 1050px) {
  .p-fee__welfare-price-note {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-fee__welfare-price-note {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 768px) {
  .p-fee.-type-row .c-hdg {
    max-width: 534px;
    margin-inline: auto;
  }
}
@media (1070px <= width) {
  .p-fee.-type-row .p-fee__ttl {
    border-bottom: 1px solid #707070;
  }
}
.p-fee.-type-row .p-fee__desc {
  padding-block: 20px 0;
}
@media (1070px <= width) {
  .p-fee.-type-row .p-fee__head {
    display: grid;
    padding: 37px 30px;
  }
}
@media (1175px < width) {
  .p-fee.-type-row .p-fee__head {
    grid-template-columns: 50.5% 1fr;
  }
}
@media (width <= 1175px) {
  .p-fee.-type-row .p-fee__head {
    grid-template-columns: 48% 1fr;
  }
}
@media (width < 1070px) {
  .p-fee.-type-row .p-fee__head {
    margin-top: 20px;
  }
}
@media (1070px <= width) {
  .p-fee.-type-row .p-fee__price {
    --fee-margin-inline: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-block: 0;
  }
}
@media (1070px <= width) {
  .p-fee.-type-row .p-fee__price-list {
    flex: 1;
    padding-inline: 8px;
  }
}
@media (width <= 1070px) {
  .p-fee.-type-row .p-fee__price-list {
    justify-content: center;
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-fee.-type-row .p-fee__price-list {
    justify-content: space-between;
    gap: 0;
  }
}
@media (1070px < width) {
  .p-fee.-type-row .p-fee__price-list .member .p-fee__price-main::before {
    top: 20px;
  }
}
@media (1175px < width) {
  .p-fee.-type-row .p-fee__price-list .member .p-fee__price-main::before {
    left: -35px;
  }
}
@media (1070px < width) {
  .p-fee.-type-row .p-fee__price-list .member .p-fee__price-total {
    margin-top: 12px;
  }
}
@media (1070px < width) {
  .p-fee.-type-row .p-fee__price-ttl {
    margin-bottom: 20px;
  }
}
@media (1070px < width) {
  .p-fee.-type-row .p-fee__price-total {
    margin-top: 6px;
  }
}
@media (1070px <= width) {
  .p-fee.-type-row .p-fee__features-items {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 17px;
  }
}
@media (1070px <= width) {
  .p-fee.-type-row .p-fee__features-item {
    flex: 0 0 240px;
  }
}
@media (768px <= width <= 1069px) {
  .p-fee.-type-row .p-fee__features-item {
    flex: 0 0 calc(50% - 17px);
  }
}
@media (1070px <= width) {
  .p-fee.-type-row .p-fee__included {
    margin-top: -0.3em;
  }
}
@media (768px <= width <= 1069px) {
  .p-fee.-type-row .p-fee__included {
    flex: 1 1 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-fee.-type-row .p-fee__included {
    padding: 2.1333333333vw 2.6666666667vw;
  }
}
.p-fee.-type-row .p-fee__included dt,
.p-fee.-type-row .p-fee__included dd {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-fee.-type-row .p-fee__included dt,
  .p-fee.-type-row .p-fee__included dd {
    font-size: 2.6666666667vw;
  }
}
.p-fee.-type-row .p-fee__included dd {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-fee.-type-row .p-fee__included dd {
    margin-top: 1.6vw;
  }
}
.p-fee.-adjust-pd {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .p-fee.-adjust-pd {
    padding-block: 13.3333333333vw;
  }
}
.p-fee.-adjust-pb {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-fee.-adjust-pb {
    padding-bottom: 13.3333333333vw;
  }
}
.p-fee.-bg-dark-brown {
  background-color: #e3dad2;
}
.p-fee.-bg-dark-brown .p-fee__inner {
  padding-block: 90px;
}
@media screen and (max-width: 767px) {
  .p-fee.-bg-dark-brown .p-fee__inner {
    padding-block: 13.3333333333vw;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-ltSP {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .u-hidden-ltTAB {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-hidden-gtTAB {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .u-hidden-gtPC {
    display: none;
  }
}

.screen-reader-text,
.u-screen-reader {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.u-ta-left {
  text-align: left;
}
.u-ta-center {
  text-align: center;
}
.u-ta-right {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .u-SP-ta-left {
    text-align: left;
  }
  .u-SP-ta-center {
    text-align: center;
  }
  .u-SP-ta-right {
    text-align: right;
  }
}
.u-br {
  display: block;
}

@media screen and (min-width: 768px) {
  .u-br-pc {
    display: block;
  }
}

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

.u-color-primary {
  color: var(--primary-color) !important;
}

.u-color-red {
  color: var(--color-red) !important;
}

.u-color-main {
  color: var(--main) !important;
}

.u-fw-black {
  font-weight: 900;
}

.u-fw-extra-bold {
  font-weight: 800;
}

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

.u-fw-semibold {
  font-weight: 600;
}

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

.u-fw-normal {
  font-weight: 400;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-0-5em {
  margin-top: 0.5em !important;
}

.u-mt-1em {
  margin-top: 1em !important;
}

.u-mt-1-5em {
  margin-top: 1.5em !important;
}

.u-mt-2em {
  margin-top: 2em !important;
}

.u-mt-3em {
  margin-top: 3em !important;
}

.u-mt-4em {
  margin-top: 4em !important;
}

.u-mt-5em {
  margin-top: 5em !important;
}

.u-mt-6em {
  margin-top: 6em !important;
}

.u-mt-7em {
  margin-top: 7em !important;
}

.u-mb-0-5em {
  margin-bottom: 0.5em !important;
}

.u-mb-1em {
  margin-bottom: 1em !important;
}

.u-mb-1-5em {
  margin-bottom: 1.5em !important;
}

.u-mb-2em {
  margin-bottom: 2em !important;
}

.u-mb-3em {
  margin-bottom: 3em !important;
}

.u-mb-4em {
  margin-bottom: 4em !important;
}

.u-mb-5em {
  margin-bottom: 5em !important;
}

.u-mb-6em {
  margin-bottom: 6em !important;
}

.u-mb-7em {
  margin-bottom: 7em !important;
}