@charset "UTF-8";
/*
/* Mixin
/*
----------------------------------------------------------------- */

.bg-orange {
  background: #f06803;
  background: -webkit-linear-gradient(
    left,
    #f06803 0%,
    #ff9000 50%,
    #f06803 100%
  );
  background: linear-gradient(to right, #f06803 0%, #ff9000 50%, #f06803 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f06803', endColorstr='#f06803',GradientType=1 );
}

@media screen and (max-width: 768px) {
  .bg-orange {
    background: #f06803;
    background: -webkit-linear-gradient(
      left,
      #f06803 0%,
      #ff9000 30%,
      #ff9000 70%,
      #f06803 100%
    );
    background: linear-gradient(
      to right,
      #f06803 0%,
      #ff9000 30%,
      #ff9000 70%,
      #f06803 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f06803', endColorstr='#f06803',GradientType=1 );
  }
}

.bg-orange > * {
  color: #fff;
}

.cv-fixed {
  position: fixed;
  top: 30vh;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-right: 10px;
  height: 0;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .cv-fixed {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: inherit;
    -ms-flex-flow: inherit;
    flex-flow: inherit;
    top: auto;
    bottom: 0;
    height: auto;
    background: #f2f2f2;
    padding: 10px 5px;
    z-index: 10;
    opacity: 0; /*稲村編集箇所*/
  }
  .cv-fixed2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: inherit;
    -ms-flex-flow: inherit;
    flex-flow: inherit;
    top: auto;
    bottom: 0;
    height: auto;
    background: #f2f2f2;
    padding: 10px 5px;
    z-index: 10;
    opacity: 0; /*稲村編集箇所*/
  }
}

.cv-fixed__btn {
  margin: 5px 0;
}

@media screen and (max-width: 768px) {
  .cv-fixed__btn {
    width: 100%;
    padding: 5px;
  }
}

.cv-fixed__btn a {
  font-weight: bold;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70px;
  height: 180px;
  border-radius: 5px;
  font-size: 2rem;
  line-height: 1.2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #2c3af6;
  color: #fff;
  text-decoration: none;
  text-align: center;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cv-fixed__btn a:hover {
  background: #111dc4;
}

@media screen and (max-width: 992px) {
  .cv-fixed__btn a {
    font-size: 1.6rem;
    width: 50px;
    height: 160px;
  }
}

@media screen and (max-width: 768px) {
  .cv-fixed__btn a {
    height: 50px;
    width: 100%;
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
  }
}

.cv-merit {
  background: #f9f9f9;
  box-shadow: 0px 2px 8px 0px rgba(53, 53, 53, 0.2);
  margin-bottom: 50px;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .cv-merit {
    padding: 0;
    margin-bottom : 120px;
  }
}

.cv-merit > * {
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .cv-merit > * {
    padding: 20px 15px 40px;
    margin: 0 0 -70px;
  }
}

.cv-merit__ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 0.1em;
}

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

.cv-merit__reservation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px -10px 20px;
}

@media screen and (max-width: 768px) {
  .cv-merit__reservation {
    margin: 0;
    display: block;
  }
}

.cv-merit__reservation > * {
  width: 50%;
  padding: 10px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .cv-merit__reservation > * {
    width: 100%;
    padding: 0;
  }
}

.cv-merit__reservation > * a {
  width: 100%;
}

