@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;
  --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;

  /* 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 {
  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);
}

/* support */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

/* ---- section ---- */
.section {
  padding: 3.75rem 0;
}

.section__case {
  padding-top: 0;
}

.section__faq {
  padding: 3.75rem 0 3.125rem;
}

@media (min-width: 768px) {
  .section__faq {
    padding-bottom: 5rem;
  }
}

/* ---- layout ---- */
.layout-container,
.layout-container__footer,
.layout-container__header {
  max-width: 1000px;
  margin: 0 auto;
}

.layout-container {
  padding: 0 .625rem;
}

.layout-container__header {
  display: flex;
  align-items: center;
  padding: 0 .375rem;
}

.layout-container__footer {
  padding: 0;
}

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

  .layout-container__header {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .layout-container {
    padding: 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);
}

/* ---- 見出し ---- */
.ttl__h2 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
}

@media (min-width: 768px) {
  .ttl__h2 {
    font-size: 1.5rem;
  }
}

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

/* ---- マーカー ---- */
/* アニメーション前のスタイル */
.marker {
  display: inline;
  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 ---- */
.lp-cta {
  padding: 3.625rem .625rem 1.375rem;
}

.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;
  }
}

/* ---- modal ---- */
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: var(--black-1);
  padding: 4rem 1.25rem 1.25rem;
  overflow: auto;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 999;
  display: none;
}

.modal-container::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  height: 100%;
}

.modal-container.active {
  display: block;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 1rem;
  right: .625rem;
  width: 1.875rem;
  height: 1.875rem;
  font-size: 2.5rem;
  color: var(--text-primary);
  border: var(--text-primary) solid 1px;
  border-radius: .5rem;
  cursor: pointer;
  z-index: 1500;
}

/* ---- アイコン ---- */
.icon-kv {
  margin-right: .625rem;
}

.icon-kv__dev {
  margin: auto;
  height: 1.5rem;
}

.icon-kv__office {
  margin: auto;
  height: 1.5rem;
}

.icon-kv__moving {
  margin: auto;
  height: 1.75rem;
}

.icon-kv__temple {
  margin: auto;
  height: 1.5rem;
}

@media (min-width: 768px) {
  .icon-kv__dev {
    height: 1.8125rem;
  }

  .icon-kv__office {
    height: 2rem;
  }

  .icon-kv__moving {
    height: 2.1875rem;
  }

  .icon-kv__temple {
    height: 2.0625rem;
  }
}

.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;
}

@media (min-width: 768px) {
  .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;
  }
}

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

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

.icon-open {
  display: inline-block;
  position: relative;
  padding: 0 2rem 0 0;
}

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

@media (min-width: 768px) {
  .icon-open::after {
    font-size: 1.375rem;
  }
}

.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;
}

/* arrow */
.arrow__image {
  width: 2.25rem;
  display: block;
  margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
  .arrow__image {
    margin: 0 auto 1.625rem;
  }
}

/* ---- header ---- */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: var(--white-3);
  z-index: 1000;
  height: 3rem;
  border-bottom: var(--gray-3) solid 1px;
}

.header-img__logo {
  margin-right: auto;
  height: 1.875rem;
}

@media (min-width: 768px) {
  .header {
    height: 4rem;
  }

  .header-img__logo {
    height: 3.5rem;
  }
}

@media (min-width: 1450px) {
  .header {
    position: inherit;
    border-bottom: none;
  }
}

/* ハンバーガーボタン */
.header-menu {
  display: block;
  border: 0;
  margin-left: .625rem;
  background: no-repeat;
  width: 2.75rem;
  height: 2.75rem;
}

.header-menu .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.875rem;
  height: 2.75rem;
  line-height: 2.75rem;
}

@media (min-width: 1450px) {
  .header-menu {
    display: none;
  }
}

/* menu */
.menu {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.875rem 0;
  position: relative;
  width: 13.75rem;
  box-shadow: var(--box-shadow-nav);
}

.menu__title {
  color: var(--primary);
  font-size: 1rem;
}

