:root {
  --font-size-h1: 3rem;
  --font-size-h2: 2.55rem;
  --font-size-h3: 2.55rem;
  --font-size-h3-smaller: 1.5rem;
  --font-size-body: 1rem;
  --font-size-body-larger: 1.1rem;
  --font-size-body-smaller: 0.9rem;
}

@media screen and (max-width: 1000px) {
  :root {
    --font-size-h1: 1.8rem;
    --font-size-h2: 1.2rem;
    --font-size-h3: 1.2rem;
    --font-size-h3-smaller: 1rem;
    --font-size-body: 0.8rem;
    --font-size-body-larger: 0.875rem;
    --font-size-body-smaller: 0.75rem;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #474747;
  font-family: "dnp-shuei-mgothic-std";
  scroll-behavior: smooth;
}

body {
  position: relative;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}
h2.ul {
  position: relative;
  width: fit-content;
}
h2.ul::after {
  content: "";
  display: flex;
  width: 60px;
  height: 4px;
  background-color: #7FB3D2;
  border-radius: 10px;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
}

h3 {
  font-size: var(--font-size-h3);
}

p {
  font-size: var(--font-size-body);
}

section, header, footer {
  display: flex;
  justify-content: center;
}
section .wrapper, header .wrapper, footer .wrapper {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}
section .wrapper .content, header .wrapper .content, footer .wrapper .content {
  display: flex;
  width: 100%;
}

section {
  padding: 120px 60px;
}

.drop {
  display: flex;
  flex-direction: column;
  border: 1px solid #CACACA;
  font-size: var(--font-size-body-larger);
  font-weight: 600;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.drop .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
}
.drop .top img {
  width: 18px;
}
.drop .bot {
  display: none;
  padding: 16px;
  border-top: 1px solid #CACACA;
}
.drop.open .top img {
  transform: rotate(180deg);
}
.drop.open .bot {
  display: flex;
}

header {
  width: 100%;
  height: fit-content;
  font-size: var(--font-size-body-smaller);
  position: fixed;
  inset: 0;
  background-color: #FFFFFF;
  z-index: 10;
  padding: 24px 0 12px 0;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
header .content {
  flex-direction: column;
  gap: 16px;
}
header .content .top {
  display: flex;
  align-items: center;
  gap: 30px;
}
header .content .top .left a {
  display: flex;
  width: 200px;
}
header .content .top .left a img {
  width: 100%;
}
header .content .top .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
  gap: 30px;
}
header .content .top .right .tel {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 60px;
}
header .content .top .right .tel .tp {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
}
header .content .top .right .tel .tp img {
  width: 20px;
}
header .content .top .right .tel .tp span {
  font-size: 1.6rem;
}
header .content .top .right .tel .st {
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
  color: #FF6600;
  line-height: 1;
}
header .content .top .right .ct-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF6600;
  font-size: var(--font-size-body);
  gap: 10px;
  text-decoration: none;
  border-radius: 8px;
  padding: 20px;
  height: 54px;
  transition: opacity 0.1s ease-in-out;
}
header .content .top .right .ct-btn img {
  width: 20px;
}
header .content .top .right .ct-btn span {
  color: #FFFFFF;
}
header .content .top .right .ct-btn:hover {
  opacity: 0.8;
}
header .content .top .right .h-menu {
  display: none;
}
header .content .bottom {
  display: flex;
  width: 100%;
}
header .content .bottom .links {
  display: flex;
  width: 100%;
}
header .content .bottom .links .hd {
  display: none;
}
header .content .bottom .links a {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  text-decoration: none;
  font-weight: 600;
  border-right: 1px solid #CBEFFF;
}
header .content .bottom .links a:first-child {
  border-left: 1px solid #CBEFFF;
}

.sm-menu {
  display: flex;
  opacity: 0;
  pointer-events: none;
  padding: 30px;
  width: 100%;
  height: 0;
  transition: opacity 0.1s ease-in-out, height 0.1s ease-in-out;
  position: fixed;
  z-index: 12;
  background-color: #fff;
  top: 64px;
  left: 0;
}
.sm-menu .links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sm-menu .links a {
  text-decoration: none;
  color: #474747;
  font-weight: 600;
}
.sm-menu.active {
  opacity: 1;
  pointer-events: all;
  height: 100%;
}