.cv-merit__reservation__btn a {
  position: relative;
  padding: 0;
  text-align: center;
  margin-bottom: 1.5rem;
  width: 380px;
  height: 70px;
  border-radius: 5px;
  box-shadow: none;
  background: #003af6;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}

.cv-merit__reservation__btn a:hover {
  top: 2px;
  background: #121ecb;
}

.cv-merit__reservation__btn a:before {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  color: #fff;
  width: 70px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 64px;
  font-size: 4rem;
  border-right: 1px solid #5a65ff;
}

.cv-merit__reservation__btn a span {
  display: inline-block;
  vertical-align: middle;
  font-size: 2.3rem;
  line-height: 70px;
  margin-top: 1px;
  /* margin-right: 68px; */
}

.cv-merit__reservation__btn a span.-label {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  height: 30px;
  width: 50px;
  background: #0e15a8;
  font-size: 1.4rem;
  padding-top: 9px;
  border-radius: 5px;
  line-height: 1;
}

.cv-merit__reservation__btn.shop a:before {
  font-family: "icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}

.cv-merit__reservation__btn.movie a:before {
  font-family: "icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}

@media screen and (max-width: 768px) {
  .cv-merit__item {
    padding: 30px 0 40px;
  }
  .cv-merit__item + .cv-merit__item {
    border-top: 2px solid #8c8c8c;
  }
}

.cv-merit__item__inner {
  padding: 30px;
  background: #fff;
  }

@media screen and (max-width: 768px) {
  .cv-merit__item__inner {
    padding: 0;
    background: none;
  }
}

.cv-merit__item .cv__reservation__btn a {
  width: 100%;
  margin-bottom: 0;
}

.cv-merit__item__ttl {
  color: #ed6103;
  font-weight: bold;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .cv-merit__item__ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 373px) {
  .cv-merit__item__ttl {
    font-size: 2.4rem;
  }
}

.cv-merit__item__list {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .cv-merit__item__list {
    margin-bottom: 20px;
  }
}

.cv-merit__item__list > * {
  width: 100%;
  padding-left: 40px;
  font-size: 1.8rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  position: relative;
}

@media screen and (max-width: 768px) {
  .cv-merit__item__list > * {
    padding-left: 30px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 373px) {
  .cv-merit__item__list > * {
    font-size: 1.3rem;
  }
}

.cv-merit__item__list > * strong {
  font-weight: bold;
  /* color: $color-assort; */
}

.cv-merit__item__list > * + * {
  margin-top: 0.5em;
}

.cv-merit__item__list > *:before {
  content: "";
  width: 33px;
  height: 29px;
  background: url("/assets/common/icon_check-b87de5b1.png") left top no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -0.1em;
}

@media screen and (max-width: 768px) {
  .cv-merit__item__list > *:before {
    width: 22px;
    height: 19px;
  }
}

.cv-merit__tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cv-merit__tel__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 0.5em;
}

.cv-merit__tel__detail {
  position: relative;
  padding-right: 60px;
}

.cv-merit__tel__detail a {
  text-decoration: none;
  font-size: 3.4rem;
  font-weight: bold;
  color: #ed6103;
}

.cv-merit__tel__type {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  color: #ed6103;
  background: #fff;
  border: 1px solid #ed6103;
  border-radius: 5px;
  padding: 0.1em 0.5em;
  font-weight: bold;
}

.cv-merit .cv__tel {
  margin-top: 0;
}

.cv {
  background: #f9f9f9;
  box-shadow: 0px 2px 8px 0px rgba(53, 53, 53, 0.2);
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .cv {
    margin-bottom: 50px;
  }
}

.cv > * {
  padding: 30px 0;
  max-width: 790px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .cv > * {
    padding: 20px 15px 30px;
  }
}

.cv__ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 0.1em;
}

@media screen and (max-width: 768px) {
  .cv__ttl {
    font-size: 3rem;
  }
}

.cv__detail {
  text-align: center;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .cv__detail {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: bold; /*稲村編集箇所←*/
  }
  /* 稲村編集箇所↓ */
  .cv__detail--under {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  /* 稲村編集箇所↑ */
}
@media screen and (max-width: 373px) {
  /* 稲村編集箇所↓ */
  .cv__detail--under {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.4;
  }
  /* 稲村編集箇所↑ */
}
.cv__kinnkyuujitai {
  margin-top: 2%;
  text-align: center;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .cv__kinnkyuujitai {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.cv__reservation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: center;
  margin: 0 -15px;
}

@media screen and (max-width: 768px) {
  .cv__reservation {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.cv__reservation > * {
  width: 50%;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .cv__reservation > * {
    width: 100%;
  }
}

.cv__reservation > * a {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .cv__reservation > *.movie {
    padding-top: 5px;
  }
}

.cv__reservation__btn a {
  position: relative;
  padding: 0;
  text-align: center;
  height: 70px;
  border-radius: 5px;
  box-shadow: none;
  background: #003af6;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
}

@media screen and (max-width: 768px) {
  .cv__reservation__btn a {
    height: 60px;
  }
}

.cv__reservation__btn a:hover {
  top: 2px;
  background: #121ecb;
}

.cv__reservation__btn a:before {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  color: #fff;
  width: 70px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 64px;
  font-size: 4rem;
  border-right: 1px solid #5a65ff;
}

@media screen and (max-width: 768px) {
  .cv__reservation__btn a:before {
    font-size: 54.4px;
    font-size: 3.4rem;
    width: 60px;
  }
}

.cv__reservation__btn a span {
  display: inline-block;
  vertical-align: middle;
  font-size: 2.3rem;
  line-height: 70px;
  margin-top: 1px;
}

@media screen and (max-width: 900px) {
  .cv__reservation__btn a span {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .cv__reservation__btn a span {
    line-height: 60px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 373px) {
  .cv__reservation__btn a span {
    font-size: 1.6rem;
  }
}

.cv__reservation__btn a span.-label {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  height: 30px;
  width: 50px;
  background: #0e15a8;
  font-size: 1.4rem;
  padding-top: 9px;
  border-radius: 5px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .cv__reservation__btn a span.-label {
    padding-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
    height: 25px;
    width: 40px;
  }
}

.cv__reservation__btn.shop a:before {
  font-family: "icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	content: "";
}
.cv__reservation__btn.shop a::after{
  content: "";
  display: block;
  background-image: url("/assets/common/icon_top_cta_1-3c9eef69.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
}

.cv__reservation__btn.movie a:before {
  font-family: "icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	content: "";
}
.cv__reservation__btn.movie a::after{
  content: "";
  display: block;
  background-image: url("/assets/common/icon_video-b4b217ba.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
}
@media screen and (max-width:768px){
	.cv__reservation__btn.shop a::after,
  .cv__reservation__btn.movie a::after {
    width: 32px;
		height: 32px;
		left: 15px;
	}
}
.cv__tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  line-height: 1;
}

.cv__tel__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 0.5em;
  line-height: 1;
}

.cv__tel__detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-right: 60px;
  line-height: 1;
}

.cv__tel__detail a {
  text-decoration: none;
  font-size: 3.4rem;
  font-weight: bold;
  color: #ed6103;
}

.cv__tel__type {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  color: #ed6103;
  background: #fff;
  border: 1px solid #ed6103;
  border-radius: 5px;
  padding: 0.3em 0.5em;
  font-weight: bold;
  line-height: 1;
}

.cv__tel__cauti {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  margin-right: 0.5em;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 25px;
}

.cv__tel__sp {
  text-align: center;
  background: #fff;
  border: 1px solid #a7abad;
  border-radius: 5px;
  padding: 10px 5px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 5px;
}

.cv__tel__sp a {
  font-size: 1.8rem;
  text-decoration: none;
  color: #ed6103;
}

.cv__tel__sp__label {
  margin-left: 5px;
  padding: 0.4em 0.5em;
  color: #ed6103;
  border: 1px solid #ed6103;
  border-radius: 100px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .cv__cauti {
    font-size: 1rem;
    text-align: left;
    font-weight: bold;
    line-height: 1.5;
  }
  .cv__tel__cauti {
    margin-top: 0px;
  }
}

_:-ms-lang(x)::-ms-backdrop,
.cv__tel__ttl {
  margin-bottom: 10px;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 992px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}

/* .-dcmsadm #modal-shops,
.-dcmsadm .mod-faq-v2 .item .a {
  display: block !important;
} */

#tinymce #modal-shops {
  display: block !important;
}

#tinymce #modal-shops .hidden__pc,
#tinymce #modal-shops .hidden__sp {
  display: block !important;
}

#tinymce #modal-shops .ui-modal-body {
  max-height: none !important;
}

#tinymce .mod-faq-v2 .item .a {
  display: block !important;
}

.entry {
  background: #f9f9f9;
  padding-bottom: 70px;
}

.entry__ttl {
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .entry__ttl {
    text-align: left;
  }
}

.entry__ttl > * {
  display: inline-block;
}

.entry__ttl__type {
  color: #fff;
  background: #ed6103;
  font-size: 3.4rem;
  padding: 0.6em;
  font-weight: bold;
  margin-right: 15px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .entry__ttl__type {
    padding: 0.2em 0.4em;
    line-height: 1;
    font-size: 2.6rem;
  }
}

.entry__ttl__main {
  font-weight: bold;
  font-size: 3.8rem;
  padding-top: 10px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .entry__ttl__main {
    margin-top: 10px;
    font-size: 3.4rem;
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 373px) {
  .entry__ttl__main {
    font-size: 3rem;
  }
}

.entry__detail {
  line-height: 1.6;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .entry__detail {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 373px) {
  .entry__detail {
    font-size: 1.4rem;
  }
}

.entry__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -10px;
}

@media screen and (max-width: 768px) {
  .entry__list {
    margin: 0;
    display: block;
  }
}

.entry__item {
  width: 33.3333%;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .entry__item {
    padding: 0;
    width: 100%;
  }
  .entry__item + .entry__item {
    margin-top: 40px;
  }
}

.entry__item__inner {
  border-radius: 5px;
  padding: 20px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .entry__item__inner {
    width: 100%;
  }
}

.entry__item__ttl {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  margin-bottom: 20px;
}

.entry__item__ttl strong {
  font-size: 26px;
  color: #ed6103;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .entry__item__ttl strong br {
    display: none;
  }
}
@media screen and (max-width: 373px) {
  .entry__item__ttl strong {
    font-size: 2.1rem;
  }
}

.entry__item__img {
  text-align: center;
}

.entry__item__learn {
  background: #ed6103;
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.1em 0.5em;
  margin: 20px 0 10px;
}

.entry__item__list > * {
  position: relative;
  padding-left: 1em;
}

@media screen and (max-width: 768px) {
  .entry__item__list > * {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 373px) {
  .entry__item__list > * {
    font-size: 1.4rem;
  }
}

.entry__item__list > *:before {
  position: absolute;
  left: 0;
  top: 0.5em;
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: #ed6103;
  border-radius: 100%;
}

@media screen and (max-width: 768px) {
  .entry__item__list > * br {
    display: none;
  }
}

.entry__item__btn {
  margin-top: 20px;
}

.entry__item__btn a {
  display: block;
  text-align: center;
  background: #fff;
  color: #ed6103;
  border: 2px solid #a7abad;
  font-size: 2.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .entry__item__btn a {
    font-size: 1.8rem;
  }
}

.entry__item__btn a:hover {
  background: #ed6103;
  color: #fff;
  border-color: #ed6103;
}

@media screen and (max-width: 768px) {
  .entry .full-width__inner {
    padding: 0 15px;
  }

  /* .mv {
    display: none;
  } */

  .ptn02_image01_wrap {
    background-color: #ed6103;
  }
}

_:-ms-lang(x)::-ms-backdrop,
.entry__ttl__type {
  padding-top: 1em;
  line-height: 0.5;
  vertical-align: bottom;
}

_:-ms-lang(x)::-ms-backdrop,
.entry__item__learn {
  padding-top: 0.5em;
}

_:-ms-lang(x)::-ms-backdrop,
.entry__item__btn a {
  padding-top: 0.5em;
}

.faq {
  background: #f9f9f9;
  padding: 0 0 30px;
}

.faq .full-width__inner {
  background: #fff;
  padding: 50px 20px 20px;
}

@media screen and (max-width: 768px) {
  .faq .full-width__inner {
    padding: 0 15px 20px;
    background: none;
  }
}

.mod-faq-v2 .contentsHeading {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .mod-faq-v2 .contentsHeading {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}

.mod-faq-v2 .linktext {
  margin-bottom: 30px;
  text-align: center;
}

.mod-faq-v2 .linktext a {
  color: #ed6103;
}

.mod-faq-v2 .linktext a:hover {
  text-decoration: none;
}

.mod-faq-v2 .body {
  border-radius: 3px;
  border: 1px solid #eeeeee;
  border-bottom: none;
}

.mod-faq-v2 .item {
  line-height: 1.4;
}

.mod-faq-v2 .item .q,
.mod-faq-v2 .item .a {
  padding: 2rem;
}

@media screen and (max-width: 768px) {
  .mod-faq-v2 .item .q,
  .mod-faq-v2 .item .a {
    padding: 2rem 3rem 2rem 2rem;
  }
}

.mod-faq-v2 .item .q a,
.mod-faq-v2 .item .a a {
  color: #ed6103;
}

.mod-faq-v2 .item .q a:hover,
.mod-faq-v2 .item .a a:hover {
  text-decoration: none;
}

.mod-faq-v2 .item .q {
  position: relative;
  border-bottom: 1px solid #eeeeee;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .mod-faq-v2 .item .q {
    background: #fff;
  }
}

.mod-faq-v2 .item .q:before {
  display: inline-block;
  margin-right: 16px;
  margin-right: 1rem;
  content: "Q";
  color: #ed6103;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .mod-faq-v2 .item .q:before {
    margin-right: 0;
  }
}

.mod-faq-v2 .item .q span {
  display: inline-block;
  max-width: 825px;
  vertical-align: top;
  font-size: 1.4rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .mod-faq-v2 .item .q span {
    padding-left: 0.6em;
    width: calc(100% - 30px);
  }
}

.mod-faq-v2 .item .q::after {
  position: absolute;
  top: -5px;
  bottom: 0;
  right: 24px;
  right: 1.5rem;
  margin: auto;
  content: "";
  width: 18px;
  height: 18px;
  border-top: 3px solid #ed6103;
  border-right: 3px solid #ed6103;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .mod-faq-v2 .item .q::after {
    width: 9px;
    height: 9px;
    border-top: 2px solid #ed6103;
    border-right: 2px solid #ed6103;
  }
}

.mod-faq-v2 .item .a {
  display: none;
  background: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.mod-faq-v2 .item .a:before {
  display: inline-block;
  margin-right: 16px;
  margin-right: 1rem;
  content: "A";
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .mod-faq-v2 .item .a:before {
    margin-right: 0;
  }
}

.mod-faq-v2 .item .a p {
  display: inline-block;
  max-width: 825px;
  vertical-align: top;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .mod-faq-v2 .item .a p {
    padding-left: 0.6em;
    width: calc(100% - 30px);
  }
}

.mod-faq-v2 .item .-active.q::after {
  top: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mod-faq-v2 .item.open:last-of-type .q {
  border-bottom: 1px solid #eeeeee;
}

.mod-faq-v2 .item .a a[href^="tel:"] {
  text-decoration: none;
  color: #1f1f1f;
}

@media screen and (max-width: 992px) {
  .mod-faq-v2 .item .a a[href^="tel:"] {
    text-decoration: underline;
    color: #ed6103;
  }
  .mod-faq-v2 .item .a a[href^="tel:"]:hover {
    text-decoration: none;
  }
}

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

.ui-label {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  padding: 0.3rem 1rem;
}

.ui-label-default {
  background-color: #cccccc;
}

.ui-label-active {
  background-color: #ed6103;
}

.ui-label-with {
  display: inline-block;
}

.ui-label-with:after {
  display: inline-block;
  content: "〇・";
}

.ui-label-with:last-of-type:after {
  content: "〇";
}

.ui-label-without {
  display: inline-block;
}

.ui-label-without:after {
  display: inline-block;
  content: "×・";
}

.ui-label-without:last-of-type:after {
  content: "×";
}

.ui-modal-container {
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.ui-modal-header {
  background: #ed6103;
  color: #fff;
  position: relative;
  min-height: 50px;
  line-height: 50px;
}

.ui-modal-header .title {
  text-align: center;
  margin-right: 50px;
  font-size: 1.8rem;
  font-weight: normal;
  padding-left: 6rem;
  font-weight: bold;
}

.ui-modal-close {
  border: 2px solid #fff;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  right: 1rem;
  top: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  background: none;
  outline: none;
  box-shadow: none;
}

.ui-modal-close span {
  font-weight: 100;
  font-family: Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
    "メイリオ", Meiryo, sans-serif;
  font-style: normal;
  font-size: 24px;
  line-height: 30px;
  display: inline-block;
  margin-top: -0.3rem;
}

.ui-modal-body {
  padding: 0 1rem 1rem;
  max-height: 60vh;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  .ui-modal-body {
    max-height: 50vh;
  }
}

.note-top {
  padding: 20px 10px;
}

@media screen and (max-width: 768px) {
  .note-top {
    padding: 20px 0;
  }
}

.note-top > p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .note-top > p {
    line-height: 1.6;
    font-size: 1.2rem;
  }
}

.note-top > p + p {
  margin-top: 1rem;
}

.note-top > p a {
  color: #ed6103;
}

.ui-modal-footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #bdc8ca;
}

.ui-modal-footer a {
  color: #ed6103;
}
.ui-modal .notification a {
    color: #ed6103;
}
.ui-modal .notification a[href^="tel:"] {
    text-decoration: none;
    font-weight: bold;
}

.ui-modal-footer .ui-btn-sm {
  margin-top: 10px;
  padding: 1rem 3rem;
  font-weight: normal;
  font-size: 1.3rem;
  box-shadow: none;
  border-color: #bdc8ca;
}

.ui-modal-footer .ui-btn-sm:hover {
  top: 0;
}

.ui-table {
  width: 100%;
  max-width: 100%;
}

.ui-table th,
.ui-table td {
  padding: 0.75rem 1rem;
  line-height: 1.4;
}

.ui-table th {
  background-color: #f7f7f7;
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .ui-table th {
    vertical-align: top;
    width: 30%;
  }
}

.ui-table th a {
  color: #1f1f1f;
}

.ui-table-bordered th {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  width: 25%;
}

.ui-table-bordered td {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  width: 75%;
}

@media screen and (max-width: 768px) {
  .ui-table-bordered th,
  .ui-table-bordered td {
    font-size: 1.4rem;
  }
}

.ui-table-bordered th + th,
.ui-table-bordered th + td,
.ui-table-bordered td + th,
.ui-table-bordered td + td {
  border-left: 1px solid #e5e5e5;
}

.ui-table-full-bordered th,
.ui-table-full-bordered td {
  border: 1px solid #e5e5e5;
}

#modal-shops .access {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  #modal-shops .access {
    line-height: 1.6;
    margin: 0.5em 0;
  }
}

#modal-shops .shop td {
  position: relative;
  padding-right: 44px;
}

