@charset "utf-8";

/*---------------------------------------------------------------
全体設定（スマホから定義）
---------------------------------------------------------------*/
html, body {
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "メイリオ",Meiryo,"ＭＳ Ｐゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;
  font-weight: normal;
}
body {
  margin: 0;
  position: relative;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
}
.f-mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  transition: all 0.5s 0s ease;
}
.nowrap { /* 改行禁止 */
  display: inline-block;
}
button { /* デフォルトスタイル削除 */
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.toCall {
  margin-bottom: 0;
}
.toCall a {
  text-decoration: none !important;
}
@media screen and (max-width: 750px) {
  .toCall a {
    /* text-decoration: underline !important; */
  }
}
@media screen and (min-width: 749px) {
	a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	}
}

/*---------------------------------------------------------------
グローバルメニュー
---------------------------------------------------------------*/
header {
  position: relative;
}
.glogo {
  width: 45%;
  margin: 2% auto;
}
.btn {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  z-index: 10;
  width: 30px;
  height: 35px;
  padding: 0;
  border: none;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #d6d5d5;
  transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line:before, .btn-line:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d6d5d5;
  transition: .5s;
}
.btn-line:before {
  transform: translateY(-10px);
}
.btn-line:after {
  transform: translateY(10px);
}
/***** メニューオープン時 *****/
.btn-line.open {
  background-color: transparent;
}
.btn-line.open:before, .btn-line.open:after {
  content: '';
  background-color: #333;
  transition: .2s;
}
.btn-line.open:before {
  transform: rotate(45deg);
}
.btn-line.open:after {
  transform: rotate(-45deg);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
.menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: -100%;
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.65);
  color: #efefef;
  transition: .3s;
  z-index: 50;
  margin: 0;
  padding: 0;
}
.menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid #fff;
}
.menu-list:last-child {
  border-bottom: none;
}
.menu-list:hover {
  background-color: rgba(255, 255, 255, .5);
  color: #333;
  cursor: pointer;
  transition: .3s;
}
.menu-list a {
  color: #fff;
  display: block;
  width: 100%;
  padding: 1.5em 1em;
  text-align: center;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
  position: absolute;
  right: 0;
}


/*---------------------------------------------------------------
トップリード
---------------------------------------------------------------*/
#first-lead {
  padding-top: 1.4rem;
  padding-bottom: 2.56rem;
}
.lead {
  text-align: center;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #e57aa9;
  padding-bottom: 1rem;
}
.lead-2 h2 {
  text-align: center;
  font-size: 1.2rem;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  margin: 0 auto 1em;
  line-height: 1.47;
}
.lead-2 p {
  text-align: center;
  margin: 0 1.42rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/*---------------------------------------------------------------
お問い合わせCTA
---------------------------------------------------------------*/
#cta {
  background: url(../imgs/cta_bg.png) center center/cover no-repeat #81bb5f;
  padding-top: 2.2rem;
  padding-bottom: 1.7rem;
}
#cta h2 {
  text-align: center;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  margin: 0 auto 1em;
  line-height: 1.52;
}
#cta .mail-box, #cta .tel-box {
  background-color: #fff;
  padding: 1.4rem;
  border-radius: 5px;
  text-align: center;
  margin: 5px 0;
}
#cta .mail-box p, #cta .tel-box p:first-child {
  font-weight: 600;
  letter-spacing: 0.012em;
  text-indent: 0.012em;
  margin-bottom: 0.5rem;
}
#cta .mail-box a {
  background: url(../imgs/cta_mailbtn_236x46.svg) center center/contain no-repeat;
  display: inline-block;
  color: #fff;
  font-size: 1.06rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-indent: 0.06em;
  padding: 0.8em 2em;
}
#cta .tel-box a {
  font-size: 1.8rem;
  color: #ea7f2e;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  display: inline-block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
#cta .tel-box a span {
  font-size: 90%;
}
#cta .mail-box a:hover, #cta .tel-box a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#cta .tel-box p:last-child {
  font-size: 0.85rem;
  margin-bottom: 0;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
}
/* 送信完了ページ */
#thanks {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
#thanks .lead {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 0;
  border-bottom: none;
}
#thanks .lead h2 {
  text-align: center;
  font-size: 1.45rem;
  letter-spacing: 0.012em;
  text-indent: 0.012em;
  margin: 0 auto 1em;
  line-height: 1.4;
}
#thanks .lead p {
  font-size: 1rem;
  text-align: justify;
  line-height: 1.7;
}
.back-top {
  text-align: center;
  margin-top: 1.5rem;
}
.back-top a {
  color: inherit;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: underline;
}

