@charset "UTF-8";
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
html,
body {
  font-size: 62.5% !important;
}

body .bg-right {
  width: 20vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
  background: linear-gradient(0deg, #986DB2 0%, #986DB2 100%), linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFF 100%), #F3F0E9;
  background-blend-mode: color, normal, normal;
  z-index: -1;
}
body .bg-right::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(/asset/img/common/pattern.png);
  background-size: contain;
  mix-blend-mode: lighten;
}
@media screen and (max-width: 767px) {
  body .bg-right {
    width: 16vw;
    min-width: 6rem;
  }
  body .bg-right::after {
    background-size: 250%;
  }
}
body .bg-left {
  width: 20vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background: linear-gradient(0deg, #986DB2 0%, #986DB2 100%), linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 100%), #F3F0E9;
  background-blend-mode: color, normal, normal;
  z-index: -1;
}
body .bg-left::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(/asset/img/common/pattern.png);
  background-size: contain;
  mix-blend-mode: lighten;
}
@media screen and (max-width: 767px) {
  body .bg-left {
    width: 16vw;
    min-width: 6rem;
  }
  body .bg-left::after {
    background-size: 250%;
  }
}
body {
  /* スクロールは有効にしたままバーを隠す */
  overflow-y: auto !important;
  /* Chrome, Safari, Edge, Opera用 */
}
body::-webkit-scrollbar {
  display: none !important;
}
body {
  /* Firefox用 */
  scrollbar-width: none !important;
  /* IE, Edge(旧)用 */
  -ms-overflow-style: none !important;
}
body.block {
  overflow: hidden !important;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
body.block::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  background: rgba(28, 28, 28, 0.5);
  z-index: 999;
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 4;
}

.logo {
  width: 24rem;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .logo {
    width: 20vw;
  }
}
@media screen and (max-width: 767px) {
  .logo {
    width: 18rem;
  }
}
@media screen and (max-width: 480px) {
  .logo {
    width: auto;
    max-width: 18rem;
    margin: 0 1rem 0 0;
  }
}

.float {
  width: 100vw;
  height: 8rem;
  background: #1C1C1C;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.float.move {
  transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.float.unmove {
  bottom: -100%;
  opacity: 0;
  transition: all 6s cubic-bezier(0.25, 1, 0.5, 1);
}
.float::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/asset/img/common/pattern.png);
  background-size: 38%;
  opacity: 0.44;
  mix-blend-mode: color-burn;
}
.float-cont {
  height: 100%;
  gap: 1rem;
  position: relative;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .float-cont {
    gap: 0.5rem;
  }
}
.float-cont .btn-tel {
  background: #CB4042;
  border: solid 1px #CB4042;
  position: relative;
}
.float-cont .btn-tel::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(/asset/img/common/pattern.png);
  background-size: 48%;
  border-radius: 0.3rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  mix-blend-mode: color-burn;
}
.float-cont .btn-tel__sub {
  margin: 0 0 0 0.4rem;
  padding: 0;
  gap: 0.2rem;
  background: unset;
}
.float-cont .btn-tel__sub p {
  padding: 0.3rem 0.5rem;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  border-radius: 0.15rem;
  color: #CB4042;
  background: #fff;
}
.float-cont .btn-tel__main {
  padding: 0 0 0.7rem 0;
  font-weight: 500;
  font-size: 4.6rem;
}
.float-cont .btn-tel__main svg {
  width: 2rem;
  margin-top: 0.9rem;
}
.float-cont .btn-tel:hover {
  background: #fff;
}
.float-cont .btn-tel:hover .btn-tel__sub {
  background: #fff;
}
.float-cont .btn-tel:hover .btn-tel__sub p {
  color: #fff;
  background: #CB4042;
}
.float-cont .btn-tel:hover .btn-tel__main {
  color: #CB4042;
}
.float-cont .btn-tel:hover .btn-tel__main svg path {
  fill: #CB4042;
}
@media screen and (max-width: 1200px) {
  .float-cont .btn-tel__main {
    padding: 0 0 0.7rem 0;
    font-size: 3rem;
  }
  .float-cont .btn-tel__main svg {
    width: 1.3rem;
    margin-top: 0.9rem;
  }
}
@media screen and (max-width: 959px) {
  .float-cont .btn-tel {
    flex-direction: column-reverse;
  }
  .float-cont .btn-tel__main {
    padding: 0;
  }
  .float-cont .btn-tel__sub {
    width: calc(100% - 1.8rem);
    margin: 0 0 0 auto;
    flex-direction: row;
    justify-content: flex-end;
  }
  .float-cont .btn-tel__sub p {
    padding: 0.3rem 0.5rem;
  }
  .float-cont .btn-tel__sub p:last-child {
    padding: 0.3rem 1.2rem;
  }
}
.float-cont .btn-nml {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .float-cont .btn-nml {
    width: 6rem;
    height: 6rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
  }
  .float-cont .btn-nml svg {
    width: 3rem;
    margin: 0 0 1rem 0;
  }
  .float-cont .btn-nml .btn-arrow {
    display: none;
  }
}
.float-cont .line-bnr {
  width: 25.6%;
}
.float-cont .line-bnr img {
  border-radius: 0.3rem;
}
@media screen and (max-width: 1200px) {
  .float-cont .line-bnr {
    width: auto;
  }
  .float-cont .line-bnr img {
    width: auto;
    height: 6rem;
  }
}
.float-cont .line-contact {
  display: none;
}
@media screen and (max-width: 767px) {
  .float-cont .line-bnr {
    display: none;
  }
  .float-cont .line-contact {
    width: 6rem;
    height: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0.3rem;
    background: #06C755;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: -0.02em;
    color: #fff;
  }
  .float-cont .line-contact img {
    width: 3rem;
    margin: 0.8rem 0 0.5rem 0;
  }
}