#modal-shops .shop address {
  font-style: normal;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

#modal-shops .shop .ui-btn {
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  color: #ed6103;
  border: 1px solid #bdc8ca;
  width: 30px;
  height: 30px;
  font-size: 24px;
  line-height: 26px;
  text-align: center;
  border-radius: 4px;
  background: url("/assets/common/icon_pin-c7fe5df4.png") center center no-repeat #fff;
  background-size: auto 80%;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.2);
}

#modal-shops .shop .ui-btn:hover {
  top: 0.9rem;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0);
}

#modal-shops .shop .tags {
  font-size: 1.2rem;
}

#modal-shops .shop .tags li {
  display: inline-block;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
}

/* #modal-shops .shop .tags li+li {
    margin-left: 0.5rem;
  } */
#modal-shops .ui-modal-footer .notes {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.8;
}

.ui-modal .notification p {
  margin-bottom: 1rem;
}

.ui-btn-mouse {
  display: inline-block;
  background: #fff;
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  padding: 1.2rem 1.8rem;
  border: 1px solid #bdc8ca;
  border-radius: 100px;
  box-shadow: 0 1px 2px rgba(132, 132, 132, 0.3);
  text-align: center;
  position: relative;
  font-size: 1.7rem;
}

.ui-modal-footer .ui-btn-sm {
  width: auto;
  padding: 1rem 3rem;
  font-weight: normal;
  font-size: 1.3rem;
  box-shadow: none;
  border-color: #bdc8ca;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ui-modal-footer .ui-btn-sm:hover {
  background: #fffe9a;
  color: #ed6103;
}

button.lity-close {
  display: none;
}

