@charset "utf-8";
/*------------------------------------------------------------
共通
------------------------------------------------------------*/

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
  font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3', 'Meiryo', 'メイリオ', sans-serif;
  background: #fff;
  color: #404040;
  font-size: 17px;
  background: #fff;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

a:link, a:visited, a:hover, a:active {
  color: #b83397;
}

a:vis

a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

ol, ul {
    list-style: none;
}


/*共通*/
.fsS{
    font-size: .9em;
}
.fsSS {
    font-size: .6em;
    line-height: 1.3;
}
.fsL{
    font-size: 1.3em;
}
.taC {
    text-align: center;
}
.taR {
    text-align: right;
}
.taL {
    text-align: left;
}
.fwB {
  font-weight: bold;
}
.marker {
    background:linear-gradient(transparent 60%, #ff6 60%);
}
.rel {
    position: relative;
}
.abs {
    position: absolute;
}
.pa{
    padding: 20px 10px;
}
.pa2 {
    padding: 0 10px;
}
.pc_n {
    display: none;
}
.sp_n {
  display: block;
}
.mt0 {
    margin-top: 0;
}

.red {
    color: #f10205;
  font-weight: bold;
}
 .br_sp {
    display: block;
  }
 .br_pc {
    display: none;
  }

@media screen and (min-width:640px){
.sp_n {
  display: none;
}
.pc_n {
    display: block;
}
.pa2 {
    padding: 0 20px;
}
  .br_sp {
    display: none;
  }
 .br_pc {
    display: block;
  }
}



/*------------------------------------------------------------
レイアウト
------------------------------------------------------------*/

#content {
    width: 100%;
    margin: 0 auto;
}
.wrapper {
    margin: 3%;
}
section {
    margin-bottom: 3em;
}
figure{
  margin: 0 auto;
  max-width: 100%;
}
img {
    max-width: 100%;
    height: auto;
  vertical-align: middle;
}

p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

@media screen and (min-width:640px) {
section {
    margin-bottom: 3em;
}
    #content {
        width: 750px;
        max-width: 100%;
        margin: 0 auto;
    }
    p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
  }
}
/*------------------------------------------------------------
スマホから
ヘッダー
------------------------------------------------------------*/
header {
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: 0px 10px 15px -10px #808080;
}
#mv {
    margin-top: 16vw;
}
.head_tell{
    position: absolute;
    color: red;
    font-weight: bold;
    font-size:3.8vw;
    top: 35%;
    right: 2%;
/*    letter-spacing:-2.3px;*/
    margin: 0;
}
.mv_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin-top: -27vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 5%;
}
.ma {
    margin: 20px 10px;
}
.credit {
    width: 95%;
    text-align: center;
}

/* 光らせるためのstyle */
.shine{
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
/* 光の疑似要素 */
.shine::before{
    content: '';
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shine 3s ease-in-out infinite;
    position: absolute;
    top: -180px;
    left: 0;
    opacity: 0;
    transform: rotate(45deg);
}
/* 光の動き */
@keyframes shine{
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}




@media screen and (min-width:640px) {
header {
  width: 750px;
}
#mv {
    margin-top: 120px;
}
.head_tell{
    font-size:29px;
    top: 36%;
}
.mv_btn {
    width: 100%;
    margin-top: -176px;
}
}

/*------------------------------------------------------------
コンテンツ
------------------------------------------------------------*/

#Realtime, #Realtime01, #Realtime02, #Realtime03 {
    font-size: 1.3em;
    font-weight: 700;
    margin: 0;
    padding: 5%;
    text-align: center;
    font-family: 'メイリオ', 'Meiryo';
}
h2 {
    background: url("../img/ttl_bg.png");
    background-repeat: repeat-x;
    text-align: center;
    margin-bottom: 0;
    background-size: contain;
}
h2.g_bg {
    background: url("../img/ttl_bg_br.png");
    background-repeat: repeat-x;
    text-align: center;
    margin-bottom: 0;
    background-size: contain;
    margin-top: 0;
}
.comment_abs {
    top: -38px;
    width: 45%;
    left: 10px;
    position: absolute;
}

@media screen and (min-width:640px) {
#Realtime, #Realtime01, #Realtime02, #Realtime03 {
    font-size: 2em;
}
.comment_abs {
    top: -64px;
    height: 55%;
    left: 10px;
    position: absolute;
}
}