@media (min-width: 1450px) {
  .menu {
    width: auto;
    position: fixed;
    left: 0;
    top: 76px;
    z-index: 1000;
    width: 13.75rem;
    padding: 1.875rem 0 1.875rem 1.875rem;
    border-radius: 0 1.25rem 1.25rem 0;
  }

  .menu__title {
    font-size: 1rem;
  }
}

/* menu内のリンク */
.nav {
  margin-top: 1rem;
}

.nav__item {
  margin-bottom: 1rem;
  line-height: normal;
}

.nav__item:last-child {
  margin-bottom: 0;
}

.nav .link-move {
  font-size: 1rem;
  color: var(--text-primary);
  text-align: center;
  line-height: 1;
  position: relative;
  font-weight: var(--font-weight-600);
}

.nav .link-move:visited {
  color: var(--text-primary);
}

.nav .link-move:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav .link-move {
    text-align: left;
  }
}

/* ===== contents ===== */
/* ---- kv ---- */
.kv {
  background: var(--light-green-4);
  margin: 3rem 0 0;
}

.kv__inr {
  position: relative;
}

.kv__title {
  color: var(--primary);
  font-size: 1.875rem;
  text-align: center;
  padding: 1.25rem 0;
}

.kv__title-text {
  font-size: 1.875rem;
}

.kv__figure {
  width: 91.71%;
  margin: -.75rem 0 0 auto;
}

@media (min-width: 768px) {
  .kv {
    margin: 4rem 0 0;
  }

  .kv__inr {
    display: flex;
    height: 100%;
    justify-content: center;
    gap: 0 3.125rem;
  }

  .kv__title {
    font-size: 2.25rem;
    margin: 0;
  }

  .kv__title-text {
    font-size: 2.25rem;
  }

  .kv__figure {
    width: 15.625rem;
  }
}

@media (min-width: 1024px) {
  .kv {
    height: 17.3125rem;
  }

  .kv__title {
    text-align: left;
    margin: 5.5rem 0 0;
    padding: 0;
    font-size: 2.5rem;
  }

  .kv__title-text {
    font-size: 2.5rem;
  }

  .kv__figure {
    margin: 0;
    width: 488px;
    position: absolute;
    bottom: 0;
    right: 1.25rem;
  }
}

@media (min-width: 1450px) {
  .kv {
    margin: 0;
  }
}

@media (max-width: 320px) {
  .kv__title {
    font-size: 1.5rem;
    padding: 1rem 0;
  }

  .kv__title-text {
    font-size: 1.5rem;
  }
}

.summary {
  background: var(--white);
  border-radius: 1.25rem;
}

.summary__discription {
  padding: 1.125rem 0;
}

.summary__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1rem 0 1.375rem;
}

.summary__item {
  display: flex;
  align-items: center;
  font-size: .875rem;
  width: 50%;
  font-weight: var(--font-weight-600);
  margin: 0 0 1rem;
}

.summary__item:nth-child(odd) {
  width: 46%;
}

.summary__item:nth-last-child(2),
.summary__item:last-child {
  margin: 0;
}

.summary__item figure {
  margin: 0 .5rem 0 0;
}

@media (min-width: 768px) {
  .summary {
    margin: 1rem 0 0;
    width: 23.75rem;
  }
}

@media (min-width: 1024px) {
  .summary {
    width: 500px;
  }

  .summary__discription {
    margin-top: .75rem;
    padding: 2rem 0;
  }

  .summary__list {
    margin: 0 2.5rem;
  }

  .summary__item {
    width: 50%;
    font-size: 1.125rem;
  }

  .summary__item figure {
    margin: 0 .75rem 0 0;
  }
}

@media (max-width: 320px) {
  .summary__list {
    margin: 0;
  }

  .summary__item {
    font-size: .8125rem;
  }
}

/* ---- case ---- */
.case__title {
  margin-top: 3.125rem;
}

.case__lead {
  margin-bottom: 1.875rem;
  text-align: center;
}

.case__lead a {
  color: var(--text-primary);
  text-decoration: none;
}