/*  //////////////////////////////////////////////// */
@media screen and (max-width: 768px) {
  #modal-shops .modalList {
    padding: 1rem;
    border-bottom: 1px solid #bdc8ca;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  #modal-shops .modalList .modalList-title {
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #ed6103;
  }
  #modal-shops .modalList .not-accept-reserve {
    color: #a5a5a5;
  }
  #modal-shops .modalList .modalList-body address {
    font-style: normal;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  #modal-shops .modalList .modalList-body .buttons {
    border-spacing: 0;
  }
  #modal-shops .modalList .modalList-body .buttons .buttonsInner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    table-layout: auto;
    table-layout: initial;
    width: 100%;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    a[class*="btn-"] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #modal-shops .modalList .modalList-body .buttons .buttonsInner .btn-another {
    margin-right: 5px;
    padding: 1.2rem 0.5rem;
    border: 1px solid #bfcacc;
    border-radius: 5px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
    background: #fff;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-another.shop-datail {
    width: 33%;
    color: #1f1f1f;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-another.map {
    width: 20%;
    color: #1f1f1f;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-consultation {
    margin-right: 0;
    padding: 1.2rem 5.7rem 1.2rem 0.5rem;
    width: 47%;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: #2c3af6;
    position: relative;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-consultation.not-accept-reserve {
    background: #a5a5a5;
    color: #fff;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-consultation.not-accept-reserve
    span {
    background: #dadada;
    color: #a5a5a5;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-consultation.disabled {
    background: #ebebeb;
    color: #a5a5a5;
    box-shadow: none;
    pointer-events: none;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-consultation.disabled
    span {
    background: #dadada;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-consultation
    span {
    display: inline-block;
    margin-left: 0.2rem;
    width: 40px;
    height: 24px;
    border-radius: 5px;
    font-size: 1.4rem;
    vertical-align: middle;
    font-weight: normal;
    line-height: 24px;
    background: #0e15a8;
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
  }
  #modal-shops .ui-modal-footer .ui-btn-sm {
    padding: 1rem;
  }
  .ui-modal-header {
    background: #ed6103;
    color: #fff;
    position: relative;
    min-height: 50px;
    line-height: 50px;
  }
  .ui-modal-header .title {
    text-align: center;
    margin-right: 50px;
    padding-left: 40px;
    font-size: 1.8rem;
  }
  .ui-modal-close {
    border: 1px solid #fff;
    border-radius: 2px;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 1rem;
    top: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    /* font-size: 35px; */
    font-family: Arial, Baskerville, monospace;
    line-height: 30px;
    background: none;
    outline: none;
    box-shadow: none;
  }
  .ui-modal-scroll {
    max-height: calc(90vh - 90px);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .ui-modal-footer {
    text-align: center;
    padding: 1rem;
    border-radius: 0 0 5px 5px;
  }
  .ui-modal-container {
    background: #fff;
  }
  .modalList-body a {
    color: #ed6103;
  }
  button.lity-close {
    display: none;
  }
  .lity-wrap {
    padding: 10px;
  }
  .btn-consultation.prg-add-param.inquire_link {
    text-decoration: none;
  }
  .ui-modal .notification {
    padding: 20px 0;
  }
  .ui-modal .notification p {
    text-align: center;
    font-size: 1.4rem;
  }
  .ui-modal .notification p a {
    color: #ed6103;
  }
  .ui-btn-sm {
    border: 1px solid #bdc8ca;
    border-radius: 4px;
    padding: 0.5rem;
    background: #fff;
    text-align: center;
    position: relative;
    font-size: 1.7rem;
    width: auto;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  }
  #modal-shop-1 {
    border-top: 1px solid #bdc8ca;
  }
}

.mv {
  padding: 40px;
  background: url("/assets/common/bg_mv-9070c669.png") bottom center no-repeat #ed6103;
}

/* 稲村編集箇所↓ */
/* @media screen and (max-width: 768px) {
  .mv {
    background-image: url("../lp/af_chumon/bg_mv_sp.png");
    background-position: center center;
    background-size: 100% auto;
  }
} */
@media screen and (max-width: 768px) {
  .mv {
    background-image: url("/assets/common/bg_mv_sp-40802b17.png");
    background-position: center center;
    background-size: 100% auto;
    padding: 0;
  }
}
/* 稲村編集箇所↑ */
.mv > * {
  padding-left: 0;
  padding-right: 0;
}

.mv__main {
  padding-left: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* 稲村編集箇所↓ */
/* @media screen and (max-width: 768px) {
  .mv__main {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
} */
@media screen and (max-width: 768px) {
  .mv__main {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    /* margin-bottom: 5%; */
  }
}
/* 稲村編集箇所↑ */

.mv__ttl {
  position: relative;
  margin-bottom: 50px;
  width: 470px;
}

@media screen and (max-width: 992px) {
  .mv__ttl {
    width: 50%;
  }
}

/* 稲村編集箇所↓ */
/* @media screen and (max-width: 768px) {
  .mv__ttl {
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
  }
} */
@media screen and (max-width: 768px) {
  .mv__ttl {
    width: 60%;
    max-width: 300px;
    margin: 0 40% 0 0;
  }
}
/* 稲村編集箇所↑ */

.mv__ttl::before,
.mv__ttl::after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 30px;
  height: 39.27px;
  display: block;
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-image: url("/assets/common/icon_focus_white-964b33b8.svg");
  transform: rotate(90deg);
}

.mv__ttl::before {
  left: -4px;
  bottom: 5px;
  transform: rotate(0deg);
}

@media screen and (max-width: 768px) {
  .mv__ttl::before {
    left: -3px;
    bottom: 3px;
  }
}

.mv__ttl::after {
  right: 0;
  transform: rotate(-90deg);
}

.mv__ttl__inner {
  padding: 35px 0;
}

@media screen and (max-width: 768px) {
  .mv__ttl__inner {
    padding: 20px 10px;
  }
}

.mv__ttl__inner::before,
.mv__ttl__inner::after {
  position: absolute;
  top: 0;
  content: "";
  width: 30px;
  height: 39.27px;
  display: block;
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-image: url("/assets/common/icon_focus_white-964b33b8.svg");
  transform: rotate(90deg);
}

.mv__ttl__inner::before {
  left: 0;
}

.mv__ttl__inner::after {
  right: -4px;
  top: 5px;
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .mv__ttl__inner::after {
    right: -3px;
    top: 3px;
  }
}

.mv__ttl__inner > * {
  text-align: center;
  color: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.2;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 939px) {
  .mv__ttl__inner > * {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .mv__ttl__inner > * {
    font-size: 2rem;
  }
}

/* 稲村編集箇所↓ */
@media screen and (max-width: 373px) {
  .mv__ttl__inner > * {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 373px) {
  .mv__ttl__inner > * {
    font-size: 1.5rem;
  }
}
/* 稲村編集箇所↑ */

.mv__ttl__inner .-big {
  line-height: 1.4;
  font-size: 5.6rem;
}

@media screen and (max-width: 939px) {
  .mv__ttl__inner .-big {
    font-size: 4.5rem;
  }
}

/* 稲村編集箇所↓ */
/* @media screen and (max-width: 768px) {
  .mv__ttl__inner .-big {
    font-size: 3.6rem;
  }
} */
/* @media screen and (max-width: 373px) {
  .mv__ttl__inner .-big {
    font-size: 3rem;
  }
} */
@media screen and (max-width: 768px) {
  .mv__ttl__inner .-big {
    font-size: 2.9rem;
  }
}

@media screen and (max-width: 373px) {
  .mv__ttl__inner .-big {
    font-size: 2.3rem;
  }
}
/* 稲村編集箇所↑ */

.mv__ttl__inner .-small {
  font-size: 80%;
}

.mv__level {
  text-align: center;
}

.mv__level > * {
  display: inline-block;
}

.mv__level > * img {
  vertical-align: middle;
}

.mv__level__img {
  text-align: right;
  width: 86.5555%;
  margin-right: -130px;
  /* @include mq(373px) {
				width: 200px;
			} */
}

@media screen and (max-width: 992px) {
  .mv__level__img {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .mv__level__img {
    max-width: 250px;
    width: 70%;
    margin-right: -50px;
  }
}

.mv__level__txt {
  text-align: left;
}

.mv__level__txt img {
  margin-top: 130px;
}

@media screen and (max-width: 768px) {
  .mv__level__txt img {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .mv__level__txt {
    width: 130px;
    vertical-align: bottom;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 373px) {
  .mv__level__txt {
    width: 100px;
  }
}

.notice {
  margin-top: 112px;
  padding: 10px 0;
}

@media screen and (max-width: 768px) {
  .notice {
    padding: 10px;
    margin-top: 50px;
  }
}

.notice p {
  line-height: 1.4;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .notice p {
    line-height: 1.6;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    /* line-height: 1.6; */
    font-size: 1.2rem;
  }
}

.notice p a {
  color: #0046af;
}

.notice p a:hover {
  text-decoration: none;
}

.promise {
  width: 100%;
  margin: 0 auto;
}

/* 稲村編集箇所↓ */
@media screen and (max-width: 768px) {
  .promise {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-color: #fff5e4;
    @media screen and (max-width: 768px) {
      .mv {
        background-image: url("/assets/common/bg_mv_sp-40802b17.png");
        background-position: center center;
        background-size: 100% auto;
      }
    }
  }
}
/* 稲村編集箇所↑ */
.promise__inner {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 5px;
  padding: 30px 40px;
}
.promise__content1{
  text-align:center;
}

.promise__content1--h3{
 color: #ed6103;
 font-size: 3rem;
 font-weight:bold;
}
.promise__content1--p{
  font-weight:bold;
}
.promise__content1--span{
  color: #ed6103;
  font-size:2rem;
  font-weight:bold;
  letter-spacing:1px;
}
@media screen and (max-width: 992px) {
  .promise__content1--span{
    font-size:1.8rem;
  }
}

.promise__content2{
  padding-top:10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .promise__content2{
    padding-top:20px;
  }
    .promise__inner {
    padding: 20px 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .promise__head {
    display: flex;
    position: relative;
  }
  .promise__h2 {
    width: 60%;
    margin: 2% 2%;
  }
  .promise__fig {
    position: absolute;
    right: -3%;
    bottom: 0px;
    margin: 0;
    width: 45%;
    max-width: 230px;
  }

  .promise__inner {
    border: 2px solid #ed6103;
    border-radius: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px;
    width: 95%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* 稲村編集箇所↑ */

.promise__ttl {
  width:38%;
  text-align: center;
  font-weight: 600 !important;
  font-size: 2rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-height: 1.4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.promise__ttl strong{
  font-weight:600;
}
.promise__ttl--strong{
  font-weight: 900;
  text-shadow:
  .3px .3px #ed6103,
  -.3px .3px #ed6103,
  -.3px -.3px #ed6103,
  .3px -.3px #ed6103,
  .3px 0px #ed6103,
  0px .3px #ed6103,
  -.3px 0px #ed6103,
  0px -.3px #ed6103;
}

@media screen and (max-width: 992px) {
  .promise__ttl {
    padding-right: 20px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .promise__ttl {
    padding-right: 0;
    font-size: 1.8rem;
  }
}

.promise__ttl strong {
  color: #ed6103;
  font-size: 4rem;
  line-height: 1.4;
}

@media screen and (max-width: 992px) {
  .promise__ttl strong {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .promise__ttl strong {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .promise__ttl strong .-big {
    font-size: 2.6rem;
  }
}

.promise__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0 0;
  width: 62%;
}

@media screen and (max-width: 992px) {
  .promise__list {
    width: 62%;
    margin: 0px;
  }
}

/* 稲村編集箇所↓ */
/* @media screen and (max-width: 768px) {
  .promise__list {
    width: auto;
  }
} */
@media screen and (max-width: 768px) {
  .promise__list {
    width: 100%;
    margin: 0 auto;
  }
}
/* 稲村編集箇所↑ */
.promise__list__item {
  width: 33.3333%;
  padding: 0 15px;
}

/* 稲村編集箇所↓ */
@media screen and (max-width: 992px) {
  .promise__list__item {
    padding: 10px;
  }
}
@media screen and (max-width: 992px) {
  .promise__list__item {
    padding: 2px;
  }
}
/* 稲村編集箇所↑ */
.promise__list__item:nth-child(1) .promise__list__tilte:before {
  content: "1";
}

.promise__list__item:nth-child(2) .promise__list__tilte:before {
  content: "2";
}

.promise__list__item:nth-child(3) .promise__list__tilte:before {
  content: "3";
}

.promise__list__tilte {
  font-size: 2.5rem;
  padding-left: 30px;
  font-weight: bold;
  color: #fff;
  text-align: left;
  line-height: 1.2;
  position: relative;
  z-index: 0;
  margin: 12px 0;
  letter-spacing: 0;
}

@media screen and (max-width: 992px) {
  .promise__list__tilte {
    margin: 10px 0;
    font-size: 2rem;
  }
}

/* 稲村編集箇所↓ */
/* @media screen and (max-width: 768px) {
  .promise__list__tilte {
    margin: 50px 0 30px;
    font-size: 1.8rem;
  }
} */
@media screen and (max-width: 768px) {
  .promise__list__tilte {
    margin: 10px 0 10px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 373px) {
  .promise__list__tilte {
    font-size: 1.5rem;
  }
}
/* 稲村編集箇所↑ */
.promise__list__tilte::before {
  width: 35px;
  height: 35px;
  font-size: 3rem;
  font-weight: bold;
  border: 3px solid #ed6103;
  left: -12px;
  top: -20px;
  /* -webkit-transform: translateX(-50%);
  transform: translateX(-50%); */
  position: absolute;
  z-index: 10;
  color: #ed6103;
  background: #fff;
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 992px) {
  .promise__list__tilte::before {
    font-size: 41.6px;
    font-size: 2.6rem;
    width: 37px;
    height: 37px;
  }
}

/* 稲村編集箇所↓ */
/* @media screen and (max-width: 768px) {
  .promise__list__tilte::before {
    left: 6vw;
    top: -44px;
  }
} */
@media screen and (max-width: 768px) {
  .promise__list__tilte::before {
    display: none;
  }
}
/* 稲村編集箇所↑ */
.promise__list__tilte::after {
  z-index: -1;
  content: "";
  display: block;
  width: 146px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  background: #ed6103;
  border-radius: 10px;
}

@media screen and (max-width: 992px) {
  .promise__list__tilte::after {
    width: 15vw;
    height: 8vw;
  }
}

/* 稲村編集箇所↓ */
@media screen and (max-width: 768px) {
  /* .promise__list__tilte::after {
    width: 94px;
    height: 94px;
  } */
  .promise__list__tilte::after {
    border-radius: 3%;
    width: 90%;
    height: 130%;
  }
  /* 稲村編集箇所↑ */
}

.promise__list__detail {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: -1px;
}

@media screen and (max-width: 992px) {
  .promise__list__detail {
    font-size: 1.2rem;
  }
    .promise__list__detail br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .promise__list__detail {
    font-size: 1rem;
    text-align: left;
  }
}

.promise__note {
  font-size: 1.4rem;
  color: #fff;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .promise__note {
    font-size: 1rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    color: #1f1f1f;
    padding-bottom: 10px;
  }
}

.reason {
  background: #f4f4f4;
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .reason {
    padding-bottom: 15px;
  }
}

.reason .full-width__inner {
  padding: 0 ;
}
@media screen and (max-width: 992px) {
  .reason .full-width__inner {
    padding: 0 20px;
  }
  }

.reason__ttl {
  text-align: left;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .reason__ttl {
    padding: 15px 0;
  }
}

.reason__ttl > * {
  max-width: 940px;
  margin: 0 auto;
  padding-left: 45px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .reason__ttl > * {
    padding-left: 15px;
    padding-right: 120px;
  }
}

.reason__ttl > *:before {
  content: "";
  width: 226px;
  height: 239px;
  background: url("/assets/common/img_character_homes_03-cfeba73a.png") left bottom
    no-repeat;
  background-size: contain;
  position: absolute;
  right: 30px;
  bottom: -30px;
  z-index: 10;
}

@media screen and (max-width: 992px) {
  .reason__ttl > *:before {
    right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .reason__ttl > *:before {
    right: 0;
    bottom: -15px;
    width: 117px;
    height: 165px;
    background-image: url("/assets/common/img_character_homes_03_sp-bb655486.png");
  }
}

.reason__ttl__frame {
  display: inline-block;
  position: relative;
  padding: 30px 40px;
}

@media screen and (max-width: 768px) {
  .reason__ttl__frame {
    width: 100%;
    padding: 15px;
  }
}

.reason__ttl__frame__inner {
  text-align: center;
  line-height: 1.2;
  font-size: 3.8rem;
  font-weight: bold;
}

@media screen and (max-width: 939px) {
  .reason__ttl__frame__inner {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .reason__ttl__frame__inner {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 373px) {
  .reason__ttl__frame__inner {
    font-size: 1.8rem;
  }
}

.reason__ttl__frame__inner::before,
.reason__ttl__frame__inner::after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 26px;
  height: 34.03px;
  display: block;
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-image: url("/assets/common/icon_focus_white-964b33b8.svg");
  transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .reason__ttl__frame__inner::before,
  .reason__ttl__frame__inner::after {
    width: 14px;
    height: 18.33px;
  }
}

.reason__ttl__frame__inner::before {
  left: -4px;
  bottom: 5px;
  transform: rotate(0deg);
}

@media screen and (max-width: 768px) {
  .reason__ttl__frame__inner::before {
    left: -2px;
    bottom: 3px;
  }
}

.reason__ttl__frame__inner::after {
  right: 0;
  transform: rotate(-90deg);
}

.reason__ttl__frame__inner > *::before,
.reason__ttl__frame__inner > *::after {
  position: absolute;
  top: 0;
  content: "";
  width: 26px;
  height: 34.03px;
  display: block;
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-image: url("/assets/common/icon_focus_white-964b33b8.svg");
  transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .reason__ttl__frame__inner > *::before,
  .reason__ttl__frame__inner > *::after {
    width: 14px;
    height: 18.33px;
  }
}

.reason__ttl__frame__inner > *::before {
  left: 0;
}

.reason__ttl__frame__inner > *::after {
  right: -4px;
  top: 5px;
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .reason__ttl__frame__inner > *::after {
    right: -2px;
    top: 3px;
  }
}

.reason__item {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .reason__item {
    margin-top: 40px;
  }
}

.reason__item > .box-img {
  margin: 0;
}

.reason__item__ttl {
  background: #fff;
  color: #ed6103;
  font-size: 3rem;
  font-weight: bold;
  padding: 0.3em 0.5em;
  border-radius: 5px;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
  .reason__item__ttl {
    font-size: 2.2rem;
    text-align: center;
  }
}

.reason__item__num {
  margin-left: 0.7em;
  color: #fff;
  position: relative;
  z-index: 0;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .reason__item__num {
    font-size: 1.8rem;
  }
}

.reason__item__num:after {
  z-index: -1;
  content: "";
  width: 1.3em;
  height: 1.3em;
  background: #ed6103;
  color: #fff;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 768px) {
  .reason__item__num:after {
    width: 1.4em;
    height: 1.4em;
  }
}

.reason__item__detail,
.reason__item__detail > p {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  /* color: $color-assort; */
  font-size: 2.4rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .reason__item__detail,
  .reason__item__detail > p {
    text-align: center;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 373px) {
  .reason__item__detail,
  .reason__item__detail > p {
    text-align: center;
    font-size: 1.5rem;
  }
}

.reason__item__detail strong,
.reason__item__detail > p strong {
  font-weight: bold;
  font-size: 2.6rem;
}

@media screen and (max-width: 768px) {
  .reason__item__detail strong,
  .reason__item__detail > p strong {
    font-size: 2rem;
  }
}
@media screen and (max-width: 373px) {
  .reason__item__detail strong,
  .reason__item__detail > p strong {
    font-size: 1.6rem;
  }
}

.reason__item__detail sup,
.reason__item__detail > p sup {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .reason__item__detail sup,
  .reason__item__detail > p sup {
    font-size: 1rem;
  }
}

.reason__item__note {
  margin-top: 1em;
  font-size: 1.4rem !important;
  /* font-weight: bold; */
}

@media screen and (max-width: 768px) {
  .reason__item__note {
    margin-top: 0.5em;
    font-size: 1.2rem !important;
    text-align: left !important;
  }
}

@media screen and (max-width: 992px) {
  .reason__item .box-img {
    display: block;
  }
}

.reason__item .box-img__body {
  padding-right: 40px;
  width: calc(100% - 480px);
}

@media screen and (max-width: 992px) {
  .reason__item .box-img__body {
    padding-right: 0;
    width: 100%;
  }
}

.reason__item .box-img__fig {
  width: 480px;
}

@media screen and (max-width: 992px) {
  .reason__item .box-img__fig {
    width: 100%;
    margin: 10px 0 0;
  }
}


.reason01__container {
  padding: 20px 0;
}

.reason01__container .reason01__content h3 {
  text-align: left;
  font-weight: bold;
  font-size: 2.2rem;
}
.reason01__container .reason01__content h3.-ptn02 {
  padding:1% 2%;
  background:#ed6103;
  color:#fff;
  border-radius:8px 8px 0 0;
}

.reason01__container .reason01__content .-underline {
  display:none;
}

.reason01__container .reason01__content .reason01__text {
  padding: 5px 0% 25px;
}
.reason01__container .reason01__content .reason01__text.-ptn02 {
  padding: 5px 2% 5px;
}

.reason01__container .reason01__content .reason01__text p {
  font-size: 1.8rem;
  font-weight:500;
  line-height: 1.6;
}

.reason01__container .reason01__content .reason01__text p span {
  font-weight: bold;
  color: #ed6103;
}

.reason01__container .reason01__content.-ptn02 {
  background-color: #fff;
  padding: 0;
  border-radius:8px;
}

.reason01__container .reason01__content.-ptn02 .reason01__text ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height:170px;
}

.reason01__container .reason01__content.-ptn02 .reason01__text ul li {
  margin: 10px 0;
  padding-left: 35px;
  position: relative;
  font-size: 16px;
  width:50%;
}

.reason01__container .reason01__content.-ptn02 .reason01__text ul li:before {
  content: "";
  width: 33px;
  height: 20px;
  background: url("/assets/common/icon_check-b87de5b1.png") left top no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width:992px){
  .reason01__container .reason01__content.-ptn02 .reason01__text ul {
    height:180px;
  }
  .reason01__container .reason01__content.-ptn02 .reason01__text ul li {
    font-size: 14px;
  }

}
@media screen and (max-width:768px){
  .reason01__container {
    padding: 20px 0;
  }

  .reason01__container .reason01__content h3 {
    text-align: center;
    font-weight: bold;
    font-size: 2.2rem;
  }
  .reason01__container .reason01__content h3.-ptn02 {
    padding:0;
    background:#fff;
    color:#000;
    border-radius:0;
  }


  .reason01__container .reason01__content .-underline {
    display:block;
    width: 50%;
    height: 5px;
    margin: 0 auto;
    border-bottom: 1px solid #ed6103;
  }

  .reason01__container .reason01__content .reason01__text {
    padding: 15px 0;
    border-radius:0;
  }

  .reason01__container .reason01__content .reason01__text.-ptn02 {
    padding: 15px 0;
  }


  .reason01__container .reason01__content .reason01__text p {
    font-size: 1.8rem;
    font-weight:normal;
    line-height: 1.6;
  }

  .reason01__container .reason01__content .reason01__text p span {
    font-weight: bold;
    color: #ed6103;
  }

  .reason01__container .reason01__content.-ptn02 {
    background-color: #fff;
    padding: 5%;
    border-radius:0px;
  }

  .reason01__container .reason01__content.-ptn02 .reason01__text ul {
    position: relative;
    display:block;
    height:auto;
  }

  .reason01__container .reason01__content.-ptn02 .reason01__text ul li {
    margin: 10px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    width:100%;
  }

  .reason01__container .reason01__content.-ptn02 .reason01__text ul li:before {
    content: "";
    width: 33px;
    height: 20px;
    background: url("/assets/common/icon_check-b87de5b1.png") left top no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
  }
}

.reason__company {
  background: #fff;
  padding: 20px 20px 30px;
}

@media screen and (max-width: 768px) {
  .reason__company {
    padding: 20px 15px;
  }
}

.reason__company__ttl {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .reason__company__ttl {
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .reason .full-width__inner {
    padding: 0 15px;
  }
}

@media screen and (max-width: 992px) {
  .reason .hidden__sp {
    display: none;
  }
}

.step {
  /* background: #f4f4f4; */
  padding-bottom: 50px;
}

.step__ttl {
  text-align: left;
  padding: 20px 0;
  font-weight: bold;
  background: #f7ab00;
  /* Old browsers */
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #f7ab00 0%,
    #ed6203 50%,
    #ed6203 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f7ab00 0%, #ed6203 50%, #ed6203 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7ab00', endColorstr='#ed6203',GradientType=0 );
  /* IE6-9 */
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .step__ttl {
    background: #f8b300;
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      top,
      #f8b300 0%,
      #ed6203 100%,
      #ed6203 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
      to bottom,
      #f8b300 0%,
      #ed6203 100%,
      #ed6203 100%
    );
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8b300', endColorstr='#ed6203',GradientType=0 );
    /* IE6-9 */
  }
}

.step__ttl > * {
  max-width: 940px;
  margin: 0 auto;
  padding-left: 45px;
  padding-right: 190px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .step__ttl > * {
    padding: 0 15px;
  }
}

.step__ttl > * > * {
  color: #fff;
}

.step__ttl > *:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 80px 0 80px;
  border-color: #ed6103 transparent transparent transparent;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -60px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .step__ttl > *:after {
    border-width: 20px 40px 0 40px;
    bottom: -40px;
  }
}

.step__ttl > *:before {
  content: "";
  width: 190px;
  height: 200px;
  background: url("/assets/common/img_character_homes_04-b5675a58.png") left bottom
    no-repeat;
  background-size: contain;
  position: absolute;
  right: -50px;
  bottom: -60px;
}

@media screen and (max-width: 768px) {
  .step__ttl > *:before {
    background-image: url("/assets/common/img_character_homes_04_sp-fbaf7ce0.png");
    width: 162px;
    height: 184px;
    right: 15px;
    bottom: auto;
    top: -40px;
  }
}
@media screen and (max-width: 373px) {
  .step__ttl > *:before {
    width: 140px;
    height: 160px;
    right: 15px;
    bottom: auto;
    top: -70px;
  }
}

.step__ttl__type {
  position: absolute;
  left: 40px;
  top: -50px;
  background: #ed6103;
  color: #fff;
  font-size: 3.2rem;
  padding: 0.3em 0.5em;
  line-height: 1;
  border-radius: 5px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .step__ttl__type {
    left: 15px;
    top: -40px;
    padding: 0.3em 0.3em;
    font-size: 2.6rem;
  }
}

.step__ttl__main {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 3.8rem;
}

@media screen and (max-width: 900px) {
  .step__ttl__main {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .step__ttl__main {
    line-height: 1.4;
    font-size: 2.6rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 373px) {
  .step__ttl__main {
    font-size: 2.2rem;
  }
}

.step__ttl__main .-point {
  font-size: 5rem;
}

@media screen and (max-width: 939px) {
  .step__ttl__main .-point {
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 768px) {
  .step__ttl__main .-point {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 373px) {
  .step__ttl__main .-point {
    font-size: 2.8rem;
  }
}

.step__ttl__detail {
  font-size: 2rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .step__ttl__detail {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 373px) {
  .step__ttl__detail {
    font-size: 1.6rem;
  }
}

.step__ttl__note {
  font-size: 1.4rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .step__ttl__note {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 373px) {
  .step__ttl__note {
    font-size: 1rem;
  }
}

.step__inner {
  overflow: hidden;
  position: relative;
  z-index: 0;

}
@media screen and (max-width: 992px) {
  .step__inner {
    padding:10px;
  }
}
.step__item {
  position: relative;
  background: #fff;
  z-index: 0;
  /* &:last-child{
			filter: drop-shadow(0 3px 8px rgba(231,93,2,0.3));
		} */
}

.step__item:after {
  z-index: 999;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 80px 0 80px;
  border-color: #f9f9f9 transparent transparent transparent;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
}

@media screen and (max-width: 768px) {
  .step__item:after {
    border-width: 30px 50px 0 50px;
  }
}

.step__item .box-img {
  margin: 0 auto;
  max-width: 940px;
  padding: 50px 0 40px;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .step__item .box-img {
    padding: 40px 15px 30px;
  }
}

.step__item .box-img__body {
  padding-right: 20px;
  width: 60%;
}

@media screen and (max-width: 768px) {
  .step__item .box-img__body {
    padding-right: 0;
    width: 100%;
  }
}
.step__item__detail {
  font-size: 1.8rem;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  .step__item__detail {
    font-size: 1.8rem;
  }
  .step__item__detail br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .step__item__detail {
    font-size: 1.6rem;
  }
}

/* 稲村追加2021/07/28 */
@media screen and (max-width: 768px) {
  .step__merit {
    max-width: 500px;
    width: 100%;
    margin: 0 0 7%;
  }
  .step__item__detail {
    font-weight: bold;
    font-size: 1.8rem;
  }
  .step__img {
    margin-top: 5%;
  }
}
@media screen and (max-width: 373px) {
  .step__merit {
    max-width: 500px;
    width: 100%;
    margin: 0 0 7%;
  }
  .step__item__detail {
    font-size: 1.6rem;
  }
  .step__img {
    margin-top: 5%;
  }
}
/* 稲村追加2021/07/28 */

.step__item .box-img__fig {
  width: 40%;
}

.step__item .box-img__fig img{
  height:100%;
  object-fit:cover;
}

@media screen and (max-width: 768px) {
  .step__item .box-img__fig {
    text-align: right;
    margin: 0;
  }
  .step__item .box-img__fig img {
    width: auto;
    position: absolute;
    top: 30px;
    right: 15px;
    width: 120px;
  }
}

.step__item:first-child::after {
  display: none;
}

.step__item:nth-child(2n) {
  background-color: #f9f9f9;
}

.step__item:nth-child(2n):after {
  border-color: #fff transparent transparent transparent;
}

.step__item__num {
  display: flex;
  align-items:center;
  color: #fff;
  background: #ed6103;
  padding: 0.2em 0.6em;
  font-size: 2.4rem;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 0.3em;
}

@media screen and (max-width: 768px) {
  .step__item__num {
    font-size: 1.8rem;
  }
}

.step__item__ttl {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.2em;
  color: #ed6103;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  display:flex;
}
@media screen and (max-width: 992px) {
  .step__item__ttl {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 768px) {
  .step__item__ttl {
    font-size: 2.6rem;
    padding-right: 140px;
  }
}
@media screen and (max-width: 373px) {
  .step__item__ttl {
    font-size: 2rem;
  }
}

.step__item__ttl--item{
  width:80%;
  padding-left:20px;
  line-height:1.4;
}
.step__item__ttl--item span{
  font-size:0.6em;
  font-weight:400;
  padding-left:10px;
}


.step__item__detail strong {
  /* color: $color-assort; */
  font-weight: bold;
}

.top-performance-point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 55px -16px 0;
}

@media screen and (max-width: 768px) {
  .top-performance-point {
    margin: 40px -10px 0;
  }
}

.top-performance-point__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(33.3333% - 32px);
  background: #fff;
  margin: 0 16px;
  padding: 38px 20px 24px;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .top-performance-point__item {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: calc(50% - 20px);
    margin: 20px 10px 0;
    padding: 20px 12px 22px;
  }
}

@media screen and (max-width: 768px) {
  .top-performance-point__item.-item1 {
    width: 100%;
    margin-top: 0;
  }
}

.top-performance-point__label {
  color: #ed6103;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .top-performance-point__label {
    font-size: 3.86vw;
  }
}

.top-performance-point__point {
  margin-top: 8px;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 768px) {
  .top-performance-point__point {
    font-size: 4.35vw;
  }
}

.top-performance-point__text {
  color: #1f1f1f;
  font-size: 2.8rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .top-performance-point__text {
    font-size: 3.62vw;
  }
}

.top-performance-point__text.-large {
  font-size: 3.4rem;
}

@media screen and (max-width: 768px) {
  .top-performance-point__text.-large {
    font-size: 4.35vw;
  }
}

.top-performance-point__text.-small {
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .top-performance-point__text.-small {
    font-size: 6.04vw;
  }
}

.top-performance-point__number {
  color: #e23822;
  font-size: 3.8rem;
  margin: 0 4px;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .top-performance-point__number {
    font-size: 2.4rem;
  }
}

.top-performance-point__memo {
  color: #6e7988;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 2px;
}

@media screen and (max-width: 768px) {
  .top-performance-point__memo {
    font-size: 1.2rem;
  }
}

.trouble {
  background: #f4f4f4;
  padding-bottom: 50px;

}

.trouble .full-width__inner {
  padding: 0;
}

@media screen and (max-width: 768px) {
  .trouble {
  }
}

.trouble__ttl {
  text-align: center;
}

.trouble__ttl > * {
  text-align: left;
  display: inline-block;
  font-size: 5.2rem;
  font-weight: bold;
  padding: 30px 0 30px 140px;
  position: relative;
}

@media screen and (max-width: 939px) {
  .trouble__ttl > * {
    font-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .trouble__ttl > * {
    padding: 20px 0 20px 120px;
    line-height: 1.4;
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 373px) {
  .trouble__ttl > * {
    font-size: 2.7rem;
  }
}

.trouble__ttl > *:before {
  content: "";
  width: 163px;
  height: 191px;
  background: url("/assets/common/img_character_homes_02-a2edd5bf.png") left bottom
    no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .trouble__ttl > *:before {
    left: 10px;
    width: 131px;
    height: 153px;
    background-image: url("/assets/common/img_character_homes_02_sp-30448f19.png");
  }
}

.trouble__ttl .-point {
  position: relative;
}

.trouble__ttl .-point:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  background: #fff;
  top: -10px;
  left: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 100%;
}

@media screen and (max-width: 768px) {
  .trouble__ttl .-point:before {
    top: -5px;
    width: 5px;
    height: 5px;
  }
}

.trouble .full-width__inner {
  background: #fff;
}

.trouble__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .trouble__list {
    padding: 0 15px;
  }
}

.trouble__list > * {
  width: 50%;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .trouble__list > * {
    width: 100%;
    padding: 20px 0;
  }
}

.trouble__list__item {
  border-bottom: 2px solid #8c8c8c;
  border-right: 2px solid #8c8c8c;
}

@media screen and (max-width: 768px) {
  .trouble__list__item {
    border-right: none;
  }
}

.trouble__list__item:nth-child(2n) {
  border-right: none;
}

.trouble__list__item:nth-last-child(2) {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .trouble__list__item:nth-last-child(2) {
    border-bottom: 2px solid #8c8c8c;
  }
}

.trouble__list__item:last-child {
  border-bottom: none;
  border-right: none;
}

.trouble__list__ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: #ed6103;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .trouble__list__ttl {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 373px) {
  .trouble__list__ttl {
    font-size: 2rem;
  }
}

.trouble__list__img {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .trouble__list__img {
    margin-bottom: 10px;
    padding: 0 20px;
  }
}

.trouble__solution {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.trouble__solution__ttl {
  width: 103px;
}

@media screen and (max-width: 768px) {
  .trouble__solution__ttl {
    width: 72px;
  }
}

.trouble__solution__detail {
  padding-left: 20px;
  font-size: 1.8rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  width: calc(100% - 103px);
  /* strong{
				color: $color-assort;
			} */
}

@media screen and (max-width: 768px) {
  .trouble__solution__detail {
    padding-left: 10px;
    width: calc(100% - 72px);
  }
  .trouble__solution__detail br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .trouble__solution__detail {
    font-size: 1.6rem;
  }
}

.site-pagetop {
  display: none;
}

@media screen and (max-width: 768px) {
  .site-pagetop {
    display: block;
    position: fixed;
    height: 0;
    z-index: 100;
    right: 5px;
    bottom: 150px;
  }
}

/* モーダル追加箇所 */
/* ================================================ */
/* モーダル追加 */

.ui-modal .notification {
  padding: 20px;
  text-align: center;
  margin: auto;
}
#modal-shops .modal-pref-anchor {
  background-color: #f9f9f9;
}

#modal-shops .modal-pref-anchor .area-list-box {
  width: 760px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 30px 0 10px;
}

#modal-shops .modal-pref-anchor .area-list-box .area-list {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  width: 140px;
  height: 39px;
  border-radius: 25px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 16%);
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
}

#modal-shops .modal-pref-anchor .area-list-box .area-list a {
  display: block;
  color: #1f1f1f;
  line-height: 39px;
  text-decoration: none;
  padding-left: 26px;
}

#modal-shops .modal-pref-anchor .area-list-box .area-list h3 {
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}

#modal-shops .modal-pref-anchor .area-list-box .area-list h3 .arrow::after {
  position: absolute;
  top: -5px;
  bottom: 0;
  right: 14px;
  margin: auto;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
  border-radius: 2px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

#modal-shops .shops-pref-heading {
  text-align: center;
  padding: 30px 0 20px;
}

#modal-shops .shops-pref-heading .heading {
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
}

#modal-shops .shops-pref-heading .subheading {
  font-size: 18px;
}

#modal-shops .shops-pref-heading .subheading .homes-color {
  color: #ed6103;
}

[data-icon]:before,
.ui-icon-blank-window:before,
.ui-icon-heart:before,
.ui-icon-mail:before,
.ui-icon-map-marker:before,
.ui-icon-tel:before,
.ui-icon-zoom:before {
  display: inline-block;
  font-family: "homes";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

/* .ui-icon-map-marker:before {
  content: "\f101";
} */

#modal-shops .modal-pref-anchor .area-list-box::after {
  content: "";
  display: block;
  width: 140px;
}
/* ================================================ */
/* modal_SP */
@media screen and (max-width: 768px) {
  #modal-shops .modalList {
    padding: 1rem;
    border-bottom: 1px solid #bdc8ca;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  #modal-shops .modal-pref-anchor .area-list-box {
    width: 100%;
    justify-content: space-around;
  }

  #modal-shops .modal-pref-anchor .area-list-box {
    justify-content: space-around;
  }

  #modal-shops .modal-pref-anchor .area-list-box {
    justify-content: space-around;
  }
  #modal-shops .modal-pref-anchor .area-list-box .area-list a {
    padding-left: 0px;
  }
  #modal-shops .modal-pref-anchor .area-list-box .area-list h3 {
    text-align: center;
  }

  #modal-shops .modal-pref-anchor .area-list-box .area-list {
    width: 48%;
    margin-bottom: 3%;
  }
  #modal-shops .modal-pref-anchor .area-list-box::after {
    width: 48%;
    margin-bottom: 3%;
  }
}
/* ================================================ */

