@charset "utf-8";

/* リセット */


/* 共通CSS */

@media screen and (max-width: 768px) {
  body {font-size: 1.4rem;}
}

img {
  height: auto;
  line-height: 0;
  max-width: 100%;
}
input[type="checkbox"] {
  /*appearance: none;*/
}

@media screen and (max-width: 768px) {
  .pc {display: none !important;}
  .sp {display: block !important;}
}

/* レイアウト調整 */
@media screen and (max-width: 768px) {
  .flex{
    display: block;
    justify-content: space-between;
  }
}

/* テキスト調整 */
h2{
  font-size: 3.2rem;
  font-weight: bold;
  padding-bottom: 70px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  h2{
    font-size: 2.8rem;
    padding-bottom: 40px;
    line-height: 1.4;
  }
}

/* ヘッダー */
.header {
  /*background-color: #1d7871;
  background: url(../img/page/home/main_visual.png) no-repeat center top;
  background-size: 100% auto;*/
  width: 100%;
  height: 600px;
  margin: -30px auto 80px; /*0px auto 80px;から変更*/
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    height: auto;
    background-size: cover;
    margin-top:0;
  }
}

header dl.nav{
  display: flex;
  float: right;
}
header dl.nav dt{
  width:280px; /*180pxから変更*/
  height: 80px;
  display: inline-block;
  padding-top: 8px;
}
@media screen and (max-width: 768px) {
  header dl.nav {
    display: none;
  }
}

header nav {
  padding: 25px 0 0 0;
  max-width: 1120px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  header nav {
    display: none;
  }
}


.header #main-visual{
  /*padding-top: 78px;*/
  width: 650px;
  margin: 0 auto;
  color: #fff;
  position: relative; /*追記*/
  z-index: 10; /*追記*/
}
.header #main-visual #logo{
  /*  padding: 40px 0 30px;*/
  padding: 30px 0;
}
.header #main-visual p{
  font-feature-settings: "palt";
  margin-bottom: 20px;
  max-width: 50%;  line-height: 1.4;
}
.header #main-visual p.title{
  font-size: 3.6rem;
  font-weight: bold;
}
.header #main-visual p.lead{
  font-size: 1.8rem;
  margin-bottom: 30px;
  background-color: rgba(0,0,0,.3);
  padding: 15px;
  max-width: 56%;
  left: -10px;
  position: relative;
  border-radius: 5px;
}
.header #main-visual ul{
  display: flex;
  font-size: 2.2rem;
  line-height:1.4;
  color:#61727b;
}
.header #main-visual ul li{
  background: #fff url(../img/common/icon_check.png) no-repeat center 10px;
  background-size: auto;
  padding-top: 46px;
  border-top: 1px #fff solid;
  border-bottom: 1px #fff solid;
  margin-right: 20px;
  border-radius:200px;
  width:136px;
  height: 136px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .header #main-visual{
    width: 60%;
    padding: 0 20px 0 0;
    margin: 0 0 0 auto;
  }
  .header #main-visual #logo{
    padding: 20px 0 10px;
  }
  .header #main-visual #logo img{
    max-width: 90%;
  }
  .header #main-visual p{
    margin-bottom: 10px;
    left: 0;
  }
  .header #main-visual p.title{
    font-size: 2.2rem;
    max-width: 100%;
  }
  .header #main-visual p.lead{
    font-size: 1.4rem;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .header #main-visual ul{
    left: 0;
    justify-content: space-between;
    font-size: 1.5rem;
  }
  .header #main-visual ul li{
    margin: 0 0 20px 0;
    width:48%;
    height:auto;
    background-size: 30%;
    padding: 42px 0px 16px;
  }
}

.header #form_dl{
  background-color: #fff;
  padding: 40px;
  position: absolute;
  top: 100px; /*160pxから変更*/
  right: 70px; /*50pxから変更*/
  width: 40vw; /*480pxから変更*/
/*  height: 645px; */
  border-radius: 10px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .2);
  color: #000;
  z-index: 10; /* 追記 */
}
.header #form_dl dl dt span{
  color: #ff0000;
  font-size: 70%;
}
.header #form_dl dl dd{
  margin-bottom: 10px;
}
/* MW原本のチェックボックスは vertically 未指定=デフォルトの横並び(horizontal-item)。
   CF7互換CSS(style-append.css)の .wpcf7-list-item{display:block}は他フォーム
   (vertical-item相当)向けのため、ここだけ横並びに戻す */
.header #form_dl .wpcf7-list-item {
  display: inline;
}
.header #form_dl .wpcf7-list-item + .wpcf7-list-item {
  margin-left: 10px;
}
/* style-append.cssの .wpcf7-form input[type="checkbox"]{width:20px;height:20px}
   は他フォーム向けの互換調整。本番のこのフォームは特にサイズ指定が無く
   ブラウザ既定(13px相当)のままなので、ここだけ打ち消す */
.header #form_dl input[type="checkbox"] {
  width: auto;
  height: auto;
}
/* MW原本(mw-wp-form/css/style.css) .mwform-checkbox-field input{margin-right:5px}相当。
   style-append.cssの9.5625pxは他フォーム向けのため、ここだけ本番の5pxに揃える */
