@charset "utf-8";

/*===============================================
 *	下層ヘッダー・パンくず
===============================================*/
#sub_main {
  background: url(../img/common/bg_page_header.jpg) no-repeat center;
  background-size: cover;
  padding: 43px 0 48px;
}

#sub_main h1 {
  font-size: 45px;
  color: #fff;
  text-align: center;
  line-height: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sub_main h1 span {
  font-size: 20px;
  color: #a3d3d7;
  margin-left: 20px;
}

.breadcrumbs {
  margin: -50px 0 40px;
}

@media only screen and (max-width: 1024px) {
  #sub_main {
    padding: 50px 0 48px;
  }

  #sub_main h1 {
    font-size: 34px;
  }

  #sub_main h1 span {
    font-size: 16px;
  }

  .breadcrumbs span {
    font-size: 14px;
  }

}

@media only screen and (max-width: 960px) {
  .breadcrumbs {
    margin: -27px 0 30px;
  }
}

@media only screen and (max-width: 568px) {
  #sub_main {
    background: url(../img/common/bg_page_header_sp.jpg) no-repeat center;
    background-size: cover;
    min-height: 95px;
    display: flex;
    align-items: center;
    padding: 23px 0 21px;

  }

  #sub_main h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  #sub_main h1 span {
    font-size: 14px;
    display: block;
    /*margin-top: 5px;*/
    margin-left: 10px;
    width: 30%;
  }
}

/*===============================================
 *	Heading
===============================================*/
.ttl_page_section {
  font-size: 40px;
  text-align: center;
  position: relative;
  line-height: 1.3;
  margin-bottom: 74px;
}

.ttl_page_section .size_large {
  font-size: 50px;
}

.ttl_page_section .size_small {
  font-size: 27px;
  position: relative;
  top: -3px;
}

.ttl_page_section::after {
  content: '';
  background: var(--site-primary);
  width: 50px;
  height: 6px;
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
}

@media only screen and (max-width: 1024px) {
  .ttl_page_section {
    font-size: 30px;
  }

  .ttl_page_section .size_large {
    font-size: 40px;
  }
}

@media only screen and (max-width: 960px) {
  .ttl_page_section {
    margin-bottom: 50px;
  }

  .ttl_page_section::after {
    width: 40px;
    height: 4px;
    bottom: -20px;
  }
}

@media only screen and (max-width: 568px) {
  .ttl_page_section {
    font-size: 26px;
    margin: -5px 0 43px;
  }

  .ttl_page_section .size_large {
    font-size: 36px;
  }

  .ttl_page_section::after {
    height: 3px;
    bottom: -18px;
  }

  .ttl_page_section .size_small {
    font-size: 18px;
  }

}

/*===============================================
 *	火葬事例（各プラン・火葬事例ページ）
===============================================*/
.plan_case .bg_circle_left::before {
  top: 43px;
}

.plan_case .ttl_content_top {
  font-size: 30px;
}

.plan_case .md_inner_space {
  padding-bottom: 40px;
  border-radius: 0 0 10px 10px
}