/* 点滅 */
.blinking{
  animation: flash 1.5s linear infinite;
}

@keyframes flash {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }


  100% {
    opacity: 1;
  }
}



/*-------------こんな悩み-------------*/
.trouble-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 5px 10px 5px;
    margin-top: 1em;
}

section.trouble {
    background-color: #e5e5e5;
    margin-top: 1em;
    margin-bottom: 1em;
}

.tp {
    width: 48%;
    margin-bottom: 10px;
}

/*チェックボックス*/
.mycheckbox {
  position: relative;
  padding-left: 25px;
}

.mycheckbox:before {
  content: "";
  position: absolute;
    width: 7px;
    height: 15px;
    top: 0em;
    left: 7px;
  -webkit-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  transform: rotate(50deg);
    border-right: 3px solid #e60012;
    border-bottom: 3px solid #e60012;
    z-index: 90;
}

.mycheckbox:after {
  content: "";
  position: absolute;
  top: .2em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 2px solid #000;
  border-radius: 2px;
  background: #fff;
}


@media screen and (min-width:640px){
.mycheckbox:before {
  content: "";
  position: absolute;
    width: 11px;
    height: 20px;
    top: 0em;
    left: 9px;
  -webkit-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  transform: rotate(50deg);
    border-right: 4px solid #e60012;
    border-bottom: 4px solid #e60012;
    z-index: 90;
}

.mycheckbox:after {
    width: 23px;
    height: 23px;
    border: 3px solid #000;
}
.mycheckbox {
    position: relative;
    padding-left: 36px;
}
.img_pc {
    width: 80%;
}
.trouble-flex {
    padding: 30px;
}
}

/*-------------害獣の種類-------------*/
section.syurui {
    background-color: #d9e1da;
    margin-bottom: 0;
    margin-top: 5vw;
}
.list-item {
    display: flex;
    flex-wrap: wrap;
/*    padding: 5%;*/
    justify-content: space-between;
}
.list-item .item {
    margin-bottom: 1em;
    width: 31%;
}
.list-item .box {
    background-color: #fff;
    border: 1px solid #000;
    height: 100%;
    margin-top: 0;
    width: auto;
}
.list-item .title {
    background-color: #6a4600;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    text-align: center;
    font-size: 0.8em;
    margin: 0;
    color: #fff;
}
.list-item .title:after {
    content: '';
    border-color: #6a4600 transparent transparent;
    border-style: solid;
    display: block;
    height: 0;
    position: absolute;
    width: 0;
        border-width: .466667em .466667em 0;
    bottom: -.466667em;
    left: calc(50% - (7em/15));
}
.box .text {
    font-size: 3.5vw;
    line-height: 1.5;
    padding: 5%;
    margin: 0;
    text-align: left;
    letter-spacing: -0.5px;
}
.pa5 {
    padding: 5%;
}
@media screen and (min-width:640px) {
.box .text {
    font-size: 16px;
}
.list-item .box {
    background-color: #fff;
    border: 1px solid #000;
    height: 100%;
    margin-top: 0;
    width: auto;
}
.list-item .title {
    padding: 5px 0;
    font-size: 1.1em;
}
section.syurui {
    margin-top: 40px;
}
}

/*続きを読むアコーディオン*/
.grad-wrap {
  position: relative;
}
/*.grad-wrap + .grad-wrap {
  margin-top: 40px;
}*/
.grad-trigger {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  width: 170px;
  margin: auto;
  padding: .5em 0;
  border-radius: 2px;
  background: #009e8f;
  color: #fff;
  font-size: 0.6em;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 0 3px rgba(0,0,0,.3);
}
.grad-trigger:hover {
  background: #fff;
  color: #009e8f;
}
.grad-trigger .fa {
  margin-right: .5em;
}
.grad-item {
  position: relative;
  overflow: hidden;
}
.grad-item.is-hide {
  height: 170px;
}
.grad-item p + p {
  margin-top: 1em;
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 10px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 10%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 10%, #fff 100%);
/*  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);*/
}
.grad-trigger.is-show + .grad-item::before {
  display: none;
}

@media screen and (min-width:640px){
.grad-trigger {
    width: 280px;
    font-size: 15px;
    bottom: 48px;
}
.grad-item.is-hide {
    height: 300px;
}
}


