@charset "UTF-8";

/*変数*/
:root {
  --main_color: #ffa351;
  --ttl_color: #314d93;
  --txt_color: #5f5d5e;
  --hover_color: #e4821d;
  --en_font: "Arial", sans-serif;
}
/*呼び出し方は var(--main_color)*/

/*ベース*/
p, li, a, dt, dd, address, th, td, label, input, textarea{
  font-size: 1rem;
  line-height: 2;
  color: var(--txt_color);
}
.inner{
  max-width: 1200px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 640px){
  .inner{
    width: 92%;
  }
}

/*横並び*/
.column{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 640px){
  .column{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.column-reverse{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 640px){
  .column-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/*見出し*/
.ttl{
    line-height: 1.3;
  text-align: center;
  color: #5f5d5e;
  font-weight: bold;
  margin-bottom: 5%;
  padding-bottom: 4%;
   font-size: 3.4rem;
}

.ttl span{
  font-size: 1.4rem;
    display: block;
    color: #6eb72f;
    font-family: "inter-tight-variable", sans-serif;
font-variation-settings: "wght" 600;
position: relative;
    letter-spacing: 1px;
}
.ttl span::before{
  display: inline-block;
  content: "";
  background: url(../img/sub_ttl_g.svg) no-repeat center/contain;
  height: 16px;
  width: 10px;
  vertical-align: middle;
  margin-right: 4px;
}

.w_ttl{
  color: #fff;
  position: relative;
}
.w_ttl::before{
  display: inline-block;
  content: "";
  height: 2px;
  width: 99px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.w_ttl span{
  color: #fff;
    position: relative;
}
.w_ttl span::before{
  display: inline-block;
  content: "";
  background: url(../img/sub_ttl_w.svg) no-repeat center/contain;
  height: 16px;
  width: 10px;
  vertical-align: middle;
  margin-right: 4px;
}

.g_ttl{
  position: relative;
}

.g_ttl::before{
    display: inline-block;
    content: "";
    height: 2px;
    width: 99px;
    background-color: #2e9648;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.ttl.left{
  text-align: left;
}
.ttl-sub{
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--txt_color);
  font-weight: bold;
  margin-bottom: 5%;
}
.ttl-sub.center{
  text-align: center;
}

@media screen and (max-width: 768px){
  .ttl{
     font-size: 2.6rem;
  }
  .ttl span {
    font-size: 1.2rem;
  }
  .ttl-sub {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 640px){
    .ttl {
        font-size: 2.1rem;
    margin-bottom: 8%;
    padding-bottom: 7%;
    }
        .ttl span {
        font-size: 1.1rem;
    }
    .w_ttl span::before {
    height: 13px;
  }
  .ttl span::before {
    height: 13px;
  }
  }

/*ボタン*/
.btn{
  position: relative;
  padding: 1% 4%;
  text-align: center;
  border-radius: 50px;
  display: table;
  margin: 4% auto 0;
  background: #ffa221;
  color: #fff;
  font-weight: bold;
  transition: .4s;
}
.btn:hover{
  opacity: .7;
}
.btn.left{
  margin: 4% 0 0;
}
.btn.right{
  margin: 4% 0 0 auto;
}
.btn::after{
  content: '';
  display: inline-block;
  width: .9rem;
  height: .9rem;
  margin-left: 10px;
  background: url(../../assets/img/arrow_white.svg) no-repeat right center / contain;
}

/*セクション上下の余白を設定*/
.sec{
  padding: 130px 0;
}
@media screen and (max-width: 640px){
  .sec{
    padding: 15% 0;
  }
}

/*ヘッダー*/
#header{
  position: relative;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  padding: 1rem 2rem;
  background: rgba(255,255,255,.8);
}
.header-logo{
  max-width: 250px;
  width: 25%;
}
.header-logo.center{
  margin: auto;
}
.tel-num{
  max-width: 280px;
  width: 30%;
  display: block;
}
@media screen and (max-width: 1045px){
  .tel-num{
    margin-right: 3rem;
  }
}
@media screen and (max-width: 768px){
.header-logo {
    max-width: 256px;
    width: 32%;
}
.tel-num {
    max-width: 280px;
    width: 33%;
  }
}
@media screen and (max-width: 640px){
  #header{
    padding: 0;
  }
  .header-logo{
    width: 60%;
    max-width: 200px;
    padding: 2% 2%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    box-shadow: 1px 1px 10px #4c4c4c;
  }
  #header.thanks-parts .header-logo{
    position: relative;
    margin: auto;
  }
  .tel-num{
    background: url(../../assets/img/tel_sp.svg) no-repeat right top / contain;
    width: 60px;
    height: 60px;
    margin-right: 0;
    position: fixed;
    top: 0;
    right: 60px;
    z-index: 99;
  }
  .tel-num img{
    display: none;
  }
}
/*ナビゲーションのデザイン*/
.nav_content{

}
.nav_list{
  display: flex;
  justify-content: center;
  padding: 2%;
  background: #fff;
}
.nav_list li{
  margin-right: 40px;
}
.nav_list li::after{
  content: '';
  display: inline-block;
    background: #6eb72f;
    width: 2px;
  height: 50%;
  margin-left: 40px;
  vertical-align: middle;
  /*  斜めにしたい時▼ */
  /*  transform:rotate(30deg);*/
}
.nav_list li:last-child{
  margin-right: 0;
}
.nav_list li:last-child::after{
  display: none;
}
.nav_list a{
color: #5f5d5e;
  transition: .4s;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  padding-bottom: 2px;
  position: relative;
}
/*contentのコメントアウトを外すと文字の頭にボッチがつきます*/
.nav_list a::before{
  /*  content: '';*/
  display: inline-block;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--main_color);
  vertical-align: middle;
  margin-right: .4rem;
}
.nav_list a:hover{
  color: var(--main_color);
}