/*---------------------------------------------------------------
お困りごとを解決します
---------------------------------------------------------------*/
#service {
  padding-bottom: 4rem;
}
#service .container {
  padding-top: 2.5rem;
  padding-bottom: 4.3rem;
}
#service .container h2 {
  text-align: center;
  font-size: 1.2rem;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  margin: 0 auto 1em;
  line-height: 1.4;
}
#service .container p {
  text-align: justify;
  letter-spacing: 0.04em;
  line-height: 1.78;
  width: 97%;
  margin: 0 auto 2.4rem;
}
#service .container .approval-img {
  max-width: 65%;
  text-align: center;
  margin: 0 auto;
}
.service-topimg-2 p {
  font-size: 0.75rem;
  text-align: center;
  margin: 1em 0 0;
}

/*---------------------------------------------------------------
選ばれる理由
---------------------------------------------------------------*/
#reason {
  padding-bottom: 4rem;
}
.headline {
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  margin-bottom: 1em;
  padding: 0.7rem 0.56rem;
}
#reason .headline {
  background-color: #d4f0b9;
}
.reason-row {
  margin-bottom: 2rem;
}
.reason-row:last-child {
  margin-bottom: 0;
}
.reason-title {
  display: flex;
  align-items: flex-start;
  margin: 1.6rem 0 1.4rem;
}
.reason-title .icon {
  width: 72px;
}
.reason-title .title {
  width: calc(100% - 72px);
  padding-left: 1.1rem;
}
.reason-title .title h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  color: #81bb5f;
  line-height: 1.5;
}
.reason-title .title h3 span {
  display: block;
  font-size: 0.87rem;
  color: #000;
}
.reason-row .col-md-8 p {
  margin-bottom: 0;
  text-align: justify;
}