/*-------------駆除できる？-------------*/
section.kujyo {
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 2%;
/*    margin-top: -5vw;*/
    margin-bottom: 0;
}
.kujo_bg {
    background-image: url(../img/kujo_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
h3.kujyo_q {
    background: #663200;
    padding: 0 0 .4em .3em;
    color: #fff;
    font-style: initial;
    font-size: 0.95em;
}
.kujo_a {
    background: #fff;
    border: 2px solid #000;
    padding: 3%;
    border-radius: 10px;
    margin: 3% 0 7%;
}
.kujo_flex {
    display: flex;
}
.kujo_flex img {
    width: 35%;
    height: 100%;
}
.kujo_flex p {
    width: 90%;
    margin: 0 0 0 3%;
    font-size: 0.7em;
    line-height: 1.4;
}
.qa_n {
    color: #f29704;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5em;
    margin-right: 10px;
}
.kujo_a h3 {
    color: #000;
    font-style: inherit;
    margin-bottom: 3%;
}

@media screen and (min-width:640px) {
section.kujyo {
    margin-top: 0;
}
h3.kujyo_q {
    font-size: 1.5em;
    padding: 0 20px 10px 10px;
}
.kujo_flex p {
    font-size: 1.1em;
}
}

/*-------------仕組み-------------*/
section.system {
    margin-bottom: 1em;
}

@media screen and (min-width:640px) {
}

/*-------------選ばれる理由-------------*/
section.point {
    background: #1e9d34;
    margin-top: 1.5em;
    margin-bottom: 0;
}
.point_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.point_box {
     background: #fff;
     width: 48%;
     margin-bottom: 5%;
}
.point_ttl {
    color: #faec2f;
    width: 88%;
    display: block;
    height: 30px;
    font-size: 0.85em;
    text-align: center;
    background: #1c416a;
    font-weight: bold;
    padding: 4px;
    padding-right: 59px;
    background: linear-gradient(
-60deg
 , transparent 50px, #1c416a 0);
    margin-top: 0;
}

h3 {
    color: #e60012;
    font-weight: bold;
    font-style: oblique;
    margin: 0;
    font-size: 1em;
    letter-spacing: -0.5px;
    line-height: 1.4;
}
.point_tx p {
    line-height: 1.4;
    font-size: 0.9em;
}
.point_tx {
    padding: 0 5%;
}
.point_box p:nth-child(3) {
    font-size: 0.7em;
    line-height: 1.2;
}
.abs_p1 {
    left: 57%;
    width: 47%;
    top: 2%;
}
.abs_p2 {
    top: -1%;
    left: 53%;
    width: 52%;
}
.abs_p3 {
    top: -3%;
    left: 67%;
    width: 37%;
}
.abs_p4 {
    top: -4%;
    left: 65%;
    width: 37%;
}
/*.cta_mt0{
    margin-top: -0.8em;
}*/

@media screen and (min-width:640px){
.point_ttl {
    width: 56%;
    height: 11%;
    font-size: 1.2em;
}
.point_ttl2 {
    height: 13%;
}
h3 {
    font-size: 1.7em;
    line-height: 1.3;
}
.abs_p1 {
    width: 40%;
}
.abs_p2 {
    top: -5%;
    left: 54%;
    width: 43%;
}
.abs_p3 {
    top: -6%;
    left: 76%;
    width: 33%;
}
.abs_p4 {
    top: -3%;
    left: 61%;
    width: 37%;
}
/*.cta_mt0 {
    margin-top: -23px;
}*/
}

/*-------------基本プランのご案内-------------*/
section.plan {
    margin-bottom: 10vw;
    margin-top: 5vw;
}
.plan-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 5px 13px 40px;
}
.tp2 {
    width: 64px;
    height: 70px;
    margin-bottom: 10px;
    background-size: 100%;
}
.plan_box {
    background-image: url(../img/plan_bg.jpg);
    background-size: contain;
    border:1px solid #663200;
}
.plan_box_ttl {
 font-weight: bold;
 color: #663200;
}

.plan01 {
    background-image: url(../img/plan01.png);
    background-repeat: no-repeat;
}
.plan02{
    background-image: url(../img/plan02.png);
    background-repeat: no-repeat;
}
.plan03{
    background-image: url(../img/plan03.png);
    background-repeat: no-repeat;
}
.plan04{
    background-image: url(../img/plan04.png);
    background-repeat: no-repeat;
}
.plan05{
    background-image: url(../img/plan05.png);
    background-repeat: no-repeat;
}
.plan06{
    background-image: url(../img/plan06.png);
    background-repeat: no-repeat;
}
.plan07{
    background-image: url(../img/plan07.png);
    background-repeat: no-repeat;
}
.plan08{
    background-image: url(../img/plan08.png);
    background-repeat: no-repeat;
}
.trouble-point_p {
    text-align: center;
    font-weight: bold;
    color: #333;
    font-size: 0.6em;
    margin-top: 72px;
    line-height: 1.3;
}
.kakaku {
    font-size: 1.3em;
}


@media screen and (min-width:640px){
section.plan {
    margin-bottom: 60px;
    margin-top: 40px;
}
.plan-flex {
    padding: 5px 45px 40px;
}
.plan_box_ttl {
 font-size: 20px;
}
.tp2 {
    width: 120px;
    height: 140px;
    margin-bottom: 10px;
    background-size: 100%;
}
.trouble-point_p {
    font-size: 14px;
    margin-top: 130px;
    line-height: 1.3;
}
.kakaku {
    font-size: 1.3em;
}
}


/*-------------害獣駆除の流れ-------------*/
section.kujo_step {
    background-color: #e2e0dc;
    margin-bottom: 0;
}
.kujo_step {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 5%;
    padding-bottom: 5%;
}
.kujo_step .step_box {
    background-color: #fff;
    width: 31%;
    display: flex;
    flex-direction: column;
    padding: 2%;
    height: auto;
}
.step_box .title {
font-size: 3.5vw;
}
.step_box .text {
font-size: 3.5vw;
}
.kujo_step .step {
    margin-bottom: 1em;
    width: 31%;
}
.kujo_step_n {
    position: absolute;
    top: -3%;
    left: -6%;
    width: 28%;
}

@media screen and (min-width:640px){
.kujo_step {
    margin-top: 3%;
    padding-bottom: 3%;
}
.step_box .title {
font-size: 20px;
}
.step_box .text {
font-size: 16px;
}
.kujo_step .step {
    margin-bottom: 1em;
    width: 31%;
}
.kujo_step_n {
    top: -1%;
    left: -5%;
    width: 22%;
}
}


/*-------------ご相談～駆除完了までの流れ-------------*/
section.step {
    background-image: url(../img/step_bg.jpg);
    background-size: contain;
    margin-bottom: 0;
    margin-top: -7%;
}
.step_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.step_box {
    width: 48%;
    box-shadow: 0px 10px 15px -10px #808080;
    margin-bottom: 20px;
    height: auto;
    background: #fff;
    display: flex;
}
.boxs {
    border: 1px solid #663200;
    border-radius: 0 0 5px 5px;
}
.step-p1 {
    text-align: center;
    color: #fff;
    background: #fe9418;
    padding: 2%;
    font-weight: bold;
    margin-top: -0.08em;
}
.step_p {
    padding: 0 5%;
}
p.step_p {
    font-size: 0.79em;
}


@media screen and (min-width:640px){
.step_box {
    height: 420px;
}
.step_flex {
    padding: 0 30px;
}
.step_n {
    top: -31%;
    left: 2%;
    width: 22%;
}
p.step_p {
    font-size: 16px;
    margin-top: 16px;
}
}



/*-------------Q&A-------------*/
    .q_arrow {
        position: absolute;
        top: 42%;
        right: 4%;
        width: 5%;
    }
    .OaC_btn_1 {
        display: block;
        padding: 10px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 16px;
    }
    .OaC_btn_1 {
        position: relative;
        line-height: 1.3;
        padding-left: 18%;
        padding-right: 12%;
        margin: 10px 10px 0 10px;
    }
    .OaC_btn_1:before {
        position: absolute;
        left: 3%;
        top: 5%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }
    .sp_close_1 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .OaC_btn_2 {
        display: block;
        background-color: #ffffff;
        padding: 10px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 16px;
    }
    .sp_close_2 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .OaC_btn_2 {
        position: relative;
        line-height: 1.3;
        padding-left: 18%;
        padding-right: 12%;
        margin: 10px 10px 0 10px;
    }
    .OaC_btn_2:before {
        position: absolute;
        left: 3%;
        top: 5%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }
    .OaC_btn_3 {
        display: block;
        background-color: #ffffff;
        padding: 10px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 16px;
    }

    .OaC_btn_3 {
        position: relative;
        line-height: 1.3;
        padding-left: 18%;
        padding-right: 12%;
        margin: 10px 10px 0 10px;
    }
    .OaC_btn_3:before {
        position: absolute;
        left: 3%;
        top: 5%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }

    .sp_close_3 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .OaC_btn_4 {
        display: block;
        background-color: #ffffff;
        padding: 10px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 16px;
    }

    .OaC_btn_4 {
        position: relative;
        line-height: 1.3;
        padding-left: 18%;
        padding-right: 12%;
        margin: 10px 10px 0 10px;
    }
    .OaC_btn_4:before {
        position: absolute;
        left: 3%;
        top: 20%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }

    .sp_close_4 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .OaC_btn_5 {
        display: block;
        background-color: #ffffff;
        padding: 10px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 16px;
    }

    .OaC_btn_5 {
        position: relative;
        line-height: 1.3;
        padding-left: 18%;
        padding-right: 12%;
        margin: 10px 10px 0 10px;
    }
    .OaC_btn_5:before {
        position: absolute;
        left: 3%;
        top: 20%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }

    .sp_close_5 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .OaC_btn_6 {
        display: block;
        background-color: #ffffff;
        padding: 10px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 16px;
    }

    .OaC_btn_6 {
        position: relative;
        line-height: 1.3;
        padding-left: 18%;
        padding-right: 12%;
        margin: 10px 10px 0 10px;
    }
    .OaC_btn_6:before {
        position: absolute;
        left: 3%;
        top: 20%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }

    .sp_close_6 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .OaC_btn_7 {
        display: block;
        background-color: #ffffff;
        padding: 10px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 16px;
    }

    .OaC_btn_7 {
        position: relative;
        line-height: 1.3;
        padding-left: 18%;
        padding-right: 12%;
        margin: 10px 10px 0 10px;
    }
    .OaC_btn_7:before {
        position: absolute;
        left: 3%;
        top: 20%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }

    .sp_close_7 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }
    .close {
        position: relative;
        line-height: 1.6;
        padding-left: 18%;
        padding-right: 10px;
        background: #e5e5e5;
        margin: 0 10px 10px;
        padding-top: 10px;
        padding-bottom: 20px;
        color: #000;
    }
    .close:before {
        position: absolute;
        left: 4.5%;
        top: 5%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/a.png) no-repeat;
        background-size: contain;
    }