.header #form_dl .wpcf7-list-item input[type="checkbox"] {
  margin-right: 5px;
}
.header #form_dl .wpcf7-list-item-label {
  max-width: none;
  font-size: 13px;
  letter-spacing: -1px;
  margin-left: -2px;
}
.header #form_dl dl dd input[type="text"],
.header #form_dl dl dd input[type="email"] {
  width: 100%;
  min-height: 44px;
  padding: 10px;
  background-color: #eff3f5;
  border: 0;
}
.header #form_dl dl dd textarea {
  background-color: #fff;
  width: 100%;
  padding: 10px;
}
.header #form_dl button {
  width: 100%;
  height: 70px;
  background-color: #f98d1e;
  margin: 0 auto;
  color: #fff;
  cursor: pointer;
  display: block;
  border: 0;
  margin-top: 5px;
  border-radius: 50px;
  font-size: 18px;
}

.link_privacy {
  display: inline-block;
  margin-top: 15px
}
.header #form_dl center p {
  margin-top: 0;
}
.header #form_dl .link_privacy {
  margin-top: 0;
}
.header #form_dl .wpcf7-spinner {
  display: none;
}
.header #form_dl .wpcf7-spinner.visible {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .header #form_dl {
    padding-bottom: 35px;
  }
}

@media screen and (max-width: 768px) {
  .header #form_dl{
    padding: 20px;
    position: relative; /* position: static; から変更 */
    top: 0;
    right: 0;
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}


/* コンテンツ */
.inner {
  width: 1120px;
  margin: 0 auto;
  padding:80px 0;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding:40px 20px;
  }
}
#point h1 {
  font-weight: 600;
  margin-bottom: 45px;
  text-align: left;
  padding-bottom:0;
  font-size: 36px;
  color: #49a19b;
  text-align: center;
  line-height: 165%;
}
#point h1 br:nth-child(1) {
  display: none;
}
#point h2{
  line-height: 1.8;
  margin-bottom: 0;
  text-align: left;
  padding-bottom:0;
}
#point video{
  width:100%;
  max-width:900px;
  margin:0 auto 50px;
  display:block;
}
#point .title{
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}
#point ul.graybox{
  display: flex;
  justify-content: space-between;
}
#point ul.graybox li{
  background-color: #eff3f5;
  padding: 40px 0;
  margin-right: 15px;
  border-radius: 6px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
#point ul.graybox li:nth-child(3){
  margin-right: 0;
}
#point ul.graybox li span{
  display: block;
  font-size: 1.4rem;
}
#point .mark{
  text-align: center;
  position: relative;
  top: 20px;
}
#point .pointbox{
  background-color: #c8e3e1;
  padding: 50px 90px 30px;
}
#point .pointbox ul{
  width: 455px;
}
#point .pointbox ul li{
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}
#point ul.graybox li:last-child(3){
  margin-bottom: 0;
}
#point .pointbox ul li dl{
  display: flex;
}
#point .pointbox ul li dl dd{
  width: 80%;
}
@media screen and (max-width: 768px) {
  #point h1 {
    font-size: 26px;
    margin-bottom: 30px;
  }
#point h1 br:nth-child(1) {
  display: block;
}
  #point ul.graybox{
    display: block;
  }
  #point ul.graybox li{
    padding: 40px 20px;
    margin-right: 0;
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  #point .pointbox{
    padding: 50px 15px 30px;
  }
  #point .pointbox ul{
    width: 100%;
  }
  #point .pointbox ul li{
    padding: 20px 15px;
    font-size: 1.6rem;
    height: auto;
  }
  #point .pointbox ul li dl dd{
    width: 95%;
    margin-left: 5%;
    text-align: left;
  }
}

#service {
  background-color: #eff3f5;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
#service ul.service_point{
  margin: 0 auto;
  flex-wrap: wrap;
}
#service ul.service_point li{
  width: 23.8%;
  border-radius: 10px;
  text-align: center;
  background-color: #fff;
  margin: 0 1.5% 1.5% 0;
  padding: 26px 10px;
  font-size: 1.4rem;
}
#service ul.service_point li:nth-child(4n){
  margin-right: 0;
}
#service ul.service_point li p.title{
  font-weight: bold;
  margin-top: 5px;
  font-size: 20px; /*追記*/
}
@media screen and (max-width: 768px) {
  #service ul.service_point{
    margin: 0 auto;
    flex-wrap: block;
  }
  #service ul.service_point li{
    width: 100%;
    margin-bottom: 20px;
  }
}

#feature .feature_box{
  clear: both;
  margin-bottom: 140px;
  display: inline-block; /*display: block;から変更*/
  width: 100%;
}
#feature .feature_box .tx_no{
  font-size: 8rem;
  line-height: 1.4;
  display: inline-block;
  font-weight: bold;
  color:#49a19b;
  border-top: #49a19b 3px solid;
}
#feature .feature_box .title{
  font-size: 2.7rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}
#feature .feature_box .float_L{
  float: left;
  margin-right: 70px;
}
#feature .feature_box .float_R{
  float: right;
  margin-left: 70px;
}
@media screen and (max-width: 768px) {
  #feature .feature_box{
    margin-bottom: 40px;
  }
  #feature .feature_box .float_L,
  #feature .feature_box .float_R{
    float: none;
    margin:0 0 20px;
  }
}

#price{
  background-color: #eff3f5;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
}
#price .w930{
  max-width: 930px;
  margin: 0 auto 30px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#price .price_box{
  background-color: #fff;
  width: 420px;
  height: 100px;
  text-align: center;
  font-size: 2.0rem;
  display: inline-block;
  padding-top: 22px;
  border-radius: 10px;
}
#price .price_box span{
  font-size: 3.2rem;
  color: #49a19b;
  margin-left: 5px;
}