@media screen and (max-width: 768px) {
  .Date__lock {
    opacity: 0.4;
  }
}


/* 前原追加 start 2021/09/02 */
.promise-block {
  line-height: 1.7;
}
.promise-block .container {
  width: calc(100% - 50px);
  margin: 0 auto;
}
.promise-block__title {
  background-color: #FFF1DF;
  position: relative;
  color: #ED6103;
  text-align: center;
  font-weight: bold;
  font-size: 5vw;
  line-height: 1.4;
  padding: 4vw;
  border-radius: 2vw;
}
.promise-block__title:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 3.5vw 3.5vw 3.5vw;
  border-color: transparent transparent #FFF1DF transparent;
  position: absolute;
  right: 0;
  left: 0;
  top: auto;
  bottom: -3.5vw;
  margin: auto;
  transform: rotate(180deg);
  transition: transform 0.3s 0s;
}
.promise-block__read {
  font-weight: bold;
  text-align: center;
  font-size: 5vw;
  margin-top: 5vw;
  color: #1f1f1f;
}
.promise-block__three-point {
  margin-top: 6vw;
}
.promise-block__three-point__title {
  color: #ED6103;
  font-size: 5vw;
  font-weight: bold;
  text-align: center;
}
.promise-block__three-point__title .big {
  font-size: 1.2em;
}
.promise-block__three-point__points {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 5vw;
}
.promise-block__three-point__point {
  width: calc(33.33% - 10px);
  position: relative;
}
.promise-block__three-point__point__num {
  display: block;
  font-weight: bold;
  font-size: 5.9vw;
  line-height: 1.5;
  text-align: center;
  color: #ED6103;
  background-color: #fff;
  border: 0.6vw solid #ED6103;
  width: 10vw;
  height: 10vw;
  border-radius: 10vw;
  position: absolute;
  left: 0;
  top: -3vw;
}
.promise-block__three-point__point__text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.9vw;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #FFF;
  background-color: #ED6103;
  border-radius: 100px;
  width: 100%;
  height: calc(30.4vw - 10px);
}
.promise-block__three-point__point__sentence {
  font-size: 3vw;
  margin-top: 2vw;
  line-height: 1.6;
}
.promise-block__middle-read {
  text-align: center;
  font-size: 4.7vw;
  font-weight: 500;
  margin-top: 7vw;
  color: #1f1f1f;
}
@media screen and (min-width: 992px) {
  .promise-block__three-point__point__text {
    font-size: 2.5rem;
    color: #ED6103;
    background-color: #FFF;
    width: 100%;
    height: auto;
    margin-top:15px
  }
  .promise-block__middle-read {
    font-size: 2.2rem;
    margin-top: 3vw;
    color: #1f1f1f;
    font-weight:bold;
  }
}
@media screen and (min-width: 768px) {
  /* pc only */
  .promise-block .container {
    max-width:940px;
  }
  .promise-block__title {
    font-size: 2.5rem;
    padding: 3%;
    border-radius: 10px;
  }
  .promise-block__title:after {
    border-width: 0 1.5vw 1.5vw 1.5vw;
    bottom: -1.5vw;
  }
  .promise-block__read {
    font-size: 2.2rem;
    margin-top: 3%;
  }
  .promise-block__three-point__points {
    margin-top: 0;
  }
  .promise-block__three-point {
    margin-top: 1.5vw;
  }
  .promise-block__three-point__title {
    color: #1f1f1f;
    font-size: 3.5rem;
    text-align: center;
    line-height:1.5;
  }
  .promise-block__three-point__title span{
    color: #ED6103;
    font-size: 3.5rem;
    text-align: center;
  }
  .promise-block__three-point__img{
    width:100%;
    height:150px;
    display:flex;
    align-items:end
  }
  .promise-block__three-point__img img{
    display:block;
    margin: 0 auto;
    position:relative;
  }
  .promise-block__three-point__point__text {
    font-size: 2.2rem;
    color: #ED6103;
    background-color: #FFF;
    width: 100%;
    height: auto;
    margin-top:15px
  }
  .promise-block__three-point__point__sentence {
    font-size: 1.6rem;
    margin-top: 0.5vw;
    line-height: 1.6;
    padding:0 10px;
    font-weight:bold;
  }
  .promise-block__middle-read {
    font-size: 2rem;
    margin-top: 3vw;
    color: #1f1f1f;
    font-weight:bold;
  }
}