@media screen and (min-width:640px) {
    .q_arrow {
        position: absolute;
        top: 37%;
        right: 4%;
        width: 3%;
    }
    .OaC_btn_1 {
        display: block;
        background-color: #ffffff;
        padding: 17px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 18px;
    }
    .OaC_btn_1 {
        position: relative;
        line-height: 1.3;
        padding-left: 12%;
        padding-right: 12%;
        margin: 10px 0 0;
    }
    .OaC_btn_1:before {
        position: absolute;
        left: 3%;
        top: 15%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }
    .sp_close_1 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .OaC_btn_2 {
        display: block;
        background-color: #ffffff;
        padding: 18px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 18px;
    }
    .sp_close_2 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .OaC_btn_2 {
        position: relative;
        line-height: 1.3;
        padding-left: 12%;
        padding-right: 12%;
        margin: 10px 0 0;
    }
    .OaC_btn_2:before {
        position: absolute;
        left: 3%;
        top: 15%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }
    .OaC_btn_3 {
        display: block;
        background-color: #ffffff;
        padding: 18px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 18px;
    }

    .OaC_btn_3 {
        position: relative;
        line-height: 1.3;
        padding-left: 12%;
        padding-right: 12%;
        margin: 10px 0 0;
    }
    .OaC_btn_3:before {
        position: absolute;
        left: 3%;
        top: 15%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }

    .sp_close_3 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .OaC_btn_4 {
        display: block;
        background-color: #ffffff;
        padding: 18px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 18px;
    }

    .OaC_btn_4 {
        position: relative;
        line-height: 1.3;
        padding-left: 12%;
        padding-right: 12%;
        margin: 10px 0 0;
    }
    .OaC_btn_4:before {
        position: absolute;
        left: 3%;
        top: 15%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }

    .sp_close_4 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .OaC_btn_5 {
        display: block;
        background-color: #ffffff;
        padding: 18px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 18px;
    }

    .OaC_btn_5 {
        position: relative;
        line-height: 1.3;
        padding-left: 12%;
        padding-right: 12%;
        margin: 10px 0 0;
    }
    .OaC_btn_5:before {
        position: absolute;
        left: 3%;
        top: 15%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }

    .sp_close_5 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .OaC_btn_6 {
        display: block;
        background-color: #ffffff;
        padding: 18px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 18px;
    }

    .OaC_btn_6 {
        position: relative;
        line-height: 1.3;
        padding-left: 12%;
        padding-right: 12%;
        margin: 10px 0 0;
    }
    .OaC_btn_6:before {
        position: absolute;
        left: 3%;
        top: 15%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }
    .sp_close_6 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .OaC_btn_7 {
        display: block;
        background-color: #ffffff;
        padding: 18px;
        color: #000000;
        font-weight: bold;
        border: 5px solid #e5e5e5;
        font-size: 18px;
    }

    .OaC_btn_7 {
        position: relative;
        line-height: 1.3;
        padding-left: 12%;
        padding-right: 12%;
        margin: 10px 0 0;
    }
    .OaC_btn_7:before {
        position: absolute;
        left: 3%;
        top: 15%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/q.png) no-repeat;
        background-size: contain;
    }
    .sp_close_7 {
        display: none;
        width: 100%;
        margin: 0 auto;
    }

    .close {
        position: relative;
        line-height: 1.6;
        padding-left: 12%;
        padding-right: 25px;
        background: #e7f9ff;
        margin: 0 0 10px;
        padding-top: 10px;
        padding-bottom: 20px;
        color: #000;
    }
    .close:before {
        position: absolute;
        left: 3.5%;
        top: 10%;
        content: "";
        display: inline-block;
        width: 2.3em;
        height: 2.3em;
        background: url(../img/a.png) no-repeat;
        background-size: contain;
    }
    }