/*---------------------------------------------------------------
墓じまいの流れ
---------------------------------------------------------------*/
#flow .headline {
  background-color: #efebf9;
}
.flow-wrapper {
  padding-bottom: 3rem;
  position: relative;
}
.flow-wrapper:after {
  content: '';
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: -1;
  width: 1px;
  height: 100%;
  background-color: #ad7dc2;
}
.flow-wrapper:last-child:after {
  content: none;
}
.flow-box h3 {
  font-size: 1rem;
  color: #ad7dc2;
  padding: 0.5rem 0.5rem 0.5rem 3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.flow-1 .flow-box h3 {
  background: url(../imgs/sec4_img_1_28x28.svg) left center/contain no-repeat #f2f2f2;
}
.flow-2 .flow-box h3 {
  background: url(../imgs/sec4_img_3_28x28.svg) left center/contain no-repeat #f2f2f2;
}
.flow-3 .flow-box h3 {
  background: url(../imgs/sec4_img_5_28x28.svg) left center/contain no-repeat #f2f2f2;
}
.flow-4 .flow-box h3 {
  background: url(../imgs/sec4_img_7_28x28.svg) left center/contain no-repeat #f2f2f2;
}
.flow-5 .flow-box h3 {
  background: url(../imgs/sec4_img_9_28x28.svg) left center/contain no-repeat #f2f2f2;
}
.flow-innerbox {
  display: flex;
  padding-left: 2.5rem;
}
.flow-innerbox span:first-child {
  width: 40%;
}
.flow-innerbox span:last-child {
  width: 60%;
  font-size: 0.95rem;
  padding-left: 1em;
}

/*---------------------------------------------------------------
墓じまいの施工例・価格
---------------------------------------------------------------*/
#hakajimai {
  padding-top: 3.75rem;
}
#hakajimai .headline {
  background-color: #ad7dc2;
  color: #fff;
}
.construction-wrapper .headline {
  background-color: transparent !important;
  color: #212529 !important;
  padding: 0;
}
.construction-container {
  margin-bottom: 2.5rem;
}
.construction-container .row .col-6:first-child {
  position: relative;
}
.construction-container .row .col-6:first-child:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -0.5rem;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid #a6a6a6;
}
.before-title, .after-title {
  color: #fff;
  margin-bottom: 0;
  font-size: 0.85rem;
  padding: 0.25em 0.5em;
}
.before-title {
  background-color: #a6a6a6;
}
.after-title {
  background-color: #ad7dc2;
}
.construction-txt {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.construction-txt li {
  margin-right: 1em;
  font-size: 0.9rem;
}
.construction-txt li:before {
  content: '・';
}
.construction-price {
  font-size: 1.18rem;
  font-weight: bold;
  font-feature-settings: "palt";
  color: #bb0000;
  text-align: center;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  background-color: #ffedc6;
  padding: 0.62rem;
  width: 55%;
  margin: 0 0 0 auto;
}
.caution {
  font-size: 0.8rem;
  text-align: right;
  margin-top: 1rem;
}
.price-wrapper {
  padding-bottom: 1.7rem;
}
.price-container {
  margin-bottom: 3.3rem;
}
.price-container .lead-txt {
  margin-top: 1.2rem;
  margin-bottom: 2.5rem;
}
.price-container .lead-txt ol {
  padding-left: 1.5em;
}
.price-table {
  border: 1px solid #ad7dc2;
  font-size: 0.75rem;
  width: 100%;
  margin-bottom: 1rem;
}
.price-table thead th {
  background-color: #ad7dc2;
  color: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  text-align: center;
  padding: 0.5rem;
}
.price-table thead th:last-child {
  border-left: 1px solid #fff;
}
.price-table tbody tr {
  border-bottom: 1px solid #d8d8d8;
}
.price-table tbody th {
  font-weight: normal;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  background-color: #f9f9f9;
  text-align: center;
  width: 70%;
  padding: 0.5rem 0.2rem;
}
.price-table tbody td {
  color: #bb0000;
  font-size: 0.87rem;
  font-weight: bold;
  text-align: center;
  border-left: 1px solid #d8d8d8;
  width: 30%;
  padding: 0.5rem 0.2rem;
}
.price-table tbody tr:last-child {
  border-bottom: none;
}
.price-container p:last-child {
  font-size: 0.9rem;
  text-align: justify;
  margin-bottom: 0;
  line-height: 1.61;
}
.price-container h4, .disposal-wrapper h4 {
  font-size: 1rem;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "メイリオ",Meiryo,"ＭＳ Ｐゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;
  font-weight: bold;
  margin-bottom: 1.4rem;
}
.price-container:nth-child(2) ol {
  padding-left: 1.5em;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.price-ex-img {
  width: 90%;
  margin: 1rem auto 0;
}
.disposal-wrapper {
  margin-bottom: 4rem;
}
#hakajimai .disposal-wrapper .headline {
  background-color: #e57aa9;
}
.disposal-wrapper h4 {
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.disposal-wrapper .price-table {
  border: 1px solid #e57aa9;
}
.disposal-wrapper .price-table thead th {
  background-color: #e57aa9;
}
.disposal-wrapper ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.61;
}
.cleaning-wrapper {
  background-color: #efebf9;
  padding-top: 1.87rem;
  padding-bottom: 1.87rem;
}
.cleaning-wrapper p {
  width: 95%;
  margin: 0 auto;
  text-align: justify;
}
.cleaning-price {
  background-color: #d8c5ec;
  padding: 0.9rem;
  margin: 1.37rem;
}
.cleaning-price p {
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  width: 100%;
}
.txt-wrapper {
  padding: 2rem 0;
}
.txt-wrapper p {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

/*---------------------------------------------------------------
仏事の事例
---------------------------------------------------------------*/
#case {
  background-color: #e5f5d5;
  padding-top: 2.56rem;
  padding-bottom: 2.56rem;
}
#case .headline {
  background-color: #81bb5f;
  color: #fff;
}
.tab-wrapper .nav-tabs {
  justify-content: space-between;
}
.tab-wrapper .nav-item {
  flex: 1;
  text-align: center;
  margin: 0 1px;
}
.tab-wrapper .nav-tabs .nav-link {
  color: #4c4c4c;
  background-color: #dbdbdb;
  border: none;
  border-radius: 0;
}
.tab-wrapper .nav-tabs .nav-item.show .nav-link, .tab-wrapper .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #81bb5f;
  border: none;
  border-radius: 0;
}
.tab-wrapper .tab-content {
  border-top: 1px solid #81bb5f;
  background-color: #fff;
  margin: 0 1px;
  padding: 2.1rem 1rem;
}
.case-container {
  border-bottom: 1px solid #81bb5f;
  padding-bottom: 1.875rem;
  margin-bottom: 1.875rem;
}
.case-container:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.case-container .row .col-md-5 {
  position: relative;
}
.case-container .row .col-md-5:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-top: 18px solid #a6a6a6;
}
.case-title {
  color: #fff;
  background-color: #a6a6a6;
  padding: 0.5rem;
  line-height: 1;
  margin-bottom: 0.65rem;
}
.case-before-img, .case-after-img, .case-while-img {
  position: relative;
}
.case-before-img {
  margin: 2rem auto;
  width: 80%;
}
.case-after-img {
  margin-top: 1rem;
}
.case-before-img:before, .case-after-img:before, .case-while-img:before {
  content: '';
  position: absolute;
  top: -0.8rem;
  left: -0.8rem;
  width: 55px;
  height: 55px;
}
.case-before-img:before {
  background: url(../imgs/case_before_icon_45x45.svg) center center/contain no-repeat;
}
.case-after-img:before {
  background: url(../imgs/case_after_icon_45x45.svg) center center/contain no-repeat;
}
.case-while-img:before {
  background: url(../imgs/case_while_icon_45x45.svg) center center/contain no-repeat;
}
.case-caption {
  margin: 1rem auto 0;
  text-align: justify;
}
.case-img-wrapper { /* お墓の工事 施工例6レイアウト */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 2rem 0;
}
.case-img-wrapper > .case-before-img {
  flex: 1;
  margin: 0 1rem 0 0;
}
.case-img-wrapper > .case-while-img {
  flex: 1;
  margin-left: 1rem;
}
.case-img-wrapper > .case-before-img:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1.65rem;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 18px solid #a6a6a6;
}
.case-img-wrapper > .case-while-img:after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-top: 18px solid #a6a6a6;
}
#contents3.tab-pane .case-container:last-child .row .col-md-5:after {
  content: none;
}
#contents3.tab-pane .case-container:last-child .case-after-img {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

