@charset "UTF-8";
html {
  /* デフォルト1rem=10px */
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (min-width: 751px) and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
body {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 1.3rem;
  }
}
body #page {
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 751px) and (max-width: 1200px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1201px) {
  .sp {
    display: none !important;
  }
}
*,
*::before,
*::after {
  line-height: 1;
  text-align: justify;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 999999;
}
.loader.hidden {
  animation: 3s forwards ease-in loader;
}

@keyframes loader {
  0% {
    background-color: #fff;
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
a,
a:active {
  color: #000;
  text-decoration: none;
  transition: all 0.4s ease-in;
}
a:hover,
a:active:hover {
  opacity: 0.6;
}

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

h1,
h2 {
  margin: 0;
}

p {
  line-height: 1.8;
}

table {
  border-spacing: 0;
}

.float-clear::after, .float-clear::before {
  content: "";
  clear: both;
  display: block;
}

/* リンクボタン */
.link.more {
  position: relative;
  font-size: 1.56rem;
  padding-bottom: 0.5em;
  margin-right: 1.5em;
  display: inline-block;
  width: 6em;
  text-align: left;
}
.link.more::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.2em;
  left: 0;
  bottom: 0;
  background-color: #000;
}
.link.more::after {
  content: url(../images/common/icon_open_other.svg);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.4em;
  transform: translateX(120%);
}
.link.more.white {
  color: #fff;
}
.link.more.white::before {
  background-color: #fff;
}
.link.more.white::after {
  content: url(../images/common/icon_open_other_white.svg);
}

.btn {
  display: inline-flex;
  padding: 0.17em 1em;
  border-radius: 100vh;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  cursor: pointer;
}
.btn.round {
  border-radius: 100vh;
}
.btn.with-arrow {
  gap: 0.5em;
  padding: 0.17em 0.17em 0.17em 1em;
}
.btn.with-arrow::after {
  content: "\e5c8";
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 100, "GRAD" 0, "opsz" 24;
  font-size: 0.8em;
  background-color: #fff;
  border-radius: 100vh;
  height: 1.5em;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.gradation {
  background-image: linear-gradient(90deg, #e885a3 19%, #9e6daa);
  color: #fff;
  font-weight: 700;
}
.btn.gradation::after {
  color: #9c6da5;
}
.btn > span {
  width: max-content;
}

.bg-orange {
  background-color: #b6800c;
  color: #fff;
}
.bg-orange::after {
  color: #b6800c;
}

.bg-blue {
  background-color: #008dc5;
  color: #fff;
}
.bg-blue::after {
  color: #008dc5;
}

.scroll-sign {
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 0.4em;
  flex-direction: column;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  .scroll-sign {
    font-size: 1.3rem;
  }
}
.scroll-sign::after {
  content: "";
  width: 1px;
  background-color: #fff;
  height: 43px;
}
@media screen and (max-width: 750px) {
  .scroll-sign::after {
    height: 26px;
  }
}
.scroll-sign > span {
  animation: loop_up_down 1.5s linear infinite;
}
@keyframes loop_up_down {
  0% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-1em);
  }
  100% {
    transform: translateY(0);
  }
}

.flex-spacer {
  flex: 1;
}

/* パンくずリスト */
.breadcrumb-wrapper {
  max-width: 114rem;
  padding: 0 2rem;
  margin: 0 auto;
}
.breadcrumb-wrapper ul.breadcrumb {
  list-style: none;
  padding: 0;
}
.breadcrumb-wrapper ul.breadcrumb li {
  display: inline;
  color: #80919f;
  font-size: 1.3rem;
}
@media screen and (max-width: 750px) {
  .breadcrumb-wrapper ul.breadcrumb li {
    font-size: 1.8rem;
  }
}
.breadcrumb-wrapper ul.breadcrumb li a {
  text-decoration: none;
  color: #80919f;
}
.breadcrumb-wrapper ul.breadcrumb li + li:before {
  content: ">";
  margin: 0.5em;
}

/* カテゴリー */
.category {
  font-size: 0.8em;
  border-radius: 0.2em;
  padding: 0.2em 0.3em;
  text-align: center;
}
.category.staff {
  background-color: #3366c5;
  color: #fff;
}
.category.notice {
  background-color: #fb9907;
  color: #fff;
}

.grecaptcha-badge {
  visibility: hidden;
}

.more-info a {
  display: flex;
  align-items: center;
  column-gap: 0.2em;
}
.more-info a::before {
  content: url(../images/common/icon_magnify.svg);
  width: 1em;
  padding-top: 0.2em;
}

.exp {
  order: 2;
  color: #dc0012;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .exp {
    font-size: 1.2rem;
  }
}