#price_dl{
  background: url(../img/common/price_bg.png) no-repeat center top;
  background-size: 100% auto;
  width: 100%;
  height: 298px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  padding-top: 90px;
}
#price_dl .btn_dl a{
  color: #000;
  border-radius: 50px;
  background-color: #fff;
  text-decoration: none;
  padding: 18px 0;
  margin: 20px auto 0;
  display: block;
  width: 400px;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #price .w930{
    max-width: 100%;
    display: block;
  }
  #price .price_box{
    width: 100%;
    height: auto;
    padding: 10px 0;
  }
  #price .w930 div{
    padding: 10px 0;
  }
  #price .price_box p{
    text-align: center;
  }
  #price p{
    text-align: left;
  }
  #price_dl{
    background-size: cover;
    width: 100%;
    height: auto;
    padding: 40px 15px;
  }
  #price_dl .btn_dl a{
    width: 100%;
  }
}

#jirei{
  text-align: center;
}
#jirei .btn_jirei a{
  color: #fff;
  border-radius: 50px;
  background-color: #49a19b;
  text-decoration: none;
  padding: 18px 0;
  margin: 60px auto 0;
  display: block;
  width: 400px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #jirei .btn_jirei a{
    width: 100%;
  }
}

#outline .outline_box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 3% 15px;
  width: 740px;
  margin: 0 auto;
}
#outline .outline_box dl {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 10px;
  padding: 10px 0 14px;
}
#outline .outline_box dl:last-child {
  border-bottom: 0;
}
#outline .outline_box dl dt ,
#outline .outline_box dl dd {
  display: inline-block;
  margin-bottom: 6px;
  vertical-align: top;
  width:75%;
}
#outline .outline_box dl dt {
  width: 20%;
}
@media screen and (max-width: 768px) {
  #outline .outline_box{
    width: 100%;
    display: block;
    padding: 0;
  }
  #outline .outline_box dl dt {
    width: 100%;
  }
}

#profile{
  background: url(../img/common/profile_bg.png) no-repeat right 0;
  width: 1220px;
  height: 508px;
  margin: 0 auto;
}
#profile .float_L{
  float: left;
  margin-right: 70px;
}
#profile .title{
  font-size: 2.4rem;
}
#profile .book{
  float: right;
  margin-left: 20px;
  width: 140px;
}
@media screen and (max-width: 768px) {
  #profile{
    background: url(../img/common/profile_bg.png) no-repeat right 0;
    background-size:cover;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  #profile .float_L{
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }
  #profile .book{
    margin-left: 10px;
    width: 80px;
  }
}

#advisor .advisor_box{
  clear: both;
  margin-bottom: 60px;
  display: inline-block;
}

#advisor .advisor_text {
  margin-left: 370px; /*追記*/
  width: 760px; /*追記*/
}

@media screen and (max-width: 768px) {
  #advisor .advisor_text {
    margin-left: 0px; /*追記*/
    width: auto; /*追記*/
  }
}
@media screen and (max-width: 768px) {
  #advisor .advisor_img{
    float: none;
    margin-right: 0;
  }
}

#media{
  background-color: #eff3f5;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
}
#media .media_logo{
  margin-bottom: 80px;
}
#media .media_logo li{
  background-color: #fff;
  width: 208px;
  height: 96px;
  text-align: center;
  border-radius: 10px;
  display: table;
}
#media .media_logo li.bk{
  background-color: #000;
}
#media .media_logo li p {
  display: table-cell;
  margin: 0;
  text-align: center;
  vertical-align: middle;
}
#media .media_news{
  margin-bottom: 60px;
  flex-wrap: wrap;
}
#media .media_news li{
  width: 49%;
  text-align: left;
  margin-bottom: 40px;
  font-size: 2.0rem;
}
#media .media_news li img{
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #media .media_logo{
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
  }
  #media .media_logo li{
    background-color: #fff;
    width: 48%;
    height: 60px;
    text-align: center;
    border-radius: 10px;
    display: table;
    margin-bottom: 20px;
  }
  #media .media_logo li img{
    width: 60%;
  }
  #media .media_news{
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  #media .media_news li{
    width: 100%;
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
}

#flow{
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
#flow .flow_box{
  background-color: #eff3f5;
  display: flex;
  padding: 30px;
}
#flow .flow_box h3{
  font-size: 2.4rem;
  width: 200px;
  text-align: left;
  font-weight: bold;
}
#flow img{
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  #flow .flow_box{
    display: block;
    padding: 30px;
    text-align: left;
  }
  #flow .flow_box h3{
    width: 100%;
    margin-bottom: 15px;
  }
  #flow img{
    margin: 20px auto;
  }
}

#faq .faq_box{
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  cursor: pointer;
  padding-bottom: 10px;
}

#faq .faq_box dt {
  text-align: left;
  font-weight: bold;
  position: relative;
}

#faq .faq_box dd {
  background-color: #eff3f5;
  padding: 20px 30px;
  margin-top: 20px;
}
#faq .accordionlist dt{
  display:block;
  padding: 20px 0 20px 5px;
  border-top: 1px solid #cccccc;
  clear: both;
  min-height: 60px;
}
#faq .accordionlist dt:first-child{
  border-top: none !important;
}
#faq .accordionlist dt .title{
  float: left;
  margin-bottom: 18px;
}
#faq .accordionlist dd{
  display:none;
}
#faq .accordion_icon,
#faq .accordion_icon span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
#faq .accordion_icon {
  position: relative;
  width: 30px;
  height: 30px;
  float: right;
  margin-right: 5px;
}
#faq .accordion_icon span {
  position: absolute;
  left: 6px;
  width: 50%;
  height: 2px;
  background-color: #49a19b;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
}
#faq .accordion_icon span:nth-of-type(1) {
  top: 12px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