/*---------------------------------------------------------------
よくある質問
---------------------------------------------------------------*/
#faq {
  padding-top: 2.56rem;
  padding-bottom: 2.56rem;
}
#faq .headline {
  background-color: #5d77b6;
  color: #fff;
}
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 100%;
  margin:0 auto;
  padding-left: 0;
}
.accordion-area li {
  margin-bottom: 1rem;
}
.accordion-area li:last-child {
  margin-bottom: 0;
}
/* アコーディオンタイトル */
.accordion-area li .question-title {
  position: relative;
  cursor: pointer;
  font-weight: bold;
  background-color: #e5e6f4;
  padding: 0.5rem 1.8rem;
  width: calc(100% - 15px);
  margin-left: auto;
  transition: all .5s ease;
}
.question-title span.q {
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #5d77b6;
  color: #fff;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
}
.accordion-area li .question-title:after {
  content: '';
  background: url(../imgs/faq_arrow_20x20.svg) center center/contain no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
/* アコーディオンで現れるエリア */
.answer-box {
  display: none; /*はじめは非表示*/
  margin-left: auto;
  margin-bottom: 2.1rem;
  padding-left: 13%;
  position: relative;
}
.answer-box span.a {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #db807a;
  color: #fff;
  font-weight: bold;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
}
.accordion-area li .question-title.faq-close:after {
  transform: translateY(-50%) rotate(180deg);
}

/*---------------------------------------------------------------
会社概要
---------------------------------------------------------------*/
#company {
  background-color: #f2f2f2;
  padding-top: 3.12rem;
}
.company-table {
  width: 95%;
  margin: 0 auto;
  font-size: 0.95rem;
}
.company-table th, .company-table td {
  padding: 0.5rem 0;
  vertical-align: top;
}
.company-table th {
  width: 35%;
  font-weight: normal;
}
.company-table td {
  width: 65%;
}
.company-table td a {
  color: inherit;
  text-decoration: underline;
}
.company-img-box {
  background-color: #fff;
  padding: 3.12rem;
  margin-top: 2.5rem;
  margin-bottom: 1.87rem;
}
.company-img-box .inner-box {
  margin-bottom: 2.1rem;
  text-align: center;
}
.president-name {
  margin-top: 0.7rem;
  text-align: center;
}
.president-name small {
  font-size: 90%;
}
.license-title {
  background-color: #707070;
  color: #fff;
  display: inline-block;
  margin: 0 auto 0.7rem;
  padding: 0.2rem 0.5rem;
}
.company-img-box .logo {
  margin-bottom: 0.7rem;
}
.column-area > iframe {
  width: 100% !important;
}
.map {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: calc(280/375*100%);
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*---------------------------------------------------------------
資料請求・お問い合わせ
---------------------------------------------------------------*/
#contact {
  background-color: #f2f2f2;
  padding-top: 2.75rem;
  padding-bottom: 2.18rem;
}
#mail_form dl {
  margin-bottom: 3rem;
}
#mail_form dl:last-child {
  margin-bottom: 0;
}
#mail_form dt {
  color: #707070;
  margin-bottom: 0.3rem;
}
span.hissu {
  color: #db807a;
}
textarea {
  width: 100%;
  border: 1px solid #7f7f7f;
  padding: 1rem;
}
input, select {
  width: 100%;
  background-color: #fff;
  border: 1px solid #7f7f7f;
  padding: 0.6rem 1rem;
  border-radius: 0;
}
select {
  -webkit-appearance: none;
  appearance: none; /* デフォルトのスタイルを無効 */
}
select::-ms-expand {
  display: none; /* デフォルトのスタイルを無効(IE用) */
}
#mail_form dl:first-child dd {
  position: relative;
}
#mail_form dl:first-child dd:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 16px solid #707070;
}
#form_submit {
  width: 60%;
  margin: 0 auto;
}
#form_submit input.form_submit_button {
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  background-color: #707070;
  border: none;
  padding: 0.7rem;
  transition: all 0.5s 0s ease;
}
#form_submit input.form_submit_button:hover {
  background-color: #242424;
}

