@charset "UTF-8";
/* Slider Arrow
-----------------------*/
.slider-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  outline: none;
  transition: opacity 0.25s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  box-shadow: 0 2px 0 0 #e6e6e6;
  z-index: 10;
  /*　Desktop */
}
.slider-arrow > svg {
  position: absolute;
  top: 50%;
  left: 28%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  fill: #1ba0e5;
}
.slider-arrow--prev {
  right: calc(100% - 28px);
}
.slider-arrow--prev > svg {
  left: auto;
  right: 28%;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.slider-arrow--next {
  left: calc(100% - 28px);
}

/* Slider Cards
-----------------------*/
.slider-cards,
.slider-map,
.slider-visual-mobile {
  padding: 15px 0;
  /*　Desktop */
}
.slider-cards .slick-slide,
.slider-map .slick-slide,
.slider-visual-mobile .slick-slide {
  padding: 5px 10px;
}
.slider-cards .slick-disabled,
.slider-map .slick-disabled,
.slider-visual-mobile .slick-disabled {
  opacity: 0;
}
.slider-cards__arrow,
.slider-map__arrow,
.slider-visual-mobile__arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  transition: opacity 0.25s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  box-shadow: 0 2px 0 0 #e6e6e6;
  z-index: 10;
}
.slider-cards__arrow > svg,
.slider-map__arrow > svg,
.slider-visual-mobile__arrow > svg {
  position: absolute;
  top: 50%;
  left: 28%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  fill: #1ba0e5;
}
.slider-cards__prev,
.slider-map__prev,
.slider-visual-mobile__prev {
  right: calc(100% - 20px);
}
.slider-cards__prev > svg,
.slider-map__prev > svg,
.slider-visual-mobile__prev > svg {
  left: auto;
  right: 28%;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.slider-cards__next,
.slider-map__next,
.slider-visual-mobile__next {
  left: calc(100% - 20px);
}

/* Slider Cards
-----------------------*/
.slider-cards--nest .slider-cards__prev {
  right: calc(100% - 28px);
}
.slider-cards--nest .slider-cards__next {
  left: calc(100% - 28px);
}

/* Slider Map
-----------------------*/
.slider-map {
  margin-left: auto;
  margin-right: auto;
  max-width: 355px;
  margin-bottom: 20px;
  /* Mobile Small */
  /*　Desktop */
}
.slider-map .slick-slide {
  padding: 5px 10px;
}
.slider-map__prev--fluid {
  right: calc(100% - 20px);
}
.slider-map__next--fluid {
  left: calc(100% - 20px);
}

/* Slider Visual Mobile
-----------------------*/
.slider-visual-mobile {
  padding: 0;
  max-height: 238px;
  overflow: hidden;
  background-color: #f5f5f5;
}
.slider-visual-mobile__slide {
  padding: 0 !important;
}
.slider-visual-mobile__slide > img {
  margin: 0 auto;
  max-height: 100%;
}
.slider-visual-mobile__prev {
  right: calc(100% - 28px);
}
.slider-visual-mobile__prev > svg {
  left: auto;
  right: 28%;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.slider-visual-mobile__next {
  left: calc(100% - 28px);
}

/* Slider Visual
-----------------------*/
.slider-visual {
  width: 100%;
  max-height: 238px;
  overflow: hidden;
  background-color: #f5f5f5;
  /*　Desktop */
}
.slider-visual__slide {
  position: relative;
}
.slider-visual__slide > img {
  max-height: 100%;
}
.slider-visual__caption {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  line-height: 1.25;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}
.slider-visual--extend {
  width: 100vw;
  margin-left: -10px;
}

/* Slider Visual Nav
-----------------------*/
.slider-visual-nav {
  max-height: 57px;
  overflow: hidden;
  /*　Desktop */
}
.slider-visual-nav .slick-disabled {
  opacity: 0;
}
.slider-visual-nav .slick-current {
  position: relative;
}
.slider-visual-nav .slick-current::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 4px solid #1ba0e5;
}
.slider-visual-nav__slide {
  cursor: pointer;
  transition: opacity 0.3s ease-in;
  opacity: 1;
}
.slider-visual-nav__slide:hover {
  opacity: 0.5;
}
.slider-visual-nav__prev, .slider-visual-nav__next {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  transition: opacity 0.25s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
.slider-visual-nav__prev > svg, .slider-visual-nav__next > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  fill: white;
}
.slider-visual-nav__prev {
  left: 0;
}
.slider-visual-nav__prev > svg {
  left: auto;
  right: 50%;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.slider-visual-nav__next {
  right: 0;
}
.slider-visual-nav--extend {
  width: 100vw;
  margin-left: -10px;
}
.slider-visual-nav--extend .slider-visual-nav__slide {
  float: left;
  width: 20%;
  position: relative;
  overflow: hidden;
}
.slider-visual-nav--extend .slider-visual-nav__slide::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slider-visual-nav--extend .slider-visual-nav__slide > img {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: none;
  width: auto;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* Slider Gallery
-----------------------*/
.slider-gallery {
  /* Desktop */
}

/* Slider Gallery Main
-----------------------*/
.slider-gallery-main {
  overflow: hidden;
  /*　Desktop */
}
.slider-gallery-main__slide p {
  padding: 0 10px;
}
.slider-gallery-main .img-responsive {
  margin: 0 auto;
  max-height: 100vw;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Slider Gallery Nav
-----------------------*/
.slider-gallery-nav {
  /* Desktop */
}
.slider-gallery-nav__slide {
  height: 75px;
  margin: 0 8px 0 0;
  outline: none;
  transition: opacity 0.3s ease-in;
  width: 100px;
}
.slider-gallery-nav__slide:hover {
  opacity: 0.5;
}
.slider-gallery-nav__slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.slider-gallery-nav .slick-current {
  position: relative;
}
.slider-gallery-nav .slick-current::after {
  border: 4px solid #1ba0e5;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.slider-gallery-nav .slick-disabled {
  opacity: 0;
  z-index: -1;
}

/* Slide Video
-----------------------*/
.slider-video {
  position: relative;
  width: 100%;
  padding-top: 58.7878%;
  background-color: #000;
}
.slider-video > iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* Slider Professional
-----------------------*/
.slider-professional {
  margin-top: -10px;
  padding-top: 0;
  /* Desktop */
}

.content__header {
  background-color: #fff;
  padding-bottom: 0;
}
.content__header--secondary {
  padding: 0;
}
.content__header + .section {
  margin-top: 20px;
}
.content__header + .section--search {
  margin-top: 0;
}
.content__constrained {
  padding: 10px;
}
.content__constrained02 {
  box-shadow: 0 1px 2px 0 rgba(147, 142, 126, 0.2);
  margin-bottom: 20px;
  padding: 10px 10px 0;
}
.content__heading {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.content__title {
  margin-top: 14px;
  margin-left: 0px;
  padding: 0 10px;
  border: none;
  border-left: 4px solid #1ba0e5;
  font-size: 2rem;
  color: #333;
  margin-bottom: 0;
  font-weight: normal;
  line-height: 2.4rem;
}
.content__title > em {
  font-size: 2.2rem;
  font-weight: bold;
}
.content__title--view {
  padding-left: 10px;
  padding-right: 20px;
  margin-bottom: 10px;
  margin-left: 10px;
}
.content__title--plain {
  margin: 0;
  padding: 0;
  border: none;
  font-weight: bold;
}
.content__title-shoulder {
  margin: 0 0 -0.5em;
  font-size: 1rem;
}
.content__kana {
  margin: 5px 0;
  font-size: 1.3rem;
  display: inline-block;
}
.content__meta {
  margin: 5px 0 10px;
  font-size: 1.2rem;
}
.content__meta > span {
  margin-right: 5px;
}
.content__meta > .tag-areafill {
  white-space: nowrap;
}
.content__price {
  margin: 20px -10px;
  padding: 0 10px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.content__offer {
  margin: 5px 0;
  letter-spacing: 0;
  display: block;
}
.content__score .closest-station {
  margin-bottom: -6px;
}
.content__score .closest-station > dt {
  display: inline-flex;
}
.content__score .closest-station > dd {
  display: inline-block;
  font-weight: normal;
  margin: 0;
}
.content__description {
  margin: 0;
  padding: 1em 0;
  font-size: 1.4rem;
  line-height: 1.5em;
}
.content__description + .content__price {
  border-top: none;
  margin-bottom: 0;
}
.content__conversion--secondary {
  margin: -11px 0 40px;
}
.content__tab {
  max-width: 1000px;
  margin: 0 -10px;
}
.content__overview {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.content__visual {
  box-sizing: border-box;
  margin: -10px 10px 20px;
  width: calc(100% - 20px);
}
.content__information--primary {
  order: -1;
}
.content__lead-feature {
  position: absolute;
  bottom: 0;
  right: 0;
}
.content__separator {
  border: none;
  background-color: #e6e6e6;
  width: 100%;
  margin: 0;
  height: 1px;
}
.content.add_hall {
  overflow: visible;
}

.content-hall__tab {
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
  left: 0;
  max-width: 1000px;
  margin: 0 auto 20px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99999;
}

/* Desktop */
/*KAMAKURA-11569 要素非表示*/
.content__header .conversion-area__form,
.conversion__header:before,
.content__meta,
.box__voiceHeadline,
.back_guarantee.arrange_m,
.header__menu.visible-xs,
.review-inline .icon,
.results__item .button-conversion-form__text,
.results__item .conversion-button__form--rank .conversion-button__icon--rank {
  display: none !important;
}

.hallToList__bg {
  background-color: #f5f5f5;
  margin: -10px -10px 0;
  padding: 10px 4px 1px;
}
.hallToList__btn {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 2px rgba(96, 96, 96, 0.3);
  font-size: 18px;
  font-weight: 700;
  margin: 6px 10px;
  display: block;
  text-align: center;
  transition: all 0.3s;
  padding: 14px 0;
  position: relative;
}
.hallToList__btn::after {
  font-family: "Material Icons";
  content: "keyboard_arrow_right";
  font-size: 32px;
  position: absolute;
  top: 6px;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "kern", "liga", "clig", "calt";
  font-feature-settings: "kern", "liga", "clig", "calt";
}

/* 閲覧履歴モーダル調整 */
#modal_history .modal__header {
  padding: 0;
}

#modal_history .recommend {
  margin: 0 10px;
}

#modal_history .media__title {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#modal_history .m-company-info-banner {
  padding: 20px 10px;
}

#modal_history .area__title--hall {
  margin-top: -0.8em;
}
.sec-interview-area {
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto 20px;
  padding-bottom: 2px;
  width: 100%;
}
.sec-interview-area .ttl-interview {
  border-bottom: 1px solid #e6e6e6;
  border-top: 2px solid #1ba0e5;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 12px;
  padding: 8px 10px 4px;
}
.sec-interview-area .blk-interview {
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  margin: 0 auto 14px;
  padding: 10px;
  width: calc(100% - 20px);
}
.sec-interview-area .info-interview {
  display: block;
  grid-column: 1/3;
  grid-row: 1/2;
}
.sec-interview-area .name-interview {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 10px 6px 0;
}
.sec-interview-area .name-interview > span {
  border-radius: 2px;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 15px;
  padding: 1px 5px;
}
.sec-interview-area .icon-1day {
  border: 1px solid #609336;
  color: #609336;
}
.sec-interview-area .icon-family {
  border: 1px solid #88345f;
  color: #88345f;
}
.sec-interview-area .icon-general {
  border: 1px solid #345a96;
  color: #345a96;
}
.sec-interview-area .icon-cremation {
  border: 1px solid #c19047;
  color: #c19047;
}
.sec-interview-area .date-interview {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0 0 6px;
}
.sec-interview-area .link-funeral {
  display: block;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0 0 10px;
}
.sec-interview-area .link-funeral > a {
  color: #1ba0e5;
  font-weight: 600;
  text-decoration: underline;
}
.sec-interview-area .img-interview {
  grid-column: 1/2;
  grid-row: 2/3;
  height: 96px;
  margin-right: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 96px;
}
.sec-interview-area .txt-excerpt {
  font-size: 1.4rem;
  font-weight: 600;
  grid-column: 2/3;
  grid-row: 2/3;
  line-height: 1.5;
  margin: 0;
}
.sec-interview-area .txt-link {
  align-items: center;
  color: #1ba0e5;
  display: flex;
  grid-column: 1/3;
  grid-row: 3/4;
  font-weight: 600;
  justify-content: flex-end;
  margin: 0;
  padding-right: 8px;
  text-decoration: underline;
}
.sec-interview-area .txt-link::after {
  border-right: solid 2px #0088ce;
  border-top: solid 2px #0088ce;
  content: "";
  height: 6px;
  margin-left: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
}
.sec-interview-area .link-interview {
  grid-column: 1/3;
  grid-row: 2/4;
  height: 100%;
  width: 100%;
}

.sec-interview {
  display: block;
  margin: 0 auto 20px;
  width: calc(100% - 20px);
}
.sec-interview .ttl-interview {
  border-bottom: 2px solid #1ba0e5;
  border-top: 1px solid #e6e6e6;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 20px;
  padding: 12px 0 4px;
  text-align: center;
}
.sec-interview .list-interview {
  background: #e5f3fa;
  border-radius: 5px;
  margin-bottom: 18px;
  padding: 4px 8px 0;
  position: relative;
}
.sec-interview .list-interview::after {
  border-top: 14px solid #e5f3fa;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  bottom: -14px;
  content: "";
  left: 10%;
  position: absolute;
}
.sec-interview .list-interview li {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 8px;
  padding: 0 0 2px 26px;
  position: relative;
}
.sec-interview .list-interview li::before {
  border-bottom: solid 2px #1ba0e5;
  border-right: solid 2px #1ba0e5;
  content: "";
  height: 12px;
  left: 8px;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 5px;
}
.sec-interview .list-interview li > em {
  background: linear-gradient(transparent 11px, #ffe68d 11px);
  border-bottom: 2px solid #ffe68d;
  font-weight: 600;
}
.sec-interview .info-interview {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
}
.sec-interview .img-interview {
  flex-shrink: 0;
  height: 96px;
  margin-right: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 96px;
}
.sec-interview .date-interview {
  font-size: 1.2rem;
  line-height: 1;
  margin: 0 0 6px;
}
.sec-interview .name-interview {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 4px;
}
.sec-interview .name-interview > span {
  border-radius: 2px;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: normal;
  margin-left: 5px;
  padding: 1px 5px;
}
.sec-interview .icon-1day {
  border: 1px solid #609336;
  color: #609336;
}
.sec-interview .icon-family {
  border: 1px solid #88345f;
  color: #88345f;
}
.sec-interview .icon-general {
  border: 1px solid #345a96;
  color: #345a96;
}
.sec-interview .icon-cremation {
  border: 1px solid #c19047;
  color: #c19047;
}
.sec-interview .txt-excerpt {
  color: #1ba0e5;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
  text-decoration: underline;
}
.sec-interview .link-interview {
  height: 100%;
  position: absolute;
  width: 100%;
}

.recommend,
.recommend-plan {
  padding: 0;
  /* Desktop */
}
.recommend__item,
.recommend-plan__item {
  border-bottom: 1px solid #e6e6e6;
  margin-left: -10px;
  margin-right: -10px;
}

.recommend__item:last-child {
  border: none;
  padding: 0 0 5px 0;
}

/* Recommend Article
-------------------------*/
.recommend-articles {
  box-sizing: border-box;
  overflow: hidden;
  margin-left: -10px;
  margin-right: -10px;
  /* Desktop */
}
.recommend-articles__item {
  padding: 0;
  border-bottom: 1px solid #e6e6e6;
}

/* Recommend Point
-------------------------*/
.recommend-point {
  /* Desktop */
}

/* Recommend Detail
-------------------------*/
.recommend-detail {
  padding: 0 10px 0;
  margin: 0 auto;
  /* Desktop */
}
.recommend-detail__header {
  margin: 0 0 20px;
}
.recommend-detail__catch {
  margin: 0 0 0.66em;
  font-size: 1.2rem;
  font-weight: bold;
}
.recommend-detail__title {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.33;
}
.recommend-detail__main-image {
  margin: 0 -10px;
}
.recommend-detail__main-image > img {
  margin: auto;
}
.recommend-detail__body {
  font-size: 1.6rem;
}
.recommend-detail__body > p {
  line-height: 1.5;
}
.recommend-detail__meta {
  background-color: #1b6fb7;
  border-radius: 4px;
  padding: 10px;
}

/* Recommend Detail Point
-------------------------*/
.recommend-detail-points {
  margin: 0 0 2.8rem 0;
}
.recommend-detail-points span {
  color: #1b6fb7;
}
.recommend-detail-points__item {
  box-sizing: border-box;
  margin-bottom: 36px;
}
.recommend-detail-points__item:last-child {
  margin-bottom: 0;
}
.recommend-detail-points__header {
  display: flex;
  align-items: center;
  margin: 2rem auto;
}
.recommend-detail-points__mark {
  font-size: 1.5rem;
  box-sizing: border-box;
  padding: 0.6rem;
  background-color: #1b6fb7;
  border-radius: 0.4rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.recommend-detail-points__mark > em {
  font-size: 2rem;
}
.recommend-detail-points__title {
  font-size: 1.6rem;
  box-sizing: border-box;
  line-height: 1.4;
  margin: 0;
  padding-left: 1rem;
}
.recommend-detail-points__sub-title {
  font-size: 1.4rem;
  margin: 0 0 0.5em;
  line-height: 1.5;
}
.recommend-detail-points__image {
  margin: 0 -10px;
}
.recommend-detail-points__image > img {
  margin-left: auto;
  margin-right: auto;
}
.recommend-detail-points__body {
  margin: 20px auto;
  font-size: 1.6rem;
}
.recommend-detail-points__body > p {
  font-size: 1.4rem;
  margin: 0.5em 0;
  line-height: 1.6;
}
.recommend-detail-points__body > p:last-child {
  margin-bottom: 0;
}

/* Recommend List Inline
-------------------------*/
.recommend-list-inline {
  margin: 0;
  /* Desktop */
}
.recommend-list-inline__title {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 1.4rem;
}
.recommend-list-inline__body {
  margin: 0 -5px -10px;
  font-size: 1.2rem;
  letter-spacing: -0.4em;
}
.recommend-list-inline__body > span {
  margin: 0 5px 10px;
  letter-spacing: 0;
}

/*2020 add*/
.recommend-list,
.sogi-list,
.case-list {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
}
.recommend-list li,
.sogi-list li,
.case-list li {
  width: 50%;
}
.recommend-list .list-inr,
.sogi-list .list-inr,
.case-list .list-inr {
  box-sizing: border-box;
  margin: 0 10px 10px;
  padding: 10px;
  border-radius: 5px;
  border: #ccc solid 1px;
  position: relative;
  z-index: 1;
  transition: all 0.2s ease-in;
}
.recommend-list .list-inr::after,
.sogi-list .list-inr::after,
.case-list .list-inr::after {
  font-family: Material Icons;
  content: "chevron_right";
  color: #d1c08b;
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 50%;
  margin: -12px 0 0;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
}
.recommend-list .list-inr::after:hover,
.sogi-list .list-inr::after:hover,
.case-list .list-inr::after:hover {
  background: rgba(207, 177, 121, 0.1);
}
.recommend-list .recommend-description,
.sogi-list .recommend-description,
.case-list .recommend-description {
  display: flex;
  justify-content: space-between;
}
.recommend-list figure,
.sogi-list figure,
.case-list figure {
  margin: 0;
  width: 40%;
}
.recommend-list figcaption,
.sogi-list figcaption,
.case-list figcaption {
  display: block;
  margin: 0;
  width: 60%;
  padding: 0 2rem 0 1.5rem;
}
.recommend-list h3,
.sogi-list h3,
.case-list h3 {
  font-size: 1.6rem;
  margin: 1rem 0 2rem 0;
}
.recommend-list p,
.sogi-list p,
.case-list p {
  margin: 0 0 2rem 0;
  padding: 0;
  font-size: 1.6rem;
}
.recommend-list .list-add,
.sogi-list .list-add,
.case-list .list-add {
  display: block;
  font-size: 1.4rem;
  position: relative;
  padding: 0 0 0 2.5rem;
  margin: 2.5rem 0 0 0;
}
.recommend-list .list-add::before,
.sogi-list .list-add::before,
.case-list .list-add::before {
  font-family: Material Icons;
  content: "place";
  color: #d1c08b;
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
  left: 0;
  top: -0.4rem;
  margin: 0;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
}
.recommend-list em,
.sogi-list em,
.case-list em {
  font-size: 3rem;
  color: #ff6012;
  font-weight: 700;
}
.recommend-list a,
.sogi-list a,
.case-list a {
  color: #333;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.recommend-list a:hover,
.sogi-list a:hover,
.case-list a:hover {
  color: #333;
}
.recommend-list a:visited,
.sogi-list a:visited,
.case-list a:visited {
  color: #333;
}
.recommend-list a i,
.sogi-list a i,
.case-list a i {
  display: none;
}
.recommend-list dl,
.sogi-list dl,
.case-list dl {
  margin: 0 0 1rem 0;
  padding: 0;
  display: flex;
}
.recommend-list dt,
.recommend-list dd,
.sogi-list dt,
.sogi-list dd,
.case-list dt,
.case-list dd {
  font-size: 1.2rem;
}
.recommend-list dt,
.sogi-list dt,
.case-list dt {
  width: 40%;
}
.recommend-list dd,
.sogi-list dd,
.case-list dd {
  width: 60%;
  margin: 0;
}

ul.recommend-list li:nth-child(n+5) {
  display: none;
}

ul.case-list li:nth-child(n+5) {
  display: none;
}

ul.sogi-list li:nth-child(n+5) {
  display: none;
}
/*KAMAKURA-11106　list_city プランランキング module/recommend.cssの一部を利用しているためこちらに記載*/
#aside__ranking--plan .sogi-type-links {
  padding: 10px 0;
}
#aside__ranking--plan .sogi-type-links .plan-list_search {
  margin-bottom: 15px;
  padding-bottom: 0;
  border-bottom: none;
}
#aside__ranking--plan .sogi-type-links .plan-list_search_item {
  display: inline-block;
  width: 100%;
  border: none;
  background: transparent;
  height: auto;
  box-shadow: none;
  font-weight: bold;
  border-radius: 0;
  text-align: center;
}
#aside__ranking--plan .sogi-type-links .plan-list_search_item > a {
  display: inline-block;
  margin: auto;
  width: auto;
  height: auto;
  color: #1BA0E5;
  font-size: 1.4rem;
}
#aside__ranking--plan .sogi-type-links .plan-list_search_item + .plan-list_search_item {
  border-left: 1px dotted #232B39;
}
#aside__ranking--plan .sogi-type-links .plan-list_search_item.item_active {
  background: transparent;
  border-radius: 0;
}
#aside__ranking--plan .sogi-type-links .plan-list_search_item.item_active a {
  position: relative;
}
#aside__ranking--plan .sogi-type-links .plan-list_search_item.item_active > a {
  padding-bottom: 2px;
  color: #333;
  /* ※ */
  border-bottom: 2px solid #1BA0E5;
}
#aside__ranking--plan .recommend-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow-x: scroll;
  margin: 0;
  padding: 0 0 1.5rem 0;
}
#aside__ranking--plan .recommend-list li {
  border-radius: 5px;
  display: flex;
  margin: 0 1rem 0.5rem 0;
  position: relative;
  width: 312px !important;
  min-width: 312px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
}
#aside__ranking--plan .recommend-list li:nth-child(3) {
  margin-right: 0;
}
#aside__ranking--plan .recommend-list li:first-child h3::before, #aside__ranking--plan .recommend-list li:nth-child(2) h3::before, #aside__ranking--plan .recommend-list li:last-child h3::before {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  color: #fff;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  border-radius: 5px;
  text-align: center;
  line-height: 30px;
  font-size: 2rem;
}
#aside__ranking--plan .recommend-list li:first-child h3::before {
  content: "1";
  background: #c9aa71;
}
#aside__ranking--plan .recommend-list li:nth-child(2) h3::before {
  content: "2";
  background: #8d8d8f;
}
#aside__ranking--plan .recommend-list li:nth-child(3) h3::before {
  content: "3";
  background: #bd8264;
}
#aside__ranking--plan .recommend-list .list-inr {
  margin: 0;
  padding: 1rem;
  width: 100%;
  border-radius: 5px;
  border: #ccc solid 1px;
}
#aside__ranking--plan .recommend-list .list-inr::after {
  right: -0.6rem;
}
#aside__ranking--plan .recommend-list p {
  font-size: 1.4rem;
}
#aside__ranking--plan .recommend-list em {
  font-size: 2rem;
}
#aside__ranking--plan .recommend-list h3 {
  position: relative;
  margin: 0 0 1.5rem 0 !important;
  padding: 0 0 0 4rem;
  height: 3.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#aside__ranking--plan .recommend-list figcaption {
  padding: 0 2rem 0 0.8rem;
}