/* A Modern CSS Reset */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.btn-nml {
  width: -moz-fit-content;
  width: fit-content;
  height: 6rem;
  padding: 0 1.2rem 0 3rem;
  background: #986DB2;
  border: solid 1px #986DB2;
  box-sizing: border-box;
  margin: auto 0;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 0.3rem;
  position: relative;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-nml svg {
  width: auto;
  height: 2rem;
  margin-right: 0.6rem;
}
.btn-nml svg path {
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 1200px) {
  .btn-nml {
    padding: 0 1.2rem;
    font-size: 1.4rem;
  }
  .btn-nml svg {
    height: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .btn-nml {
    width: 100%;
    height: 4rem;
    justify-content: center;
  }
  .btn-nml .btn-arrow {
    margin: auto;
    position: absolute;
    top: 0;
    right: 0.6rem;
    bottom: 0;
  }
}
.btn-nml:hover {
  color: #986DB2;
  background: #fff;
}
.btn-nml:hover svg path {
  fill: #986DB2;
}
.btn-nml:hover .btn-arrow {
  background: #986DB2;
}
.btn-nml:hover .btn-arrow svg path {
  fill: #fff;
}
.btn-emg {
  width: -moz-fit-content;
  width: fit-content;
  height: 6rem;
  padding: 0 1.2rem 0 3rem;
  background: #CB4042;
  border: solid 1px #CB4042;
  box-sizing: border-box;
  margin: auto 0;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 0.3rem;
  position: relative;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-emg svg {
  width: auto;
  height: 2rem;
  margin-right: 0.6rem;
}
.btn-emg svg path {
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-emg .btn-arrow svg path {
  fill: #CB4042;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 1200px) {
  .btn-emg {
    padding: 0 1.2rem;
    font-size: 1.4rem;
  }
  .btn-emg svg {
    height: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .btn-emg {
    width: 100%;
    height: 4rem;
    justify-content: center;
  }
  .btn-emg .btn-arrow {
    margin: auto;
    position: absolute;
    top: 0;
    right: 0.6rem;
    bottom: 0;
  }
}
.btn-emg:hover {
  color: #CB4042;
  background: #fff;
}
.btn-emg:hover svg path {
  fill: #CB4042;
}
.btn-emg:hover .btn-arrow {
  background: #CB4042;
}
.btn-emg:hover .btn-arrow svg path {
  fill: #fff;
}
.btn-tel {
  width: -moz-fit-content;
  width: fit-content;
  height: 6rem;
  margin: auto 0;
  padding: 0 1.5rem;
  background: #227D51;
  border: solid 1px #227D51;
  box-sizing: border-box;
  border-radius: 0.3rem;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-tel__sub {
  gap: 0.8rem;
  padding: 0 1.3rem;
  justify-content: center;
  background: #fff;
  border-radius: 0.15rem;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-tel__sub p {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #227D51;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-tel__main {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-tel__main svg {
  width: 1.5rem;
  height: auto;
  margin: 0.4rem 0.5rem 0 0;
  aspect-ratio: 1/1;
}
.btn-tel__main svg path {
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-tel:hover {
  background: #fff;
}
.btn-tel:hover .btn-tel__sub {
  background: #227D51;
}
.btn-tel:hover .btn-tel__sub p {
  color: #fff;
}
.btn-tel:hover .btn-tel__main {
  color: #227D51;
}
.btn-tel:hover .btn-tel__main svg path {
  fill: #227D51;
}
@media screen and (max-width: 1200px) {
  .btn-tel {
    padding: 0 1.2rem;
  }
  .btn-tel__sub {
    padding: 0 0.3rem;
  }
  .btn-tel__sub p {
    font-size: 1.2rem;
  }
  .btn-tel__main {
    font-size: 2.2rem;
  }
}
.btn-arrow {
  width: 2.6rem;
  height: 2.6rem;
  margin-left: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 1200px) {
  .btn-arrow {
    margin-left: 1.2rem;
  }
}
.btn-arrow svg {
  width: 1.1rem;
  height: auto;
  margin: 0;
  aspect-ratio: 11/10;
  fill: #986DB2;
}
.btn-arrow svg path {
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-arrow.rev {
  background: #986DB2;
}
.btn-arrow.rev svg path {
  fill: #fff;
}

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

.img {
  position: relative;
}
.img-cover {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html :where(img[class*=wp-image-]) {
  width: auto !important;
  height: auto !important;
  max-width: unset !important;
}

@media screen and (max-width: 1200px) {
  .ct-main dl p {
    font-size: 1.6rem !important;
  }
}
.ct-main dl dt {
  width: 100%;
  margin-bottom: 1.3rem;
  font-weight: 400;
}
.ct-main .m-t__s {
  margin-top: 3rem !important;
}
.ct-main input[type=text],
.ct-main input[type=tel],
.ct-main input[type=email] {
  height: 5rem;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  border: solid 1px rgba(28, 28, 28, 0.2);
  border-radius: 0.3rem;
}
.ct-main input[type=date],
.ct-main select {
  height: 5rem;
  width: 100%;
  padding: 0 2rem;
  display: block;
  border: solid 1px rgba(28, 28, 28, 0.2);
  border-radius: 0.3rem;
  cursor: pointer;
}
.ct-main input[type=radio],
.ct-main input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  vertical-align: sub;
  border: solid 1px rgba(28, 28, 28, 0.2);
  border-radius: 50%;
  position: relative;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.ct-main input[type=radio]:checked::before,
.ct-main input[type=checkbox]:checked::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  margin: auto;
  background: #986DB2;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ct-main label {
  cursor: pointer;
}
.ct-main textarea {
  width: 100%;
  padding: 2rem;
  border: solid 1px rgba(28, 28, 28, 0.2);
}
.ct-main .wpcf7-form-control-wrap {
  width: 100%;
}
.ct-main .wpcf7-list-item {
  margin: 0 2rem 0 0;
}
.ct-main .wpcf7-not-valid-tip {
  margin: 0.8rem 0 0 0;
  display: inline-block;
  font-size: 1.2rem;
  color: #CB4042;
}
.ct-main .wpcf7-spinner {
  display: none;
  visibility: hidden;
}
.ct-main .wpcf7-response-output {
  padding: 0 !important;
  border: unset !important;
  border-color: unset !important;
  margin: 0.8rem 0 0 0 !important;
  display: inline-block;
  font-size: 1.2rem;
  color: #CB4042;
}
.ct-main .btn-nml {
  padding: 0;
  position: relative;
  cursor: pointer;
}
.ct-main .btn-nml::before {
  content: "";
  width: 2.6rem;
  height: 2.6rem;
  display: block;
  margin: auto;
  background: #fff;
  border-radius: 0.3rem;
  position: absolute;
  top: 0;
  right: 1.2rem;
  bottom: 0;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.ct-main .btn-nml::after {
  content: "";
  width: 1.1rem;
  height: 1rem;
  display: block;
  margin: auto;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='11' height='10' viewBox='0 0 11 10' fill='none'><path d='M10.7721 4.65039L0.558107 0.0346805C0.395468 -0.0376323 0.201401 0.00544772 0.0882612 0.14238C-0.0256647 0.279313 -0.0295931 0.473942 0.0788328 0.614722L3.43768 4.99965L0.0788328 9.38457C-0.0295931 9.52535 -0.0256647 9.72075 0.0874755 9.85691C0.163688 9.95 0.277614 10 0.393111 10C0.448895 10 0.50468 9.98846 0.557321 9.96461L10.7714 5.3489C10.9112 5.28582 11 5.14966 11 4.99965C11 4.84964 10.9112 4.71347 10.7721 4.65039Z' fill='%23986DB2'></path></svg>");
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.9rem;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.ct-main .btn-nml p {
  display: flex;
  align-items: center;
  position: relative;
}
.ct-main .btn-nml p input[type=submit] {
  min-width: 18rem;
  padding: 1.8rem 1.2rem 1.8rem 2.8rem;
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.ct-main .btn-nml:hover p input[type=submit] {
  color: #986DB2;
}
.ct-main .btn-nml:hover::before {
  background: #986DB2;
}
.ct-main .btn-nml:hover::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='11' height='10' viewBox='0 0 11 10' fill='none'><path d='M10.7721 4.65039L0.558107 0.0346805C0.395468 -0.0376323 0.201401 0.00544772 0.0882612 0.14238C-0.0256647 0.279313 -0.0295931 0.473942 0.0788328 0.614722L3.43768 4.99965L0.0788328 9.38457C-0.0295931 9.52535 -0.0256647 9.72075 0.0874755 9.85691C0.163688 9.95 0.277614 10 0.393111 10C0.448895 10 0.50468 9.98846 0.557321 9.96461L10.7714 5.3489C10.9112 5.28582 11 5.14966 11 4.99965C11 4.84964 10.9112 4.71347 10.7721 4.65039Z' fill='%23ffffff'></path></svg>");
}
@media screen and (max-width: 959px) {
  .ct-main .wpcf7-radio {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .ct-main .btn-nml {
    width: 18rem;
    height: 6rem;
  }
}
.ct-w {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.ct-w dd {
  width: calc(50% - 0.5rem);
  position: relative;
}
.ct-w dd:nth-child(3)::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 8px solid #1C1C1C;
  border-bottom: 0;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
}
.ct-txt {
  margin-top: 1.5rem;
  font-size: 1.2rem !important;
}
.ct-txt a {
  text-decoration: underline;
}
.ct-caption {
  font-size: 1.2rem !important;
  line-height: 1.333;
}

.mv {
  width: 100%;
  aspect-ratio: 5/2;
  position: relative;
}
.mv-txt {
  width: 36.666vw;
  min-width: 32rem;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3.333vw;
}
.mv-txt .mv-pc svg path {
  box-shadow: 0 0 0.5rem 0 #1C1C1C;
}
.mv-txt .mv-sp {
  display: none;
}
.mv .swiper-slide {
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: 62rem;
  }
  .mv-txt {
    width: 18vw;
    min-width: 9rem;
    aspect-ratio: 9/50;
    top: 8vw;
    bottom: unset;
    left: 4vw;
  }
  .mv-txt .mv-pc {
    display: none;
  }
  .mv-txt .mv-sp {
    display: block;
  }
  .mv-txt .mv-sp svg path {
    box-shadow: 0 0 0.6rem 0 #1C1C1C;
  }
  .mv .swiper-slide:nth-child(1), .mv .swiper-slide:nth-child(4) {
    background-position: 44% !important;
  }
  .mv .swiper-slide:nth-child(2), .mv .swiper-slide:nth-child(5) {
    background-position: 61% !important;
  }
  .mv .swiper-slide:nth-child(3), .mv .swiper-slide:nth-child(6) {
    background-position: 80% !important;
  }
}

.swiper-cover::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

.fx {
  display: flex;
}
.fx-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.fx-start {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.fx-end {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.fx.between {
  justify-content: space-between;
}
.fx.stretch {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
}

.nowrap {
  flex-wrap: nowrap;
}

.reverse {
  flex-direction: row-reverse;
}

.column {
  flex-direction: column;
}

.bk {
  display: block;
}

.gd {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 0.1rem;
  grid-row-gap: 0;
}

.alg-center {
  align-items: center;
}
.alg-start {
  align-items: flex-start;
}
.alg-end {
  align-items: flex-end;
}

.m-auto {
  margin: auto;
}
.m-t__xl {
  margin-top: 15rem;
}
.m-t__ll {
  margin-top: 12rem;
}
.m-t__l {
  margin-top: 8rem;
}
.m-t__m {
  margin-top: 5rem;
}
.m-t__s {
  margin-top: 3rem;
}
.m-t__ss {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .m-t__ll {
    margin-top: 10rem;
  }
  .m-t__l {
    margin-top: 5rem;
  }
  .m-t__m {
    margin-top: 4rem;
  }
  .m-t__s {
    margin-top: 2rem;
  }
  .m-t__ss {
    margin-top: 1rem;
  }
}
.m-b__xl {
  margin-bottom: 15rem;
}
.m-b__ll {
  margin-bottom: 12rem;
}
.m-b__l {
  margin-bottom: 8rem;
}
.m-b__m {
  margin-bottom: 5rem;
}
.m-b__s {
  margin-bottom: 3rem;
}
.m-b__ss {
  margin-bottom: 2rem;
}
.m-b__xs {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .m-b__xl {
    margin-bottom: 12rem;
  }
  .m-b__ll {
    margin-bottom: 10rem;
  }
  .m-b__l {
    margin-bottom: 5rem;
  }
  .m-b__m {
    margin-bottom: 4rem;
  }
  .m-b__s {
    margin-bottom: 2rem;
  }
  .m-b__ss {
    margin-bottom: 1rem;
  }
  .m-b__xs {
    margin-bottom: 0.5rem;
  }
}
.m-r__s {
  margin-right: 3rem;
}
.m-r__ss {
  margin-right: 2rem;
}
.m-l__s {
  margin-left: 3rem;
}
.m-l__ss {
  margin-left: 2rem;
}

.p-t__ll {
  padding-top: 12rem;
}
.p-t__l {
  padding-top: 8rem;
}
.p-t__m {
  padding-top: 5rem;
}
.p-t__s {
  padding-top: 3rem;
}
.p-t__ss {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-t__ll {
    padding-top: 10rem;
  }
  .p-t__l {
    padding-top: 5rem;
  }
  .p-t__m {
    padding-top: 4rem;
  }
  .p-t__s {
    padding-top: 2rem;
  }
  .p-t__ss {
    padding-top: 1rem;
  }
}
.p-b__ll {
  padding-bottom: 12rem;
}
.p-b__l {
  padding-bottom: 8rem;
}
.p-b__m {
  padding-bottom: 5rem;
}
.p-b__s {
  padding-bottom: 3rem;
}
.p-b__ss {
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-b__ll {
    padding-bottom: 10rem;
  }
  .p-b__l {
    padding-bottom: 5rem;
  }
  .p-b__m {
    padding-bottom: 4rem;
  }
  .p-b__s {
    padding-bottom: 2rem;
  }
  .p-b__ss {
    padding-bottom: 1rem;
  }
}
.p-r__s {
  padding-right: 3rem;
}
.p-r__ss {
  padding-right: 2rem;
}
.p-r__xs {
  padding-right: 1.5rem;
}
.p-l__s {
  padding-left: 3rem;
}
.p-l__ss {
  padding-left: 2rem;
}
.p-l__xs {
  padding-left: 1.5rem;
}

.rel {
  position: relative;
}

.abs {
  position: absolute;
}
.abs-center {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.fix-center {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

main {
  width: 100%;
}

.mw1000 {
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .mw1000 {
    max-width: 96vw;
  }
}

p,
span,
a,
h1,
h2,
h3,
h4 {
  color: #1C1C1C;
}

h1 {
  text-align: center;
  font-size: 4.8rem;
  letter-spacing: 0.016em;
  line-height: 1;
}
h1 > span {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 1200px) {
  h1 {
    font-size: clamp(3.8rem, 4vw, 4.8rem);
  }
}

h2.ttl {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
h2.ttl span.sub {
  font-family: YakuHanJP, "Marcellus", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.5em;
  color: #986DB2;
}
h2.ttl span.accent {
  color: #986DB2;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 13%;
  /* 4.94px */
  text-underline-offset: 23.5%;
  /* 8.93px */
  text-underline-position: from-font;
}
@media screen and (max-width: 1200px) {
  h2.ttl {
    font-size: clamp(2.8rem, 3.166vw, 3.8rem);
  }
}

h3 {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}
h3.mic {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
h3.mic span {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0;
}
h3.mic span.accent-r {
  font-size: 2.8rem;
  font-weight: 500;
  text-decoration-color: #CB4042;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 13%;
  /* 4.94px */
  text-underline-offset: 23.5%;
  /* 8.93px */
  text-underline-position: from-font;
}
@media screen and (max-width: 1200px) {
  h3.mic span.accent-r {
    font-size: clamp(2.2rem, 2.333vw, 2.8rem);
  }
}
@media screen and (max-width: 1200px) {
  h3.mic {
    font-size: clamp(2.2rem, 2.333vw, 2.8rem);
  }
}

h4 {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}
h4 + span {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  h4 {
    font-size: clamp(1.8rem, 1.833vw, 2.2rem);
  }
}

p {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 1200px) {
  p {
    font-size: clamp(1.4rem, 1.333vw, 1.6rem);
  }
}
p.center {
  text-align: center;
}
p.cap {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 1px;
  color: #1C1C1C;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
}
p.cap.wh {
  color: #fff;
}
p.cap.out {
  margin-top: 0.5rem;
  text-align: right;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
}

span {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

p > span,
span > span,
a > span,
h1 > span,
h2 > span,
h3 > span,
h4 > span,
div > span,
dt > span,
dd > span {
  display: inline-block;
}

.h-main {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
.h-top {
  margin: 1rem 0;
  padding: 0 1rem;
  z-index: 10000;
  position: relative;
  background: #fff;
}
.h-top__btn {
  gap: 1rem;
}
.h-top__btn .btn-tel__sp {
  display: none;
}
.h-top .hum {
  width: 5rem;
  height: 5rem;
  background: #1C1C1C;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  display: none;
}
.h-top .hum span {
  width: 2.6rem;
  height: 1px;
  margin: auto;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.h-top .hum span:first-child {
  top: 1.2rem;
}
.h-top .hum span:last-child {
  bottom: 1.2rem;
}
.h-top .hum.active span:nth-child(2) {
  opacity: 0;
}
.h-top .hum.active span:first-child {
  top: 1.2rem;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
}
.h-top .hum.active span:last-child {
  bottom: 1.2rem;
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  .h-top__btn {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .h-top {
    margin: 0;
    padding: 0 0 0 1rem;
  }
  .h-top__btn {
    gap: 0;
    line-height: 1;
  }
  .h-top__btn .btn-tel,
  .h-top__btn .btn-nml,
  .h-top__btn .btn-emg {
    width: 6.5rem;
    height: 5rem;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    font-size: 0.9rem;
    letter-spacing: 0;
    border-radius: 0;
    color: #fff;
  }
  .h-top__btn .btn-tel__sub, .h-top__btn .btn-tel__main,
  .h-top__btn .btn-nml__sub,
  .h-top__btn .btn-nml__main,
  .h-top__btn .btn-emg__sub,
  .h-top__btn .btn-emg__main {
    display: none;
  }
  .h-top__btn .btn-tel__sp,
  .h-top__btn .btn-nml__sp,
  .h-top__btn .btn-emg__sp {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .h-top__btn .btn-tel svg,
  .h-top__btn .btn-nml svg,
  .h-top__btn .btn-emg svg {
    width: auto;
    height: 1.6rem;
    margin: 0 0 0.7rem 0;
  }
  .h-top__btn .btn-tel__sp:hover {
    color: #227D51;
  }
  .h-top__btn .btn-tel__sp:hover svg path {
    fill: #227D51;
  }
  .h-top__btn .btn-nml:hover {
    color: #986DB2;
  }
  .h-top__btn .btn-nml:hover svg path {
    fill: #986DB2;
  }
  .h-top__btn .btn-emg:hover {
    color: #CB4042;
  }
  .h-top__btn .btn-emg:hover svg path {
    fill: #CB4042;
  }
  .h-top .btn-arrow {
    display: none;
  }
  .h-top .hum {
    display: block;
  }
}
.h-nav {
  border-top: solid 1px rgba(28, 28, 28, 0.2);
  border-bottom: solid 1px rgba(28, 28, 28, 0.2);
  border-style: inset;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .h-nav {
    border-top: unset;
    width: 32rem;
    padding: 5rem 3rem;
    justify-content: start;
    background: #fff;
    position: fixed;
    top: 5rem;
    right: -100%;
    gap: 3rem;
    overflow-y: auto;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;
  }
  .h-nav::before {
    content: "";
    width: 32rem;
    height: 100%;
    background: url(/asset/img/common/pattern.png) repeat;
    background-size: contain;
    position: fixed;
    top: 0;
    right: -100%;
    opacity: 0.22;
    mix-blend-mode: multiply;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
  }
  .h-nav.open {
    right: 0;
  }
  .h-nav.open::before {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .h-nav-cont {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.h-nav-cont > a {
  display: flex;
  align-items: center;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  position: relative;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.h-nav-cont > a::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 0.6rem;
  margin: 0.2rem 0 0 0.5rem;
  aspect-ratio: 2/1;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #1c1c1c;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .h-nav-cont > a::after {
    display: none;
  }
}
.h-nav-cont:hover .hidden {
  opacity: 1;
  visibility: visible;
}
.h-nav-cont__sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .h-nav-cont__sp {
    display: block;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .h-nav-cont__sp.small a {
    font-size: 1.4rem;
  }
  .h-nav-cont__sp__tel {
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 1.5rem;
  }
  .h-nav-cont__sp__tel__sub p {
    width: auto;
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    border-radius: 0.15rem;
    background: #227D51;
  }
  .h-nav-cont__sp__tel__sub p:first-child {
    margin: 0 0.3rem 0 0;
    letter-spacing: 0.12em;
  }
  .h-nav-cont__sp__tel__sub p:last-child {
    letter-spacing: 0.06em;
  }
  .h-nav-cont__sp__tel__main {
    font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
    font-size: 3.69rem;
    font-weight: 500;
    line-height: 0.99;
    color: #1C1C1C;
  }
  .h-nav-cont__sp__tel__main svg {
    width: 1.6rem;
    height: auto;
    margin: 0.7rem 0.5rem 0 0;
    aspect-ratio: 1/1;
  }
  .h-nav-cont__sp__tel__main svg path {
    fill: #1C1C1C;
  }
  .h-nav-cont__sp__btn {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  .h-nav-cont__sp__btn .btn-nml, .h-nav-cont__sp__btn .btn-emg {
    width: 100%;
    height: 4rem;
    justify-content: center;
    position: relative;
    padding: 0.6rem;
  }
  .h-nav-cont__sp__btn .btn-arrow {
    width: 2.8rem;
    height: 2.8rem;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.6rem;
  }
}
.h-nav ul {
  gap: 3rem;
}
.h-nav ul li {
  padding: 1.6rem 0;
  position: relative;
}
.h-nav ul li a {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.h-nav ul li a:hover {
  opacity: 0.6;
}
.h-nav ul li ul {
  width: auto;
  margin: auto;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  gap: 3rem;
  background: #fff;
  position: fixed;
  right: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  box-shadow: inset 0 0.9rem 1.2rem 0 rgba(28, 28, 28, 0.04);
  z-index: 3;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.h-nav ul li ul li {
  padding: 0;
}
.h-nav ul li ul li a {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  gap: 1rem;
}
.h-nav ul li ul li a img {
  max-width: 28rem;
}
.h-nav ul li ul li a img + div {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .h-nav ul {
    gap: 2.5vw;
  }
  .h-nav ul li {
    padding: clamp(1.4rem, 1.333vw, 1.6rem) 0;
  }
  .h-nav ul li a {
    font-size: clamp(1.4rem, 1.333vw, 1.6rem);
  }
}
@media screen and (max-width: 767px) {
  .h-nav ul {
    gap: 3rem;
    flex-direction: column;
    justify-content: start;
  }
  .h-nav ul li {
    padding: 0;
  }
  .h-nav ul li a {
    font-size: 2rem;
  }
  .h-nav ul li ul {
    padding: 0;
    display: flex;
    gap: 1.5rem;
    background: unset;
    opacity: 1;
    visibility: visible;
    position: relative;
    top: 0 !important;
    box-shadow: unset;
  }
  .h-nav ul li ul li {
    width: auto;
    display: block;
  }
  .h-nav ul li ul li a {
    font-size: 1.4rem;
    gap: 0.8rem;
  }
  .h-nav ul li ul li a .btn-arrow {
    background: #986DB2;
  }
  .h-nav ul li ul li a .btn-arrow svg path {
    fill: #fff;
  }
}

.f-message {
  text-align: center;
  width: 100%;
  padding: 10rem 0;
  background: url(/asset/img/common/message.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.f-message::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}
.f-message h2 {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
}
.f-message h2 span {
  color: #fff;
}
.f-message p {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
}
.f-message p span {
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .f-message {
    padding: clamp(5rem, 8.333vw, 10rem) 0;
  }
  .f-message h2 {
    font-size: clamp(2.8rem, 4vw, 4.8rem);
    line-height: 1.321;
  }
  .f-message p {
    font-size: clamp(1.6rem, 2vw, 2.4rem);
  }
}
.f-contact {
  background: #227D51;
}
@media screen and (max-width: 959px) {
  .f-contact {
    flex-direction: column-reverse;
  }
}
.f-contact-main {
  width: 38.7vw;
  height: 100%;
  margin: auto 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .f-contact-main {
    width: 100%;
    padding: 5rem 0;
  }
}
.f-contact-main h2 {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
}
.f-contact-main h2 span {
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .f-contact-main h2 {
    font-size: clamp(2.8rem, 2.666vw, 3.2rem);
  }
}
.f-contact-main h2 span.sub {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  color: #fff;
}
.f-contact-main__tel {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.f-contact-main__tel__sub p {
  width: auto;
  padding: 0.5rem max(2vw, 3rem);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  color: #227D51;
  border-radius: 0.15rem;
  background: #fff;
}
.f-contact-main__tel__sub p:first-child {
  margin: 0 0.3rem 0 0;
  letter-spacing: 0.12em;
}
.f-contact-main__tel__sub p:last-child {
  margin: 0 0.5rem 0 0;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1200px) {
  .f-contact-main__tel__sub p {
    padding: 0.5rem 2.5vw;
    font-size: 1.333vw;
  }
}
@media screen and (max-width: 959px) {
  .f-contact-main__tel__sub p {
    padding: 0.5rem 1.7rem;
    font-size: 1.6rem;
  }
}
.f-contact-main__tel__main {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 0.99;
  color: #fff;
}
.f-contact-main__tel__main svg {
  width: clamp(2rem, 1.866vw, 2.8rem);
  height: auto;
  margin: 0.7rem 0.5rem 0 0;
  aspect-ratio: 1/1;
  fill: #fff;
}
@media screen and (max-width: 1200px) {
  .f-contact-main__tel__main {
    font-size: 4.333vw;
  }
  .f-contact-main__tel__main svg {
    width: 2.333vw;
  }
}
@media screen and (max-width: 959px) {
  .f-contact-main__tel__main {
    font-size: 4.4rem;
  }
  .f-contact-main__tel__main svg {
    width: 2rem;
  }
}
.f-contact-main-btn-wrap {
  gap: 1rem;
}
@media screen and (max-width: 480px) {
  .f-contact-main-btn-wrap {
    gap: 0.7rem;
  }
}
.f-contact-img {
  width: 61.3vw;
  aspect-ratio: 46/31;
  background: url(/asset/img/common/kanban.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 959px) {
  .f-contact-img {
    width: 100vw;
  }
}
.f-main-list {
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .f-main-list {
    gap: 5rem;
  }
}
.f-main-contact p {
  font-size: 1.4rem;
}
.f-main-link {
  gap: 3rem;
}
.f-main-link ul {
  display: grid;
  gap: 2rem;
}
.f-main-link ul li {
  display: grid;
  gap: 1.2rem;
}
.f-main-link ul li ul {
  display: grid;
  gap: 1.2rem;
}
.f-main-link ul li ul li a {
  padding: 0 0 0 1.5rem;
  font-size: 1.2rem;
  opacity: 0.6;
  position: relative;
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.f-main-link ul li ul li a:hover {
  opacity: 0.3;
}
.f-main-link ul li ul li a::before {
  content: "";
  width: 1rem;
  height: 0.1rem;
  margin: auto;
  background: #1c1c1c;
  opacity: 0.6;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.f-main-link ul li a {
  font-size: 1.4rem;
  line-height: 1;
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.f-main-link ul li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .f-main-link {
    width: 100%;
    flex-direction: column;
    gap: 1.2rem;
  }
  .f-main-link ul {
    gap: 1.2rem;
  }
  .f-main-link ul:first-child .f-main-link__item:first-child {
    padding-top: 1.2em;
    border-top: solid 1px rgba(28, 28, 28, 0.2);
  }
  .f-main-link ul li {
    border-bottom: solid 1px rgba(28, 28, 28, 0.2);
    padding: 0 0 1.2rem 0;
    gap: 1.2rem;
  }
  .f-main-link ul li ul {
    gap: 1.2rem;
  }
  .f-main-link ul li ul li {
    padding: 0;
    border-bottom: unset;
  }
}
.f-main-end {
  border-top: solid 0.1rem rgba(28, 28, 28, 0.2);
}
.f-main-end__bnr {
  gap: 1rem;
}
.f-main-end__bnr img {
  width: 24rem;
}
.f-main-end__link {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .f-main-end {
    padding-top: 0;
    border-top: unset;
    flex-direction: column;
    gap: 2rem;
  }
  .f-main-end__bnr img {
    width: 100%;
  }
  .f-main-end__link {
    width: 100%;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 380px) {
  .f-main-end__bnr {
    flex-direction: column;
  }
  .f-main-end__bnr img {
    width: 100%;
  }
}
.f-main a {
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.f-main a:hover {
  opacity: 0.6;
}
.f-main small {
  font-size: 1.2rem;
  text-align: center;
  opacity: 0.5;
}

.fr-ttl {
  text-align: center;
  position: relative;
}
.fr-ttl::before {
  content: "";
  width: 100%;
  max-width: 100rem;
  height: 0.1rem;
  background: linear-gradient(270deg, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 0.2) 50%, rgba(28, 28, 28, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.fr-ttl::after {
  content: "";
  width: 100%;
  max-width: 100rem;
  height: 0.1rem;
  background: linear-gradient(270deg, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 0.2) 50%, rgba(28, 28, 28, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.fr-ttl h2 {
  padding: 3rem 0;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .fr-ttl h2 {
    padding: 2rem 0;
  }
}
.fr-emg-wrap {
  width: 100rem;
  padding: 3.5rem 5rem;
  margin: 0 auto;
  background: #CB4042;
  border-radius: 0.3rem;
  position: relative;
  top: -2rem;
  z-index: 2;
}
.fr-emg-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/asset/img/common/pattern.png) repeat;
  opacity: 0.42;
  mix-blend-mode: color-burn;
  position: absolute;
  top: 0;
  left: 0;
}
.fr-emg-wrap h2.ttl {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 2;
}
.fr-emg-wrap h2.ttl span {
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .fr-emg-wrap {
    width: 83.333vw;
    padding: 2.666vw 4.166vw;
  }
}
@media screen and (max-width: 959px) {
  .fr-emg-wrap {
    flex-direction: column;
    gap: 2rem;
  }
  .fr-emg-wrap h2 {
    text-align: center;
    line-height: 1.1875;
  }
}
@media screen and (max-width: 767px) {
  .fr-emg-wrap {
    top: -5rem;
  }
}
.fr-emg-tel {
  position: relative;
  z-index: 2;
}
.fr-emg-tel__sub p {
  width: auto;
  padding: 0.5rem 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  color: #CB4042;
  border-radius: 0.15rem;
  background: #fff;
}
.fr-emg-tel__sub p:first-child {
  margin: 0 0.3rem 0 0;
  letter-spacing: 0.12em;
}
.fr-emg-tel__sub p:last-child {
  margin: 0 0.5rem 0 0;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1200px) {
  .fr-emg-tel__sub p {
    padding: 0.5rem 2.5vw;
    font-size: 1.333vw;
  }
}
@media screen and (max-width: 959px) {
  .fr-emg-tel__sub p {
    padding: 0.5rem 1.65rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .fr-emg-tel__sub p {
    padding: 0.5rem 3.5vw;
    font-size: clamp(1.4rem, 3.333vw, 1.6rem);
  }
}
.fr-emg-tel__main {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 0.99;
  color: #fff;
}
.fr-emg-tel__main svg {
  width: 2.8rem;
  height: auto;
  margin: 0.7rem 0.5rem 0 0;
  aspect-ratio: 1/1;
  fill: #fff;
}
@media screen and (max-width: 1200px) {
  .fr-emg-tel__main {
    font-size: 4.333vw;
  }
  .fr-emg-tel__main svg {
    width: 2.333vw;
  }
}
@media screen and (max-width: 959px) {
  .fr-emg-tel__main {
    font-size: 4.4rem;
  }
  .fr-emg-tel__main svg {
    width: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .fr-emg-tel__main {
    font-size: clamp(3.2rem, 9.166vw, 4.4rem);
  }
}
.fr-emg-cont {
  width: 100rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.fr-emg-cont h2 {
  text-align: center;
  line-height: 1.214;
}
@media screen and (max-width: 767px) {
  .fr-emg-cont h2 {
    text-align: left;
  }
}
.fr-emg-cont ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto 5rem;
}
.fr-emg-cont ul p {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.088em;
}
.fr-emg-cont ul p .icon {
  min-width: 1.6rem;
  min-height: 1.6rem;
  margin-right: 0.5rem;
  border-radius: 0.15rem;
  border: 1px solid rgba(28, 28, 28, 0.24);
  position: relative;
}
.fr-emg-cont ul p .icon svg {
  position: absolute;
  top: -0.1rem;
  left: 0.1rem;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .fr-emg-cont {
    width: 83.333vw;
  }
  .fr-emg-cont ul {
    margin: clamp(1.5rem, 2.5vw, 3rem) auto clamp(3rem, 4.166vw, 5rem);
  }
  .fr-emg-cont ul p {
    font-size: clamp(1.4rem, 1.833vw, 2.2rem);
    line-height: 1.428;
  }
}
@media screen and (max-width: 767px) {
  .fr-emg-cont ul {
    margin: clamp(2rem, 3.911vw, 3rem) 0 clamp(2rem, 6.518vw, 5rem);
  }
}
@media screen and (max-width: 600px) {
  .fr-emg-cont ul {
    width: 72%;
  }
  .fr-emg-cont ul p {
    display: flex;
    align-items: start;
  }
}
@media screen and (max-width: 480px) {
  .fr-emg-cont ul {
    width: 100%;
  }
  .fr-emg-cont ul p {
    display: flex;
    align-items: start;
  }
  .fr-emg-cont ul p.icon {
    margin-right: 0.8rem;
  }
}
.fr-emg-btn-wrap {
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .fr-emg-btn-wrap {
    width: 83.333vw;
    margin-left: auto;
    margin-right: auto;
    justify-content: start;
  }
}
.fr-emg-persona__01 {
  width: 15rem;
  height: auto;
  aspect-ratio: 30/43;
  position: absolute;
  bottom: -11rem;
  left: 1.733vw;
}
.fr-emg-persona__02 {
  width: 20rem;
  height: auto;
  aspect-ratio: 5/6;
  position: absolute;
  bottom: -11rem;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .fr-emg-persona__01 {
    width: 12.5vw;
    bottom: calc((5vw + 5rem) * -1);
  }
  .fr-emg-persona__02 {
    width: 16.666vw;
    bottom: calc((5vw + 5rem) * -1);
  }
}
@media screen and (max-width: 767px) {
  .fr-emg-persona__01 {
    display: none;
  }
  .fr-emg-persona__02 {
    width: 21.5vw;
    right: -5vw;
  }
}
@media screen and (max-width: 600px) {
  .fr-emg-persona__02 {
    width: 12.5rem;
    bottom: -5.2vw;
  }
}
@media screen and (max-width: 480px) {
  .fr-emg-persona__02 {
    display: none;
  }
}
.fr-plan h3 {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  position: relative;
}
.fr-plan h3 span {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
}
.fr-plan h3::after {
  content: "";
  width: 8rem;
  height: 8rem;
  margin: auto;
  border-radius: 50%;
  position: absolute;
  top: 100%;
  right: 0;
  bottom: -100%;
  left: 0;
}
.fr-plan h3.cremation::after {
  background: rgba(203, 64, 66, 0.24);
}
.fr-plan h3.family::after {
  background: rgba(34, 125, 81, 0.24);
}
.fr-plan h3.general::after {
  background: rgba(152, 109, 178, 0.24);
}
.fr-plan ul {
  gap: 3rem 2rem;
}
@media screen and (max-width: 767px) {
  .fr-plan ul {
    flex-wrap: wrap;
    gap: 5rem 1rem;
  }
}
.fr-plan ul li {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .fr-plan ul li {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 500px) {
  .fr-plan ul li {
    width: 100%;
  }
}
.fr-plan-detail {
  background: #EDE7EF;
}
.fr-plan-detail .img {
  border-radius: 0.3rem 0.3rem 0 0;
}
@media screen and (max-width: 1200px) {
  .fr-plan-detail .img + p {
    font-size: clamp(1.2rem, 1.333vw, 1.6rem);
  }
}
.fr-plan-detail__price {
  margin-bottom: 0.8rem;
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1;
  color: #CB4042;
}
.fr-plan-detail__price span {
  font-size: 2.4rem;
  font-weight: bold;
  color: #CB4042;
}
.fr-plan-detail__price__tax {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}
.fr-plan-detail__price__tax span {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 1.4rem;
}
.fr-plan-detail__flow {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}
.fr-plan-detail__flow__list {
  padding: 0 1.5rem;
  gap: 0.7rem !important;
  flex-wrap: nowrap !important;
}
.fr-plan-detail__flow__list li {
  width: 20%;
  min-width: 5.2rem;
  height: 6rem;
  padding: 0.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  border-radius: 0.15rem;
  background: rgba(152, 109, 178, 0.72);
}
.fr-plan-detail__flow__list li.noplan {
  background: #fff;
  color: rgba(28, 28, 28, 0.24);
}
@media screen and (max-width: 1200px) {
  .fr-plan-detail__flow__list li {
    min-width: unset;
    width: 4.333vw;
    font-size: clamp(1.4rem, 1.333vw, 1.6rem);
  }
}
.fr-plan-detail p {
  text-align: center;
}
.fr-plan-detail-btn {
  padding: 1.1rem 1.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #fff;
  border-radius: 0 0 0.3rem 0.3rem;
  background: #986DB2;
  border: solid 1px #986DB2;
  position: relative;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.fr-plan-detail-btn svg {
  position: absolute;
  right: 1.5rem;
}
.fr-plan-detail-btn svg path {
  fill: #fff;
}
@media screen and (max-width: 1200px) {
  .fr-plan-detail-btn {
    padding: 1.1rem 1.5rem;
    font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  }
}
.fr-plan-detail a:hover .fr-plan-detail-btn {
  color: #986DB2;
  background: #fff;
}
.fr-flow-list {
  gap: 3.1rem;
}
.fr-flow-list-num {
  width: 6rem;
  height: 6rem;
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  background: #986DB2;
}
.fr-flow-list li {
  width: 12.5%;
  height: 31.5rem;
  padding: 1.9rem 1.9rem 5rem;
  background: #EDE7EF;
}
.fr-flow-list h4 {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 1200px) {
  .fr-flow-list {
    gap: 2.583vw;
  }
  .fr-flow-list-num {
    width: calc(100% + 3.166vw - 3.166vw);
    height: auto;
    aspect-ratio: 1/1;
    font-size: 2vw;
  }
  .fr-flow-list li {
    height: -webkit-fill-available;
    height: -moz-available;
    height: stretch;
    padding: 1.583vw 1.583vw 4.166vw;
  }
}
@media screen and (max-width: 600px) {
  .fr-flow-list {
    flex-direction: column;
    gap: 1rem;
  }
  .fr-flow-list-num {
    width: 3.4rem;
    height: 3.4rem;
    margin: 0 1rem 0 0;
    font-size: 1.8rem;
  }
  .fr-flow-list li {
    width: 100%;
    height: auto;
    padding: 0.8rem;
    flex-direction: row;
  }
  .fr-flow-list h4 {
    writing-mode: unset;
  }
}
.fr-flow-cont {
  width: 100%;
  background: #EDE7EF;
}
.fr-flow-cont .img {
  max-width: 50%;
}
.fr-flow-cont__txt {
  max-width: 50%;
  padding: 0 4.5rem;
}
.fr-flow-cont__txt p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.714;
}
@media screen and (max-width: 767px) {
  .fr-flow-cont {
    flex-direction: column;
  }
  .fr-flow-cont .img {
    max-width: 100%;
  }
  .fr-flow-cont__txt {
    max-width: 100%;
    padding: 2rem;
  }
}
.fr-flow .cap {
  margin: 1rem 0 0 auto;
  text-align: right;
  position: relative;
  right: 0;
  bottom: 0;
}
.fr-voice {
  overflow: hidden !important;
}
@media screen and (max-width: 767px) {
  .fr-voice > div.fx {
    flex-direction: column;
  }
}
.fr-voice h2 {
  width: 100%;
  min-width: calc((100vw - 100rem) / 2 + 30rem);
  height: auto;
  padding-left: calc((100vw - 100rem) / 2);
  background: linear-gradient(0deg, #986DB2 0%, #986DB2 0%), linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 250%), #F3F0E9;
  background-blend-mode: color, normal, normal;
  position: relative;
  z-index: 2;
}
.fr-voice h2::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(/asset/img/common/pattern.png);
  background-size: contain;
  mix-blend-mode: lighten;
  position: absolute;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .fr-voice h2 {
    min-width: 33.3335vw;
    padding-left: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .fr-voice h2 {
    min-width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 3rem;
    padding: 2rem 0;
    text-align: center;
    background: unset;
    background-blend-mode: unset;
    position: relative;
  }
  .fr-voice h2::before {
    content: "";
    width: 100%;
    max-width: 100rem;
    height: 0.1rem;
    background: linear-gradient(270deg, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 0.2) 50%, rgba(28, 28, 28, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
  }
  .fr-voice h2::after {
    content: "";
    width: 100%;
    max-width: 100rem;
    height: 0.1rem;
    background: linear-gradient(270deg, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 0.2) 50%, rgba(28, 28, 28, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.fr-voice-scroll {
  position: relative;
  animation: infinity-scroll-left 70s infinite linear 0.5s both;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fr-voice-scroll {
    animation: infinity-scroll-left 20s infinite linear 0.5s both;
  }
}
@media screen and (max-width: 480px) {
  .fr-voice-scroll {
    animation: infinity-scroll-left 10s infinite linear 0.5s both;
  }
}
.fr-voice-cont {
  overflow: hidden;
}
.fr-voice-cont-list__item {
  width: 47rem;
  margin-right: 2rem;
  background: #EDE7EF;
}
@media screen and (max-width: 767px) {
  .fr-voice-cont-list__item {
    width: 61.27vw;
    min-width: 29.5rem;
  }
}
.fr-voice-cont-list__item img {
  width: 15rem;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 3/4;
}
.fr-voice-cont-list__item a {
  width: 100%;
  padding: 2rem;
  display: flex;
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.fr-voice-cont-list__item a:hover {
  opacity: 0.6;
}
.fr-voice-cont-list__item a .fr-voice-cont-list__item__txt {
  width: 100%;
  margin-left: 2rem;
}
.fr-voice-cont-list__item a .fr-voice-cont-list__item__txt .comment p {
  display: -webkit-box;
  font-size: 1.2rem;
  line-height: 1.5;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
}
.fr-voice-cont-list__item a .fr-voice-cont-list__item__txt .plan {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.5rem;
  padding: 0 0 0.3rem 0;
  font-size: 1.6rem;
  border-bottom: solid 1px #1C1C1C;
}
.fr-voice-cont-list__item a .fr-voice-cont-list__item__txt .plan span {
  font-size: 1.2rem;
}
.fr-voice-cont-list__item a .fr-voice-cont-list__item__txt .user {
  margin-top: revert;
  text-align: right;
  font-size: 1.2rem;
  opacity: 0.6;
}
@media screen and (max-width: 1200px) {
  .fr-voice-cont-list__item a img {
    width: 12.5vw;
  }
  .fr-voice-cont-list__item a .fr-voice-cont-list__item__txt {
    margin-left: 1.666vw;
  }
  .fr-voice-cont-list__item a .fr-voice-cont-list__item__txt .plan {
    margin-bottom: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .fr-voice-cont-list__item a {
    flex-direction: column;
  }
  .fr-voice-cont-list__item a img {
    width: 100%;
    margin-bottom: 1.2rem;
  }
  .fr-voice-cont-list__item a .fr-voice-cont-list__item__txt {
    margin-left: 0;
  }
  .fr-voice-cont-list__item a .fr-voice-cont-list__item__txt .plan {
    margin-bottom: 1.2rem;
  }
  .fr-voice-cont-list__item a .fr-voice-cont-list__item__txt p {
    -webkit-line-clamp: 4;
  }
}
@media screen and (max-width: 480px) {
  .fr-voice-cont-list__item a {
    width: 93.75vw;
  }
  .fr-voice-cont-list__item a img {
    margin: 0 auto 1.2rem;
  }
}
.fr-faq-talk__user {
  margin-bottom: 2rem;
}
.fr-faq-talk__user img {
  width: 12rem;
  height: auto;
  border-radius: 50%;
  border: solid 0.2rem #227D51;
}
.fr-faq-talk__user__fkd {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 2rem;
  padding: 1.8rem;
  background: rgba(34, 125, 81, 0.14);
  position: relative;
  /* 4行以下: 中央 */
}
.fr-faq-talk__user__fkd.short::after, .fr-faq-talk__user__fkd.short::before {
  content: "";
  display: block;
  width: 1.4rem;
  aspect-ratio: 14/11;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #DDE9E3;
  position: absolute;
  left: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.fr-faq-talk__user__fkd {
  /* 4行超え: 固定 40px */
}
.fr-faq-talk__user__fkd.long::after, .fr-faq-talk__user__fkd.long::before {
  content: "";
  display: block;
  width: 1.4rem;
  aspect-ratio: 14/11;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #DDE9E3;
  position: absolute;
  left: -1.4rem;
  top: 2.8rem;
  transform: none;
}
@media screen and (max-width: 1200px) {
  .fr-faq-talk__user img {
    width: clamp(6rem, 10vw, 12rem);
  }
  .fr-faq-talk__user__fkd {
    padding: clamp(1.4rem, 1.5vw, 1.8rem);
  }
}
.fr-faq-talk__client {
  margin-bottom: 2rem;
}
.fr-faq-talk__client:last-child {
  margin-bottom: 5rem;
}
.fr-faq-talk__client img {
  width: 12rem;
  height: auto;
  border-radius: 50%;
  border: solid 0.2rem #986DB2;
}
.fr-faq-talk__client__fkd {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 68rem;
  margin-right: 2rem;
  padding: 1.8rem;
  background: #EDE7EF;
  position: relative;
  /* 4行以下: 中央 */
}
.fr-faq-talk__client__fkd.short::after, .fr-faq-talk__client__fkd.short::before {
  content: "";
  display: block;
  width: 1.4rem;
  aspect-ratio: 14/11;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  background: #EDE7EF;
  position: absolute;
  right: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.fr-faq-talk__client__fkd {
  /* 4行超え: 固定 40px */
}
.fr-faq-talk__client__fkd.long::after, .fr-faq-talk__client__fkd.long::before {
  content: "";
  display: block;
  width: 1.4rem;
  aspect-ratio: 14/11;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  background: #EDE7EF;
  position: absolute;
  right: -1.4rem;
  top: 2.8rem;
  transform: none;
}
.fr-faq-talk__client__fkd .accent {
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .fr-faq-talk__client:last-child {
    margin-bottom: 5rem;
  }
  .fr-faq-talk__client img {
    width: clamp(6rem, 10vw, 12rem);
  }
}
.fr-news h2 {
  width: auto;
}
.fr-news-list {
  width: 70%;
}
.fr-news-list ul li {
  padding: 2rem 0;
  border-top: solid 1px rgba(28, 28, 28, 0.2);
}
.fr-news-list ul li:last-child {
  border-bottom: solid 1px rgba(28, 28, 28, 0.2);
}
.fr-news-list ul li a {
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.fr-news-list ul li a:hover {
  opacity: 0.6;
}
.fr-news-list ul li a span {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.6;
}
.fr-news-list ul li a p {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  padding: 0 3rem 0 1.5rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fr-news .btn-nml {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .fr-news > div.fx {
    flex-direction: column;
  }
  .fr-news h2 {
    width: 100%;
    margin-bottom: 3rem;
    padding: 2rem 0;
    text-align: center;
    position: relative;
  }
  .fr-news h2::before {
    content: "";
    width: 100%;
    max-width: 100rem;
    height: 0.1rem;
    background: linear-gradient(270deg, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 0.2) 50%, rgba(28, 28, 28, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
  }
  .fr-news h2::after {
    content: "";
    width: 100%;
    max-width: 100rem;
    height: 0.1rem;
    background: linear-gradient(270deg, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 0.2) 50%, rgba(28, 28, 28, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .fr-news-list {
    width: 100%;
  }
}

.p-ttl {
  margin-top: clamp(20rem, 17vw, 25.5rem);
  border-bottom: solid 1px rgba(28, 28, 28, 0.2);
  position: relative;
  overflow: hidden;
}
.p-ttl h1 {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
}
.p-ttl h1 span {
  font-family: YakuHanJP, "Marcellus", sans-serif;
  color: #986DB2;
}
.p-ttl h1 div {
  gap: 1.5rem;
}
.p-ttl h1 div span {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  letter-spacing: 0.16em;
  color: #1C1C1C;
}
@media screen and (max-width: 1200px) {
  .p-ttl h1 div span {
    font-size: clamp(2.4rem, 2.6667vw, 3.2rem);
  }
}
@media screen and (max-width: 767px) {
  .p-ttl {
    margin-top: 15rem;
  }
}

.em-fst .fr-emg-wrap {
  top: 0;
}
.em-fst-cont {
  gap: 5rem;
}
.em-fst-cont:last-child h3 + p {
  line-height: 1.75;
}
.em-fst-cont:last-child .btn-tel {
  height: 9rem;
  flex-direction: column-reverse;
  background: #CB4042;
  border: solid 1px #CB4042;
  position: relative;
}
.em-fst-cont:last-child .btn-tel::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(/asset/img/common/pattern.png);
  background-size: 48%;
  border-radius: 0.3rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  mix-blend-mode: color-burn;
}
.em-fst-cont:last-child .btn-tel__sub {
  width: calc(100% - 3.2rem);
  margin: 0 0 0 auto;
  padding: 0;
  flex-direction: row;
  justify-content: flex-end;
  background: unset;
  gap: 0.2rem;
}
.em-fst-cont:last-child .btn-tel__sub p {
  padding: 0.3rem 2.85rem;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #CB4042;
  background: #fff;
}
.em-fst-cont:last-child .btn-tel__main {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  font-size: 5.2rem;
}
.em-fst-cont:last-child .btn-tel__main svg {
  width: 2.8rem;
  margin-top: 0.7rem;
}
.em-fst-cont:last-child .btn-tel:hover {
  background: #fff;
}
.em-fst-cont:last-child .btn-tel:hover .btn-tel__sub p {
  color: #fff;
  background: #CB4042;
}
.em-fst-cont:last-child .btn-tel:hover .btn-tel__main {
  color: #CB4042;
}
.em-fst-cont:last-child .btn-tel:hover .btn-tel__main svg path {
  fill: #CB4042;
}
.em-fst-cont div {
  width: 47%;
}
.em-fst-cont div ul {
  gap: 1rem;
}
.em-fst-cont div ul li {
  font-weight: 500;
}
.em-fst-cont div ul li .icon {
  min-width: 1.6rem;
  min-height: 1.6rem;
  margin-right: 0.5rem;
  border-radius: 0.15rem;
  border: 1px solid rgba(28, 28, 28, 0.24);
  position: relative;
}
.em-fst-cont div ul li .icon svg {
  position: absolute;
  top: -0.1rem;
  left: 0.1rem;
  bottom: 0;
  margin: auto;
}
.em-fst-cont img {
  width: 47%;
  aspect-ratio: 16/11;
}
@media screen and (max-width: 959px) {
  .em-fst-cont:last-child .btn-tel {
    height: clamp(6rem, 9.384vw, 9rem);
  }
  .em-fst-cont:last-child .btn-tel__sub {
    width: calc(100% - clamp(1.8rem, 3.336vw, 3.2rem));
  }
  .em-fst-cont:last-child .btn-tel__sub p {
    padding: 0.3rem clamp(0.5rem, 2.971vw, 2.85rem);
    font-size: clamp(1.2rem, 1.668vw, 1.6rem);
  }
  .em-fst-cont:last-child .btn-tel__main {
    font-size: clamp(3rem, 5.422vw, 5.2rem);
  }
  .em-fst-cont:last-child .btn-tel__main svg {
    width: clamp(1.3rem, 2.919vw, 2.8rem);
  }
}
@media screen and (max-width: 767px) {
  .em-fst-cont {
    gap: 2rem;
    flex-direction: column;
  }
  .em-fst-cont div {
    width: 100%;
  }
  .em-fst-cont img {
    width: 100%;
  }
}
.em-tel h4 {
  line-height: 1.2;
}
.em-tel h4 span {
  font-size: 1.6rem;
}
@media screen and (max-width: 1200px) {
  .em-tel h4 span {
    font-size: clamp(1.4rem, 1.333vw, 1.6rem);
  }
}
.em-tel .fr-emg-wrap {
  margin-top: 3rem;
  top: 0;
}
.em-prepara-list {
  gap: 2.4rem;
}
.em-prepara-list li {
  width: 25%;
  aspect-ratio: 29/25;
  border-radius: 0.3rem;
}
.em-prepara-list li p {
  width: 100%;
  padding: 1.2rem 1rem;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(28, 28, 28, 0.68);
}
.em-prepara-list li:nth-child(1) {
  background: url(/asset/img/emergency/img012.jpg);
  background-size: cover;
}
.em-prepara-list li:nth-child(2) {
  background: url(/asset/img/emergency/img013.jpg);
  background-size: cover;
}
.em-prepara-list li:nth-child(3) {
  background: url(/asset/img/emergency/img014.jpg);
  background-size: cover;
}
.em-prepara-list li:nth-child(4) {
  background: url(/asset/img/emergency/img015.jpg);
  background-size: cover;
}
@media screen and (max-width: 959px) {
  .em-prepara-list {
    flex-wrap: wrap;
  }
  .em-prepara-list li {
    width: calc(50% - 1.2rem);
  }
}
@media screen and (max-width: 600px) {
  .em-prepara-list {
    gap: 1.2em;
  }
  .em-prepara-list li {
    width: calc(50% - 0.6rem);
  }
  .em-prepara-list li p {
    padding: 1rem 0.8rem;
    font-size: 1.2rem;
  }
}
.em-situation-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 5rem 6rem;
}
.em-situation-list li {
  border-bottom: solid 1px rgba(28, 28, 28, 0.2);
}
.em-situation-list li .case {
  font-family: YakuHanJP, "Marcellus", sans-serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.5em;
  color: #986DB2;
}
.em-situation-list li .small {
  font-size: 1.2rem;
  line-height: 1.333;
}
@media screen and (max-width: 767px) {
  .em-situation-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.f-list-ttl {
  gap: 1.5rem;
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  border-bottom: solid 1px #986DB2;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.f-list-ttl span {
  width: 6rem;
  height: 6rem;
  font-size: 2.4rem;
  font-weight: 500;
  background: #986DB2;
  color: #fff;
}
.f-list-cont {
  gap: 3rem;
}
.f-list-cont p {
  line-height: 1.75;
}
.f-list-cont p span {
  font-size: 1.2rem;
  line-height: 1.333;
}
.f-list-cont img {
  max-width: 30rem;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 1200px) {
  .f-list-ttl {
    font-size: clamp(1.8rem, 1.833vw, 2.2rem);
  }
  .f-list-ttl span {
    width: clamp(4.9rem, 5vw, 6rem);
    height: clamp(4.9rem, 5vw, 6rem);
    font-size: clamp(2rem, 2vw, 2.4rem);
  }
}
@media screen and (max-width: 767px) {
  .f-list {
    margin-bottom: 5rem;
  }
  .f-list-cont {
    gap: 2rem;
    flex-direction: column;
  }
  .f-list-cont img {
    max-width: 100%;
  }
}

.p-plan-general h1::after {
  content: "";
  width: 19rem;
  height: 19rem;
  margin: auto;
  display: block;
  border-radius: 50%;
  background: #986DB2;
  opacity: 0.24;
  position: absolute;
  right: 0;
  bottom: -9.5rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-plan-general h1::after {
    width: 15rem;
    height: 15rem;
    bottom: -7.5rem;
  }
}
.p-plan-general .tax {
  padding-left: 2.8rem;
}
.p-plan-family h1::after {
  content: "";
  width: 19rem;
  height: 19rem;
  margin: auto;
  display: block;
  border-radius: 50%;
  background: #227D51;
  opacity: 0.24;
  position: absolute;
  right: 0;
  bottom: -9.5rem;
  left: 0;
  z-index: -1;
}
.p-plan-cremation h1::after {
  content: "";
  width: 19rem;
  height: 19rem;
  margin: auto;
  display: block;
  border-radius: 50%;
  background: #CB4042;
  opacity: 0.24;
  position: absolute;
  right: 0;
  bottom: -9.5rem;
  left: 0;
  z-index: -1;
}
.p-plan-detail {
  gap: 1.5rem;
  text-align: center;
}
.p-plan-detail img {
  width: 50%;
}
.p-plan-detail-txt {
  width: calc(50% - 1.5rem);
  flex-wrap: nowrap;
}
.p-plan-detail-txt h3 {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
}
.p-plan-detail-txt .tax {
  width: 100%;
  margin-bottom: 1.5rem;
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 6.8rem;
  line-height: 1;
  color: #CB4042;
}
.p-plan-detail-txt .tax span {
  font-size: 3.8rem;
  font-weight: 500;
  color: #CB4042;
}
.p-plan-detail-txt .tax-in {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}
.p-plan-detail-txt .tax-in span {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  font-size: 1.8rem;
}
@media screen and (max-width: 959px) {
  .p-plan-detail-txt .tax {
    margin-bottom: 1.5rem;
    font-size: clamp(4.8rem, 7.09vw, 6.8rem);
  }
  .p-plan-detail-txt .tax span {
    font-size: clamp(2rem, 3.962vw, 3.8rem);
  }
  .p-plan-detail-txt .tax-in {
    font-size: clamp(1.8rem, 2.502vw, 2.4rem);
  }
  .p-plan-detail-txt .tax-in span {
    font-size: clamp(1.2rem, 1.876vw, 1.8rem);
  }
}
@media screen and (max-width: 600px) {
  .p-plan-detail {
    flex-direction: column;
  }
  .p-plan-detail img {
    width: 100%;
  }
  .p-plan-detail-txt {
    width: 100%;
  }
}
.p-plan-reco ul {
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}
.p-plan-reco ul li {
  width: calc(50% - 1.5rem);
  padding: 1.5rem 0 1.5rem 1.5rem;
  gap: 1.5rem 3rem;
  border-top: solid 1px rgba(28, 28, 28, 0.2);
  border-bottom: solid 1px rgba(28, 28, 28, 0.2);
}
.p-plan-reco ul li img {
  width: 8rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 959px) {
  .p-plan-reco ul li {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-plan-reco ul li {
    width: 100%;
  }
}
.p-plan-flow-txt a {
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.6rem;
  font-size: 1.6rem;
  position: relative;
}
.p-plan-flow-txt a span {
  margin-left: 1rem;
}
.p-plan-flow-txt a::after {
  content: "";
  width: 100%;
  border-bottom: solid 1px #1C1C1C;
  border-style: dashed;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-plan-flow ul li {
  gap: 5rem;
  border-top: solid 1px rgba(28, 28, 28, 0.2);
  position: relative;
}
.p-plan-flow ul li:last-child {
  border-bottom: solid 1px rgba(28, 28, 28, 0.2);
}
.p-plan-flow ul li::before {
  content: "";
  width: 8rem;
  border-top: solid 1px #986DB2;
  position: absolute;
  top: -1px;
  left: 0;
}
.p-plan-flow ul li .num {
  min-width: 8rem;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #986DB2;
}
.p-plan-flow ul li a {
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-plan-flow ul li a:hover {
  opacity: 0.6;
}
.p-plan-flow ul li img {
  max-width: 30rem;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 767px) {
  .p-plan-flow ul li {
    flex-direction: column;
    gap: 3rem;
  }
  .p-plan-flow ul li div {
    width: 100%;
  }
  .p-plan-flow ul li img {
    max-width: calc(100% - 8rem);
    margin: 0 0 0 auto;
  }
}
.p-plan-include ul {
  flex-wrap: wrap;
}
.p-plan-include ul li {
  width: calc(25% - 1.5rem);
  gap: 1.3rem;
  margin: 0 2rem 2rem 0;
  position: relative;
}
.p-plan-include ul li::after {
  content: "";
  width: 100%;
  border-bottom: solid 1px rgba(28, 28, 28, 0.2);
  border-style: dashed;
  display: block;
}
.p-plan-include ul li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin: auto;
  display: block;
  background: #986DB2;
  position: absolute;
  top: 0;
  bottom: 1em;
  left: 0;
}
.p-plan-include ul li:nth-child(4n) {
  margin: 0 0 2rem 0;
}
.p-plan-include ul li p {
  padding: 0 0 1rem 1.3rem;
  font-size: 2rem;
}
.p-plan-include ul li p span {
  font-size: 1.6rem;
}
@media screen and (max-width: 959px) {
  .p-plan-include ul li {
    width: calc(33.3333333333% - 1.5rem);
  }
  .p-plan-include ul li:nth-child(4n) {
    margin: 0 2rem 2rem 0;
  }
  .p-plan-include ul li:nth-child(3n) {
    margin: 0 0 2rem 0;
  }
  .p-plan-include ul li p {
    font-size: clamp(1.6rem, 2.085vw, 2rem);
  }
  .p-plan-include ul li p span {
    font-size: clamp(1.2rem, 1.668vw, 1.6rem);
  }
}
@media screen and (max-width: 767px) {
  .p-plan-include ul li {
    width: calc(50% - 1.5rem);
  }
  .p-plan-include ul li:nth-child(4n) {
    margin: 0 2rem 2rem 0;
  }
  .p-plan-include ul li:nth-child(3n) {
    margin: 0 2rem 2rem 0;
  }
  .p-plan-include ul li:nth-child(2n) {
    margin: 0 0 2rem 0;
  }
}
.p-plan-saidan-fst {
  max-width: 100rem;
  margin: auto;
  position: relative;
}
.p-plan-saidan-fst h2 {
  font-family: "Zen Old Mincho", sans-serif;
  text-align: center;
  line-height: 1.289;
}
.p-plan-saidan-fst h2 .stg {
  color: #986DB2;
}
.p-plan-saidan-fst h2 + p {
  font-family: "Zen Old Mincho", sans-serif;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.636;
}
.p-plan-saidan-fst-persona__01 {
  width: 29.5rem;
  position: absolute;
  bottom: -3vw;
  left: -7vw;
  z-index: 2;
}
.p-plan-saidan-fst-persona__02 {
  width: 13.6rem;
  position: absolute;
  bottom: -2.4vw;
  right: -1.333vw;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .p-plan-saidan-fst h2 {
    font-size: clamp(2.8rem, 3.166vw, 3.8rem);
  }
  .p-plan-saidan-fst h2 + p {
    font-size: clamp(1.6rem, 1.833vw, 2.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .p-plan-saidan-fst-persona__01 {
    width: 28.805vw;
  }
  .p-plan-saidan-fst-persona__02 {
    width: 13.281vw;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-plan-saidan-fst-persona__01 {
    width: 22.1rem;
    bottom: -46%;
  }
  .p-plan-saidan-fst-persona__02 {
    width: 10.2rem;
    bottom: -46%;
  }
}
@media screen and (max-width: 600px) {
  .p-plan-saidan-fst-persona__01 {
    display: none;
  }
  .p-plan-saidan-fst-persona__02 {
    display: none;
  }
}
.p-plan-saidan-main {
  width: 100%;
  background: #986DB2;
  mix-blend-mode: multiply;
}
.p-plan-saidan-main h2 {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  text-align: center;
  color: #fff;
}
.p-plan-saidan-main h2 + p {
  font-family: "Zen Old Mincho", sans-serif;
  text-align: center;
}
.p-plan-saidan-main h2 + p span {
  color: #fff;
}
.p-plan-saidan-main ul {
  flex-wrap: wrap;
  gap: 5rem 3rem;
}
.p-plan-saidan-main ul li {
  width: 100%;
}
.p-plan-saidan-main ul li h4 {
  font-family: YakuHanJP, "Zen Old Mincho", sans-serif;
  color: #fff;
}
.p-plan-saidan-main ul li h4 + p {
  margin: 1rem 0 1.5rem 0;
  font-size: 1rem;
  color: #fff;
}
.p-plan-saidan-main ul li ul {
  flex-wrap: nowrap;
}
.p-plan-saidan-main ul li ul li {
  width: 48.5%;
}
@media screen and (max-width: 767px) {
  .p-plan-saidan-main ul {
    gap: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .p-plan-saidan-main ul li ul {
    flex-wrap: wrap;
  }
  .p-plan-saidan-main ul li ul li {
    width: 100%;
  }
}

.v-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 5rem 3rem;
}
.v-list a {
  display: grid;
  gap: 1.3rem;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.v-list a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .v-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .v-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.v-img {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  background: #d9d9d9;
  overflow: hidden;
}
.v-img img {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: auto;
}
.v-name {
  font-size: 2.4rem;
  line-height: 1;
}
.v-name span {
  margin-left: 0.3rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  .v-name {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }
}
.v-plan {
  padding: 0.5rem 1rem 0.6rem;
  display: inline-block;
  line-height: 1;
}
.v-plan.cremation {
  background: rgba(203, 64, 66, 0.24);
}
.v-plan.family {
  background: rgba(34, 125, 81, 0.24);
}
.v-plan.general {
  background: rgba(152, 109, 178, 0.24);
}
.v-plan + .btn-arrow {
  margin: 0;
}
.v-txt {
  display: -webkit-box;
  font-size: 1.2rem;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
}
.v-cont h2 {
  display: inline-block;
  line-height: 1;
}
.v-cont h2 span {
  font-size: 2.2rem;
  padding-left: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .v-cont h2 span {
    font-size: clamp(1.6rem, 1.833vw, 2.2rem);
  }
}
.v-cont div h4 {
  display: inline-block;
  padding-right: 1rem;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .v-cont div {
    width: 100%;
    margin-top: 0.8rem;
    justify-content: end;
  }
}
@media screen and (max-width: 480px) {
  .v-cont h2 {
    width: 100%;
    display: block;
  }
  .v-cont {
    flex-direction: column;
  }
}
.v-talk .fr-faq-talk__user__fkd {
  max-width: 64rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.v-talk .fr-faq-talk__client__fkd {
  max-width: 64rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.n-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 3rem 2rem;
}
.n-list li a {
  padding-bottom: 1.3rem;
  display: grid;
  gap: 1.3rem;
  border-bottom: solid 1px rgba(28, 28, 28, 0.2);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.n-list li a:hover {
  opacity: 0.6;
}
.n-list li a img {
  width: 100%;
  aspect-ratio: 8/5;
}
.n-list li a p {
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
}
.n-list li a span {
  text-align: right;
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .n-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
  .n-list li a {
    padding-bottom: 0.7rem;
    gap: 0.6rem;
  }
}
.n-ttl {
  padding-bottom: 4rem;
  border-bottom: solid 1px rgba(28, 28, 28, 0.2);
  position: relative;
}
.n-ttl::before {
  content: "";
  width: 8rem;
  height: 1px;
  margin: auto;
  display: block;
  background: #986DB2;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.n-ttl .date {
  font-size: 1.2rem;
  opacity: 0.6;
}
.n-txt {
  word-wrap: break-word;
}

.q-list li {
  width: 100%;
  border-top: solid 1px rgba(28, 28, 28, 0.2);
}
.q-list li:last-child {
  border-bottom: solid 1px rgba(28, 28, 28, 0.2);
}
.q-list li p {
  width: 100%;
}
.q-list li p span {
  margin-right: 1rem;
  font-weight: 400;
}
.q-list li p:first-child {
  font-weight: bold;
}
.q-list li p:last-child {
  margin-top: 1rem;
}
.q-list li p:last-child span {
  color: #CB4042;
}

.c-list ul li {
  width: 100%;
  border-top: solid 1px rgba(28, 28, 28, 0.2);
}
.c-list ul li:last-child {
  border-bottom: solid 1px rgba(28, 28, 28, 0.2);
}
.c-list ul li p:first-child {
  width: 30%;
  padding-right: 3rem;
  font-weight: bold;
}
.c-list ul li p:last-child {
  width: 70%;
}
@media screen and (max-width: 600px) {
  .c-list ul li {
    flex-direction: column;
  }
  .c-list ul li p:first-child {
    width: 100%;
  }
  .c-list ul li p:last-child {
    width: 100%;
    padding-top: 0.3rem;
  }
}
.c-access iframe {
  width: 100%;
}

.ct-wrap {
  border-top: solid 1px rgba(28, 28, 28, 0.2);
  border-bottom: solid 1px rgba(28, 28, 28, 0.2);
}
.ct-wrap-line, .ct-wrap-tel {
  width: 50%;
  padding: 3rem 0;
}
.ct-wrap-line {
  border-right: solid 1px rgba(28, 28, 28, 0.2);
}
.ct-wrap-line a {
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.ct-wrap-line a img {
  width: 94%;
  margin: 3rem auto 0;
  display: block;
}
.ct-wrap-line a:hover {
  opacity: 0.6;
}
.ct-wrap-tel .btn-tel {
  height: auto;
  padding: 0;
  flex-direction: column-reverse;
  background: unset;
  border: unset;
  position: relative;
}
.ct-wrap-tel .btn-tel__sub {
  width: calc(100% - 3.2rem);
  margin: 0 0 0 auto;
  padding: 0;
  flex-direction: row;
  justify-content: flex-end;
  background: unset;
  gap: 0.2rem;
}
.ct-wrap-tel .btn-tel__sub p {
  padding: 0.3rem 3.07rem;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #fff;
  background: #1C1C1C;
}
.ct-wrap-tel .btn-tel__main {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  font-size: 5.2rem;
  color: #1C1C1C;
}
.ct-wrap-tel .btn-tel__main svg {
  width: 2.8rem;
  margin-top: 0.7rem;
}
.ct-wrap-tel .btn-tel__main svg path {
  fill: #1C1C1C;
}
.ct-wrap-tel .btn-tel:hover {
  background: unset;
  opacity: 0.6;
}
.ct-wrap-tel .btn-tel:hover .btn-tel__sub {
  background: unset;
}
.ct-wrap-tel .btn-tel:hover .btn-tel__sub p {
  color: #fff;
  background: #1C1C1C;
}
.ct-wrap-tel .btn-tel:hover .btn-tel__main {
  color: unset;
}
.ct-wrap-tel .btn-tel:hover .btn-tel__main svg path {
  fill: #1C1C1C;
}
@media screen and (max-width: 959px) {
  .ct-wrap > div {
    flex-direction: column;
  }
  .ct-wrap > div .ct-wrap-line,
  .ct-wrap > div .ct-wrap-tel {
    width: 100%;
    padding: 2rem 0;
    flex-direction: column;
    align-items: center;
  }
  .ct-wrap > div .ct-wrap-line {
    border-right: unset;
  }
  .ct-wrap > div .ct-wrap-line a img {
    max-width: 40rem;
    margin: 2rem auto 0;
  }
  .ct-wrap > div .ct-wrap-tel a {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .ct-wrap > div .ct-wrap-line {
    padding: 3rem 0 1.5rem;
  }
  .ct-wrap > div .ct-wrap-tel {
    padding: 1.5rem 0 3rem;
  }
  .ct-wrap > div .ct-wrap-line a img {
    width: 78.333vw;
    margin: 1.3rem auto 0;
  }
  .ct-wrap > div .ct-wrap-tel a {
    margin-top: 1.333rem;
  }
  .ct-wrap > div .ct-wrap-tel a .btn-tel__sub p {
    padding: 0.3rem 6.264vw;
    font-size: clamp(1.2rem, 3.333vw, 1.6rem);
  }
  .ct-wrap > div .ct-wrap-tel a .btn-tel__main {
    font-size: 10.833vw;
  }
  .ct-wrap > div .ct-wrap-tel a .btn-tel__main svg {
    width: 5.833vw;
  }
}
.ct-main {
  max-width: 80rem;
  margin-right: auto;
  margin-left: auto;
}
.ct-main .accent {
  margin: 0 0 0 0.5rem;
  color: #CB4042;
}
.ct-main .accent-s {
  margin: 0.8rem 0 0 0;
  display: inline-block;
  font-size: 1.2rem;
  color: #CB4042;
}
@media screen and (max-width: 959px) {
  .ct-main {
    max-width: 96vw;
  }
}

.plan-other h2 {
  text-align: center;
}
.plan-other ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 3rem;
}
.plan-other ul li {
  width: 100%;
}
.plan-other ul li a {
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.plan-other ul li a:hover {
  opacity: 0.6;
}
.plan-other ul li a div {
  margin-top: 1.5rem;
}
.plan-other ul li a div p {
  font-size: 2rem;
}
.plan-other ul li a div p span {
  font-size: 1.6rem;
}
@media screen and (max-width: 959px) {
  .plan-other ul li div p {
    font-size: clamp(1.6rem, 2.085vw, 2rem);
  }
  .plan-other ul li div p span {
    font-size: clamp(1.2rem, 1.668vw, 1.6rem);
  }
}
@media screen and (max-width: 600px) {
  .plan-other ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.pagination {
  margin-top: 8rem;
  gap: 1rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 5rem;
  }
}
.pagination .screen-reader-text {
  display: none;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.pagination .nav-links .next,
.pagination .nav-links .prev {
  display: none !important;
}
.pagination .nav-links .page-numbers {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1;
  border: solid 1px rgba(28, 28, 28, 0.2);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.pagination .nav-links .page-numbers.current {
  color: #fff;
  background: #986DB2;
}
.pagination .nav-links .page-numbers:hover {
  color: #fff;
  background: #986DB2;
}
@media screen and (max-width: 1200px) {
  .pagination .nav-links .page-numbers {
    font-size: clamp(1.4rem, 1.333vw, 1.6rem);
  }
}
@media screen and (max-width: 767px) {
  .pagination .nav-links {
    gap: 0.6rem;
  }
  .pagination .nav-links .page-numbers {
    width: clamp(2.5rem, 3.911vw, 3rem);
    height: clamp(2.5rem, 3.911vw, 3rem);
  }
}/*# sourceMappingURL=style.css.map */