/*---------------------------------------------------------------
フッター
---------------------------------------------------------------*/
footer {
  background-color: #fff;
  padding: 1rem;
  text-align: center;
}
footer p {
  font-size: 0.8rem;
  margin: 0;
}
#back {
  position: fixed;
  bottom: 5em;
  right: 0.8em;
  line-height: 1;
}
#back a {
  background-color: #81bb5f;
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 0.8em;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(204,204,204,0.5);
}
#back a:hover {
  text-decoration: none;
}
.fixd-menu { /* スマホ版固定メニュー */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px -1px 5px rgba(204,204,204,0.5);
}
.fixd-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background-color: #f2f2f2;
}
.fixd-menu ul li {
  width: 50%;
  text-align: center;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.fixd-menu ul li:first-child {
  width: 100%;
  font-size: 80%;
  padding: 0.7em 0;
  line-height: 1;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.fixd-menu ul li a {
  display: block;
  padding: 0.5em;
}
.fixd-menu ul li:nth-child(2) a {
  background-color: #81bb5f;
  color: #fff;
}
.fixd-menu ul li:last-child a {
  background-color: #ea7f2e;
  color: #fff;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}


/*---------------------------------------------------------------
送信完了（サンクス）ページ
---------------------------------------------------------------*/
#thanks {
  padding: 2.56rem 0;
  border-bottom: 1px solid #e57aa9;
}
.thanks-lead {
  width: 90%;
  margin: auto;
}
.thanks-lead h2 {
  text-align: center;
  font-size: 1.2rem;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  margin: 0 auto 1em;
  line-height: 1.47;
}
.thanks-lead p {
  font-size: 90%;
  text-align: justify;
}
/*---------------------------------------------------------------
下層MV
---------------------------------------------------------------*/
.lower-mv {
  width: 100%;
  margin-bottom: 95px;
}
.lower-mv .container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.lower-mv .container h2 {
  margin: 0;
  margin-bottom: -68px;
}
@media screen and (max-width: 768px) {
  .lower-mv {
    margin-bottom: 15.7333vw;
  }
  .lower-mv .container h2 {
    margin-bottom: -9.1333vw;
  }
}
/*---------------------------------------------------------------
TOP コラム
---------------------------------------------------------------*/
#column * {
  box-sizing: border-box;
}
#column {
  margin-bottom: 56px;
}
.column-ttl {
  background: url(../imgs/top_column_bg.webp) no-repeat center center;
  background-size: 100% 64px;
  text-align: center;
}
.column-list {
  width: 100%;
  border: 1px solid #e67baa;
  margin-top: -45px;
  margin-bottom: 25px;
  padding: calc(45px + 25px) 50px 50px;
}
.column-list ul.row {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  gap: 46px;
}
.column-list ul.row li {
  width: calc((100% - (46px * 2)) / 3);
  font-size: 19px;
}
.column-list ul.row li a {
  color: #212529;
}
.column-list ul.row li figure {
  position: relative;
  margin-bottom: 0.5rem;
}
.column-box figure {
  aspect-ratio: 222 / 128;
  overflow: hidden;
  position: relative;
}
.column-box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.column-box .cat {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100px;
  font-size: 15px;
  line-height: normal;
  text-align: center;
  padding: 5px;
}
.--grave { /* 墓じまい */
  background-color: #81bb5f;
  color: #fff;
}
.--buddhist { /* 仏事 */
  background-color: #e67baa;
  color: #fff;
}
.--endlife { /* 終活 */
  background-color: #5e78b7;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #column {
    margin-bottom: 7.46666vw;
  }
  .column-ttl {
    background: url(../imgs/top_column_bg--sp.webp) no-repeat center center;
    background-size: 100% 14.666vw;
  }
  .column-ttl img {
    width: 22.6666vw;
  }
  .column-list {
    margin-top: -10vw;
    margin-bottom: 6.6666vw;
    padding: 8.53333vw 8vw 8vw;
  }
  .column-list ul.row {
    margin: 0 0 8vw 0;
    gap: 1.8666vw;
  }
  .column-list ul.row li {
    width: 100%;
    font-size: 5.06666vw;
  }
  .column-box .cat {
    width: 26.666vw;
    font-size: 4vw;
    padding: 1.33333vw;
  }
}
/*---------------------------------------------------------------
btn
---------------------------------------------------------------*/
.more-btn {
  margin: 0 auto;
  font-size: 19px;
  font-weight: bold;
  position: relative;
}
.more-btn a {
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.more-btn a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.--01 {
  width: 263px;
  height: 52px;
  background: url(../imgs/btn1_bg.svg) no-repeat;
  background-size: cover;
}
.--02 {
  width: 263px;
  height: 52px;
  background: url(../imgs/btn1_bg.svg) no-repeat;
  background-size: cover;
}
.--next {
  padding-right: 1em;
}
.--prev {
  text-indent: 1em;
}
.--prev::before,
.--next::after {
  content: '▲';
  font-size: 19px;
  text-indent: 0;
  color: #fff;
  position: absolute;
  top: 50%;
}
.--next::after {
  right: 15px;
  transform: translateY(-50%) rotate(90deg);
}
.--prev::before {
  left: 15px;
  transform: translateY(-50%) rotate(-90deg);
}
@media screen and (max-width: 768px) {
  .more-btn {
    font-size: 4.53333vw;
  }
  .--01 {
    width: 62.9333vw;
    height: 12.2666vw;
  }
  .--02 {
    width: 45.3333vw;
    height: 12.2666vw;
    background: url(../imgs/btn1_gb--sp.svg) no-repeat;
  }
  .--prev::before,
  .--next::after {
    font-size: 5.06666vw;
  }
  .--next::after {
    right: 4vw;
  }
  .--prev::before {
    left: 4vw;
  }
}
/*---------------------------------------------------------------
レスポンシブ
---------------------------------------------------------------*/
/*======= iPhone12 pro max =======*/
@media screen and (min-width: 428px) {
#cta .tel-box p:last-child {
  font-size: 0.9rem;
}
.flow-innerbox span:first-child {
  width: 35%;
}
.flow-innerbox span:last-child {
  width: 65%;
}
.before-title, .after-title {
  font-size: 0.9rem;
}
.construction-txt li {
  font-size: 0.95rem;
}
.construction-price {
  width: 50%;
}
.price-table {
  font-size: 0.9rem;
}
.company-table {
  font-size: 0.95rem;
}
#mail_form dl {
  margin-bottom: 2rem;
}
}

