@charset "UTF-8";
/* ============================== */
/* デフォルトスタイルのリセット */
/* ============================== */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

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;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

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

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

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

dt {
  font-weight: bold;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =============== */
/* 共通設定 */
/* =============== */
html {
  font-size: 20px;
  scroll-padding-top: 150px;
}
@media screen and (max-width: 1760px) {
  html {
    font-size: 16px;
    scroll-padding-top: 105px;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 14px;
    scroll-padding-top: 80px;
  }
}

body {
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  line-height: 1.3;
  color: #614F3A;
  font-feature-settings: "palt";
}
@media screen and (max-width: 600px) {
  body {
    line-height: 1.5;
  }
}

a {
  transition: all 0.2s linear;
}
a:hover {
  opacity: 0.7;
}

/* ================================
ヘッダー
================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 150px;
  background-color: #fff;
}
.l-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.l-header__logo {
  display: inline-block;
  height: 80%;
  margin-right: auto;
}
.l-header__tel {
  width: 415px;
  width: 21.6145833333vw;
  padding-right: 40px;
  padding-right: 2.0833333333vw;
  margin-right: 40px;
  margin-right: 2.0833333333vw;
  border-right: 2px solid #C3C3C3;
}
.l-header__line {
  width: 240px;
  width: 12.5vw;
}
.l-header__nav {
  display: none;
}
.l-header__nav.is-active {
  display: block;
  z-index: 500;
  position: fixed;
  top: 150px;
  right: 0;
  width: 100%;
  max-width: 375px;
  height: auto;
  max-height: calc(100% - 150px);
  background-color: #F2E9D1;
  padding: 20px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.l-header__menu {
  display: flex;
  flex-direction: column;
}
.l-header__menu li {
  border-bottom: 1px solid #C0BCB1;
}
.l-header__menu a {
  font-size: 1.2rem;
  padding: 1em;
}
.l-header__toggle {
  display: block;
  position: relative;
  z-index: 1000;
  width: 67px;
  height: 54px;
  margin-left: 95px;
  margin-left: 4.9479166667vw;
  cursor: pointer;
}
.l-header__toggle span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #614F3A;
  transition: all 0.2s linear;
}
.l-header__toggle span:nth-of-type(1) {
  top: 0;
}
.l-header__toggle span:nth-of-type(2) {
  top: calc(50% - 1.5px);
}
.l-header__toggle span:nth-of-type(3) {
  bottom: 1px;
}
.l-header__toggle.is-active span:nth-of-type(1) {
  transform: translateY(18px) rotate(45deg);
}
.l-header__toggle.is-active span:nth-of-type(2) {
  opacity: 0;
}
.l-header__toggle.is-active span:nth-of-type(3) {
  transform: translateY(-17px) rotate(-45deg);
}
@media screen and (max-width: 1760px) {
  .l-header {
    height: 105px;
  }
  .l-header__nav.is-active {
    top: 105px;
  }
  .l-header__toggle {
    width: 47px;
    height: 38px;
  }
  .l-header__toggle span {
    height: 2px;
  }
}
@media screen and (max-width: 600px) {
  .l-header {
    height: 80px;
  }
  .l-header__logo {
    height: 65%;
  }
  .l-header__nav.is-active {
    top: 80px;
  }
  .l-header__tel {
    display: none;
  }
  .l-header__line {
    flex-shrink: 0;
    width: 240px;
    width: 24vw;
  }
  .l-header__toggle {
    width: 38px;
    height: 33px;
    flex-shrink: 0;
  }
  .l-header__toggle.is-active span:nth-of-type(1) {
    transform: translateY(15px) rotate(45deg);
  }
  .l-header__toggle.is-active span:nth-of-type(3) {
    transform: translateY(-15px) rotate(-45deg);
  }
}

/* ================================
フッター
================================ */
.l-footer {
  padding-top: 1.25rem;
  padding-bottom: 120px;
  padding-bottom: 6.25vw;
}
.l-footer__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  font-size: 36px;
  font-size: 1.875vw;
  font-weight: 700;
  margin-bottom: 30px;
  margin-bottom: 1.5625vw;
}
.l-footer__heading::before, .l-footer__heading::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #614F3A;
}
.l-footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 50px;
       column-gap: 50px;
  -moz-column-gap: 2.6041666667vw;
       column-gap: 2.6041666667vw;
  row-gap: 30px;
  row-gap: 1.5625vw;
}
@media screen and (max-width: 600px) {
  .l-footer {
    padding-bottom: calc(10vh + 40px);
  }
  .l-footer__heading {
    font-size: 40px;
    font-size: 4vw;
  }
  .l-footer__item {
    width: 50%;
  }
}