/*-------------お客様からの声-------------*/
section.voices {
    background-image: url(../img/voice_bg.jpg);
    background-size: cover;
    margin-top: 3em;
    margin-bottom: -3%;
}
h4 {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: -0.8px;
}
.voice_ttl {
    font-size: 1.8em;
    color: #e60012;
    letter-spacing: -0.5px;
    font-weight: 800;
}
.slider{
    margin: auto;
    margin-top: 25px;
    width: 88%;
}
.slider img{
    height: auto;
    width: 100%;
    display: block;
    margin: auto;
}
.voice {
    width: 97%;
    background: #fff;
    margin: 0 auto;
    padding: 5%;
    border-radius: 20px;
/*    height: 780px;*/
    border: 3px solid #1e9d34;
}
.position-voice_p1 {
    text-align: center;
    padding: 2px;
    color: #fff;
    background: #1e9d34;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
}
.position-voice_p2 {
    font-size: 1em;
}

@media screen and (min-width:640px){
h4 {
    font-size: 2em;
}
    .voice_ttl {
    font-size: 2em;
}
.voice {
    width: 90%;
}
section.voices {
    margin-top: 6em;
}
}


/*-------------対象エリア-------------*/
section.area {
    margin-top: -6%;
}
h5 {
    padding: 5%;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 3em;
}
dl {
    display: inline-block;
/*    text-align: center;*/
    width: 90%;
}
dl.area2 {
    margin-top: -10px;
    width: 40%;
    margin-bottom: 16vh;
}
.map_abs {
    top: -4%;
}
dt {
    color: #fff;
}
dt.area_hokkai {
    background-color: #009944;
}
dt.area_kansai {
    background-color: #e181a9;
}
dt.area_shikoku {
    background-color: #cfdb00;
}
dt.area_kyusyu {
    background-color: #ea591f;
}
dt.area_cyubu {
    background-color: #2a69b3;
}
dt.area_kanto {
    background-color: #00a0d9;
}