#faq .accordion_icon span:nth-of-type(2) {
  top: 12px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
/*＋、－切り替え*/
#faq .accordion_icon.active span:nth-of-type(1) {
  display:none;
}
#faq .accordion_icon.active span:nth-of-type(2) {
  top: 5px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  #faq .accordionlist dt .title{
    width: 80%;
  }
  #faq .faq_box dd {
    background-color: #eff3f5;
    padding: 20px 30px;
    margin-top: 20px;
  }
  #faq .accordionlist dt{
    min-height: 80px;
  }
}


#entry {
  background-color: #eff3f5;
}
#entry h2{
  text-align: center;
  padding-bottom: 30px;
}
#entry dl {
  width: 60%; /*100%から変更*/
  margin: 0 auto; /*追記*/
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #entry dl {
    width: 100%; /*追記*/
  }
}

#entry dl dt {
  width: 100%;
  margin-bottom: 6px;
}

#entry dl dt span {
  color: #fff;
  font-size: 90%;
  background-color: #f2859d;
  padding:2px;
  margin-left: 1rem;
}

#entry dl dd {
  width: 100%;
}

@media screen and (max-width: 768px) {
  #entry dl {
    display: block;
  }

  #entry dl dt {
    width: 100%;
  }

  #entry dl dd {
    width: 100%;
  }
}

#entry dl dd input[type="text"] {
  width: 100%;
  min-height: 50px;
  padding: 10px;
  background-color: #fff;
  border: 0;
}
#entry dl dd textarea {
  background-color: #fff;
  width: 100%;
  padding: 10px;
  border: 0;
}
#entry p {
  text-align: center;
  margin-bottom: 10px;
}
#entry p.tel{
  /* background: url(common/img/tel_bk.png) no-repeat left; */
  background-size: auto 50%;
  display: block;
  font-weight: bold;
  font-size: 2.5rem;
  /* padding: 0 0 0 22px; */
  width: 225px;
  margin: 0 auto;
}

#entry p a{
  color: #000;
}
#entry p input{
  margin: 0 10px 2px 0;
}
#entry input[type="submit"] {
  color: #fff;
  border-radius: 50px;
  background-color: #49a19b;
  text-decoration: none;
  padding: 18px 0;
  margin: 30px auto 0;
  display: block;
  width: 400px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #entry input[type="submit"] {
    width: 100%;
  }
}


/* CTA area */
#cta {
  color: #fff;
  background: url(../img/common/book_bg.png)no-repeat;
  background-size: cover;
  text-align: center;
}
#cta .cta-banner div img {
  max-width: 100%;
  margin-bottom: 50px;
}
#cta .cta-banner ul.list{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#cta .cta-banner .list li {
  width: 30%;
}
@media screen and (max-width:599px) {
  #cta .cta-banner {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 50px 0 0;
  }
  .footer-menu {
    flex-direction: column;
    margin: 0;
  }
  .footer-menu .col {
    width: 100%;
    margin: 0 auto 30px;
    padding: 0 15px;
  }
  .footer-menu .col .tx-r{
    text-align: left;
  }
  .footer-menu .menu-list li.pp {
    margin-top: 0;
  }
  .footer-menu .tel {
    font-size: 2rem;
    padding: 0px 0 0px 32px;
    letter-spacing: 0;
  }
  .footer-menu p.logo {
    text-align: left;
    margin: 20px 0 20px;
  }
  .footer-menu p.copyright {
    text-align: left;
  }
}

/*追記*/
#entry input{
  border: none;
  padding:10px;
  margin-bottom: 20px;
}

#entry input[type="email"] {
  width: 100%;
}

#entry textarea {
  height: 155px;
}

.scroll {
  background-color: rgba(97,114,123,.5);
  transition: all 0.5s ease;
}

.scroll a {
  color: #fff;
  transition: all 0.5s ease;
}

.company-name {
  font-size: 20px;
}

.br-sp {
  display: none;
}

@media screen and (max-width: 559px) {
  .br-sp {
    display: block;
  }
}
.btn-flat-simple {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #ffffff;
  background: #000000;
  transition: .4s;
  margin-top: 10px; /*追記*/
}

.profile-content {
  margin-left: 620px; /*追記*/
}

@media screen and (max-width: 768px) {
  .profile-content {
    margin-left: 0px; /*追記*/
  }
}


@media screen and (max-width: 768px) {
  .btn-flat-simple {
    margin-left: 0px; /*追記*/
  }
}

.btn-flat-simple:hover {
  background: #00bcd4;
  color: white;
}

.advisor_link {
  display: inline-block;
  margin-left: 10px;
}

/* なぜAvenir産業医の産業医は質が高いのか */
#quality {
  background-color: #C7E3E1;
  padding: 60px 0 50px;
}

#quality h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.5;
}

.quality-contents {
  width: 940px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.quality-content {
  width: 460px;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px 40px 35px;
}

.quality-content h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}

.quality-content .quality-text {
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}

.quality-content .quality-list-left li {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}

.quality-content .quality-list-left li span {
  display: inline-block;
  font-size: 28px;
  color: #49A19A;
  font-family: Roboto;
  font-weight: medium;
  margin-right: 16px;
  vertical-align: middle;
}

.quality-content .quality-list-left li p {
  display: inline-block;
}

.quality-content .quality-list-right li {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}

.quality-content .quality-list-right li span {
  display: inline-block;
  font-size: 28px;
  color: #49A19A;
  font-family: Roboto;
  font-weight: medium;
  margin-right: 16px;
  vertical-align: middle;
}

.quality-content .quality-list-right li p {
  display: inline-block;
}