/* ================================
その他レイアウト要素
================================ */
/* メインコンテナ */
.l-content-container {
  background-color: #F2E9D1;
  overflow: hidden;
}

/* インナー */
.l-inner {
  max-width: 1760px;
  width: 92%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .l-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.l-inner-sm {
  max-width: 1360px;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-inner-sm {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .l-inner-sm {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.l-inner-xs {
  max-width: 1040px;
  width: 54%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-inner-xs {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .l-inner-xs {
    padding-left: 10px;
    padding-right: 10px;
  }
} /*--- 固定バナー ---*/
.l-fixed-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 10vh;
}
.l-fixed-banner__item {
  flex-shrink: 0;
  text-align: center;
  padding: 10px;
}
.l-fixed-banner__item > img {
  width: auto;
  height: 100%;
}
.l-fixed-banner__tel {
  width: 65%;
  background-color: #cd4444;
}
.l-fixed-banner__line {
  width: 35%;
  background-color: #4DBA22;
}
@media screen and (max-width: 600px) {
  .l-fixed-banner {
    display: flex;
  }
}

/* ================================
共通パーツ
================================ */
/* CTA */
.c-cta__txt {
  font-size: 40px;
  font-size: 2.0833333333vw;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 0.75em;
}
.c-cta__cnt {
  width: 1340px;
  width: 69.7916666667vw;
  aspect-ratio: 1337/268;
  display: flex;
}
.c-cta__tel {
  width: 63.7%;
}
.c-cta__line {
  width: 36.3%;
}
@media screen and (max-width: 600px) {
  .c-cta__cnt {
    flex-direction: column;
    width: 94%;
  }
  .c-cta__tel {
    width: 100%;
  }
  .c-cta__line {
    width: 100%;
  }
  .c-cta__txt {
    font-size: 40px;
    font-size: 4vw;
  }
}

/*--- 見出し ---*/
.c-heading01 {
  height: 105px;
  height: 5.46875vw;
  text-align: center;
  margin-bottom: 75px;
  margin-bottom: 3.90625vw;
}
.c-heading01 > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 600px) {
  .c-heading01 {
    height: 130px;
    height: 13vw;
  }
}

/* ================================
メインビジュアル
================================ */
.mv {
  position: relative;
  height: 980px;
  height: 51.0416666667vw;
  background: url(../img/mv_bg.jpg) no-repeat center center/cover;
  margin-top: 150px;
  margin-bottom: 140px;
  margin-bottom: 7.2916666667vw;
}
.mv__catch {
  position: absolute;
  top: 230px;
  top: 11.9791666667vw;
  right: 130px;
  right: 6.7708333333vw;
  display: inline-block;
  width: 770px;
  width: 40.1041666667vw;
}
.mv-point__list {
  position: absolute;
  bottom: -120px;
  bottom: -6.25vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 70px;
       column-gap: 70px;
  -moz-column-gap: 3.6458333333vw;
       column-gap: 3.6458333333vw;
}
.mv-point__item {
  width: 350px;
  width: 18.2291666667vw;
}
@media screen and (max-width: 1760px) {
  .mv {
    margin-top: 105px;
  }
}
@media screen and (max-width: 600px) {
  .mv {
    height: auto;
    aspect-ratio: 500/726;
    margin-top: 80px;
    margin-bottom: 200px;
    margin-bottom: 20vw;
    background: url(../img/mv_bg_sp.jpg) no-repeat center center/cover;
  }
  .mv__catch {
    top: initial;
    bottom: 170px;
    bottom: 12.7436281859vh;
    right: 50%;
    transform: translateX(50%);
    width: 90%;
  }
  .mv-point__list {
    bottom: -100px;
    bottom: -7.4962518741vh;
    -moz-column-gap: 0;
         column-gap: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .mv-point__item {
    width: 33.3%;
  }
}

/* ================================
キャンペーン
================================ */
.camp {
  padding-bottom: 140px;
  padding-bottom: 7.2916666667vw;
}
.camp__note {
  text-align: center;
  margin-top: 15px;
}
.camp__item img {
  width: 100%;
}
/* ================================
ペット火葬に関するこんな疑問や～
================================ */
.prob {
  margin-bottom: 250px;
  margin-bottom: 13.0208333333vw;
}
.prob__heading {
  width: 1055px;
  width: 54.9479166667vw;
}
.prob__heading::before {
  content: "";
  display: block;
  margin: 0 auto 15px auto;
  width: 260px;
  width: 13.5416666667vw;
  aspect-ratio: 258/158;
  background: url(../img/prob-heading_deco.svg) no-repeat center center/contain;
}
.prob__cnt {
  position: relative;
  width: 100%;
  height: 730px;
  height: 38.0208333333vw;
  background: url(../img/prob-cnt_bg.png) no-repeat center center/cover;
  margin-bottom: 2.8125rem;
}
.prob__list {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 360px;
  left: 18.75vw;
  width: 710px;
  width: 36.9791666667vw;
}
@media screen and (max-width: 600px) {
  .prob {
    margin-bottom: 270px;
    margin-bottom: 27vw;
  }
  .prob__heading {
    width: 770px;
    width: 77vw;
    margin-bottom: 75px;
    margin-bottom: 7.5vw;
  }
  .prob__heading::before {
    width: 260px;
    width: 26vw;
  }
  .prob__cnt {
    height: 1140px;
    height: 114vw;
    background: url(../img/prob-cnt_bg_sp.png) no-repeat center center/cover;
    margin-bottom: 60px;
    margin-bottom: 6vw;
  }
  .prob__list {
    width: 90%;
    top: initial;
    bottom: 125px;
    bottom: 12.5vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ================================
ポイント
================================ */
.point-nav {
  position: relative;
  background: url(../img/point-nav_bg.jpg) no-repeat center center/cover;
  padding-top: 170px;
  padding-top: 8.8541666667vw;
  padding-bottom: 100px;
  padding-bottom: 5.2083333333vw;
  padding-left: 75px;
  padding-left: 3.90625vw;
  padding-right: 75px;
  padding-right: 3.90625vw;
  margin-bottom: 160px;
  margin-bottom: 8.3333333333vw;
}
.point-nav__heading {
  position: absolute;
  top: -90px;
  top: -4.6875vw;
  left: 50%;
  transform: translateX(-50%);
  width: 710px;
  width: 36.9791666667vw;
}
.point-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
}
.point-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(50% - 8px);
  min-height: 210px;
  min-height: 10.9375vw;
  background-color: #fff;
  padding: 20px;
  padding: 1.0416666667vw;
}
.point-nav__item::before {
  content: "";
  position: absolute;
  top: 10px;
  top: 0.5208333333vw;
  left: 10px;
  left: 0.5208333333vw;
  width: 97.5%;
  height: 90%;
  border: 2px solid #C0BCB1;
}
.point-nav__item::after {
  flex-shrink: 0;
  content: "";
  width: auto;
  height: 100%;
  aspect-ratio: 60/163;
  background: url(../img/point-nav_arrow.svg) no-repeat center center/contain;
  margin-left: auto;
}
.point-nav__item > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.point-nav__num {
  flex-shrink: 0;
  width: 110px;
  width: 5.7291666667vw;
  aspect-ratio: 1/1;
  margin-right: 20px;
  margin-right: 1.0416666667vw;
  margin-left: 30px;
  margin-left: 1.5625vw;
}
.point-nav__txt {
  flex: 1;
  font-size: 27px;
  font-size: 1.40625vw;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.point-nav__txt .u-marker--yl {
  font-size: 1.2em;
}
@media screen and (max-width: 600px) {
  .point-nav {
    padding-top: 150px;
    padding-top: 15vw;
    padding-bottom: 110px;
    padding-bottom: 11vw;
    margin-bottom: 170px;
    margin-bottom: 17vw;
  }
  .point-nav__heading {
    width: 90%;
    top: -140px;
    top: -14vw;
  }
  .point-nav__list {
    flex-direction: column;
  }
  .point-nav__item {
    width: 100%;
    min-height: 240px;
    min-height: 24vw;
    padding: 25px;
    padding: 2.5vw;
  }
  .point-nav__item::before {
    top: 10px;
    top: 1vw;
    left: 10px;
    left: 1vw;
  }
  .point-nav__num {
    width: 130px;
    width: 13vw;
  }
  .point-nav__txt {
    font-size: 32px;
    font-size: 3.2vw;
  }
}

/*--- 共通 ---*/
.point__heading {
  height: 180px;
  height: 9.375vw;
  text-align: center;
  margin-bottom: 80px;
  margin-bottom: 4.1666666667vw;
  margin-left: auto;
  margin-right: auto;
}
.point__heading > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 600px) {
  .point__heading {
    height: 300px;
    height: 30vw;
    margin-bottom: 60px;
    margin-bottom: 6vw;
  }
}

/*--- ポイント1:料金プランのご紹介 ---*/
.point01-plan__list {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-bottom: 115px;
  margin-bottom: 5.9895833333vw;
}
.point01-plan__item {
  width: calc(33.3% - 20px);
}
.point01-plan__item02 .point01-plan__ttl {
  margin-left: -21px;
  margin-left: -1.09375vw;
}
.point01-plan__item03 .point01-plan__ttl {
  margin-left: -30px;
  margin-left: -1.5625vw;
}
@media screen and (max-width: 768px) {
  .point01-plan__list {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .point01-plan__item {
    width: calc(33.3% - 5px);
  }
}
@media screen and (max-width: 600px) {
  .point01-plan__list {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
  }
  .point01-plan__item {
    width: 100%;
  }
  .point01-plan__ttl img, .point01-plan__flow img, .point01-plan__price img {
    width: 100%;
  }
  .point01-plan__item02 .point01-plan__ttl {
    margin-left: -35px;
    margin-left: -3.5vw;
  }
  .point01-plan__item03 .point01-plan__ttl {
    margin-left: -55px;
    margin-left: -5.5vw;
  }
}
.point01-price {
  padding-top: 80px;
  padding-top: 4.1666666667vw;
  margin-bottom: 180px;
  margin-bottom: 9.375vw;
  background: url(../img/point01-price_bg.png) no-repeat top 20vw center/100% auto;
}
.point01-price__heading {
  height: 50px;
  height: 2.6041666667vw;
  margin-bottom: 1.5625rem;
}
.point01-price__header {
  display: flex;
  align-items: center;
  margin-top: 80px;
  margin-top: 4.1666666667vw;
  margin-bottom: 8px;
}
.point01-price__header h4 {
  text-align: center;
  font-weight: 700;
}
.point01-price__header h4:nth-child(1) {
  width: 18%;
}
.point01-price__header h4:nth-child(2) {
  width: 32%;
}
.point01-price__header h4:nth-child(3) {
  width: 25%;
}
.point01-price__header h4:nth-child(4) {
  width: 25%;
}
.point01-price__list {
  margin-bottom: 2.5rem;
}
.point01-price__item {
  display: flex;
  min-height: 135px;
  min-height: 7.03125vw;
}
.point01-price__item:not(:last-of-type) {
  position: relative;
  margin-bottom: 1.875rem;
}
.point01-price__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: -0.9375rem;
  left: 0;
  width: 100%;
  height: 4px;
  background: url(../img/point01-price_line.svg) no-repeat top left/cover;
}
.point01-price__weight, .point01-price__type {
  position: relative;
  background-color: #fff;
  padding: 10px;
  padding: 0.5208333333vw;
}
.point01-price__weight > span, .point01-price__type > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 2px solid #C0BCB1;
  padding: 25px;
  padding: 1.3020833333vw;
}
.point01-price__weight {
  width: 19%;
  margin-right: 1%;
}
.point01-price__weight::before {
  width: 91%;
  height: 86%;
}
.point01-price__type {
  width: 33%;
  margin-right: 1%;
}
.point01-price__type::before {
  width: 95%;
  height: 86%;
}
.point01-price__table {
  width: 54%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin-top: -8px;
  margin-bottom: -8px;
}
.point01-price__table th,
.point01-price__table td {
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
.point01-price__table th {
  width: 49%;
}
.point01-price__table td {
  width: 51%;
}
.point01-price__table tr:nth-child(1) th {
  background-color: #337e43;
}
.point01-price__table tr:nth-child(1) td {
  background-color: #6aa476;
}
.point01-price__table tr:nth-child(2) th {
  background-color: #d46e00;
}
.point01-price__table tr:nth-child(2) td {
  background-color: #e79741;
}
.point01-price__table tr:nth-child(3) th {
  background-color: #c53013;
}
.point01-price__table tr:nth-child(3) td {
  background-color: #eb6c54;
}
.point01-price__price {
  font-size: 1.5em;
}
.point01-price__note {
  font-weight: 700;
  margin-bottom: 200px;
  margin-bottom: 10.4166666667vw;
}
@media screen and (max-width: 600px) {
  .point01-price__heading {
    height: 90px;
    height: 9vw;
  }
}

/*--- ポイント2:LINE@で安心のご相談・ご予約 ---*/
.point02 {
  margin-bottom: 140px;
  margin-bottom: 7.2916666667vw;
}
.point02-intro {
  position: relative;
  padding-top: 1180px;
  padding-top: 61.4583333333vw;
  margin-bottom: 250px;
  margin-bottom: 13.0208333333vw;
}
.point02-intro__heading01 {
  z-index: 5;
  position: absolute;
  top: 65px;
  top: 3.3854166667vw;
  left: 50%;
  transform: translateX(-50%);
}
.point02-intro__heading02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}
.point02-intro__txt01 {
  margin-bottom: 80px;
  margin-bottom: 4.1666666667vw;
}
.point02-intro__txt02 {
  width: 885px;
  width: 46.09375vw;
  margin-bottom: 45px;
  margin-bottom: 2.34375vw;
}
.point02-intro__heading03 {
  margin-bottom: 1.5625rem;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 600px) {
  .point02-intro {
    padding-top: 1450px;
    padding-top: 145vw;
    margin-bottom: 210px;
    margin-bottom: 21vw;
  }
  .point02-intro__heading01 {
    width: 90%;
  }
  .point02-intro__txt01 {
    margin-bottom: 100px;
    margin-bottom: 10vw;
  }
  .point02-intro__txt02 {
    width: 90%;
    margin-bottom: 80px;
    margin-bottom: 8vw;
  }
  .point02-intro__heading03 {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-bottom: 50px;
    margin-bottom: 5vw;
  }
}
.point02-cat {
  position: relative;
  color: #fff;
  text-align: center;
  background: url(../img/point02-cat_bg.jpg) no-repeat center center/cover;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.35);
  padding-top: 240px;
  padding-top: 12.5vw;
  padding-bottom: 70px;
  padding-bottom: 3.6458333333vw;
}
.point02-cat__list {
  position: absolute;
  top: -95px;
  top: -4.9479166667vw;
  left: 50%;
  transform: translateX(-50%);
  width: 1270px;
  width: 66.1458333333vw;
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.point02-cat__item {
  width: calc(20% - 6px);
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.35);
}
.point02-cat__txt02 {
  display: inline-block;
  font-size: 32px;
  font-size: 1.6666666667vw;
  border: 1px solid #fff;
  margin-top: 0.9375rem;
  margin-bottom: 1.875rem;
  padding-left: 55px;
  padding-left: 2.8645833333vw;
  padding-right: 55px;
  padding-right: 2.8645833333vw;
  padding-bottom: 3px;
}
.point02-cat__txt02 > span {
  font-size: 1.3em;
}
.point02-cat__btn {
  width: 620px;
  width: 32.2916666667vw;
  margin-top: 0.625rem;
}
@media screen and (max-width: 600px) {
  .point02-cat {
    padding-top: 680px;
    padding-top: 68vw;
  }
  .point02-cat__list {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 12px;
    margin-top: -65px;
    margin-top: -6.5vw;
  }
  .point02-cat__item {
    width: 30%;
  }
  .point02-cat__txt02 {
    font-size: 48px;
    font-size: 4.8vw;
    padding: 35px;
    padding: 3.5vw;
  }
  .point02-cat__btn {
    width: 95%;
  }
}

/*--- ポイント3 ---*/
.point03 {
  background: url(../img/point03_bg.png) no-repeat top 7.8vw center/100% auto;
  padding-top: 150px;
  padding-top: 7.8125vw;
  padding-bottom: 260px;
  padding-bottom: 13.5416666667vw;
}
.point03__txt01 {
  margin-bottom: 1em;
}
.point03__table {
  margin-top: 55px;
  margin-top: 2.8645833333vw;
}

/*--- ポイント4 ---*/
.point04 {
  margin-bottom: 200px;
  margin-bottom: 10.4166666667vw;
}
.point04__block {
  display: flex;
  align-items: center;
  -moz-column-gap: 75px;
       column-gap: 75px;
  -moz-column-gap: 3.90625vw;
       column-gap: 3.90625vw;
  margin-bottom: 150px;
  margin-bottom: 7.8125vw;
}
.point04__img {
  width: 47%;
  aspect-ratio: 755/650;
  background: url(../img/point04_img.jpg) no-repeat center center/cover;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.35);
}
.point04__cnt {
  flex: 1;
}
.point04__heading02 {
  font-size: 40px;
  font-size: 2.0833333333vw;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  margin-bottom: 1.3020833333vw;
}
@media screen and (max-width: 600px) {
  .point04__block {
    flex-direction: column;
    row-gap: 20px;
  }
  .point04__img {
    width: 80%;
  }
  .point04__heading02 {
    font-size: 50px;
    font-size: 5vw;
    text-align: center;
    margin-bottom: 40px;
    margin-bottom: 4vw;
  }
  .point04__txt {
    font-weight: 500 !important;
  }
}

/* ================================
ペットさんが亡くなってしまった時に～
================================ */
.proc {
  padding-bottom: 85px;
  padding-bottom: 4.4270833333vw;
}
.proc__heading01 {
  margin-bottom: 45px;
  margin-bottom: 2.34375vw;
}
.proc-flow__list {
  position: relative;
  margin-top: 65px;
  margin-top: 3.3854166667vw;
  margin-bottom: 80px;
  margin-bottom: 4.1666666667vw;
  counter-reset: number 0;
}
.proc-flow__list::before {
  content: "";
  position: absolute;
  top: 90px;
  top: 4.6875vw;
  left: 0;
  width: 100vw;
  height: 91%;
  margin: 0 calc(50% - 50vw);
  background: url(../img/proc-flow_bg.jpg) no-repeat center center/cover;
}
.proc-flow__item {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 55px;
       column-gap: 55px;
  -moz-column-gap: 2.8645833333vw;
       column-gap: 2.8645833333vw;
  padding: 60px;
  padding: 3.125vw;
  background-color: #fff;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.35);
}
.proc-flow__item::before {
  position: absolute;
  top: 16px;
  top: 0.8333333333vw;
  left: 16px;
  left: 0.8333333333vw;
  counter-increment: number 1;
  content: counter(number);
  display: inline-block;
  width: 3.125rem;
  aspect-ratio: 1/1;
  color: #fff;
  font-size: 1.625rem;
  line-height: 3.125rem;
  text-align: center;
  background-color: #C0BCB1;
}
.proc-flow__item:not(:last-child) {
  margin-bottom: 50px;
  margin-bottom: 2.6041666667vw;
}
.proc-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -35px;
  bottom: -1.8229166667vw;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  width: 3.125vw;
  aspect-ratio: 58/45;
  background: url(../img/proc-flow_arrow.svg) no-repeat center center/contain;
}
.proc-flow__img {
  width: 260px;
  width: 13.5416666667vw;
}
@media screen and (max-width: 600px) {
  .proc-flow__list {
    margin-bottom: 100px;
    margin-bottom: 10vw;
  }
  .proc-flow__item {
    flex-direction: column;
  }
  .proc-flow__item:not(:last-child) {
    margin-bottom: 100px;
    margin-bottom: 10vw;
  }
  .proc-flow__item:not(:last-child)::after {
    bottom: -60px;
    bottom: -6vw;
    width: 100px;
    width: 10vw;
  }
  .proc-flow__img {
    width: 50%;
  }
}
.proc__txt02 {
  position: relative;
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: 700;
  text-align: center;
  padding-top: 25px;
  padding-top: 1.3020833333vw;
  padding-bottom: 25px;
  padding-bottom: 1.3020833333vw;
  margin-bottom: 35px;
  margin-bottom: 1.8229166667vw;
}
.proc__txt02::before, .proc__txt02::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 870px;
  width: 45.3125vw;
  height: 3px;
  background: url(../img/dot_line.svg) repeat-x center center/contain;
}
.proc__txt02::before {
  top: 0;
}
.proc__txt02::after {
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .proc {
    padding-bottom: 100px;
    padding-bottom: 10vw;
  }
  .proc__txt02 {
    font-size: 40px;
    font-size: 4vw;
  }
}