.indent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.8;
}

.font-19 {
  font-size: 1.9rem;
}

.font-23 {
  font-size: 2.3rem;
}
@media screen and (max-width: 750px) {
  .font-23 {
    font-size: 1.6rem;
  }
}

.font-26 {
  font-size: 2.6rem;
}
@media screen and (max-width: 750px) {
  .font-26 {
    font-size: 1.8rem;
  }
}

.font-40 {
  font-size: 4rem;
}
@media screen and (max-width: 750px) {
  .font-40 {
    font-size: 2.8rem;
  }
}

.wight-700 {
  font-weight: 700;
}

.section {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 5rem;
}
@media screen and (max-width: 750px) {
  .section {
    padding: 0 1.5rem;
  }
}

.section + .section {
  margin-top: 11.5rem;
}
@media screen and (max-width: 750px) {
  .section + .section {
    margin-top: 0;
    padding-top: 4rem;
  }
}

.section + .bg-wrapper {
  margin-top: 11.5rem;
}
@media screen and (max-width: 750px) {
  .section + .bg-wrapper {
    margin-top: 0;
    padding-top: 4rem;
  }
}

.bg-wrapper + .section {
  margin-top: 11.5rem;
}
@media screen and (max-width: 750px) {
  .bg-wrapper + .section {
    margin-top: 0;
    padding-top: 4rem;
  }
}

.bg-wrapper + .bg-wrapper {
  margin-top: 11.5rem;
}
@media screen and (max-width: 750px) {
  .bg-wrapper + .bg-wrapper {
    margin-top: 0;
    padding-top: 4rem;
  }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 9999999;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
}
@media screen and (max-width: 750px) {
  .site-header {
    height: 6rem;
  }
}
.site-header .site-branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
}
.site-header .site-branding .site-title a {
  display: flex;
  align-items: flex-end;
  gap: 1em;
  font-size: 1.3rem;
}
.site-header .site-branding .site-title a img {
  height: 4rem;
  width: auto;
}
.site-header .site-branding .site-title a img .right {
  height: 100%;
}
.site-header .link-wrapper {
  max-width: 5rem;
}

