@charset "UTF-8";
/*リセットcss
***************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

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

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

/* ルートフォント設定(PCファースト)
***************************************************************/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1160px) and (min-width: 768px) {
  html {
    font-size: calc(10 / 1160 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10 / 360 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
}

/* スクロール設定
***************************************************************/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.3rem;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 4.5rem;
  }
}

/* base（基本）設定
***************************************************************/
body {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  background-color: #f8f8f8;
  color: #22201F;
  font-size: 1.6rem;
  line-height: 1.6;
  transition: padding 0s;
}
body.is-locked {
  height: 100%;
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
  transition: transform 0.8s ease, background-color 0.8s ease;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a {
  display: inline-block;
}

picture,
video,
img,
svg {
  width: 100%;
  height: 100%;
}

/* PC時は電話番号リンクを無効化
***************************************************************/
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* アニメーション
***************************************************************/
/*下からふわっ */
.fade-in-up {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* mainレイアウト
***************************************************************/
.l-main {
  overflow: hidden;
  width: 100%;
  margin-top: 7.3rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 4.5rem;
  }
}

/* 共通inner
***************************************************************/
.l-inner {
  position: relative;
  width: 100%;
  max-width: 1160px;
  height: inherit;
  padding: 0 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 2rem;
  }
}

/* ヘッダー
***************************************************************/
.l-header {
  width: 100%;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2rem;
  padding-block: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    display: flex;
    padding-inline: 1rem;
    padding-block: 1rem;
    justify-content: space-between;
  }
}

.l-header__logo {
  color: #22201f;
  font-size: 3.6rem;
  letter-spacing: 0.07em;
  line-height: 1.3333333333;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    font-size: 1.6rem;
  }
}
.l-header__logo.l-header__logo--fixed {
  font-size: 3.3rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo.l-header__logo--fixed {
    font-size: 1.6rem;
  }
}

/* ナビゲーション（初期ヘッダー用） */
.l-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
}
.l-header__nav-list > li {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4444444444;
  letter-spacing: 0.07em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__nav-list > li {
    font-size: 1.8rem;
  }
}
.l-header__nav-list > li:not(:last-child)::after {
  content: "|";
  position: absolute;
  top: 0;
  left: calc(100% + 1.9rem);
}
.l-header__nav-list > li > a {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__nav-list > li > a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-list {
    display: none;
  }
}

/* TOPページのみの初期ヘッダー (PCのStart時) */
.l-header--start {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .l-header--start {
    display: none;
  }
}

/* 追従ヘッダー (Fixed) */
.l-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #f8f8f8;
  transform: translateY(-100%);
  transition: transform 0.8s ease, background-color 0.8s ease;
}
.l-header--fixed.is-scroll {
  transform: translateY(0);
}
.l-header--fixed.is-always-visible {
  transform: translateY(0) !important;
  transition: none;
}
body.is-locked .l-header--fixed {
  background-color: #e7e3dd;
  padding-right: var(--scrollbar-width, 0px);
  transition: background-color 0.8s ease;
}
.l-header--fixed .l-header__nav {
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-header--fixed {
    transform: translateY(0);
    transition: none;
  }
}

.l-header__btn {
  background: #22201f;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6666666667;
  letter-spacing: 0.07em;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
@media screen and (max-width: 767px) {
  .l-header__btn {
    font-size: 1.2rem;
  }
}
@media (any-hover: hover) {
  .l-header__btn:hover {
    background: #e7e3dd;
    color: #22201f;
    border: 1px solid #22201f;
  }
}
@media screen and (max-width: 767px) {
  .l-header__btn {
    display: none;
  }
}

/* ドロワーアイコン
***************************************************************/
.l-header__drawer-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  justify-content: center;
  width: 3.7rem;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-icon {
    width: 3.5rem;
    gap: 0;
  }
}

.l-header__drawer-icon-bars {
  width: 100%;
  height: 2rem;
  transition: all 0.8s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-header__drawer-icon-bars .bar {
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: all 0.8s ease;
}
.is-active .l-header__drawer-icon-bars .bar:nth-child(1) {
  transform: translateY(1rem) rotate(30deg);
}
.is-active .l-header__drawer-icon-bars .bar:nth-child(2) {
  opacity: 0;
}
.is-active .l-header__drawer-icon-bars .bar:nth-child(3) {
  transform: translateY(-0.9rem) rotate(-30deg);
}
@media screen and (max-width: 767px) {
  .is-active .l-header__drawer-icon-bars .bar:nth-child(1) {
    transform: translateY(1rem) rotate(25deg);
  }
  .is-active .l-header__drawer-icon-bars .bar:nth-child(2) {
    opacity: 0;
  }
  .is-active .l-header__drawer-icon-bars .bar:nth-child(3) {
    transform: translateY(-0.9rem) rotate(-25deg);
  }
}

.l-header__drawer-icon-text {
  position: relative;
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  height: 1.2rem;
  color: #22201F;
}
.l-header__drawer-icon-text .text-menu,
.l-header__drawer-icon-text .text-close {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.8s ease;
  white-space: nowrap;
}
.l-header__drawer-icon-text .text-menu {
  opacity: 1;
}
.is-active .l-header__drawer-icon-text .text-menu {
  opacity: 0;
}
.l-header__drawer-icon-text .text-close {
  opacity: 0;
}
.is-active .l-header__drawer-icon-text .text-close {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-icon-text {
    display: none;
  }
}

/* ドロワー中身
***************************************************************/
.l-header__drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding-inline: 4rem;
  background: #e7e3dd;
  z-index: 50;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
}
.l-header__drawer.is-active {
  opacity: 1;
  pointer-events: auto;
}

.l-header__drawer-inner {
  width: 96.6rem;
  margin-inline: auto;
  max-width: 100%;
}