/* Top header
-----------------------*/
.header {
  display: none;
}

/* Top slider
-----------------------*/
.top-slider {
  position: relative;
  margin: 0 auto 24px;
  /* Dots Action Btn */
}
.top-slider .slick-dots {
  box-sizing: border-box;
  bottom: -26px;
  padding-left: 20px;
}
.top-slider .slick-dots li {
  margin: 0;
}
.top-slider .slick-dots li button:before {
  font-size: 0.8rem;
  color: #ccc;
  opacity: 1;
}
.top-slider .slick-dots li.slick-active button:before {
  color: #1ba0e5;
}
.top-slider .top-slider-btn {
  position: absolute;
  bottom: -27px;
  left: 50%;
  margin-left: -23px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top-slider .top-slider-btn__tgl {
  position: relative;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.top-slider .top-slider-btn__tgl::before, .top-slider .top-slider-btn__tgl::after {
  color: #1ba0e5;
  font-family: "Material Icons";
  font-weight: normal;
  font-size: 2rem;
}
.top-slider .top-slider-btn__tgl::before {
  content: "";
  display: none;
}
.top-slider .top-slider-btn__tgl.playing::before {
  display: inline;
}
.top-slider .top-slider-btn__tgl::after {
  content: "";
  display: inline;
}
.top-slider .top-slider-btn__tgl.playing::after {
  display: none;
}
.top-slider .first-slide {
  position: relative;
}
.top-slider .first-slide__inner {
  display: none;
}
.top-slider .first-slide__info {
  grid-column: 1/2;
  align-self: start;
  margin-top: 56px;
}
.top-slider .first-slide__title {
  margin: 0;
  font-size: 2.8rem;
  color: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: normal;
}
.top-slider .first-slide__title span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3.4rem;
}
.top-slider .first-slide__plan {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, auto);
  justify-content: start;
  place-items: center;
  margin-top: 42px;
}
.top-slider .first-slide__lead {
  grid-column: 1/3;
  grid-row: 1/2;
  margin: 0 0 0 -1em;
  font-size: 2rem;
  font-weight: bold;
}
.top-slider .first-slide__cheapest {
  grid-column: 1/2;
  grid-row: 2/3;
  margin: 0 8px 0 0;
  padding: 4px 5px;
  font-size: 2rem;
  font-weight: bold;
  color: #ffe605;
  line-height: 1;
  background-color: #1ba0e5;
}
.top-slider .first-slide__price {
  grid-column: 2/3;
  grid-row: 2/3;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  place-content: center;
  place-items: center;
  gap: 4px 0;
  margin: 0;
  line-height: 1.1;
}
.top-slider .first-slide__price strong {
  grid-column: 1/2;
  grid-row: 1/3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 7.2rem;
  color: #d6395e;
  letter-spacing: -1.8px;
}
.top-slider .first-slide__price strong span {
  font-size: 5.6rem;
  letter-spacing: -1.1px;
}
.top-slider .first-slide__tax {
  grid-column: 2/3;
  grid-row: 1/2;
  align-self: end;
  margin-top: -10px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}
.top-slider .first-slide__yen {
  grid-column: 2/3;
  grid-row: 2/3;
  align-self: start;
  margin-bottom: -10px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
.top-slider .first-slide__operator {
  position: absolute;
  bottom: 0;
  left: 29.7%;
  z-index: 2;
}
.top-slider .first-slide__operator img {
  width: 235px;
}
.top-slider .first-slide__movie {
  display: none;
}
.top-slider .second-slide {
  position: relative;
}
.top-slider .second-slide__inner {
  display: none;
}
.top-slider .second-slide__description {
  grid-column: 1/2;
  align-self: start;
  margin-top: 56px;
}
.top-slider .second-slide__text {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.top-slider .second-slide__text em {
  font-size: 2.8rem;
}
.top-slider .second-slide__text--red {
  color: #d6395e;
}
.top-slider .second-slide__consultation {
  display: inline-block;
  margin: 10px 0 0;
  padding: 0 15px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #eb7005;
  line-height: normal;
  background-color: #fff6d7;
}
.top-slider .second-slide__data {
  display: none;
}
.top-slider .second-slide__operator {
  position: absolute;
  bottom: 0;
  left: 29.2%;
  z-index: 1;
}
.top-slider .second-slide__operator img {
  width: 195px;
}

/* Top Header
-----------------------*/
.top-header {
  /* Desktop */
}
.top-header__constrained {
  position: relative;
}

/* Top Introduction
-----------------------*/
.top-introduction {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 20px;
  /* Desktop */
}
.top-introduction__container {
  background-color: #fff;
}
.top-introduction .conversion-area {
  padding-top: 10px;
  padding-bottom: 1px;
}
.top-introduction .conversion-secondary__description {
  margin-bottom: 10px;
}

/* Top Data
-----------------------*/
.top-data {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background-color: #e5f3fa;
}
.top-data__frame {
  flex: 1 1;
  display: grid;
  grid-template-rows: repeat(2, auto);
  place-content: center;
  place-items: center;
  padding: 5px;
  background-color: #fff;
}
.top-data__frame:first-child {
  border-radius: 5px 0 0 5px;
  position: relative;
}
.top-data__frame:first-child::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 36px;
  border-right: 1px dashed #ccc;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-data__frame:last-child {
  border-radius: 0 5px 5px 0;
}
.top-data__title {
  grid-row: 1/2;
  margin: 0;
  font-size: 1.4rem;
  line-height: normal;
}
.top-data__result {
  grid-row: 2/3;
  margin: 0;
  font-size: 1.4rem;
  line-height: normal;
  color: #d6395e;
  font-weight: bold;
}
.top-data__illust {
  display: none;
}

/* Top Guide Anchor
-----------------------*/
.top-guide-anchor {
  padding: 10px 10px 13px;
  background-color: #fff;
  /* Small Mobile */
  /* Desktop */
}
.top-guide-anchor__button {
  font-size: 1.8rem;
  height: 60px;
}
.top-guide-anchor__button:link {
  color: #1ba0e5;
}
.top-guide-anchor__button:visited {
  color: #1ba0e5;
}
.top-guide-anchor__button svg {
  bottom: 0;
}
.top-guide-anchor__icon {
  width: 1.33em;
  height: 1.33em;
}
.top-guide-anchor__icon--small {
  margin-left: 0.25em;
  width: 0.75em;
  height: 0.75em;
}
.top-guide-anchor--fluid {
  margin-top: -10px;
  padding: 0 0 23px;
}

/* Top Search Area
-----------------------*/
.top-search-area {
  margin: 0 auto 20px;
  /* Desktop */
  /* Tablet */
}
.top-search-area__title {
  margin-bottom: 5px;
}
.top-search-area__region {
  background-color: #fff;
}
.top-search-area__inner {
  padding: 20px 10px;
  display: grid;
  grid-template-rows: repeat(3, auto);
}
.top-search-area__inner .ttl_search {
  border-left: 4px solid #1ba0e5;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 5px 0 16px;
  padding-left: 0.5em;
  grid-row: 1/2;
}
.top-search-area__buttons {
  margin: 0 0 1.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-items: center;
  gap: 12px 10px;
  grid-row: 2/3;
}
.top-search-area__button {
  box-sizing: border-box;
  width: calc((100% - 20px) / 3);
}
.top-search-area__button .button {
  color: #1ba0e5;
  padding: 10px 0;
  border-radius: 4px;
  border: 1px solid #1ba0e5;
  background: linear-gradient(180deg, #fff 30%, #e5f3fa 100%);
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.2);
  font-size: 1.6rem;
}
.top-search-area__sub-title {
  padding: 20px 10px 10px;
  background-color: #fff;
}
.top-search-area__sub-title > h3 {
  margin: 0 0 5px;
}
.top-search-area__list {
  position: relative;
  width: 100%;
  display: none;
  flex-wrap: wrap;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  background-color: #fff;
  overflow: hidden;
  margin-bottom: -1px;
}
.top-search-area__list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #e6e6e6;
}
.top-search-area__item {
  float: left;
  box-sizing: border-box;
  width: 50%;
  border-bottom: 1px solid #e6e6e6;
}
.top-search-area__link {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  font-size: 1.6rem;
  font-weight: bold;
  justify-content: space-between;
  min-height: 60px;
  padding: 10px 10px 10px 20px;
  position: relative;
}
.top-search-area__link::after {
  content: "";
  font-family: "material icons";
  font-size: 2rem;
  font-weight: normal;
}
.top-search-area__link:hover, .top-search-area__link:active {
  text-decoration: none;
}
.top-search-area__back {
  margin: 10px;
}
.top-search-area__back .button {
  color: #1ba0e5;
  font-size: 1.6rem;
  min-height: 50px;
  width: 158px;
}
.top-search-area__back .button::before {
  content: "";
  color: #1ba0e5;
  font-family: "material icons";
  font-size: 2rem;
  font-weight: normal;
}
.top-search-area__back .button span {
  margin: 0 0.33em 0 -0.66em;
}
.top-search-area .sec_map {
  box-sizing: border-box;
}
.top-search-area .sec_map .ttl_search {
  display: none;
}
.top-search-area .blk_location {
  grid-row: 3/4;
}
.top-search-area .blk_location .btn_location {
  align-items: center;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 0 0 #e6e6e6;
  box-sizing: border-box;
  color: #333;
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  margin-bottom: 10px;
  text-decoration: none;
  width: 100%;
}
.top-search-area .blk_location .btn_location::before {
  color: #1ba0e5;
  content: "";
  font-family: "Material Icons";
  font-size: 2.2rem;
  font-weight: normal;
  margin-right: 4px;
}
.top-search-area .blk_location_pc {
  display: none;
}