#topview {
  background-image: url(/assets/images/topview.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  position: relative;
  padding: 200px 60px 100px 60px;
}
#topview .filter {
  display: flex;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  inset: 0;
  z-index: 1;
}
#topview .wave {
  display: flex;
  width: 100%;
  height: 240px;
  clip-path: polygon(0% 50%, 6.25% 42.35%, 12.5% 35.86%, 18.75% 31.52%, 25% 30%, 31.25% 31.52%, 37.5% 35.86%, 43.75% 42.35%, 50% 50%, 56.25% 57.65%, 62.5% 64.14%, 68.75% 68.48%, 75% 70%, 81.25% 68.48%, 87.5% 64.14%, 93.75% 57.65%, 100% 50%, 100% 100%, 0% 100%);
  background-color: #EDF5FA;
  position: absolute;
  bottom: 0;
  z-index: 2;
}
#topview .content {
  display: flex;
  flex-direction: column;
  z-index: 3;
  position: relative;
}
#topview .content h1 {
  color: #817065;
  margin-bottom: 30px;
  line-height: 1.6;
}
#topview .content h1 span {
  color: #7FB3D2;
}
#topview .content h1 .sm {
  display: none;
}
#topview .content .badges {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}
#topview .content .badges .badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #CACACA;
  border-radius: 50%;
  padding: 30px;
  flex-shrink: 0;
  background-color: #FFFFFF;
  width: 144px;
  height: 144px;
}
#topview .content .badges .badge img {
  width: 40px;
  margin-bottom: 10px;
}
#topview .content .badges .badge span {
  font-size: var(--font-size-body);
  text-align: center;
  line-height: 1.4;
  color: #817065;
  font-weight: 600;
}
#topview .content .flower-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
  background: linear-gradient(90deg, #F8F0E9 0%, #FFF9F2 100%);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  padding: 20px 40px;
  border-radius: 10px;
}
#topview .content .flower-card .title {
  font-size: var(--font-size-body-larger);
  color: #7FB3D2;
  font-weight: 600;
}
#topview .content .flower-card .desc {
  color: #817065;
  font-size: var(--font-size-body-smaller);
  font-weight: 500;
}
#topview .content .flower-card img {
  position: absolute;
  width: 44px;
}
#topview .content .flower-card img.flower-1 {
  top: 0;
  left: -20px;
}
#topview .content .flower-card img.flower-2 {
  bottom: 0;
  right: -20px;
}

.cta {
  background-color: #EDF5FA;
  padding: 60px;
}
.cta.ft {
  padding-top: 0;
}
.cta .content {
  flex-direction: column;
}
.cta .content p {
  text-align: center;
  margin-bottom: 30px;
  font-size: var(--font-size-body-larger);
  font-weight: 600;
}
.cta .content .cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.cta .content .cards .card {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 24px;
  border-radius: 10px;
  width: 470px;
  height: 100%;
}
.cta .content .cards .card.call {
  background-color: #FF6600;
  gap: 40px;
  justify-content: center;
  transition: opacity 0.1s ease-in-out;
}
.cta .content .cards .card.call .left .img-c {
  display: flex;
  border-radius: 50%;
  overflow: hidden;
  width: 124px;
}
.cta .content .cards .card.call .left .img-c img {
  width: 100%;
}
.cta .content .cards .card.call .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta .content .cards .card.call .right span {
  color: #FFFFFF;
}
.cta .content .cards .card.call .right span.name {
  font-size: var(--font-size-body-larger);
  font-weight: 600;
}
.cta .content .cards .card.call .right span.num {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.cta .content .cards .card.call .right span.stripe {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #FFFFFF;
  color: #FF6600;
  font-size: var(--font-size-body-smaller);
}
.cta .content .cards .card.call:hover {
  opacity: 0.8;
}
.cta .content .cards .card.line {
  flex-direction: column;
  justify-content: space-between;
  background-color: #FFFFFF;
  border: 1px solid #CACACA;
  border-radius: 10px;
}
.cta .content .cards .card.line .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #CACACA;
  padding-bottom: 16px;
}
.cta .content .cards .card.line .top span {
  display: flex;
  width: fit-content;
  background-color: #FFE4D1;
  color: #FF6600;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
}
.cta .content .cards .card.line .top img {
  height: 24px;
}
.cta .content .cards .card.line .line-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4CC764;
  font-weight: 600;
  border-radius: 10px;
  width: 100%;
  text-decoration: none;
  padding: 10px 20px;
  transition: opacity 0.1s ease-in-out;
}
.cta .content .cards .card.line .line-btn:hover {
  opacity: 0.8;
}
.cta .content .cards .card.line .line-btn span {
  color: #FFFFFF;
  font-size: var(--font-size-body-larger);
}
.cta .content .cards .card.line .line-btn img {
  width: 30px;
}