dd.area_hokkai {
    border-bottom: 2px solid #009944;
    margin-bottom: 10px;
        margin-left: 0;
}
dd.area_kansai {
    border-bottom: 2px solid #e181a9;
    margin-bottom: 10px;
        margin-left: 0;
}
dd.area_shikoku {
    border-bottom: 2px solid #cfdb00;
    margin-bottom: 10px;
        margin-left: 0;
}
dd.area_kyusyu {
    border-bottom: 2px solid #ea591f;
    margin-bottom: 10px;
        margin-left: 0;
}
dd.area_cyubu {
    border-bottom: 2px solid #2a69b3;
    margin-bottom: 10px;
        margin-left: 0;
}
dd.area_kanto {
    border-bottom: 2px solid #00a0d9;
    margin-bottom: 10px;
        margin-left: 0;
}

@media screen and (min-width:640px){
section.area {
    margin-top: -3%;
}
    .map_abs {
    top: -15%;
    left: 19%;
    width: 72%;
}
dl {
    font-size: 22px;
    width: 60%;
}
h5 {
    padding: 0 5%;
    font-size: 1.6em;
margin-top: 4em;
}
}

@media screen and (max-width: 720px) {
    .map_abs {
        top: -5%;
        left: 20%;
        width: 68%;
    }
}
@media screen and (max-width:540px) {
	.map_abs {
    top: -5%;
    left: 13%;
    width: 75%;
  }
}
@media screen and (max-width:469px) {
	.map_abs {
    top: 25%;
    left: 13%;
    width: 75%;
  }
}