.case_content {
  display: grid;
  grid-template-columns: auto 400px;
  grid-template-rows: auto 1fr;
  column-gap: 48px;
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.case_content h4 {
  grid-column: 1;
  grid-row: 1;
  font-size: 24px;
  margin: -8px 0 14px;
}

.case_content p {
  grid-column: 1;
  grid-row: 2;
}

.case_content img {
  grid-column: 2;
  grid-row: 1 / -1;
  border-radius: 10px;
}

.plan_case dl {
  display: flex;
}

.plan_case dt {
  color: #fff;
  background: #65b3b9;
  font-weight: bold;
  width: 110px;
  padding: 6px 10px 8px;
  text-align: center;
}

.plan_case.single dt {
  background: #6ba788;
}

.plan_case.premium dt {
  background: #cbaa7d;
}

.plan_case.memorial dt {
  background: #f4887d;
}

.plan_case dd {
  padding: 0px 48px 0 15px;
  display: flex;
  align-items: center;
}

.plan_case dd.plan {}

.plan_case dd.plan::before {
  content: '';
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.plan_case.joint dd.plan::before {
  background: url(../img/price/icon_joint.png) no-repeat;
  background-size: contain;
}

.plan_case.single dd.plan::before {
  background: url("../img/price/icon_single.png") no-repeat;
  background-size: contain;
}

.plan_case.premium dd.plan::before {
  background: url("../img/price/icon_premium.png") no-repeat;
  background-size: contain;
}

.plan_case.memorial dd.plan::before {
  background: url("../img/price/icon_memorial.png") no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 1024px) {
  .plan_case .ttl_content_top {
    font-size: 28px;
  }
}

@media only screen and (max-width: 960px) {
  .plan_case .ttl_content_top {
    font-size: 24px;
  }

  .case_content {
    grid-template-columns: auto 280px;
    column-gap: 20px;
    padding-bottom: 2.5vw;
    margin-bottom: 2.5vw;
  }

  .case_content h4 {
    font-size: 22px;
    margin: -5px 0 8px;
  }

  .plan_case dd.plan::before {
    width: 34px;
    height: 34px;
  }
}

@media only screen and (max-width: 568px) {
  .plan_case .bg_circle_left::before {
    content: none;
  }

  .plan_case .ttl_content_top {
    font-size: 23px;
    margin: 0 -5.3vw;
    text-align: center;
  }

  .plan_case .md_inner_space {
    margin: 0 -5.3vw;
    padding: 20px 5.3vw 15px;
    border-radius: 0;
  }

  .case_content {
    grid-template-columns: 47.8% auto;
    grid-template-rows: 1fr auto;
    column-gap: 4.4%;
    margin: 0 0 20px;
    border-radius: 0;
    padding: 0;
  }

  .case_content h4 {
    font-size: 17px;
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .case_content p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 13px 0 15px;
  }

  .case_content img {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
  }

  .plan_case dl {
    flex-wrap: wrap;
  }

  .plan_case dt {
    width: 85px;
    margin-bottom: 10px;
    padding: 5px 10px 5px;
  }

  .plan_case dd {
    width: calc(100% - 85px);
    margin-bottom: 10px;
  }
}

/*===============================================
 *	Table
===============================================*/
.basic_table {
  width: 100%;
  border: 1px solid #ccc;
}

.basic_table th {
  color: #fff;
  background: #64b4ba;
  border-bottom: 1px solid #ccc;
  width: 300px;
  padding: 15px 40px 16px;
  vertical-align: text-top;
}

.basic_table td {
  background: #fff;
  border-bottom: 1px solid #ccc;
  padding: 15px 40px 16px;
}

@media only screen and (max-width: 960px) {
  .basic_table th {
    width: 27vw;
    padding: 2vw 2vw;
  }

  .basic_table td {
    padding: 2vw 2vw;
  }

}

@media only screen and (max-width: 568px) {
  .basic_table th {
    font-size: 18px;
    display: block;
    width: 100%;
    padding: 7px 5.3vw;
  }

  .basic_table td {
    font-size: 15px;
    display: block;
    padding: 9px 5.3vw;
  }

  .basic_table td:nth-last-of-type(1) {
    border-bottom: none;
  }

}

/*===============================================
 *	サイトマップ / 404
===============================================*/
.box {
  border: 5px solid #bedfe2;
  padding: 44px 50px 38px;
  position: relative;
  z-index: 10;
}

.menu_box {
  display: flex;
  justify-content: space-between;
}

.menu_box li,
.area_box li {
  position: relative;
  margin: 0 0 7px 4px;
  padding-left: 16px;
}

.menu_box li a {
  transition: 0.2s;
}

.menu_box li a:hover {
  color: var(--site-primary);
}

.menu_box li.menu_top,
.area_box li.menu_top {
  font-size: 20px;
  font-weight: bold;
  padding-left: 26px;
  margin: 0 0 12px 0;
}

.menu_box li.menu_top::before,
.area_box li.menu_top::before {
  content: '';
  background: url(../img/common/icon_circle_arrow.svg) no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 9px;
}

.menu_box li:not(.menu_top) a::before,
.area_box li:not(.menu_top) a::before {
  content: '';
  background: url(../img/common/icon_arrow_right_green.svg) no-repeat;
  width: 6px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.others {
  margin-top: 26px;
}

.area_box {
  margin-top: 40px;
}

.area_box h3 {
  font-size: 27px;
  color: #fff;
  background: #64b4baa3;
  padding: 7px 30px 9px;
  margin-bottom: 25px;
}

.area_wrapper {
  display: flex;
  justify-content: space-between;
}

#page404 p.intro {
  font-size: 19px;
  text-align: center;
  margin: -10px 0 50px;
}


@media only screen and (max-width: 1024px) {
  .box {
    padding: 3.5vw 4vw 3.5vw;
  }

  .menu_box li.menu_top,
  .area_box li.menu_top {
    font-size: 17px;
  }

  .menu_box li {
    font-size: 15px;
  }

  .area_box h3 {
    font-size: 21px;
  }
}

@media only screen and (max-width: 960px) {
  .box {
    padding: 3.5vw 3vw 3.5vw;
  }

  .menu_box,
  .area_wrapper {
    flex-wrap: wrap;
  }

  .menu_box>div {
    width: 25%;
  }

  .area_wrapper ul {
    width: 13%;
  }

  .menu_box li.menu_top::before,
  .area_box li.menu_top::before {
    width: 14px;
    height: 14px;
    top: 5px;
  }

  .menu_box li.menu_top,
  .area_box li.menu_top {
    font-size: 15px;
    padding-left: 20px;
    margin-bottom: 8px;
  }

  .menu_box li {
    font-size: 13px;
  }

  .area_box {
    margin-top: 25px;
  }

  .area_box h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  #page404 p.intro {
    font-size: 17px;
    margin: -10px 0 30px;
  }
}

@media only screen and (max-width: 568px) {
  .box {
    margin: 0 -5.3vw;
    padding: 18px 5.3vw 13px;
    border: none;
    border-top: 4px solid #bedfe2;
    border-bottom: 4px solid #bedfe2;
    border-radius: 0;
  }

  .menu_box {
    flex-direction: column;
  }

  .menu_box>div {
    width: 100%;
  }

  .area_wrapper {
    flex-direction: column;
  }

  .area_wrapper ul {
    width: 100%;
  }

  .menu_box li.menu_top,
  .area_box li.menu_top {
    font-size: 18px;
    padding-left: 24px;
  }

  .menu_box li,
  .area_box li {
    font-size: 15px;
    margin: 0 0 8px 26px;
  }

  .menu_box li.menu_top::before,
  .area_box li.menu_top::before {
    width: 15px;
    height: 15px;
    top: 8px;
  }

  .menu_box li:not(.menu_top) a::before,
  .area_box li:not(.menu_top) a::before {
    width: 7px;
    height: 11px;
  }

  .menu_box ul {
    margin-bottom: 25px;
  }

  .area_wrapper ul {
    margin-bottom: 16px;
  }

  .area_box {
    margin-top: 5px;
  }

  .area_box h3 {
    font-size: 21px;
    padding: 6px 23px 7px;
    margin-bottom: 14px;
  }

  .area_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto auto;
  }

  .hokkaido {
    grid-column: 1;
    grid-row: 1;
  }

  .tohoku {
    grid-column: 1;
    grid-row: 2;
  }

  .kantou {
    grid-column: 1;
    grid-row: 2;
  }

  .hokuriku {
    grid-column: 2;
    grid-row: 4 / -1;
  }

  .toukai {
    grid-column: 1;
    grid-row: 2 / -1;
  }

  .kinki {
    grid-column: 2;
    grid-row: 1 / -1;
  }

  .chugoku {
    grid-column: 1;
    grid-row: 3;
  }

  .area_wrapper .kyusyu {
    grid-column: 1;
    grid-row: 5;
    margin-bottom: 0;
  }

  #page404 p.intro {
    font-size: 15px;
    margin: -5px 0 22px;
  }
}