#guide {
  padding-bottom: 0;
}
#guide .content {
  gap: 60px;
  border-bottom: 1px dashed #CACACA;
  padding-bottom: 120px;
}
#guide .content .left, #guide .content .right {
  flex: 1;
  display: flex;
}
#guide .content .left .img-c {
  display: flex;
  width: 100%;
}
#guide .content .left .img-c img {
  width: 100%;
}
#guide .content .right {
  flex-direction: column;
  justify-content: center;
}
#guide .content .right h2 {
  line-height: 1.4;
}
#guide .content .right .img-c {
  display: none;
  width: 100%;
}
#guide .content .right .img-c img {
  width: 100%;
}
#guide .content .right span {
  display: flex;
  font-size: var(--font-size-body-larger);
  color: #7FB3D2;
  font-weight: 500;
  margin-bottom: 30px;
}
#guide .content .right p {
  font-weight: 600;
  margin-bottom: 40px;
}
#guide .content .right .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background-color: #FF6600;
  color: #FFFFFF;
  font-weight: 600;
  font-size: var(--font-size-body-larger);
  text-decoration: none;
  padding: 10px;
  position: relative;
  transition: opacity 0.1s ease-in-out;
}
#guide .content .right .btn img {
  width: 30px;
  position: absolute;
  right: 20px;
}
#guide .content .right .btn:hover {
  opacity: 0.8;
}

#areas .content {
  flex-direction: column;
  align-items: center;
}
#areas .content .map-c {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 60px;
  margin-bottom: 40px;
}
#areas .content .map-c .img-c {
  display: flex;
  width: 460px;
  flex-shrink: 0;
}
#areas .content .map-c .img-c img {
  width: 100%;
}
#areas .content .map-c .text {
  flex-grow: 1;
}
#areas .content .map-c .text h3 {
  color: #FF6600;
  margin-bottom: 30px;
}
#areas .content .map-c .text .img-c {
  display: none;
  width: 100%;
  flex-shrink: 0;
}
#areas .content .map-c .text .img-c img {
  width: 100%;
}
#areas .content .map-c .text p {
  font-weight: 600;
}
#areas .content .drop.ft {
  margin-bottom: 20px;
}
#areas .content .drop .top span {
  flex-grow: 1;
  text-align: center;
}

#pricing {
  padding-bottom: 0;
}
#pricing .content {
  flex-direction: column;
  align-items: center;
  padding-bottom: 120px;
  border-bottom: 1px dashed #CACACA;
}
#pricing .content h2 {
  margin-bottom: 60px;
}
#pricing .content p {
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
}
#pricing .content .cards {
  display: flex;
  gap: 30px;
  width: 100%;
}
#pricing .content .cards .card {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: var(--font-size-body);
  font-weight: 600;
}
#pricing .content .cards .card .img-c {
  display: flex;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
#pricing .content .cards .card .img-c img {
  width: 100%;
}
#pricing .content .cards .card .title {
  font-size: var(--font-size-body-larger);
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}
#pricing .content .cards .card .price {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}
#pricing .content .cards .card .price .unit {
  font-size: var(--font-size-body);
}
#pricing .content .cards .card .checks-c {
  display: flex;
  flex-direction: column;
}
#pricing .content .cards .card .checks-c .top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding: 6px;
}
#pricing .content .cards .card .checks-c .checks {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#pricing .content .cards .card .checks-c .checks .check {
  display: flex;
}
#pricing .content .cards .card .checks-c .checks .check img {
  width: 16px;
  height: 16px;
  margin-right: 14px;
  position: relative;
  top: 8px;
}
#pricing .content .cards .card.yellow .title {
  border-color: #FFDE83;
}
#pricing .content .cards .card.yellow .checks-c .top {
  background-color: #FFF4D4;
}
#pricing .content .cards .card.blue .title {
  border-color: #7FB3D2;
}
#pricing .content .cards .card.blue .checks-c .top {
  background-color: #DAF4FF;
}
#pricing .content .cards .card.pink .title {
  border-color: #FF96CC;
}
#pricing .content .cards .card.pink .checks-c .top {
  background-color: #FFD1E9;
}