.main-navigation .btn-trigger {
  box-sizing: border-box;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 99999;
  padding: 1.3rem 1rem;
  width: 6rem;
  height: 6rem;
}
.main-navigation .btn-trigger .btn-wrapper {
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
}
.main-navigation .btn-trigger .btn-wrapper span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.main-navigation .btn-trigger .btn-wrapper span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.main-navigation .btn-trigger .btn-wrapper span:nth-child(3) {
  bottom: 0;
}
.main-navigation .btn-trigger .btn-wrapper.is-active span {
  background-color: #000;
}
.main-navigation .btn-trigger .btn-wrapper.is-active span:nth-child(1) {
  transform: translateY(1.7rem) rotate(-45deg);
}
.main-navigation .btn-trigger .btn-wrapper.is-active span:nth-child(2) {
  opacity: 0;
}
.main-navigation .btn-trigger .btn-wrapper.is-active span:nth-child(3) {
  transform: translateY(-1.4rem) rotate(45deg);
}
.main-navigation.toggled .btn-trigger {
  background-image: unset;
}
.main-navigation .main-navi-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5rem;
  position: absolute;
  top: 11rem;
  right: 0;
  overflow: hidden;
  z-index: 9999;
  transform-origin: top left;
  transform: scaleY(0) translateX(-50%);
  transition: all 0.6s ease-out;
  padding: 0;
  width: 100%;
  max-width: 39rem;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 1.5rem;
}
@media screen and (max-width: 750px) {
  .main-navigation .main-navi-wrapper {
    top: 7rem;
    right: unset;
    left: 50%;
    width: 90%;
  }
}
.main-navigation .main-navi-wrapper.is-active {
  height: auto;
  overflow: auto;
  transform: scaleY(1) translateX(-50%);
}
.main-navigation .main-navi-wrapper .logo {
  max-width: 16.6rem;
}
.main-navigation .main-navi-wrapper .menu-container {
  margin: 4rem 2rem;
}
.main-navigation .main-navi-wrapper .menu-container .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 28.5rem;
  flex-wrap: wrap;
}
.main-navigation .main-navi-wrapper .menu-container .menu li {
  border-top: solid 1px #000;
  width: 100%;
}
.main-navigation .main-navi-wrapper .menu-container .menu li:last-child {
  border-bottom: solid 1px #000;
}
.main-navigation .main-navi-wrapper .menu-container .menu li a,
.main-navigation .main-navi-wrapper .menu-container .menu li a:visited {
  transition: all 0.6s ease;
  line-height: 1;
  height: 100%;
  font-size: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 0.2em;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .main-navigation .main-navi-wrapper .menu-container .menu li a,
  .main-navigation .main-navi-wrapper .menu-container .menu li a:visited {
    font-size: 1.7rem;
    padding: 1em 0.2em;
  }
}
.main-navigation .main-navi-wrapper .menu-container .menu li a::after,
.main-navigation .main-navi-wrapper .menu-container .menu li a:visited::after {
  content: "\e5e1";
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 0.7em;
  margin-top: 0.4em;
  margin-right: 0.5em;
}
.main-navigation .main-navi-wrapper .menu-container .menu li .sub-menu {
  list-style: none;
  margin: 1.2em 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2em;
}
.main-navigation .main-navi-wrapper .menu-container .menu li .sub-menu li a,
.main-navigation .main-navi-wrapper .menu-container .menu li .sub-menu li a:visited {
  font-size: 1.1rem;
}
.main-navigation .main-navi-wrapper .menu-container .menu li a:not([href]):hover {
  opacity: unset !important;
}

