@charset "UTF-8";
/*! ==================================================
※※※※※※※※※※※※※※※※※※※※※※※※※
このCSSファイルはSassから生成されていますので、
編集しないようご注意ください。
※※※※※※※※※※※※※※※※※※※※※※※※※
==================================================== */
/*----------------------------------------
// Reset
----------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

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

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
// Base
----------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 750px) {
  html {
    font-size: 80%;
  }
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #5F554C;
  background: #fff;
}

a {
  color: #5F554C;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover, a:focus {
  opacity: 0.7;
}

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

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

/*----------------------------------------
// Layout
----------------------------------------*/
body::before {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  content: "";
  width: 100vw;
  height: 100vh;
  background: url("../img/body-bg.jpg") center/cover;
}

.wrapper {
  overflow-x: hidden;
  max-width: 100rem;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .wrapper {
    max-width: 78.125rem;
    padding-top: 1.953125rem;
  }
}

.main-contents {
  width: 37.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .main-contents {
    overflow-x: hidden;
    margin-left: auto;
    margin-right: 3rem;
    border: 1px solid #E97391;
    border-bottom: none;
    box-sizing: content-box;
  }
}

/*----------------------------------------
// PC Menu
----------------------------------------*/
.pc-menu {
  display: none;
}

@media screen and (min-width: 1000px) {
  .pc-menu {
    position: fixed;
    z-index: 99;
    top: 1.953125rem;
    right: calc(50% + 5.859375rem);
    display: block;
    width: 27.34375rem;
    height: calc(100% - 3.90625rem);
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .pc-menu::-webkit-scrollbar {
    display: none;
  }
  .pc-menu__head {
    text-align: center;
  }
  .pc-menu__logo {
    display: inline-block;
    width: 15.625rem;
  }
  .pc-menu__title {
    display: inline-block;
    margin-top: 0.78125rem;
    width: 27.109375rem;
  }
  .pc-menu__title img {
    margin: -0.390625rem;
  }
  .pc-menu__body {
    margin-top: 0.78125rem;
    padding: 0 2.34375rem;
  }
  .pc-menu__cv {
    margin-top: 0.78125rem;
  }
  .pc-menu .cv__card {
    margin-top: 0.78125rem;
    margin-left: 0;
    margin-right: 0;
  }
  /* pc-nav（PC用ナビゲーション） */
  .pc-nav__item:not(:first-child) {
    margin-top: 1.5625rem;
  }
  .pc-nav__link {
    font-size: 1.5625rem;
    font-weight: 500;
    line-height: 1.3;
  }
}
/*----------------------------------------
// fixed-header（追従ボタン）
----------------------------------------*/
.fixed-header {
  position: fixed;
  z-index: 99;
  bottom: 0;
  display: grid;
  grid-template-areas: "logo logo" "tel line";
  width: 100%;
  max-width: 37.5rem;
  background-color: #fff;
  opacity: 0;
  transform: translateY(100%);
}
.fixed-header.is-shown {
  animation: moveUp 0.5s forwards;
}
@keyframes moveUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fixed-header.is-hidden {
  animation: moveDown 0.5s forwards;
}
@keyframes moveDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
@media screen and (min-width: 1000px) {
  .fixed-header {
    display: none;
  }
}

.fixed-header__logo {
  grid-area: logo;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.3rem;
}
.fixed-header__logo img {
  width: 16.6rem;
}

.fixed-header__btn {
  display: block;
}
.fixed-header__btn._tel {
  grid-area: tel;
  width: 28.2rem;
}
.fixed-header__btn._line {
  grid-area: line;
  width: 9.3rem;
}

/*----------------------------------------
// Component
----------------------------------------*/
/* 共通の見出し */
.heading {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7.2rem;
  font-size: 2.4rem;
  line-height: 1.3;
  text-align: center;
  border-top: 2px solid #FFB0BB;
  border-bottom: 2px solid #FFB0BB;
}
.heading::before {
  position: absolute;
  top: 1rem;
  left: 0;
  content: "";
  width: 100%;
  border-top: 1px solid #FFB0BB;
}
.heading::after {
  position: absolute;
  bottom: 1rem;
  left: 0;
  content: "";
  width: 100%;
  border-bottom: 1px solid #FFB0BB;
}

.bubble-heading {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 33.5rem;
  height: 5.8rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  border-radius: 2.9rem;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background: #FFA7A6;
}
.bubble-heading::after {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  border-style: solid;
  border-width: 23px 13px 0 13px;
  border-color: #FFA7A6 transparent transparent transparent;
}

/*----------------------------------------
// CVエリア
----------------------------------------*/
.cv {
  padding: 0.5rem 0.7rem 1.5rem;
  background: #FFA7A6;
}

.cv__body {
  margin-top: -11.4rem;
  padding: 11.4rem 0.8rem 2rem;
  background: #fff;
}

.cv__card {
  margin: 0 -0.8rem;
}

.cv__btn {
  display: block;
}
.cv__btn:not(:first-of-type) {
  margin-top: 1.1rem;
}

/*----------------------------------------
// reason（満足度）
----------------------------------------*/
.reason {
  background: url("../img/reason-bg.jpg") center/cover;
}

.reason__head {
  padding: 6rem 2rem 0;
}

.reason__body {
  background: #fff;
  margin-top: -3.5rem;
  padding: 6rem 2rem 4rem;
}

.reason__list {
  margin-top: 4rem;
}

.reason__item:not(:first-child) {
  margin-top: 4rem;
}

.reason__title {
  position: relative;
  padding-left: 2.7rem;
  font-size: 2rem;
  line-height: 1.56;
}
.reason__title span {
  background: linear-gradient(transparent 68.75%, #FEDCDB 68.75%);
}
.reason__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url("../img/icon_checkbox.svg") center/contain no-repeat;
}

.reason__text {
  margin-top: 1rem;
  line-height: 1.6;
}

.reason__footer {
  padding: 3rem 1.75rem 4rem;
}

.reason__partnership-img:not(:first-child) {
  margin-top: 2rem;
}

/*----------------------------------------
// plan（プラン）
----------------------------------------*/
.plan {
  padding: 4rem 1.75rem 0;
  background: url("../img/gradation-bg.jpg") center/cover;
}

.plan__box {
  padding: 3rem 2rem 4rem;
  border-radius: 3rem;
  background: #fff;
}

.plan__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 4.8rem;
  text-align: center;
  line-height: 7rem;
}
.plan__heading::before {
  content: "";
  display: inline-block;
  width: 6.7rem;
  height: 5.6rem;
  margin-bottom: 1rem;
  background: url("../img/illust_sakura.svg") center/contain no-repeat;
}