#plans .content {
  flex-direction: column;
  align-items: center;
}
#plans .content h2 {
  margin-bottom: 120px;
}
#plans .content .tabs-c {
  display: grid;
  width: 100%;
  height: fit-content;
}
#plans .content .tabs-c .tab {
  grid-row: 1;
  grid-column: 1;
  z-index: 1;
  position: relative;
}
#plans .content .tabs-c .tab .trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.3333333333% - 10px);
  position: absolute;
  top: -47px;
  background-color: #FFDE83;
  border: 2px solid #FFDE83;
  border-radius: 6px 6px 0 0;
  border-bottom: none;
  padding: 6px 0;
  font-size: var(--font-size-body-larger);
  font-weight: 600;
  z-index: 1;
}
#plans .content .tabs-c .tab .body {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border: 2px solid #FFDE83;
  font-size: var(--font-size-body);
  padding: 30px;
  opacity: 0;
  height: 0;
}
#plans .content .tabs-c .tab .body .mb {
  margin-bottom: 24px;
}
#plans .content .tabs-c .tab .body .title {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  margin-bottom: 16px;
  background-color: #FFF4D4;
  font-weight: 600;
}
#plans .content .tabs-c .tab .body .kv {
  display: flex;
}
#plans .content .tabs-c .tab .body .kv .k {
  width: 110px;
}
#plans .content .tabs-c .tab .body .lh {
  display: flex;
  align-items: center;
  padding-left: 12px;
  position: relative;
  font-size: var(--font-size-body-larger);
}
#plans .content .tabs-c .tab .body .lh .num {
  margin-right: 6px;
}
#plans .content .tabs-c .tab .body .lh::before {
  content: "";
  width: 3px;
  height: calc(100% - 12px);
  background-color: #FFDE83;
  position: absolute;
  left: 0;
}
#plans .content .tabs-c .tab.blue .trigger {
  left: calc(33.3333333333% + 5px);
  background-color: #CBEFFF;
  border-color: #CBEFFF;
}
#plans .content .tabs-c .tab.blue .body {
  border-color: #CBEFFF;
}
#plans .content .tabs-c .tab.blue .body .title {
  background-color: #DAF4FF;
}
#plans .content .tabs-c .tab.blue .body .lh::before {
  background-color: #CBEFFF;
}
#plans .content .tabs-c .tab.pink .trigger {
  left: calc(66.6666666667% + 10px);
  background-color: #FF96CC;
  border-color: #FF96CC;
}
#plans .content .tabs-c .tab.pink .body {
  border-color: #FF96CC;
}
#plans .content .tabs-c .tab.pink .body .title {
  background-color: #FFD1E9;
}
#plans .content .tabs-c .tab.pink .body .lh::before {
  background-color: #FF96CC;
}
#plans .content .tabs-c .tab.active {
  z-index: 2;
}
#plans .content .tabs-c .tab.active .trigger {
  z-index: 3;
  background-color: #FFFFFF;
}
#plans .content .tabs-c .tab.active .body {
  opacity: 1;
  height: max-content;
}
#plans .content .tabs-c .tab.active.blue .trigger {
  border-color: #CBEFFF;
}
#plans .content .tabs-c .tab.active.blue .body {
  border-color: #CBEFFF;
}
#plans .content .tabs-c .tab.active.pink .trigger {
  border-color: #FF96CC;
}
#plans .content .tabs-c .tab.active.pink .body {
  border-color: #FF96CC;
}

#flow {
  padding-bottom: 0;
}
#flow .content {
  flex-direction: column;
  align-items: center;
  padding-bottom: 120px;
  border-bottom: 1px dashed #CACACA;
}
#flow .content h2 {
  margin-bottom: 60px;
}
#flow .content .cards {
  display: flex;
  gap: 30px;
}
#flow .content .cards .card {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: var(--font-size-body);
}
#flow .content .cards .card h3 {
  text-align: center;
  font-size: var(--font-size-h3-smaller);
  color: #FF6600;
  line-height: 1.6;
}
#flow .content .cards .card .st {
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
}
#flow .content .cards .card .img-c {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
#flow .content .cards .card .img-c img {
  width: 100%;
}
#flow .content .cards .card .img-c::before {
  content: attr(data-num);
  font-size: 2.4rem;
  font-weight: 800;
  color: #FF6600;
  position: absolute;
  top: -38px;
  left: 10px;
}
#flow .content .cards .card p {
  font-weight: 600;
}

#post-burial {
  padding-bottom: 0;
}
#post-burial .content {
  flex-direction: column;
  align-items: center;
  border-bottom: 1px dashed #CACACA;
  padding-bottom: 120px;
}
#post-burial .content h2 {
  margin-bottom: 60px;
}
#post-burial .content h2 br {
  display: none;
}
#post-burial .content h2 span {
  color: #FF6600;
}
#post-burial .content .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  row-gap: 50px;
}
#post-burial .content .grid .item {
  display: flex;
  flex-direction: column;
}
#post-burial .content .grid .item .img-c {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
#post-burial .content .grid .item .img-c img {
  width: 100%;
}
#post-burial .content .grid .item .label {
  font-size: var(--font-size-h3-smaller);
  font-weight: 600;
  color: #FF6600;
  text-align: center;
}