/*-----abテスト用CTA----*/
.new-var .tel-number {
  position: relative;
}

.new-var .tel-number p.day_time {
  position: absolute;
  background: none;
  color: #333;
  font-size: 22px;
  padding: 0;
  right: 0;
  top: 5px;
}

.new-var .tel-number p.day_time span {
  position: relative;
  padding: 0 15px;
}

.new-var .tel-number p.day_time span::before,
.new-var .tel-number p.day_time span::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 30px;
}

.new-var .tel-number p.day_time span::before {
  background: url(../img/pet-type/left-pc.png)no-repeat;
  background-size: contain;
  left: 0;
}

.new-var .tel-number p.day_time span::after {
  background: url(../img/pet-type/right-pc.png)no-repeat;
  background-size: contain;
  right: 0;
}

.new-var .tel-number p::before {
  content: none;
}

.new-var .cv_content p em.txt_keycolor {
  color: var(--site-keycolor);
  font-size: 22px;

}

.new-var .cv_content p em.txt_primarycolor {
  color: var(--site-primary);
  font-size: 22px;
}

.new-var .cv_content p {
  background: none;
  padding: 0 0 0 40px;
  display: table;
  margin: 0 auto;
}

.new-var .cv_content p::before {
  left: 0;
}

.cv_area02.new-var .cv_content p .bg_white {
  padding: 2px 50px;
}