@media screen and (min-width: 576px) {
.glogo {
  width: 40%;
}
.lead-2 p {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 15px;
}
.flow-innerbox span:last-child {
  font-size: 1rem;
}
.construction-price {
  width: 45%;
}
.price-table {
  font-size: 1rem;
}
.price-table tbody td {
  font-size: 1.1rem;
}
.price-ex-img {
  width: 80%;
}
.answer-box {
  padding-left: 10%;
}
.company-table {
  font-size: 1rem;
}
.company-img-box .logo {
  width: 90%;
  margin: 0 auto 1.5rem;
}
}

@media screen and (min-width: 768px) {
.glogo {
  width: 30%;
}
#first-lead {
  padding-top: 2.5rem;
  padding-bottom: 4.37rem;
}
.lead-2 h2 {
  font-size: 1.56rem;
}
.lead-2 p {
  max-width: 80%;
  text-align: center;
  padding: 0;
}
#cta {
  background-image: url(../imgs/pc_cta_bg.png);
  padding-bottom: 2.6rem;
}
#cta h2 {
  font-size: 1.7rem;
  line-height: 1.55;
}
#cta .mail-box, #cta .tel-box {
  margin: 0;
  padding: 1.5rem 0;
}
#cta .mail-box p, #cta .tel-box p:first-child, #cta .mail-box a {
  font-size: 1.18rem;
}
#service {
  padding-top: 5rem;
}
.service-topimg, .service-topimg-2 {
  width: 90%;
}
.service-topimg-2 {
  margin-left: auto;
}
#service .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
#service .container .row {
  align-items: center;
}
#service .container h2 {
  text-align: left;
  font-size: 1.56rem;
  line-height: 1.72;
  text-indent: 0;
}
#service .container p {
  margin-bottom: 0;
  width: 100%;
}
.service-topimg-2 p {
  font-size: 0.9rem;
  text-align: left;
}
.headline {
  font-size: 1.66rem;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  margin-bottom: 2em;
}
.construction-wrapper .headline {
  margin-bottom: 1em;
  font-size: 1.4rem;
}
.reason-row {
  flex-direction: row-reverse;
}
.reason-title {
  margin-top: 0;
  margin-bottom: 0.86rem;
  align-items: center;
}
.reason-row .col-md-8 p {
  width: calc(100% - 72px);
  margin-left: auto;
  padding-left: 1.1rem;
  line-height: 1.8;
}
.flow-wrapper:after {
  content: none;
}
.flow-wrapper .col-md-8 {
  position: relative;
}
.flow-wrapper .col-md-8:after {
  content: '';
  position: absolute;
  top: 0;
  left: 2.3rem;
  z-index: -1;
  width: 1px;
  height: calc(100% + 3rem);
  background-color: #ad7dc2;
}
.flow-wrapper:last-child .col-md-8:after {
  content: none;
}
.flow-box h3 {
  font-size: 1.25rem;
  padding: 0.6rem 0.6rem 0.6rem 3.5rem;
}
.flow-box p {
  width: calc(100% - 3.5rem);
  margin-left: auto;
}
.construction-txt {
  margin: 0;
  flex-direction: column;
}
.construction-txt li {
  margin-right: 0;
  font-feature-settings: "palt";
}
.construction-container .row .col-12.col-md-4 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.before-title, .after-title {
  font-size: 1rem;
}
.construction-price {
  width: 100%;
  padding: 0.4rem;
}
.caution {
  font-size: 0.9rem;
  margin: 2rem 0;
}
.price-container .col-md-12:first-child > img, .disposal-wrapper .col-md-12:first-child > img {
  display: block;
  width: 60%;
  margin: 0 auto 2.6rem;
}
.price-container .lead-txt ol {
  line-height: 2;
}
.price-table tbody th {
  width: 65%;
}
.price-table tbody td {
  width: 35%;
}
.price-container:nth-child(2) ol {
  margin-bottom: 0.5rem;
}
.price-ex-img {
  width: 100%;
}
.cleaning-wrapper {
  text-align: center;
}
#hakajimai .cleaning-wrapper .headline {
  margin-bottom: 1em;
}
.cleaning-price {
  padding: 0.8rem 2rem;
  margin: 1.6rem;
  display: inline-block;
}
.cleaning-price p {
  font-size: 1.2rem;
}
.txt-wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.txt-wrapper p {
  font-size: 1.2rem;
}
#case {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.tab-wrapper .nav-item a {
  font-size: 1.2rem;
}
.tab-wrapper .tab-content {
  padding: 3rem 1.5rem;
}
.case-container {
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.case-container > .row {
  margin-right: -20px;
  margin-left: -20px;
}
.case-container > .row > div {
  padding-right: 20px;
  padding-left: 20px;
}
.case-before-img:before, .case-after-img:before, .case-while-img:before {
  top: -0.5rem;
  left: -0.5rem;
}
.case-before-img {
  margin: 1.2rem 0 0;
  width: 100%;
}
.case-container .col-md-5 p, .case-caption {
  font-size: 0.9rem;
}
.case-after-img {
  margin-top: 0;
}
.case-container .row .col-md-5:after {
  bottom: 25%;
  right: -1.2rem;
  left: auto;
  transform: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #a6a6a6;
}
#contents3 .case-container > .row {
  align-items: flex-end;
}
.case-img-wrapper {
  margin-bottom: 0;
}
.case-img-wrapper > .case-while-img:after {
  bottom: 35%;
  left: auto;
  right: -3rem;
  transform: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #a6a6a6;
}
.answer-box {
  padding-left: 7%;
}
.company-table {
  width: 60%;
}
#company .headline, #contact .headline {
  margin-bottom: 1em;
}
.company-table td {
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
.company-img-box {
  width: 85%;
  padding: 3rem 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
.company-img-box > .container-fluid {
  padding-right: 20px;
  padding-left: 20px;
}
.company-img-box > .container-fluid > .row {
  margin-right: -20px;
  margin-left: -20px;
  align-items: stretch;
}
.company-img-box > .container-fluid > .row > div {
  padding-right: 20px;
  padding-left: 20px;
}
.president-name {
  font-size: 1.1rem;
  font-feature-settings: "palt";
}
.president-name small {
  font-size: 80%;
}
.company-img-box .inner-box:last-child {
  margin-bottom: 0;
}
.company-img-box .logo {
  width: 100%;
}
.map {
  padding-bottom: calc(385/1100*100%);
}
#contact {
  padding-top: 4.6rem;
  padding-bottom: 4.6rem;
}
.form-wrapper {
  max-width: 553px;
  margin: auto;
}
#form_submit {
  width: 100%;
  max-width: 200px;
}
#form_submit input.form_submit_button {
  font-size: 1.3rem;
}
footer {
  padding: 1.3rem;
}
footer p {
  font-size: 0.86rem;
}
.thanks-lead h2 {
  font-size: 1.56rem;
}
.thanks-lead h2 br {
  display: none;
}
}