.coustomer-satisfaction {
  margin-top: 5vw;
}
.coustomer-satisfaction__title {
  font-size: 5vw;
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
  color: #ED6103;
}
.coustomer-satisfaction__image {
  display: block;
  margin: 3vw auto 0;
  width: 60vw;
}
.coustomer-satisfaction__note {
  text-align: center;
  font-size: 3vw;
  margin-top: 3vw;
}

@media screen and (min-width: 768px) {
  .coustomer-satisfaction {
    margin-top: 2vw;
  }
  .coustomer-satisfaction__title {
    font-size: 3.5rem;
  }
  .coustomer-satisfaction__image {
    display: inline;
    margin: 0 0 10px;
    width: 15rem;
  }
  .coustomer-satisfaction__note {
    font-size: 1.5rem;
    margin-top: 1vw;
    font-weight:bold;
  }
}

.orange-block {
  background-color: #FFF1DF;
  margin-top: 5vw;
}
.orange-block__image {
  display: block;
}
.orange-block__text {
  font-size: 5vw;
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
  color: #ED6103;
  padding: 4vw 0;
}

@media screen and (min-width: 768px) {
  .orange-block {
    margin-top: 3vw;
  }
  .orange-block__image {
    display: block;
    margin:0 auto;
  }
  .orange-block__text {
    font-size: 3.5rem;
    padding: 1.5vw 0;
  }
}
.cv-merit__item__inner .btn:not(:nth-of-type(1)) {
  margin-top: 3vw !important;
}