/* Top Search Condition
-----------------------*/
.top-search-condition {
  margin: 10px auto;
  /* Small Mobile */
  /* Desktop */
}
.top-search-condition__button {
  flex-direction: column;
  min-height: 84px;
  text-align: center;
  font-size: 1.6rem;
}
.top-search-condition__button > small {
  margin-top: 0.5em;
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
}
.top-search-condition__mark {
  vertical-align: -12%;
  fill: #1ba0e5;
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
}

/* Top Category Links
-----------------------*/
.top-category-links {
  margin: 30px auto;
  /* Desktop */
}
.top-category-links__list {
  margin: 0 -10px;
}
.top-category-links__list dt.state-open {
  background-color: #f2f9fd;
}
.top-category-links__list dt.state-open + dd {
  display: block;
}
.top-category-links__list > dd {
  background-color: #f2f9fd;
}
.top-category-links__more {
  margin: 10px 20px 0;
  text-align: right;
  font-size: 1.6rem;
  font-weight: bold;
}

/* Top Feature
-----------------------*/
.top-feature {
  /* Desktop */
}
.top-feature__slider {
  margin: 0 -10px;
}

/* Top Feature Slider
-----------------------*/
.top-feature-slider {
  padding: 0;
  /* Desktop */
}
.top-feature-slider__item {
  border-top: 1px solid #e6e6e6;
}
.top-feature-slider__item:first-child {
  border-top: none;
}
.top-feature-slider__item > div {
  padding: 15px 24px 10px 10px;
}

/* Top Feature Links
-----------------------*/
.top-feature-links {
  /* Desktop */
}

/* Top Review
-----------------------*/
.top-review {
  /* Desktop */
}
.top-review__item {
  margin: 0 -10px;
  padding: 0 10px 10px;
  border-bottom: 1px solid #e6e6e6;
}
.top-review__item:last-child {
  border: none;
}

/* Top Workflow
-----------------------*/
.top-workflow {
  order: -1;
  /* Desktop */
}

/* Top Relation
-----------------------*/
.top-relation {
  margin: 15px 0 0;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 4px;
  /* Desktop */
}
.top-relation__title {
  margin: 0 0 5px;
}
.top-relation__list {
  line-height: 1.5;
  font-size: 1.4rem;
}

/* Top Readmore
-----------------------*/
.top-readmore {
  margin: 1em auto 0;
}
.top-readmore p {
  margin: 0;
}
.top-readmore__more {
  margin: 16px auto 0;
  font-size: 1.4rem;
  text-align: center;
}

/* Top Conversion
-----------------------*/
.top-conversion {
  /* Desktop */
  /* Tablet */
}

.conversion .telephone__body {
  overflow: visible;
}

/* Top banners
-----------------------*/
.top-banners {
  /* Desktop */
}

/* Top Switch Content
コンテンツ入れ替え
-----------------------*/
.top-switch-content {
  display: flex;
  flex-direction: column;
  /* Desktop */
}

/* Top Search Type
-----------------------*/
.top-search-type {
  background-color: #fff;
  margin: 20px auto;
  padding: 20px 10px;
}
.top-search-type__title {
  margin: 5px 0 16px;
}
.top-search-type__list {
  display: flex;
  flex-wrap: wrap;
}
.top-search-type__list a {
  color: inherit;
  text-decoration: none;
}
.top-search-type__unit {
  border: 1px solid;
  border-radius: 4px;
  box-sizing: border-box;
  height: 88px;
  margin-bottom: 10px;
}
.top-search-type__unit--small {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  box-shadow: 0px 2px 0px #e6e6e6;
  color: #1ba0e5;
  font-size: 16px;
  font-weight: bold;
  height: 44px;
  line-height: 44px;
  margin: 5px 0 0;
  position: relative;
  text-align: center;
  width: 100%;
}
.top-search-type__unit--small::after {
  content: "chevron_right";
  direction: ltr;
  display: inline-block;
  font-family: "Material Icons";
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  font-size: 32px;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0px;
  text-rendering: optimizeLegibility;
  text-transform: none;
  top: calc(50% - 16px);
  white-space: nowrap;
  word-wrap: normal;
}
.top-search-type__category {
  border-radius: 4px 4px 0 0;
  height: 44px;
  padding-top: 4px;
  text-align: center;
}
.top-search-type__category p {
  line-height: 1.4;
  margin: 0;
}
.top-search-type__category .type-category__title {
  font-size: 16px;
  font-weight: bold;
  margin-right: 16px;
  position: relative;
}
.top-search-type__category .type-category__title::before {
  background-color: #fff;
  border-radius: 10px;
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  top: calc(50% - 10px);
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  width: 20px;
}
.top-search-type__category .type-category__title::after {
  content: "chevron_right";
  direction: ltr;
  display: inline-block;
  font-family: "Material Icons";
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  font-size: 22px;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  left: 50%;
  letter-spacing: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  text-rendering: optimizeLegibility;
  text-transform: none;
  top: calc(50% - 11px);
  -webkit-transform: translateX(135%);
          transform: translateX(135%);
  white-space: nowrap;
  word-wrap: normal;
}
.top-search-type__data {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  padding: 2px 0;
}
.top-search-type__data dt {
  font-weight: normal;
}
.top-search-type__data dd {
  margin: 0;
}
.top-search-type__data dd span {
  font-weight: bold;
}
.top-search-type__price {
  margin: 0 16px 0 0;
}
.top-search-type__price .price-num {
  color: #d6395e;
  font-size: 22px;
}
.top-search-type__num {
  margin: 0;
}
.top-search-type .type-unit__family {
  border-color: #e6e6e6;
  box-shadow: 0 2px 0 #e6e6e6;
  width: 100%;
}
.top-search-type .type-unit__family .top-search-type__category {
  background-color: #f4eaef;
}
.top-search-type .type-unit__family .top-search-type__category .type-category__title {
  color: #7d2e54;
}
.top-search-type .type-unit__family .top-search-type__data {
  padding: 5px 0;
}
.top-search-type .type-unit__family .top-search-type__num {
  display: flex;
}
.top-search-type .type-unit__oneday {
  border-color: #e6e6e6;
  box-shadow: 0 2px 0 #e6e6e6;
  margin-right: 8px;
  width: calc(50% - 4px);
}
.top-search-type .type-unit__oneday .top-search-type__category {
  background-color: #edf3e8;
}
.top-search-type .type-unit__oneday .top-search-type__category .type-category__title {
  color: #55882f;
}
.top-search-type .type-unit__cremation {
  border-color: #e6e6e6;
  box-shadow: 0 2px 0 #e6e6e6;
  width: calc(50% - 4px);
}
.top-search-type .type-unit__cremation .top-search-type__category {
  background-color: #fbf5ec;
}
.top-search-type .type-unit__cremation .top-search-type__category .type-category__title {
  color: #b9853e;
}
.top-search-type .invisible-pc {
  display: inline;
}

.top-feature .g-carousel {
  margin: 2rem 0 3rem;
}
.top-feature .category-links__body {
  margin: 0;
}

/* 動画
-----------------------*/
.sec_movie {
  background: #fff;
  padding: 20px 10px;
  /* Desktop */
}
.sec_movie .ttl_h2 {
  border-left: 4px solid #1ba0e5;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 5px 0 16px;
  padding-left: 0.5em;
}
.sec_movie .lead_movie {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  justify-content: center;
}
.sec_movie .lead_movie::before {
  border-left: 1px solid #333;
  content: "";
  -webkit-transform: rotate(0.44turn);
          transform: rotate(0.44turn);
  height: 1.6rem;
  margin-right: 8px;
}
.sec_movie .lead_movie::after {
  border-right: 1px solid #333;
  content: "";
  -webkit-transform: rotate(0.06turn);
          transform: rotate(0.06turn);
  height: 1.6rem;
  margin-left: 8px;
}
.sec_movie iframe {
  aspect-ratio: 16/9;
  vertical-align: bottom;
}

/* 4つの理由
-----------------------*/
.sec_reason {
  box-sizing: border-box;
  padding: 20px 10px 10px;
  margin-bottom: 20px;
  /* Desktop */
  /* Tablet */
}
.sec_reason .list_reason {
  display: flex;
  flex-direction: column;
}
.sec_reason .list_reason li {
  display: flex;
  margin-bottom: 20px;
}
.sec_reason .list_reason li figure {
  margin: 0;
  width: 40%;
}
.sec_reason .list_reason li figure img {
  display: block;
  height: 96px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.sec_reason .list_reason li dl {
  line-height: 1.5;
  margin: 0;
  min-height: 96px;
  padding: 0 0 0 150px;
  width: 100%;
}
.sec_reason .list_reason li dl.reason_01 {
  background: no-repeat left/auto 96px url(/assets-web/images/common/img_reason_01.png);
}
.sec_reason .list_reason li dl.reason_02 {
  background: no-repeat left/auto 96px url(/assets-web/images/common/img_reason_02.png);
}
.sec_reason .list_reason li dl.reason_03 {
  background: no-repeat left/auto 96px url(/assets-web/images/common/img_reason_03.png);
}
.sec_reason .list_reason li dl.reason_04 {
  background: no-repeat left/auto 96px url(/assets-web/images/common/img_reason_04.png);
}
.sec_reason .list_reason li dl dt {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.sec_reason .list_reason li dl dt::before {
  content: "■";
  color: #f70;
  font-size: 1rem;
  margin-right: 3px;
  vertical-align: text-bottom;
}
.sec_reason .list_reason li dl dd {
  font-size: 1.4rem;
  margin: 0;
}
.sec_reason .list_reason li dl dd strong {
  background: linear-gradient(to bottom, transparent 75%, #ffe859 75%);
  font-weight: 600;
}

/* バナー
-----------------------*/
.blk_bnr {
  box-sizing: border-box;
  display: block;
  margin: 0 auto 40px;
  padding: 0 10px;
  width: 100%;
  /* Desktop */
}
.blk_bnr img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1010;
  overflow-y: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.modal--fullscreen {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  background-color: #fff;
}
.modal__container {
  box-sizing: border-box;
  position: relative;
  margin: 20px;
  max-width: 700px;
  width: calc(100vw - 40px);
  background: #fff;
  cursor: auto;
  transition-duration: 0.5s;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 4px;
  opacity: 0;
}
.modal__container.state-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.modal__container.wrap_modal {
  border-radius: 10px;
}
.modal__header {
  position: relative;
  padding: 10px 30px 10px 10px;
  border-bottom: 1px solid #e6e6e6;
}
.modal__title {
  margin: 0;
  font-size: 1.4rem;
}
.modal__body {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 280px);
  -webkit-overflow-scrolling: touch;
}
.modal__footer {
  padding: 20px;
  box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, 0.1);
}
.modal__close {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 14px;
  height: 14px;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Modal Overlay
-------------------------*/
.modal-overlay,
.modal-overlay-map-view {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background: rgba(144, 153, 152, 0.87);
  cursor: pointer;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.modal-overlay-map-view {
  cursor: default;
  background: #f5f5f5;
}
.modal-overlay-map-view.state-active {
  display: block;
}

/*KAMAKURA-10909 list-city ランキングUI化*/
.modal--rank .modal__header {
  padding: 16px 0;
}
.modal--rank .modal__header .modal__close--rank {
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  height: 24px;
}
.modal--rank .modal__header .modal__close--rank::before {
  content: "close";
  font-family: "Material Icons";
  font-size: 2.8rem;
  color: #ccc;
}
.modal--rank .modal__title {
  font-size: 1.5rem;
  color: #1ba0e5;
  text-align: center;
}
.modal--rank .modal__body p {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 20px;
}
/* 返金保証モーダルウィンドウ */
#modal_guarantee .modal__container {
  background: #fff;
  padding: 0;
  width: calc(100vw - 40px);
}
#modal_guarantee .modal__header {
  border-bottom: 1px solid #e6e6e6;
  padding: 0;
}
#modal_guarantee .modal__title {
  color: #1ba0e5;
  font-size: 1.6rem;
  height: 48px;
  line-height: 48px;
  text-align: center;
}
#modal_guarantee .modal__body {
  max-height: calc(100vh - 280px);
  padding: 0 10px;
}
#modal_guarantee .modal__body::before {
  display: none;
}
#modal_guarantee .modal__body p {
  line-height: 1.5;
}
#modal_guarantee .modal__body a {
  text-decoration: underline;
}
#modal_guarantee .modal__body h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5em;
}
#modal_guarantee .modal__body ul {
  margin-bottom: 1em;
}
#modal_guarantee .modal__body ul li {
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}
#modal_guarantee .modal__body em {
  font-weight: bold;
}
#modal_guarantee .modal__body strong {
  color: #d6395e;
  font-weight: bold;
}
#modal_guarantee .modal__body .txt_attention {
  margin: 0;
  padding-left: 1em;
  text-indent: -1em;
}
#modal_guarantee .modal__footer {
  background: #eee;
  border-radius: 0 0 4px 4px;
  height: 48px;
  line-height: 48px;
  margin: 0;
  padding: 0;
  text-align: center;
}
#modal_guarantee .modal__close {
  font-size: 1.6rem;
  font-weight: bold;
  height: 100%;
  line-height: 48px;
  position: static;
  text-align: center;
  -webkit-transform: none;
  transform: none;
  width: 100%;
}