.plan__img {
  margin-top: 1rem;
}

.plan__text {
  margin-top: 1rem;
  line-height: 1.6;
}

.plan__table {
  margin-top: 5rem;
}

.plan__details {
  position: relative;
  height: 10.9rem;
  padding: 1rem 2rem;
  margin: 0 -2rem;
  background: #fff;
}
.plan__details::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  border-style: solid;
  border-width: 5rem 0 0 18.75rem;
  border-color: transparent transparent transparent #FFA7A6;
}
.plan__details::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  border-style: solid;
  border-width: 0 0 5rem 18.75rem;
  border-color: transparent transparent #FFA7A6 transparent;
}

.plan__details-text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

/* plan-card */
.plan-card {
  margin-top: 6rem;
  border-radius: 3rem;
  background: #fff;
}

.plan-card__head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7.2rem;
  padding: 2rem;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  color: #fff;
  background: #5F554C;
}

.plan-card__title {
  font-size: 2.4rem;
  text-align: center;
}

.plan-card__body {
  padding: 2rem 2rem 4rem;
}

.plan-card__price {
  margin-top: 1rem;
}

.plan-card__text {
  margin-top: 1rem;
  line-height: 1.6;
}

.plan-card__caption {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.3;
}

.plan-card:nth-of-type(2) .plan-card__head {
  background: #E97391;
}

.plan-card:nth-of-type(3) .plan-card__head {
  background: #B388D4;
}

/* other-plans（その他のプラン） */
.other-plans {
  margin: 8rem -2rem 0;
  background: #fff;
}

.other-plans__body {
  padding: 3rem 2rem;
}

.other-plans__item:not(:first-child) {
  margin-top: 3rem;
}

.other-plans__text {
  font-weight: bold;
  line-height: 1.6;
}

.other-plans__img {
  margin-top: 0.5rem;
}

/*----------------------------------------
// diff（違い）
----------------------------------------*/
.diff, .kind {
  padding: 4rem 0;
  background: #FAF0EF;
}

.diff__body, .kind__body {
  background: #fff;
}

.diff__body, .kind__body {
  margin-top: -2.5rem;
  padding: 5rem 2rem 3rem;
}

.diff__text {
  line-height: 1.6;
}

.diff__table {
  margin-top: 3rem;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

/*----------------------------------------
// kind（種類）
----------------------------------------*/
.kind {
  padding: 1rem 0 0;
}

.kind__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2rem;
}

.kind__item {
  width: calc((100% - 4rem) / 3);
  padding: 1rem 0.5rem;
  text-align: center;
}