.nul {
  opacity: 0;
}

.quality-list-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .quality-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 0 15px;
  }
  .quality-content {
    margin: 0 auto 20px;
  }
  .quality-content:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .quality-content {
    width: 100%;
  }
  .quality-content:last-child {
    margin-bottom: 0;
  }
  .nul {
    display: none !important;
  }
  .br-pc {
    display: none;
  }
  .quality-list-pc {
    display: none;
  }
  .quality-list-sp {
    display: block;
  }
}

/* TOP メインビジュアル */
.video {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#main-visual {
  position: relative;
  z-index: 1;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  height: 680px;
  overflow: hidden;
  background: linear-gradient(90deg, #d1d245 0%, #d1d245 50%, #61727b 50%, #61727b 100%);
  text-align: center;
}
.video-wrapper img{
  width:1370px;
  max-width:none;
  margin:0 auto;
}
@media screen and (max-width: 1024px) {
  .video {
    width: 110%;
  }
}

@media screen and (max-width: 768px) {
  .video {
    width: 140%;
  }
  .video-wrapper img{
    width:100%;
  }
  .video-wrapper {
    height: auto;
    background: #61727b;
  }
}

@media screen and (max-width: 767px) {
  .video {
    width: 285%;
  }
}

@media screen and (max-width: 360px) {
  .video {
    width: 335%;
  }
  .video-wrapper img.sp {
    width:95%;
    margin-left: -10%;
  }
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}



.case-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 10px;
}
.case-row-l,
.case-row-r {
  margin-bottom: 10px;
  text-align: left;
}
.case-row-r h2 {
  text-align: left;
  padding-bottom: 0;
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
.case-row-r h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.case-row-l {
  width: 30%;
}
.case-row-r {
  width: 68%;
}
.case-row p {
  margin-bottom: 1em;
}
.case-row .btn_type01 {
  display: block;
  background-color: #49a19b;
  line-height: 1;
  padding: 15px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 1px solid #49a19b;
}
.case-row .btn_type01:hover {
  opacity: 1;
  background-color: #fff;
  color: #49a19b;
}

@media screen and (max-width: 991px){
  .case-row-l,
  .case-row-r {
    width: 100%;
  }
.case-row-r h2 {
  font-size: 1.8rem;
}
.case-row-r h3 {
  font-size: 1.3rem;
}
}

.form-btn-input {
  display: block;
  background-color: #f98d1e;
  line-height: 1;
  padding: 20px;
  font-weight: bold;
  font-size: 110%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 1px solid #f98d1e !important;
  border-radius: 20px !important;
  display: block;
  margin: 10px auto;
}
.form-btn-input:hover {
  opacity: 1;
  background-color: #fff;
  color: #f98d1e;
  border: 1px solid #f98d1e;
}
/* バリデーションエラーメッセージ */
.header #form_dl .wpcf7-not-valid-tip {
  position: absolute;
  margin-top: -5px;
  font-size: 12px;
  color: #B70000;
}
.header #form_dl .wpcf7-form.invalid .wpcf7-response-output,
.header #form_dl .wpcf7-form.unaccepted .wpcf7-response-output {
  color: #B70000;
}

#mw_wp_form_mw-wp-form-5764 input[type="submit"] {
  white-space: pre-wrap;
}
/*
header a {
  text-decoration: none !important;
}
.header-menu {
  display: flex;
  justify-content: center;
  background-color: #48A19C;
}
.header-menu  a {
  color: #fff !important;
  font-size: 22px;
  font-weight: bold;
  line-height: 25px;
  padding: 20px 75px;
  display: block;
}
.header-menu  a:hover {
  opacity: 1;
  background: rgba(255,255,255,0.5);
}
.header-top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 0;
}
.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sitelogo {
  max-width: 300px;
}
.header-top-contact {
  padding-top: 20px;
}
.header-top-contact-tel {
  font-size: 28px;
  color: #000;
  font-weight: bold;
  line-height: 40px;
  display: block;
  width: 220px;
  float: left;
}
.header-top-contact-tel i {
  font-size: 24px;
  margin-right: 5px;
}
.header-top-contact-mail,
.header-top-contact-pdf {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  padding: 8px;
  width: 200px;
  text-align: center;
  border: 2px solid #48A19C;
  background-color: #48A19C;
  color: #fff;
  font-weight: bold;
  margin-left: 10px;
  margin-bottom: 10px;
}
.header-top-contact-pdf {
  background-color: #fff;
  color: #48A19C;
}
.header-top-contact-pdf i {
  margin-right: 10px;
}
.header-top-contact-mail:hover,
.header-top-contact-pdf:hover {
  opacity: 1;
}
.header-top-contact-mail:hover {
  background-color: #fff;
  color: #48A19C;
}
.header-top-contact-pdf:hover {
  background-color: #48A19C;
  color: #fff;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9999;
}
html {
  padding-top: 241px;
}
@media screen and (max-width: 1199px){
.header-menu  a {
  padding: 20px 50px;
} 
}
@media screen and (max-width: 1000px){
html {
  padding-top: 220px;
}
.header-menu  a {
  padding: 20px;
}
.header-top-contact-tel,
.header-top-contact-mail,
.header-top-contact-pdf {
  display: block;
  float: none;
  margin-bottom: 5px;
}
.header-top {
  padding: 10px 0;
}
.header-top-contact {
  padding-top: 0;
}
}
.header-menu-btn {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #48A19C;
  width: 60px;
  height: 51px;
  content: "";
}
.header-menu-btn span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #fff;
  border-radius: 1px;
  height: 3px;
  width: 30px;
  z-index: 1;
  transition: all .4s;
}
.header-menu-btn span:nth-child(2){
  top: 32%;
}
.header-menu-btn span:nth-child(3){
  top: 68%;
}
.header-menu-btn:hover {
  opacity: 0.5;
  cursor: pointer;
}
header.open .header-menu {
  display: block;
}
header.open .header-menu-btn span:nth-child(1) {
  display: none;
}
header.open .header-menu-btn span:nth-child(2) {
  transform: translate(-50%,8px) rotate(-45deg);
}
header.open .header-menu-btn span:nth-child(3) {
  transform: translate(-50%,-10px) rotate(45deg);
}
@media screen and (max-width: 769px){
html {
  padding-top: 153px;
}
.header-menu-btn {
  display: block;
}
.header-menu {
  flex-wrap: wrap;
  display: none;
}
.header-menu li {
  width: 100%;
  text-align: left;
}
.sitelogo {
  max-width: 45%;
}
.header-top-contact {
  margin-right: 65px;
}
.header-top-contact a {
  font-size: 0;
  display: inline-block;
  vertical-align: top;
  padding: 0;
  line-height: 1;
  width: auto;
  color: #48A19C;
  background: none !important;
  border: none!important;
  margin-left: 5px;
}
.header-top-contact a i {
  font-size: 22px;
  color: #48A19C;
}
.header-top-contact a:hover {
  opacity: 0.5;
}
.header-top {
  padding: 0 5px;
}
}

#faq .accordion_icon {
  display: none;
}
#faq .accordionlist dt {
  pointer-events: none;
}
#faq .accordionlist dd {
    display: block !important;
}
#faq .faq_box {
  cursor: auto;
}
*/