@media screen and (min-width: 1024px) {
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2%;
}
.glogo {
  width: 20%;
  margin: 0;
}
.btn {
  display: none;
}
.menu {
  display: flex;
  flex-direction: row;
  position: static;
  background-color: transparent;
}
.menu-list {
  border-bottom: none;
  border-right: 1px solid #dbdbdb;
}
.menu-list:last-child {
  border-right: none;
}
.menu-list a {
  color: #212529;
  font-size: 70%;
  white-space: nowrap;
  padding: 0.5em 1.2em;
}
#service .container {
  max-width: 800px;
}
#service .container .approval-img {
  max-width: 60%;
}
.reason-title .title h3 {
  font-size: 1.43rem;
}
.construction-container .row .col-6:first-child:after {
  right: -0.65rem;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 16px solid #a6a6a6;
}
.construction-txt li {
  font-feature-settings: unset;
  line-height: 1.73;
}
.cleaning-wrapper {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.cleaning-wrapper p {
  text-align: center;
}
.txt-wrapper p {
  font-size: 1.4rem;
}
.case-container > .row {
  align-items: flex-end;
}
.tab-wrapper .tab-content {
  padding: 6rem 3rem;
}
.case-container .row .col-md-5:after, .case-img-wrapper > .case-before-img:after, .case-img-wrapper > .case-while-img:after {
  right: -1.5rem;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 18px solid #a6a6a6;
}
#contents1 .case-container .col-md-5 p {
  margin-bottom: 1.2rem;
}
#contents3 .case-title {
  margin-bottom: 1.5rem;
}
.case-img-wrapper > .case-while-img:after {
  right: -3rem;
}
#faq {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.answer-box {
  padding-left: 5%;
}
.company-img-box {
  padding: 3.3rem;
}
.company-img-box .inner-box:last-child img {
  width: 80%;
}
#thanks {
  padding: 4rem 0;
}
.thanks-lead {
  width: 100%;
  max-width: 800px;
}
.thanks-lead p {
  font-size: 100%;
}
.back-top {
  margin-top: 2.5rem;
}
}