#company-info {
  padding-bottom: 0;
}
#company-info .content {
  flex-direction: column;
  align-items: center;
  border-bottom: 1px dashed #CACACA;
  padding-bottom: 120px;
}
#company-info .content h2 {
  margin-bottom: 60px;
}
#company-info .content .kv-c {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#company-info .content .kv-c .kv {
  display: flex;
  align-items: center;
  font-size: var(--font-size-body);
  font-weight: 600;
  border-bottom: 1px solid #CACACA;
  padding: 20px 0;
}
#company-info .content .kv-c .kv:last-child {
  border-bottom: none;
}
#company-info .content .kv-c .kv .k {
  width: 200px;
}
#company-info .content .kv-c .kv .v {
  font-weight: 400;
  flex-grow: 1;
}
#company-info .content .kv-c .kv .v iframe {
  height: 300px;
  width: 100%;
  border-radius: 10px;
}

#faq .content {
  flex-direction: column;
  align-items: center;
}
#faq .content h2 {
  margin-bottom: 60px;
}
#faq .content .qa-c {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
#faq .content .qa-c .drop .bot p {
  font-weight: 400;
}

footer {
  padding: 100px 60px;
}
footer .content {
  justify-content: space-between;
}
footer .content .left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content .left .img-c {
  display: flex;
  width: 300px;
  margin-bottom: 30px;
}
footer .content .left .img-c img {
  width: 100%;
}
footer .content .left span {
  font-size: var(--font-size-body-larger);
}
footer .content .right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
footer .content .right a {
  text-decoration: none;
  color: #474747;
  font-weight: 600;
  font-size: var(--font-size-body-larger);
}

.cpr {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  font-size: var(--font-size-body);
  font-weight: 600;
  background-color: #EBEBEB;
}
.cpr br {
  display: none;
}

.topview-alt {
  background-color: #EDF5FA;
  padding-top: 230px;
  padding-bottom: 90px;
}
.topview-alt .content {
  justify-content: center;
  align-items: center;
}
.topview-alt .content h1 {
  font-size: var(--font-size-h3-smaller);
  border-top: 2px solid #7FB3D2;
  border-bottom: 2px solid #7FB3D2;
}

.preparation {
  padding-bottom: 0;
}
.preparation .content {
  flex-direction: column;
  align-items: center;
  padding-bottom: 120px;
  border-bottom: 1px dashed #CACACA;
}
.preparation .content h2 {
  margin-bottom: 60px;
}
.preparation .content .cards {
  display: flex;
  width: 100%;
  gap: 20px;
}
.preparation .content .cards .card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #CACACA;
  border-radius: 8px;
  padding: 40px 40px 20px 40px;
}
.preparation .content .cards .card .img-c {
  display: flex;
  height: 120px;
  overflow: hidden;
  margin-bottom: 10px;
}
.preparation .content .cards .card .img-c img {
  width: 100%;
}
.preparation .content .cards .card span {
  font-size: var(--font-size-body-larger);
  font-weight: 600;
}

.steps .content {
  flex-direction: column;
  align-items: center;
}
.steps .content h2 {
  margin-bottom: 60px;
}
.steps .content .cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.steps .content .cards .card {
  display: flex;
  gap: 60px;
  border: 1px solid #CACACA;
  border-radius: 10px;
  padding: 40px 30px;
}
.steps .content .cards .card .img-c {
  display: flex;
}
.steps .content .cards .card .img-c img {
  max-width: 300px;
}
.steps .content .cards .card .text {
  display: flex;
  flex-direction: column;
}
.steps .content .cards .card .text h3 {
  font-size: var(--font-size-body-larger);
  font-weight: 600;
  display: flex;
  align-items: center;
}
.steps .content .cards .card .text h3 .num {
  font-size: 1.8rem;
  color: #FF6600;
  margin-right: 16px;
}

.text-vert {
  padding-bottom: 0;
}
.text-vert .content {
  padding-bottom: 120px;
  border-bottom: 1px dashed #CACACA;
  flex-direction: column;
  align-items: center;
}
.text-vert .content h2 {
  margin-bottom: 60px;
}
.text-vert .content p {
  text-align: center;
  font-weight: 600;
  font-size: var(--font-size-body-larger);
}