.nav_list.-footer{
  background: none;
  margin-top: 5%;
}
.nav_list.-footer a{
  color: #5f5d5e;
}
.nav_list.-footer li::after{
  background: #6eb72f;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after{
  display: none;
}

/*バーガーメニュー*/
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

@media screen and (max-width: 1045px){
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open{
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    background: #f2900f;
    z-index: 10000;
  }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after{
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
    transition: 0.5s;
    position: absolute;
  }
  /*ナビゲーションのデザイン*/
  .nav_content{
    width: 90%;
    max-width: 500px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 99;
    background: rgba(46, 150, 72, .9);
    transition: .5s;
  }
  .nav_list{
    flex-direction: column;
    align-items: center;
    background: none;
  }
  .nav_list li{
    margin-right: 0;
    border-bottom: 1px solid #fff;
  }
  .nav_list li a{
    color: #fff;
    display: block;
    padding: 20px 12px;
    text-align: center;
  }
  .nav_list li::after{
    display: none;
  }
  .nav_list.-footer{
    margin-top: 5%;
    flex-direction: row;
  }
  .nav_list.-footer li{
    border-bottom: none;
  }
  main .top_nav ul li{
    width: 100%;
  }
}

@media screen and (max-width: 767px){
  .nav_list.-footer a{
    line-height: 1.6;
    padding: 3% 0;
  }
  .nav_list.-footer{
    flex-wrap: wrap;
  }
  .nav_list.-footer li{
    width: auto;
    margin-right: 4%;
  }
  .nav_list.-footer li:last-child{
    margin-right: 0;
  }
}

@media screen and (max-width: 639px){
  .nav_list.-footer{
    margin-top: 4%;
    padding-top: 4%;
    border-top: 1px solid #939393;
  }
  .nav_list.-footer a{
    font-size: .85rem;
  }
}


#drawer_input:checked ~ .drawer_open{
  background: #ecf8e4;
}

/*スクロールしたらナビゲーションに付与される*/
.fixed{
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

#drawer_input:checked ~ .drawer_open span::before,
#drawer_input:checked ~ .drawer_open span::after{
  background: #2e9648;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  right: 0;
}


/*ファーストビュー*/
.fv{

}
.fv .copy-wrap{
  padding: 13rem 0;
}
.fv h1{
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 10px;
  text-align: center;
  color: var(--txt_color);
}
.vegas-content{
  padding: 0;
}
.fv p{
  color: #a5a5a5;
  text-align: center;
  font-family: var(--en_font);
}

/*ファーストビューの基準の位置を変更する*/
.fv .vegas-slide-inner{
/*  background-position: center bottom!important;*/
}