.modal.modal_individual .modal__container h2 {
  border: none;
  height: auto;
  line-height: 1.5;
}
.modal.modal_individual .modal__body {
  padding: 12px 10px;
}
.modal.modal_individual .material-icons {
  color: #1ba0e5;
}
.modal.modal_individual .individual_itemwrap {
  display: block;
}
.modal.modal_individual .list-data {
  display: block;
}
.modal.modal_individual .list-data:last-child {
  padding-bottom: 12px;
}
.modal.modal_individual .list-data__item {
  display: inline-flex;
  line-height: 1.5em;
  margin: 0 0 5px 0;
}
.modal.modal_individual .list-data__item:first-of-type {
  margin-top: 0;
}
.modal.modal_individual .list-data__body {
  line-height: 1.4;
}
.modal.modal_individual .list-data__body--fluid {
  clear: both;
  overflow: visible;
}
.modal.modal_individual .list-data dl {
  margin: 0;
}
.modal.modal_individual .list-data__mark {
  display: flex;
  margin: 0 5px 0 0;
  overflow: visible;
  position: relative;
  top: -2px;
  width: 20px;
}
.modal.modal_individual .list-data__mark .icon {
  width: 20px;
  height: 20px;
}
.modal.modal_individual .list-data__closest-station .list-data__mark {
  top: 0;
}
.modal.modal_individual .list-data__closest-station dd {
  margin: 3px 0 0 0;
  overflow: hidden;
}
.modal.modal_individual .list-data__closest-station dd ul > li > span {
  margin-left: 4px;
}
.modal.modal_individual .individual_access {
  width: 100%;
}
.modal.modal_individual .individual_price {
  margin-bottom: 10px;
}
.modal.modal_individual .individual_price ul {
  display: table;
  width: 100%;
  text-align: center;
  border: none;
}
.modal.modal_individual .individual_price li {
  display: table-cell;
  width: calc(100% / 3);
  height: 100%;
}
.modal.modal_individual .individual_price li:last-of-type .individual_price__price-type,
.modal.modal_individual .individual_price li:last-of-type .individual_price__price-num {
  border-right: 1px solid #ccc;
}
.modal.modal_individual .individual_price__price-type {
  font-size: 1.4rem;
  padding: 3px 10px;
  border: 1px solid #ccc;
  border-bottom: none;
  border-right: none;
  background-color: #f5f5f5;
}
.modal.modal_individual .individual_price__price-type::after {
  content: none;
}
.modal.modal_individual .individual_price__price-num {
  font-size: 1.4rem;
  min-height: 28px;
  padding: 3px;
  border: solid 1px #ccc;
  border-right: none;
  line-height: 2.5rem;
}
.modal.modal_individual .individual_price__price-num em {
  color: #d6395e;
  font-size: 1.8rem;
}
.modal.modal_individual .individual_feature .state {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: -2px;
}
.modal.modal_individual .individual_feature .state__item {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 calc(25% - 2px);
  align-items: center;
  justify-content: center;
  width: calc(25% - 2px);
  min-height: 36px;
  margin-top: 2px;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  background-color: #f2f9fd;
  border: 1px solid #1ba0e5;
  border-radius: 5px;
}
.modal.modal_individual .individual_feature .state__item--grayout {
  color: #999;
  background-color: #eee;
  border: 1px solid #ccc;
}