.l-header__drawer-body {
  width: 100%;
  padding-block: 10rem 6rem;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-body {
    padding-block: 3rem 3rem;
  }
}

.l-header__drawer-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3.2rem;
}
.l-header__drawer-list > li a {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__drawer-list > li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header__drawer-list > li a {
    font-size: 1.6rem;
  }
}

/* フッター
***************************************************************/
.l-footer {
  padding-block: 4.4rem 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-block: 4.1rem 2rem;
  }
}

.l-footer__inner {
  width: 111.6rem;
  margin-inline: auto;
  max-width: 100%;
  padding-inline: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding-inline: 2.3rem;
  }
}

.l-footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-footer__container {
    display: block;
  }
}

.l-footer__nav-list {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.07em;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list {
    font-size: 1.6rem;
  }
}
.l-footer__nav-list a {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer__nav-list a:hover {
    opacity: 0.6;
  }
}

.l-footer__link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 1.5rem 2.9rem 1.5rem 2.9rem;
  background: transparent;
  border: 1px solid #8B7266;
  transition: all 0.3s ease;
  position: relative;
  min-width: 26.6rem;
  color: #22201F;
  font-size: 1.5rem;
  line-height: 1.4666666667;
  letter-spacing: 0.07em;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer__link a:hover {
    background: #22201F;
    color: #fff;
    border: 1px solid #22201f;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__link a {
    display: none;
  }
}
.l-footer__link a svg {
  display: block;
  stroke: currentColor;
  transition: all 0.3s ease;
}

.l-footer__copyright {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.4666666667;
  letter-spacing: 0.07em;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    margin-top: 3.5rem;
    font-size: 1.3rem;
  }
}

/* 共通ボタン
***************************************************************/
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 3.2rem 1.5rem 4.1rem;
  background: #22201f;
  border: 1px solid #22201f;
  transition: all 0.3s ease;
  position: relative;
  min-width: 30.7rem;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1.1764705882;
  letter-spacing: 0.07em;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-button:hover {
    background: #f1eee9;
    color: #22201f;
    border: 1px solid #22201f;
  }
}
@media screen and (max-width: 767px) {
  .c-button {
    padding: 1.5rem 3.2rem 1.5rem 4.1rem;
    min-width: 31.2rem;
    letter-spacing: 0.03em;
  }
}
.c-button svg {
  display: block;
  stroke: currentColor;
  transition: all 0.3s ease;
}

/* セクション共通見出し(30px/20px 中央配置)
***************************************************************/
.c-section-head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.c-section-head.c-section-head--wide {
  gap: 1.5rem;
}

.c-section-head__title-en {
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #8b7266;
  text-align: center;
}
.c-section-head--left .c-section-head__title-en {
  text-align: left;
}

.c-section-head__title {
  font-size: 3rem;
  line-height: 1.4;
  letter-spacing: 0.07em;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section-head__title {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.c-section-head--left .c-section-head__title {
  text-align: left;
}

/* セクション共通見出し（25px/20px）ver*/
.c-section-head__title.title--small {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-section-head__title.title--small {
    font-size: 2rem;
  }
}

/* TOPページ　お墓選びセクションのみPCは左・SPは中央配置ver*/
.c-section-head--selection .c-section-head__title-en,
.c-section-head--selection .c-section-head__title {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-section-head--selection .c-section-head__title-en,
  .c-section-head--selection .c-section-head__title {
    text-align: center;
  }
}

/* フォームコンポーネント
***************************************************************/
.c-form {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.c-form__note {
  text-align: right;
  font-size: 1.2rem;
  font-weight: 500;
}
.c-form__note span.is-must {
  position: relative;
  display: inline-block;
}
.c-form__note span.is-must::after {
  content: "*";
  position: absolute;
  top: 0;
  right: calc(100% + 0.2rem);
  color: #FF1500;
  line-height: 1;
}

.c-form__body {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 4.7rem;
}
@media screen and (max-width: 767px) {
  .c-form__body {
    gap: 2.4rem;
    margin-top: -2.2rem;
  }
}

.c-form__required {
  color: #FF1500;
  margin-left: 1.2rem;
  vertical-align: middle;
}

.c-form__row {
  display: grid;
  grid-template-columns: 15.8rem 1fr;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  align-items: center;
}
.c-form__row.c-form__row--item-top {
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .c-form__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}
.c-form--wideLabel .c-form__row {
  grid-template-columns: 18.9rem 1fr;
}

.c-form__head {
  font-size: 2rem;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-form__head {
    font-size: 1.6rem;
  }
}
.c-form__head span.is-must {
  position: relative;
  display: inline-block;
}
.c-form__head span.is-must::after {
  content: "*";
  position: absolute;
  top: 0;
  left: calc(100% + 0.4rem);
  color: #FF1500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-form__data {
    width: 100%;
  }
}

.c-form__data-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .c-form__data-group {
    gap: 1rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  border-radius: 0;
  width: 100%;
  border: none;
  padding: 1.5rem 1.8rem;
  background: #fff;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  color: #22201F;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #8B7266;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #8B7266;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    padding: 1rem;
    font-size: 1.6rem;
  }
}

input[type=tel].c-form__input-tel,
input[type=text].c-form__input-code {
  width: 46%;
}

@media screen and (max-width: 767px) {
  input[type=tel].c-form__input-tel {
    width: 100%;
  }
}

textarea {
  resize: vertical;
  height: 17rem;
}
@media screen and (max-width: 767px) {
  textarea {
    height: 20.8rem;
  }
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.c-form__data-checkbox .wpcf7-list-item-label {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-left: 2rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-form__data-checkbox .wpcf7-list-item-label {
    font-size: 1.2rem;
  }
}
.c-form__data-checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 100vmax;
  border: 1px solid #22201F;
}
.c-form__data-checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 100vmax;
  background: #876E62;
  transition: all 0.3s ease;
  opacity: 0;
}