@media screen and (max-width: 768px){
  .fv .copy-wrap{
    padding: 40% 4% 30%;
  }
  .fv h1{
    font-size: 2.6rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 640px){
    .fv .copy-wrap {
        padding: 45% 4% 45%;
    }
  }
@media screen and (max-width: 425px){
  .fv h1{
    font-size: 2.2rem;
  }
      .fv .copy-wrap {
        padding: 48% 0 48%;
    }
}

/*ベトナム人の特徴*/
.features{
  background: url(../../assets/img/b_bg.jpg) no-repeat center bottom / cover;
  margin-top: -2px;
}
.features .txt-box{
  width: 50%;
  position: relative;
}
.features .txt-box::before{
  display: inline-block;
  content: "";
  background: url(../img/okinawa.svg) no-repeat center/contain;
  width: 38%;
  height: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.features .txt-box p{
  color: #fff;
  position: relative;
  z-index: 1;
  font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 500;
font-style: normal;
}
.features .txt-box.center{
  margin: auto;
}
.features .txt-box.right{
  margin-left: auto;
}
.features .txt-box.bg{
  background: #2e9648;
  width: 78%;
  padding: 5%;
}
.features .txt-box .ttl{
  text-align: left;
}
.features .txt-box.center .ttl{
  text-align: center;
}

/*画像＋テキストの要素を横並びにする*/
.item-list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}
.item-list::after{
  content: '';
  display: block;
  width: 32%;
}
.item-list li{
  width: 32%;
}
.item-list picture{
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px){
.features .txt-box::before {
    width: 76%;
  }
  .features .txt-box.bg {
    width: 87%;
  }
}
@media screen and (max-width: 640px){
  .item-list li{
    width: 100%;
    margin-bottom: 8%;
    padding-bottom: 8%;
    border-bottom: 1px dotted #9b9b9b;;
  }
  .item-list li:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .item-list picture{
    margin-bottom: 0;
    margin-right: 5%;
    width: 100%;
  }
  .item-list .ttl-sub{
    font-size: 1.2rem;
    width: 100%;
    margin-bottom: 2%;
  }
  .item-list li p{
    width: 100%;
    line-height: 1.6;
  }
  .item-list .ttl-sub.center{
    text-align: left;
  }
}

@media screen and (max-width: 425px){
  .item-list picture, .item-list .ttl-sub, .item-list li p{
    float: none;
    width: 100%;
  }
}

/*li要素が4つ〜6つ以上の時*/
.item-list li:first-child:nth-last-child(4),
.item-list li:first-child:nth-last-child(4) ~ .item-list li,
.item-list li:first-child:nth-last-child(5),
.item-list li:first-child:nth-last-child(5) ~ .item-list li,
.item-list li:first-child:nth-last-child(6),
.item-list li:first-child:nth-last-child(6) ~ .item-list li{
  margin-bottom: 8%;
}

/*要素が2つの場合*/
.item-list.two{
  justify-content: center;
}
.item-list.two li{
  margin-right: 8%;
}
.item-list.two li:last-child{
  margin-right: 0;
}

.item-list picture{
  margin-bottom: 5%;
}
@media screen and (max-width: 768px){

}

/*要素が4つの場合*/
.item-list.four li{
  width: 23%;
}
@media screen and (max-width: 1023px){
  .item-list.four{
    flex-wrap: wrap;
    justify-content: center;
  }
  .item-list.four li{
    width: 42%;
    margin-bottom: 8%;
  }
  .item-list.four li:nth-child(3),.item-list.four li:nth-child(4){
    margin-bottom: 0;
  }
  .item-list.four li:nth-child(even){
    margin-right: 0;
  }
}

@media screen and (max-width: 640px){
  .item-list{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .item-list.four li{
    width: 100%;
  }
  .features .txt-box.bg{
    width: 100%;
  }
      .service::before {
        width: 96%;
        height: 56%;
        right: 0;
        bottom: 15%;
      }
}
@media screen and (max-width: 425px){
  .features .txt-box.bg{
    width: 100%;
  }
}

/*サービス紹介*/
.service{
  position: relative;
  padding-bottom: 200px;
}
.service::before{
    display: inline-block;
    content: "";
    background-color: #f5f5f5;
    width: 96%;
    height: 45%;
    position: absolute;
    right: 0;
    bottom: 12%;
    box-shadow: -11px 12px 17px #dfdfdf;
}
.service .item-list{
  flex-wrap: wrap;
justify-content: center;
}
.service .item-list li{
  width: 28%;
}

.service .item-list li:first-of-type,
.service .item-list li:nth-last-of-type(2){
  margin-right: 5%;
}

.service .item-list li .ttl-sub{
  text-align: left;
  position: relative;
  padding-left: 12px;
  line-height: 1.2;
  margin-bottom: 10%;
}

.service .item-list li .ttl-sub::before{
  display: inline-block;
  content: "";
  background-color: #2e9648;
  height: 100%;
  width: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.service .item-list picture{
  margin-bottom: 12%;
}

.service .item-list p{
  font-family: noto-sans-cjk-jp, sans-serif;
font-weight: 300;
font-style: normal;
}

/*サービスの流れ*/
.flow{
  background: #ecf8e4;
  overflow: hidden;
}
.flow .inner{
  width: 90%;
}
.flow .order-wrap{
  flex-wrap: wrap;
}
.flow .order-wrap::after{
  content: '';
  display: block;
  width: 30%;
}
.flow .order-wrap>li{
  width: 30%;
  background: #fff;
  padding: 3%;
  margin-bottom: 8%;
  position: relative;
  border: 3px solid #2e9648;
}
.flow .order-wrap>li::before{
  content: '';
  display: block;
  width: 62%;
  height: 16%;
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.flow .order-wrap>li:nth-of-type(4),
.flow .order-wrap>li:nth-of-type(5),
.flow .order-wrap>li:nth-of-type(6){
  margin-bottom: 0;
}
.flow .order-wrap>li:nth-of-type(1)::before{
  background: url(../../assets/img/num_01.svg) no-repeat center center / contain;
}
.flow .order-wrap>li:nth-of-type(2)::before{
  background: url(../../assets/img/num_02.svg) no-repeat center center / contain;
}
.flow .order-wrap>li:nth-of-type(3)::before{
  background: url(../../assets/img/num_03.svg) no-repeat center center / contain;
}
.flow .order-wrap>li:nth-of-type(4)::before{
  background: url(../../assets/img/num_04.svg) no-repeat center center / contain;
}
.flow .order-wrap>li:nth-of-type(5)::before{
  background: url(../../assets/img/num_05.svg) no-repeat center center / contain;
}
.flow .order-wrap>li:nth-of-type(6)::before{
  background: url(../../assets/img/num_06.svg) no-repeat center center / contain;
}

.flow .order-wrap>li::after{
  content: '';
  display: block;
  background: url(../../assets/img/arrow.svg) no-repeat center center / contain;
  width: 3rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 102%;
  transform: translate(0, -50%);
}
.flow .order-wrap>li:nth-child(3)::after,
.flow .order-wrap>li:last-child::after{
  display: none;
}
.flow .order-wrap li figure {
  margin: 4% auto;
}
.flow .order-wrap li:first-of-type figure{
  width: 38%;
  margin: 10% auto;
}
.flow .order-wrap li:nth-of-type(2) figure{
  width: 38%;
}
.flow .order-wrap li:nth-of-type(3) figure{
  width: 28%;
}
.flow .order-wrap li:nth-of-type(4) figure{
  width: 38%;
}
.flow .order-wrap li:nth-of-type(5) figure{
  width: 38%;
}
.flow .order-wrap li:nth-of-type(6) figure{
  width: 38%;
}
.flow .order-wrap li figure img{
  display: block;
  width: 100%;
}
.flow .order-wrap li h3{
color:#2e9648;
}
.flow .order-wrap li p{
  text-align: center;
      font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 300;
    font-style: normal;
}

@media screen and (max-width: 959px){
  .flow .order-wrap::after{
    width: 47%;
  }
  .flow .order-wrap>li{
    width: 47%;
  }
  .flow .order-wrap>li::after{
    width: 2rem;
    height: 2rem;
  }
  .flow .order-wrap>li:nth-child(2)::after,
.flow .order-wrap>li:nth-child(4)::after{
  display: none;
}
.flow .order-wrap>li:nth-child(3)::after{
    content: '';
    display: block;
    background: url(../../assets/img/arrow.svg) no-repeat center center / contain;
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 50%;
    left: 102%;
    transform: translate(0, -50%);
}
.flow .order-wrap>li:nth-child(4){
    margin-bottom: 8%;
  }
}
@media screen and (max-width: 640px){
  .flow .order-wrap::after{
    width: 100%;
  }
  .flow .order-wrap>li{
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .flow .ttl-sub{
    margin-bottom: 4%;
  }

    .flow .order-wrap>li:first-child::after,
  .flow .order-wrap>li:nth-child(2)::after,
.flow .order-wrap>li:nth-child(3)::after,
.flow .order-wrap>li:nth-child(4)::after,
.flow .order-wrap>li:nth-child(5)::after{
  content: '';
    display: block;
    background: url(../../assets/img/arrow.svg) no-repeat center center / contain;
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 111%;
    left: 50%;
    transform: translate(-50%, 0) rotate(90deg);
  }
   .flow .order-wrap>li,
.flow .order-wrap>li:nth-child(4),
.flow .order-wrap>li:nth-child(5){
    margin-bottom: 21%;
   }
   .flow .order-wrap>li::before {
    width: 35%;
  }
}
@media screen and (max-width: 425px){
  .flow .ttl-sub, .flow p{
    width: 100%;
    margin-left: 0;
  }
  .flow .ttl-sub{
    text-align: center;
  }
  .flow .order-wrap>li::before{
    top: -8%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  .flow .order-wrap>li{
    padding: 8% 4% 4%;
    margin-bottom: 7rem;
  }
     .flow .order-wrap>li:nth-child(4),
    .flow .order-wrap>li:nth-child(5){
          margin-bottom: 7rem;
  }
}

/*会社概要*/
.company{
position: relative;
}
.company::before{
  display: inline-block;
  content: "";
  background: url(../img/midori.svg) no-repeat center bottom/contain;
  width: 75%;
  height: 24%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.company .item{
  width: 47%;
  position: relative;
  z-index: 1;
}
.company .item::before{
  display: inline-block;
  content: "";
  background-color: #6eb72f;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: -1;
  opacity: .8;
}
.company .item img{
  height: 100%;
  object-fit: cover;
}
.company .data-list{
  width: 47%;
}
@media screen and (max-width: 768px){
  .company .item{
    width: 35%;
  }
  .company .data-list{
    width: 60%;
  }
}
@media screen and (max-width: 640px){
  .company .column{
    flex-direction: column-reverse;
  }
  .company .item{
    width: 100%;
  }
  .company .data-list{
    width: 100%;
    margin-bottom: 5%;
  }
}

/*よくある質問*/
.qa{
  background: url(../img/qa_bg.jpg) no-repeat center/cover;
  background-attachment: fixed;
}
@media screen and (max-width: 768px){
  .qa{
    background: none;
  }
.qa::before{
  display: block;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100vh;
  background: url(../img/qa_bg.jpg) no-repeat center/cover;
}
}
.qa iframe{
  width: 100%;
  display: block;
  height: 30rem;
}
.qa dl {
  max-width: 840px;
  margin: auto;
}
.qa dl dt{
  background-color: #2e9648;
  color: #fff;
  border-radius: 8px 8px 0 0;
  padding: 4% 4% 4% 8%;
  font-weight: 900;
  position: relative;
  line-height: 1.6;
}
.qa dl dt::before{
  display:inline-block;
  content: "";
  background: url(../img/q.svg) no-repeat center/contain;
  height: 25px;
  width: 29px;
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}
.qa dl dd{
  background-color: #fff;
  border-radius:0 0 8px 8px;
  padding:  4% 4% 4% 8%;
  margin-bottom: 8%;
  font-weight: 700;
  position: relative;
  line-height: 1.6;
  box-shadow: 7px 12px 17px #dfdfdf;
}
.qa dl dd::before{
  display:inline-block;
  content: "";
  background: url(../img/a.svg) no-repeat center/contain;
  height: 25px;
  width: 29px;
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px){
  .qa iframe{
    height: 15rem;
  }
}

/*お問い合わせ*/
.contact{
  background: #2e9648;
  margin-top: -5px;
}
.contact p{
  text-align: center;
}
.contact .w_ttl::before {
    display: inline-block;
    content: "";
    height: 2px;
    width: 99px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.formstyle {
  width: 80%;
  max-width: 800px;
  margin: 30px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 5%;
  position: relative;
}

.formstyle label {
  margin-bottom: 1%;
  display: block;
  font-weight: 400;
}

/*必須*/
.red {
  display: inline-block;
  background-color: #E00A19;
  padding: 0 1%;
  line-height: 1.8;
  color: #fff;
  font-size: .8rem;
  margin-left: 5px;
  border-radius: 10%;
}
/*任意*/
.gray {
  display: inline-block;
  background-color: #606060;
  padding: 0 1%;
  line-height: 1.8;
  color: #fff;
  font-size: .8rem;
  margin-left: 5px;
  border-radius: 10%;
}

.formstyle select, .formstyle input, .formstyle textarea {
  width: 100%;
  background: #f7f7f7;
  border: 1px solid #5f5d5e;
  padding: 1% 2%;
  margin: 0 0 3%;
  font-size: 1rem;
  color: #231815;
  border-radius: 8px;
  font-weight: 300;
}

input.radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  background-color: #fff;
  border: 1px solid #5f5d5e;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  margin-bottom: 0;
  z-index: 10;
  border-radius: 4px;
}

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

.checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}

label.radiotxt {
  margin: 0;
}

input.radio:hover {
  background: #9faab7;
}

input.radio:checked {
  background: #f2900f;
  border: none;
}

input.radio:checked::before {
  content: '';
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  display: block;
  transform: translate(-50%, -50%) rotate(-45deg);
  display: block;
  position: relative;
  top: 40%;
  left: 50%;
}

.formstyle textarea {
  height: 250px;
}

.privacy {
  padding: 20px;
  width: 80%;
  height: 200px;
  margin: 30px auto 10px;
  overflow-y: scroll;
  background: #f7f7f7;
  border: 1px solid #5f5d5e;
  border-radius: 8px;
}
.privacy h2 {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2rem;
  border-bottom: 1px dotted #8c8c8c;
  padding-bottom: 2%;
  margin-bottom: 2%;
  font-weight: 300;
}
.privacy h3 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2rem;
  margin-bottom: 12px;
  border-left: 5px solid #a6a6a6;
  padding-left: 2%;
  font-weight: 300;
}

.privacy p, .privacy-list {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}
.privacy p{
  font-weight: 300;
}

.privacy-list li {
  list-style: disc;
  font-size: 0.9rem;
  margin-left: 2rem;
  line-height: 1.6;
  font-weight: 300;
}

.formstyle .submit-btn {
  width: 80%;
  font-size: 1.2rem;
  padding: 2%;
  border-radius: 50px;
  margin: 5% auto 0;
  color: #fff;
  background-color: #f2900f;
  border: none;
}

.privacycheck {
  width: 90%;
  text-align: center;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.aicon-name ::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(../img/common/onepoint-blk.svg) no-repeat center center/contain;
}

.submit-btn {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.submit-btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 960px) {
  .formstyle {
    width: 100%;
  }
  .contctform {
    width: 100%;
    margin: 0 auto;
  }
  .contctform p.txt {
    text-align: left;
  }
  .formstyle {
    width: 100%;
    margin: 20px auto;
  }
  .privacy {
    padding: 2%;
    width: 100%;
    height: 200px;
  }
  .privacycheck {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .formstyle textarea {
    height: 150px;
  }
}
@media screen and (max-width: 640px) {
  .formstyle{
    border-radius: 5px;
  }
  .privacy {
    padding: 4%;
  }
  .radiobox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2%;
  }
}
/*フォーム確認画面*/
#cheked .ttl{
  margin-bottom: 2%;
}
.confirmation{
  padding: 100px 0;
}

.cheked-ttl {
  margin: 0 auto;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  color: #231815;
  position: relative;
  margin-bottom: 50px;
}

@media screen and (max-width: 640px) {
  .formstyle .radio-label {
    display: block;
    margin-left: 0;
  }
  .confirmation{
    padding: 15% 0;
  }
}
/*サンクスページ*/
#thanks {
  padding: 10% 0;
}
.thanks{
  background-color: #ecf8e4;
}

#thanks .contact-ttl {
  margin: 0 auto 50px auto;
}

.top-column .logo-ttl.-center {
  width: 220px;
  display: block;
  text-align: center;
  margin: auto;
}

.thanks-wrap {
  padding: 80px 0;
}
.thanks-wrap .thanks-ttl {
  text-align: center;
  font-weight: 600;
  line-height: 1.8;
  color: #231815;
  font-size: 2rem;
  margin-bottom: 40px;
}
.thanks-wrap .txt {
  text-align: center;
}

.thanks_nav .nav_list{
  display: none;
}
@media screen and (max-width: 960px) {
.thanks_nav .nav_list{
  display: block;
}
}

@media screen and (max-width: 640px) {
  .thanks-wrap {
    padding: 15% 0;
  }
  .thanks-wrap .thanks-ttl {
    font-size: 1.2rem;
  }
  .thanks-wrap .txt {
    text-align: left;
    font-size: 0.9rem;
  }
}


/*概要リスト*/
.data-list{
  flex-wrap: wrap;
}
.data-list dt, .data-list dd{
  padding: 2%;
  display: flex;
  align-items: center;
}
.data-list dt{
  border-bottom: 2px solid #72d68c;
}
.data-list dd{
  border-bottom: 2px solid #daefdf;
}

.data-list dt:last-of-type, .data-list dd:last-of-type{
  border-bottom: none;
}
.data-list dt{
  width: 160px;
  font-weight: bold;
}
.data-list dd{
  width: calc(100% - 160px);
  font-weight: 300;
}
.data-list dd address{
  font-weight: 300;
}
.data-list li{
  list-style: disc;
  margin-left: 1rem;
}
.data-list address{
  font-style: normal;
  line-height: 1.6;
}
@media screen and (max-width: 640px){
  .data-list{
    flex-direction: row!important;
  }
}
@media screen and (max-width: 425px){
  .data-list{
    flex-direction: column!important;
  }
  .data-list dt, .data-list dd{
    padding: 2% 4%;
    border-bottom: none;
  }
  .data-list dt{
    width: 100%;
    font-weight: normal;
    background: #2e9648;
    color: #fff;
  }
  .data-list dd{
    width: 100%;
    padding: 2% 0;
  }
}

/*ギャラリー*/
.gallery{
  flex-wrap: wrap;
}
.gallery::before, .gallery::after{
  content: '';
  display: block;
  width: 24%;
}
.gallery::before{
  order: 1;
}
.gallery li{
  width: 24%;
  margin-bottom: 1.5%;
}
/*横3つの場合*/
.gallery.three::after{
  width: 32%;
}
.gallery.three::before{
  display: none;
}
.gallery.three li{
  width: 32%;
}

@media screen and (max-width: 768px){
  .gallery::after{
    width: 32%;
  }
  .gallery::before{
    display: none;
  }
  .gallery li{
    width: 32%;
  }
}
@media screen and (max-width: 640px){
  .gallery{
    flex-direction: row;
  }
  .gallery::after{
    width: 49%;
  }
  .gallery li, .gallery.three li{
    width: 49%;
  }
}


/*TOPへ戻るボタン*/
 .re-btn {
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 999;
  -webkit-transition: .4s;
  transition: .4s;
  max-width: 75px;
  opacity: .7
}
.re-btn img {
  width: 100%
}
.re-btn:hover {
  opacity: .7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)"
}

@media screen and (max-width: 640px) {
  .re-btn {
    position:fixed;
    bottom: 2%;
    right: 2%;
    z-index: 50;
    -webkit-transition: .4s;
    transition: .4s;
    width: 30%;
    z-index: 200;
    max-width: 80px;
    opacity: .7
  }
  .re-btn img {
    width: 100%
  }
  .re-btn:hover {
    opacity: .7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)"
  }
}