/*-------------スタッフ紹介-------------*/
.slider-for.slick-initialized.slick-slider.slick-dotted {
    margin: -20vw 0 15vw 0;
}

@media screen and (min-width:640px){
.slider-for.slick-initialized.slick-slider.slick-dotted {
    margin: 0 0 70px 0;
}
}

@media screen and (max-width:639px) {
.slider-for.slick-initialized.slick-slider.slick-dotted {
    margin: -10vw 0 15vw 0;
	}
}

@media screen and (max-width:540px) {
.slider-for.slick-initialized.slick-slider.slick-dotted {
    margin: -9vw 0 15vw 0;
	}
}

/*-------------フッター-------------*/

footer {
    background: #1e9d34;
    color: #fff;
}
tbody {
    font-size: 12px;
}
table.fooer_table {
    width: 100%;
    padding: 10px 10px 0;
    line-height: 1.8;
}
table.fooer_table th{
    width: 35%;
}
footer a:link, a:visited, a:hover, a:active {
    color: #fff;
}

.footer_oya{
    display: flex;
    justify-content:space-around;
}
.another p{
    font-size: 12px;
    color: #fff;
}
    .close1 {
        display: none;
    }
figure.logo {
    text-align: center;
    padding-top: 30px;
}
.logo img {
    width: 60%;
    margin-bottom: 10px;
}
.another {
    width: 100%;
    padding: 5px 30px 20px;
    font-weight: bold;
    border-top: 1px solid #fff;
}

@media screen and (min-width:640px) {
    .another{
        width: 100%;
        padding: 5px 110px 20px;
        font-weight: bold;
        border-top: 1px solid #fff;
    }
    .toiawase{
        width: 400px;
    }
    .logo img {
        width: 40%;
        margin-bottom: 10px;
    }
}

.trouble_01 {
    margin-bottom: 4%;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 10000;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -26px;
  right: -10px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  width: 100%;
}

body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}

@media screen and (min-width:768px) {
    .modal-container:before{
      height: 100%;
    }
    .modal-content {
    width: 50%;
    margin: 0 auto;
    }
    .modal-close {
    top: -26px;
    right: 244px;
    width: 40px;
    height: 40px;
    font-size: 55px;
    color: #fff;
    cursor: pointer;
    }
}

/*プライバシーポリシー*/
.privacy-policy {
    text-align: center;
    font-size: 0.8em;
}

#privacy h2 {
    margin: 0 auto;
    color: #fff;
    padding: 10px 0;
}
#privacy .inner {
    margin: 0 auto;
    padding: 0 3%;
    overflow-wrap: break-word;
}
#privacy .inner dl{
    font-size: inherit;
    width: 100%;
    font-weight: normal;
    text-align: left;
}
#privacy .inner dt{
    color: #222;
    font-weight: bold;
    margin-bottom: 5px;
}
#privacy .inner dd{
    margin: 0 auto;
}