.c-form__acceptance {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-form__acceptance {
    margin-top: 4.8rem;
  }
}
.c-form__acceptance a {
  color: #8B7266;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-form__acceptance a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.c-form__submit {
  text-align: center;
  margin-top: 1rem;
}
.p-register--confirm .c-form__submit {
  margin-top: 4.4rem;
}
.c-form__submit input[type=submit] {
  display: inline-block;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  padding: 1.5rem 10rem;
  background: #22201F;
  color: #fff;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-form__submit input[type=submit] {
    padding-block: 1.2rem;
  }
}
@media (any-hover: hover) {
  .c-form__submit input[type=submit]:hover {
    background: #fff;
    color: #22201F;
    border: 1px solid #22201F;
  }
}
.c-form__submit input[type=submit]:disabled {
  background-color: #B3B3B3;
  color: #fff;
  border-color: #B3B3B3;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 1;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-list-item {
  margin: 0 0 0 0;
}

.wpcf7-not-valid-tip {
  color: #C20B2A;
  font-size: 1.6rem;
  margin-top: 1.2rem;
}

input.wpcf7-not-valid {
  border-color: #C20B2A;
}

textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
  border-color: #C20B2A;
}

/* 寺院・墓地一覧ページ
***************************************************************/
.c-pagination {
  display: flex;
  justify-content: center;
  padding-block: 4rem 4rem;
  gap: 2rem;
  font-size: 1.6rem;
  line-height: 1;
}
.c-pagination a {
  display: block;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-pagination a:hover {
    opacity: 0.7;
  }
}
.c-pagination .page-numbers {
  width: 4rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid #8B7266;
}
.c-pagination .page-numbers.current {
  background-color: #8B7266;
  color: #F8F8F8;
}
.c-pagination .page-numbers.next, .c-pagination .page-numbers.prev {
  width: -moz-fit-content;
  width: fit-content;
  aspect-ratio: auto;
  padding-inline: 1.6rem;
}

/* 寺院・墓地一覧ページ（ポップアップボタン）
***************************************************************/
.c-floating-register {
  position: fixed;
  bottom: 8rem;
  right: 4rem;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4rem);
  transition: all 0.5s ease;
}
.c-floating-register.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .c-floating-register {
    bottom: calc(6rem + env(safe-area-inset-bottom));
    right: 1.5rem;
  }
}

.c-floating-register__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 1.8rem 2.9rem 1.8rem 2.9rem;
  background: #22201F;
  border: 1px solid #22201F;
  transition: all 0.3s ease;
  position: relative;
  min-width: 26.6rem;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.07em;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-floating-register__link:hover {
    background: #F1EEE9;
    color: #22201F;
    border: 1px solid #22201F;
  }
}
@media screen and (max-width: 767px) {
  .c-floating-register__link {
    padding: 1.5rem 2rem 1.5rem 2.5rem;
    min-width: auto;
    font-weight: 500;
    letter-spacing: 0.03em;
    font-size: 1.6rem;
  }
}
.c-floating-register__link svg {
  display: block;
  stroke: currentColor;
  transition: all 0.3s ease;
}

/* MV
***************************************************************/
.p-mv {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-mv {
    margin-top: 1rem;
    padding-inline: 0.6rem;
  }
}

.p-mv__inner {
  max-width: 128rem;
  margin-inline: auto;
  position: relative;
}
.p-mv__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/bg_fv-circle-new--pc.webp) no-repeat center top/cover;
  aspect-ratio: 5331/3112;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-mv__inner::before {
    background: url(../img/bg_fv-circle-new--sp.webp) no-repeat center top/cover;
    aspect-ratio: 1459/1875;
  }
}

.p-mv__title-wrapper {
  position: absolute;
  bottom: 4.6rem;
  left: 12.4rem;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-mv__title-wrapper {
    bottom: 6.6rem;
    left: 3.5rem;
  }
}

.p-mv__title-sub {
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-mv__title-sub {
    font-size: 1.7rem;
    line-height: 1.1764705882;
  }
}

.p-mv__title-main {
  font-size: 7rem;
  line-height: 1.2;
  letter-spacing: 0.07em;
  translate: -0.3rem 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-mv__title-main {
    font-size: 3.9rem;
    line-height: 1.1;
  }
}

.p-mv__cta {
  position: absolute;
  bottom: 2.3rem;
  right: 3rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-mv__cta {
    bottom: -2rem;
    right: 0.6rem;
  }
}
.p-mv__cta a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  padding: 1.4rem 2.2rem 1.4rem 2.5rem;
  background: #22201f;
  border: 1px solid #22201f;
  transition: all 0.3s ease;
  position: relative;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1.1764705882;
  letter-spacing: 0.07em;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-mv__cta a:hover {
    background: #f1eee9;
    color: #22201f;
    border: 1px solid #22201f;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__cta a {
    padding: 1rem 1.2rem 1rem 1.2rem;
    gap: 1rem;
    font-size: 1.6rem;
    line-height: 1.375;
  }
}
.p-mv__cta a svg {
  display: block;
  stroke: currentColor;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .p-mv__cta-icon {
    translate: 0 1.3rem;
  }
}

.p-mv__swiper-container {
  position: relative;
  z-index: 1;
  max-width: 127.8rem;
  padding-inline: 0.2rem;
  margin-inline: auto;
}

.p-mv__slide img {
  aspect-ratio: 1280/730;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-mv__slide img {
    aspect-ratio: 720/896;
  }
}

/* このサイトの使い方
***************************************************************/
.p-use {
  padding-block: 6.4rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-use {
    padding-block: 5rem 4.2rem;
  }
}

.p-use__inner {
  width: 114rem;
  max-width: 100%;
  margin-inline: auto;
}

.p-use__contents {
  margin-top: 3.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-use__contents {
    max-width: 19.5rem;
    margin-inline: auto;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.4rem;
  }
}

.p-use__list {
  border-radius: 50%;
  background-color: #e0d7c9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.4rem 2rem 4.2rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-use__list {
    padding: 1.7rem 2rem 1.7rem 2rem;
    height: 9.7rem;
  }
}

.p-use__list-num {
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-use__list-num {
    font-size: 2rem;
  }
}

.p-use__list-text {
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.07em;
  font-weight: 600;
  text-align: center;
}
.list01 .p-use__list-text, .list02 .p-use__list-text {
  margin-top: 1.4rem;
}
.list03 .p-use__list-text {
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-use__list-text {
    font-size: 1.6rem;
  }
  .list01 .p-use__list-text, .list02 .p-use__list-text {
    margin-top: 0.6rem;
  }
  .list03 .p-use__list-text {
    margin-top: 0.2rem;
  }
}

/* おすすめの寺院墓地
***************************************************************/
.p-pickup {
  padding-block: 7rem 8rem;
  background: #f1eee9;
}
@media screen and (max-width: 767px) {
  .p-pickup {
    padding-block: 4.4rem 4.1rem;
  }
}

.p-pickup__inner {
  width: 111.6rem;
  margin-inline: auto;
  max-width: 100%;
}

.p-pickup__container {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-top: 7.4rem;
}
@media screen and (max-width: 767px) {
  .p-pickup__container {
    gap: 5.6rem;
    margin-top: 3.5rem;
  }
}

.p-pickup__item {
  display: flex;
  gap: 7.2rem;
}
@media screen and (max-width: 767px) {
  .p-pickup__item {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-pickup__item-img {
  flex-shrink: 0;
  width: 49.5rem;
  max-width: 100%;
  overflow: hidden;
}
.p-pickup__item-img img {
  aspect-ratio: 495/224;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.p-pickup__item-img:hover img {
  transform: scale(1.15);
}

.p-pickup__item-body {
  padding-top: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-pickup__item-body {
    padding-top: 0;
  }
}

.p-pickup__item-title {
  font-size: 2.3rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-pickup__item-title {
    font-size: 1.6rem;
  }
}

.p-pickup__item-name {
  margin-top: 1rem;
}

.p-pickup__item-access,
.p-pickup__item-name {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-pickup__item-access,
  .p-pickup__item-name {
    font-size: 1.6rem;
  }
}

.p-pickup__cta {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-pickup__cta {
    margin-top: 3rem;
  }
}

/* コンセプトセクション
***************************************************************/
.p-concept {
  padding-block: 8.2rem 8.6rem;
}
@media screen and (max-width: 767px) {
  .p-concept {
    padding-block: 4.4rem 5.4rem;
  }
}

.p-concept__inner {
  width: 113rem;
  margin-inline: auto;
  max-width: 100%;
}

.p-concept__container {
  display: flex;
  gap: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-concept__container {
    flex-direction: column-reverse;
    gap: 2.4rem;
  }
}

.p-concept__body {
  flex-grow: 1;
}

.p-concept__text {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-concept__text {
    letter-spacing: 0.04em;
    margin-top: 4.4rem;
  }
}

.p-concept__img {
  flex-shrink: 0;
  width: 31.1428571429%;
}
.p-concept__img img {
  aspect-ratio: 327/379;
}
@media screen and (max-width: 767px) {
  .p-concept__img {
    width: 100%;
  }
  .p-concept__img img {
    aspect-ratio: 312/303;
  }
}

/* サービスセクション
***************************************************************/
.p-service {
  padding-block: 6.3rem 9.6rem;
  background: #e7e3dd;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding-block: 4.6rem 6.7rem;
    background: #f1eee9;
  }
}

.p-service__container {
  width: 106rem;
  margin-inline: auto;
  max-width: 100%;
  background: #f8f8f8;
  padding: 4.4rem 6.2rem 4.9rem 5.2rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-service__container {
    background: none;
    padding: 0;
    margin-top: 4rem;
  }
}

.p-service__heading {
  font-size: 2.3rem;
  line-height: 1.5217391304;
  letter-spacing: 0.07em;
  font-weight: 600;
  border-bottom: 0.1rem solid currentColor;
}
@media screen and (max-width: 767px) {
  .p-service__heading {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    border-bottom: none;
    padding: 2rem;
    border-radius: 100vmax;
    background: #f8f8f8;
    text-align: center;
    color: #8b7266;
  }
}

.p-service__contents {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 41.9rem;
  grid-template-rows: min-content minmax(0, 1fr);
  grid-column-gap: 4rem;
  grid-row-gap: 4.4rem;
  grid-template-areas: "body img" "cta img";
  margin-top: 4.5rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-service__contents {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-column-gap: 0;
    grid-row-gap: 5.4rem;
    grid-template-areas: "body" "img" "cta";
    margin-top: 4rem;
  }
}

.p-service__body {
  grid-area: body;
}

.p-service__body-intro {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 500;
}

.p-service__body-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 2.4rem;
}
.p-service__body-list > li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
  font-weight: 500;
}
.p-service__body-list > li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-service__body-list > li {
    letter-spacing: 0.04em;
  }
}

.p-service__img {
  grid-area: img;
  width: 41.9rem;
  max-width: 100%;
  margin-top: -1rem;
}
.p-service__img img,
.p-service__img picture {
  aspect-ratio: 419/360;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-service__img {
    margin-top: 0;
  }
}

.p-service__cta {
  grid-area: cta;
}
@media screen and (max-width: 767px) {
  .p-service__cta {
    text-align: center;
  }
}

/* 編集部厳選のお墓選びセクション
***************************************************************/
.p-selection {
  padding-block: 9.2rem 11rem;
}
@media screen and (max-width: 767px) {
  .p-selection {
    padding-block: 4rem 5rem;
  }
}

.p-selection__inner {
  width: 114rem;
  margin-inline: auto;
  max-width: 100%;
}

.p-selection__container {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (max-width: 767px) {
  .p-selection__container {
    gap: 5rem;
    margin-top: 3.6rem;
  }
}

.p-selection__box {
  display: flex;
  align-items: flex-start;
}
.p-selection__box:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-selection__box {
    flex-direction: column-reverse;
  }
  .p-selection__box:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.p-selection__box-body {
  flex-grow: 1;
}

.p-selection__box-title {
  font-size: 2.3rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 600;
  color: #8b7266;
}
@media screen and (max-width: 767px) {
  .p-selection__box-title {
    font-size: 1.8rem;
  }
}

.p-selection__box-text {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-selection__box-text {
    letter-spacing: 0em;
  }
}

.p-selection__box-img {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-selection__box-img {
    padding-inline: 0.5rem;
  }
}

/* p-selection__box01のみのスタイル */
.p-selection__box01 {
  gap: 5.7rem;
}
@media screen and (max-width: 767px) {
  .p-selection__box01 {
    gap: 4.3rem;
  }
}
.p-selection__box01 .p-selection__box-body {
  margin-top: 5.4rem;
}
@media screen and (max-width: 767px) {
  .p-selection__box01 .p-selection__box-body {
    margin-top: 0;
  }
}
.p-selection__box01 .p-selection__box-list:not(:first-of-type) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-selection__box01 .p-selection__box-list:not(:first-of-type) {
    margin-top: 4rem;
  }
}
.p-selection__box01 .p-selection__box-title {
  padding-left: 1.5em;
  position: relative;
}
.p-selection__box01 .p-selection__box-title::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}
.p-selection__box01 .p-selection__box-text {
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-selection__box01 .p-selection__box-text {
    margin-top: 1.6rem;
  }
}
.p-selection__box01 .p-selection__box-img {
  width: 33.2rem;
}
.p-selection__box01 .p-selection__box-img img {
  aspect-ratio: 332/221;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-selection__box01 .p-selection__box-img {
    width: 100%;
  }
}

/* p-selection__box02のスタイル */
.p-selection__box02 {
  gap: 4rem;
}
.p-selection__box02 .p-selection__box-body {
  margin-top: 0.8rem;
}
.p-selection__box02 .p-selection__box-title {
  white-space: nowrap;
}
.p-selection__box02 .p-selection__box-title:not(:first-of-type) {
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-selection__box02 .p-selection__box-title {
    font-size: 1.6rem;
    white-space: normal;
  }
  .p-selection__box02 .p-selection__box-title:not(:first-of-type) {
    margin-top: 1.6rem;
  }
}
.p-selection__box02 .p-selection__box-text {
  padding-left: 1rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-selection__box02 .p-selection__box-text {
    padding-left: 0.5rem;
    margin-top: 4rem;
  }
  .p-selection__box02 .p-selection__box-text .ls-palt {
    display: inline;
    letter-spacing: -0.03em;
  }
}
.p-selection__box02 .p-selection__box-img {
  width: 45.5rem;
}
.p-selection__box02 .p-selection__box-img img {
  aspect-ratio: 455/268;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-selection__box02 .p-selection__box-img {
    width: 100%;
  }
}

/* p-selection__box03のスタイル */
.p-selection__box03 {
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-selection__box03 {
    gap: 5rem;
  }
}
.p-selection__box03 .p-selection__box-body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-selection__box03 .p-selection__box-body {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-selection__box03 .p-selection__box-text {
    letter-spacing: 0.07em;
    padding-inline: 0.5rem;
  }
}
.p-selection__box03 .p-selection__box-img {
  width: 48.5rem;
}
.p-selection__box03 .p-selection__box-img img {
  aspect-ratio: 485/304;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-selection__box03 .p-selection__box-img {
    width: 100%;
  }
}

/* 運営会社
***************************************************************/
.p-company {
  padding-block: 7.6rem 9.8rem;
  background: #f1eee9;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-block: 4.6rem 6.2rem;
  }
}

.p-company__inner {
  width: 112.8rem;
  margin-inline: auto;
  max-width: 100%;
}

.p-company__name {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.07em;
  line-height: 1.65;
  font-weight: 600;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-company__name {
    font-size: 1.6rem;
  }
}

.p-company__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4.1rem;
}
@media screen and (max-width: 767px) {
  .p-company__images {
    margin-top: 3.4rem;
  }
}

.p-company__img img {
  aspect-ratio: 342/229;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-company__img img {
    aspect-ratio: 1;
  }
}

.p-company__content {
  max-width: 103rem;
  margin-inline: auto;
  margin-top: 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-company__content {
    margin-top: 3.6rem;
  }
}

.p-company__catch {
  font-size: 2.3rem;
  line-height: 1.4347826087;
  letter-spacing: 0.07em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-company__catch {
    font-size: 2rem;
  }
}

.p-company__text {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-company__text {
    letter-spacing: 0.04em;
    margin-top: 3.4rem;
  }
  .p-company__text .ls-palt {
    letter-spacing: 0em;
  }
  .p-company__text .text-brown {
    color: #8b7266;
  }
}

/* 代表・池谷の情報発信セクション
***************************************************************/
.p-information {
  padding-block: 8.5rem 11.4rem;
  background-color: #3d486e;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-information {
    padding-block: 5.7rem;
  }
}

.p-information__inner {
  width: 112.6rem;
  margin-inline: auto;
  max-width: 100%;
}

.p-information__lead {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-top: 1.8rem;
  line-height: 1.6;
}

.p-information__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8.6rem;
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .p-information__content {
    flex-direction: column;
    gap: 4.4rem;
    margin-top: 4.7rem;
  }
}

.p-information__img {
  width: 34.7992351816%;
  flex-shrink: 0;
}
.p-information__img img {
  aspect-ratio: 364/467;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-information__img {
    width: 100%;
    padding-inline: 2.3rem;
  }
  .p-information__img img {
    aspect-ratio: 275/262;
    -o-object-position: top center;
       object-position: top center;
  }
}

.p-information__list-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
  margin-top: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-information__list-area {
    padding-inline: 0.4rem;
  }
}

.p-information__item-title {
  font-size: 2rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  padding-left: 1.5em;
}
.p-information__item-title::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-information__item-title {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.p-information__item-text {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-information__item-text {
    margin-top: 2.2rem;
  }
}

.p-information__item-link {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 13.1rem;
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #fff;
  margin-top: 2rem;
  position: relative;
  padding-right: 2rem;
}
.p-information__item-link::after {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  background: url(../img/icon_link-arrow.svg) no-repeat center center/contain;
  width: 0.64rem;
  height: 1.2rem;
  transform: translateX(0) translateY(-64%);
  transition: all 0.3s ease;
}
.p-information__item-link:hover::after {
  transform: translateX(0.5rem) translateY(-64%);
}
@media screen and (max-width: 767px) {
  .p-information__item-link {
    margin-top: 3rem;
  }
  .p-information__item-link::after {
    transform: translateX(0) translateY(-60%);
  }
}

/* 会員登録ページ
***************************************************************/
.p-register {
  background: #F1EEE9;
  padding-block: 8rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-register {
    padding-block: 5rem 6.1rem;
  }
}

.p-register__link {
  text-align: center;
  margin-top: 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-register__link {
    margin-top: 4rem;
  }
}
.p-register__link a {
  display: grid;
  place-content: center;
  width: 45.1rem;
  max-width: 100%;
  height: 9.7rem;
  background: #E0D7C9;
  color: #876E62;
  font-size: 2.6rem;
  letter-spacing: 0.07em;
  font-weight: 600;
  border-radius: 50%;
  margin-inline: auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-register__link a {
    width: 23.6rem;
    height: 9.4rem;
    font-size: 1.8rem;
  }
}
@media (any-hover: hover) {
  .p-register__link a:hover {
    background: #876E62;
    color: #fff;
  }
}

.p-register__container {
  width: 89.3rem;
  margin-inline: auto;
  max-width: 100%;
  margin-top: 3.9rem;
}
@media screen and (max-width: 767px) {
  .p-register__container {
    margin-top: 5rem;
  }
}

.p-register__favorites {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .p-register__favorites {
    margin-top: 6rem;
  }
}

.p-temples__container.p-register__favorites-container {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-temples__container.p-register__favorites-container {
    margin-top: 3rem;
  }
}

.p-register__favorites-link {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-register__favorites-link {
    margin-top: 4rem;
  }
}
.p-register__favorites-link .c-button {
  white-space: nowrap;
}

/* メンバー限定サービス紹介セクション
***************************************************************/
.p-memberService {
  padding-block: 10.4rem 11rem;
}
@media screen and (max-width: 767px) {
  .p-memberService {
    padding-block: 4.3rem 7rem;
  }
}

.p-memberService__inner {
  width: 115.4rem;
  margin-inline: auto;
  max-width: 100%;
}

.p-memberService__container {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-memberService__container {
    margin-top: 4rem;
  }
}

.p-memberService__text {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-memberService__text {
    letter-spacing: 0.03em;
    line-height: 1.56;
  }
}
.p-memberService__text .text-brown {
  color: #8B7266;
}
@media screen and (max-width: 767px) {
  .p-memberService__text .sp-text-brown {
    color: #8B7266;
  }
}

.p-memberService__wrap {
  margin-top: 10rem;
  display: flex;
  align-items: flex-start;
  gap: 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-memberService__wrap {
    margin-top: 6rem;
    flex-direction: column;
    gap: 3rem;
  }
}

.p-memberService__img-wrap {
  width: 37.2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-memberService__img-wrap {
    width: 100%;
  }
}

.p-memberService__img img {
  aspect-ratio: 372/248;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-memberService__img img {
    aspect-ratio: 311/207;
  }
}

.p-memberService__details {
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #8B7266;
  text-align: right;
  margin-top: 0.4rem;
}

.p-memberService__text-wrap {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-memberService__text-wrap {
    margin-top: 0;
  }
}

/* 会員登録の３つのメリット
***************************************************************/
.p-benefits01 {
  background: #E7E3DD;
  padding-block: 7.6rem 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-benefits01 {
    padding-block: 6.6rem 6rem;
  }
}

.p-benefits02 {
  background: #F8F8F8;
  padding-block: 8.6rem 8.9rem;
}
@media screen and (max-width: 767px) {
  .p-benefits02 {
    padding-block: 6.6rem 6rem;
  }
}

.p-benefits03 {
  background: #E7E3DD;
  padding-block: 8.8rem 11.1rem;
}
@media screen and (max-width: 767px) {
  .p-benefits03 {
    padding-block: 6rem 6rem;
  }
}

.p-benefits__inner {
  width: 114rem;
  margin-inline: auto;
  max-width: 100%;
}

.p-benefits__head {
  padding-block: 2.6rem;
  border-radius: 50%;
  max-width: 50rem;
  min-height: 20.5rem;
  margin-inline: auto;
  background: #F8F8F8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-benefits__head {
    padding: 2.2rem;
    max-width: 31.3rem;
    min-height: 14.3rem;
  }
}
.p-benefits01 .p-benefits__head {
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-benefits01 .p-benefits__head {
    margin-top: 4.6rem;
  }
}
.p-benefits02 .p-benefits__head {
  background: #E7E3DD;
}

.p-benefits__head-number {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.07em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-benefits__head-number {
    font-size: 2rem;
  }
}

.p-benefits__head-title {
  font-size: 2.5rem;
  line-height: 1.44;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-benefits__head-title {
    font-size: 1.6rem;
    margin-top: 1rem;
    letter-spacing: 0.04em;
  }
}

.p-benefits__contents {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-benefits__contents {
    flex-direction: column;
    align-items: center;
  }
}
.p-benefits01 .p-benefits__contents {
  gap: 4.8rem;
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-benefits01 .p-benefits__contents {
    margin-top: 5rem;
    gap: 5.4rem;
  }
}
.p-benefits02 .p-benefits__contents {
  flex-direction: row-reverse;
  gap: 5.5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-benefits02 .p-benefits__contents {
    flex-direction: column;
    margin-top: 5.6rem;
    gap: 4rem;
  }
}
.p-benefits03 .p-benefits__contents {
  gap: 3.7rem;
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-benefits03 .p-benefits__contents {
    gap: 5.7rem;
  }
}

.p-benefits__text-wrap {
  flex-grow: 1;
}
.p-benefits01 .p-benefits__text-wrap {
  width: 70%;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-benefits01 .p-benefits__text-wrap {
    width: 100%;
    margin-top: 0;
  }
}
.p-benefits02 .p-benefits__text-wrap {
  width: 74.7169811321%;
}
@media screen and (max-width: 767px) {
  .p-benefits02 .p-benefits__text-wrap {
    width: 100%;
  }
}
.p-benefits03 .p-benefits__text-wrap {
  width: 58.1132075472%;
}
@media screen and (max-width: 767px) {
  .p-benefits03 .p-benefits__text-wrap {
    width: 100%;
  }
}

.p-benefits__text {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-benefits__text {
    letter-spacing: 0.04em;
  }
}
.p-benefits02 .p-benefits__text, .p-benefits03 .p-benefits__text {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-benefits02 .p-benefits__text, .p-benefits03 .p-benefits__text {
    margin-top: 4.6rem;
  }
}

.p-benefits__text-title {
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-weight: 600;
  color: #8B7266;
}

.p-benefits__img-wrap {
  flex-shrink: 0;
}
.p-benefits01 .p-benefits__img-wrap {
  width: 21.9rem;
}
@media screen and (max-width: 767px) {
  .p-benefits01 .p-benefits__img-wrap {
    width: 23.3rem;
  }
}
.p-benefits02 .p-benefits__img-wrap {
  width: 18.9rem;
  margin-top: -11rem;
}
@media screen and (max-width: 767px) {
  .p-benefits02 .p-benefits__img-wrap {
    width: 17.2rem;
    margin-top: 0;
  }
}
.p-benefits03 .p-benefits__img-wrap {
  width: 38.9rem;
}
@media screen and (max-width: 767px) {
  .p-benefits03 .p-benefits__img-wrap {
    width: 28.1rem;
  }
}

.p-benefits01 .p-benefits__img img {
  aspect-ratio: 219/232;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-benefits01 .p-benefits__img img {
    aspect-ratio: 233/232;
  }
}
.p-benefits02 .p-benefits__img img {
  aspect-ratio: 189/371;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-benefits02 .p-benefits__img img {
    aspect-ratio: 172/338;
  }
}
.p-benefits03 .p-benefits__img img {
  aspect-ratio: 389/259;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-benefits__img-details {
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.07em;
  margin-top: 0.8rem;
  text-align: right;
  margin-top: 0.4rem;
  color: #8B7266;
}
@media screen and (max-width: 767px) {
  .p-benefits__img-details {
    margin-top: 0.8rem;
  }
}

/* 会員限定のメール配信について
***************************************************************/
.p-memberEmail {
  background: #3D486E;
  padding-block: 12rem 11rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-memberEmail {
    padding-block: 7rem 6rem;
  }
}

.p-memberEmail__inner {
  width: 114rem;
  margin-inline: auto;
  max-width: 100%;
}

.p-memberEmail__container {
  display: flex;
  align-items: flex-start;
  gap: 6.3rem;
}
@media screen and (max-width: 767px) {
  .p-memberEmail__container {
    flex-direction: column;
    gap: 5rem;
  }
}

.p-memberEmail__contents {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-memberEmail__contents {
    gap: 4.6rem;
  }
}

.p-memberEmail__info {
  flex-grow: 1;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-memberEmail__info {
    letter-spacing: 0.03rem;
  }
}

.p-memberEmail__info-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-memberEmail__info-list {
    margin-top: 2.4rem;
    gap: 2.4rem;
  }
}
.p-memberEmail__info-list > li {
  padding-left: 1.8rem;
  position: relative;
}
.p-memberEmail__info-list > li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

.p-memberEmail__img {
  width: 44.7169811321%;
  flex-shrink: 0;
  margin-top: -0.8rem;
}
@media screen and (max-width: 767px) {
  .p-memberEmail__img {
    width: 100%;
    margin-top: 0;
  }
}
.p-memberEmail__img img {
  aspect-ratio: 474/396;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-memberEmail__img img {
    aspect-ratio: 312/285;
  }
}

/* 寺院・墓地一覧ページ
***************************************************************/
.p-temples {
  padding-block: 6rem 7rem;
  background: #F1EEE9;
}
@media screen and (max-width: 767px) {
  .p-temples {
    padding-block: 5rem 4.6rem;
  }
}

.p-temples__inner {
  width: 112rem;
  margin-inline: auto;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-temples__inner.l-inner {
    padding-inline: 1.6rem;
  }
}

.p-temples__area {
  margin-top: 5rem;
  width: 60rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-temples__area {
    margin-top: 3rem;
  }
}