/* ================================
ご予約から葬儀までの流れ
================================ */
.flow {
  padding-top: 100px;
  padding-top: 5.2083333333vw;
  margin-bottom: 170px;
  margin-bottom: 8.8541666667vw;
  background: url(../img/flow_bg.jpg) no-repeat center center/100% auto;
}
.flow__heading01 {
  display: inline-block;
  margin-bottom: 45px;
  margin-bottom: 2.34375vw;
}
.flow__txt02 {
  display: inline-block;
  color: #fff;
  background-color: #2339a6;
  padding-left: 50px;
  padding-left: 2.6041666667vw;
  padding-right: 50px;
  padding-right: 2.6041666667vw;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 25px;
  margin-top: 1.3020833333vw;
  margin-bottom: 35px;
  margin-bottom: 1.8229166667vw;
}
.flow__list {
  margin-bottom: 150px;
  margin-bottom: 7.8125vw;
}
.flow__item {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  background-color: #fff;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.35);
}
.flow__item:not(:last-child) {
  margin-bottom: 45px;
  margin-bottom: 2.34375vw;
}
.flow__img {
  width: 340px;
  width: 17.7083333333vw;
  aspect-ratio: 1/1;
}
.flow__cnt {
  flex: 1;
  padding-top: 50px;
  padding-top: 2.6041666667vw;
  padding-bottom: 50px;
  padding-bottom: 2.6041666667vw;
  padding-right: 60px;
  padding-right: 3.125vw;
}
.flow__ttl {
  font-size: 30px;
  font-size: 1.5625vw;
  font-weight: 700;
  margin-bottom: 20px;
  margin-bottom: 1.0416666667vw;
}
.flow__num {
  display: inline-block;
  color: #fff;
  text-align: center;
  background-color: #614F3A;
  width: 40px;
  width: 2.0833333333vw;
  aspect-ratio: 1/1;
  line-height: 1em;
  margin-right: 0.875rem;
}
.flow__gallery {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 40px;
  padding: 2.0833333333vw;
}
.flow__gallery figure {
  flex: 1;
  aspect-ratio: 233/178;
}
.flow__gallery figure > img {
  width: 100%;
  height: 100%;
}
.flow__item01 .flow__img {
  background: url(../img/flow_img01.jpg) no-repeat center center/cover;
}
.flow__item02 .flow__img {
  background: url(../img/flow_img02.jpg) no-repeat center center/cover;
}
.flow__item03 {
  flex-wrap: wrap;
}
.flow__item03 .flow__cnt {
  padding-bottom: 0;
}
.flow__item03 .flow__img {
  background: url(../img/flow_img03.jpg) no-repeat center center/cover;
}
.flow__item04 .flow__img {
  background: url(../img/flow_img04.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 600px) {
  .flow__txt02 {
    width: 100%;
  }
  .flow__item {
    flex-direction: column;
    padding: 60px;
    padding: 3.125vw;
  }
  .flow__img {
    width: 50%;
  }
  .flow__ttl {
    font-size: 40px;
    font-size: 4vw;
    margin-bottom: 0.5em;
  }
  .flow__num {
    width: 50px;
    width: 5vw;
  }
  .flow__gallery {
    padding: 1rem 0 0 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 10px;
  }
  .flow__gallery > figure {
    width: calc(32% - 5px);
    flex: initial;
  }
}

/* ================================
ペット火葬Q&A
================================ */
.faq {
  background: url(../img/faq_bg.png) no-repeat top 28vw center/100% auto;
  padding-bottom: 150px;
  padding-bottom: 7.8125vw;
}
.faq__list {
  margin-bottom: 180px;
  margin-bottom: 9.375vw;
}
.faq__item {
  cursor: pointer;
}
.faq__item:not(:last-child) {
  margin-bottom: 65px;
  margin-bottom: 3.3854166667vw;
}
.faq__ico {
  flex-shrink: 0;
  width: 95px;
  width: 4.9479166667vw;
}
.faq__q, .faq__a {
  display: flex;
  -moz-column-gap: 65px;
       column-gap: 65px;
  -moz-column-gap: 3.3854166667vw;
       column-gap: 3.3854166667vw;
  padding-top: 35px;
  padding-top: 1.8229166667vw;
  padding-bottom: 35px;
  padding-bottom: 1.8229166667vw;
  padding-left: 60px;
  padding-left: 3.125vw;
  padding-right: 60px;
  padding-right: 3.125vw;
}
.faq__q {
  align-items: center;
  color: #fff;
  font-size: 25px;
  font-size: 1.3020833333vw;
  font-weight: 700;
  background-color: #2339a6;
}
.faq__q::after {
  content: "▼";
  margin-left: auto;
}
.faq__a {
  display: none;
  background-color: #fff;
}
.faq__item.is-active .faq__a {
  display: flex;
}
.faq__item.is-active .faq__q::after {
  content: "▲";
}
@media screen and (max-width: 600px) {
  .faq__ico {
    width: 100px;
    width: 10vw;
  }
  .faq__q {
    font-size: 40px;
    font-size: 4vw;
  }
}

/* ================================
出張エリア
================================ */
.area {
  padding-top: 130px;
  padding-top: 6.7708333333vw;
  padding-bottom: 220px;
  padding-bottom: 11.4583333333vw;
  background: url(../img/area_bg.png) no-repeat bottom center/100% auto;
}
.area__block {
  display: flex;
  align-items: center;
  -moz-column-gap: 85px;
       column-gap: 85px;
  -moz-column-gap: 4.4270833333vw;
       column-gap: 4.4270833333vw;
}
.area__img {
  width: 38%;
  aspect-ratio: 456/347;
  background: url(../img/area_img01.jpg) no-repeat center center/cover;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.35);
}
.area__cnt {
  flex: 1;
}
@media screen and (max-width: 600px) {
  .area {
    background-size: 200% auto;
  }
  .area__block {
    flex-direction: column;
    row-gap: 30px;
  }
  .area__img {
    width: 80%;
  }
}