@media screen and (min-width: 1280px) {
header {
  margin: 1.5% 2%;
}
.glogo {
  width: 17%;
}
.menu-list a {
  font-size: 85%;
}
#first-lead {
  padding-top: 4.6rem;
  padding-bottom: 4.6rem;
}
#cta {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
#cta h2 {
  font-size: 2rem;
}
#cta .tel-box a {
  pointer-events: none;
}
#service .container {
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}
#service .container .approval-img {
  max-width: 100%;
  text-align: right;
}
#service .container .approval-img img {
  max-height: 322px;
}
#reason {
  padding-bottom: 6.5rem;
}
.reason-title .title, .reason-row .col-md-8 p {
  padding-left: 1.5rem;
}
.reason-title .title h3 {
  font-size: 1.53rem;
}
.reason-title .title h3 span {
  font-size: 0.95rem;
}
.flow-box h3 {
  font-size: 1.46rem;
  /* 0.6rem 0.6rem 0.6rem 4rem */
}
.flow-box p {
  width: calc(100% - 4rem);
}
.flow-wrapper:last-child {
  padding-bottom: 5.8rem;
}
.price-container .col-md-12:first-child > img, .disposal-wrapper .col-md-12:first-child > img {
  width: 50%;
}
.construction-container {
  margin-bottom: 6rem;
}
.construction-wrapper .headline {
  margin-bottom: 1.4em;
}
.construction-txt li {
  font-size: 1rem;
}
.construction-price {
  font-size: 1.5rem;
}
.txt-wrapper {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.case-container .col-md-5 p, .case-caption {
  font-size: 1rem;
}
.case-before-img:before, .case-after-img:before, .case-while-img:before {
  width: 70px;
  height: 70px;
  top: -0.8rem;
  left: -0.8rem;
}
#contents1 .case-container .col-md-5 p {
  margin-bottom: 1.65rem;
}
.answer-box {
  padding-left: 4.5%;
}
.company-img-box {
  padding: 5rem;
}
}

@media screen and (min-width: 1440px) {
header {
  margin: 1% 2.5%;
}
.glogo {
  width: 15%;
}
.menu-list a {
  font-size: 95%;
}
.service-topimg, .service-topimg-2 {
  width: 85%;
}
#service .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.construction-wrapper .headline {
  margin-bottom: 1.66em;
}
}