.form-top-title {
  font-size: 110%;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}

.header #main-visual span.title {
  display: inline-block;
    font-feature-settings: "palt";
    max-width: 50%;
    line-height: 1.4;
    font-size: 3.6rem;
    font-weight: bold;
    margin-top: 20px;
}
.header #main-visual #logo {
  padding: 30px 0 20px;
}
@media screen and (max-width: 768px) {
  .header #main-visual #logo {
    padding: 20px 0 10px;
  }
  .header #main-visual span.title {
    font-size: 2.2rem;
    margin-top: 10px;
    max-width: 100%;
  }
}
.case-row-r h3.case-h3 {
  text-align: left;
  padding-bottom: 0;
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
.case-row-r .case-pb {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  line-height: 1;
}
#quality .div-h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}
.quality-content .div-h4 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
    .case-row-r h3.case-h3 {
      font-size: 1.8rem;
      line-height: 1.4;
    }
    .case-row-r .case-pb {
        font-size: 1.3rem;
    }
}

/* 2024/08/05 */
.header #main-visual p.lead {
    font-weight: 700;
    font-size: 105%;
    margin-top: 30px;
    padding: 20px;
}
.header #main-visual p.lead strong {
  font-weight: bold;
  line-height: 1.5;
}
.header #main-visual span.title i {
  font-style: normal;
}
.header #main-visual span.title {
  font-size: 3.6rem !important;
  letter-spacing: 2px;
}
  /* responsive */
        @media (max-width: 543px) { /* xs */
          .header {
            margin-bottom: 0;
          }
          .header #main-visual {
            width: 100%;
            text-align: left;
          }
          .header #main-visual #logo img {
            margin-bottom: 10px;
            max-width: 95%;
          }
          .header #main-visual span.title {
            font-size: 30px!important;
            white-space: nowrap;
          }
          .header #main-visual span.title i {
            font-size: 16px!important;
            display: inline-block;
            padding: 0 2px;
          }
          .header #main-visual #logo {
            margin-left: 35%;
          }
          .header #main-visual p.lead {
            padding: 10px;
            margin: 0 auto 5px 39%!important;
            display: inline-block;
          }
          .header #main-visual p.lead strong {
            font-size: 15px;
            display: inline-block;
            line-height: 145%!important;
            font-weight: normal;
          }
          img.sangyoui-top-point {
            margin: 0 auto 10px;
            max-width: 95%!important;
          }
        }
        @media screen and (min-width:544px) and (max-width:767px) { /* sm */
        }
        @media screen and (min-width:768px) and (max-width:991px) { /* md */
        }
        @media screen and (min-width:992px) and (max-width:1199px) { /* lg */
        }
        @media screen and (min-width:1200px) { /* xl */
        }