.new-var .cv_content {
  padding: 30px 0 15px;
}

@media only screen and (max-width: 1024px) {

  .new-var .tel-number p.day_time,
  .new-var .cv_content p em.txt_keycolor,
  .new-var .cv_content p em.txt_primarycolor {
    font-size: 18px;
    left: 11vw;
  }

  .new-var .cv_content p {
    padding: 10px 0 0 40px;
  }

  .cv_area02.new-var .cv_content p::before {
    top: 60%;
  }

  .new-var .cv_content {
    padding: 30px 0 20px;
  }

}

@media only screen and (max-width: 960px) {
  .new-var .tel-number p.day_time span {
    padding: 0 10px;
  }

  .new-var .tel-number p.day_time,
  .new-var .cv_content p em.txt_keycolor,
  .new-var .cv_content p em.txt_primarycolor {
    font-size: 14px;
  }

  .new-var .tel-number p.day_time span::before,
  .new-var .tel-number p.day_time span::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 20px;
  }
}

@media only screen and (max-width: 568px) {

  .new-var.cv_area02 .cv_box::before {
    background: url(../img/common/ab-staff_sp.png) no-repeat;
    background-size: contain;
    width: 174px;
    height: 138px;
    top: -138px;
  }

  .new-var .cv_content {
    padding: 25px 0 20px;
  }

  .new-var .tel-number p.day_time {
    position: static;
    display: table;
  }

  .new-var .tel-number p.day_time,
  .new-var .cv_content p em.txt_keycolor,
  .new-var .cv_content p em.txt_primarycolor {
    font-size: 20px;
  }

  .new-var .tel-number p.day_time span::before {
    background: url(../img/pet-type/left-sp.png)no-repeat;
    background-size: contain;
    width: 22px;
    height: 45px;
    left: -25px;
  }

  .new-var .tel-number p.day_time span::after {
    background: url(../img/pet-type/right-sp.png)no-repeat;
    background-size: contain;
    width: 22px;
    height: 45px;
    right: -25px;
    ;
  }

  .new-var .tel-number p.day_time span {
    padding: 0;
  }

  .new-var .btn_box>div {
    flex-direction: row;
  }

  .new-var .btn_box .mail,
  .new-var .btn_box .line {
    width: 47.5%;
    margin-bottom: 0;
  }

  .new-var .cv_content p {
    display: flex;
    padding: 20px 0 0 40px;
    justify-content: center;
  }

  .cv_area02.new-var .cv_content p .bg_white {
    padding: 2px 20px;
  }
}