@media (min-width: 768px) {
  .case__lead {
    margin-bottom: 2.5rem;
  }
}

/* 事例カード */
.case__card {
  margin-bottom: 1.875rem;
  padding: 24px 10px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 20px;
}

.case__name {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  text-align: center;
}

.case__name span {
  margin-right: 4px;
  color: var(--primary);
}

.case__price {
  margin-bottom: 1rem;
  font-size: .75rem;
  color: var(--orange-2);
  text-align: center;
  font-weight: var(--font-weight-700);
  line-height: normal;
}

.case__price em {
  font-size: 1.25rem;
}

.case__price small {
  color: var(--text-primary);
}

.case__img {
  width: 100%;
  max-width: 16.6875rem;/* 267px */
  margin: 0 auto 1.375rem;
  text-align: center;
}

.case__feature--list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.case__feature--item {
  padding: 5px 8px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: normal;
  background: var(--white);
  border: 1px solid var(--primary);
}

.case__comment {
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* 事例カードの表 */
.case__table {
  width: 100%;
  border: 1px solid var(--primary);
}

.case__thead th {
  padding: .375rem;
  background: var(--primary);
  color: var(--white);
  font-size: .9375rem;
}

.case__tbody th,
.case__tbody td {
  padding: .625rem .375rem;
  text-align: center;
  line-height: normal;
  background: var(--white);
  border-bottom: 1px solid var(--gray-4);
}

.case__tbody th {
  width: 45.8%;
  font-size: .75rem;
  font-weight: var(--font-weight-300);
  border-right: 1px solid var(--gray-4);
}

.case__tbody tr:last-child th,
.case__tbody tr:last-child td {
  border-bottom: 1px solid var(--primary);
}

.case__tbody .price {
  color: var(--orange-2);
  font-size: 1.25rem;
  font-weight: var(--font-weight-700);
}

.case__tbody .price small {
  margin-left: 4px;
  color: var(--text-primary);
  font-size: .625rem;
}

@media (min-width: 768px) {
  .case__card {
    padding: 40px 44px;
  }

  .case__header {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 1.375rem;
  }

  .case__body {
    display: grid;
    grid-template-columns: minmax(267px, 1fr) 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 2rem 1.875rem;
  }

  .case__name {
    margin-bottom: 0;
    margin-right: 1rem;
    font-size: 1.5rem;
  }

  .case__price {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .case__img {
    grid-column: 1/2;
    grid-row: 2/3;
    align-self: center;
    max-width: 27.5rem;/* 440px */
    margin-bottom: 0;
  }

  .case__feature--list {
    grid-column: 1/3;
    grid-row: 1/2;
    margin-bottom: 0;
  }

  .case__feature--item {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .case__comment {
    grid-column: 1/3;
    grid-row: 3/4;
    margin-bottom: 0;
  }

  /* 事例カードの表 */
  .case__table {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  .case__thead th {
    font-size: 1rem;
  }

  .case__tbody th {
    width: 52.27%;
    font-size: 1rem;
  }
}

/* カード開閉 */
.js-toggle-content {
  display: none;
}

.js-toggle-content.active {
  display: block;
}

.js-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: .375rem;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: underline;
  color: var(--primary);
}

.js-toggle-btn::after {
  content: "詳細を確認する";
}

.js-toggle-btn .arrow {
  position: relative;
  display: inline-block;
  width: 1.5rem;
  margin-right: .375rem;
}

.js-toggle-btn.active {
  padding-top: 1.25rem;
}

.js-toggle-btn.active::after {
  content: "閉じる";
}

.js-toggle-btn.active .arrow {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  /* PC版は常に表示させる */
  .js-toggle-content {
    display: grid;
  }

  .js-toggle-btn {
    display: none;
  }
}

/* ---- 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;
  }

  .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;
  }
}

/* ---- 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;
  }
}

/* ---- 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 {
  margin: 0 0 1.875rem 0;
}

.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: 20px;
  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: var(--font-weight-600);
}

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

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

.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__ans {
  display: none;
  position: relative;
  padding: 1rem 1rem 1rem 2.625rem;
  background: var(--white);
  border-radius: 1.25rem;
  margin: 0 0 1.875rem;
}

.faq-list__ans::before {
  content: "A.";
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-700);
  font-size: 1.125rem;
  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__li {
  margin: 0 0 1rem;
}

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

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

.faq__li li a strong {
  font-weight: var(--font-weight-300);
}

.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__ol {
  margin: 0 0 1rem 0;
  padding: 1rem;
  background: var(--light-green-1);
  border-radius: 1.25rem;
}

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

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

.faq__ol li::before {
  position: absolute;
  left: 0;
  bottom: -1.75rem;
  font-size: 1.5rem;
  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__ques::before {
    width: 1rem;
    height: 1rem;
    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 {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    font-size: 1.5rem;
  }

  .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;
  }
}

/* ---- 全国の墓じまい、墓石撤去、お墓の引っ越し ---- */
.cta {
  border: var(--primary) solid 2px;
  border-radius: 1.25rem;
  padding: .75rem .625rem;
  background: var(--white);
}

.cta__ttl {
  text-align: center;
  font-weight: var(--font-weight-600);
  color: var(--primary);
  background: var(--light-green-1);
  border-radius: 1.25rem;
  font-size: 1.125rem;
  height: 2.5rem;
  line-height: 2.5rem;
}

.cta__discription {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: .75rem 0 0 0;
}

.cta__phone {
  display: none;
}

.cta__number {
  font-weight: var(--font-weight-700);
  font-family: var(--font-roboto);
  font-size: 2.5rem;
  font-style: normal;
  display: flex;
  line-height: 1;
}

.cta__number>svg {
  fill: var(--primary);
  width: 1.625rem;
  height: auto;
  margin-right: .5rem;
  display: inline-block;
}

.cta__note {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .cta {
    padding: 1rem 2.5rem;
  }

  .cta__ttl {
    font-size: 1.25rem;
  }

  .cta__discription {
    padding: 1.125rem 0 0;
    gap: 0 2rem;
  }

  .cta__phone {
    order: 1;
    display: block;
    text-align: center;
  }
}

/* ---- footer ---- */
.footer {
  background: var(--primary);
  padding: 0 0 1.25rem;
}

.footer-menu {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}

.footer-menu__item {
  width: 50%;
  text-align: center;
  display: block;
  padding: 0;
  margin-bottom: 0;
  border-bottom: var(--white) solid 1px;
}

.footer-menu__item:nth-child(odd) {
  border-right: var(--white) solid 1px;
}

.footer-menu__item:last-child {
  border-bottom: none;
}

.footer__anchor {
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: .75rem 0;
  line-height: 1;
}

.footer__anchor:visited,
.footer__anchor:hover {
  color: var(--white);
  text-decoration: none;
}

.footer__copy {
  border-top: var(--white) solid 1px;
  color: var(--white);
  padding-top: 1.25rem;
  font-size: .625rem;
  text-align: center;
}

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

  .footer-menu {
    justify-content: center;
  }

  .footer-menu__item {
    border-bottom: none;
    width: auto;
    text-align: left;
    padding: 0 .625rem;
    margin-bottom: 1rem;
  }

  .footer-menu__item:nth-child(even) {
    border-right: var(--white) solid 1px;
  }

  .footer__anchor {
    padding: 0;
  }

  .footer__copy {
    font-size: .875rem;
    border-top: none;
  }
}

/* 共通フッター使用時のCSS */
#grobal .blk_footer_info,
#grobal .blk_footer_link {
  display: none;
}

@media (min-width: 768px) {
  .info_listing {
    padding-top: 30px;
  }
}

/* ---- ページTOP ---- */
.pagetop {
  background: var(--white-2) !important;
  border: var(--primary) solid 1px;
  border-radius: .25rem;
  cursor: pointer;
  position: fixed;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  right: .625rem;
  bottom: 5rem;
  text-align: center;
  z-index: 1000;
}