/* 2024/08/28 */
  .top-logo {
    padding: 50px 10px 0px;
    font-weight: bold;
    background-color: #fff;
    position: relative;
  }
  @media screen and (max-width: 768px){
    .top-logo {
      padding: 30px 10px;
    }
  }
  .top-logo-caption {
    line-height: 2;
    font-size: 24px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  @media screen and (min-width: 992px){
    .top-logo-caption {
      font-size: 36px;
    }
  }
  .top-logo-caption div:before,
  .top-logo-caption div:after {
    display: inline-block;
    content: "\f18c";
    font-weight: 400;
    font-family: "Font Awesome 6 Brands";
    font-size: 200%;
    line-height: 1;
    vertical-align: middle;
    margin: 0 10px;
    color: #49a19b;
  }
  .top-logo-caption div:before {
    transform: scale(-1,1);
  }
  .top-logo-row {
    margin: 0 auto 30px;
    max-width: 1120px;
    /*display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;*/
    text-align: center;
  }
  .top-logo-row a {
    vertical-align:top;
    position: relative;
  }
  .top-logo-row a:hover {
    opacity: 1;
  }
  .top-logo-row img {
    width: 210px;
    height: auto;
    /*object-fit: contain;*/
    background-color: #fff;
    vertical-align: top;
  }
  .top-logo-row img.banner-daiso {
    width: 217px;
    margin-bottom: 4px;
  }
  .top-logo-row img.banner-outsourcing {
    width: 229px;
    margin-top: -2ppx;
  }
  .top-logo-row img.banner-haseko {
    width: 226px;
    padding-bottom: 10px;
  }
  .top-logo-row img.banner-lycorp {
    width: 180px;
    margin-top: -6px;
    margin-left: -10px;
  }
  .top-logo-row img.banner-obc {
    width: 340px;
    margin-top: -36px;
    margin-left: -60px;
  }
  .top-logo-row img.banner-nitori {
    width: 110px;
  }
  .top-logo-row img.banner-segasammy {
    width: 185px;
    margin-top: 13PX;
  }
  .top-logo-row img.banner-dai-ichi-life {
    width: 174px;
    margin-top: -19px;
  }
  .top-logo-row img.banner-timee {
    width: 170px;
  }
  @media screen and (max-width: 768px){
    .top-logo-caption {
      font-size: 20px;
    }
    .top-logo-caption div:before,
    .top-logo-caption div:after {
      margin: 0 7px;
    }
  }
.feature-link {
  display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-link a {
    color: #49a19b;
}


  /* responsive */
        @media (max-width: 543px) { /* xs */
            .header #main-visual span.title {
              margin-top: 0;
              display: block;
              font-size: 13px!important;
              white-space: nowrap;
              letter-spacing: 1px;
            }
            .header #main-visual span.title br {
              display: none;
            }
            .header #main-visual p.lead {
              letter-spacing: 1px;
              background: rgba(73, 161, 155, 0.6);
              text-align: center;
              font-size: 11px!important;
              white-space: nowrap;
              font-weight: bold!important;
              margin-top: 15px!important;
              margin-bottom: 15px!important;
            }
            .header #main-visual p.lead strong {
              font-size: 14px!important;
            }
            .footer-menu .tel {
              padding: 0;
              text-align: left;
            }
            #price .price_box {
              font-size: 15px;
            }
            #price .price_box span {
              font-size: 23px;
            }
        }
        @media screen and (min-width:544px) and (max-width:767px) { /* sm */
            .header #main-visual span.title {
              margin-top: 0;
              display: block;
              font-size: 13px!important;
              white-space: nowrap;
              letter-spacing: 1px;
            }
            .header #main-visual span.title br {
              display: none;
            }
            .header #main-visual p.lead {
              letter-spacing: 1px;
              background: rgba(73, 161, 155, 0.6);
              text-align: center;
              font-size: 12px!important;
              white-space: nowrap;
              font-weight: bold!important;
              margin-top: 15px!important;
              margin-bottom: 15px!important;
            }
            .header #main-visual p.lead strong {
              font-size: 14px!important;
            }
            .footer-menu .tel {
              padding: 0;
              text-align: left;
            }
            .footer-menu .tel {
              font-size: 16px;
            }
        }
        @media screen and (min-width:768px) and (max-width:991px) { /* md */
            .inner {
              width: 80%;
            }
            .feature_box img {margin-bottom: 30px}
            #feature .feature_box {
              margin-bottom: 50px;
            }
            .pointbox > .flex {
              display: block;
            }
            #point .pointbox ul {
              width: 100%;
              margin-bottom: 30px;
            }
            #point ul.graybox {
              display: block;
            }
            #point ul.graybox li {
              margin-right: 0;
              width: 100%;
              display: block;
              margin-bottom: 15px;
            }
            #point ul.graybox li:last-child {
              margin-bottom: 0;
            }
            .quality-contents {
              display: block;
              padding: 30px;
              max-width: 100%;
            }
            .quality-content {
              width: 100%;
              margin-top: 30px;
              max-width: 100%;
            }
            .quality-content:first-child {
              margin-top: 0;
            }
            .header #main-visual {
              margin-top: 50px;
            }
            h2#logo img {
              width: 400px!important;
              max-width: 400px!important;
            }
            .header #main-visual p.lead {
              letter-spacing: 1px;
              background: rgba(73, 161, 155, 0.6);
              text-align: center;
              width: 350px;
              max-width: 350px;
            }
            .header #main-visual p.lead strong {
              font-size: 120%;
            }
            .header #main-visual span.title {
              margin-top: 5px;
              font-size: 18px!important;
              white-space: nowrap;
              letter-spacing: 2px;
            }
            .header #main-visual span.title br {
              display: none;
            }
            .header {
                height: auto;
            }
            .header #form_dl {
              position: relative;
              width: 80%;
              margin: -40px auto 0;
              left: auto;
              top: auto;
              right: auto;
              padding: ;
            }
            .header #main-visual {
              width: 100%;
              padding-left: 40%;
              margin-bottom: 60px;
            }
            header nav {
              padding: 10px;
            }
            header nav ul {
              display: inline-block;
            }
            nav ul li {
              display: block;
              width: 100%;
              padding: 3px;
              line-height: 100%;
            }
            nav ul li a {
              white-space: nowrap;
              line-height: 100%;
              font-size: 12px;
            }
            .footer-menu {
              max-width: calc(100% - 30px);
            }
            .footer-bottom {
              max-width: calc(100% - 30px)!important;
            }
            #price .price_box {
              font-size: 15px;
            }
            #price .price_box span {
              font-size: 23px;
            }
            #price .inner {
              width: 90%;
            }
            #price .w930 {
              max-width: 100%;
            }
            .footer-menu .tel {
              font-size: 16px;
            }
            #price h2 br {
              display: none;
            }
        }
        @media screen and (min-width:992px) and (max-width:1199px) { /* lg */
            .inner {
              width: 90%;
            }
            .feature_box img {margin-bottom: 30px}
            #feature .feature_box {
              margin-bottom: 50px;
            }
            #point .pointbox ul {
              width: 90%;
              margin-bottom: 30px;
              margin-right: 4%;
            }
            #point ul.graybox li {
              padding: 15px;
              font-size: 1.6rem;
            }
            .quality-contents {
              padding: 30px;
              width: 100%;
              max-width: 100%;
              vertical-align: top;
            }
            .quality-content {
              width: 49%;
              margin-top: 30px;
              max-width: 49%;
              vertical-align: top;
            }
            .quality-content:first-child {
              margin-top: 0;
            }
            .video-wrapper img {
              width: 1700px;
            }
            .feature_box img {
              width: 100%!important;
            }
            #feature .feature_box .title {
              font-size: 25px;
            }
            #feature .feature_box .float_L,
            #feature .feature_box .float_R {
              width: 30%;
            }
            #feature .feature_box .float_L {
              margin-right: 30px;
            }
            #feature .feature_box .float_R {
              margin-left: 30px;
            }
            #feature .feature_box p {
              width: 100%;
              clear: both;
            }
            header nav ul {
              padding-left: 30px;
            }
            .header #main-visual {
              margin-top: 50px;
            }
            h2#logo img {
              width: 400px!important;
              max-width: 400px!important;
            }
            .header #main-visual p.lead {
              letter-spacing: 1px;
              background: rgba(73, 161, 155, 0.6);
              text-align: center;
              width: 350px;
              max-width: 350px;
            }
            .header #main-visual p.lead strong {
              font-size: 120%;
            }
            .header #main-visual span.title {
              margin-top: 5px;
              font-size: 18px!important;
              white-space: nowrap;
              letter-spacing: 2px;
            }
            .header #main-visual span.title br {
              display: none;
            }
            .header {
                height: auto;
            }
            .header #form_dl {
              position: relative;
              width: 80%;
              margin: -50px auto 0;
              left: auto;
              top: auto;
              right: auto;
              padding: ;
            }
            .header #main-visual {
              width: 100%;
              padding-left: 50%;
              margin-bottom: 60px;
            }
            .footer-menu {
              max-width: calc(100% - 30px);
            }
            .footer-bottom {
              max-width: calc(100% - 30px)!important;
            }
            .footer-menu .tel {
              font-size: 30px;
            }
            #price h2 br {
              display: none;
            }
        }
        @media screen and (min-width:1200px) and (max-width:1679px) {/* xl */
            h2#logo {
              margin-top: 45px;
              margin-left: -80px;
            }
            h2#logo img {
              width: 430px!important;
              max-width: 430px!important;
            }
            .header #main-visual {
              margin-left: 27vw;
            }
            .header #main-visual p.lead {
              letter-spacing: 1px;
              background: rgba(73, 161, 155, 0.6);
              text-align: center;
              font-size: 18px;
            }
            .header #main-visual p.lead strong {
              font-size: 120%;
            }
            .header #main-visual span.title {
              margin-top: 5px;
              font-size: 18px!important;
              white-space: nowrap;
              letter-spacing: 2px;
            }
            .header #main-visual span.title br {
              display: none;
            }
            .header #form_dl {
              width: 35vw;
            }
            #price h2 br {
              display: none;
            }
        }
        @media screen and (min-width:1680px) { 
            .header #main-visual {
              margin-left: 25%;
            }
            .header #main-visual p.lead {
              letter-spacing: 1px;
              background: rgba(73, 161, 155, 0.6);
              width: 400px;
              text-align: center;
              font-size: 18px;
            }
            .header #main-visual p.lead strong {
              font-size: 120%;
            }
            h2#logo img {
              width: 430px!important;
              max-width: 430px!important;
            }
            .header #main-visual p.lead {
              max-width: auto;
              max-width:initial;
            }
            .header #main-visual span.title {
              margin-top: 5px;
              font-size: 18px!important;
              white-space: nowrap;
              letter-spacing: 2px;
            }
            #price h2 br {
              display: none;
            }
        }