body.index .page-main .hero-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100dvh;
  position: relative;
}
@media screen and (max-width: 750px) {
  body.index .page-main .hero-wrapper {
    height: calc(100dvh - 1px);
  }
}
body.index .page-main .hero-wrapper .hero-over {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
body.index .page-main .hero-wrapper .hero-image {
  position: absolute;
}
body.index .page-main .hero-wrapper .hero-image img {
  height: 100vh;
  object-fit: cover;
}
@media screen and (max-width: 750px) {
  body.index .page-main .hero-wrapper .hero-image img {
    width: 100vw;
    object-position: center center;
  }
}
body.index .page-main .hero-wrapper .hero-text {
  position: absolute;
  opacity: 0;
  width: 100%;
  max-width: 137rem;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}
body.index .page-main .hero-wrapper .hero-text object image {
  opacity: 0;
}
body.index .page-main .hero-wrapper .hero-text.pc object:nth-child(1) {
  width: 40rem;
  align-self: flex-end;
}
body.index .page-main .hero-wrapper .hero-text.pc object:nth-child(2) {
  width: 31rem;
  align-self: flex-start;
  padding-top: 5rem;
}
body.index .page-main .hero-wrapper .hero-text.sp {
  flex-direction: column;
}
body.index .page-main .hero-wrapper .hero-text.sp object:nth-child(1) {
  width: 40rem;
  align-self: center;
}
body.index .page-main .hero-wrapper .hero-text.sp object:nth-child(2) {
  width: 35rem;
  align-self: center;
  padding-bottom: 4rem;
}
body.index .page-main .link-wrapper .link-list {
  list-style: none;
  margin: 0;
  padding: 7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
}
@media screen and (max-width: 750px) {
  body.index .page-main .link-wrapper .link-list {
    flex-direction: column;
    padding: 0.77rem 0 0;
    gap: 0.7rem;
  }
}
body.index .page-main .link-wrapper .link-list .list-item {
  width: 100%;
  max-width: 50rem;
}
@media screen and (max-width: 750px) {
  body.index .page-main .link-wrapper .link-list .list-item {
    max-width: unset;
  }
}
body.index .page-main .link-wrapper .link-list .list-item:nth-child(1) a {
  background-image: url(../images/index/funeral-back.jpg);
}
@media screen and (max-width: 750px) {
  body.index .page-main .link-wrapper .link-list .list-item:nth-child(1) a {
    background-image: url(../images/index/funeral-back-sp.jpg);
  }
}
body.index .page-main .link-wrapper .link-list .list-item:nth-child(2) a {
  background-image: url(../images/index/emergency-back.jpg);
}
@media screen and (max-width: 750px) {
  body.index .page-main .link-wrapper .link-list .list-item:nth-child(2) a {
    background-image: url(../images/index/emergency-back-sp.jpg);
  }
}
body.index .page-main .link-wrapper .link-list .list-item a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3rem;
  aspect-ratio: 534/457;
  background-size: cover;
  border-radius: 1.8rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  body.index .page-main .link-wrapper .link-list .list-item a {
    flex-direction: row;
    aspect-ratio: 374/134;
    align-items: flex-end;
    padding: 1.5rem;
    border-radius: unset;
  }
}
body.index .page-main .link-wrapper .link-list .list-item a:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}
body.index .page-main .link-wrapper .link-list .list-item a .text-wrapper {
  font-size: 2.3rem;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
@media screen and (max-width: 750px) {
  body.index .page-main .link-wrapper .link-list .list-item a .text-wrapper {
    padding: 0;
    font-size: 1.2rem;
    flex: 1;
  }
}
body.index .page-main .link-wrapper .link-list .list-item a .text-wrapper .line {
  padding: 0.3em 0.5em;
  background-color: #fff;
}
body.index .page-main .link-wrapper .link-list .list-item a .button-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: flex-end;
  padding: 2rem 2.4rem;
}
@media screen and (max-width: 750px) {
  body.index .page-main .link-wrapper .link-list .list-item a .button-wrapper {
    background-color: unset;
    padding: 0;
    white-space: nowrap;
  }
}
@media screen and (max-width: 750px) {
  body.index .page-main .link-wrapper .link-list .list-item a .button-wrapper .btn {
    font-size: 2.3rem;
  }
}