.contact-tel {
  padding-bottom: 0;
}
.contact-tel .content {
  padding-bottom: 120px;
  border-bottom: 1px dashed #CACACA;
  flex-direction: column;
  align-items: center;
}
.contact-tel .content h2 {
  color: #FF6600;
  margin-bottom: 60px;
}
.contact-tel .content .ct {
  display: flex;
  gap: 30px;
}
.contact-tel .content .ct p {
  flex: 1;
  font-weight: 600;
  font-size: var(--font-size-body-larger);
}
.contact-tel .content .ct .card {
  flex: 1;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 24px;
  border-radius: 10px;
  max-width: 470px;
  height: 100%;
}
.contact-tel .content .ct .card.call {
  background-color: #FF6600;
  gap: 40px;
  justify-content: center;
  transition: opacity 0.1s ease-in-out;
}
.contact-tel .content .ct .card.call .left .img-c {
  display: flex;
  border-radius: 50%;
  overflow: hidden;
  width: 124px;
}
.contact-tel .content .ct .card.call .left .img-c img {
  width: 100%;
}
.contact-tel .content .ct .card.call .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-tel .content .ct .card.call .right span {
  color: #FFFFFF;
}
.contact-tel .content .ct .card.call .right span.name {
  font-size: var(--font-size-body-larger);
  font-weight: 600;
}
.contact-tel .content .ct .card.call .right span.num {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.contact-tel .content .ct .card.call .right span.stripe {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #FFFFFF;
  color: #FF6600;
  font-size: var(--font-size-body-smaller);
}
.contact-tel .content .ct .card.call:hover {
  opacity: 0.8;
}

.contact-form .content {
  flex-direction: column;
  align-items: center;
}
.contact-form .content h2 {
  margin-bottom: 40px;
  color: #FF6600;
}
.contact-form .content .desc {
  margin-bottom: 60px;
  font-weight: 600;
  text-align: center;
}
.contact-form .content .mini-pp {
  display: flex;
  width: 100%;
  border: 1px solid #CACACA;
  border-radius: 10px;
  max-height: 200px;
  overflow: hidden;
  margin-bottom: 60px;
}
.contact-form .content .mini-pp .scroll {
  overflow: auto;
  width: 100%;
  padding: 30px;
}
.contact-form .content form {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: var(--font-size-body);
  gap: 30px;
}
.contact-form .content form .fi {
  display: flex;
  width: 100%;
}
.contact-form .content form .fi .label {
  display: flex;
  font-weight: 600;
  width: 250px;
}
.contact-form .content form .fi .label .req {
  font-size: var(--font-size-body-smaller);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 8px;
  color: #FFFFFF;
  background-color: #FF6600;
  border-radius: 4px;
  margin-right: 12px;
  height: fit-content;
}
.contact-form .content form .fi .label .req.opt {
  background-color: #7FB3D2;
}
.contact-form .content form .fi input, .contact-form .content form .fi textarea {
  flex-grow: 1;
  display: flex;
  padding: 4px 10px;
  border: 1px solid #CACACA;
  border-radius: 10px;
}
.contact-form .content form .fi select {
  padding: 4px 10px;
  border: 1px solid #CACACA;
  border-radius: 10px;
}
.contact-form .content form .fi textarea {
  height: 220px;
}
.contact-form .content form .btn-c {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 40px;
}
.contact-form .content form .btn-c button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF6600;
  color: #FFFFFF;
  font-size: var(--font-size-body-larger);
  font-weight: 600;
  border-radius: 40px;
  padding: 8px;
  width: 500px;
  border: none;
  cursor: pointer;
}

.policy .content {
  flex-direction: column;
  font-size: var(--font-size-body);
}
.policy .content .title {
  display: flex;
  font-size: var(--font-size-body-larger);
  margin-bottom: 20px;
  position: relative;
  padding-left: 10px;
  font-weight: 600;
}
.policy .content .title::before {
  content: "";
  display: flex;
  width: 3px;
  height: calc(100% - 4px);
  background-color: #7FB3D2;
  position: absolute;
  left: 0;
}
.policy .content p {
  margin-bottom: 40px;
}
.policy .content p.lst {
  margin-bottom: 0;
}

#pop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  padding: 30px;
}
#pop .content {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 8px;
}
#pop .content span {
  font-size: 1.1rem;
  font-weight: 550;
  margin-bottom: 14px;
}
#pop .content p {
  font-size: 0.8rem;
  letter-spacing: 1px;
  line-height: 2;
  margin-bottom: 16px;
}
#pop .content a {
  text-decoration: none;
  color: #FFFFFF;
  width: fit-content;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 6px;
  background-color: #FF6600;
}