.service-cost-top {
  width: 950px;
  max-width: 100%;
  margin: 0 auto 50px;
  font-weight: bold;
}
.service-cost-top table {
  background: #ffffff88;
  margin-bottom: 2em;
}
.service-cost-top table th,
.service-cost-top table td {
  padding: 10px;
  vertical-align: top;
  border: 1px solid #ccc;
  font-weight: bold;
}
.service-cost-top table th {
  background-color: #49a19b;
  color: #fff;
  width: 200px;
}
.service-cost-top h3 {
  font-size: 2.4rem;
  text-align: left;
  margin-bottom: 10px;
  font-weight: bold;
  color: #49a19b;
  border-bottom: 1px solid;
  padding-bottom: 10px;
}
.service-cost-top h4 {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 7px;
  font-weight: bold;
  color: #49a19b;
}

.service-cost-top p {
  margin-bottom: 1em;
  text-align: left;
}
.service-cost-top table p:last-child {
  margin-bottom: 0;
}
.service-cost-top ul {
  list-style: disc;
  padding-left: 20px;
}
@media screen and (max-width: 768px){
.service-cost-top table th {
  width: 164px;
}
}


.form-materials label {
  font-size: 13px;
  letter-spacing: -1px;
  margin-left: -2px;
}
.form-materials .mwform-checkbox-field input {
  position: relative;
  top: 2px;
  margin-right: 0px;
}