/* Desktop */
.modal_tag-list .modal__header {
  text-align: center;
}
.modal_tag-list .modal__container {
  border-radius: 10px;
}
.modal_tag-list .modal__close {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #ccc;
  display: block;
  height: 24px;
  line-height: 24px;
  padding: 0;
  position: absolute;
  right: 10px;
  text-align: center;
  width: 24px;
}
.modal_tag-list .modal__close .icon {
  height: 24px;
  margin-right: 0;
}
.modal_tag-list .modal__close .icon__svg {
  fill: #ccc;
}
.modal_tag-list .modal__title {
  font-size: 1.6rem;
  line-height: 1.5;
}
.modal_tag-list .modal__title::before {
  content: "#";
  margin-right: 6px;
  font-size: 1.7rem;
  font-weight: bold;
  color: #1ba0e5;
  vertical-align: middle;
  line-height: 1;
}
.modal_tag-list .modal__body {
  padding: 1em;
}
.modal_tag-list .modal__body p {
  margin: 0 0 1em 0;
  line-height: 1.6;
}
.modal_tag-list .modal__body p:last-child {
  margin: 0;
}
/* 地域選択モーダルウィンドウ */
.modal.modal_area {
  top: 10%;
  -webkit-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
  /* KAMAKURA-11368 葬儀社一覧LPO施策 */
}
.modal.modal_area .modal__container {
  border-radius: 10px;
}
.modal.modal_area .modal__container h2 {
  border-bottom: 1px solid #ccc;
  font-size: 1.7rem;
  height: 48px;
  line-height: 48px;
  margin: 0;
  text-align: center;
  padding: 10px 4.2rem;
}
.modal.modal_area .modal__container .btn_close {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #ccc;
  display: block;
  font-family: Material Icons;
  font-size: 2rem;
  font-weight: normal;
  height: 24px;
  line-height: 24px;
  padding: 0;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 12px;
  width: 24px;
  z-index: 99;
}
.modal.modal_area .modal__container .blk_select {
  max-height: calc(100vh - 200px);
  overflow-x: hidden;
  overflow-y: auto;
}
.modal.modal_area .modal__container .blk_select .link_change {
  align-items: center;
  color: #1ba0e5;
  border-bottom: 1px solid #ccc;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  height: 48px;
  line-height: 1;
  margin: 0;
  padding-left: 20px;
  position: relative;
}
.modal.modal_area .modal__container .blk_select .link_change::before {
  content: "";
  font-family: "material icons";
  font-weight: normal;
  margin-right: 8px;
}
.modal.modal_area .modal__container .blk_select .link_change a {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.modal.modal_area .modal__container .blk_select h3 {
  font-size: 1.6rem;
  height: 48px;
  line-height: 48px;
  margin: 0;
  padding-left: 20px;
  position: relative;
}
.modal.modal_area .modal__container .blk_select h3 a {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.modal.modal_area .modal__container .blk_select .ttl_kana {
  display: block;
  background: #e5f3fa;
  font-size: 1.6rem;
  font-weight: bold;
  height: 32px;
  line-height: 32px;
  margin: 0;
  padding-left: 20px;
}
.modal.modal_area .modal__container .blk_select .list_city {
  background: #fff;
}
.modal.modal_area .modal__container .blk_select .list_city li {
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  height: 48px;
  position: relative;
}
.modal.modal_area .modal__container .blk_select .list_city li label {
  align-items: center;
  color: #1ba0e5;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  height: 100%;
  justify-content: space-between;
  line-height: 1;
  margin: 0;
  padding-left: 20px;
}
.modal.modal_area .modal__container .blk_select .list_city li label::after {
  content: "";
  font-family: "material icons";
  font-size: 2rem;
  font-weight: normal;
  margin-right: 10px;
}
.modal.modal_area .modal__container .blk_select .list_city li label.nolink {
  color: #ccc;
}
.modal.modal_area .modal__container .blk_select .list_city li label.nolink::after {
  content: none;
}
.modal.modal_area .modal__container .blk_select .list_city li a {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.modal.modal_area .modal__container .blk_select .list_city li:last-child {
  border-bottom: none;
}
.modal.modal_area .modal__container .blk_footer {
  background: #fff;
  border-radius: 0 0 10px 10px;
  height: 10px;
  margin: -4px 0 0;
  padding: 0;
  position: relative;
}
.modal.modal_area .modal__container .modal__body {
  padding: 13px 10px 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.modal.modal_area.area_pref .area_pref__title {
  display: block;
  border-bottom: 1px solid #ccc;
  font-size: 1.7rem;
  height: 48px;
  line-height: 48px;
  margin: 0;
  text-align: center;
}
.modal.modal_area.area_pref .list_city {
  display: flex;
  flex-wrap: wrap;
}
.modal.modal_area.area_pref .list_city li {
  width: 50%;
}
.modal.modal_area.area_pref .list_city li:nth-child(2n+1) {
  border-right: 1px solid #ccc;
}
.modal.modal_area.area_pref .list_city li:nth-child(2n+1):nth-last-child(2) {
  border-bottom: none;
}
.modal.modal_area.area_city .area_city__title {
  border-bottom: 1px solid #ccc;
  font-size: 1.7rem;
  height: 48px;
  line-height: 48px;
  margin: 0;
  text-align: center;
}
.modal.modal_area .co-content-emergency {
  margin: 0;
}
.modal.modal_area .co-content-emergency .modal__header {
  border: none;
  padding: 0;
  z-index: 1;
}
.modal.modal_area .co-content-emergency .modal__title {
  border: none;
  height: auto;
  line-height: initial;
}
.modal.modal_area .co-content-emergency .wrap-top {
  max-height: calc(100vh - 100px);
  padding-top: 30px;
}
.modal.modal_area .co-content-emergency .top-emergency {
  font-weight: 600;
  min-height: 100px;
  padding: 10px;
  position: relative;
}
.modal.modal_area .co-content-emergency .top-emergency h2 {
  border: none;
  color: #333;
  font-size: 2rem;
  height: auto;
  line-height: 1.6;
  margin: 0 0 10px;
  text-align: center;
}
.modal.modal_area .co-content-emergency .top-emergency h2 .txt-kitoku {
  color: #d6395e;
  text-align: center;
}
.modal.modal_area .co-content-emergency .top-emergency h2 .txt-underline {
  background: linear-gradient(transparent 75%, #fddc0e 75%);
}
.modal.modal_area .co-content-emergency .top-emergency__lead {
  background: #fff;
  border-radius: 4px;
  border-radius: 9px;
  border: 2px solid #d6395e;
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 auto 11px;
  max-width: 480px;
  padding: 8px 16px;
  text-align: center;
  width: 80%;
}
.modal.modal_area .co-content-emergency .top-emergency .button-conversion {
  background-color: #d6395e;
  box-shadow: 0 4px 1px 0 #a32c48;
  height: 88px;
  margin: 0 auto 12px;
  max-width: 400px;
}
.modal.modal_area .co-content-emergency .top-emergency .button-conversion__container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  justify-content: center;
  width: 100%;
}
.modal.modal_area .co-content-emergency .top-emergency .button-conversion .number {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  margin: 0;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  vertical-align: top;
  width: 100%;
}
.modal.modal_area .co-content-emergency .top-emergency .button-conversion .number > i {
  font-size: 7rem;
  vertical-align: bottom;
}
.modal.modal_area .co-content-emergency .top-emergency .button-conversion__title {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 5px;
  padding-left: 2.4rem;
  position: static;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  vertical-align: top;
}
.modal.modal_area .co-content-emergency .top-emergency .button-conversion__mark {
  height: 32px;
  left: 20%;
  top: 50%;
  width: 32px;
}
.modal.modal_area .co-content-emergency .top-emergency .button-conversion__emergency_mark {
  height: 32px;
  left: 25%;
  top: 70%;
  width: 32px;
}
.modal.modal_area .co-content-emergency .top-emergency .button-conversion__lp_emergency_mark {
  left: 25%;
}
.modal.modal_area .co-content-emergency .top-emergency .button-conversion__call {
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  position: static;
  text-align: center;
  vertical-align: top;
}
.modal.modal_area .co-content-emergency .top-emergency .button-conversion__lead {
  background: #fff;
  border-radius: 9px;
  color: #d6395e;
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  margin: 8px auto;
  max-width: 240px;
  padding: 3px;
  text-align: center;
  width: 100%;
}
.modal.modal_area .co-content-emergency .top-emergency .appending {
  color: #d6395e;
  font-size: 1.6rem;
  margin: 0 0 4px;
  text-align: center;
}
.modal.modal_area .co-content-emergency .top-emergency .area-jpx-md {
  display: none;
}
.modal.modal_area .co-content-emergency .area-jpx-xs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin: 0 10px 10px;
}
.modal.modal_area .co-content-emergency .area-jpx-xs > figure {
  margin: 0 4px 0 0;
}
.modal.modal_area .co-content-emergency .area-jpx-xs > figure > img {
  height: auto;
  max-width: 51px;
  width: 10vw;
}
.modal.modal_area .co-content-emergency .area-jpx-xs > .txt-jpx {
  align-items: center;
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
}
.modal.modal_area .co-content-emergency .intro-emergency {
  background: #f5f5f5;
  border-radius: 4px;
  line-height: 1.4;
  margin: 0 10px 10px;
  padding: 10px 10px;
}
.modal.modal_area .co-content-emergency .intro-emergency h2 {
  font-size: 2rem;
  margin: 10px 0;
  text-align: center;
}
.modal.modal_area .co-content-emergency .intro-emergency__text {
  margin: 0 0 17px 28px;
  position: relative;
}
.modal.modal_area .co-content-emergency .intro-emergency__text:last-child {
  margin-bottom: 0;
}
.modal.modal_area .co-content-emergency .intro-emergency__text > i {
  color: #d6395e;
  font-size: 2.2rem;
  height: auto;
  left: -3rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  vertical-align: text-bottom;
  width: auto;
}

.modal.modal_card-price .blk_price-text {
  padding: 5px 0 10px;
  text-align: center;
  border: 1px solid #1ba0e5;
  border-radius: 4px;
}
.modal.modal_card-price .blk_price-text p {
  margin: 0;
}
.modal.modal_card-price .blk_price-text p:not(:first-child) {
  margin-top: 5px;
}
.modal.modal_card-price .blk_price-text p strong {
  font-size: 1.6rem;
}
.modal.modal_card-price .blk_price-text p strong span {
  font-size: 2.2rem;
  color: #d6395e;
}
.modal.modal_card-price .blk_price-text p span {
  font-weight: 600;
}
.modal.modal_card-price .blk_info {
  margin-top: 12px;
}
.modal.modal_card-price .blk_info p {
  margin: 0;
  line-height: 1.5;
}
.modal.modal_card-price .blk_flow {
  margin: 12px 0 0 0;
}
.modal.modal_card-price .blk_flow figcaption {
  margin: 0;
}
.modal.modal_card-price .blk_chose-person {
  margin-top: 15px;
  padding: 12px 10px;
  background: #e5f3fa;
  border-radius: 4px;
}
.modal.modal_card-price .blk_chose-person h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px 0;
}
.modal.modal_card-price .blk_chose-person h3 i {
  margin-right: 8px;
  font-size: 2.8rem;
}
.modal.modal_card-price .blk_chose-person ul li {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.modal.modal_card-price .blk_chose-person ul li:not(:last-child) {
  margin-bottom: 5px;
}
.modal.modal_card-price .blk_chose-person ul li i {
  margin-right: 6px;
  font-size: 2rem;
}
.modal.modal_card-price .blk_plan-number {
  max-width: 680px;
  margin: 0 auto;
  padding: 10px 10px 0;
  text-align: right;
}
.modal.modal_card-price .blk_plan-number p {
  display: inline-block;
  margin: 0;
  padding: 2px 5px;
  font-size: 1.2rem;
  border: 1px solid #ccc;
}
.modal.modal_card-price .blk_plan-number p span {
  font-size: 1.4rem;
}
.modal.modal_card-price .blk_cta .fixedbox__body {
  background: #fff;
  height: auto;
  border-radius: 10px;
}
.modal.modal_card-price .blk_cta .fixedbox__body ul {
  display: block;
}
.modal.modal_card-price .blk_cta .fixedbox__item:first-child {
  margin-bottom: 8px;
}
.modal.modal_card-price .blk_cta .fixedbox__item:first-child, .modal.modal_card-price .blk_cta .fixedbox__item:last-child {
  width: 100%;
}
.modal.modal_card-price .blk_cta .fixedbox__item .fixedbox__tell,
.modal.modal_card-price .blk_cta .fixedbox__item .fixedbox__form {
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.12);
}
.modal.modal_card-price .blk_cta .fixedbox__item .fixedbox__tell {
  background: linear-gradient(180deg, #ffa800, #ff8401);
  border: 1px solid #ff8401;
}
.modal.modal_card-price .blk_cta .fixedbox__item .fixedbox__tell-issue-phone-number {
  background: linear-gradient(180deg, #ffa800, #ff8401);
  border: 1px solid #ff8401;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.12);
}
.modal.modal_card-price .blk_cta .fixedbox__item .fixedbox__tell-issue-phone-number .material-icons {
  top: 50%;
}
.modal.modal_card-price .blk_cta .fixedbox__item > a {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 56px;
  position: relative;
}
.modal.modal_card-price .blk_cta .fixedbox__item > a .material-icons {
  font-size: 3.2rem;
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal.modal_card-price .blk_cta .fixedbox__text {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: calc(100% - 15%);
  margin: 0 2% 0 10%;
}
.modal.modal_card-price .blk_cta .fixedbox__text > span {
  font-size: 1.3rem;
  margin-top: 3px;
}

/* Desktop */
.modal.plan-modal .item_plan {
  align-items: center;
  border-bottom: 1px solid #ccc;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  padding: 10px 0;
}
.modal.plan-modal .item_plan .wrap_plan-info h3 {
  font-size: 1.4rem;
  line-height: 1.35;
  margin: 0;
}
.modal.plan-modal .item_plan .wrap_plan-info p {
  line-height: 1.35;
  margin: 3px 0;
}
.modal.plan-modal .item_plan .wrap_plan-info .price_plan {
  font-weight: bold;
}
.modal.plan-modal .item_plan .wrap_plan-info .price_plan em {
  font-size: 2rem;
  color: #d6395e;
}
.modal.plan-modal .item_plan img {
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100px;
}
.modal.plan-modal .blk_cta .fixedbox__body {
  background: #fff;
  border-radius: 10px;
  height: auto;
}
.modal.plan-modal .blk_cta .fixedbox__body ul {
  display: block;
}
.modal.plan-modal .blk_cta .fixedbox__item:first-child {
  margin-bottom: 8px;
}
.modal.plan-modal .blk_cta .fixedbox__item .fixedbox__tell,
.modal.plan-modal .blk_cta .fixedbox__item .fixedbox__form {
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.12);
}
.modal.plan-modal .blk_cta .fixedbox__item .fixedbox__tell {
  background: linear-gradient(180deg, #ffa800, #ff8401);
  border: 1px solid #ff8401;
}
.modal.plan-modal .blk_cta .fixedbox__item > a {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 56px;
  position: relative;
}
.modal.plan-modal .blk_cta .fixedbox__item > a .material-icons {
  font-size: 3.2rem;
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal.plan-modal .blk_cta .fixedbox__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: calc(100% - 15%);
  margin: 0px 2% 0 10%;
}
.modal.plan-modal .blk_cta .fixedbox__text > span {
  font-size: 1.3rem;
  margin-top: 3px;
}
.modal.plan-modal .catch_cta {
  display: flex;
  font-weight: bold;
  gap: 5px;
  justify-content: center;
  margin: 0 0 -3px;
  padding-top: 10px;
  text-align: center;
}
.modal.plan-modal .catch_cta::before, .modal.plan-modal .catch_cta::after {
  height: 1.8rem;
  content: "";
}
.modal.plan-modal .catch_cta::before {
  border-left: solid 1.5px;
  -webkit-transform: rotate(-24deg);
          transform: rotate(-24deg);
}
.modal.plan-modal .catch_cta::after {
  border-right: solid 1.5px;
  -webkit-transform: rotate(24deg);
          transform: rotate(24deg);
}

body {
  color: #333;
}

main {
  background-color: #f5f5f5;
}

.wrap-top {
  background: #fff;
  padding-bottom: 20px;
}

.top_about {
  margin: 0 auto;
  max-width: 1000px;
  padding: 20px 0;
  text-align: center;
}
.top_about h1 {
  color: #d6395e;
  font-size: 2.4rem;
  line-height: 1.5;
  margin: -5px 0 5px;
}
.top_about img {
  margin: 0 0 20px;
  width: 100%;
}
.top_about p {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 10px 0 0;
  padding: 0 20px;
}

.about_e-sogi {
  background-color: #e5f3fa;
  padding: 30px 20px;
  text-align: center;
}
.about_e-sogi iframe {
  aspect-ratio: 16/9;
  height: auto;
  min-height: 180px;
  width: 100%;
}

.content-about h2,
.usage_e-sogi h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 32px;
  text-align: center;
}
.content-about h2 span,
.usage_e-sogi h2 span {
  color: #d6395e;
}

.features_about {
  padding-top: 48px;
  width: 100%;
}

.features_list {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.features_item {
  align-items: center;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 16px;
  padding: 10px 10px 15px;
  position: relative;
  text-align: center;
  width: 100%;
}
.features_item a {
  color: inherit;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.features_item span {
  font-size: 1.6rem;
  border-radius: 4px;
  background: #1ba0e5;
  padding: 1px 5px;
  color: #fff;
}
.features_item p {
  line-height: 1.6;
  font-size: 1.8rem;
  margin: 10px 0 0;
}
.features_item img {
  height: 120px;
  width: auto;
}
.features_item::after {
  content: "";
  border-top: 4px solid #1ba0e5;
  border-right: 4px solid #1ba0e5;
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.section_point {
  background: #fff;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 1000px;
  padding: 30px 10px 40px;
  text-align: center;
}
.section_point .wrap_point {
  padding-top: 72px;
  margin-top: -72px;
}
.section_point h2 {
  line-height: 1.5;
  margin: 20px 0;
}
.section_point p {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
}
.section_point .g-carousel__section {
  padding: 2rem 0 0;
  text-align: left;
}

.p_label {
  background: #1ba0e5;
  border-radius: 4px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 5px 8px;
}
.wrap_number img {
  width: 100%;
}

.number_about {
  display: flex;
  justify-content: space-between;
}
.number_about div {
  background-color: #e5f3fa;
  display: flex;
  flex-direction: column;
  height: 88px;
  justify-content: center;
  width: 49%;
}
.number_about div dt span {
  color: #1ba0e5;
}
.number_about div dd {
  color: #d6395e;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 5px 0 0;
}
.number_about div dd span {
  font-size: 2.2rem;
}

.wrap_supplement {
  border: 1px dashed #1ba0e5;
  margin-top: 20px;
  padding: 15px 0;
}

.img_p2 {
  width: 100%;
  height: auto;
}

.survey_result {
  padding: 15px 20px;
}
.survey_result p {
  margin: 0 0 10px;
  line-height: 1.5;
}
.survey_result p span {
  color: #d6395e;
}
.survey_result img {
  width: 144px;
  height: auto;
  margin: 0 auto;
}

#about_point2 h3 {
  margin: 30px 0 0 0;
  text-align: left;
}

.img_p3 {
  width: 80%;
  margin-top: 20px;
}

.notes_link {
  text-align: right;
  padding-right: 10px;
  font-size: 1.2rem;
  margin: -25px 0 20px;
}

.usage_e-sogi {
  background-color: #fff;
  padding: 40px 0 10px;
}
.usage_e-sogi .section {
  padding: 0 10px;
  box-sizing: border-box;
}
.usage_e-sogi h3 {
  border-bottom: 2px solid #1ba0e5;
  font-size: 1.8rem;
  padding-bottom: 5px;
  margin: 30px auto 20px;
}
.usage_e-sogi h4 {
  border-left: solid 4px #1ba0e5;
  font-size: 1.6rem;
  margin: 2rem 0 1.5rem;
  padding-left: 8px;
}
.usage_e-sogi p {
  font-size: 1.6rem;
  line-height: 1.5;
}

.wrap_shindan img {
  width: 100%;
  margin: 0 auto;
}
.wrap_shindan .btn_shindan {
  align-items: center;
  background: #1ba0e5;
  border-radius: 5px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  font-weight: 600;
  gap: 5px;
  justify-content: center;
  margin: 10px auto 40px;
  min-height: 48px;
  padding: 14px 0;
  position: relative;
  text-align: center;
  width: 100%;
}
.wrap_shindan .btn_shindan::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.wrap_shindan .btn_shindan:hover {
  text-decoration: none;
}
.wrap_search .top-search-type__unit {
  height: auto;
  min-height: 88px;
  width: calc(50% - 4px);
}
.wrap_search .top-search-type__unit p {
  font-size: 1.4rem;
}
.wrap_search .top-search-type__unit .top-search-type__category {
  min-height: 44px;
  height: auto;
}
.wrap_search .top-search-type__unit .top-search-type__data {
  line-height: 1.25;
  margin: 5px 0;
  padding: 2px 0;
}
.wrap_search .type-unit__family {
  border-color: #7d2e54;
  box-shadow: 0 2px 0 #7d2e54;
  width: 100%;
}
.wrap_search .type-unit__family .top-search-type__category {
  background-color: #f4eaef;
}
.wrap_search .type-unit__family .top-search-type__category .type-category__title {
  font-size: 1.6rem;
  color: #7d2e54;
}
.wrap_search .type-unit__oneday {
  border-color: #55882f;
  box-shadow: 0 2px 0 #55882f;
  width: calc(50% - 4px );
  margin-right: 8px;
}
.wrap_search .type-unit__oneday .top-search-type__category {
  background-color: #edf3e8;
}
.wrap_search .type-unit__oneday .top-search-type__category .type-category__title {
  font-size: 1.6rem;
  color: #55882f;
}
.wrap_search .type-unit__cremation {
  border-color: #b9853e;
  box-shadow: 0 2px 0 #b9853e;
  width: calc(50% - 4px );
}
.wrap_search .type-unit__cremation .top-search-type__category {
  background-color: #fbf5ec;
}
.wrap_search .type-unit__cremation .top-search-type__category .type-category__title {
  font-size: 1.6rem;
  color: #b9853e;
}
.wrap_search .top-search-area .sec_map .top-search-area__link {
  font-size: 1.4rem;
  min-height: 48px;
}
.wrap_search .top-search-area .sec_map .top-search-area__back .button {
  font-size: 1.4rem;
  min-height: 48px;
}
.wrap_search .top-search-area__inner {
  padding: 0;
}

.wrap_guide {
  background: #fff;
  padding: 0 10px 40px;
}
.wrap_guide .h_guide {
  border-bottom: 2px solid #1ba0e5;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  padding-bottom: 5px;
}
.wrap_guide .section__title {
  background: none;
  border-left: solid 4px #1ba0e5;
  color: #333;
  font-size: 1.6rem;
  margin: 1rem -10px;
  padding: 0 0 0 8px;
}
.wrap_guide .media--slim {
  padding-left: 0;
}
.wrap_cv .baloon_cv {
  background: #fee7ec;
  padding: 10px 0 5px;
  position: relative;
  text-align: center;
  width: 100%;
}
.wrap_cv .baloon_cv::after {
  content: "";
  border: 16px solid transparent;
  border-top-color: #fee7ec;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.wrap_cv .baloon_cv p {
  font-weight: 600;
  margin: 5px auto 0;
}
.wrap_cv .baloon_cv p span {
  color: #d6395e;
}
.wrap_cv .baloon_cv .free_label {
  background-color: #d6395e;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 1px 10px;
}
.wrap_cv .cv_btn_list {
  margin-top: 16px;
}
.wrap_cv .cv_btn_item {
  margin-bottom: 10px;
}
.wrap_cv .cv_btn_item a {
  align-items: center;
  border-radius: 5px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  height: 100%;
  min-height: 48px;
  padding: 4px 3px;
  position: relative;
}
.wrap_cv .cv_btn_item a:hover {
  text-decoration: none;
}
.wrap_cv .cv_btn_item a .main_txt {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 5px;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.wrap_cv .cv_btn_item a .main_txt p {
  margin: 0;
}
.wrap_cv .cv_btn_item a .main_txt p span {
  font-size: 1.4rem;
}
.wrap_cv .cv_btn_item a .sub_txt {
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0;
}
.wrap_cv .cv_btn_item .btn_call {
  background: linear-gradient(180deg, #ffa800, #ff8401);
  border: 1px solid #ff8401;
}
.wrap_cv .cv_btn_item .btn_mail {
  background: linear-gradient(180deg, #56badf, #1ba0e5);
  border: 1px solid #1994d4;
}
.wrap_cv .cv_telephone .telephone_number {
  font-family: Roboto;
  font-size: 4.8rem;
  font-weight: bold;
  color: #ed702c;
  margin: 0;
  line-height: 1;
}
.wrap_cv .cv_telephone .telephone_descritption {
  margin: 0;
  font-weight: 600;
  font-size: 1.5rem;
}

/* Module */

@media screen and (min-width: 768px){
  .slider-arrow {
    top: 192px;
    width: 50px;
    height: 50px;
    z-index: 10;
    transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, -webkit-transform 0.3s;
    transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, transform 0.3s, -webkit-transform 0.3s;
  }
  .slider-arrow:hover {
    background-color: #F5F5F5;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    -webkit-transform: translateY(calc(-50% + 3px));
            transform: translateY(calc(-50% + 3px));
    text-decoration: none;
  }
  .slider-arrow > svg {
    left: 38%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
  .slider-arrow--prev {
    right: calc(100% - 40px);
  }
  .slider-arrow--prev > svg {
    left: auto;
    right: 38%;
  }
  .slider-arrow--next {
    left: calc(100% - 40px);
  }
  .slider-cards,
.slider-map,
.slider-visual-mobile {
    margin-left: -10px;
    margin-right: -10px;
    padding: 0;
  }
  .slider-cards .slick-slide,
.slider-map .slick-slide,
.slider-visual-mobile .slick-slide {
    padding-top: 0;
    padding-bottom: 0;
  }
  .slider-cards__slide--border,
.slider-map__slide--border,
.slider-visual-mobile__slide--border {
    border-right: 1px solid #e6e6e6;
  }
  .slider-cards__slide--border:last-child,
.slider-map__slide--border:last-child,
.slider-visual-mobile__slide--border:last-child {
    border: none;
  }
  .slider-cards__arrow,
.slider-map__arrow,
.slider-visual-mobile__arrow {
    width: 50px;
    height: 50px;
    z-index: 10;
    transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, -webkit-transform 0.3s;
    transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, transform 0.3s, -webkit-transform 0.3s;
  }
  .slider-cards__arrow:hover,
.slider-map__arrow:hover,
.slider-visual-mobile__arrow:hover {
    background-color: #F5F5F5;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    -webkit-transform: translateY(calc(-50% + 3px));
            transform: translateY(calc(-50% + 3px));
    text-decoration: none;
  }
  .slider-cards__arrow > svg,
.slider-map__arrow > svg,
.slider-visual-mobile__arrow > svg {
    left: 38%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
  .slider-cards__prev,
.slider-map__prev,
.slider-visual-mobile__prev {
    right: calc(100% - 18px);
  }
  .slider-cards__prev > svg,
.slider-map__prev > svg,
.slider-visual-mobile__prev > svg {
    left: auto;
    right: 38%;
  }
  .slider-cards__prev--fluid,
.slider-map__prev--fluid,
.slider-visual-mobile__prev--fluid {
    right: calc(100% - 44px);
    opacity: 0.9;
  }
  .slider-cards__prev--fluid > svg,
.slider-map__prev--fluid > svg,
.slider-visual-mobile__prev--fluid > svg {
    left: auto;
    right: 25%;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .slider-cards__next,
.slider-map__next,
.slider-visual-mobile__next {
    left: calc(100% - 18px);
  }
  .slider-cards__next--fluid,
.slider-map__next--fluid,
.slider-visual-mobile__next--fluid {
    left: calc(100% - 44px);
    opacity: 0.9;
  }
  .slider-cards__next--fluid > svg,
.slider-map__next--fluid > svg,
.slider-visual-mobile__next--fluid > svg {
    left: 25%;
  }
  .slider-map {
    max-width: none;
  }
  .slider-map .slick-slide {
    padding: 5px 10px;
  }
  .slider-map .slick-current > div {
    box-shadow: 0 0 0 3px #1ba0e5;
  }
  .slider-map__prev--fluid {
    right: calc(100% - 44px);
  }
  .slider-map__prev--fluid > svg {
    left: auto;
    right: 25%;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .slider-map__next--fluid {
    left: calc(100% - 44px);
  }
  .slider-map__next--fluid > svg {
    left: 25%;
  }
  .slider-visual {
    max-height: 348px;
  }
  .slider-visual__caption {
    padding: 20px;
  }
  .slider-visual--extend {
    width: 100%;
    margin: 0;
  }
  .slider-visual-nav {
    max-height: 87px;
    display: block;
  }
  .slider-visual-nav__slide {
    max-height: 87px;
  }
  .slider-visual-nav--extend {
    width: 100%;
    margin: 0;
  }
  .slider-visual-nav--extend .slider-visual-nav__slide {
    overflow: visible;
  }
  .slider-visual-nav--extend .slider-visual-nav__slide::before {
    display: none;
  }
  .slider-visual-nav--extend .slider-visual-nav__slide > img {
    position: static;
    top: auto;
    left: auto;
    max-width: 100%;
    height: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .slider-gallery {
    display: flex;
  }
  .slider-gallery__main {
    width: 60%;
  }
  .slider-gallery__nav {
    box-sizing: border-box;
    padding-left: 20px;
    width: 40%;
  }
  .slider-gallery-main {
    overflow: visible;
  }
  .slider-gallery-main__slide p {
    padding: 0 50px;
  }
  .slider-gallery-main .img-responsive {
    max-height: 576px;
  }
  .slider-gallery-nav {
    display: flex;
    flex-wrap: wrap;
    margin-left: -3px;
    margin-right: -3px;
  }
  .slider-gallery-nav__slide {
    cursor: pointer;
    height: 90px;
    margin: 0 0 4px 1%;
    padding: 0;
    width: 32%;
  }
  .slider-professional {
    margin-top: 0;
  }
  .content__header {
    position: relative;
    box-sizing: border-box;
    z-index: 10;
    border: 1pxd solid #ddd;
  }
  .content__header--secondary {
    position: relative;
    padding: 0;
    min-height: 0;
    box-shadow: 0 1px 3px 0 rgba(147, 142, 126, 0.2);
  }
  .content__header + .section {
    margin-top: 40px;
  }
  .content__constrained {
    position: relative;
    margin: 0 auto;
    padding: 2.5rem 2rem 10rem;
    max-width: 1000px;
  }
  .content__constrained--heading {
    padding-bottom: 0;
  }
  .content__constrained.no-mb {
    padding-bottom: 1rem;
  }
  .content__constrained02 {
    box-shadow: 0 1px 2px -2px rgba(147, 142, 126, 0.2);
    position: relative;
    margin: 0 auto;
    padding: 25px 20px 10px;
    max-width: 1000px;
  }
  .content__constrained02--heading {
    padding-bottom: 0;
  }
  .content__heading {
    display: block;
  }
  .content__heading + .content__overview {
    margin-top: 20px;
  }
  .content__title {
    margin: 0;
    padding: 0 0 0.75em;
    border: none;
    border-left: 8px solid #1BA0E5;
    font-weight: normal;
    padding-left: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 2.4rem;
  }
  .content__title > em {
    font-weight: bold;
    font-size: 2.8rem;
  }
  .content__title--plain {
    margin: 0;
    padding: 0;
    border: none;
    font-weight: bold;
  }
  .content__title + .content__overview {
    margin-top: 20px;
  }
  .content__title-shoulder {
    margin: 0 0 0.5em;
    font-size: 0.8571em;
    font-weight: bold;
  }
  .content__catch {
    position: absolute;
    bottom: 0;
    left: 66%;
  }
  .content__id {
    position: absolute;
    top: 24px;
    right: 20px;
    margin: 0;
  }
  .content__id + .content__lead-feature {
    bottom: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .content__meta {
    display: flex;
    align-items: center;
    justify-items: center;
    font-size: 1.3rem;
  }
  .content__price {
    margin: 20px 0;
    padding: 0;
    border: none;
  }
  .content__price:last-child {
    padding-bottom: 20px;
    margin-bottom: -25px;
  }
  .content__offer {
    margin: 0;
  }
  .content__block {
    width: 50%;
    float: left;
  }
  .content__conversion {
    margin: 0;
  }
  .content__overview {
    padding: 0 0 20px;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .content__visual {
    margin: 0;
    width: 62%;
  }
  .content__visual--secondary {
    width: 43%;
  }
  .content__information {
    box-sizing: border-box;
    margin-left: 20px;
    width: calc(38% - 20px);
  }
  .content__information--primary {
    order: 0;
    margin: 0;
    width: 57%;
  }
  .content__score {
    display: inline-block;
  }
  .content__score .closest-station {
    position: absolute;
    left: 300px;
    top: 60px;
  }
  .content__line {
    display: inline-block;
  }
  .content__line .line-icon {
    margin-left: 10px;
  }
  .content__special {
    width: 100%;
  }
  .content__lead-feature {
    bottom: 30%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  .content__tab {
    margin: 20px auto;
  }

  .content-hall__tab {
    margin: 0 auto 40px;
    max-width: 100%;
    height: auto;
  }
  .hallToList__bg {
    background-color: #fff;
  }
  .hallToList__btn {
    width: 470px;
    margin: 24px auto;
  }
  .hallToList__btn::after {
    top: 6px;
  }
  .hallToList__btn:hover {
    text-decoration: none;
    background: #efefef;
  }
  /* 閲覧履歴モーダル調整 */
  #modal_history .modal__inner {
    width: 100%;
    overflow-x: scroll;
  }

  #modal_history .recommend {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  #modal_history .recommend__item {
    width: 300px;
    margin: 10px;
  }

  #modal_history .media__image {
    margin: 0 !important;
  }
  .sec-interview-area {
    border-radius: 5px;
    margin: 0 auto 36px;
    max-width: 1000px;
    padding-bottom: 0;
    width: calc(100% - 40px);
  }
  .sec-interview-area .ttl-interview {
    border-top: 4px solid #1ba0e5;
    border-radius: 5px 5px 0 0;
    font-size: 2.1rem;
    margin: 0;
    padding: 10px 20px 6px;
  }
  .sec-interview-area .blk-interview {
    border: none;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 0;
    grid-template-columns: 106px 1fr;
    grid-template-rows: auto 1fr;
    margin: 0;
    width: 100%;
  }
  .sec-interview-area .blk-interview:last-child {
    border-bottom: none;
  }
  .sec-interview-area .info-interview {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .sec-interview-area .img-interview {
    grid-column: 1/2;
    grid-row: 1/4;
    height: 96px;
    width: 96px;
  }
  .sec-interview-area .name-interview {
    font-size: 1.6rem;
    margin: 0 10px 8px 0;
  }
  .sec-interview-area .name-interview > span {
    font-size: 1.4rem;
    margin-left: 10px;
    padding: 0 5px;
  }
  .sec-interview-area .date-interview {
    margin: 0 10px 8px 0;
  }
  .sec-interview-area .date-interview > em {
    font-size: 1.6rem;
    font-weight: 600;
  }
  .sec-interview-area .link-funeral {
    display: inline-block;
  }
  .sec-interview-area .link-funeral > a {
    font-size: 1.6rem;
  }
  .sec-interview-area .txt-excerpt {
    font-size: 1.6rem;
  }
  .sec-interview-area .txt-link {
    grid-column: 2/3;
  }
  .sec-interview-area .txt-link::after {
    border-right: solid 2px #0088ce;
    border-top: solid 2px #0088ce;
    height: 8px;
    width: 8px;
  }
  .sec-interview-area .link-interview {
    grid-column: 2/3;
  }
  .sec-interview {
    margin: 0 auto 36px;
    max-width: 1000px;
  }
  .sec-interview .ttl-interview {
    font-size: 2.1rem;
    padding: 10px 0 6px;
  }
  .sec-interview .blk-interview {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
  }
  .sec-interview .list-interview {
    flex-shrink: 1;
    margin: 0 20px 0 0;
    padding: 8px 20px 12px;
    max-width: 560px;
    width: 80%;
  }
  .sec-interview .list-interview::after {
    border-bottom: 18px solid transparent;
    border-left: 14px solid #e5f3fa;
    border-top: 18px solid transparent;
    bottom: calc(50% - 18px);
    left: unset;
    right: -32px;
  }
  .sec-interview .list-interview li {
    font-size: 1.6rem;
    margin-bottom: 10px;
    padding: 0 0 2px 24px;
  }
  .sec-interview .list-interview li::before {
    height: 14px;
    left: 0;
    position: absolute;
    top: 8px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 6px;
  }
  .sec-interview .info-interview {
    flex-shrink: 2;
  }
  .sec-interview .img-interview {
    height: 104px;
    width: 104px;
  }
  .sec-interview .date-interview {
    font-size: 1.4rem;
  }
  .sec-interview .name-interview {
    font-size: 1.6rem;
  }
  .sec-interview .icon-1day {
    font-size: 1.4rem;
  }
  .sec-interview .txt-excerpt {
    font-size: 1.4rem;
  }
  .recommend__item,
.recommend-plan__item {
    width: 320px;
    border: none;
  }
  .recommend-articles {
    box-sizing: border-box;
    overflow: visible;
    margin-left: -10px;
    margin-right: -10px;
  }
  .recommend-articles__item {
    box-sizing: border-box;
    padding: 0 10px;
    float: left;
    width: 196px;
    border-bottom: none;
  }
  .recommend-point {
    margin: 1em 0 0;
    padding: 1em 0.5em;
    background-color: #f2f9fd;
  }
  .recommend-point__body {
    margin: 0.33em 0 0;
  }
  .recommend-point__item {
    text-indent: -1em;
    margin-left: 1em;
  }
  .recommend-detail {
    max-width: 1000px;
  }
  .recommend-detail__header {
    margin: 0 20px 20px;
  }
  .recommend-detail__catch {
    margin: 0 0 0.25em;
    font-size: 1em;
  }
  .recommend-detail__title {
    margin: 0;
    font-size: 1.4285em;
    line-height: 1.4;
  }
  .recommend-detail__main-image {
    margin: 20px auto;
  }
  .recommend-detail__body {
    margin: 0 20px;
  }
  .recommend-detail__meta {
    border-radius: 0 0 4px 4px;
    padding: 5px 20px;
  }
  .recommend-detail-points {
    margin: 0 0 4rem 0;
  }
  .recommend-detail-points__item {
    display: flex;
    margin: 0;
    padding: 20px 0;
    border-bottom: #ccc solid 1px;
  }
  .recommend-detail-points__header {
    margin: 0;
  }
  .recommend-detail-points__sub-title {
    margin: 0;
  }
  .recommend-detail-points__image {
    margin: 0;
    width: 40%;
  }
  .recommend-detail-points__body {
    margin-bottom: 0;
  }
  .recommend-detail-points__text {
    box-sizing: border-box;
    padding-right: 20px;
    width: 60%;
  }
  .recommend-list-inline {
    display: flex;
    align-items: center;
  }
  .recommend-list-inline__title {
    margin: 0;
    padding-right: 15px;
    text-align: left;
    font-size: 1em;
  }
  .recommend-list-inline__body {
    margin: 0;
    font-size: 0.8571em;
    letter-spacing: -0.4em;
  }
  .recommend-list-inline__body > span {
    margin: 5px;
  }
  #aside__ranking--plan .sogi-type-links {
    padding: 0 0 20px;
  }
  #aside__ranking--plan .sogi-type-links .plan-list_search {
    max-width: 480px;
    margin: auto;
  }
  #aside__ranking--plan .sogi-type-links .plan-list_search_item > a {
    font-size: 1.6rem;
  }
  .header {
    display: block;
  }
  .top-slider {
    margin-bottom: 44px;
  }
  .top-slider__item {
    height: 320px;
  }
  .top-slider__inner {
    width: 100%;
    height: 100%;
    max-width: 1000px;
    margin: auto;
  }
  .top-slider .slick-dots {
    bottom: -40px;
    padding-left: 46px;
  }
  .top-slider .slick-dots li {
    margin: 0 7px;
  }
  .top-slider .slick-dots li button:before {
    font-size: 1.4rem;
  }
  .top-slider .top-slider-btn {
    bottom: -47px;
    margin-left: -31px;
  }
  .top-slider .top-slider-btn__tgl::before, .top-slider .top-slider-btn__tgl::after {
    font-size: 3rem;
  }
  .top-slider .first-slide::before {
    content: "";
    display: block;
    width: 50%;
    height: 112px;
    background: linear-gradient(90deg, #1ba0e5 77.12%, rgba(27, 160, 229, 0) 100%);
    position: absolute;
    top: 40px;
    z-index: -1;
  }
  .top-slider .first-slide::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(104deg, #fff 0%, #fff 52.5%, #e5f3fa 47.5%, #e5f3fa 100%);
    position: absolute;
    top: 0;
    z-index: -10;
  }
  .top-slider .first-slide__inner {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
    position: relative;
  }
  .top-slider .first-slide__movie {
    display: block;
  }
  .top-slider .second-slide::before {
    content: "";
    display: block;
    width: 50%;
    height: 65%;
    background: linear-gradient(90deg, #fff 77.12%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 40px;
    z-index: -1;
  }
  .top-slider .second-slide::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #e5f3fa;
    position: absolute;
    top: 0;
    z-index: -10;
  }
  .top-slider .second-slide__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0 16%;
    position: relative;
  }
  .top-slider .second-slide__data {
    display: flex;
  }
  .top-header {
    margin: 0;
  }
  .top-header__hgroup {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 20px;
  }
  .top-introduction__data {
    display: none;
  }
  .top-data {
    grid-column: 2/3;
    justify-content: end;
    gap: 0 20px;
    padding: 0;
    background: transparent;
  }
  .top-data__frame {
    grid-template-rows: repeat(3, auto);
    gap: 10px;
    width: 240px;
    max-width: 240px;
    height: 240px;
    padding: 0;
  }
  .top-data__frame:first-child, .top-data__frame:last-child {
    border-radius: 50%;
  }
  .top-data__frame:first-child::after {
    display: none;
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .top-data__title {
    font-size: 2rem;
    font-weight: bold;
  }
  .top-data__result {
    grid-row: 3/4;
    font-size: 1.8rem;
  }
  .top-data__result em {
    font-size: 2.2rem;
  }
  .top-data__illust {
    display: block;
    grid-row: 2/3;
  }
  .top-data__illust img {
    width: 132px;
  }
  .top-guide-anchor {
    margin-top: 22px;
    padding: 0;
  }
  .top-guide-anchor__button {
    height: 70px;
  }
  .top-search-area {
    box-sizing: border-box;
    margin: 20px auto 0;
    order: 2;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
  }
  .top-search-area .sec_map {
    background: #fff no-repeat 43% 88px/37% url("/assets-web/images/common/map.png");
    border-radius: 4px;
    border-top: 4px solid #1ba0e5;
    box-shadow: 0px 1px 2px 0px rgba(102, 102, 102, 0.5);
    box-sizing: border-box;
    margin: 0 auto 40px;
    min-height: 580px;
    position: relative;
  }
  .top-search-area .sec_map .ttl_search {
    align-items: center;
    border-bottom: 1px solid #e6e6e6;
    box-sizing: border-box;
    display: flex;
    height: 62px;
    margin: 0;
    padding: 0 20px;
  }
  .top-search-area .sec_map .ttl_search::before {
    color: #1ba0e5;
    content: "";
    font-family: "Material Icons";
    font-size: 3rem;
    font-weight: normal;
    margin-right: 8px;
  }
  .top-search-area__list {
    background: transparent;
    border: none;
    -webkit-filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.1));
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    width: 136px;
  }
  .top-search-area__list::after {
    display: none;
  }
  .top-search-area__list--area01 {
    top: 100px;
    right: 5%;
  }
  .top-search-area__list--area01 > li:nth-child(2n) {
    border-left: 1px solid #ccc;
  }
  .top-search-area__list--area01 > li:nth-child(2n+1) {
    border-left: none;
  }
  .top-search-area__list--area01 > li:nth-child(1) {
    border-left: 1px solid #ccc;
    margin: 0 68px 17px 0;
  }
  .top-search-area__list--area01 > li:nth-child(3) {
    border-top: 1px solid #ccc;
  }
  .top-search-area__list--area01 > li:nth-child(n+4) {
    border-top: none;
  }
  .top-search-area__list--area02 {
    top: 270px;
    right: 5%;
  }
  .top-search-area__list--area03 {
    top: 100px;
    right: calc(7% + 136px);
  }
  .top-search-area__list--area04 {
    top: 219px;
    right: calc(7% + 136px);
  }
  .top-search-area__list--area05 {
    top: 100px;
    left: calc(11% + 136px);
  }
  .top-search-area__list--area06 {
    top: 100px;
    left: 9%;
  }
  .top-search-area__list--area07 {
    top: 304px;
    right: calc(7% + 136px);
  }
  .top-search-area__list--area08 {
    top: 219px;
    left: 9%;
  }
  .top-search-area__item {
    background: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
    height: 34px;
    width: 68px;
  }
  .top-search-area__item:nth-child(2n) {
    border-left: none;
  }
  .top-search-area__item:nth-child(n+3) {
    border-top: none;
  }
  .top-search-area__link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.6rem;
    padding: 0;
    align-items: center;
    justify-content: center;
    min-height: 34px;
  }
  .top-search-area__link::after {
    content: none;
  }
  .top-search-area__back {
    display: none;
  }
  .top-search-area .blk_location_pc {
    border-bottom: none;
    border-top: 1px dashed #ccc;
    bottom: 0;
    display: block;
    left: 20px;
    margin: 0;
    position: absolute;
    width: calc(100% - 40px);
  }
  .top-search-area .blk_location_pc .btn_location {
    align-items: center;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 2px 0 0 #e6e6e6;
    box-sizing: border-box;
    color: #333;
    cursor: pointer;
    display: flex;
    font-size: 2rem;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    margin: 20px auto;
    text-decoration: none;
    width: 480px;
  }
  .top-search-area .blk_location_pc .btn_location::before {
    color: #1ba0e5;
    content: "";
    font-family: "Material Icons";
    font-size: 2.8rem;
    font-weight: normal;
    margin-right: 4px;
  }
  .top-search-condition {
    margin-top: 22px;
  }
  .top-search-condition__button {
    position: relative;
    min-height: 70px;
    text-align: left;
    align-items: left;
  }
  .top-search-condition__label {
    padding: 0 0 5px 15px;
    font-size: 1.7rem;
  }
  .top-search-condition__condition {
    padding: 0 24px;
    font-size: 1.4rem;
    font-weight: normal;
  }
  .top-search-condition__icon {
    position: absolute;
    top: 50%;
    right: 10px;
    fill: #1ba0e5;
    width: 1em;
    height: 1em;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .top-category-links__body {
    padding: 20px 15px;
  }
  .top-feature__slider {
    margin: 0 0 30px;
  }
  .top-feature__links {
    margin-bottom: 30px;
  }
  .top-feature__links:last-child {
    margin-bottom: 0;
  }
  .top-feature-slider__item {
    border-top: none;
  }
  .top-feature-slider__item > div {
    padding: 0;
    box-shadow: 0 2px 4px 0 rgba(96, 96, 96, 0.3);
    border-radius: 4px;
  }
  .top-feature-slider__item figure {
    height: auto;
  }
  .top-feature-slider__item .media--card__body {
    padding-left: 10px;
    padding-right: 10px;
  }
  .top-feature-links {
    display: flex;
    flex-wrap: wrap;
  }
  .top-feature-links__item {
    box-sizing: border-box;
    width: 25%;
    font-size: 1.6rem;
    padding: 0 0 15px;
  }
  .top-review {
    margin-top: -20px;
  }
  .top-review__item {
    margin: 0;
    padding: 0;
  }
  .top-review__item:last-child {
    border-bottom: 1px solid #e6e6e6;
  }
  .top-workflow {
    order: 0;
  }
  .top-workflow__list > li:first-child {
    border-top: none;
  }
  .top-relation {
    padding: 12px 24px;
  }
  .top-relation__title {
    margin: 0;
  }
  .top-relation__list {
    padding: 10px 0 6px;
  }
  .top-relation__list > li {
    display: inline-block;
    padding-right: 30px;
  }
  .top-relation__list > li:last-child {
    padding-right: 0;
  }
  .top-conversion {
    display: flex;
    margin: 0;
    padding: 20px 0;
    background-color: #fff;
    justify-items: center;
  }
  .top-conversion__telephone {
    margin: 0 auto;
  }
  .top-conversion__title {
    float: left;
    margin: 0 15px 0 0;
    padding: 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
    line-height: 1.5;
    font-size: 1rem;
  }
  .top-conversion__body {
    overflow: hidden;
    line-height: 1;
    white-space: nowrap;
  }
  .top-conversion__description {
    margin: 0;
    font-size: 1.3rem;
    font-weight: bold;
  }
  .top-conversion__number {
    margin: 0;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #ed702d !important;
    font-family: "Roboto", sans-serif;
    font-size: 3.7rem;
    font-weight: bold;
  }
  .top-conversion__number > .icon {
    vertical-align: -15%;
  }
  .top-conversion__number > .icon svg {
    bottom: 0;
  }
  .top-banners {
    margin-bottom: 25px;
  }
  .top-banners__item {
    margin-bottom: 35px;
  }
  .top-switch-content {
    display: block;
  }
  .top-search-type__unit--small::after {
    right: auto;
  }
  .top-search-type__unit--small {
    border: none;
    box-shadow: none;
  }
  .top-search-type__category .type-category__title::before {
    top: calc(50% - 10px);
    -webkit-transform: translateX(160%);
            transform: translateX(160%);
  }
  .top-search-type__category .type-category__title::after {
    font-size: 24px;
    top: calc(50% - 12px);
    -webkit-transform: translateX(130%);
            transform: translateX(130%);
  }
  .top-search-type__num {
    display: flex;
  }
  .top-search-type .type-unit__family, .top-search-type .type-unit__oneday, .top-search-type .type-unit__cremation {
    margin-right: 0;
    width: calc((100% - 16px) / 3);
  }
  .top-search-type .type-unit__family .top-search-type__data, .top-search-type .type-unit__oneday .top-search-type__data, .top-search-type .type-unit__cremation .top-search-type__data {
    margin: 5px 0;
    padding: 2px 0;
  }
  .top-search-type {
    border-radius: 4px;
    margin: 0 auto 40px;
    max-width: 1000px;
    padding: 0;
  }
  .top-search-type .invisible-pc {
    display: none;
  }
  .top-search-type__list {
    justify-content: space-between;
    padding: 20px;
  }
  .top-search-type__unit {
    height: 96px;
  }
  .top-search-type__category {
    height: 52px;
  }
  .top-search-type__category .type-category__title {
    font-size: 19px;
  }
  .top-feature .g-carousel {
    margin: 0 0 3rem;
  }
  .sec_movie {
    grid-column: 2/3;
    justify-self: center;
    width: 100%;
    max-width: 340px;
    margin: 1.8% 0 0 9%;
    padding: 0;
    background: transparent;
  }
  .sec_movie .lead_movie {
    flex-wrap: wrap;
    margin: 0 0 1.6rem;
    font-size: 2rem;
  }
  .sec_movie .lead_movie::before, .sec_movie .lead_movie::after {
    height: 2.6rem;
  }
  .sec_movie .lead_movie em {
    font-weight: bold;
  }
  .sec_reason {
    border-radius: 4px;
    margin: 0 auto 40px;
    max-width: 1000px;
    padding: 30px 20px 20px;
  }
  .sec_reason .list_reason {
    flex-direction: inherit;
    justify-content: space-between;
    padding-top: 10px;
  }
  .sec_reason .list_reason li {
    width: calc((100% - 90px)/4);
  }
  .sec_reason .list_reason li dl {
    line-height: 1.5;
    margin: 0;
    min-height: auto;
    padding: 0;
    width: 100%;
  }
  .sec_reason .list_reason li dl.reason_01 {
    background: no-repeat center 34px/auto 144px url(/assets-web/images/common/img_reason_01.png);
  }
  .sec_reason .list_reason li dl.reason_02 {
    background: no-repeat center 34px/auto 144px url(/assets-web/images/common/img_reason_02.png);
  }
  .sec_reason .list_reason li dl.reason_03 {
    background: no-repeat center 34px/auto 144px url(/assets-web/images/common/img_reason_03.png);
  }
  .sec_reason .list_reason li dl.reason_04 {
    background: no-repeat center 34px/auto 144px url(/assets-web/images/common/img_reason_04.png);
  }
  .sec_reason .list_reason li dl dt {
    margin-bottom: 154px;
    text-align: center;
  }
  .sec_reason .list_reason li dl dd {
    font-size: 1.6rem;
  }
  .blk_bnr {
    display: block;
    margin: 0 auto 40px;
    padding: 0;
    max-width: 1000px;
    width: calc(100% - 40px);
  }
  .blk_bnr img {
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 1000px;
    width: 100%;
  }
  .modal__container {
    margin: 0;
    min-width: 600px;
    max-width: 800px;
    width: auto;
  }
  .modal__header {
    padding: 20px 40px 20px 20px;
  }
  .modal__title {
    font-size: 1.6rem;
  }
  .modal__close {
    font-size: 1.8rem;
  }
  .modal__body {
    max-height: calc(100vh - 210px);
  }
  .modal__close {
    right: 18px;
  }
  .modal__footer {
    text-align: center;
  }
  .modal--rank {
    display: none;
  }
  #modal_guarantee .modal__body {
    padding: 0 20px;
  }
  .modal.modal_individual .modal__container h2 {
    border: none;
    height: auto;
    line-height: 1.5;
  }
  .modal.modal_individual .modal__body {
    padding: 16px 16px 25px 16px;
  }
  .modal.modal_individual .individual_itemwrap {
    display: flex;
  }
  .modal.modal_individual .list-data {
    font-size: 1.6rem;
  }
  .modal.modal_individual .list-data__item {
    display: inline-flex;
    margin-right: 18px;
  }
  .modal.modal_individual .individual_price {
    width: 408px;
    margin-right: 12px;
    margin-bottom: 0;
  }
  .modal.modal_individual .individual_price__price-type {
    font-size: 1.6rem;
  }
  .modal.modal_individual .individual_price__price-num {
    padding: 5px 3px;
    font-size: 1.6rem;
  }
  .modal.modal_individual .individual_price__price-num em {
    font-size: 2.4rem;
  }
  .modal.modal_individual .individual_feature {
    width: 361px;
  }
  .modal.modal_individual .individual_feature .state {
    justify-content: normal;
    width: 100%;
    margin-top: -3px;
  }
  .modal.modal_individual .individual_feature .state__item {
    flex: initial;
    width: calc((100% - (3px * 3)) / 4);
    height: 40px;
    margin-top: 3px;
    margin-right: 3px;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .modal.modal_individual .individual_feature .state__item:nth-of-type(4n) {
    margin-right: 0;
  }
  .modal_tag-list .modal__title {
    font-size: 1.7rem;
  }
  .modal_tag-list .modal__close {
    width: 40px;
    height: 40px;
  }
  .modal_tag-list .modal__close .icon {
    height: 40px;
  }
  .modal_tag-list .modal__body {
    padding: 1.5em 3em 2em;
  }
  .modal.modal_area {
    top: 37%;
    -webkit-transform: translate(-50%, -37%);
            transform: translate(-50%, -37%);
  }
  .modal.modal_area .modal__container {
    height: 75vh;
    width: 816px;
  }
  .modal.modal_area .modal__container h2 {
    border-bottom: 1px solid #ccc;
    font-size: 1.7rem;
    height: 64px;
    line-height: 64px;
  }
  .modal.modal_area .modal__container .btn_close {
    cursor: pointer;
    -webkit-font-feature-settings: "liga";
            font-feature-settings: "liga";
    font-size: 2.8rem;
    height: 40px;
    line-height: 40px;
    right: 18px;
    text-rendering: optimizeLegibility;
    width: 40px;
  }
  .modal.modal_area .modal__container .blk_select {
    border-bottom: 1px solid #ccc;
    max-height: calc(100vh - 200px);
    overflow-x: hidden;
    overflow-y: auto;
  }
  .modal.modal_area .modal__container .blk_select .link_change {
    font-size: 1.6rem;
    height: 56px;
  }
  .modal.modal_area .modal__container .blk_select .link_change::before {
    font-size: 2rem;
  }
  .modal.modal_area .modal__container .blk_select h3 {
    font-size: 1.8rem;
    height: 56px;
    line-height: 56px;
  }
  .modal.modal_area .modal__container .blk_select .ttl_kana {
    display: block;
    font-size: 1.7rem;
    height: 40px;
    line-height: 40px;
    position: relative;
  }
  .modal.modal_area .modal__container .blk_select .list_city {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -2px;
  }
  .modal.modal_area .modal__container .blk_select .list_city li {
    width: 25%;
  }
  .modal.modal_area .modal__container .blk_select .list_city li label::after {
    display: none;
  }
  .modal.modal_area.area_pref .area_pref__title {
    height: 64px;
    line-height: 64px;
  }
  .modal.modal_area.area_pref .list_city li:nth-child(2n+1) {
    border-right: none;
  }
  .modal.modal_area.area_city .area_city__title {
    height: 64px;
    line-height: 64px;
  }
  .modal.modal_area .co-content-emergency .top-emergency h2 {
    font-size: 2.4rem;
  }
  .modal.modal_area .co-content-emergency .top-emergency .number {
    color: #d6395e;
    font-family: Roboto, sans-serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 54px;
    margin: 0;
    text-align: center;
  }
  .modal.modal_area .co-content-emergency .top-emergency__lead {
    font-size: 1.8rem;
  }
  .modal.modal_area .co-content-emergency .top-emergency .appending {
    color: #d6395e;
    font-size: 2.4rem;
    margin: 0 0 10px;
    text-align: center;
  }
  .modal.modal_area .co-content-emergency .top-emergency .area-jpx-md {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 auto;
    text-align: left;
    width: 70%;
  }
  .modal.modal_area .co-content-emergency .top-emergency .area-jpx-md > figure {
    margin: 0 4px 0 0;
  }
  .modal.modal_area .co-content-emergency .top-emergency .area-jpx-md > figure > img {
    height: auto;
    width: 48px;
  }
  .modal.modal_area .co-content-emergency .top-emergency .area-jpx-md > .txt-jpx {
    align-items: center;
    display: inline-flex;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
  }
  .modal.modal_area .co-content-emergency .area-jpx-xs {
    display: none;
  }
  .modal.modal_area .co-content-emergency .intro-emergency {
    background: #f2f9fd;
    border-radius: 5px;
    border: 2px solid #1ba0e5;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 20px 20px;
    max-width: 760px;
    padding: 20px 10px 20px 40px;
  }
  .modal.modal_area .co-content-emergency .intro-emergency h2 {
    font-size: 2.4rem;
    text-align: center;
  }
  .modal.modal_area .co-content-emergency .intro-emergency__text {
    margin: 0 0 10px 18px;
    text-indent: -9px;
  }
  .modal.modal_area .co-content-emergency .intro-emergency__text > i {
    color: #1ba0e5;
    font-size: 1.8rem;
    vertical-align: text-bottom;
  }
  .modal.modal_card-price .modal__container h2 {
    height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    line-height: 1.5;
  }
  .modal.modal_card-price p {
    font-size: 1.6rem;
  }
  .modal.modal_card-price .modal__body {
    max-width: 680px;
    margin: auto;
    padding: 12px 20px;
  }
  .modal.modal_card-price .blk_price-text {
    padding-top: 10px;
  }
  .modal.modal_card-price .blk_price-text p strong {
    font-size: 2rem;
  }
  .modal.modal_card-price .blk_price-text p strong span {
    font-size: 2.8rem;
  }
  .modal.modal_card-price .blk_info {
    margin-top: 16px;
    margin-bottom: 20px;
  }
  .modal.modal_card-price .blk_flow {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .modal.modal_card-price .blk_flow figcaption.visible-md {
    margin-right: 5px;
  }
  .modal.modal_card-price .blk_flow img {
    max-width: 401px;
    margin: 0;
  }
  .modal.modal_card-price .blk_chose-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .modal.modal_card-price .blk_chose-person h3 {
    margin-bottom: 12px;
  }
  .modal.modal_card-price .blk_chose-person ul li:not(:last-child) {
    margin-bottom: 8px;
  }
  .modal.modal_card-price .blk_plan-number {
    padding-top: 20px;
  }
  .modal.modal_card-price .blk_plan-number p span {
    font-size: 1.6rem;
  }
  .modal.modal_card-price .blk_cta .fixedbox__body {
    padding: 12px 20px;
  }
  .modal.modal_card-price .blk_cta .fixedbox__body ul {
    display: flex;
    max-width: 680px;
    margin: auto;
  }
  .modal.modal_card-price .blk_cta .fixedbox__item > a {
    height: 48px;
  }
  .modal.modal_card-price .blk_cta .fixedbox__item > a .material-icons {
    font-size: 2.6rem;
    top: auto;
    left: 9%;
  }
  .modal.modal_card-price .blk_cta .fixedbox__item:first-child, .modal.modal_card-price .blk_cta .fixedbox__item:last-child {
    width: 100%;
  }
  .modal.modal_card-price .blk_cta .fixedbox__item:first-child {
    max-width: none;
    margin-bottom: 0;
  }
  .modal.modal_card-price .blk_cta .fixedbox__item:last-child {
    max-width: 315px;
  }
  .modal.modal_card-price .blk_cta .fixedbox__item:last-child .material-icons {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .modal.modal_card-price .blk_cta .fixedbox__item:last-child .fixedbox__text {
    margin: 0;
    text-align: left;
    width: auto;
  }
  .modal.modal_card-price .blk_cta .fixedbox__tell-area {
    justify-content: flex-start;
    padding: 0;
  }
  .modal.modal_card-price .blk_cta .fixedbox__tell-area::before {
    display: none;
  }
  .modal.modal_card-price .blk_cta .fixedbox__tell-area > dd {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-left: 0;
  }
  .modal.modal_card-price .blk_cta .fixedbox__tell-area p {
    font-size: 1.4rem;
  }
  .modal.modal_card-price .blk_cta .fixedbox__tell-area p:last-child {
    font-size: 4rem;
    line-height: 1.1;
  }
  .modal.modal_card-price .blk_cta .fixedbox__tell-area p .material-icons {
    font-size: 4rem;
    top: 3px;
    left: -3px;
  }
  .modal.modal_card-price .blk_cta .fixedbox__text {
    width: 100%;
  }
  .modal.plan-modal .item_plan {
    padding: 15px 0;
  }
  .modal.plan-modal .item_plan .wrap_plan-info h3 {
    font-size: 1.6rem;
  }
  .modal.plan-modal .item_plan .wrap_plan-info .price_plan em {
    font-size: 2.4rem;
  }
  .modal.plan-modal .item_plan img {
    height: 90px;
    width: 120px;
  }
  .modal.plan-modal .blk_cta .fixedbox__body {
    padding: 12px 20px;
  }
  .modal.plan-modal .blk_cta .fixedbox__item:last-child {
    max-width: 260px;
  }
  .modal.plan-modal .blk_cta .fixedbox__item:last-child .material-icons {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .modal.plan-modal .blk_cta .fixedbox__item:last-child .fixedbox__text {
    margin: 0;
    text-align: left;
    width: auto;
  }
  .modal.plan-modal .catch_cta {
    margin: 15px 0 0;
  }
  .modal.modal_co_plan {
    overflow-y: hidden;
  }
  .modal.modal_co_plan .modal__container {
    height: 75vh;
  }
  .modal.modal_co_plan .modal__container .modal__body {
    max-height: calc(100% - 11rem);
  }
  .header--about .header__telephone {
    margin: 8px 0;
  }
  .wrap-top {
    padding-bottom: 40px;
  }
  .top_about {
    padding-bottom: 40px;
  }
  .top_about h1 {
    font-size: 3.2rem;
  }
  .top_about img {
    max-width: 1000px;
    margin-bottom: 0;
  }
  .top_about p {
    margin-top: 20px;
  }
  .about_e-sogi iframe {
    width: 720px;
  }
  .content-about h2,
.usage_e-sogi h2 {
    font-size: 2.8rem;
  }
  .features_about {
    margin: 0 auto;
    max-width: 1000px;
  }
  .features_list {
    align-items: flex-start;
    display: flex;
    gap: 20px;
    padding: 0;
    max-width: 1000px;
    width: 100%;
  }
  .features_item {
    border-radius: 16px;
    box-shadow: 0px 4px 4px 4px rgba(0, 0, 0, 0.16);
    margin-bottom: 0;
    padding: 10px 0 15px;
  }
  .features_item span {
    font-size: 1.8rem;
    padding: 3px 8px;
  }
  .features_item p {
    font-size: 2rem;
  }
  .features_item::after {
    width: 20px;
    height: 20px;
  }
  .section_point {
    box-sizing: border-box;
    margin: 40px auto;
    padding: 30px 40px 40px;
  }
  .section_point .wrap_point {
    padding-top: 160px;
    margin-top: -160px;
  }
  .section_point p {
    text-align: center;
  }
  .p_label {
    font-size: 2rem;
  }
  .wrap_number {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
  }
  .wrap_number img {
    max-width: 480px;
    margin: 0;
  }
  .number_about {
    display: block;
    flex-grow: 1;
  }
  .number_about div {
    box-sizing: border-box;
    height: 96px;
    margin-bottom: 15px;
    max-width: 400px;
    padding: 0 20px;
    width: 100%;
  }
  .number_about div dd span {
    font-size: 2.8rem;
  }
  .img_p2 {
    max-width: 640px;
    width: 64%;
  }
  .survey_result {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  .survey_result p {
    font-size: 1.7rem;
    margin: 0;
  }
  .survey_result img {
    height: 96px;
    width: auto;
    margin: 0;
  }
  .img_p3 {
    width: 40%;
  }
  .notes_link {
    margin: -30px auto 30px;
    max-width: 1000px;
  }
  .usage_e-sogi {
    padding-top: 64px;
  }
  .usage_e-sogi .section {
    max-width: 1000px;
    padding: 0;
  }
  .usage_e-sogi h3 {
    font-size: 2.2rem;
  }
  .usage_e-sogi h4 {
    font-size: 1.8rem;
  }
  .wrap_shindan img {
    max-width: 800px;
  }
  .wrap_shindan .btn_shindan {
    width: 40%;
  }
  .wrap_search .top-search-type__list {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 0;
  }
  .wrap_search .top-search-type__unit {
    width: 100%;
  }
  .wrap_search .type-unit__family .invisible-pc {
    display: none;
  }
  .wrap_search .type-unit__oneday {
    width: 100%;
    margin-right: 0;
  }
  .wrap_search .type-unit__cremation {
    width: 100%;
  }
  .wrap_search .top-search-area .sec_map .top-search-area__link {
    font-size: 1.6rem;
    min-height: 0;
  }
  .wrap_search .top-search-area .sec_map {
    border-radius: 10px;
    border: 1px solid #efefef;
    box-shadow: 0px 1px 2px 0px rgba(102, 102, 102, 0.5);
    background-position-y: 20px;
    min-height: 500px;
    margin-bottom: 20px;
  }
  .wrap_search .top-search-area__list--area01, .wrap_search .top-search-area__list--area03, .wrap_search .top-search-area__list--area05, .wrap_search .top-search-area__list--area06 {
    top: 50px;
  }
  .wrap_search .top-search-area__list--area02 {
    top: calc(50px + 170px);
  }
  .wrap_search .top-search-area__list--area04 {
    top: calc(50px + 119px);
  }
  .wrap_search .top-search-area__list--area07 {
    top: calc(50px + 204px);
  }
  .wrap_search .top-search-area__list--area08 {
    top: calc(50px + 119px);
  }
  .wrap_guide {
    padding: 0 0 80px;
  }
  .wrap_guide .h_guide,
.wrap_guide section {
    max-width: 1000px;
    border-radius: 0;
  }
  .wrap_guide section {
    margin-bottom: 0;
  }
  .wrap_guide .h_guide {
    font-size: 2.2rem;
  }
  .wrap_guide .section__title {
    font-size: 1.8rem;
    border-radius: 0;
    margin: 1rem 0;
  }
  .wrap_cv {
    background-color: #fff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding: 0 0 8px;
    position: relative;
  }
  .wrap_cv .baloon_cv {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 10px 0;
  }
  .wrap_cv .baloon_cv::after {
    content: none;
  }
  .wrap_cv .baloon_cv p {
    font-size: 1.8rem;
    margin: 0;
  }
  .wrap_cv .cv_btn_list {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 16px 0 2px 0;
    width: 100%;
  }
  .wrap_cv .cv_btn_item a {
    width: 100%;
    min-width: 320px;
  }
  .wrap_cv .cv_btn_item a .main_txt p {
    font-size: 1.8rem;
  }
  .wrap_cv .cv_btn_item a .sub_txt {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1040px){
  .top-slider__item {
    height: 300px;
  }
  .top-slider .first-slide::before {
    width: 48%;
  }
  .top-slider .first-slide__inner {
    gap: 0 26%;
  }
  .top-slider .first-slide__info {
    margin-top: 59px;
    margin-left: 20px;
  }
  .top-slider .first-slide__title {
    font-size: 2.4rem;
  }
  .top-slider .first-slide__title span {
    font-size: 3rem;
  }
  .top-slider .first-slide__lead {
    font-size: 1.8rem;
  }
  .top-slider .first-slide__cheapest {
    font-size: 1.8rem;
  }
  .top-slider .first-slide__price strong {
    font-size: 6.6rem;
  }
  .top-slider .first-slide__price strong span {
    font-size: 4.6rem;
  }
  .top-slider .first-slide__tax {
    font-size: 1.4rem;
  }
  .top-slider .first-slide__yen {
    margin-bottom: -15px;
    font-size: 2rem;
  }
  .top-slider .first-slide__operator {
    left: 32%;
  }
  .top-slider .first-slide__operator img {
    width: 215px;
  }
  .top-slider .second-slide::before {
    top: 50px;
  }
  .top-slider .second-slide__description {
    margin-top: 65px;
    margin-left: 20px;
  }
  .top-slider .second-slide__text {
    font-size: 2.2rem;
  }
  .top-slider .second-slide__text em {
    font-size: 2.6rem;
  }
  .top-slider .second-slide__consultation {
    font-size: 2rem;
  }
  .top-slider .second-slide__operator {
    left: 32.5%;
  }
  .top-slider .second-slide__operator img {
    width: 165px;
  }
  .top-data {
    justify-content: center;
    gap: 0 10px;
  }
  .top-data__frame {
    gap: 0;
    width: 180px;
    max-width: 180px;
    height: 180px;
  }
  .top-data__title {
    font-size: 1.8rem;
  }
  .top-data__result {
    font-size: 1.6rem;
  }
  .top-data__result em {
    font-size: 2rem;
  }
  .top-data__illust img {
    width: 102px;
  }
  .top-search-area .sec_map {
    background: #fff no-repeat 38% 100px/34% url("/assets-web/images/common/map.png");
    min-height: 540px;
  }
  .top-conversion__title {
    margin-right: 5px;
    padding: 8px 4px;
  }
  .top-conversion__description {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
  }
  .top-conversion__number {
    letter-spacing: 0;
    font-size: 3rem;
  }
  .top-search-type {
    width: calc(100% - 40px);
  }
  .sec_movie {
    justify-self: end;
    margin-left: 0;
    margin-right: 20px;
  }
  .sec_movie .lead_movie {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
  .sec_reason {
    width: calc(100% - 40px);
  }
  #modal-kodawari {
    height: 70%;
  }
  .modal.modal_area {
    top: 30%;
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
  }
  .modal.modal_area .modal__container {
    height: 60rem;
    width: 80%;
  }
  .modal.modal_area .modal__container .modal__body {
    height: 37rem;
  }
  .modal.modal_co_plan .modal__container {
    height: 75vh;
  }
  .modal.modal_co_plan .modal__container .modal__body {
    height: auto;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1040px){
  .top-slider .first-slide::after {
    background: linear-gradient(104deg, #fff 0%, #fff 50.5%, #e5f3fa 49.5%, #e5f3fa 100%);
  }
}

@media screen and (min-width: 1024px){
  #aside__ranking--plan .recommend-list {
    overflow-x: hidden;
    padding: 0;
  }
  #aside__ranking--plan .recommend-list li {
    margin: 0 0 0.5rem 0;
    width: 32.5%;
    min-width: 32.5%;
  }
  .wrap_number img {
    margin-right: 56px;
  }
  .wrap_cv::after {
    background: url(/assets-web/images/about/operator.png) bottom no-repeat;
    background-size: 100% auto;
    bottom: 0;
    content: "";
    display: block;
    left: 2rem;
    position: absolute;
    top: 0;
    width: 14%;
  }
  .wrap_cv .cv_btn_list {
    margin-left: 30px;
  }
}

@media screen and (min-width: 1280px) and (max-height: 800px){
  .modal.modal_area {
    top: 30%;
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
  }
  .modal.modal_area .modal__container {
    height: 73vh;
    width: 816px;
  }
}

@media screen and (max-width: 767px){
  .recommend-detail-points figure.visible-md {
    display: block !important;
  }
  .recommend-list,
.sogi-list,
.case-list {
    display: block;
    flex-wrap: inherit;
    padding: 0 2rem 0 0;
  }
  .recommend-list h3,
.sogi-list h3,
.case-list h3 {
    margin: 0 0 2rem 0;
  }
  .recommend-list li,
.sogi-list li,
.case-list li {
    width: 100% !important;
  }
  .recommend-list li:first-child .list-inr,
.sogi-list li:first-child .list-inr,
.case-list li:first-child .list-inr {
    padding: 0 2rem 2rem 0;
  }
  .recommend-list .list-inr,
.sogi-list .list-inr,
.case-list .list-inr {
    margin: 0;
    padding: 2rem 0.5rem 2rem 0;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: #ccc solid 1px;
  }
  .recommend-list .list-inr::after,
.sogi-list .list-inr::after,
.case-list .list-inr::after {
    right: -1rem;
  }
  .recommend-list figure,
.sogi-list figure,
.case-list figure {
    width: 33%;
  }
  .recommend-list figcaption,
.sogi-list figcaption,
.case-list figcaption {
    width: 67%;
    padding: 0 0 0 1rem;
  }
  .recommend-list p,
.sogi-list p,
.case-list p {
    margin: 0;
  }

  .recommend-list h3 {
    margin: 1rem 0 2rem 0 !important;
  }
}

@media screen and (max-width: 479px){
  .modal.modal_area .modal__container h2 {
    height: inherit;
    line-height: 1.4;
    text-align: left;
    padding: 1rem 4.2rem 1rem 1rem;
  }
}

@media screen and (max-width: 359px){
  .slider-map {
    max-width: 300px;
  }
  .slider-map .slick-slide {
    padding: 5px 0;
  }
  .hallToList__bg {
    padding: 10px 10px 1px;
  }
  .hallToList__btn {
    margin: 6px 0;
  }
  .top-guide-anchor__button {
    font-size: 1.6rem;
  }
  .top-search-type__category p {
    font-size: 1.2rem;
  }
  .top-search-type .type-unit__family .top-search-type__data .invisible-pc {
    display: none;
  }
  .modal.modal_area .modal__container .modal__body {
    max-height: calc(100vh - 336px);
  }
  .wrap_search .top-search-type__unit p {
    font-size: 1.2rem;
  }
  .wrap_search .top-search-type__unit .top-search-type__data .top-search-type__num dt {
    font-size: 1.2rem;
  }
}