@media screen and (max-width: 1000px) {
  section {
    padding: 60px 30px;
  }
  .drop .top span {
    padding-right: 10px;
  }
  .drop .top img {
    width: 14px;
  }
  header {
    padding: 16px 0 0 0;
  }
  header .content {
    gap: 10px;
  }
  header .content .top {
    padding: 0 30px;
  }
  header .content .top .left a {
    width: 130px;
  }
  header .content .top .right .tel, header .content .top .right .ct-btn {
    display: none;
  }
  header .content .top .right .h-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .content .top .right .h-menu .sticks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
  }
  header .content .top .right .h-menu .sticks .stick {
    display: flex;
    width: 30px;
    height: 1px;
    background-color: #474747;
    position: relative;
    transition: transform 0.1s ease-in-out;
  }
  header .content .top .right .h-menu span {
    font-size: 10px;
    line-height: 1;
    transition: opacity 0.1s ease-in-out;
  }
  header .content .top .right .h-menu.active .sticks .stick:nth-child(2) {
    opacity: 0;
  }
  header .content .top .right .h-menu.active .sticks .stick:first-child {
    transform: rotate(45deg);
    top: 7px;
  }
  header .content .top .right .h-menu.active .sticks .stick:last-child {
    transform: rotate(-45deg);
    top: -7px;
  }
  header .content .top .right .h-menu.active span {
    font-size: 0;
  }
  header .content .bottom .links a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F1EFE2;
    padding: 4px 6px;
    height: unset;
    border-color: #FFFFFF;
  }
  header .content .bottom .links a:not(.sm) {
    display: none;
  }
  header .content .bottom .links a.hd {
    display: flex;
    background-color: #FF6600;
    color: #FFFFFF;
  }
  .img-c {
    max-width: 400px;
    align-self: center;
  }
  #topview {
    padding: 160px 30px 60px 30px;
    background-image: url(/assets/images/topview-mobile.webp);
  }
  #topview .wave {
    height: 56px;
  }
  #topview .filter {
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  }
  #topview .content {
    align-items: center;
  }
  #topview .content h1 {
    margin-bottom: 30px;
    text-align: center;
  }
  #topview .content h1 .sm {
    display: flex;
  }
  #topview .content .badges {
    gap: 10px;
    margin-bottom: 240px;
  }
  #topview .content .badges .badge {
    width: 100px;
    height: 100px;
    padding: 12px;
  }
  #topview .content .badges .badge img {
    width: 30px;
    margin-bottom: 6px;
  }
  #topview .content .badges .badge span {
    font-size: var(--font-size-body-smaller);
  }
  #topview .content .flower-card {
    padding: 10px 18px;
    position: relative;
    top: -92px;
  }
  #topview .content .flower-card img {
    width: 36px;
  }
  #guide .content {
    padding-bottom: 60px;
  }
  #guide .content .left {
    display: none;
  }
  #guide .content .right h2 {
    text-align: center;
  }
  #guide .content .right span {
    justify-content: center;
    margin-bottom: 20px;
  }
  #guide .content .right .img-c {
    display: flex;
    margin-bottom: 20px;
  }
  #guide .content .right p {
    margin-bottom: 30px;
  }
  #areas .content h2 {
    margin-bottom: 40px;
  }
  #areas .content .map-c {
    flex-direction: column;
    margin-bottom: 30px;
  }
  #areas .content .map-c .img-c {
    display: none;
  }
  #areas .content .map-c .text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #areas .content .map-c .text h3 {
    margin-bottom: 20px;
    text-align: center;
  }
  #areas .content .map-c .text .img-c {
    display: flex;
    margin-bottom: 30px;
  }
  #areas .content .drop.ft {
    margin-bottom: 12px;
  }
  .cta {
    padding: 30px;
  }
  .cta.ft {
    padding-top: 20px;
  }
  .cta .content .cards {
    flex-direction: column;
  }
  .cta .content .cards .card {
    width: 100%;
    padding: 16px;
    max-width: 360px;
  }
  .cta .content .cards .card.call {
    gap: 20px;
  }
  .cta .content .cards .card.call .left .img-c {
    width: 84px;
  }
  .cta .content .cards .card.call .right span.num {
    font-size: 1.6rem;
  }
  .cta .content .cards .card.line .top {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .cta .content .cards .card.line .top span {
    padding: 2px 8px;
  }
  .cta .content .cards .card.line .top img {
    height: 14px;
  }
  .cta .content .cards .card.line .line-btn img {
    width: 20px;
  }
  #pricing .content {
    flex-direction: column;
    padding-bottom: 60px;
  }
  #pricing .content h2 {
    margin-bottom: 40px;
  }
  #pricing .content p {
    margin-bottom: 30px;
  }
  #pricing .content .cards {
    flex-direction: column;
    gap: 50px;
  }
  #pricing .content .cards .card .img-c {
    margin-bottom: 20px;
  }
  #pricing .content .cards .card .title {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  #pricing .content .cards .card .price {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  #pricing .content .cards .card .checks-c .top {
    margin-bottom: 10px;
    padding: 4px;
  }
  #plans .content h2 {
    margin-bottom: 80px;
  }
  #plans .content .tabs-c .tab .trigger {
    font-size: 10px;
    width: calc(33.3333333333% - 2px);
    top: -33px;
  }
  #plans .content .tabs-c .tab .body {
    padding: 16px;
  }
  #plans .content .tabs-c .tab .body .title {
    margin-bottom: 10px;
  }
  #plans .content .tabs-c .tab .body .mb {
    margin-bottom: 16px;
  }
  #plans .content .tabs-c .tab.blue .trigger {
    left: calc(33.3333333333% + 1px);
  }
  #plans .content .tabs-c .tab.pink .trigger {
    left: calc(66.6666666667% + 2px);
  }
  #flow .content {
    padding-bottom: 60px;
  }
  #flow .content .cards {
    flex-direction: column;
    gap: 50px;
  }
  #flow .content .cards .card .st {
    margin-bottom: 20px;
  }
  #flow .content .cards .card .img-c {
    margin-bottom: 20px;
  }
  #flow .content .cards .card .img-c::before {
    font-size: 2rem;
    top: -32px;
  }
  #post-burial .content {
    padding-bottom: 60px;
  }
  #post-burial .content h2 {
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
  }
  #post-burial .content h2 br {
    display: flex;
  }
  #post-burial .content .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    row-gap: 30px;
  }
  #post-burial .content .grid .item .img-c {
    margin-bottom: 10px;
  }
  #company-info .content {
    padding-bottom: 60px;
  }
  #company-info .content h2 {
    margin-bottom: 40px;
  }
  #company-info .content .kv-c .kv {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }
  #company-info .content .kv-c .kv .v {
    width: 100%;
  }
  #company-info .content .kv-c .kv .v iframe {
    margin-top: 10px;
    height: 200px;
  }
  #faq .content h2 {
    margin-bottom: 40px;
  }
  #faq .content .qa-c {
    gap: 12px;
  }
  footer {
    padding: 0;
  }
  footer .content {
    flex-direction: column;
  }
  footer .content .left {
    padding: 30px;
    align-items: flex-start;
  }
  footer .content .left .img-c {
    width: 160px;
    margin-bottom: 20px;
    align-self: unset;
  }
  footer .content .right {
    background-color: #CACACA;
    gap: 1px;
    border-top: 1px solid #CACACA;
    border-bottom: 1px solid #CACACA;
  }
  footer .content .right a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    background-color: #FFFFFF;
  }
  .cpr {
    text-align: center;
  }
  .cpr br {
    display: flex;
  }
  .topview-alt {
    padding-top: 150px;
    padding-bottom: 50px;
  }
  .preparation .content {
    padding-bottom: 60px;
  }
  .preparation .content h2 {
    margin-bottom: 40px;
  }
  .preparation .content .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .preparation .content .cards .card {
    padding: 16px;
  }
  .preparation .content .cards .card .img-c {
    height: 70px;
  }
  .preparation .content .cards .card span {
    line-height: 1.4;
    text-align: center;
  }
  .steps .content h2 {
    margin-bottom: 40px;
  }
  .steps .content .cards .card {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }
  .steps .content .cards .card .img-c {
    width: 100%;
  }
  .steps .content .cards .card .img-c img {
    width: 100%;
  }
  .steps .content .cards .card .text h3 {
    margin-bottom: 20px;
  }
  .steps .content .cards .card .text p {
    text-align: center;
  }
  .text-vert .content {
    padding-bottom: 60px;
  }
  .text-vert .content h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  .contact-tel .content {
    padding-bottom: 60px;
  }
  .contact-tel .content h2 {
    margin-bottom: 40px;
    text-align: center;
  }
  .contact-tel .content .ct {
    flex-direction: column;
    align-items: center;
  }
  .contact-tel .content .ct p {
    order: 2;
    text-align: center;
  }
  .contact-tel .content .ct .card {
    width: 100%;
    padding: 16px;
    max-width: 360px;
    order: 1;
  }
  .contact-tel .content .ct .card.call {
    gap: 20px;
  }
  .contact-tel .content .ct .card.call .left .img-c {
    width: 84px;
  }
  .contact-tel .content .ct .card.call .right span.num {
    font-size: 1.6rem;
  }
  .contact-form .content h2 {
    margin-bottom: 20px;
  }
  .contact-form .content .desc {
    margin-bottom: 40px;
  }
  .contact-form .content .mini-pp {
    max-height: 140px;
    margin-bottom: 40px;
  }
  .contact-form .content .mini-pp .scroll {
    padding: 20px;
  }
  .contact-form .content form .fi {
    flex-direction: column;
    gap: 10px;
  }
  .contact-form .content form .btn-c {
    padding-top: 30px;
  }
  .contact-form .content form .btn-c button {
    width: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */
