@charset "UTF-8";

body {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;/*Chrome,Safari*/
  -ms-text-size-adjust: 100%;/*EgdeMobile*/
  -moz-text-size-adjust: 100%;/*firefox*/
}
html, body, input, option, select, textarea {
/*  font-family: ヒラギノ角ゴ Pro,Hiragino Kaku Gothic Pro,メイリオ,Meiryo,Osaka,ＭＳ Ｐゴシック,MS PGothic,sans-serif;*/
  font-family: 'Montserrat','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',Meiryo,メイリオ,Osaka,'MS PGothic',arial,helvetica,sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #333;
}
blockquote, body, button, dd, div, dl, dt, embed, fieldset, form, li, object, p, pre, table, td, th {
  font-weight: 600;
}
/* PC */
@media only screen and (min-width: 769px){}
/* other */
@media only screen and (max-width: 1540px) and (max-height: 740px) {
/*
  html, body, input, option, select, textarea {
    font-size: 13px;
  }
*/
}
/* SP */
@media only screen and (max-width: 768px){
/*
  html, body, input, option, select, textarea {
    font-size: 3.5vw;
  }
*/
}

/* ------------------------------------------------------------------------------------------
 Common
------------------------------------------------------------------------------------------ */
.overtop_attent {
  display: none;
}
.container {
  max-width: 1280px;
}
/* PC */
@media only screen and (min-width: 769px){}
/* other */
@media only screen and (max-width: 1540px) and (max-height: 740px) {
  .container {
    max-width: 980px;
  }
}
/* SP */
@media only screen and (max-width: 768px){
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Section
---------------------------------------------*/
.main {
  overflow: hidden;
}
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.section-title-sub {
  font-size: 1.6rem;
}
.section-title small {
  display: block;
  font-size: 0.65em;
  font-weight: 700;
}
.subsection {
  padding-top: 50px;
  padding-bottom: 50px;
}
.attention {
  font-weight: normal;
}
/* SP */
@media only screen and (max-width: 768px){
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .section-title-sub {
    font-size: 1.0rem;
  }
}

/* Text
---------------------------------------------*/
.font-oswald {
  font-family: 'Oswald', sans-serif;
}
.font-opensans {
  font-family: 'Open Sans', sans-serif;
}
.textcolor-red {
  color: #C91E1E;
}
.textcolor-green {
  color: #059881;
}
.textcolor-orange {
  color: #EF7700;
}
.textcolor-gray {
  color: #059881;
}
.textdeco-underline {
  text-decoration: underline;
}

/* Display
---------------------------------------------*/
.flex {
  display: flex;
}
.none {
  display: none;
}

/* Marker
---------------------------------------------*/
.marker-red {background:linear-gradient(transparent 60%, #C70C18 60%);}
.marker-yellow {background:linear-gradient(transparent 60%, #ffe000 60%);}
.marker-beige {background:linear-gradient(transparent 60%, #EEE0C3 60%);}

/* Other
---------------------------------------------*/

/* ------------------------------------------------------------------------------------------
 Layout
------------------------------------------------------------------------------------------ */
/* Header
---------------------------------------------*/
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  background-color: #fff;
  height: 80px;
}
.header-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
}
.header-cta-tel {
  margin-right: 20px;
  text-align: right;
}
.header-cta-tel-icon {
  display: inline-block;
  width: 25px;
  vertical-align: middle;
}
.header-cta-tel-text {
  display: block;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
  font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',Meiryo,メイリオ,Osaka,'MS PGothic',arial,helvetica,sans-serif;
}
.header-cta-tel-num {
  line-height: 1;
  color: #059881;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  vertical-align: middle;
}
.header-cta-mail-icon {
  fill: #fff;
  width: 23px;
  height: 23px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.header-cta-arrow-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  top: -2px;
}
/* PC */
@media only screen and (min-width: 769px){
  .header-cta-tel-text {
    color: #333;
  }
  .header-cta-tel {
    pointer-events: none;
  }
  .header-cta-mail {
    background-color: #EF7700;
    width: 232px;
    text-align: center;
    color: #fff;
    padding: 10px 0;
    border-radius: 70px;
    box-shadow: 0 4px 1px #b15800;
  }
  .header-cta-mail-icon {
    top: -2px;
  }
/* アフィリエイト用ヘッダー */
  .header-cta.affiliate {
    align-items: flex-end;
  }
  .header-cta-tel-area.affiliate {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .header-cta-tel-area.affiliate .header-cta-tel-text {
    text-align: right;
    width: 100%;
    margin-right: 20px;
    font-size: 14px;
  }
  .header-cta-tel-area.affiliate .header-cta-tel {
    background-color: #059881;
    width: 232px;
    text-align: center;
    color: #fff;
    padding: 10px 0;
    border-radius: 70px;
    box-shadow: 0 4px 1px #005534;
    pointer-events: auto;
  }
  .header-cta-tel-area.affiliate .header-cta-tel-icon {
    margin-right: 5px;
    top: -2px;
    width: 21px;
  }
  .header-cta-tel-area.affiliate .header-cta-tel-icon .st0 {
    fill: #ffffff;
  }

}
/* SP */
@media only screen and (max-width: 768px){
  .header-top {
    height: auto;
  }
  .header-cta {
    padding-right: 0;
  }
  .header-cta-tel {
    font-size: 10px;
    font-weight: 600;
    color: #333333;
    display: block;
    width: 100px;
    text-align: center;
    margin-right: 0;
    padding: 10px 0 5px;
    border-left: 1px solid #e5e5e5;
    order: 1;
  }
  .header-cta-tel .sp {
    font-size: 0.8rem;
  }
  .header-cta-tel-icon {
    display: block;
    width: 30px;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5px;
    fill: #059881;
  }
  .header-cta-tel-icon .st0 {
    fill: #059881;
  }
  .header-cta-mail {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333333;
    width: 120px;
    text-align: center;
    padding: 10px 0 5px;
    border-left: 1px solid #e5e5e5;
    order: 2;
  }
  .header-cta-mail-icon {
    fill: #EF7700;
    display: block;
    width: 30px;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5px;
  }
}

/* MV
---------------------------------------------*/
.mv {
  background-color: #F2F8F7;
}
.headerContents {}

.headerContents .container {
  max-width: 1280px;
/*  height: 100%;*/
  padding-left: 0;
  padding-right: 0;
}
.headerContents .container img {
  width: 1240px;
  margin: auto;
}
/* SP */
@media only screen and (max-width: 768px){
  .mv {}
  .headerContents {}
  .headerContents .container {
    padding: 0;
  }
}

/* Important
---------------------------------------------*/
.important {
  background-color: #FFDEDD;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 11.5px;
  padding-bottom: 11.5px;
}
.important-item {
}
.important-item-title {
  background-color: #C91E1E;
  color: #fff;
  display: inline-block;
  padding: 3px 8px;
  font-size: 0.75rem;
  border-radius: 3px;
  font-weight: normal;
}
.important-item-data {
  display: inline-block;
  font-size: 0.75rem;
  margin-left: 5px;
}
.important-item-data a {
  color: #C91E1E;
  text-decoration: underline;
  font-weight: normal;
}

/* Campaign
---------------------------------------------*/
.campaign {
  padding-top: 30px;
  padding-bottom: 130px;
}
.campaign-list {
  display: flex;
  align-items: initial;
  justify-content: space-between;
  flex-wrap: wrap;
}
.campaign-list-item {
  width: 32%;
}
.campaign-item-text {
  margin-top: 10px;
}
.campaign-list-item_offer {order:2;}
.campaign-list-item_cm {order:1;}
.campaign-list-item_shucho {order:3;}
.campaign .slick-dots {
  bottom: -35px;
}
.campaign-modal-box {
  color: #333;
}
.modaal-inner-wrapper {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.modaal-content-container {
  padding: 0px !important;
}
/* SP */
@media only screen and (max-width: 768px){
  .campaign {
    padding-bottom: 130px!important;
  }
  .campaign .container {
    padding-left: 0;
    padding-right: 0;
  }
  .campaign-list-item {
    margin-left: 5px;
    margin-right: 5px;
  }
  .campaign-list-item_offer {order:1;}
  .campaign-list-item_cm {order:2;}
  .campaign-list-item_shucho {order:3;}
}
/* gopla-soaring
---------------------------------------------*/
.gopla-soaring.section {
  background-color: #F2F8F7;
  padding-top: 80px!important;
}
.gopla-soaring .container {
  max-width: 840px!important;
}
/* SP */
@media only screen and (max-width: 768px){ 
  .gopla-soaring.section {
      padding-top: 50px!important;
    }
}
/* About
---------------------------------------------*/
.about {
  background-color: #F2F8F7;
}
.about .section-title {}
.about .section-title span {
  display: block;
}
.about .section-title small {
  font-size: 2.2rem;
  display: inline-block;
  color: #059881;
  letter-spacing: 0.1em;
}
.about-list {
  margin-left: auto;
  margin-right: auto;
}
.about-list-item {}
.about-item-img {
  border: 3px solid #333333;
  background-color: #fff;
}
.about-item-img img {
  margin: auto;
}
.about-item-text {
  text-align: center;
  font-weight: 600;
}
.about-item-text span {
  color: #EF7700;
}
/* PC */
@media only screen and (min-width: 769px){
  .about-list {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin-top: 40px;
  }
  .about-list-item {
    width: 48%;
  }
  .about-item-img {
    padding: 8px;
  }
  .about-item-text {
    margin-top: 20px;
    font-size: 1.3rem;
  }
}
/* SP */
@media only screen and (max-width: 768px){
  .about .container {}
  .about .section-title small {
    font-size: 1.6rem;
  }
  .about-list {
    margin-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .about-item-img {
    padding: 5px;
  }
  .about-item-text {
    margin-top: 15px;
    font-size: 1.0rem;
  }
  .about-list-item:nth-of-type(2) {
    margin-top: 30px;
  }
}
/* Unit01
---------------------------------------------*/
.unit01 {
  background-color: #fff;
}
.unit01 .section-title {
  font-size: 1.6rem;
  line-height: 1.5;
}
.unit01 .section-title img {
  display: block;
  margin: auto;
  width: 112px;
  height: 33px;
  margin-bottom: 15px;
}

/* SP */
@media only screen and (max-width: 768px){
  .unit01 .section-title {
    font-size: 1.3rem;
  }
  .unit01 .section-title img {
    width: 86px;
    height: 25px;
  }
}

/* Result
---------------------------------------------*/
.result {
  overflow: hidden;
  background-color: #F2F8F7;
}
.result .section-title {}
.result .section-title small{
  display: inline-block;
  font-size: 2.2rem;
  color: #059881;
}
.result-list {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.result-list-item {
  width: 20%;
  background-color: #fff;
  opacity: 0.5;
  transform: scale(0.9);
  transition: all .35s ease-in-out;
  border-radius: 10px;
}
.result-list-item.slick-current {
  transform: scale(1);
  opacity: 1;
}
.result-item-image {}
.result-item-image img {
  border-radius: 10px 10px 0 0;
  width: 100%;
}
.result-item-title {
  font-family: ヒラギノ角ゴ Pro,Hiragino Kaku Gothic Pro,メイリオ,Meiryo,Osaka,ＭＳ Ｐゴシック,MS PGothic,sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
  margin: 49px 0;
}
.result .slick-dots {
  bottom: -50px;
}
.result .attention {
  font-size: 0.8rem;
  margin: auto;
  margin-top: 70px;
  padding: 0 40px;
/*  max-width: 900px;*/
}
.result .attention.w600 {
  max-width: 600px;
  margin: 10px auto 0;
}
.result .attention p {
  font-size: 0.8rem;
  font-weight: normal;
  max-width: 1240px;
  margin: auto;
}
.result-text {
  max-width: 600px;
  background-color: #fff;
  border: 3px solid #333333;
  border-radius: 5px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  margin: auto;
  margin-top: 50px;
  padding: 25px 29px;
}
.result-img {
  margin-top: 15px;
}
/* PC */
@media only screen and (min-width: 769px){
  .result .attention.w600 {
    padding: 0;
  }
}
/* SP */
@media only screen and (max-width: 768px){
  .result .section-title small{
    font-size: 1.6rem;
  }
  .result-list {
    margin-top: 50px;
  }
  .result-item-title {
/*    font-size: 0.6rem;*/
    font-size: 1.0rem;
    line-height: 1.5;
    margin: 40px 0;
    max-height: 100%;
  }

  .result .slick-dots {
    bottom: -40px;
  }
  .result .attention {
    font-size: 0.8rem;
    margin-top: 60px;
    padding: 0 20px;
/*
    padding-left: 1em;
    text-indent: -1em;
*/
  }
  .result .attention.w600{
    padding: 0 20px;
  }
  .result .attention p {
    font-size: 0.8rem;
    padding-left: 1em;
    text-indent: -1em;
  }
  .result-text {
    font-size: 1.2rem;
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px;
  }
  .result-img {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

}

/* MarketPrice
---------------------------------------------*/
/*【price-rate】に記載*/

/* System
---------------------------------------------*/
.system {
  background-color: #ffffff;
}
.system-selector {}
.system-selector-item {
  text-align: center;
  padding: 15px 0;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}
.system-selector-item.active {
  pointer-events: none;
  background-color: #F2F8F7;
}
.system-selector-item-sub {}
.system-selector-item-main {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 600;
  vertical-align: middle;
}
.system-selector-item-main svg {
  vertical-align: middle;
}
.system-selector-item-main svg .cls-1{
  fill: none;
}
.system-body-box--visit,
.system-body-box--store,
.system-body-box--delivery {
  background-color: #F2F8F7;
}
.system-selector-item-desc {
  display: none;
  margin-top: 10px;
}
.system-selector-item.active .system-selector-item-desc {
  display: block;
}
.system-body-box {
  padding: 50px;
  border-radius: 0 0 10px 10px;
}
/* PC */
@media only screen and (min-width: 769px){
  .system .section-title small {
    font-size: 1.6rem;
  }
  .system .section-title small.textcolor-green {
    display: inline-block;
    font-size: 2.2rem;
  }
  .system-selector {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
  }
  .system-selector-item {
    width: calc(100% / 3 - 11px);
  }
  .system-selector-item-sub {
    background-color: #ffffff;
    padding: 4px 2px 2px 4px;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: 12px;
    max-width: 210px;
  }
  .system-selector-item.active .system-selector-item-main {
    color: #EF7700;
  }
  .system-selector-item-main svg {
    width: 48.5px;
    height: 41.7px;
    top: -3px;
  }
  .system-selector-item-main svg .cls-2{
    fill: #333;
    fill-rule: evenodd;
  }
  .system-selector-item.active .system-selector-item-main svg .cls-2 {
    fill: #EF7700;
  }
  .system-selector-item--visit,
  .system-selector-item--store,
  .system-selector-item--delivery {
    background-color: #DCEDEA;
  }
  .system-body-box--store,
  .system-body-box--delivery {
    display: none;
  }
}
/* SP */
@media only screen and (max-width: 768px){
  .system .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .system .section-title small {
    font-size: 1.3rem;
  }
  .system .section-title small.textcolor-green {
    display: inline-block;
    font-size: 1.6rem;
  }
  .system-selector {
    margin-top: 50px;
  }
  .system-selector-item {
    width: 100%;
    padding: 15px;
    text-align: left;
    border-radius: 5px;
/*    border-bottom: 2px solid #F2E8D3;*/
  }
  .system-selector-item.accordion-trigger--active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 2px solid #ffffff;
  }
  .system-selector-item-sub {
  }
  .system-selector-item-main {
    font-size: 1.5rem;
    color: #333333;
  }
  .system-selector-item-main:after {
    border-width: 6px 5px 0 5px;
    top: calc(50% - 3px);
  }
  .system-selector-item.active .system-selector-item-desc {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 0;
  }
  .system-selector-item-main svg {
    width: 28px;
    height: 24px;
    top: -3px;
  }
  .system-selector-item-main svg .cls-2{
    fill: #333333;
    fill-rule: evenodd;
  }
  .system-selector-item.accordion-trigger:after {
    content: "";
    background-image: url(../../img/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 9px;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
  }
  .system-selector-item.accordion-trigger--active:after {
    background-image: url(../../img/arrow.svg);
    transform: rotateZ(180deg);
  }
  .system-body {
    margin-top: 30px;
  }
  .system-selector-item--visit,
  .system-selector-item--store,
  .system-selector-item--delivery {
    background-color: #DCEDEA;
  }
  .system-selector-item--store,
  .system-selector-item--delivery {
    margin-top: 15px;
  }
  .system-body-box--visit,
  .system-body-box--store,
  .system-body-box--delivery {
    display: none;
  }
  .system-body-box {
    padding: 30px 15px;
  }
}

/* System Visit
---------------------------------------------*/
.system-body-box--visit {}
.system-visit-about {
/*  background-color: #fff;*/
  text-align: center;
}
.system-visit-about-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.system-visit-about-title small.textcolor-orange {
  font-size: 2.2rem;
}
.system-visit-about-desc {
  font-weight: normal;
}
/* PC */
@media only screen and (min-width: 769px){
  .system-visit-about {
    border-radius: 10px;
  }
  .system-visit-about-desc {
    padding: 0 200px;
  }
}
/* SP */
@media only screen and (max-width: 768px){
  .system-visit-about {
    border-radius: 5px;
  }
  .system-visit-about-title {
    font-size: 1.3rem;
  }
  .system-visit-about-title small.textcolor-orange {
    font-size: 1.3rem;
  }
  .system-visit-about-desc {
    margin-top: 10px;
    letter-spacing: 0.05rem;
    text-align: left;
  }
}
/* System Store
---------------------------------------------*/
/* /inc/store-search-link.php の個別スタイル */
.store-search-link-lead span.text-color {
  color: #EF7700;
}
/* End: /inc/store-search-link.php の個別スタイル */

/* System Delivery
---------------------------------------------*/
.system-delivery-about {
/*  background-color: #fff;*/
  border-radius: 10px;
  text-align: center;
}
.system-delivery-about-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.system-delivery-about-title small.textcolor-orange {
  font-size: 2.2rem;
}
.system-delivery-about-desc {
  font-weight: normal;
}
.delivery-disabled {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-top: 50px;
}
.delivery-disabled-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.delivery-disabled-title:before {
  content: "";
  display: inline-block;
  background-image: url(../img/sec6-caution-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  vertical-align: text-bottom;
  margin-right: 10px;
}
.delivery-disabled-subtitle {
  text-align: center;
  color: #79af9b;
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 10px;
}
.delivery-disabled-text {
  text-align: center;
  margin-top: 10px;
}
.delivery-disabled-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.delivery-disabled-list-item {}
.delivery-disabled-item-name {
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
}
/* PC */
@media only screen and (min-width: 769px){
  .system-delivery-about-desc {
    padding: 0 150px;
  }
}
/* SP */
@media only screen and (max-width: 768px){
  .system-delivery-about {}
  .system-delivery-about-title {
    font-size: 1.3rem;
    letter-spacing: -0.01rem;
  }
  .system-delivery-about-title small.textcolor-orange {
    font-size: 1.3rem;
  }
  .system-delivery-about-desc {
    letter-spacing: 0.03rem;
    text-align: left;
  }
  .delivery-disabled {
    padding: 10px;
  }
  .delivery-disabled-text {
    text-align: left;
  }
  .delivery-disabled-list-item {
    width: 33.3%;
  }
}

/* System Flow
---------------------------------------------*/
.flow-title {
  margin-top: 50px;
}
.flow-title small {
  font-size: 1.3rem;
}
.flow-title span {
  font-size: 1.9rem;
}
.flow-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: transparent;
  margin-top: 30px;
}
.flow-list-item {
  width: 23%;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
}
.flow-list-item:before {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  display: block;
  left: 0;
  line-height: 1;
}
.flow-list-item:nth-of-type(1):before {content: "01";}
.flow-list-item:nth-of-type(2):before {content: "02";}
.flow-list-item:nth-of-type(3):before {content: "03";}
.flow-list-item:nth-of-type(4):before {content: "04";}
.flow-item-image {}
.flow-item-image img {
  margin-left: auto;
  margin-right: auto;
}
.flow-item-title {
  text-align: center;
  color: #333;
  font-weight: 600;
  font-size: 1.2rem;
}
.system-body-box .attention {
  font-size: 0.8rem;
  margin-top: 30px;
  font-weight: normal;
  line-height: 2;
}
.system-body-box .attention p {
  font-weight: normal;
  padding-left: 1em;
  text-indent: -1em;
}
/* SP */
@media only screen and (max-width: 768px){
  .flow-title span {
    font-size: 1.6rem;
  }
  .flow-list-item {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    margin-top: 3%;
  }
  .flow-list-item:first-child {
    margin-top: 0;
  }
  .flow-list-item:before {
    text-align: left;
    padding-left: 39%;
    top: 42%;
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    font-family: 'Montserrat', Bold;
    width: auto;
  }
  .flow-item-image {
    width: 25%;
  }
  .flow-item-title {
    font-size: 16px;
    padding-top: 1.5%;
    margin-left: calc(15% + 19px);
  }
  .system-body-box .attention p {
    padding-left: 1em;
    text-indent: -1em;
    font-weight: normal;
  }
}

/* Review
---------------------------------------------*/
.review {
  background-color: #F2F8F7;
}
.review .section-title {
  font-size: 2.5rem;
}
.review .section-title small {
  font-size: 1.6rem;
}
.review-list-item {
  width: 32%;
  background-color: #fff;
  font-size: 1.2rem;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 80px;
  margin-left: 10px;
  margin-right: 10px;
}
.review-list-item:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 20px 0 0;
/*  border-color: #f2f3ee transparent transparent transparent;*/
  border-color: #fff transparent transparent transparent;
  position: absolute;
  bottom: -40px;
  left: calc(50% + 45px);
}
.review-list-item:after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  bottom: -80px;
  left: calc(50% - 50px);
}
.review-item-data {
/*  margin-top: 20px;*/
  font-size: 1.1rem;
  font-weight: normal;
}
.review-item-author-1:after {background-image: url(../img/icon-female-1_a.svg);}
.review-item-author-2:after {background-image: url(../img/icon-female-5_b.svg);}
.review-item-author-3:after {background-image: url(../img/icon-female-2_a.svg);}
.review-item-author-4:after {background-image: url(../img/icon-female-6_b.svg);}
.review-item-author-5:after {background-image: url(../img/icon-female-3_a.svg);}
.review-item-author-6:after {background-image: url(../img/icon-female-7_b.svg);}
.review-item-author-7:after {background-image: url(../img/icon-female-4_b.svg);}
.review-item-author-8:after {background-image: url(../img/icon-female-8_a.svg);}
.review-item-title {
  font-weight: 600;
}
.review-item-data {}
.review-list .slick-track {
  display: flex !important;
  align-items: flex-end;
}
.review .slick-dots {
  bottom: -50px;
}
.review .attention {
  font-size: 0.8rem;
  margin-top: 70px;
  line-height: 2;
}
.review .attention p {
  font-weight: normal;
}
/* PC */
@media only screen and (min-width: 769px){
  .review-list {
    margin-top: 50px;
  }
  .review-item-title {
    font-size: 1.1rem;
  }
}
/* SP */
@media only screen and (max-width: 768px){
  .review .section-title {
    font-size: 1.6rem;
  }
  .review .section-title small {
    font-size: 1.3rem;
  }
  .review-list {
    margin-top: 40px;
  }
  .review-list-item {
    padding: 30px 20px;
  }
  .review-item-title {
    font-size: 1.0rem;
  }
  .review-item-data {
    font-size: 0.9rem;
  }
  .review .attention {
    padding-left: 20px;
    padding-right: 20px;
  }
  .review .attention p {
    padding-left: 1em;
    text-indent: -1em;
    font-weight: normal;
  }
}
/* Problem
---------------------------------------------*/
.problem {
  background-color: #fff;
}
.problem-list {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
.problem-list-item {
  max-width: 800px;
  margin: auto;
  margin-top: 20px;
  background-color: #DCEDEA;
  border-radius: 5px;
}
.problem-list-title {
  padding: 25px 7%;
  font-size: 1.3em;
  font-weight: bold;
  text-align: justify;
  text-justify: inter-ideograph;
}
.problem-list-title:before {
  content: "Q.";
  color: #059881;
  margin-right: 10px;
  position: absolute;
  left: 20px;
  top: calc(50% - 0.7em);
}
.problem-list-title.accordion-trigger:after {
  content: "";
  background-image: url(../../img/arrow02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 12px;
  position: absolute;
  top: calc(50% - 5px);
  right: 25px;
}
.problem-list-title.accordion-trigger--active:after {
  background-image: url(../../img/arrow02.svg);
  transform: rotateZ(180deg)
}
.problem-list-desc {
  padding: 0 20px 20px;
  text-align: justify;
  text-justify: inter-ideograph;
  font-weight: normal;
  p {
    margin-top: 10px;
    font-size: clamp( 1px, calc(100vw * 13 / var(--lpw)), 13px );
    font-weight: 400;
    line-height: 1.5;
    padding-left: 1em;
    text-indent: -1em;
  }
}
.accordion-trigger {
  cursor: pointer;
}
/* SP */
@media only screen and (max-width: 768px){
  .problem .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .problem-list {
    margin-top: 30px;
  }
  .problem-list-item {
    margin-top: 15px;
  }
  .problem-list-title {
    padding: 20px 15% 20px 10%;
    font-size: 1.0rem;
    font-weight: bold;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  .problem-list-title:before {
    left: 10px;
    top: 1.16rem;
  }
  .problem-list-title.accordion-trigger:after {
    width: 15px;
    height: 9px;
    top: calc(50% - 5px);
    right: 15px;
  }
  .problem-list-title.accordion-trigger--active:after {
    top: calc(50% - 10px);
  }
  .problem-list-desc {
    p {
      font-size: 12px;
    }
  }
}

/* Item
---------------------------------------------*/
.item {
  background-color: #F2F8F7!important;
}
.item .section-title small {
  font-size: 1.6rem;
}
.item .section-title small.textcolor-red {
  display: inline-block;
  font-size: 2.2rem;
  color: #059881;
}
.item-list-item svg {
  margin-left: auto;
  margin-right: auto;
}
.item-list-item svg .cls-1 {
  fill: #fff;
}
.item-list-item svg .cls-2 {
  fill: #EF7700!important;
  fill-rule: evenodd;
}
/* PC */
@media only screen and (min-width: 769px){
  .item.section {
    padding-bottom: 150px;
  }
}
/* SP */
@media only screen and (max-width: 768px){
  .item .section-title {
    font-size: 1.5rem!important;
  }
/*
  .item .section-title small {
    font-size: 1.0rem;
  }
  .item .section-title small.textcolor-red {
    font-size: 1.3rem;
  }
*/
  .item-list-item:nth-child(n+5) {
    margin-top: 20px!important;
  }
  .item-list-item svg {
    width: 75px;
    height: 75px;
  }
  .item-name {
    font-size: 0.7rem!important;
  }
  .item .attention {
    margin-top: 30px!important;
    font-size: 1.2rem;
  }
}

/* CTA
---------------------------------------------*/
/* base
-----------------------*/
.cta-011 {
  background-color: #DCEDEA!important;
}
/* title
-----------------------*/
.cta-011 .cta-title {
  border: 3px solid #333333!important;
}
.cta-011 .cta-title small {
  color: #333333!important;
}
.cta-011 .cta-title:after {
  border-top: 25px solid #333333!important;
}
/* tel
-----------------------*/
.cta-011 .cta-tel-link .number {
  color: #059881!important;
}
.cta-011 .cta-tel-link .number::before {
  background: url(../../img/cta/cta-icon-tel-green-5.svg) no-repeat!important;
}
.cta-011 .cta-tel-text small {
  color: #EF7700!important;
}
@media only screen and (min-width: 1281px) {
  .cta-011 .cta-tel-link .number::before {
    background: url(../../img/cta/cta-icon-tel-green-5.svg) no-repeat!important;
  }
}
@media only screen and (max-width: 768px){
  .cta-011 .cta-tel-link {
    background-color: #059881!important;
    box-shadow: 0 7px 1px #005534!important;
  }
}
/* web
-----------------------*/
.cta-011 .cta-web-item {
  background-color: #EF7700!important;
  box-shadow: 0 calc(100vw * 7 / var(--lpw)) 1px #b15800!important;
}
.cta-011 .cta-web-item:active {
  box-shadow: 0 calc(100vw * 5 / var(--lpw)) 1px #b15800!important;
}
.cta-011 .cta-mail-icon {
  fill: #fff!important;
}
@media only screen and (min-width: 1281px) {
  .cta-011 .cta-web-item {
    box-shadow: 0 7px 1px #b15800!important;
  }
  .cta-011 .cta-web-item:active {
    box-shadow: 0 5px 1px #b15800!important;
  }
}
@media only screen and (max-width: 768px){
  .cta-011 .cta-web-item {
    box-shadow: 0 7px 1px #b15800!important;
  }
}

/* Contact Form
---------------------------------------------*/
.contactform {}
.contactform-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3%;
}
.contactform-item-title {
  width: 30%;
}
.contactform-item-title:before {
  content: "任意";
  color: rgb(255, 255, 255);
  margin-right: 10px;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0px;
  line-height: 1;
  background: linear-gradient(135deg, rgb(121, 155, 203) 0px, rgb(121, 155, 203) 50%, rgb(99, 124, 165) 50%, rgb(99, 124, 165) 100%);
  padding: 5px 10px;
  border-radius: 2px;
}
.contactform-item-title--require:before {
  content: "必須";
  background: linear-gradient(135deg, rgb(248, 86, 86) 0px, rgb(248, 86, 86) 50%, rgb(211, 74, 74) 50%, rgb(211, 74, 74) 100%);
}
.contactform-item-data {
  width: 70%;
}
.contactform-item-data--name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contactform-input-text {
  width: 100%;
  height: 50px;
  background-color: #f2f3ee !important;
  border: none;
  border-radius: 5px;
  padding: 0 10px;
  resize: vertical;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contactform-input-text--name {
  width: 49%;
}
.contactform-input-text--remarks {
  padding: 10px;
  height: 150px;
}
.contactform, .contact_form-agree, .contact_form-button-box {
  margin-top: 30px;
}
.contact_form__button {
  background: none;
  text-shadow: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  text-align: center;
  background-color: #EF7700;
  color: #fff;
  font-weight: 600;
  padding: 25px 0 26px;
  font-size: 1.5rem;
  border-radius: 70px;
  box-shadow: 0 7px 1px #b15800;
  margin-top: 10px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.contact_form-privacy_policy {
  padding: 30px;
}

/* SP */
@media only screen and (max-width: 768px){
  .contact .section-title {
    font-size: 1.3rem;
  }
  .contactform-item {
    margin-top: 20px;
  }
  .contactform-item:first-child {
    margin-top: 0;
  }
  .contactform-item-title {
    width: 100%;
  }
  .contactform-item-data {
    width: 100%;
    margin-top: 10px;
  }
}

/* Other
---------------------------------------------*/
#chatplusview.closed #outline #eye_catcher {
  display: none!important;
}
.chatbot {
  width: 142px;
  height: 142px;
  background-color: #fff;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  padding: 30px 0;
  border: 3px solid #333333;
  border-radius: 90px;
  box-shadow: 0 5px 0 #333333;
  color: #333333;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
}
.chat-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  fill: #333333;
}
.chatbot:active {
  box-shadow: 0 5px 0 #608c7c;
  bottom: 15px;
}
.stalking-navi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0px;
  z-index: 2;
  background-color: #fff;
  border-top: 1px solid #333333;
}
.stalking-navi-item {
  width: calc(100% / 3);
  font-size: 0.8rem;
  text-align: center;
  font-weight: bold;
  color: #333333;
  padding: 10px 0 5px;
  border-left: 1px solid #333333;
}
.stalking-navi.dual-navi .stalking-navi-item {
  width: calc(100% / 2);
}
.stalking-navi.single-navi .stalking-navi-item {
  width: 100%;
}
.stalking-navi-item:first-child {
  border-left: 0;
}
.stalking-navi-item-icon {
  display: block;
  width: 25px;
  height: 25px;
  margin-left: auto;
  margin-right: auto;
  fill: #79af9b;
}
.stalking-navi-item-icon.tel {fill: #059881;}
.stalking-navi-item-icon.mail {fill: #EF7700;}
.stalking-navi-item-icon.chat {fill: #333333;}
.slick-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
  background-color: #fff;
}
.campaign .slick-dots li button:before {
  background-color: #c0c0c0;
}
.slick-dots li.slick-active button:before {
  background-color: #333;
  opacity: 1;
}

/* modal
---------------------------------------------*/
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .cta.modal-cta .container {
    padding-top: 0;
  }
}
/* SP */
@media only screen and (max-width: 768px){
  .cta.modal-cta .container {
    padding: 0 20px;
  }
}
/* offer
---------------------------------------------*/
.offer {}
.offer-desc {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 30px;
  padding: 0 10px;
}
.offer-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  margin-top: 50px;
}
.offer-target-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.offer-target-list-item {
  width: 15%;
}
.offer-target-item-image {
  border-radius: 50%;
  padding: 1.5%;
}
.offer-target-item-image--brand {
  padding: 17.5%;
}
.offer-target-item-name {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}
.offer-target-item-brand {
  padding: 3%;
}
.offer-summary {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.offer-summary-item {
    margin-top: 30px;
}
.offer-summary-item-title {
/*  color: #fff;*/
  padding: 5px 10px 2px;
  font-weight: 600;
  background-color: #ff4a00;
  line-height: 2;
}
.offer-summary-item-data {
  margin-top: 10px;
  font-weight: normal;
  font-size: 0.9rem;
}
.offer-data-list {
  list-style-position: outside;
  margin-left: 20px;
}
.offer-data-list li {
  font-weight: normal;
}
ul.offer-data-list {list-style-type: disc;}
ol.offer-data-list {list-style-type: decimal;}
.offer-data-list-item {}
.offer .cta {
  margin-top: 90px;
}
.offer .cta-title {
  top: -50px;
}
.offer-close {
  text-align: center;
  cursor: pointer;
  padding-bottom: 30px;
  background-color: #79af9b;
}
.offer-store-close {
  text-align: center;
  padding-bottom: 30px;
  cursor: pointer;
  margin-top: 30px;
}
.offer .cta-offer {
  display: none;
}

/* color theme */
.offer .cta,
.offer .offer-close {
  background-color: #F2E8D3;
}
.offer-summary-item-title,
.offer-target-item-image {
  background-color: #F2E8D3;
/*  background-color: #F50201;*/
}
.offer-target-item-name,
.offer .attention {
  color: #F50201;
}
.offer .cta-web-item,
.offer .cta-tel-icon,
.offer .cta-mail-icon {
  fill: #fff;
}

/* SP */
@media only screen and (max-width: 768px){
  .offer {
    font-size: 1.2rem;
  }
  .offer-title {
    margin-top: 30px;
  }
  .offer-target-list {
    padding-left: 10px;
    padding-right: 10px;
  }
  .offer-target-list-item {
    margin-top: 20px;
    width: 30%;
  }
  .offer-target-list-item:nth-of-type(-n + 3) {
    margin-top: 0;
  }
  .offer-target-item-name {
    margin-top: 5px;
  }
  .offer .cta {
    padding-top: 90px;
  }
  .offer .cta-title {
    padding: 15px 20px;
    font-size: 1.3rem;
  }
  .offer .cta-tel-text.sp {
    font-size: 0.8rem;
  }
  .offer .attention {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }
  .offer .cta-tel-link {
    color: #fff;
  }
}

/* Area
---------------------------------------------*/
.area-section {
  margin-top: 30px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.area-section-title {
  background-color: #A8B11C;
  color: #fff;
  padding: 0 10px;
  font-weight: 600;
}
.area-section-data {
  margin-top: 10px;
}
.modal-container {
  max-width: 750px;
  margin-top: 50px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
/* SP */
@media only screen and (max-width: 768px){
  .area {
    font-size: 1.2rem;
  }
}

/* Voice
---------------------------------------------*/
.voice-section {
  margin-top: 30px;
}
.voice-section-title {
  background-color: #B48246;
  color: #fff;
  padding: 5px 10px;
  font-weight: 600;
}
.voice-section-data {
  margin-top: 10px;
  font-weight: normal;
  font-size: 0.9rem;
}
.voice-rate {
  margin-top: 10px;
}
.voice .cta {
  margin-top: 90px;
}
.voice .offer-close {
  background-color: #F2E8D3;
}
.voice .cta-tel-icon,
.voice .cta-mail-icon {
  fill: #F2E8D3;
}
.voice .cta-web-item,
.voice .cta-offer {
  color: #F2E8D3;
}

/* PC */
@media only screen and (min-width: 769px){}
/* SP */
@media only screen and (max-width: 768px){
  .voice {
    font-size: 1.2rem;
  }
  .voice .cta-tel-link {
/*    color: #663813;*/
  }
  .voice-section-title {
    padding: 5px 10px;
    font-size: 0.9rem;
  }
  .voice-section-data {
    font-size: 0.9rem;
    font-weight: normal;
  }
}

/* covid19
---------------------------------------------*/
.covid19 {
  padding: 50px;
}
.covid19-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: underline;
}
.covid19-date {
  font-size: 0.9rem;
}
.covid19-desc {
  margin-top: 30px;
}
.covid19-section {
  margin-top: 30px;
}
.covid19-section-title {
  font-size: 1.3rem;
}
.covid19-list {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 20px;
}
.covid19-list-item {}
.covid19-close {
  text-align: center;
  margin-top: 30px;
  cursor: pointer;
  text-decoration: underline;
}
/* SP */
@media only screen and (max-width: 768px){
  .covid19 {
    padding: 20px;
  }
  .covid19-title {
    font-size: 1.2rem;
  }
  .covid19-section-title {
    font-size: 1.1rem;
  }
  .covid19-desc {
    font-size: 1.0rem;
  }
  .covid19 p,
  .covid19 li {
      font-size: 1.0rem;
  }
}
/* PrivacyPolicy
---------------------------------------------*/
.modaal-privacypolicy .cta-tel {
  text-align: center;
  margin-top: 10px;
}
.modaal-privacypolicy .cta-tel-link {
  font-size: 4.5rem;
  font-weight: 600;
  font-family: 'Oswald', ヒラギノ角ゴ Pro,Hiragino Kaku Gothic Pro,メイリオ,Meiryo,Osaka,ＭＳ Ｐゴシック,MS PGothic,sans-serif;
  color: #b91b1b;
  line-height: 1;
}
.modaal-privacypolicy .cta-tel-link .pc {
  background-image: url(../../img/cta/cta_icon_tel_red.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 45px;
  padding-left: 75px;
}
.modaal-privacypolicy .cta-tel-text {
  display: block;
  color: #78410b;
  font-family: ヒラギノ角ゴ Pro,Hiragino Kaku Gothic Pro,メイリオ,Meiryo,Osaka,ＭＳ Ｐゴシック,MS PGothic,sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 10px;
}
.modaal-privacypolicy .cta-model {
  background-color: #E8F1EE;
}
.modaal-privacypolicy .cta-model .modaal-privacypolicy .cta-tel-link {
  color: #79af9b;
}
.privacypolicy-section-text {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
}
.privacypolicy-section-text  a {
  font-size: 0.9rem;
  color: #0033cc;
  text-decoration-line: underline;
}
.privacypolicy-close {
  text-align: center;
  margin-top: 30px;
  cursor: pointer;
  text-decoration: underline;
}
/* PC */
@media only screen and (min-width: 769px){
  .modaal-privacypolicy {
    padding: 60px 0 50px;
  }
  .modaal-privacypolicy .cta-tel-link {
    pointer-events: none;
  }
  .modaal-privacypolicy .cta-model .modaal-privacypolicy .cta-tel-icon {
    background-image: url(../img/icon-tel_mint_.svg);
  }
}
/* TABLET(CTA43のみ) */
@media only screen and (min-width: 769px) and (max-width: 900px){
  .modaal-privacypolicy .container {
    max-width: 769px;
  }
  .modaal-privacypolicy .cta-tel {
    margin-top: 30px;
  }
  .modaal-privacypolicy .cta-tel-link {
    font-size: 2.5rem;
  }
  .modaal-privacypolicy .cta-tel-link .pc {
    background-size: 30px;
    padding-left: 40px;
  }
  .modaal-privacypolicy .cta-tel-icon {
    width: 23px;
    height: 23px;
    margin-right: 10px;
    vertical-align: middle;
    fill: #fff;
    top: -2px;
  }
  .modaal-privacypolicy .cta-tel-text {
    font-size: 13px;
  }
}
/* SP-TABLET(CTA、CTA43のみ) */
@media only screen and (min-width: 420px) and (max-width: 768px){
  .modaal-privacypolicy {
    padding: 40px 0 30px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .modaal-privacypolicy .container {
    max-width: 400px;
  }
  .modaal-privacypolicy .cta-tel-link {
    display: block;
    text-align: center;
    background-color: #c90008;
    color: #fff;
    font-weight: 600;
    padding: 22px 0 16px;
    font-size: 22px;
    border-radius: 8px;
    box-shadow: 0 5px 0 rgba(158,0,0,1);
    margin-top: 30px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    vertical-align: bottom;
  }
  .modaal-privacypolicy .cta-tel-icon {
    width: 23px;
    height: 23px;
    margin-right: 10px;
    vertical-align: middle;
    fill: #fff;
    top: -2px;
  }
  .modaal-privacypolicy .cta-tel-text {
    font-size: 13px;
  }
  .modaal-privacypolicy .cta-model .modaal-privacypolicy .cta-tel:before {
    content: "";
    background-image: url(../img/sp_cta_model.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: calc(260 / 231 * 40%);
    width: 40%;
    height: auto;
    position: absolute;
    bottom: 70px;
    right: 0;
  }
}
/* SP */
@media only screen and (max-width: 419px){
  .modaal-privacypolicy {
    padding: 40px 0 30px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .modaal-privacypolicy .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .modaal-privacypolicy .cta-tel-link {
    display: block;
    text-align: center;
    background-color: #c90008;
    color: #fff;
    font-weight: 600;
    padding: 22px 0 16px;
    font-size: 19px;
    border-radius: 8px;
    box-shadow: 0 5px 0 rgba(158,0,0,1);
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    vertical-align: bottom;
  }
  .modaal-privacypolicy .cta-tel-icon {
    width: 23px;
    height: 23px;
    margin-right: 10px;
    vertical-align: middle;
    fill: #fff;
    top: -2px;
  }
  .modaal-privacypolicy .cta-tel-text {
    font-size: 12.6px;
  }
}

/*緊急電話番号変更対応 @20210506
---------------------------------------------*/
/*
.header {
  margin-top: 49px;
}
@media screen and (max-width:768px) {
    .header {
       margin-top: 66px;
    }
}*/
