@charset "UTF-8";

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}

:where(body) {
  block-size: 100%;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + .5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---- root ---- */
:root {
  --primary: #05aa22;
  --secondary: #f1f9e6;
  --accent: #fc8013;
  --text-primary: #232b39;
  --link-active: #000d99;
  --link-color: #0088ce;
  --black-1: rgba(0, 0, 0, .6);
  --white: #fff;
  --white-2: rgba(255, 255, 255, .5);
  --white-3: rgba(255, 255, 255, .8);
  --yellow: #ffe352;
  --yellow-2: #fdf1d3;
  --gray-1: #f5f5f5;
  --gray-2: #ccc;
  --gray-3: #d5d5d5;
  --gray-4: #666;
  --blue: #2c96dd;
  --light-blue: #e5f0f6;
  --green-1: rgba(16, 151, 40, .2);
  --green-2: #08c205;
  --green-3: #05aa22;
  --light-green-1: #eff9e2;
  --light-green-2: #c3ea91;
  --light-green-3: rgba(16, 151, 40, .2);
  --light-green-4: #f1f9e6;
  --light-green-5: #ecf4e1;
  --orange-1: #ef8802;
  --orange-2: #eb7005;
  --graph-bar: #9cc57e;
  --graph-line: rgba(240, 50, 50, .75);
  --citation-color: #515a66;

  /* box-shadow */
  --box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  --box-shadow-nav: 0 0 8px rgba(0, 0, 0, .15);
  --box-shadow-button: 0 4px 10px 2px rgba(0, 0, 0, .24);

  /* gradient */
  --liner-gradient-orange: linear-gradient(to bottom, #ef8802 0%, #eb7005 100%);
  --liner-gradient-green: linear-gradient(180deg, #08c205 0%, #05aa22 100%);

  /* font */
  --font-basic: "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", -apple-system, BlinkMacSystemFont, 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --font-cta: "BIZ UDPGothic", sans-serif;

  /* weight */
  --font-weight-300: normal;
  --font-weight-600: bold;
  --font-weight-400: 400;
  --font-weight-700: 700;
  --font-roboto-300: 300;

  /* line-height */
  --line-height-15: 1.5;
}

/* ---- base ---- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
button {
  font-family: var(--font-basic);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text-primary);
  font-family: var(--font-basic);
  font-size: .875rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

a {
  color: var(--primary);
  transition: .3s all;
}

a:visited,
a:hover {
  color: var(--primary);
}

em {
  font-style: normal;
}

strong {
  font-weight: var(--font-weight-700);
}

table {
  border-collapse: collapse;
}

/* ---- 汎用class ---- */
/* 分岐 */
.is-sp {
  display: block;
}

.is-pc,
.is-pc-xlg {
  display: none;
}

@media (min-width: 768px) {
  .is-sp {
    display: none;
  }

  .is-pc {
    display: block;
  }
}

@media (min-width: 1450px) {
  .is-pc-xlg {
    display: block;
  }
}

.text-center {
  text-align: center;
}

.font-normal {
  font-style: normal;
  font-weight: var(--font-weight-300);
}

.txt-accent {
  color: var(--accent);
}

.txt-primary {
  color: var(--primary);
}

/* ---- section ---- */
.section {
  padding: 3.75rem 0;
  margin-bottom: 0;
  max-width: none;
}

.section.pt-0 {
  padding-top: 0;
}

.section.pb-0,
.layout-container.pb-0 {
  padding-bottom: 0;
}

/* ○○の公営霊園 */
.sec_recommend.sec_pr {
  margin-bottom: 0;
}

/* ---- layout ---- */
/* 墓じまいLP/hakajimai/から流用のコンテンツ、オリジナルコンテンツ用 */
.layout-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 .625rem;
}

/* 墓じまいLP以外の流用コンテンツ or 背景白コンテンツ用 */
.section-item {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: .625rem;
  padding-right: .625rem;
}

.section-item .inner {
  padding: 0;
}

@media (min-width: 768px) {
  .layout-container {
    padding: 0 1rem;
  }

  .section-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 1024px) {
  .layout-container {
    padding: 0;
  }

  .section-item {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ----- 背景 ----- */
.background-white {
  background: var(--white);
}

.background-green {
  background: var(--secondary);
}

.background-light-green {
  background: var(--light-green-1);
}

.background-light-blue {
  background: var(--light-blue);
}

.background-padding {
  padding: 1rem 0 2rem 0;
}

@media (min-width: 768px) {
  .background-padding {
    padding: 2rem 0 4rem 0;
  }
}

/* ----- 見出し ----- */
.section h2 {
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  font-weight: var(--font-weight-300);
}

.ttl-hakajimai__h1 {
  font-size: .9375rem;
  font-weight: bold;
  line-height: 1.6;
}

.ttl-hakajimai__h1 strong {
  font-size: 1.25rem;
}

.ttl-hakajimai__area {
  font-size: .875rem;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.ttl-hakajimai__area strong {
  font-size: 1.25rem;
}

.ttl-hakajimai__furigana {
  font-size: .75rem;
  font-weight: normal;
  color: var(--gray-4);
  display: block;
  letter-spacing: -.1rem;
  margin-bottom: .375rem;
}

.ttl-hakajimai__em {
  color: var(--primary);
  font-style: normal;
}

@media (min-width: 768px) {
  .ttl-hakajimai__h1 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .ttl-hakajimai__h1 strong {
    font-size: 1.5rem;
  }

  .ttl-hakajimai__area {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .ttl-hakajimai__area strong {
    font-size: 1.5rem;
  }
}

/* ---- マーカー ---- */
.text-underline {
  display: inline-block;
  background: linear-gradient(transparent 70%, var(--yellow) 0%);
}

/* ----- マーカーアニメーション ----- */
/* アニメーション前のスタイル */
.marker {
  display: inline;
  font-weight: bold;
  position: relative;
  background-image: linear-gradient(75deg, var(--yellow), var(--yellow));
  /* 単色の場合は同じ色、グラデーションさせる場合は別々の色 */
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 25%;
  /* マーカーの太さを記入 */
  transition: all 1s ease-in-out;
  /* マーカーを引く速度を調整 */
}

/* アニメーション発火時 */
.marker.inview {
  background-size: 100% 25%;
  /* 上で設定した太さに合わせる */
}

/*******************************
| CTA
*******************************/
/* ---- CTA共通 ---- */
.lp-cta {
  padding: 3.625rem .625rem 1.375rem;
}

.fv-cta .lp-cta {
  padding-top: 1.375rem;
  padding-bottom: 3.75rem;
}

.lp-cta__contents {
  position: relative;
  text-align: center;
}

.lp-cta__contents:first-child {
  margin-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .lp-cta {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4rem;
    padding: 3.625rem 1rem 1rem;
  }

  .lp-cta__contents {
    width: 50%;
    max-width: 398px;
  }

  .lp-cta__contents:first-child {
    margin-bottom: 0;
  }
}

/* ボタン */
.lp-cta__button--book,
.lp-cta__button--estimate {
  border-radius: 999px;
  box-shadow: var(--box-shadow-button);
  box-sizing: border-box;
  display: block;
  padding: .875rem 0;
  text-align: center;
  text-decoration: none;
  width: 100%;
  font-weight: var(--font-weight-700);
  font-size: 1.125rem;
}

/* ガイドブックボタン */
.lp-cta__button--book {
  background: var(--liner-gradient-green);
  border: 1px solid var(--primary);
  position: relative;
}

.lp-cta__button--book .lp-cta__button--title::before {
  display: none;
}

/* 見積もりボタン */
.lp-cta__button--estimate {
  background: var(--liner-gradient-orange);
  border: 1px solid var(--accent);
  position: relative;
}

.lp-cta__button--estimate strong {
  font-size: 1.125rem;
}

/* ボタンテキスト */
.lp-cta__button--title {
  padding: 0 .5rem;
  font-size: 1.375rem;
  display: inline-block;
  color: var(--white);
  font-weight: bold;
}

.lp-cta__button--title span {
  font-size: 1.125rem;
}

.lp-cta__button--title::after,
.lp-cta__button--title::before {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
  vertical-align: middle;
}

.lp-cta__button--title::before {
  content: "\e85d";
  color: var(--white);
  font-weight: var(--font-weight-700);
  font-size: 2rem;
  margin-right: 5px;
}

.lp-cta__button--title::after {
  content: "\e315";
  color: var(--white);
  font-weight: var(--font-weight-700);
  font-size: 2rem;
  margin-left: -6px;
  margin-top: -5px;
}

@media (min-width: 768px) {
  .lp-cta__button--book,
  .lp-cta__button--estimate {
    font-size: 1.375rem;
  }

  /* ボタンテキスト */
  .lp-cta__button--title {
    font-size: 1.375rem;
  }
}

/* CVボタン吹き出し */
.lp-cta__button--subtitle {
  font-size: .875rem;
  color: var(--white);
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% - 17px);
}

.lp-cta__balloon--book,
.lp-cta__balloon--estimate {
  background-color: var(--white);
  min-width: 261px;
  min-height: 2rem;
  padding: 0 .5rem;
  border-radius: 99px;
  font-size: 1rem;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.lp-cta__balloon--book::after,
.lp-cta__balloon--estimate::after {
  content: "";
  position: absolute;
  transform: translateX(-50%) rotate(-20deg);
  left: 50%;
  top: calc(100% - 2px);
  -webkit-clip-path: polygon(50% 10px, 0% 0%, 8px 0%);
  clip-path: polygon(50% 10px, 0% 0%, 8px 0%);
  width: 8px;
  height: 10px;
  background-color: var(--white);
  z-index: 1;
}

.lp-cta__balloon--book {
  color: var(--green-3);
  border: solid 2px var(--green-3);
  padding-top: 2px;
}

.lp-cta__balloon--book::after {
  border-top-color: var(--green-3);
}

.lp-cta__balloon--estimate {
  color: var(--orange-2);
  border: solid 2px var(--orange-2);
}

.lp-cta__balloon--estimate::after {
  border-top-color: var(--orange-2);
}

@media (min-width: 768px) {
  .lp-cta__balloon--book,
  .lp-cta__balloon--estimate {
    display: inline-block;
    margin: 0 0 6px;
    padding-left: 1.82rem;
    padding-right: 1.82rem;
    width: auto;
    white-space: nowrap;
  }
}

/* ----- 追従フッター ----- */
.hakajimai-fixed-cta {
  background: var(--black-1);
  bottom: 0;
  box-sizing: border-box;
  left: 0;
  padding: .5rem 1rem .875rem;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 100;
}

.hakajimai-fixed-cta__text {
  font-size: .875rem;
  color: var(--white);
  margin: 0 0 .375rem;
  line-height: 1.2;
}

.hakajimai-fixed-cta__list {
  align-items: center;
  display: flex;
  gap: 0 .5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hakajimai-fixed-cta__item {
  width: 50%;
}

@media (min-width: 768px) {
  .hakajimai-fixed-cta {
    padding: .375rem 0 .625rem;
  }

  .hakajimai-fixed-cta__text {
    font-size: 1rem;
    line-height: 1.4;
  }

  .hakajimai-fixed-cta__list {
    gap: 0 1rem;
  }

  .hakajimai-fixed-cta__item {
    width: 30.75rem;
  }
}

/* ボタン */
.hakajimai-fixed-cta .lp-cta__button--book,
.hakajimai-fixed-cta .lp-cta__button--estimate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .25rem;
}

/* ボタンテキスト */
.hakajimai-fixed-cta .lp-cta__button--title {
  font-size: 1.25rem;
  padding: 0;
}

.hakajimai-fixed-cta .lp-cta__button--title::after,
.hakajimai-fixed-cta .lp-cta__button--title::before {
  display: none;
}

/* PC/SP */
.hakajimai-fixed-cta .lp-cta__button--title.is-pc {
  display: none;
}

.hakajimai-fixed-cta .lp-cta__button--title.is-sp {
  display: block;
}

/* 「無料」アイコン */
.hakajimai-fixed-cta .lp-cta__icon--book,
.hakajimai-fixed-cta .lp-cta__icon--estimate {
  display: inline-block;
  width: 2.25rem;
  height: 1.25rem;
  margin-left: .375rem;
  padding: 0;
  font-size: .8125rem;
  font-weight: bold;
  line-height: 1.25rem;
  transform: none;
  background-color: var(--white);
  border-radius: .125rem;
}

.hakajimai-fixed-cta .lp-cta__icon--estimate {
  color: var(--accent);
}

@media (min-width: 768px) {
  /* ボタンテキスト */
  .hakajimai-fixed-cta .lp-cta__button--title::after,
  .hakajimai-fixed-cta .lp-cta__button--title::before {
    display: inline-block;
  }

  /* PC/SP */
  .hakajimai-fixed-cta .lp-cta__button--title.is-pc {
    display: block;
  }

  .hakajimai-fixed-cta .lp-cta__button--title.is-sp {
    display: none;
  }

  /* 「無料」アイコン */
  .hakajimai-fixed-cta .lp-cta__icon--book,
  .hakajimai-fixed-cta .lp-cta__icon--estimate {
    display: none;
  }
}

/* ----- アイコン ----- */
.icon-about {
  display: inline-block;
  margin: 0 0.5rem 0 0;
  position: relative;
  top: 0.125rem;
  width: 1.25rem;
}

.icon-primary {
  color: var(--primary);
}

.icon-open {
  color: var(--primary);
  display: inline-block;
  position: relative;
  padding: 0 2rem 0 0;
}

.icon-open::after {
  font-size: 1.25rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "open_in_new";
}

.icon-reason {
  font-family: var(--font-roboto);
  color: var(--primary);
  font-weight: var(--font-weight-300);
  line-height: 1;
  width: 4.875rem;
  height: 4.875rem;
  font-size: 1.75rem;
  display: block;
  margin: auto;
  text-align: center;
  background: var(--light-green-5);
  border-radius: 50%;
  padding: .5rem 0 0;
}

.icon-flow {
  display: block;
  width: 4rem;
  height: 4rem;
  margin: 0 1rem 0 0;
}

.faq__ol li::before,
.icon-open::after {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
}

@media (min-width: 768px) {
  .icon-about {
    top: 0.25rem;
    width: 1.625rem;
  }

  .icon-open::after {
    font-size: 1.375rem;
  }

  .icon-reason {
    display: inline-block;
    text-align: left;
    color: var(--green-1);
    font-size: 5rem;
    width: auto;
    height: auto;
    position: absolute;
    top: -2rem;
    left: 0;
    background: none;
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .icon-flow {
    display: none;
  }
}

/* ----- 各コンテンツ ----- */
/* SP版 キーワード検索 */
.search__wrap--sp {
  background: var(--white);
}

main {
  letter-spacing: 0.01rem;
}

/* ---- fee 費用の目安 ---- */
/* 総額 */
.fee__summary {
  background: var(--white);
  text-align: center;
  font-size: 1.25rem;
  font-weight: var(--font-weight-600);
  border-radius: .625rem;
  padding: .625rem 0;
  margin: 0 0 .875rem;
}

.fee__summary em {
  font-style: normal;
  font-size: 1.25rem;
}

.fee__summary small {
  font-size: .75rem;
  display: block;
  font-weight: var(--font-weight-300);
}

@media (min-width: 1024px) {
  .fee__summary em {
    font-size: 1.5rem;
  }

  .fee__summary {
    margin: 0 0 1.5rem;
  }

  .fee__discription {
    display: flex;
    margin: 0 0 2.5rem;
  }
}

/* お墓の片付けにかかる費用 */
.fee__item:first-child {
  margin: 0 0 2.75rem;
  position: relative;
}

.fee__item:first-child::before {
  content: "+";
  line-height: 1;
  color: var(--primary);
  position: absolute;
  top: auto;
  bottom: -2.5rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  font-weight: var(--font-weight-600);
  font-size: 2rem;
}

.fee__title {
  font-weight: var(--font-weight-600);
}

.fee__title em {
  font-style: normal;
  font-size: 1.25rem;
}

.fee__title--system {
  display: block;
  margin: 0 0 .625rem;
}

.fee__details {
  width: 100%;
  border-bottom: var(--gray-2) solid 1px;
  margin: .875rem 0 0;
}

.fee__details tr {
  border-top: var(--gray-2) solid 1px;
}

.fee__details th,
.fee__details td {
  padding: .594rem .625rem;
}

.fee__details th {
  background: var(--gray-1);
  font-weight: var(--font-weight-300);
  width: 50%;
}

.fee__details td {
  background: var(--white);
  font-weight: var(--font-weight-600);
}

@media (min-width: 1024px) {
  .fee__item {
    width: 28.125rem;
  }

  .fee__item:first-child {
    margin: 0 auto 0 0;
  }

  .fee__item:first-child::before {
    top: 39%;
    right: -4.5rem;
    left: auto;
    bottom: auto;
    margin: 0;
  }

  .fee__item:first-child::after {
    right: -3.875rem;
    top: 40%;
  }

  .fee__title em {
    font-size: 1.5rem;
  }

  .fee__details {
    margin: 1rem 0 0;
  }

  .fee__details th,
  .fee__details td {
    font-size: 1rem;
  }
}

/* 墓じまいの助成金制度 */
.fee__system {
  background: var(--light-blue);
  border-radius: 1.25rem;
  padding: 1.25rem;
  margin: 1.25rem 0;
}

@media (min-width: 1024px) {
  .fee__system {
    margin: 2rem 0 0;
  }
}

/* ----- result ----- */
.result {
  margin: 1rem .625rem 0;
  position: relative;
}

.result__title {
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: center;
}

.result__list {
  position: relative;
  background: var(--light-green-1);
  border-radius: .625rem;
  padding: 1.25rem 1rem;
}

.result__list::before {
  content: "";
  position: absolute;
  left: 5rem;
  bottom: -2rem;
  display: block;
  width: 2.5rem;
  height: 4rem;
  background: url(https://cdn.e-ohaka.com/hakajimai/img/result_fukidashi_parts.svg) no-repeat left top/cover;
}

.result__item {
  line-height: 1.5;
  position: relative;
  text-align: left;
  padding: 0 0 0 1rem;
  margin: 0 0 .5rem;
}

.result__item:last-child {
  margin: 0;
}

.result__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  border-radius: 50%;
  width: .625rem;
  height: .625rem;
  background: var(--primary);
}

.result figure {
  position: relative;
  margin: -1.5rem 0 0 auto;
  width: 12.5rem;
}

.result figure img {
  display: block;
}

@media (min-width: 768px) {
  .result {
    height: 24.25rem;
    margin: 2rem 0 0;
  }

  .result__title {
    margin: 0 0 1.5rem;
  }

  .result__list {
    background: none;
    padding: 0;
    display: flex;
  }

  .result__list::before {
    content: none;
  }

  .result__item {
    text-align: center;
    width: 14.375rem;
    padding: 2.625rem 0 0;
    margin: 0;
    position: absolute;
  }

  .result__item:before {
    content: none;
  }

  .result__item:first-child {
    left: 0;
    top: 8.75rem;
    height: 9.3125rem;
    background: url(https://cdn.e-ohaka.com/hakajimai/img/fukidashi_after_1.svg) no-repeat left top;
  }

  .result__item:nth-child(2) {
    top: 0;
    left: 7.5rem;
    height: 9.625rem;
    background: url(https://cdn.e-ohaka.com/hakajimai/img/fukidashi_after_2.svg) no-repeat left top;
  }

  .result__item:nth-child(3) {
    top: 0;
    right: 7.5rem;
    height: 9.5rem;
    background: url(https://cdn.e-ohaka.com/hakajimai/img/fukidashi_after_3.svg) no-repeat left top;
  }

  .result__item:last-child {
    top: 9.375rem;
    right: 0;
    height: 9.5rem;
    background: url(https://cdn.e-ohaka.com/hakajimai/img/fukidashi_after_4.svg) no-repeat left top;
  }

  .result figure {
    margin: 0;
    position: absolute;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    width: 15.9375rem;
    bottom: 0;
  }
}

@media (min-width: 1024px) {
  .result__item:nth-child(2) {
    top: 0;
    left: 12rem;
    height: 9.625rem;
    background: url(https://cdn.e-ohaka.com/hakajimai/img/fukidashi_after_2.svg) no-repeat left top;
  }

  .result__item:nth-child(3) {
    top: 0;
    right: 11.75rem;
    height: 9.5rem;
    background: url(https://cdn.e-ohaka.com/hakajimai/img/fukidashi_after_3.svg) no-repeat left top;
  }
}

/* ---- reason 選ばれる理由 ---- */
.reason {
  padding: 0;
}

/* 悩み */
.reason__title {
  display: flex;
  align-items: center;
  border-radius: .625rem;
  font-weight: var(--font-weight-300);
  margin: 0 auto 0 0;
  padding: .625rem;
  background: var(--light-blue);
}

.reason__title figure,
.reason__title span {
  display: block;
}

.reason__title figure {
  width: 2.5rem;
}

.reason__title span {
  position: relative;
  padding: 0 0 0 .625rem;
  font-size: .875rem;
}

/* 特徴 */
.reason__contents {
  background: var(--light-green-5);
  border-radius: .625rem;
  margin: .5rem 0 1.25rem;
}

.reason__contents dt {
  position: relative;
  font-size: 1rem;
  padding: 3.875rem 0 0;
}

.reason__contents dt strong {
  z-index: 15;
  position: absolute;
  top: 1.3rem;
  width: 100%;
  text-align: center;
}

.reason__contents dt strong .marker-reason {
  background: linear-gradient(transparent 75%, var(--yellow) 0%);
  display: inline;
}

.reason__contents dt .icon-reason {
  font-family: var(--font-roboto);
  font-weight: var(--font-roboto-300);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.25rem;
  z-index: 10;
}

.reason__contents dd {
  padding: 1.125rem 1.25rem 1.25rem;
}

@media (min-width: 768px) {
  .reason {
    padding: 1.875rem 0 0;
  }

  .reason__item {
    display: flex;
    align-items: center;
    margin: 0 0 2.5rem;
  }

  /* 悩み */
  .reason__title {
    width: 16.875rem;
    padding: 1.375rem .625rem;
  }

  .reason__title figure {
    width: 4rem;
    margin: 0 auto 0 0;
  }

  .reason__title span {
    font-size: 1rem;
    width: 11rem;
    line-height: calc(1em + .5rem);
  }

  .reason__title span::before,
  .reason__title span::after {
    content: "";
    position: absolute;
  }

  .reason__title span::before {
    width: 14.375rem;
    height: 0.125rem;
    border-bottom: var(--primary) dashed 1px;
    left: 0;
    bottom: -.75rem;
  }

  .reason__title span::after {
    width: .5rem;
    height: .5rem;
    border-top: solid 1px var(--primary);
    border-right: solid 1px var(--primary);
    transform: rotate(45deg);
    right: -3.5rem;
    bottom: -.95rem;
  }

  /* 特徴 */
  .reason__contents {
    margin: 0 0 0 1.875rem;
    padding: 0 1.25rem 0;
    width: 43.75rem;
  }

  .reason__contents dt {
    font-size: 1.0625rem;
    padding: 0;
    margin-bottom: -1rem;
  }

  .reason__contents dt strong {
    background: none;
    text-align: left;
    width: auto;
    top: 1.25rem;
    margin: 0 0 0 .8rem;
  }

  .reason__contents dt strong .marker-reason {
    background: var(--light-green-5);
  }

  .reason__contents dt .icon-reason {
    position: relative;
    transform: none;
    left: 0;
    top: -2.125rem;
  }
}

@media (min-width: 1024px) {
  .reason__title span {
    padding: 0;
  }

  .reason__contents dt {
    font-size: 1.125rem;
    margin-bottom: -2.125rem;
  }
}

/* ----- flow ----- */
/* 共通 */
.flow__title {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0 0 .625rem 0;
  height: 4rem;
}

.flow:last-child .flow__discription {
  padding: 1rem 1rem 0 2.875rem;
}

.flow__item {
  text-align: center;
  font-size: 1rem;
  border-radius: 1.25rem;
  font-weight: var(--font-weight-600);
  padding: .625rem 0;
  z-index: 5;
}

.flow__discription {
  position: relative;
  padding: 1rem 0 1.25rem 2.875rem;
}

.flow__discription::before {
  position: absolute;
  content: "";
  display: block;
  background: var(--gray-2);
  width: 0.125rem;
  height: 100%;
  left: 1.625rem;
  top: 0;
}

.flow__next {
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .flow__title {
    display: block;
    font-size: 1rem;
    height: 4rem;
    line-height: 4rem;
    padding: 0 0 0 2.5rem;
    margin: 0;
  }

  .flow {
    display: flex;
    align-items: center;
    margin: 0 0 1.25rem 1.875rem;
  }

  .flow:last-child .flow__discription {
    padding: 0 0 0 1.25rem;
  }

  .flow__item {
    font-size: 1.125rem;
    width: 17.5rem;
    padding: 1.25rem 0;
  }

  .flow__discription {
    width: 40.125rem;
    padding: 0 0 0 1.25rem;
  }

  .flow__discription::before {
    content: none;
  }

  .flow__next::before {
    content: "";
    position: absolute;
    display: block;
    background: var(--gray-2);
    width: 0.125rem;
    height: 2.5rem;
    left: 50%;
    bottom: -2.5rem;
    transform: translateX(-50%);
    z-index: 1;
  }
}

/* ユーザーパート */
.flow__user {
  margin-bottom: 1.875rem;
  position: relative;
}

@media (min-width: 1024px) {
  .flow__user {
    padding: 0 0 0 2.875rem;
    margin-bottom: 3rem;
  }

  .flow__user::before {
    content: "";
    position: absolute;
    left: 1.7rem;
    top: 0;
    display: block;
    background: var(--white);
    width: .625rem;
    border-radius: .3125rem;
    height: 100%;
    z-index: 10;
  }

  .flow__user::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: url(https://cdn.e-ohaka.com/hakajimai/img/flow_user02.png) no-repeat center center/cover;
    z-index: 15;
  }
}

/* 事業者パート */
.flow__staff {
  margin-bottom: 1.875rem;
  position: relative;
}

@media (min-width: 1024px) {
  .flow__staff {
    margin-bottom: 3rem;
    padding: 0 0 0 2.875rem;
  }

  .flow__staff::before {
    content: "";
    position: absolute;
    left: 1.7rem;
    top: 0;
    display: block;
    background: var(--light-blue);
    width: .625rem;
    border-radius: .3125rem;
    height: 100%;
    z-index: 10;
  }

  .flow__staff::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: url(https://cdn.e-ohaka.com/hakajimai/img/flow_staff.png) no-repeat center center/cover;
    z-index: 15;
  }
}

/* ----- faq ----- */
.faq-list {
  font-size: .875rem;
  margin: 0 0 1.875rem;
}

.faq-list__ques {
  position: relative;
  padding: 1rem 0;
  cursor: pointer;
  border-bottom: var(--gray-2) solid 1px;
}

.faq-list__ques::before {
  content: "";
  position: absolute;
  right: .8rem;
  display: block;
  width: .625rem;
  height: .625rem;
  border-top: solid 2px var(--primary);
  border-right: solid 2px var(--primary);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  transition: .3s all;
}

.faq-list__ques--title {
  display: block;
  position: relative;
  padding: 0 2.5rem 0 2.625rem;
  font-weight: bold;
  line-height: 1.3;
}

.faq-list__ques--title::before {
  font-size: 1rem;
  display: block;
  border-radius: 50%;
  text-align: center;
  content: "Q";
  font-family: var(--font-roboto);
  font-weight: 700;
  width: 1.75rem;
  height: 1.75rem;
  line-height: 1.75rem;
  background: var(--primary);
  color: var(--white);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.faq-list__ques.active::before {
  content: "";
  display: block;
  width: .625rem;
  height: .625rem;
  border-top: solid 2px var(--gray-2);
  border-right: solid 2px var(--gray-2);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.faq-list__ques.active {
  border-bottom: var(--white) solid 1px;
}

.faq-list__ans {
  display: none;
  position: relative;
  padding: 1rem 1rem 1rem 2.625rem;
  background: var(--white);
  border-radius: 1.25rem;
  margin: 0;
}

.faq-list__ans::before {
  font-size: 1.125rem;
  content: "A.";
  font-family: var(--font-roboto);
  font-weight: 700;
  color: var(--primary);
  position: absolute;
  left: 1rem;
  top: 1rem;
  line-height: 1;
}

.faq-list__ans p {
  margin: 0 0 1rem;
}

.faq-list__ans p:last-child {
  margin: 0;
}

.faq-list__text--strong {
  font-size: 1rem;
  display: block;
  margin: 0 0 .125rem;
}

.faq__li li {
  margin: 0 0 1rem;
}

.faq__li li:last-child {
  margin: 0;
}

.faq__li li a strong {
  font-weight: normal;
  line-height: 1.4;
}

.faq__li--note {
  margin: 0;
}

.faq__li--note li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0 0 .625rem;
}

.faq__li--note li:last-child {
  margin: 0;
}

.faq__li--note li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.faq__li--item {
  margin: 0 0 .8rem .8rem;
}

.faq__li--item li {
  margin: .625rem 0 0;
  list-style: disc;
}

.faq__ol {
  margin: 0 0 1rem;
  padding: 1.5rem;
  background: var(--light-green-1);
  border-radius: 1.25rem;
}

.faq__ol small {
  font-size: .8125rem;
  display: block;
  margin: .625rem 0 0;
}

.faq__ol li {
  margin: 0 0 2.5rem;
  position: relative;
}

.faq__ol li::before {
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  bottom: -1.75rem;
  content: "arrow_downward";
  color: var(--primary);
}

.faq__ol li:last-child {
  margin: 0;
}

.faq__ol li:last-child::before {
  content: none;
}

@media (min-width: 768px) {
  .faq-list {
    font-size: 1rem;
    margin: 0 0 1.875rem;
  }

  .faq-list__ques::before {
    width: .875rem;
    height: .875rem;
    border-top: solid 3px var(--primary);
    border-right: solid 3px var(--primary);
  }

  .faq-list__ques--title {
    padding: 0 0 0 2.625rem;
  }

  .faq-list__ques--title::before {
    font-size: 1.5rem;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
  }

  .faq-list__ques.active::before {
    width: 1rem;
    height: 1rem;
    border-top: solid 3px var(--gray-2);
    border-right: solid 3px var(--gray-2);
  }

  .faq-list__ans {
    padding: 1rem 1.25rem 1rem 4.125rem;
  }

  .faq-list__ans::before {
    font-size: 2rem;
    left: 1.25rem;
  }

  .faq__li li {
    margin: 0 0 .5rem;
  }
}



/* ----- 関連リンク ----- */
.aside-link {
  margin: 0;
}

.aside-link__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 .8rem;
}

.aside-link__item {
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: .375rem;
  position: relative;
}

.aside-link__item::after {
  content: "／";
  margin: 0 .125rem;
}

.aside-link__item:last-child::after {
  content: none;
}

.aside-link__item a {
  color: var(--link-color);
}

@media (min-width: 768px) {
  .aside-link__list {
    margin: 0 0 1.5rem;
  }
}

/* ---- ページトップ ---- */
#footer .pagetop {
  background: var(--white-2);
  border: var(--primary) solid 1px;
  bottom: 94px;
}

#footer .pagetop i {
  color: var(--primary);
}

/*******************************
| hakajimai_area_list エリアLP
*******************************/
/* ----- 墓じまい・改葬の件数推移 ----- */
/* 図表 *******************************/
/* 文字 */
.graph__label--year,
.graph__count,
.graph__year,
.columnTableBody span,
.lineTableBody span {
  font-size: 10px;
  z-index: 3;
}

/* グラフ */
.graph,
.graph * {
  box-sizing: content-box;
}

.graph {
  box-sizing: content-box;
  margin: 0 auto 20px;
  max-width: 750px;
  min-width: 600px;
  overflow: hidden;
  padding: 10px 86px;
  width: 100%;
  background: var(--white);
}

@media (min-width: 768px) {
  .graph {
    margin-bottom: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.graph__wrap {
  margin: 0 auto;
  max-height: 463px;
  max-width: 750px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.graph__wrap table thead {
  position: relative;
}

.graph__title {
  font-weight: bold;
  text-align: center;
}

.graph__caption {
  margin-top: 12px;
  text-align: right;
  font-size: 8px;
}

@media (min-width: 768px) {
  .graph__caption {
    font-size: 10px;
  }
}

.graph__caption a {
  font-size: 8px;
  color: var(--citation-color);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .graph__caption a {
    font-size: 10px;
  }
}

.graph__caption a ::-webkit-full-page-media,
.graph__caption a :future,
:root .graph__caption a {
  font-size: 12px;
}

.graph__caption a:hover {
  color: var(--link-active);
  opacity: 0.7;
}

.graph__table--column {
  position: relative;
}

.graph__table--line {
  max-width: 750px;
  position: absolute;
  top: 118px;
}

.graph__list {
  align-items: center;
  display: flex;
  gap: 0 43px;
  justify-content: center;
  margin: 15px auto;
}

.graph__item {
  position: relative;
  display: inline-block;
}

.graph__item::before {
  content: "";
  width: 13px;
  height: 10px;
  margin-right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
}

.graph__item:nth-of-type(1)::before {
  background-color: var(--graph-bar);
}

.graph__item:nth-of-type(2)::before {
  background-color: var(--graph-line);
}

.graph__vertical-ttl {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
}

.graph__vertical-ttl--left {
  color: var(--graph-bar);
  right: calc(100% + 15px + 40px);
}

.graph__vertical-ttl--right {
  color: var(--graph-line);
  left: calc(100% + 15px + 50px);
}

.graph__count-wrap {
  bottom: 0;
  height: calc(100% - 70px);
  position: absolute;
}

.graph__count-wrap--left {
  right: calc(100% + 10px);
}

.graph__count-wrap--right {
  left: calc(100% + 10px);
}

.graph__count {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  text-align: right;
  justify-content: space-between;
}

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

.graph__count--left .graph__count-item:nth-of-type(2) {
  margin-top: 30px;
}

.graph__count--right {
  flex-direction: row;
}

.graph__count--right .graph__count-item:last-of-type {
  opacity: 0;
}

.graph__count--right .graph__count-item:nth-of-type(2) {
  margin-top: 30px;
}

.graph__count-item {
  white-space: nowrap;
  width: 40px;
}

.graph__count-label {
  width: 100px;
  margin-bottom: -30px;
  line-height: 1.2;
  position: absolute;
  top: 25px;
}

.graph__count-label--left {
  text-align: right;
  left: -30px;
}

.graph__count-label--right {
  text-align: left;
  left: -9px;
}

.graph__label--year {
  bottom: 7px;
  left: 100%;
  position: absolute;
  width: 33px;
}

/* chartcss class編集 *******************************/
.charts-css.line:not(.reverse):not(.reverse-data) tbody tr td::before {
  z-index: 2;
}

tbody.columnTableBody tr td {
  background: var(--graph-bar) !important;
}

.charts-css.column tbody tr th {
  bottom: 0;
}

.charts-css.show-heading caption {
  margin-bottom: 40px;
}

/* scroll-hint class編集 *******************************/
.scroll-hint-icon-wrap {
  z-index: 999;
}

/* 下部テキスト *******************************/
.renovation__txt {
  text-align: left;
}

/* ----- 周辺のお墓関連情報 ----- */
.information-block .list_near {
  overflow: hidden;
  transition: all .5s;
  padding-bottom: 30px;
  max-height: 180px;
}

.information-block input:checked~.list_near {
  max-height: none;
}

.list_near {
  gap: 0 2%;
}

.list_near li {
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: .375rem;
}

.list_near .list_near__name {
  color: var(--link-color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.list_near .list_near__address {
  display: inline-flex;
  align-items: center;
  font-size: .75rem;
}

@media (min-width: 768px) {
  .list_near li {
    width: calc(96% / 3);
  }
}

/* ---- footer ---- */
.hakajimai-area .blk_footer_copyright {
  padding-bottom: 100px;
}

/*******************************
| detail_hakajimai 霊園LP
*******************************/
/* ----- detail fv cv ----- */
.lp-cta__detail {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--gray-2);
  position: relative;
}

.lp-cta__detail .lp-cta__contents {
  width: 100%;
}

/* テキスト領域 */
.lp-cta__detail .lp-cta__contents--text {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
}

.lp-cta__detail .lp-cta__image {
  display: none;
}

.lp-cta__detail .lp-cta__text--title {
  display: block;
  margin-bottom: .5rem;
  font-size: 1.375rem;
  color: var(--accent);
  font-weight: var(--font-weight-600);
  line-height: 1.4;
}

.lp-cta__detail .lp-cta__text--subtitle {
  font-size: .875rem;
  line-height: 1.5;
}

/* ボタン領域 */
.lp-cta__detail .lp-cta__button--fv {
  width: 100%;
}

.lp-cta__detail .lp-cta__contents--btn {
  margin-top: .875rem;
}

@media (min-width: 768px) {
  .lp-cta__detail {
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0;
    padding: .375rem .625rem;
  }

  .lp-cta__detail .lp-cta__contents {
    display: flex;
    align-items: center;
    width: auto;
  }

  /* テキスト領域 */
  .lp-cta__detail .lp-cta__contents--text {
    width: calc(100% - 18.75rem - 2rem);
  }

  .lp-cta__detail .lp-cta__image {
    display: block;
    text-align: center;
    margin: 0 0 0 1rem;
    flex-shrink: 0;
  }

  .lp-cta__detail .lp-cta__figure {
    width: 6rem;
    height: 6.5rem;
    margin: 0 .625rem 0 3rem;
    object-fit: cover;
    object-position: 0 0;
  }

  .lp-cta__detail .lp-cta__text--fukidashi {
    width: 5rem;
    height: 5rem;
    padding: 1rem 0 0;
    font-size: 1rem;
    line-height: 1.4;
    background: no-repeat 1px 0/68px auto url(/responsive/img/balloon.png);
    background-size: 5rem auto;
    position: absolute;
    top: .375rem;
    left: .625rem;
  }

  .lp-cta__detail .lp-cta__text--title {
    font-size: 1.25rem;
  }

  .lp-cta__detail .lp-cta__text--subtitle {
    font-size: 0.8125rem;
  }

  /* ボタン領域 */
    .lp-cta__detail .lp-cta__button--fv {
    width: 18.75rem;
  }

  .lp-cta__detail .lp-cta__button--title {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  /* テキスト領域 */
  .lp-cta__detail .lp-cta__text--title {
    font-size: 1.625rem;
  }

  .lp-cta__detail .lp-cta__text--subtitle {
    font-size: .875rem;
  }
}

@media (max-width: 320px) {
  /* テキスト領域 */
  .lp-cta__detail .lp-cta__text--title {
    font-size: 1.25rem;
  }

  .lp-cta__detail .lp-cta__text--subtitle {
    font-size: .8125rem;
  }

  /* ボタン領域 */
  .lp-cta__detail .lp-cta__balloon--estimate {
    min-width: 170px;
  }

  .lp-cta__detail .lp-cta__button--title {
    font-size: 1.125rem;
  }

  .lp-cta__detail .lp-cta__button--title span {
    font-size: .875rem;
  }

  .lp-cta__detail .lp-cta__button--title::before,
  .lp-cta__detail .lp-cta__button--title::after {
    font-size: 1.5rem;
  }
}

/* ----- kv ----- */
.detail-hakajimai__kv {
  height: 15rem;
  object-fit: cover;
}

.detail-hakajimai__profile {
  background: var(--white);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  padding: .8rem 1rem;
  border-radius: .375rem;
  margin: -5rem .625rem .75rem;
  max-width: inherit;
  position: relative;
}

.detail-hakajimai__place {
  margin: 1rem auto 0 -0.375rem;
}

.detail-hakajimai__item--place {
  font-size: 0.875rem;
  align-items: center;
  display: flex;
  margin: 0 0 0.375rem 0;
  white-space: nowrap;
}

.detail-hakajimai__item--place a {
  color: var(--link-color);
  margin-right: 0.375rem;
}

.detail-hakajimai-area__profile {
  margin: auto;
  max-width: 1000px;
  padding: 2rem 0.625rem;
}

@media (min-width: 768px) {
  .detail-hakajimai__place {
    margin: 0;
  }

  .detail-hakajimai__item--place {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .detail-hakajimai__profile {
    padding: 1rem 1.5rem;
    margin: -5rem auto .75rem auto;
    max-width: 1020px;
  }

  .detail-hakajimai__ttl {
    width: 60%;
  }

  .detail-hakajimai-area__profile {
    padding: 2rem 0;
  }
}
