@charset "UTF-8";



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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 16px;
}

button {
  color: #000;
}

/************************************************************************
* layout
************************************************************************/
body.fadeIn {
  opacity: 0;
}

.body_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  width: 100%;
  max-width: 750px;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/

/************************************************************************
* end base
************************************************************************/

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: auto;
}

form button[type=submit]:hover, form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover, textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .625em;
  content: '';
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: .4em 2.4em .4em .8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

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

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 102px;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  background-color: #AFA688;
}

.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00240F;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 10px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: #00240F;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #000;
}

#toc_container .toc_list li::before {
  display: none;
  color: #00240F;
}

#toc_container .toc_list li + li {
  margin-top: .5em;
}

#toc_container .toc_list a {
  color: #000;
}

.l-concern {
  margin-top: 106px;
  margin-top: 6.625rem;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-cta.js-cta {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
}

.l-cta.is-stopped {
  position: absolute;
  right: 0;
  bottom: auto;
  left: 0;
}

.l-fv__inner {
  height: 100%;
  text-align: center;
}

.l-fv__inner--funeral {
  margin-bottom: 7px;
  margin-bottom: .4375rem;
  padding-top: 27px;
  padding-top: 1.6875rem;
}

.l-fv__inner--memorial {
  padding-top: 34px;
  padding-top: 2.125rem;
}

.l-header {
  width: 100%;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: prop;
  transition-property: prop;
  margin: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #00240F;
  background-image: none;
  padding: 1em 2em;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: #fff;
  color: #00240F;
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {

  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: '';
}

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #00240F;
  background-color: #00240F;
  color: #fff;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .7s;
}

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: '\f061';
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover, .c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: hsl(145, 100%, -2.9411764706%);
  background-color: #00240F;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #00240F;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #00240F;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #00240F;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.c-commonCta__button {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 1rem;
  padding: 21px 36px;
  padding: 1.3125rem 2.25rem;
  max-width: 672px;
  max-width: 42rem;
  color: #fff;
  text-align: left;
}

.c-commonCta__button--orange {
  --press-depth: rem(13);
  --press-depth: rem(13);
  -webkit-box-shadow: 0 .8125rem 0 0 #A83001;
  box-shadow: 0 .8125rem 0 0 #A83001;
  background: linear-gradient(359.64deg, #FF5F20 .31%, #F69400 75.77%);
}

.c-commonCta__button--green {
  --press-depth: rem(13);
  --press-depth: rem(13);
  -webkit-box-shadow: 0 .8125rem 0 0 #00583A;
  box-shadow: 0 .8125rem 0 0 #00583A;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-.08%, #007E34), color-stop(70.02%, #27D977));
  background: linear-gradient(0deg, #007E34 -.08%, #27D977 70.02%);
}

.c-commonCta__button--darkOrange {
  --press-depth: rem(13);
  --press-depth: rem(13);
  -webkit-box-shadow: 0 .8125rem 0 0 #A83001;
  box-shadow: 0 .8125rem 0 0 #A83001;
  background: linear-gradient(359.64deg, #FA371A .31%, #E96D00 75.77%);
  padding: 21px 32px;
  padding: 1.3125rem 2rem;
}

.c-commonCta__icon img {
  width: 93px;
  width: 5.8125rem;
  height: auto;
}

.c-commonCta__text {
  display: inline-block;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: left;
}

.p-memorialCta__text-big {
  font-size: 48px;
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 1;
}

.p-memorialCta__text-normal {
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1;
}

.p-memorialCta__text-small {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.p-memorialCta__text-num {
  font-family: 'Roboto', sans-serif;
}

.c-commonCta__button--orange .c-commonCta__text {
  padding-left: 48px;
  padding-left: 3rem;
}

.c-commonCta__button--green .c-commonCta__text {
  padding-left: 17px;
  padding-left: 1.0625rem;
}

.c-commonCta__button--darkOrange .c-commonCta__text {
  padding-left: 40px;
  padding-left: 2.5rem;
  font-size: 28px;
  font-size: 1.75rem;
}

.c-cta__button {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1rem;
  padding: 11px 20px 16px 16px;
  padding: .6875rem 1.25rem 1rem 1rem;
  color: #fff;
  text-align: left;
}

.c-cta__button--orange {
  --press-depth: rem(11);
  --press-depth: rem(11);
  -webkit-box-shadow: 0 .6875rem 0 0 #A83001;
  box-shadow: 0 .6875rem 0 0 #A83001;
  background: linear-gradient(359.64deg, #FF5F20 .31%, #F69400 75.77%);
}

.c-cta__button--green {
  --press-depth: rem(11);
  --press-depth: rem(11);
  -webkit-box-shadow: 0 .6875rem 0 0 #00583A;
  box-shadow: 0 .6875rem 0 0 #00583A;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-.08%, #007E34), color-stop(70.02%, #27D977));
  background: linear-gradient(0deg, #007E34 -.08%, #27D977 70.02%);
}

.c-cta__icon img {
  width: 75px;
  width: 4.6875rem;
  height: auto;
}

.c-cta__text {
  display: inline-block;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.2;
}

/* 電話ボタン本体 */
.c-header-tel__button {
  --press-depth: rem(4);
  --press-depth: rem(4);
  display: inline-block;
  position: relative;
  -webkit-box-shadow: 0 .25rem 0 0 #A83001;
  box-shadow: 0 .25rem 0 0 #A83001;
  border-radius: .3125rem;
  background: linear-gradient(359.64deg, #F53022 .31%, #F79C13 75.77%);
  padding: 8px 16px;
  padding: .5rem 1rem;
  width: 100%;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
}

/* テキスト：緊急対応のラベル */
.c-header-tel__label {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4;
  text-align: center;
}

/* 緊急マーク */
.c-header-tel__label strong {
  border-radius: .1875rem;
  background: #fff;
  padding: 0 4px 0 5px;
  padding: 0 .25rem 0 .3125rem;
  color: #FF5F20;
  line-height: 1;
}

/* 電話番号部分 */
.c-header-tel__number {
  display: block;
  padding-top: 4px;
  padding-top: .25rem;
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: .07em;
  line-height: .8;
  text-align: center;
}

.c-line {
  display: inline-block;
  position: relative;
  padding: 0 47px;
  padding: 0 2.9375rem;
}

.c-line::before, .c-line::after {
  position: absolute;
  top: 13%;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  background: currentColor;
  width: 55px;
  width: 3.4375rem;
  height: 3.58px;
  height: .22375rem;
  content: '';
}

.c-line::before {
  left: 0;
  -webkit-transform: rotate(55deg);
  transform: rotate(55deg);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.c-line::after {
  right: 0;
  -webkit-transform: rotate(-55deg);
  transform: rotate(-55deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.c-sectionTitle__main, .c-sectionTitle__main--black {
  color: #0B875C;
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4;
  text-align: center;
}

.c-sectionTitle__main--black {
  color: #000;
}

.c-sectionTitle__number {
  font-family: 'Roboto', sans-serif;
  font-size: 90px;
  font-size: 5.625rem;
  letter-spacing: .05em;
  line-height: 1;
}

.c-sectionTitle__border {
  border-bottom: 4px solid #D5EBE4;
  border-bottom: .25rem solid #D5EBE4;
  padding-bottom: 15px;
  padding-bottom: .9375rem;
}

.c-sectionTitle__sub {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-align: center;
}

.c-sectionTitle__sub {
  display: inline-block;
  position: relative;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-align: center;
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  background-color: #0B875C;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-totop.is-active {
  visibility: visible;
  opacity: .7;
}

.c-totop.is-active:hover, .c-totop.is-active:focus {
  opacity: 1;
}

.p-article__date + .p-article__date {
  margin-left: 20px;
}

.p-article__label {
  margin-left: 20px;
}

.p-article__title {
  margin-top: 31px;
  font-size: 20px;
  line-height: 1.5;
}

.p-article__eyecatch {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-align: center;
}

.p-article__body {
  margin-top: 16px;
  border-top: 1px solid #e7e0db;
  border-bottom: 1px solid #e7e0db;
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 15px;
  line-height: 2;
}

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.5;
}

.p-article__body h1 {
  font-size: 32px;
  font-size: 2rem;
}

.p-article__body h2 {
  background-color: #000;
  padding: .3em .4em;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  border-left: 5px solid #000;
  padding-left: .5em;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-article__body h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-article__body h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-article__body .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-article__body .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  content: 'ー';
}

.p-article__body ul {
  list-style: none;
}

.p-article__body ul li {
  position: relative;
  padding-left: 1em;
}

.p-article__body ul li::before {
  position: absolute;
  left: 0;
  content: '・';
}

.p-article__body table {
  border: none;
  width: 100%;
}

.p-article__body table th,
.p-article__body table td {
  vertical-align: middle;
  border: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid #000;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.p-article__body * + * {
  margin-top: 25px;
}

.p-article__body *:first-child {
  margin-top: 0;
}

.p-article__body .wp-block-spacer, .p-article__body .wp-block-spacer + * {
  margin-top: 0;
}

.p-article__body p {
  font-weight: 400;
}

.p-article__body ul,
.p-article__body ol {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  margin-left: 10px;
  margin-left: .625rem;
}

.p-article__body ul ul,
.p-article__body ul ol,
.p-article__body ol ul,
.p-article__body ol ol {
  margin-top: 15px;
  margin-top: .9375rem;
  margin-left: 0;
}

.p-article__body ul li,
.p-article__body ol li {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
}

.p-article__body ol {
  padding-left: 1.25em;
}

.p-article__body ol > li:not([class]) {
  list-style: decimal;
}

.p-article__body ol > li:not([class])::marker {
  color: #00240F;
  font-weight: 700;
}

.p-article__body li:not([class]) + li {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-article__body a:not([class]) {
  color: #00240F;
  text-decoration: underline;
}

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body strong,
.p-article__body b {
  font-weight: 700;
}

.p-article__body blockquote,
.p-article__body q {
  position: relative;
  background-color: #F8F8F8;
  padding: 1em 4em;
}

.p-article__body blockquote::before, .p-article__body blockquote::after,
.p-article__body q::before,
.p-article__body q::after {
  position: absolute;
  color: #b2b2b2;
  font: var(--fa-font-solid);
  font-size: 2em;
  font-weight: 900;
}

.p-article__body blockquote::before,
.p-article__body q::before {
  top: 0;
  left: .5em;
  content: '\f10d';
}

.p-article__body blockquote::after,
.p-article__body q::after {
  right: .5em;
  bottom: 0;
  content: '\f10e';
}

.p-article__body q {
  display: inline-block;
}

.p-article__body dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-article__body dt,
.p-article__body dd {
  border-top: 1px solid #e7e0db;
  padding: 20px 10px;
  padding: 1.25rem .625rem;
}

.p-article__body dt:last-of-type,
.p-article__body dd:last-of-type {
  border-bottom: 1px solid #e7e0db;
}

.p-article__body dt {
  width: 33%;
  font-weight: 700;
}

.p-article__body dd {
  width: 67%;
}

.p-article__body pre {
  overflow: auto;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  white-space: pre;
}

.p-article__body .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-article__body .alignleft {
  float: left;
  margin-right: 1em;
}

.p-article__body .alignright {
  float: right;
  margin-left: 1em;
}

.p-article__body .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__body .gallery-columns-4 {
  gap: 20px;
}

.p-article__body .gallery-columns-4 > .gallery-item {
  width: calc((100% - 60px) / 4);
}

.p-article__body .gallery-item {
  margin-top: 0;
}

.p-article__body .gallery-icon {
  text-align: center;
}

.p-article__links {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #00240F;
  width: 2em;
  height: 2em;
  color: #00240F;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}

.p-article__links .post-page-numbers {
  text-decoration: none;
}

.post-page-numbers + .post-page-numbers {
  margin-left: 10px;
}

.post-page-numbers.current {
  background-color: #00240F;
  color: #fff;
}

.post-page-numbers.dots {
  border: none;
}

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

.p-concern__intro-text {
  position: relative;
  padding: 43px 20px 44px 20px;
  padding: 2.6875rem 1.25rem 2.75rem 1.25rem;
  overflow: visible;
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.6;
  text-align: center;
}

.p-concern__intro-text::after {
  position: absolute;
  bottom: -85px;
  bottom: -5.3125rem;
  left: 0;
  z-index: 0;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 100%;
  height: 86px;
  height: 5.375rem;
  content: '';
}

.p-concern__intro-text--green {
  background: #0B875C;
}

.p-concern__intro-text--green::after {
  background: -webkit-gradient(linear, left top, left bottom, from(#0B875C), color-stop(98.82%, #B4F3DD));
  background: linear-gradient(180deg, #0B875C 0%, #B4F3DD 98.82%);
}

.p-concern__intro-text--orange {
  background: #F98523;
}

.p-concern__intro-text--orange::after {
  background: -webkit-gradient(linear, left top, left bottom, from(#F98523), color-stop(98.82%, #F4C094));
  background: linear-gradient(180deg, #F98523 0%, #F4C094 98.82%);
}

.p-concern__intro-big {
  font-size: 45px;
  font-size: 2.8125rem;
  line-height: 1.5;
}

.p-concern__intro-yellow {
  color: #FFFA65;
}

.p-concern__line-yellow {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(40%, #FFE955));
  background: linear-gradient(transparent 80%, #FFE955 40%);
  letter-spacing: .04em;
}

.p-concern__lead {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-concern__lead-label {
  display: inline-block;
  border-radius: 62.4375rem;
  padding: 1px 147px 3px 140px;
  padding: .0625rem 9.1875rem .1875rem 8.75rem;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.6;
}

.p-concern__lead-label--orange {
  background: #F98523;
}

.p-concern__lead-label--black {
  background: #00240F;
}

.p-concern__lead-headline {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.6;
}

.p-concern__lead-big {
  font-size: 52px;
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.2;
}

.p-concern__lead-big--funeral {
  padding-right: 24px;
  padding-right: 1.5rem;
}

.p-concern__list {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-concern__item {
  gap: 27px;
  gap: 1.6875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.p-concern__item-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 140px;
  width: 8.75rem;
  height: 140px;
  height: 8.75rem;
}

.p-concern__item-text {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-shadow: 0 .3125rem .625rem 0 rgba(42, 35, 6, .4);
  box-shadow: 0 .3125rem .625rem 0 rgba(42, 35, 6, .4);
  border-radius: 1rem;
  background: #0B875C;
  padding: 24px 36px 24px 36px;
  padding: 1.5rem 2.25rem 1.5rem 2.25rem;
  color: #fff;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.4;
}

.p-concern__item-text::before {
  position: absolute;
  top: 15px;
  top: .9375rem;
  left: -24px;
  left: -1.5rem;
  border-top: 17.5px solid transparent;
  border-top: 1.09375rem solid transparent;
  border-right: 41px solid #0B875C;
  border-right: 2.5625rem solid #0B875C;
  border-bottom: 17.5px solid transparent;
  border-bottom: 1.09375rem solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.p-concern__p-concern {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.6;
}

.p-concern__relief {
  position: relative;
  margin-top: 80px;
  margin-top: 5rem;
}

.p-concern__relief--funeral {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#FFECA7));
  background: linear-gradient(180deg, #FFF 0%, #FFECA7 100%);
}

.p-concern__relief--memorial {
  background-image: url(../img/common/memorial/concern_relief_back.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-concern__relief-label {
  display: inline-block;
  position: absolute;
  top: -50px;
  top: -3.125rem;
  border-radius: 999px;
  padding: 6px 72px 11px 66px;
  padding: .375rem 4.5rem .6875rem 4.125rem;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-concern__relief-label--orange {
  position: relative;
  background-color: #FFF6C3;
  color: #FF5F20;
}

.p-concern__relief-label--green {
  position: relative;
  z-index: 1;
  border: 5px solid #D6F4CF;
  border: .3125rem solid #D6F4CF;
  background: linear-gradient(317.18deg, #D6F4CF 6.95%, #FFFDE8 77.19%);
  overflow: hidden;
  color: #0B875C;
}

.p-concern__relief-label--green::before {
  inset: 0;
  position: absolute;
  opacity: .2;
  z-index: 0;
  background: url(../img/common/memorial/commonCta_back.webp) repeat center/20%;
  content: '';
}

.p-concern__relief-summary {
  margin-top: 13px;
  margin-top: .8125rem;
  color: #000;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-concern__relief-medium {
  -webkit-box-shadow: 0 0 2.625rem 0 rgba(255, 255, 255, .4705882353);
  box-shadow: 0 0 2.625rem 0 rgba(255, 255, 255, .4705882353);
  font-size: 48px;
  font-size: 3rem;
  letter-spacing: .15em;
  line-height: 0;
}

.p-concern__relief-number {
  font-family: 'Roboto', sans-serif;
  font-size: 90px;
  font-size: 5.625rem;
  letter-spacing: .05em;
}

.p-concern__relief-number--funeral {
  color: #FF5F20;
}

.p-concern__relief-number--memorial {
  color: #0B875C;
}

.p-concern__image {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.p-concern__image img {
  padding-right: 30px;
  padding-right: 1.875rem;
  width: 400px;
  width: 25rem;
  height: auto;
}

.p-contactForm {
  padding-top: 77px;
  padding-top: 4.8125rem;
  padding-bottom: 39px;
  padding-bottom: 2.4375rem;
}

.p-contactForm--funeral {
  background: #F7F7F7;
}

.p-contactForm--memorial {
  background-image: url(../img/common/memorial/hall_back.webp);
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
}

.p-contactForm__inner {
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-left: 40px;
  padding-left: 2.5rem;
}

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

.p-contactForm__form {
  gap: 36px;
  gap: 2.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 64px;
  margin-top: 4rem;
}

.p-contactForm__field {
  gap: 19px;
  gap: 1.1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-contactForm__field label {
  color: #000;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
}

.p-contactForm__required {
  margin-left: 17px;
  margin-left: 1.0625rem;
  color: #d93025;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1;
}

.p-contactForm__field input[type=text],
.p-contactForm__field input[type=email],
.p-contactForm__field input[type=tel],
.p-contactForm__field textarea {
  margin-top: 28px;
  margin-top: 1.75rem;
  border: 1.84px solid #185048;
  border: .115rem solid #185048;
  border-radius: .5625rem;
  padding: 11px 14px 17px;
  padding: .6875rem .875rem 1.0625rem;
  width: 100%;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 1.29;
  line-height: 1.6;
}

/* フォーカス時のスタイル */
.p-contactForm__field input[type=text]:focus,
.p-contactForm__field input[type=email]:focus,
.p-contactForm__field input[type=tel]:focus,
.p-contactForm__field textarea:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 .125rem rgba(0, 112, 60, .2);
  box-shadow: 0 0 0 .125rem rgba(0, 112, 60, .2);
  border-color: #00703c;
}

.p-contactForm__field textarea {
  height: 220px;
  height: 13.75rem;
  resize: vertical;
}

.p-contactForm__checkboxes .checkbox-contact {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-contactForm__checkboxes label {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background .3s;
  transition: background .3s;
  cursor: pointer;
  border: 1.5px solid #00240F;
  border: .09375rem solid #00240F;
  border-radius: .46875rem;
  background: #fff;
  padding: 14.5px;
  padding: .90625rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
}

.p-contactForm__checkboxes label:hover {
  background: #DFF6E1;
}

/* チェックされたラベル全体に背景をつける */
.p-contactForm__checkboxes label:has(input[type=checkbox]:checked) {
  background: #DFF6E1;
}

/* チェックボックス本体 */
.p-contactForm__checkboxes input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: auto;
}

/* チェックボックス + テキストラベル */
.p-contactForm__checkboxes input[type=checkbox] + .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  -webkit-transition: background .3s;
  transition: background .3s;
  cursor: pointer;
  border-radius: 8px;
  padding-left: 2em;
  line-height: 1.5;
}

/* チェックボックス未チェックでもホバーした時の背景 */
.p-contactForm__checkboxes input[type=checkbox] + .wpcf7-list-item-label:hover {
  background: #DFF6E1;
}

/* 外枠（四角） */
.p-contactForm__checkboxes input[type=checkbox] + .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1.51px solid #000;
  border: .094375rem solid #000;
  border-radius: .1875rem;
  width: 15px;
  width: .9375rem;
  height: 15px;
  height: .9375rem;
  content: '';
}

/* 中の丸（非表示） */
.p-contactForm__checkboxes input[type=checkbox] + .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 4px;
  left: .25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  border-radius: 50%;
  background-color: #3c7265;
  width: 7px;
  width: .4375rem;
  height: 7px;
  height: .4375rem;
  content: '';
}

/* チェックされたときに中の丸を表示 */
.p-contactForm__checkboxes input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.p-contactForm__checkboxes .checkbox-contact .wpcf7-list-item {
  margin: 0;
}

.p-contactForm__checkboxes label:has(input:checked) {
  background: #DFF6E1;
}

.p-contactForm__submit {
  margin-top: 14px;
  margin-top: .875rem;
  text-align: center;
}

.p-contactForm__submit form button[type=submit],
form input[type=submit],
form input[type=button] {
  display: inline-block;
  -webkit-transition: background .3s;
  transition: background .3s;
  cursor: pointer;
  border-radius: 8px;
  background: #0B875C;
  padding: 36.5px 147px;
  padding: 2.28125rem 9.1875rem;
  color: #fff;
  font-size: 33px;
  font-size: 2.0625rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-contactForm__submit form button[type=submit]:hover,
form input[type=submit]:hover,
form input[type=button]:hover {
  background: #00583A;
}

.p-contactForm__checkboxes input[type=checkbox] + .wpcf7-list-item-label {
  padding-left: 27px;
  padding-left: 1.6875rem;
}

.p-cta {
  position: relative;
  margin-top: 12px;
  margin-top: .75rem;
  margin-right: auto;
  margin-left: auto;
  background: rgba(255, 255, 255, .5);
  padding: 12px 0 31px;
  padding: .75rem 0 1.9375rem;
  width: 100%;
  max-width: 750px;
  text-align: center;
}

.p-cta__caption {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 3px solid #0B875C;
  border: .1875rem solid #0B875C;
  border-radius: 999px;
  background: #fff;
  padding: 10px 30px;
  padding: .625rem 1.875rem;
  color: #00240F;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.p-cta__text-green {
  color: #1fa152;
  font-weight: 700;
}

.p-cta__buttons {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  padding: 19px 17.5px;
  padding: 1.1875rem 1.09375rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #000;
  font-size: 8px;
  font-size: .5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

.p-drawer__icon.is-opened::after {
  content: 'CLOSE';
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 25px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 5px;
  background: #000;
  width: 100%;
  height: 3px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .25);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #fff;
  padding-top: var(--header-height, 102px);
  padding-bottom: var(--header-height, 102px);
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #000;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: .5em;
}

.p-drawer__navLink {
  display: block;
  padding-top: .5em;
  padding-bottom: .5em;
}

.p-faq {
  padding-top: 72px;
  padding-top: 4.5rem;
  padding-bottom: 123px;
  padding-bottom: 7.6875rem;
  text-align: center;
}

.p-faq__inner {
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  text-align: center;
}

.p-faq__item + .p-faq__item {
  border-top: 1.79px solid #3C4D69;
  border-top: .111875rem solid #3C4D69;
}

.p-faq__list {
  margin-top: 32px;
  margin-top: 2rem;
  border-top: 1.79px solid #3C4D69;
  border-top: .111875rem solid #3C4D69;
  border-bottom: 1.79px solid #3C4D69;
  border-bottom: .111875rem solid #3C4D69;
}

.p-faq__question {
  gap: 28px;
  gap: 1.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 54px 26.9px;
  padding: 3.375rem 1.68125rem;
  width: 100%;
  color: #071E40;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.3;
  text-align: left;
}

.p-faq__answer-text {
  padding: 0 26.9px 54px;
  padding: 0 1.68125rem 3.375rem;
  color: #071E40;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: left;
}

.js-faq-acc-answer {
  display: none;
}

.p-faq__label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #0B875C;
  width: 71.5px;
  width: 4.46875rem;
  height: 71.5px;
  height: 4.46875rem;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.57;
}

.p-faq__icon {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto;
  width: 42px;
  width: 2.625rem;
  height: 42px;
  height: 2.625rem;
}

.p-faq__icon::before,
.p-faq__icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
  border-radius: .125rem;
  background: #0B875C;
  width: 100%;
  height: 3px;
  height: .1875rem;
  content: '';
}

.p-faq__icon::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  opacity: 1;
}

.is-open .p-faq__icon::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}

.p-flow {
  padding-top: 84px;
  padding-top: 5.25rem;
  text-align: center;
}

.p-flow--funeral {
  padding-bottom: 95px;
  padding-bottom: 5.9375rem;
}

.p-flow__steps {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-flow__step {
  position: relative;
  border-radius: 1.25rem;
  background: #F7F7F7;
  padding: 50px 32px 45px;
  padding: 3.125rem 2rem 2.8125rem;
  overflow: visible;
  text-align: center;
}

.p-flow__step + .p-flow__step {
  margin-top: 68px;
  margin-top: 4.25rem;
}

.p-flow__step:not(:last-child)::after {
  position: absolute;
  bottom: -57px;
  bottom: -3.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
  transform: translateX(-50%) rotate(180deg);
  z-index: 1;
  -webkit-clip-path: polygon(50% 0%, 0% 70%, 100% 70%);
  clip-path: polygon(50% 0%, 0% 70%, 100% 70%);
  background: #0B5387;
  width: 64px;
  width: 4rem;
  height: 45px;
  height: 2.8125rem;
  content: '';
}

.p-flow__number {
  position: absolute;
  top: 20px;
  top: 1.25rem;
  left: 22px;
  left: 1.375rem;
  z-index: 1;
  color: #ddebe6;
  font-family: 'Roboto', sans-serif;
  font-size: 120px;
  font-size: 7.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}

.p-flow__image {
  position: relative;
  z-index: 2;
  text-align: center;
}

.p-flow__image img {
  padding-right: 20px;
  padding-right: 1.25rem;
  width: auto;
  height: 200px;
  height: 12.5rem;
}

.p-flow__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #1E9786;
  padding: 18px 38px;
  padding: 1.125rem 2.375rem;
  min-height: 120px;
  min-height: 7.5rem;
  color: #fff;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}

.p-flow__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 0 15px;
  padding: 0 .9375rem;
  color: #07201C;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.4;
  text-align: left;
}

.p-flow__text + .p-flow__text {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-footer {
  background-color: #00240F;
  padding-top: 104px;
  padding-top: 6.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  text-align: center;
}

.p-footer__logo {
  margin: 0 auto;
  width: 350px;
  width: 21.875rem;
  height: auto;
}

.p-footer__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-footer__logo img,
.p-footer__logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

/* 説明テキスト */
.p-footer__description {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
}

/* コピーライト */
.p-footer__copy {
  margin-top: 10px;
  margin-top: .625rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .05;
  line-height: 1.2;
  text-align: center;
}

.p-funeralCta__support {
  background-image: url(../img/common/funeral/commonCta_back.webp), linear-gradient(323.21deg, #D6F9BB 6.73%, #F8EBA3 68.81%);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}

.p-funeralCta__message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: #101C4A;
  padding: 26px 0 28px;
  padding: 1.625rem 0 1.75rem;
  color: #fff;
}

.p-funeralCta__message::after {
  position: absolute;
  bottom: -30px;
  bottom: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 46px solid #101C4A;
  border-top: 2.875rem solid #101C4A;
  border-right: 43.5px solid transparent;
  border-right: 2.71875rem solid transparent;
  border-left: 43.5px solid transparent;
  border-left: 2.71875rem solid transparent;
  content: '';
}

.p-funeralCta__lead {
  color: #fff;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.25;
  text-align: center;
}

.p-funeralCta__lead-yellow {
  color: #FFFA65;
}

.p-funeralCta__image-left {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 18px;
  margin-right: 1.125rem;
  width: 124px;
  width: 7.75rem;
  height: 152px;
  height: 9.5rem;
  overflow: hidden;
}

.p-funeralCta__image-right {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 13px;
  margin-left: .8125rem;
  width: 134px;
  width: 8.375rem;
  height: 157px;
  height: 9.8125rem;
  overflow: hidden;
}

.p-funeralCta__image-left img,
.p-funeralCta__image-right img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-funeralCta__caption {
  margin-top: 39px;
  margin-top: 2.4375rem;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.2;
  text-align: center;
}

.p-funeralCta__buttons {
  margin-top: 27px;
  margin-top: 1.6875rem;
  text-align: center;
}

.p-funeralCta__button + .p-funeralCta__button {
  margin-top: 33px;
  margin-top: 2.0625rem;
}

.p-funeralCta__note {
  gap: 25px;
  gap: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 55px;
  margin-top: 3.4375rem;
  padding: 0 26px;
  padding: 0 1.625rem;
}

.p-funeralCta__note-image {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 161px;
  width: 10.0625rem;
  height: auto;
}

.p-funeralCta__note-text {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.38;
  text-align: left;
}

.p-funeralPlan {
  margin-top: 88px;
  margin-top: 5.5rem;
}

.p-funeralPlan__heading {
  vertical-align: middle;
  color: #00240F;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: .9;
  text-align: center;
}

.p-funeralPlan__heading-border {
  border-bottom: 4px solid #D5EBE4;
  border-bottom: .25rem solid #D5EBE4;
  padding-bottom: 26px;
  padding-bottom: 1.625rem;
}

.p-funeralPlan__heading-big {
  font-family: 'Roboto', sans-serif;
  font-size: 90px;
  font-size: 5.625rem;
  letter-spacing: .05em;
}

.p-funeralPlan__heading-medium {
  font-size: 64px;
  font-size: 4rem;
  letter-spacing: .05em;
}

.p-funeralPlan__list {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-funeralPlanList__item {
  --c-main: #0B875C;
  --c-dark: #4D8B75;
  --c-light: #EBF5EC;
  --c-label: rgba(95, 176, 148, .17);
  position: relative;
  margin-right: 30px;
  margin-right: 1.875rem;
  -webkit-box-shadow: .625rem .625rem 0 0 var(--c-dark);
  box-shadow: .625rem .625rem 0 0 var(--c-dark);
  border-width: 3px 3px 3px 0;
  border-width: .1875rem .1875rem .1875rem 0;
  border-style: solid;
  border-color: var(--c-main);
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(34%, #fff), color-stop(34%, var(--c-light)), to(var(--c-light)));
  background: linear-gradient(to bottom, #fff 0%, #fff 34%, var(--c-light) 34%, var(--c-light) 100%);
  padding: 45px 21px 62px 44px;
  padding: 2.8125rem 1.3125rem 3.875rem 2.75rem;
  text-align: center;
}

.p-funeralPlanList__item + .p-funeralPlanList__item {
  margin-top: 44px;
  margin-top: 2.75rem;
}

.p-funeralPlanList__item--orange {
  --c-main: #F98523;
  --c-dark: #B76118;
  --c-light: #FAE9DA;
  --c-label: rgba(254, 167, 91, .17);
}

.p-funeralPlanList__item--blue {
  --c-main: #0B6287;
  --c-dark: #0C4E69;
  --c-light: #ECF9FF;
  --c-label: rgba(57, 178, 234, .17);
}

.p-funeralPlanList__title {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4;
}

.p-funeralPlanList__label {
  color: var(--c-label);
  font-family: 'Roboto', sans-serif;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

.p-funeralPlanList__contents {
  position: relative;
  margin-top: 31px;
  margin-top: 1.9375rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-funeralPlanList__lead {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 999px;
  background: var(--c-main);
  padding: 17px 44px 19px 51px;
  padding: 1.0625rem 2.75rem 1.1875rem 3.1875rem;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  text-align: center;
}

.p-funeralPlanList__image {
  position: relative;
  top: 39px;
  top: 2.4375rem;
  z-index: 1;
  margin-left: -44px;
  margin-left: -2.75rem;
}

.p-funeralPlanList__image img {
  display: block;
  width: 580px;
  width: 36.25rem;
  height: 350px;
  height: 21.875rem;
}

.p-funeralPlanList__tags {
  gap: 9px;
  gap: .5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: -5px;
  right: -.3125rem;
  bottom: -62px;
  bottom: -3.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
}

.p-funeralPlanList__tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 3px solid #fff;
  border: .1875rem solid #fff;
  border-radius: 999px;
  background: var(--c-main);
  padding: 13px 16px;
  padding: .8125rem 1rem;
  width: 265px;
  width: 16.5625rem;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: .6;
}

.p-funeralPlanList__tag::before {
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  margin-right: .625rem;
  border-radius: 50%;
  background-color: #fff;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  content: '';
}

.p-funeralPlanList__tag::after {
  -webkit-mask-image: url('../img/common/funeral/planList_cheack.webp');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 60%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  mask-image: url('../img/common/funeral/planList_cheack.webp');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 60%;
  background-color: var(--c-main);
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  content: '';
}

.p-funeralPlanList__tag-number {
  font-family: 'Roboto', sans-serif;
}

.p-funeralPlanList__price {
  padding-top: 36px;
  padding-top: 2.25rem;
  color: #00240F;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.4;
  text-align: center;
}

.p-funeralPlanList__price-red {
  margin-right: 6px;
  margin-right: .375rem;
  color: #E62E00;
  font-family: 'Roboto', sans-serif;
  font-size: 82px;
  font-size: 5.125rem;
  letter-spacing: .01em;
  line-height: 1.4;
}

.p-funeralPlanList__button {
  position: relative;
  margin-top: 14px;
  margin-top: .875rem;
}

.p-funeralPlanList__button--filled {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 3px solid var(--c-main);
  border: .1875rem solid var(--c-main);
  border-radius: 999px;
  background: #fff;
  padding: 16px 115px 20px 45px;
  padding: 1rem 7.1875rem 1.25rem 2.8125rem;
  color: var(--c-main);
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.p-funeralPlanList__button--filled::before {
  position: absolute;
  top: 50%;
  right: 50px;
  right: 3.125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 50%;
  background-color: var(--c-main);
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  content: '';
}

.p-funeralPlanList__button--filled::after {
  -webkit-mask-image: url('../img/common/planList_arrow.webp');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 60%;
  position: absolute;
  top: 50%;
  right: 50px;
  right: 3.125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  mask-image: url('../img/common/planList_arrow.webp');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 60%;
  background-color: #fff;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  content: '';
}

.p-funeralPlanList__button--filled:hover {
  border: 3px solid #fff;
  border: .1875rem solid #fff;
  background: var(--c-main);
  color: #fff;
}

.p-funeralPlanList__button--filled:hover::before {
  background-color: #fff;
}

.p-funeralPlanList__button--filled:hover::after {
  background-color: var(--c-main);
}

.p-fv__back {
  position: relative;
  background-image: url(../img/common/memorial/fv_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 599px;
  height: 37.4375rem;
}

.p-fv__label {
  display: inline-block;
  position: relative;
  border-radius: 9999px;
  background: #0B875C;
  padding: 11px 41.5px 11px 44.5px;
  padding: .6875rem 2.59375rem .6875rem 2.78125rem;
}

.p-fv__label::after {
  position: absolute;
  bottom: -20px;
  bottom: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 32px solid #0B875C;
  border-top: 2rem solid #0B875C;
  border-right: 20px solid transparent;
  border-right: 1.25rem solid transparent;
  border-left: 20px solid transparent;
  border-left: 1.25rem solid transparent;
  content: '';
}

.p-fv__label-text {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.4;
}

.p-fv__heading {
  font-weight: 700;
}

.p-fv__heading--funeral {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-fv__heading--memorial {
  text-shadow: 0 0 18px #fff;
  text-shadow: 0 0 1.125rem #fff;
}

.p-fv__text-green {
  color: #0B875C;
}

.p-fv__text-f-normal {
  font-size: 50px;
  font-size: 3.125rem;
  letter-spacing: .05em;
  line-height: 1.15;
}

.p-fv__text-f-big {
  font-size: 74px;
  font-size: 4.625rem;
  letter-spacing: .05em;
  line-height: 1.15;
}

.p-fv__text-m-mini {
  font-size: 34px;
  font-size: 2.125rem;
  letter-spacing: .03em;
  line-height: 1.3;
}

.p-fv__text-m-small {
  font-size: 46px;
  font-size: 2.875rem;
  letter-spacing: .03em;
  line-height: 1.3;
}

.p-fv__text-m-normal {
  font-size: 52px;
  font-size: 3.25rem;
  letter-spacing: .03em;
  line-height: 1;
}

.p-fv__text-m-medium {
  font-size: 56px;
  font-size: 3.5rem;
  letter-spacing: .03em;
  line-height: 1.5;
}

.p-fv__text-m-big {
  font-size: 72px;
  font-size: 4.5rem;
  letter-spacing: .03em;
  line-height: 1.5;
}

.p-fv__text-m-max {
  font-size: 80px;
  font-size: 5rem;
  letter-spacing: .03em;
  line-height: 1.5;
}

.p-fv__sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.35;
}

.p-fv__text-circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(-.3em);
  transform: translateY(-.3em);
  -webkit-box-shadow: 0 .603125rem 1.81rem 0 rgba(52, 31, 9, .1019607843);
  box-shadow: 0 .603125rem 1.81rem 0 rgba(52, 31, 9, .1019607843);
  border-radius: 50%;
  background: linear-gradient(359.64deg, #F53022 .31%, #F79C13 75.77%);
  padding: 3px;
  padding: .1875rem;
  width: 78px;
  width: 4.875rem;
  height: 78px;
  height: 4.875rem;
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0;
  text-align: center;
}

.p-fv__text-orange {
  color: #FF5F20;
  font-family: 'Roboto', sans-serif;
  font-size: 69px;
  font-size: 4.3125rem;
  letter-spacing: 0;
}

.p-fv__text-normal {
  font-size: 42px;
  font-size: 2.625rem;
  letter-spacing: 0;
}

.p-fv__image--funeral {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: auto;
}

.p-fv__image-person {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.p-fv__image-person img {
  width: 242px;
  width: 15.125rem;
  height: 379px;
  height: 23.6875rem;
}

.p-fv__image-back {
  margin-left: auto;
  width: 641px;
  width: 40.0625rem;
  height: 379px;
  height: 23.6875rem;
}

.p-fv__image-back img {
  display: block;
  opacity: .9;
  width: 100%;
  height: auto;
}

.p-fv__image-badges {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
}

.p-fv__image-badges--funeral {
  top: -12px;
  top: -.75rem;
  right: 16px;
  right: 1rem;
}

.p-fv__image-badges--memorial {
  right: 64px;
  right: 4rem;
  bottom: 20px;
  bottom: 1.25rem;
}

.p-fv__image-badge img {
  width: 196px;
  width: 12.25rem;
  height: 180px;
  height: 11.25rem;
}

.p-hall {
  background: #FFFFF9;
  padding-top: 78px;
  padding-top: 4.875rem;
  padding-bottom: 83px;
  padding-bottom: 5.1875rem;
}

.p-hall--funeral {
  background: #FFFFF9;
}

.p-hall--memorial {
  background-image: url(../img/common/memorial/hall_back.webp);
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
}

.p-hall__heading {
  font-weight: 700;
  text-align: center;
}

.p-hall__slider {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.p-hall__accordion {
  margin-top: 47px;
  margin-top: 2.9375rem;
}

.p-hall__map {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.p-hall__map-iframe {
  aspect-ratio: 630/380;
  width: 100%;
}

.p-hall__map-iframe iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-hall__map-contents {
  margin-top: 32px;
  margin-top: 2rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  text-align: left;
}

.p-hall__map-title {
  color: #0B875C;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
}

.p-hall__map-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-hall__map-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-hall__map-tell a {
  color: #00240F;
}

.p-hall__map-image {
  aspect-ratio: 280/190;
  width: 280px;
  width: 17.5rem;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-hall__note {
  margin-top: 64px;
  margin-top: 4rem;
  border: 5px solid #F9D876;
  border: .3125rem solid #F9D876;
  border-radius: 1.25rem;
  background-color: #fff;
  padding: 39px 24px 48px;
  padding: 2.4375rem 1.5rem 3rem;
  text-align: center;
}

.p-hall__note--memorial {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-hall__note-title {
  display: inline-block;
  padding-bottom: 12px;
  padding-bottom: .75rem;
  color: #00240F;
  font-size: 41px;
  font-size: 2.5625rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.3;
}

.p-hall__note-title--funeral {
  margin-left: 53px;
  margin-left: 3.3125rem;
  border-bottom: 5px solid #F9D876;
  border-bottom: .3125rem solid #F9D876;
}

.p-hall__note-title--memorial {
  border-bottom: 5px solid #0B875C;
  border-bottom: .3125rem solid #0B875C;
}

.p-hall__note-medium {
  font-size: 45.5px;
  font-size: 2.84375rem;
}

.p-hall__note-big {
  color: #0B875C;
  font-size: 56px;
  font-size: 3.5rem;
}

.p-hall__note-text {
  margin-top: 33px;
  margin-top: 2.0625rem;
  color: #000;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.3;
}

.p-hall__note-text + .p-hall__note-text {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-hall__note-text--memorial + .p-hall__note-text--memorial {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-hall__note-button {
  margin-top: 33px;
  margin-top: 2.0625rem;
}

.p-hall__note-button a {
  display: inline-block;
  position: relative;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  border-radius: 999px;
  background-color: #F9D876;
  padding: 16.5px 117px 16.5px 62.5px;
  padding: 1.03125rem 7.3125rem 1.03125rem 3.90625rem;
  overflow: hidden;
  color: #000;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}

.p-hall__note-button a::before {
  position: absolute;
  top: 50%;
  right: 64px;
  right: 4rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  border-radius: 50%;
  background-color: #fff;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  content: '';
}

.p-hall__note-button a::after {
  -webkit-mask-image: url('../img/common/planList_arrow.webp');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 60%;
  position: absolute;
  top: 50%;
  right: 64px;
  right: 4rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  mask-image: url('../img/common/planList_arrow.webp');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 60%;
  background-color: #000;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  content: '';
}

.p-hall__note-button a:hover {
  background-color: #f8c736;
  text-decoration: none;
}

/* ========== アコーディオン ========== */
.p-hallAccordion__list {
  border-top: 2px solid #A5A5A5;
  border-top: .125rem solid #A5A5A5;
  border-bottom: 2px solid #A5A5A5;
  border-bottom: .125rem solid #A5A5A5;
}

.p-hallAccordion__item + .p-hallAccordion__item {
  border-top: 2px solid #A5A5A5;
  border-top: .125rem solid #A5A5A5;
}

.p-hallAccordion__item-toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  padding: 30px 0;
  padding: 1.875rem 0;
  width: 100%;
  color: #0B875C;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
}

.p-hallAccordion__icon {
  position: relative;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

.p-hallAccordion__icon::before,
.p-hallAccordion__icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
  background: #0B875C;
  width: 100%;
  height: 3.27px;
  height: .204375rem;
  content: '';
}

.p-hallAccordion__icon::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  opacity: 1;
}

.is-open .p-hallAccordion__icon::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}

.p-hallAccordion__item-content {
  padding: 0 14px 46px 20px;
  padding: 0 .875rem 2.875rem 1.25rem;
}

.js-hall-acc-content {
  display: none;
}

.p-hallAccordion__item-text,
.p-hallAccordion__item-text a {
  color: #00240F;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-hallAccordion__item-text + .p-hallAccordion__item-text {
  margin-top: 50px;
  margin-top: 3.125rem;
}

/* ========== スライダー ========== */
.p-hallSlider {
  height: 180.774px;
  height: 11.2983980179rem;
  overflow: hidden;
}

.p-hallSlider__slide img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-header {
  padding-top: 14px;
  padding-top: .875rem;
  padding-bottom: 14px;
  padding-bottom: .875rem;
}

.p-header--funeral {
  background-color: #00240F;
}

.p-header--memorial {
  background-color: transparent;
}

.p-header__inner {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-header__logo {
  width: 240px;
  width: 15rem;
  height: auto;
}

.p-header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-memorialCta__message {
  position: relative;
  opacity: 1;
  z-index: 3;
  background: url(../img/common/memorial/commonCta_massage.webp) no-repeat right/contain, #F98523;
  background-blend-mode: darken;
  color: #fff;
}

.p-memorialCta__message::after {
  position: absolute;
  bottom: -30px;
  bottom: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  border-top: 46px solid #F98523;
  border-top: 2.875rem solid #F98523;
  border-right: 43.5px solid transparent;
  border-right: 2.71875rem solid transparent;
  border-left: 43.5px solid transparent;
  border-left: 2.71875rem solid transparent;
  content: '';
}

.p-memorialCta__image {
  position: absolute;
  bottom: 0;
  left: 41px;
  left: 2.5625rem;
  width: 197px;
  width: 12.3125rem;
  height: 190px;
  height: 11.875rem;
}

.p-memorialCta__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-memorialCta__lead {
  padding: 16px 0 24px 255px;
  padding: 1rem 0 1.5rem 15.9375rem;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: left;
}

.p-memorialCta__big {
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.5;
}

.p-memorialCta__note {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1;
  background: linear-gradient(321.59deg, #D6F4CF 0%, #FFFDE8 75.48%);
  padding: 48px 0;
  padding: 3rem 0;
  overflow: hidden;
  font-weight: 700;
  text-align: center;
}

.p-memorialCta__note::before {
  inset: 0;
  position: absolute;
  opacity: .2;
  z-index: 0;
  background: url(../img/common/memorial/commonCta_back.webp) repeat center/20%;
  content: '';
}

.p-memorialCta__caption {
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-memorialCta__button {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-memorialPlan {
  background-image: url(../img/common/memorial/plan_back.webp);
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
}

.p-memorialPlan__inner {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  text-align: center;
}

.p-memorialPlan__heading {
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  color: #00240F;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-memorialPlan__heading::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #0B875C;
  width: 106px;
  width: 6.625rem;
  height: 4px;
  height: .25rem;
  content: '';
}

.p-memorialPlan__heading-orange {
  color: #FF5F20;
}

.p-memorialPlan__heading-big {
  font-size: 56px;
  font-size: 3.5rem;
  line-height: 1.8;
}

.p-memorialPlan__text {
  margin-top: 48px;
  margin-top: 3rem;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-memorialPlan__list {
  margin-top: 65px;
  margin-top: 4.0625rem;
}

.p-memorialPlanList__item {
  --c-main: #0B875C;
  --c-sub: #0B875C1A;
  --c-light: #EBF5EC;
  position: relative;
  border: 3px solid var(--c-main);
  border: .1875rem solid var(--c-main);
  text-align: center;
}

.p-memorialPlanList__item + .p-memorialPlanList__item {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-memorialPlanList__item--orange {
  --c-main: #F98523;
  --c-sub: #F985231A;
  --c-light: #FAE9DA;
}

.p-memorialPlanList__item--blue {
  --c-main: #0B6287;
  --c-sub: #0B62871A;
  --c-light: #ECF9FF;
}

.p-memorialPlanList__badge {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -63px;
  top: -3.9375rem;
  left: 18px;
  left: 1.125rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  border-radius: 50%;
  width: 130px;
  width: 8.125rem;
  height: 130px;
  height: 8.125rem;
  overflow: hidden;
}

.p-memorialPlanList__badge-image img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-memorialPlanList__badge-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  color: linear-gradient(120deg, #787878 13.39%, #000 37.68%, #383838 50%, #0C0C0C 60.25%, #2E2E2E 78.55%, #404040 86.61%);
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.p-memorialPlanList__heading {
  position: relative;
  background: var(--c-light);
  padding: 10px 16px 24px;
  padding: .625rem 1rem 1.5rem;
}

.p-memorialPlanList__title {
  position: relative;
  z-index: 2;
  color: #00240F;
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.3;
}

.p-memorialPlanList__lead {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}

.p-memorialPlanList__label {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  color: var(--c-sub);
  font-family: 'Roboto', sans-serif;
  font-size: 152px;
  font-size: 9.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
}

.p-memorialPlanList__tags {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-memorialPlanList__tag {
  border-radius: 1.875rem;
  background: var(--c-main);
  padding: 2px 16px 4px;
  padding: .125rem 1rem .25rem;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-memorialPlanList__contents {
  gap: 32px;
  gap: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background: rgba(255, 255, 255, .3764705882);
  padding: 32px 24px 56px;
  padding: 2rem 1.5rem 3.5rem;
}

.p-memorialPlanList__sub-lead {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-memorialPlanList__triangle {
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
  margin: 0 .375rem;
  border-top: 12px solid #FF5F20;
  border-top: .75rem solid #FF5F20;
  border-right: 10px solid transparent;
  border-right: .625rem solid transparent;
  border-left: 10px solid transparent;
  border-left: .625rem solid transparent;
  width: 0;
  height: 0;
}

.p-memorialPlanList__highlight {
  margin-top: 12px;
  margin-top: .75rem;
  color: var(--c-main);
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-memorialPlanList__image {
  width: 100%;
  height: 100%;
  text-align: center;
}

.p-memorialPlanList__image img {
  width: 332px;
  width: 20.75rem;
  height: 208px;
  height: 13rem;
}

.p-memorialPlanList__service {
  background: var(--c-sub);
  padding: 24px 32px 32px;
  padding: 1.5rem 2rem 2rem;
}

.p-memorialPlanList__service-heading {
  display: inline-block;
  position: relative;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.3;
}

.p-memorialPlanList__service-heading::before,
.p-memorialPlanList__service-heading::after {
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px;
  margin: 0 .75rem;
  background-color: var(--c-main);
  width: 32px;
  width: 2rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-memorialPlanList__service-list {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-memorialPlanList__service-item {
  position: relative;
  padding-left: 18px;
  padding-left: 1.125rem;
  color: #00240F;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.45;
  text-align: left;
}

.p-memorialPlanList__service-item--note {
  padding-left: 22px;
  padding-left: 1.375rem;
  color: #5A5A5A;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: left;
}

.p-memorialPlanList__service-item::before {
  position: absolute;
  top: 13px;
  top: .8125rem;
  left: 0;
  border-radius: 50%;
  background-color: #00240F;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-memorialPlanList__menu-heading {
  background: var(--c-main);
  padding: 8px 16px;
  padding: .5rem 1rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.3;
}

.p-memorialPlanList__menu-box {
  background: var(--c-sub);
  padding: 24px 24px 32px 24px;
  padding: 1.5rem 1.5rem 2rem 1.5rem;
}

.p-memorialPlanList__menu-list {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-memorialPlanList__menu-item {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-memorialPlanList__menu-itemTitle {
  color: #000;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-memorialPlanList__menu-itemButton {
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding-right: 36px;
  padding-right: 2.25rem;
  color: #00240F;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}

.p-memorialPlanList__menu-itemButton::before {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 50%;
  background-color: var(--c-main);
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  content: '';
}

.p-memorialPlanList__menu-itemButton::after {
  -webkit-mask-image: url('../img/common/planList_arrow.webp');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 60%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  mask-image: url('../img/common/planList_arrow.webp');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 60%;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background-color: #fff;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  content: '';
}

.p-memorialPlanList__menu-itemButton:hover::before {
  -webkit-transform: translate(.25rem, -50%);
  transform: translate(.25rem, -50%);
  background-color: #fff;
}

.p-memorialPlanList__menu-itemButton:hover::after {
  -webkit-transform: translate(.25rem, -50%);
  transform: translate(.25rem, -50%);
  background-color: var(--c-main);
}

.p-memorialPlanList__menu-button a {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-top: 32px;
  margin-top: 2rem;
  border: 2px solid var(--c-main);
  border: .125rem solid var(--c-main);
  border-radius: 999px;
  background: #fff;
  padding: 19px 58px 19px 24px;
  padding: 1.1875rem 3.625rem 1.1875rem 1.5rem;
  color: var(--c-main);
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  text-align: center;
}

.p-memorialPlanList__menu-button a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 50%;
  background-color: var(--c-main);
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  content: '';
}

.p-memorialPlanList__menu-button a::after {
  -webkit-mask-image: url('../img/common/planList_arrow.webp');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 60%;
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  mask-image: url('../img/common/planList_arrow.webp');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 60%;
  background-color: #fff;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  content: '';
}

.p-memorialPlanList__menu-button a:hover {
  border: 2px solid #fff;
  border: .125rem solid #fff;
  background: var(--c-main);
  color: #fff;
}

.p-memorialPlanList__menu-button a:hover::before {
  background-color: #fff;
}

.p-memorialPlanList__menu-button a:hover::after {
  background-color: var(--c-main);
}

.p-memorialPlanList__button {
  position: relative;
}

.p-memorialPlanList__button--filled {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 3px solid var(--c-main);
  border: .1875rem solid var(--c-main);
  border-radius: 999px;
  background: var(--c-main);
  padding: 16px 115px 20px 45px;
  padding: 1rem 7.1875rem 1.25rem 2.8125rem;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.p-memorialPlanList__button--filled::before {
  position: absolute;
  top: 50%;
  right: 50px;
  right: 3.125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 50%;
  background-color: #fff;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  content: '';
}

.p-memorialPlanList__button--filled::after {
  -webkit-mask-image: url('../img/common/planList_arrow.webp');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 60%;
  position: absolute;
  top: 50%;
  right: 50px;
  right: 3.125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  mask-image: url('../img/common/planList_arrow.webp');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 60%;
  background-color: var(--c-main);
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  content: '';
}

.p-memorialPlanList__button--filled:hover {
  border: 3px solid var(--c-main);
  border: .1875rem solid var(--c-main);
  background: #fff;
  color: var(--c-main);
}

.p-memorialPlanList__button--filled:hover::before {
  background-color: var(--c-main);
}

.p-memorialPlanList__button--filled:hover::after {
  background-color: #fff;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #00240F;
  border: .0625rem solid #00240F;
  width: 2em;
  height: 2em;
  color: #00240F;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers + .page-numbers {
  margin-left: 10px;
  margin-left: .625rem;
}

.page-numbers.current {
  background-color: #00240F;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}

.p-pc-bg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: -9999;
  width: 100%;
  min-height: 100svh;
}

.p-pc-bg--funeral {
  background: url(../img/common/funeral/body_bg.webp) center/cover no-repeat;
}

.p-pc-bg--memorial {
  background: url(../img/common/memorial/body_bg.webp) center/cover no-repeat;
}

.p-reason {
  padding-top: 110px;
  padding-top: 6.875rem;
  padding-bottom: 103px;
  padding-bottom: 6.4375rem;
  text-align: center;
}

.p-reason__inner {
  margin: 0 auto;
}

.p-reason__heading-sub {
  color: #666;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.p-reason__heading-main {
  color: #0B875C;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
}

.p-reason__list {
  gap: 68px;
  gap: 4.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 110px;
  margin-top: 6.875rem;
}

.p-reason__item {
  position: relative;
  border: 1px solid #CACACA;
  border: .0625rem solid #CACACA;
  background: #fff;
}

.p-reason__item-header {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 3px solid #0B875C;
  border: .1875rem solid #0B875C;
  border-radius: 999px;
  background: #fff;
  padding: 20px 77px 19px 76px;
  padding: 1.25rem 4.8125rem 1.1875rem 4.75rem;
  color: #000;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  text-align: center;
}

.p-reason__item-headerNumber {
  font-family: 'Roboto', sans-serif;
}

.p-reason__item-title {
  background: #0B875C;
  padding: 53px 20px 24px;
  padding: 3.3125rem 1.25rem 1.5rem;
  color: #fff;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: 1.4;
}

.p-reason__item-titleNumber {
  font-family: 'Roboto', sans-serif;
}

.p-reason__item-content {
  padding: 20px 20px 30px;
  padding: 1.25rem 1.25rem 1.875rem;
}

.p-reason__item-image {
  width: 100%;
  height: auto;
}

.p-reason__item-textBox {
  margin-top: 20px;
  margin-top: 1.25rem;
  border-radius: .75rem;
  background-color: #EBF5EC;
  padding: 31px 46px;
  padding: 1.9375rem 2.875rem;
}

.p-reason__item-text {
  color: #000;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
}

.p-reason__item-text + .p-reason__item-text {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-reason__line-yellow {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, transparent), color-stop(45%, #FFE955));
  background: linear-gradient(transparent 45%, #FFE955 45%);
}

.p-staff {
  position: relative;
  background: #F9FFF4;
  padding: 50px 0 53px;
  padding: 3.125rem 0 3.3125rem;
  text-align: center;
}

.p-staff__label {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 3px solid #0B875C;
  border: .1875rem solid #0B875C;
  border-radius: 999px;
  background: #0B875C;
  padding: 7px 83px 13px;
  padding: .4375rem 5.1875rem .8125rem;
  white-space: nowrap;
}

.p-staff__label::after {
  position: absolute;
  bottom: -25px;
  bottom: -1.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 30px solid #0B875C;
  border-top: 1.875rem solid #0B875C;
  border-right: 15px solid transparent;
  border-right: .9375rem solid transparent;
  border-left: 15px solid transparent;
  border-left: .9375rem solid transparent;
  content: '';
}

.p-staff__label-text {
  color: #fff;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-staff__content {
  margin-top: 11px;
  margin-top: .6875rem;
}

.p-staff__main {
  position: relative;
  background-image: url(../img/common/funeral/staff_bg.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 410px;
  height: 25.625rem;
}

.p-staff__main-human {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 278px;
  width: 17.375rem;
  height: auto;
}

.p-staff__main-human img {
  width: 100%;
  height: auto;
}

.p-staff__main-badge {
  position: absolute;
  bottom: 18px;
  bottom: 1.125rem;
  left: 39px;
  left: 2.4375rem;
  width: 196px;
  width: 12.25rem;
  height: 196px;
  height: 12.25rem;
}

.p-staff__main-badge img {
  width: 100%;
  height: auto;
}

.p-staff__main-title {
  position: absolute;
  right: 0;
  bottom: -18px;
  bottom: -1.125rem;
  text-align: left;
}

.p-staff__main-titleText {
  background-color: rgba(0, 67, 44, .9411764706);
  padding: 5px 20px;
  padding: .3125rem 1.25rem;
  color: #fff;
  font-size: 43.5px;
  font-size: 2.71875rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.9;
}

.p-staff__main-textYellow {
  color: #F9D876;
}

.p-staff__note {
  margin-top: 56px;
  margin-top: 3.5rem;
  padding: 0 56px;
  padding: 0 3.5rem;
  text-align: left;
}

.p-staff__note-text {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.9;
}

.p-staff__note-text + .p-staff__note-text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-staff__note-textGreen {
  color: #0B875C;
  font-weight: 700;
}

.p-voice {
  background: #fff;
  padding: 28px 0 120px;
  padding: 1.75rem 0 7.5rem;
  text-align: center;
}

.p-voice__slider {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-voice__slider .swiper-wrapper {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* スライドカード */
.p-voiceSlide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 3.91px solid #D5EBE4;
  border: .244375rem solid #D5EBE4;
  border-radius: .625rem;
  background: #fff;
  padding: 23px 62px 60px 40px;
  padding: 1.4375rem 3.875rem 3.75rem 2.5rem;
  height: auto;
}

.p-voiceSlide__user {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-voiceSlide-image {
  width: 120px;
  width: 7.5rem;
  height: 120px;
  height: 7.5rem;
}

.p-voiceSlide-image img {
  width: 100%;
  height: auto;
}

.p-voiceSlide-user {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-voiceSlide-user p {
  border: 1px solid #CACACA;
  border: .0625rem solid #CACACA;
  padding: 0 5px;
  padding: 0 .3125rem;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-voiceSlide__comment {
  margin-top: 30px;
  margin-top: 1.875rem;
  letter-spacing: .05em;
  -moz-text-align-last: left;
  text-align-last: left;
}

.p-voiceSlide__title {
  color: #1D9576;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}

.p-voiceSlide__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

/* ページネーション */
.p-voice__pagination {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-voice__pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #6E6E6E;
  width: 14px;
  width: .875rem;
  height: 14px;
  height: .875rem;
}

.p-voice__pagination .swiper-pagination-bullet-active {
  background: #009A5C;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

/* 押し込みアニメーション */
.u-press {
  --press-depth: 4.8px;
  --press-depth: .3rem;
  -webkit-transition: -webkit-transform .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
  transition: transform .3s ease-in-out, box-shadow .3s ease-in-out, -webkit-transform .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.u-press:hover {
  -webkit-transform: translateY(var(--press-depth));
  transform: translateY(var(--press-depth));
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* 共通：光の流れるエフェクト */
.u-shiny {
  position: relative;
  overflow: hidden;
}

.u-shiny::after {
  position: absolute;
  top: 0;
  left: -200%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
  -webkit-animation: shiny-slide 5s ease-in-out infinite;
  animation: shiny-slide 5s ease-in-out infinite;
  background: linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .1) 10%, rgba(255, 255, 255, .7) 70%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
  width: 200%;
  height: 500%;
  pointer-events: none;
  content: '';
}

@-webkit-keyframes shiny-slide {

  0% {
    left: -200%;
  }

  10% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

@keyframes shiny-slide {

  0% {
    left: -200%;
  }

  10% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

@media screen and (min-width: 600px) {

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 768px) {

  html {
    font-size: 1.5094339623vw;
  }

  :root {
    --header-height: 102px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .l-container {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1140px;
  }

  .l-container.l-container--narrow {
    max-width: 928px;
  }

  .l-container.l-container--wide {
    max-width: 1352px;
  }

  .p-article__title {
    font-size: 24px;
  }

  .p-article__body {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 16px;
  }

  .p-article__body table th,
  .p-article__body table td {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-article__body table th {
    width: 153px;
    width: 9.5625rem;
  }

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 40px) / 3);
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .post-page-numbers + .post-page-numbers {
    margin-left: 20px;
  }

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media (min-width: 1060px) {

  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}

@media (max-width: 750px) {

  html {
    font-size: 2.1333333333vw;
  }
}
/*# sourceMappingURL=map/style.css.map */