body.page-child .h2 {
  border: solid 2px #b6800c;
  background-color: #fff;
  border-radius: 100vh;
  font-size: 3.3rem;
  display: block;
  max-width: max-content;
  padding: 0.2em 1.5em;
  color: #b6800c;
  transform: translateY(-50%);
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  body.page-child .h2 {
    font-size: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    transform: unset;
    text-align: center;
  }
}
body.page-child .h2 .sub {
  font-size: 0.8em;
  margin-left: 1em;
}
@media screen and (max-width: 750px) {
  body.page-child .h2 .sub {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
body.page-child .page-main {
  margin-top: 10rem;
}
@media screen and (max-width: 750px) {
  body.page-child .page-main {
    margin-top: 6rem;
  }
}
body.page-child .page-main .hero-wrapper {
  width: 100%;
  max-width: unset;
  padding: 0;
  height: 72rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  body.page-child .page-main .hero-wrapper {
    height: 35.7rem;
  }
}
body.page-child .page-main .hero-wrapper .splide .splide__slide {
  display: flex;
  align-items: center;
  background-image: url(../images/funeral/hero-image01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 750px) {
  body.page-child .page-main .hero-wrapper .splide .splide__slide {
    flex-direction: column;
    justify-content: flex-end;
    background-image: url(../images/funeral/hero-image01-sp.jpg);
  }
}
body.page-child .page-main .hero-wrapper .splide .splide__slide:nth-child(2) {
  background-image: url(../images/funeral/hero-image02.jpg);
}
@media screen and (max-width: 750px) {
  body.page-child .page-main .hero-wrapper .splide .splide__slide:nth-child(2) {
    background-image: url(../images/funeral/hero-image02-sp.jpg);
  }
}
body.page-child .page-main .hero-wrapper .splide .splide__slide:nth-child(3) {
  background-image: url(../images/funeral/hero-image03.jpg);
}
@media screen and (max-width: 750px) {
  body.page-child .page-main .hero-wrapper .splide .splide__slide:nth-child(3) {
    background-image: url(../images/funeral/hero-image03-sp.jpg);
  }
}
body.page-child .page-main .hero-wrapper .splide .splide__slide .hero-text {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 750px) {
  body.page-child .page-main .hero-wrapper .splide .splide__slide .hero-text {
    padding: 0;
    max-width: 100%;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
body.page-child .page-main .hero-wrapper .splide .splide__slide .hero-text .title {
  font-family: "Noto Serif JP", serif;
  font-size: 8.5rem;
  font-weight: 700;
  color: #b6800c;
  text-shadow: 1px 1px 10px #fff, -1px 1px 10px #fff, 1px -1px 10px #fff, -1px -1px 10px #fff;
}
@media screen and (max-width: 750px) {
  body.page-child .page-main .hero-wrapper .splide .splide__slide .hero-text .title {
    font-size: 4.3rem;
  }
}
body.page-child .page-main .hero-wrapper .splide .splide__slide .hero-text .note {
  font-size: 2.5rem;
}
@media screen and (max-width: 750px) {
  body.page-child .page-main .hero-wrapper .splide .splide__slide .hero-text .note {
    font-size: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    text-align: center;
    padding: 0.3em;
  }
}
body.page-child .bg-wrapper:has(.section-management) {
  background-image: url(../images/funeral/management-back.png);
}
body.page-child .section-management .panel-list {
  list-style: none;
  margin: 0;
  padding: 5.8rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.4rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-management .panel-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 3.5rem;
  }
}
body.page-child .section-management .panel-list .list-item {
  position: relative;
  background-color: #fff;
  padding: 5.6rem 2.4rem;
  border-radius: 1em;
}
@media screen and (max-width: 750px) {
  body.page-child .section-management .panel-list .list-item {
    padding: 2rem;
  }
}
body.page-child .section-management .panel-list .list-item .no {
  font-size: 15rem;
  font-family: "Noto Serif JP", serif;
  color: #eadcbd;
  position: absolute;
  top: -11%;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (max-width: 750px) {
  body.page-child .section-management .panel-list .list-item .no {
    font-size: 12.7rem;
  }
}
body.page-child .section-management .panel-list .list-item .h3 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  z-index: 1;
  position: relative;
  border-bottom: solid 1px #000;
  padding-bottom: 0.8em;
}
@media screen and (max-width: 750px) {
  body.page-child .section-management .panel-list .list-item .h3 {
    font-size: 2.5rem;
  }
}
body.page-child .section-management .panel-list .list-item .note {
  font-size: 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-management .panel-list .list-item .note {
    font-size: 1.6rem;
  }
}
body.page-child .section-ideal {
  max-width: unset;
  padding: 0;
}
@media screen and (max-width: 750px) {
  body.page-child .section-ideal {
    padding-bottom: 6rem;
  }
}
body.page-child .section-ideal .section-content {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 5rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-ideal .section-content {
    margin-top: 0;
    padding: 4rem 1.5rem 0;
  }
}
body.page-child .section-ideal .section-content .h2 {
  color: #999189;
  border-color: #999189;
}
body.page-child .section-ideal .section-content .note {
  font-size: 2.5rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-ideal .section-content .note {
    font-size: 1.6rem;
  }
}
body.page-child .section-ideal .ideal-splide {
  margin-top: 2.5rem;
}
body.page-child .section-ideal .ideal-splide .splide__slide {
  padding: 0 2.1rem;
}
body.page-child .section-ideal .ideal-splide .splide__slide:nth-child(even) {
  padding-top: 3.8rem;
}
body.page-child .bg-wrapper:has(.section-oneday) {
  background-image: url(../images/funeral/oneday-back.png);
  background-position: center;
  background-size: cover;
  padding-bottom: 7rem;
}
@media screen and (max-width: 750px) {
  body.page-child .bg-wrapper:has(.section-oneday) {
    padding-top: 0;
  }
}
@media screen and (max-width: 750px) {
  body.page-child .section-oneday {
    padding-top: 3rem;
  }
}
body.page-child .section-oneday .h2 {
  color: #60c2dd;
  border-color: #60c2dd;
}
body.page-child .section-oneday .h2.color-pink {
  color: #f39ba9;
  border-color: #f39ba9;
}
@media screen and (max-width: 750px) {
  body.page-child .section-oneday .h2 {
    position: absolute;
    transform: translate(-50%, -2em);
    left: 50%;
    width: max-content;
  }
}
body.page-child .section-oneday .h2 .sub {
  margin-top: 0.3em;
}
body.page-child .section-oneday .panel {
  background-color: #fff;
  border-radius: 2.3rem;
  padding: 6.8rem 5rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-oneday .panel {
    margin-top: -0.5em;
    padding: 5rem 1.5rem 2rem;
    font-size: 1.7rem;
  }
}
body.page-child .section-oneday .panel + .h2 {
  margin-top: 8rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-oneday .panel + .h2 {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 750px) {
  body.page-child .section-oneday .panel:has(+ .h2) {
    margin-bottom: 5rem;
  }
}
body.page-child .section-oneday .panel .timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 4.8rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-oneday .panel .timeline-list {
    row-gap: 1em;
  }
}
body.page-child .section-oneday .panel .timeline-list .list-item {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-oneday .panel .timeline-list .list-item {
    flex-direction: column;
  }
}
body.page-child .section-oneday .panel .timeline-list .list-item.image-right .image {
  order: 2;
}
@media screen and (max-width: 750px) {
  body.page-child .section-oneday .panel .timeline-list .list-item.image-right .image {
    order: 1;
  }
}
body.page-child .section-oneday .panel .timeline-list .list-item.image-right .text {
  order: 1;
}
@media screen and (max-width: 750px) {
  body.page-child .section-oneday .panel .timeline-list .list-item.image-right .text {
    order: 2;
  }
}
body.page-child .section-oneday .panel .timeline-list .list-item .image {
  width: 40%;
}
@media screen and (max-width: 750px) {
  body.page-child .section-oneday .panel .timeline-list .list-item .image {
    width: 100%;
  }
}
body.page-child .section-oneday .panel .timeline-list .list-item .image img {
  border-radius: 2.3rem;
}
body.page-child .section-oneday .panel .timeline-list .list-item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0.3em;
  gap: 0.5em;
}
body.page-child .section-oneday .panel .timeline-list .list-item .text .line {
  border-top: dotted 3px #3ab3d5;
}
body.page-child .section-oneday .panel .timeline-list .list-item .text .timeline {
  line-height: 1.4;
}
body.page-child .section-oneday .panel .timeline-list .list-item .text .timeline .time {
  color: #3ab3d5;
}
body.page-child .section-oneday .panel.pink .timeline-list .list-item .text .line {
  border-color: #f3aaa7;
}
body.page-child .section-oneday .panel.pink .timeline-list .list-item .text .timeline .time {
  color: #f3aaa7;
}
body.page-child .section-thought .section-content .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  width: max-content;
  margin: 0 auto 4.6rem;
  column-gap: 5rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-thought .section-content .section-header {
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
    margin: 0 auto 2rem;
  }
}
@media screen and (max-width: 750px) {
  body.page-child .section-thought .section-content .section-header .image {
    order: 1;
    width: 19.6rem;
  }
}
body.page-child .section-thought .section-content .section-header .image img {
  border-radius: 1.6rem;
}
body.page-child .section-thought .section-content .section-header .title {
  font-size: 6.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  body.page-child .section-thought .section-content .section-header .title {
    order: 2;
    font-size: 2.9rem;
  }
}
body.page-child .section-thought .section-content .text {
  font-size: 2rem;
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  body.page-child .section-thought .section-content .text {
    font-size: 1.7rem;
  }
}
body.page-child .bg-wrapper:has(.section-interview) {
  background-image: url(../images/funeral/interview-back.jpg);
  padding-bottom: 7rem;
}
@media screen and (max-width: 750px) {
  body.page-child .bg-wrapper:has(.section-interview) {
    padding: 0;
  }
}
body.page-child .section-interview {
  max-width: unset;
  padding: 4rem 0 7rem;
}
body.page-child .section-interview .h2 {
  margin: 0 auto;
  border: none;
  color: #000;
  transform: unset;
}
body.page-child .section-interview .section-content {
  margin-bottom: 4rem;
}
body.page-child .section-interview .splide__slide {
  background-color: #fff;
  border-radius: 2.3rem;
  padding: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 0 2.2rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-interview .splide__slide {
    margin: 0 0.5rem;
    padding: 1.8rem;
  }
}
body.page-child .section-interview .splide__slide .item-header {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-interview .splide__slide .item-header {
    flex-direction: column;
    align-items: center;
  }
}
body.page-child .section-interview .splide__slide .item-header .image {
  width: 47%;
}
@media screen and (max-width: 750px) {
  body.page-child .section-interview .splide__slide .item-header .image {
    width: 100%;
  }
}
body.page-child .section-interview .splide__slide .item-header .image img {
  border-radius: 2rem;
}
body.page-child .section-interview .splide__slide .item-header .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
@media screen and (max-width: 750px) {
  body.page-child .section-interview .splide__slide .item-header .text {
    flex-direction: row;
    align-items: center;
  }
}
body.page-child .section-interview .splide__slide .item-header .text .sub {
  font-size: 2.3rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-interview .splide__slide .item-header .text .sub {
    font-size: 1.6rem;
  }
}
body.page-child .section-interview .splide__slide .item-header .text .name {
  font-size: 3rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-interview .splide__slide .item-header .text .name {
    font-size: 2.2rem;
  }
}
body.page-child .section-interview .splide__slide .qa .qa-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
body.page-child .section-interview .splide__slide .qa .qa-list .list-item .q,
body.page-child .section-interview .splide__slide .qa .qa-list .list-item .a {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  body.page-child .section-interview .splide__slide .qa .qa-list .list-item .q,
  body.page-child .section-interview .splide__slide .qa .qa-list .list-item .a {
    font-size: 1.6rem;
  }
}
body.page-child .section-interview .splide__slide .qa .qa-list .list-item .q {
  color: #eb6319;
}
body.page-child .section-link {
  margin-bottom: 20rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-link {
    margin-bottom: 0;
    padding: 4rem 0 8.2rem;
  }
}
body.page-child .section-link .button-wrapper {
  text-align: center;
}
@media screen and (max-width: 750px) {
  body.page-child .section-link .button-wrapper {
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 1;
  }
}
body.page-child .section-link .button-wrapper .btn {
  font-size: 5rem;
}
@media screen and (max-width: 750px) {
  body.page-child .section-link .button-wrapper .btn {
    font-size: 1.9rem;
    border-radius: unset;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  body.page-child .section-link .button-wrapper .btn.with-arrow {
    padding: 2.2rem;
  }
}
body.page-child .section-link .button-wrapper .btn.with-arrow::after {
  font-size: 1em;
  height: 2em;
}

body.emergency .page-main .hero-wrapper .splide .splide__slide {
  background-image: url(../images/emergency/hero-image01.jpg);
}
@media screen and (max-width: 750px) {
  body.emergency .page-main .hero-wrapper .splide .splide__slide {
    background-image: url(../images/emergency/hero-image01-sp.jpg);
  }
}
body.emergency .page-main .hero-wrapper .splide .splide__slide:nth-child(2) {
  background-image: url(../images/emergency/hero-image02.jpg);
}
@media screen and (max-width: 750px) {
  body.emergency .page-main .hero-wrapper .splide .splide__slide:nth-child(2) {
    background-image: url(../images/emergency/hero-image02-sp.jpg);
  }
}
body.emergency .page-main .hero-wrapper .splide .splide__slide:nth-child(3) {
  background-image: url(../images/emergency/hero-image03.jpg);
}
@media screen and (max-width: 750px) {
  body.emergency .page-main .hero-wrapper .splide .splide__slide:nth-child(3) {
    background-image: url(../images/emergency/hero-image03-sp.jpg);
  }
}
body.emergency .page-main .hero-wrapper .splide .splide__slide .hero-text .title {
  color: #0a86b9;
}/*# sourceMappingURL=style.css.map */