.cv__tel__cauti {
  margin-top: 2vw;
}

.cv-merit-sp {
  padding-top: 4vw;
}
.cv-merit-sp .cv__read {
  text-align: center;
  font-weight: bold;
  font-size: 3.6vw;
  line-height: 1.7;
}
.cv-merit-sp .cv-merit__item {
  padding-top: 3vw;
}

/* レビュー */
.top-reason__voice {
  border-radius: 10px;
  padding: 50px 40px;
  background: #f9f9f9;
  margin-top: 5vw;
}


@media screen and (max-width: 768px) {
  .top-reason__voice {
    padding: 20px;
  }
}
.top-reason__voice__ttl {
  padding-left: 110px;
  position: relative;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .top-reason__voice__ttl {
    margin-bottom: 15px;
    padding-left: 60px;
  }
}
.top-reason__voice__ttl-txt {
  font-size: 2.2rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .top-reason__voice__ttl-txt {
    font-size: 1.5rem;
  }
}
.top-reason__voice__ttl-desc {
  font-size: 1.4rem;
}

.top-reason__voice__ttl-icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .top-reason__voice__ttl-icon {
    left: 0;
  }

  .top-reason__voice__ttl-icon img {
    max-width: 45px;
  }
}
.top-reason__voice__item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  border: 2px solid #fff;
}