.kind__img {
  display: inline-block;
  width: 8rem;
}
.kind__img + span {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.4rem;
  line-height: 2rem;
}

.kind__text {
  margin-top: 2rem;
  line-height: 1.6;
  text-align: center;
}

/*----------------------------------------
// feature（他者との違い）
----------------------------------------*/
.feature {
  padding: 4rem 1.75rem 6rem;
  background: url("../img/gradation-bg.jpg") center/cover;
}

.feature__inner {
  padding: 3rem 2rem 4rem;
  border-radius: 3rem;
  background: #fff;
}

.feature__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
}
.feature__heading span {
  display: block;
  margin-top: -1rem;
  font-size: 4.8rem;
  line-height: 7rem;
}
.feature__heading::before {
  content: "";
  display: inline-block;
  width: 6.7rem;
  height: 5.6rem;
  margin-bottom: 1rem;
  background: url("../img/illust_sakura.svg") center/contain no-repeat;
}

.feature__img {
  margin-top: 1rem;
}

.feature__table {
  overflow: hidden;
  width: 100%;
  margin-top: 6rem;
  border-radius: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.feature__table th,
.feature__table td {
  min-width: 9rem;
  padding: 1rem;
  font-weight: bold;
  line-height: 1.6;
  vertical-align: middle;
  color: #fff;
  background: #E97391;
  border: 1px solid #fff;
}
.feature__table th {
  text-align: center;
}

.feature__list {
  margin-top: 6rem;
  margin-left: -2rem;
  margin-right: -2rem;
}

/* feature-card（特徴１〜４） */
.feature-card {
  position: relative;
  margin-top: 7.5rem;
  padding: 4rem 2rem 0;
  border-top: 0.3rem solid #FEDCDB;
}

.feature-card__label {
  position: absolute;
  top: -1.4rem;
  left: 2rem;
  display: block;
  width: 7.3rem;
  height: 5.5rem;
  padding: 0.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.56;
  text-align: right;
  color: #fff;
  background: url("../img/feature-card-label.svg") center/contain no-repeat;
}
.feature-card__label strong {
  font-size: 2.1rem;
}

.feature-card__title {
  font-size: 2rem;
  line-height: 1.75;
  text-align: center;
}
.feature-card__title span {
  background: linear-gradient(transparent 68.75%, #FEDCDB 68.75%);
}

.feature-card__img {
  margin-top: 1rem;
}

.feature-card__text {
  margin-top: 1rem;
  line-height: 1.6;
}

/*----------------------------------------
// price（料金表）
----------------------------------------*/
.price {
  background: #FFFCFC;
}

.price__body {
  padding: 4rem 1.75rem 6rem;
}

/* price-table */
.price-table {
  border-radius: 3rem;
  background: #fff;
}
.price-table + .price-table {
  margin-top: 4rem;
}

.price-table__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7.2rem;
  padding: 2rem 1rem;
  cursor: pointer;
}

.price-table__title {
  font-size: 2rem;
  line-height: 1.56;
}
.price-table__title span {
  background: linear-gradient(transparent 68.75%, #FEDCDB 68.75%);
}

.price-table__icon {
  position: relative;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
}
.price-table__icon::before, .price-table__icon::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 1.6rem;
  height: 2px;
  background: #5F554C;
  border-radius: 1px;
  transition: all 0.3s;
}
.price-table__icon::after {
  transform: rotate(90deg);
}

.price-table__body {
  display: none;
}

.price-table__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
}

.price-table__label {
  flex-shrink: 0;
  min-width: 6rem;
  padding: 0 1rem;
  border-radius: 1.25rem;
  font-size: 1rem;
  line-height: 2.5;
  text-align: center;
  color: #fff;
  background: #FFA7A6;
}

.price-table__text {
  font-size: 1.4rem;
  line-height: 1.6;
}

.price-table__price {
  flex-shrink: 0;
  font-size: 1.4rem;
  text-align: center;
}
.price-table__price span {
  font-size: 1rem;
  white-space: nowrap;
}

.price-table__head.is-opened .price-table__icon::before {
  opacity: 0;
  transform: rotate(-90deg);
}
.price-table__head.is-opened .price-table__icon::after {
  transform: rotate(0deg);
}

/*----------------------------------------
// flow（流れ）
----------------------------------------*/
.flow {
  padding: 5rem 1.75rem 2rem;
  background: #FFFCFC;
}

.flow__list {
  margin-top: 2.5rem;
}