/* ================================
会社情報
================================ */
.comp {
  padding-bottom: 300px;
  padding-bottom: 15.625vw;
  background: url(../img/comp_bg.png) no-repeat bottom center/100% auto;
}
.comp__block {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 85px;
       column-gap: 85px;
  -moz-column-gap: 4.4270833333vw;
       column-gap: 4.4270833333vw;
  margin-bottom: 110px;
  margin-bottom: 5.7291666667vw;
}
.comp__img {
  width: 40%;
  aspect-ratio: 490/447;
  background: url(../img/comp_img01.jpg) no-repeat center center/cover;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.35);
}
.comp__cnt {
  flex: 1;
}
.comp__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 15px;
  border-spacing: 0.78125vw;
  margin-top: -15px;
  margin-top: -0.78125vw;
  margin-bottom: -15px;
  margin-bottom: -0.78125vw;
}
.comp__table th, .comp__table td {
  vertical-align: middle;
}
.comp__table th {
  width: 180px;
  width: 9.375vw;
  font-size: 22px;
  font-size: 1.1458333333vw;
  text-align: center;
  background-color: #fff;
  padding-top: 3px;
  padding-bottom: 3px;
}
.comp__table td {
  font-size: 23px;
  font-size: 1.1979166667vw;
}
@media screen and (max-width: 600px) {
  .comp__block {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 30px;
  }
  .comp__img {
    width: 80%;
  }
  .comp__table th {
    width: auto;
    font-size: 1rem;
    padding: 0.5em;
    white-space: nowrap;
  }
  .comp__table td {
    font-size: 1rem;
    padding-left: 1rem;
  }
}