/*footer*/
footer{
  background: #fff;
  padding: 100px 0 0;
}
.thanks_footer{
  padding: 0;
}
footer .footer-logo{
  width: 60%;
  max-width: 280px;
  margin: 0 auto 3%;
  display: block;
}
footer address{
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  color: #5f5d5e;;
  text-align: center;
}
footer .copy{
  color: #fff;
  font-size: .9rem;
  text-align: center;
  display: block;
  margin-top: 5%;
  padding: 1% 0;
  background: #2e9648;
}
footer .thanks_copy{
  margin-top: 0;
}
@media screen and (max-width: 639px){
  footer{
    padding: 15% 0 0;
  }
  footer .copy{
    margin-top: 15%;
  }
  footer .thanks_copy{
    margin-top: 0;
  }
}

/*thanksページ*/
.thanks p{
  text-align: center;
      font-weight: 300;
}

@media screen and (max-width: 639px){
  .thanks p{
    text-align: left;
  }
}

/*送信内容確認画面*/
.confirm-page .tel-num{
  right: 0;
}

#formWrap {
  line-height:120%;
  /*cursor:pointer*/
}

table.formTable{
  width:70%;
  margin:5% auto;
  border-collapse:collapse;
}
table.formTable td{
  border-bottom:1px solid #777777;
  padding:15px;
  background-color: #fff;
}