.p-temples__area-category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-temples__area-category {
    gap: 1.4rem;
  }
}
.p-temples__area-category > li > a {
  background-color: #F8F8F8;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.07em;
  font-weight: 600;
  color: #22201F;
  padding: 1.3rem 3.1rem;
  border: 1px solid #22201F;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-temples__area-category > li > a {
    font-size: 1.6rem;
    letter-spacing: 0em;
    padding: 1rem 1.4rem;
  }
}
.p-temples__area-category > li > a.is-current {
  color: #F8F8F8;
  background-color: #8B7266;
  border: 1px solid #8B7266;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-temples__area-category > li > a:hover {
    color: #F8F8F8;
    background-color: #8B7266;
    border: 1px solid #8B7266;
    transition: all 0.3s ease;
  }
}

.p-temples__container {
  margin-top: 7.7rem;
  display: flex;
  flex-direction: column;
  gap: 6.2rem;
}
@media screen and (max-width: 767px) {
  .p-temples__container {
    margin-top: 6.5rem;
    gap: 3.2rem;
  }
}

.p-temples__item {
  background: #F8F8F8;
  display: flex;
  gap: 0;
  scroll-margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-temples__item {
    flex-direction: column;
    scroll-margin-top: 12rem;
  }
}

.p-temples__item-img {
  width: 47.4038461538%;
  flex-shrink: 0;
  max-width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-temples__item-img {
    width: 100%;
  }
}
.p-temples__item-img img {
  aspect-ratio: 493/259;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-temples__item-body {
  flex: 1;
  padding: 4.4rem 3rem 4.4rem 4.4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-temples__item-body {
    width: 100%;
    padding: 2.3rem 1.6rem;
    gap: 1.8rem;
  }
}

.p-temples__item-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.p-temples__item-fav {
  position: relative;
  margin-top: -0.5rem;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .p-temples__item-fav {
    width: 2.4rem;
    height: 2.4rem;
    margin-top: 0rem;
  }
}
.p-temples__item-fav .simplefavorite-button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  line-height: 1;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
  color: transparent;
  font-size: 0;
}
.p-temples__item-fav .simplefavorite-button::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2322201F' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
}
.p-temples__item-fav .simplefavorite-button.active {
  opacity: 1 !important;
}
.p-temples__item-fav .simplefavorite-button.active::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%2322201F' stroke='%2322201F' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
}
@media (any-hover: hover) {
  .p-temples__item-fav .simplefavorite-button:hover {
    transform: scale(1.15);
  }
}

.p-temples__item-title {
  font-size: 2.3rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-temples__item-title {
    font-size: 1.7rem;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .p-temples__item-title .temple-areas {
    display: block;
    translate: -0.6rem 0;
  }
}

.p-temples__item-detail,
.p-temples__item-report,
.p-temples__item-access {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-temples__item-detail,
  .p-temples__item-report,
  .p-temples__item-access {
    font-size: 1.5rem;
    letter-spacing: 0.03em;
  }
}

.p-temples__item-access {
  color: #8B7266;
}

/* お問い合わせページ
***************************************************************/
.p-contact {
  background: #F1EEE9;
  padding-block: 8rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 5rem 6.1rem;
  }
}

.p-contact__inner {
  width: 92rem;
  margin-inline: auto;
  max-width: 100%;
}

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

/* サンクスページ用スタイル
***************************************************************/
.p-thanks h2 {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-thanks h2 {
    font-size: 2rem;
  }
}
.p-thanks p {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
.p-thanks p:first-of-type {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-thanks p {
    letter-spacing: 0.04em;
  }
}

.p-thanks__container {
  display: grid;
  place-content: center;
  text-align: center;
  min-height: 60rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__container {
    min-height: 60rem;
  }
}

.p-thanks__link {
  margin-top: 8rem;
}

/* カスタムページ用デフォルトスタイル
***************************************************************/
.p-custom {
  background: #F1EEE9;
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-custom {
    padding-block: 6rem;
  }
}

.p-custom__inner {
  width: 89.3rem;
  margin-inline: auto;
  max-width: 100%;
}

.p-custom__body h2 {
  font-size: 2.5rem;
  margin-top: 3em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-custom__body h2 {
    font-size: 1.8rem;
  }
}
.p-custom__body h2 + p {
  margin-top: 2em;
}
.p-custom__body h3 {
  font-size: 2rem;
  margin-top: 2em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-custom__body h3 {
    font-size: 1.6rem;
  }
}
.p-custom__body h3 + p {
  margin-top: 1.5em;
}
.p-custom__body p {
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-custom__body p {
    letter-spacing: 0.04em;
    font-size: 1.4rem;
  }
}
.p-custom__body p + p {
  margin-top: 1.5em;
}
.p-custom__body ul {
  margin-left: 1em;
  margin-bottom: 2em;
}
.p-custom__body ul li {
  list-style: disc;
}
.p-custom__body ol {
  margin-left: 1em;
  margin-bottom: 2em;
}
.p-custom__body ol li {
  list-style: decimal;
}
.p-custom__body li {
  margin-bottom: 0.7em;
}
.p-custom__body > * + * {
  margin-top: 1.5em;
}
.p-custom__body > * + h2 {
  margin-top: 4em;
}
.p-custom__body td {
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-custom__body td {
    font-size: 1.4rem;
    letter-spacing: 0.04em;
  }
}
.p-custom__body .is-style-layout-35-65 th:first-child,
.p-custom__body .is-style-layout-35-65 td:first-child {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .p-custom__body .is-style-layout-35-65 th:first-child,
  .p-custom__body .is-style-layout-35-65 td:first-child {
    width: 40%;
  }
}

/* ディスプレイ表示切り替え
***************************************************************/
@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-hidden {
  display: none !important;
}

/* テキスト装飾
***************************************************************/
.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-uppercase {
  text-transform: uppercase !important;
}

/* 余白（margin）
***************************************************************/
.u-mt20 {
  margin-top: 2rem;
}
/*# sourceMappingURL=style.css.map */