@media screen and (max-width: 768px) {
  .top-reason__voice__item {
    padding: 10px;
  }
}
.top-reason__voice__item + .top-reason__voice__item {
  margin-top: 20px;
}

.top-reason__voice__item.biggerlink {
  transition: all 0.3s ease;
  cursor: pointer;
}

.top-reason__voice__item.biggerlink:hover {
  border: 2px solid #ed6103;
  background: rgba(237, 97, 3, 0.01);
}

.top-reason__voice__desc {
  font-weight: bold;
  color: #ed6103;
  line-height: 1.4;
  margin-bottom: 5px;
}

.top-reason__voice__desc a {
  color: #ed6103;
  text-decoration: none;
}

.top-reason__voice__detail {
  display: flex;
  align-items: center;
}

.top-reason__voice__evaluation img {
  width: 80px;
  display: block;
}

.top-reason__voice__evaluation > * + * {
  margin-left: 3px;
}

.top-reason__voice__evaluation .-point,
.top-reason__voice__evaluation .-point-no {
  font-size: 1.6rem;
  width: 1em;
  height: 1em;
  overflow: hidden;
  text-indent: -9999px;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-reason__voice__evaluation .-point,
.top-reason__voice__evaluation .-point-no {
    font-size: 1.4rem;
  }
}
.top-reason__voice__evaluation .-point::before,
.top-reason__voice__evaluation .-point-no::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-family: "icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}

.top-reason__voice__evaluation .-point {
  color: #FFAB00;
}

.top-reason__voice__evaluation .-point::before {
  color: #FFAB00;
}

.top-reason__voice__evaluation .-point-no {
  color: #B7B7B7;
}

.top-reason__voice__evaluation .-point-no::before {
  color: #B7B7B7;
}

.top-reason__voice__name {
  line-height: 1.4;
  margin-left: 10px;
  margin-top: 2px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .top-reason__voice__name {
    font-size: 1.2rem;
  }
}
/* レビュー */
/* レスポンシブ用表示切り分け */
@media screen and (min-width: 768px) {
  /* pc only */
  .sp {
    /* SPのみ表示する */
    display: none !important;
  }
}
/* pc only */
@media screen and (max-width: 767px) {
  /* sp only */
  .pc {
    /* PCのみ表示する */
    display: none !important;
  }
}
/* sp only */
@media screen and (max-width: 1000px) {
  /* pc big-window only */
  .pc-big {
    /* PCの、大きいウィンドウのみ表示する */
    display: none !important;
  }
}
/* pc big-window only */
/* 前原追加 end 2021/09/02 */;


.top-reason__voice__evaluation .-point-no::before {
  color: #B7B7B7;
}

.top-reason__voice__name {
  line-height: 1.4;
  margin-left: 10px;
  margin-top: 2px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .top-reason__voice__name {
    font-size: 1.2rem;
  }
}
/* レビュー */
/* レスポンシブ用表示切り分け */
@media screen and (min-width: 768px) {
  /* pc only */
  .sp {
    /* SPのみ表示する */
    display: none !important;
  }
}
/* pc only */
@media screen and (max-width: 767px) {
  /* sp only */
  .pc {
    /* PCのみ表示する */
    display: none !important;
  }
}
/* sp only */
@media screen and (max-width: 1000px) {
  /* pc big-window only */
  .pc-big {
    /* PCの、大きいウィンドウのみ表示する */
    display: none !important;
  }
}
/* pc big-window only */
/* 前原追加 end 2021/09/02 */