table.formTable td{
  border:1px solid #DDDDDD;
  padding:15px;
  background-color: #fff;
  font-weight: 300;
}

table.formTable th{
  width:30%;
  font-weight:normal;
  background: #2e9648;
  color:#fff;
  text-align:left;
  border: 1px solid #ddd;
    border-bottom: 1px solid #fff;
    padding: 15px;
  padding:15px;
}

p.error_messe{
  margin:5px 0;
  color:red;
}

.send{
  display: -webkit-box;
    display: flex;
    justify-content: space-around;
    width: 400px;
    margin: 0 auto;
  font-size: .87rem;
}
.submitbtn{
  background-color: #f2900f;
  padding: 12px 50px;
  font-size: 1rem;
  height: fit-content;
  text-align: center;
  margin:20px auto;
  color: #fff;
}
.submitbtn,.backpage {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;}
.submitbtn:hover,.backpage:hover{
  opacity: .7; 
}

.backpage{
  background-color:#b7b7b7;
  color: #231815;
  padding: 12px 50px;
  font-size: 1rem;
  height: fit-content;
  margin:20px auto;
  text-align: center;
  line-height: 2;
}



/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:639px) {
#formWrap {
  margin:0 auto;
}
#formWrap h4{
  font-size:1.5rem;
  margin:10% auto;
}
table.formTable td{
  border-bottom:none;

}
table.formTable th, table.formTable td {
  width:auto;
  display:block;
}
table.formTable td,table.formTable th{
  padding:10px;
  border: none;
}
table.formTable th {
  margin-top:5px;
  border-bottom:0;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
  display: block;
    width: 100%;
    height: auto;
    padding: 5%;
    font-size: 1rem;
}
.backpage{
  font-weight: normal;
  cursor:pointer;
  margin: 20px auto 0px;
}
.send{
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
}
.send>.nav-entry{
  padding: 2rem 2rem;
}
}