/* ================================
調整用
================================ */
/*--- テキスト ---*/
.u-marker--yl {
  color: #cd4444;
  line-height: 1.3;
  background: linear-gradient(to bottom, transparent, transparent 10%, #fff76f 10%, #fff76f);
}

/*--- 画像 ---*/
.u-img--con {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.u-img--cov {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--- テキスト ---*/
.u-txt--ib {
  display: inline-block;
  text-align: left;
}

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

/*--- 配置 ---*/
.u-margin--auto {
  margin-left: auto;
  margin-right: auto;
}

.u-align--ctr {
  text-align: center;
}
.u-align--lt {
  text-align: left;
}

/*--- 表示・非表示 ---*/
.u-display--md {
  display: none;
}
@media screen and (max-width: 980px) {
  .u-display--md {
    display: block;
  }
}
.u-display--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display--sm {
    display: block;
  }
}
.u-display--xs {
  display: none;
}
@media screen and (max-width: 600px) {
  .u-display--xs {
    display: block;
  }
}

@media screen and (max-width: 980px) {
  .u-hidden--md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-hidden--sm {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .u-hidden--xs {
    display: none;
  }
}

/*--- アニメーション ---*/
.anime-slidein {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(30px);
}
.anime-slidein.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.anime-fadein {
  opacity: 0;
  visibility: hidden;
  transition: 1.5s;
}
.anime-fadein.is-active {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=styles.css.map */