.flow__item {
  position: relative;
  padding: 2rem;
  border-radius: 3rem;
  text-align: center;
  background: #fff;
  border: 1px solid #FFB0BB;
}
.flow__item:not(:first-child) {
  margin-top: 3rem;
}
.flow__item:not(:first-child)::after {
  position: absolute;
  top: calc(-3rem - 1px);
  left: 50%;
  transform: translateX(-50%);
  content: "";
  height: 3rem;
  width: 0.6rem;
  background: #FFB0BB;
}
.flow__item::before {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 5.3rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.flow__item:nth-of-type(1)::before {
  background-image: url("../img/flow-label_01.png");
}
.flow__item:nth-of-type(2)::before {
  background-image: url("../img/flow-label_02.png");
}
.flow__item:nth-of-type(3)::before {
  background-image: url("../img/flow-label_03.png");
}
.flow__item:nth-of-type(4)::before {
  background-image: url("../img/flow-label_04.png");
}

.flow__item-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.flow__item-head {
  flex-shrink: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.flow__img {
  width: 6rem;
}

.flow__title {
  font-size: 2rem;
  line-height: 1.56;
  text-align: center;
}
.flow__title span {
  background: linear-gradient(transparent 68.75%, #FEDCDB 68.75%);
}

.flow__text {
  line-height: 1.6;
  text-align: left;
}

.flow__card {
  margin-top: 1rem;
}

/*----------------------------------------
// funeral（安置）
----------------------------------------*/
.funeral {
  padding: 2rem 1.75rem 6rem;
  background: #FFFCFC;
}

.funeral__inner {
  padding: 1rem 2rem 4rem;
  border-radius: 3rem;
  background: #fff;
}

.funeral__img {
  margin-top: 3.5rem;
}

.funeral__list {
  margin-top: 3rem;
}

.funeral__item:nth-of-type(1) .funeral__title::before {
  background-image: url("../img/funeral-label_01.png");
}
.funeral__item:nth-of-type(2) .funeral__title::before {
  background-image: url("../img/funeral-label_02.png");
}
.funeral__item:nth-of-type(3) .funeral__title::before {
  background-image: url("../img/funeral-label_03.png");
}
.funeral__item:not(:first-child) {
  margin-top: 3rem;
}

.funeral__title {
  font-size: 2rem;
  line-height: 1.6;
}
.funeral__title span {
  background: linear-gradient(transparent 68.75%, #FEDCDB 68.75%);
}
.funeral__title:before {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 2.2rem;
  margin-bottom: 0.5rem;
  margin-right: 1rem;
  vertical-align: middle;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.funeral__text {
  margin-top: 1rem;
  line-height: 1.6;
}

/*----------------------------------------
// voice（お客様のお声）
----------------------------------------*/
.voice {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(#FFFCFC, rgba(255, 236, 251, 0.8));
}

.voice__lead {
  display: inline-block;
  width: 33.1rem;
  margin-top: 4rem;
}

.voice__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2rem;
  margin-top: 4rem;
  text-align: left;
}

.voice__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 2rem) / 2);
  padding: 1rem 1rem 2rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 0 1rem rgba(56, 74, 96, 0.2);
}

.voice__img {
  width: 8rem;
}

.voice__text {
  margin-top: 1rem;
  line-height: 1.6;
}

.voice__name {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
}

/*----------------------------------------
// goods（グッズ案内）
----------------------------------------*/
.goods {
  background: #FFFCFC;
}

.goods__body {
  padding: 4rem 1.75rem 6rem;
}

.goods__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2rem;
}

.goods__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc((100% - 2rem) / 2);
  text-align: center;
  border-radius: 1rem;
  background: #fff;
}

.goods__data {
  padding: 1.5rem 2rem;
}

.goods__img {
  order: -1;
}

.goods__title {
  font-size: 1.4rem;
  line-height: 1.8;
}

.goods__price {
  display: block;
  font-size: 1rem;
}

/*----------------------------------------
// faq（QA）
----------------------------------------*/
.faq {
  background: #FFFCFC;
}

.faq__body {
  padding: 4rem 1.75rem 6rem;
}

.faq__item {
  padding: 2rem;
  border-radius: 3rem;
  background: #fff;
}
.faq__item:not(:first-child) {
  margin-top: 4rem;
}

.faq__title {
  position: relative;
  padding-left: 2.2rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
.faq__title span {
  background: linear-gradient(transparent 68.75%, #FEDCDB 68.75%);
}
.faq__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "Q";
  color: #FFA7A6;
}

.faq__text {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.3;
}

/*----------------------------------------
// footer
----------------------------------------*/
.footer {
  padding: 0.5rem 1rem;
  color: #fff;
  background: #E97391;
}

.footer__copyright {
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
}/*# sourceMappingURL=style.css.map */