/*ここから*/

.copy-wrap h1 {
width: 65%;
padding-left: 2%;
}
.copy-wrap h1 img{
  display: block;
  width: 100%;
}
/**/
@media screen and (max-width:1325px) {
.service .item-list li {
    width: 35%;
}
.service .item-list li:nth-last-of-type(2) {
    margin-right: 0;
}
.service .item-list li:first-of-type,
.service .item-list li:nth-last-of-type(2){
  margin-bottom: 8%;
}
.item-list::after {
    content: '';
    display: none;
    width: 32%;
}

.service::before {
    width: 96%;
    height: 65%;
    right: 0;
    bottom: 8%;
    box-shadow: -11px 12px 17px #dfdfdf;
}
.service {
    padding-bottom: 240px;
}
}
@media screen and (max-width:1090px) {
  footer .nav_list {
  flex-wrap: wrap;
}
footer .nav_list li {
    margin-right: 14px;
    width: 2;
}
footer .nav_list li::after {
    margin-left: 12px;
  }
}

@media screen and (max-width:880px) {
    .company .company_data {
        flex-direction: column-reverse;
    }
    .company .data-list {
    width: 100%;
    margin-bottom: 8%;
}
    .company .item {
    width: 97%;
  }
  .company::before {
    width: 90%;
  }
  .data-list dt {
    justify-content: center;
  }
}
@media screen and (max-width:768px) {
  .ttl {
    margin-bottom: 8%;
  }
.copy-wrap h1 {
    width: 85%;
  }
  .service{
    background-color: #fff;
  }
      .service .item-list li {
        width: 42%;
    }
    .qa dl dt,
       .qa dl dd {
    padding: 4% 4% 4% 9%; 
  }
  .company{
    background-color: #fff;
  }
}
@media screen and (max-width:640px) {
  .copy-wrap h1 {
    width: 100%;
    padding-left: 0;
}
    .service .item-list li {
        width: 100%;
    }
    .service .item-list li .ttl-sub{
  margin-bottom: 4%;
}
    .service::before {
        width: 100%;
        height: 75%;
        right: 0;
        bottom: 5%;
      }
      .service .item-list picture {
    margin-bottom: 6%;
}
    .qa dl dt, .qa dl dd {
        padding: 4% 4% 4% 10%;
    }
    .qa dl dt::before {
    height: 20px;
    width: 24px;
  }
  .qa dl dd::before {
    height: 20px;
    width: 24px;
  }
  .flow .order-wrap li:first-of-type figure {
    width: 23%;
  }
  .flow .order-wrap li:nth-of-type(2) figure {
    width: 24%;
}
.flow .order-wrap li:nth-of-type(3) figure {
    width: 19%;
}
.flow .order-wrap li:nth-of-type(4) figure {
    width: 27%;
}
.flow .order-wrap li:nth-of-type(5) figure {
    width: 28%;
}
.flow .order-wrap li:nth-of-type(6) figure {
    width: 25%;
}
.features .txt-box.bg {
    padding: 7%;
  }

}
@media screen and (max-width:500px) {
    .qa dl dt, .qa dl dd {
        padding: 4% 4% 4% 12%;
    }
  }
@media screen and (max-width:425px) {
    .ttl {
        font-size: 1.8rem;
    }
        .ttl span {
        font-size: 1rem;
    }
        .qa dl dt, .qa dl dd {
        padding: 4% 4% 4% 14%;
    }
    .flow ol{
          margin-top: 12%;
    }
.flow .order-wrap>li::before {
    width: 55%;
  }
  .qa dl dd {
    margin-bottom: 12%;
  }
  }
@media screen and (max-width:375px) {
      .ttl {
        font-size: 1.6rem;
    }
        .ttl span {
        font-size: .9rem;
    }
        .item-list .ttl-sub {
        font-size: 1.1rem;
      }

  }
@media screen and (min-width:1800px) {
  .fv .copy-wrap {
    padding: 18rem 0;
}
}
/*Noto bold
font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 700;
font-style: normal;
*/

/*Noto black
font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 900;
font-style: normal;
*/