/************************************************

general

************************************************/

*{
  box-sizing: border-box;
}
html,body{
  background: #ebeef5;
  font-family: 'Oswald', sans-serif;
}
.wrap{
  position: relative;
  min-width: 1200px;
  z-index: 2;
}

/********

loader

********/

#open_index{
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100vh;
  background:#ebeef5;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#open_index svg{
  width: 64px;
  height: 64px;
  animation: rotate 2s linear infinite;
}

#open_index svg circle{
  width: 100%;
  height: 100%;
  fill:none;
  stroke-width:4;
  stroke: #3c89fe;
  transform: translate(2px , 2px);
  stroke-linecap: round;
  stroke-dasharray: 190;
  stroke-dashoffset:190; 
  animation: loader 2s linear infinite;
}

@keyframes loader{
  0%,100%{
    stroke-dashoffset:190; 
  }
  50%{
    stroke-dashoffset:0; 
  }
  50.1%{
    stroke-dashoffset:380; 
  }
}
@keyframes rotate{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
.sectionwrap{
  opacity: 0;
  transition:all 2s ease-out;
}
.load .sectionwrap{
  transition-delay: 2s;
  opacity: 1;
  color: #002069;
}

/********

ribon

********/

#stage{
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 1;
}
#stage canvas{
  height: 100vh;
  width: 100%;
}
#stage.s_top{
  background-color: #ebeef5;
  background: radial-gradient(ellipse at left, rgb(220, 225, 235) 0%, rgb(235, 238, 245) 80%);
}
#stage.s_about{
  background-color: #002069;
  background: radial-gradient(ellipse at left, rgb(0, 4, 42) 0%, rgb(0, 35, 114) 80%);
}
#stage.s_solution{
  background-color: #ebeef5;
  background: radial-gradient(ellipse at left, rgb(220, 225, 235) 0%, rgb(235, 238, 245) 80%);
}
#stage.s_career{
  background-color: #002069;
  background: radial-gradient(ellipse at left, rgb(0, 4, 42) 0%, rgb(0, 35, 114) 80%);
}

/********

head

********/


header{
  background: #ffffff;
}
#gnav{
  position: fixed;
  background: #ffffff;
  width: 100%;
  padding: 10px 30px;
  z-index: 1000;
  height: auto;
  transition:all .5s ease-out;
  transform:translateY(-100%); 
}
.load #gnav{
  transition-delay: 1s;
  transform:translateY(0%); 
}

#gnav #company_logo a{
  display: inline-block;
}
#gnav #company_logo svg{
  width: 180px;
  height: 31px;
}
#gnav nav {
  position: absolute;
  top:17px;
  right: 15px;
}
#gnav nav #cpb{
  font-size: 12px;
  padding: 5px 0 5px 40px;
  margin: 0;
  position: relative;
  color: #002069;
  cursor: pointer;
}
#gnav nav #cpb span{
  position: absolute;
  top:0;
  left:0;
  width: 30px;
  height: 1px;
  background: #002069;
  transition:all .5s ease-out;
}
#gnav nav #cpb span:before{
  position: absolute;
  content: "";
  top:10px;
  left:0;
  width: 30px;
  height: 1px;
  background: #002069;
  transition:all .5s ease-out;
}
#gnav nav #cpb span:after{
  position: absolute;
  content: "";
  top:20px;
  left:0;
  width: 30px;
  height: 1px;
  background: #002069;
  transition:all .5s ease-out;
}
#gnav ul{
  display: none;
}

.open_nav #gnav{
  position: fixed;
  top:0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fffffff;
  z-index: 1000;
}
.open_nav #gnav .nav_line01{
  margin: 100px auto;
  position: relative;
}
.open_nav #gnav ul{
  display: block;
  position:relative;
  padding: 20px;
  list-style: none;
}
.nav_line01::after,
.nav_line01::before,
.nav_line02::after,
.nav_line02::before {
  background-color: #002069;
  content: '';
  display: block;
  position: absolute;
  z-index: 1000;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
}
/* 左上へ配置 */
.nav_line01::after {
    width: 0px;
    height: 1px;
    top: -1px;
    left: -1px;
}
/* 右下へ配置 */
.nav_line01::before {
    width: 0px;
    height: 1px;
    right: -1px;
    bottom: -1px;
}
/* 左下へ配置 */
.nav_line02::after {
    width: 1px;
    height: 0px;
    left: -1px;
    bottom: -1px;
}
/* 右下へ配置 */
.nav_line02::before {
    width: 1px;
    height: 0px;
    top: -1px;
    right: -1px;
}
.open_nav .nav_line01::after,
.open_nav .nav_line01::before {
  width: 100%;
  width: calc(100% + 1px);
}
.open_nav .nav_line02::after,
.open_nav .nav_line02::before {
  height: 100%;
  height: calc(100% + 1px);
}

.open_nav #gnav ul li{
  padding: 20px 0;
  text-align: center;
}

.open_nav #gnav ul li a{
  color: #002069;
  text-decoration: none;
  font-size: 20px;
}
.open_nav #gnav ul li a:hover{
  border-bottom: 1px solid #002069;
}

.open_nav #gnav nav #cpb span{
  position: absolute;
  top:0;
  left:0;
  width: 30px;
  height: 1px;
  background: #ffffff;
}
.open_nav #gnav nav #cpb span:before{
  position: absolute;
  content: "";
  top:13px;
  width: 30px;
  height: 1px;
  background: #002069;
  transform: rotate(-45deg);
}
.open_nav #gnav nav #cpb span:after{
  position: absolute;
  content: "";
  top:13px;
  width: 30px;
  height: 1px;
  background: #002069;
  transform: rotate(45deg);
}
#company_logo svg{
  fill:#002069;
}


/********

action

********/

.appear .appear_target{
  transition:all 1s ease-out;
  transform:translateX(30%);
  opacity: 0;
}
.appear.load .appear_target{
  transform:translateX(0%);
  opacity: 1;
}
.about_index .appear.load .appear_target ,
.solution_index .appear.load .appear_target,
.career_index .appear.load .appear_target{
  transition-delay: 2s;
}
.solution_index .appear.load .appear_target{
  font-weight: bold;
}
.appear .appear_fadeup{
  transition:all 1s ease-out;
  transform:translateY(30%);
  opacity: 0;
}
.appear.load .appear_fadeup{
  transform:translateY(0%);
  opacity: 1;
}

/********

txt Deco

********/

.ttl_box{
  display: flex;
  align-items: center;
}
.ttl_box h2{
  font-weight: normal;
  font-size: 20px;
  margin-left: 10px;
}
.l_large{
  font-size: 200px;
  font-weight: 300;
  line-height: 1;
  margin: 0;
}
.l_small{
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}
.appear .l_small{
  font-size: 70px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}
.l_col .ttl_box h2,
.l_col .l_large,
.l_col .l_small{
  color: #002069;
}
.l_col .ttl_box h2{
  font-weight: bold;
}
.r_col .ttl_box h2,
.r_col .l_large,
.r_col .l_small{
  color: #ffffff;
}
.shadowtx {
  text-shadow:
    -2px 1px 0px rgba(195, 93, 227, 0.9),
    2px 2px 0px rgba(60, 137, 254, 0.9)
}
.shadowtx.l_small {
    text-shadow: -2px 1px 0px rgba(195, 93, 227, 0.9), 1px 1px 0px rgba(60, 137, 254, 0.9);
}
.shadowbox {
  box-shadow:
    -2px -2px 0px rgba(195, 93, 227, 0.9),
    2px 2px 0px rgba(60, 137, 254, 0.9)
}



/********

foot

********/

footer{
  padding: 80px 50px;
  background:  #002069;
}
.foot_inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.foot_address{
  font-size: 13px;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
}
.foot_name{
  font-size: 15px;
  color: #ffffff;
  line-height: 1;
}
.foot_nav_inner{
  display: flex;
}
.foot_nav_inner a{
  font-size: 13px;
  color: #ffffff;
  line-height: 1;
  text-decoration: none;
  font-weight: 300;
  display: block;
  margin: 15px 20px;
}
.foot_nav_inner a:hover{
  text-decoration: underline;
}
.company_footlogo svg{
  fill:#ffffff;
}

/*******SP*********/

@media screen and (max-width: 980px) {

  #gnav #company_logo svg {
    width: auto;
    height: 25px;
  }
  #gnav #company_logo a {
      padding: 5px 0;
  }
  .wrap{
    min-width: 280px;
    overflow: hidden;
  }
  #gnav {
      padding: 10px 10px;
  }
  .ttl_box h2 {
    font-size: 4vw;
  }
  .l_large {
      font-size: 100px;
  }

  footer {
      padding: 50px 20px;
      text-align: center;
  }
  .foot_inner{
    display: block;
  }
  .foot_nav_inner {
      display: block;
      margin-top: 50px;
      border-top:1px solid #334d87;
      border-bottom:1px solid #334d87;
      padding-top: 20px;
      padding-bottom: 20px;
  }
  .foot_nav_inner a {
      font-size: 18px;
      color: #ffffff;
      font-weight: 300;
      display: block;
      margin: 0;
      padding: 10px; 
  }

}

/********

un_page

********/


.next_bt_wrap{

}
.next_bt_wrap a{
  display: block;
  width: 350px;
  margin: 0 auto;
  padding: 20px 0;
  background: #002069;
  text-decoration: none;
}
.next_bt_wrap a .bt_letterbox{
  display: flex;
  align-items: center;
  justify-content: center;
}
.next_bt_wrap a .l_letter{
  font-size: 55px;
  color: #ffffff;

}
.next_bt_wrap a .r_letter{
  font-size: 18px;
  color: #ffffff;
  padding-left: 5px;
  position: relative;
}
.next_bt_wrap a .r_letter:after {
  content: "";
  position: absolute;
  bottom:0;
  right: 0;
  width: 80px;
  height: 1px;
  background: #ffffff;
}
.next_bt_wrap a:hover .r_letter:after {
  animation-name: nexthover_line;
  animation-duration: 0.5s;
}

@keyframes nexthover_line {
  from {
    width: 0px;
  }
  to {
    width: 80px;
  }
}
.next_bt_wrap a .r_letter p{
  margin: 0;
  font-size: 16px;
}
.next_bt_wrap a .r_letter p.eng_small{
  font-size: 20px;
}


.contact_wrap{
  background: #ffffff;
  padding: 50px;
  text-align: center;
}
.contact_wrap a{
  display: block;
  margin: 0 auto;
  width: 300px;
  line-height: 72px;
  height: 72px;
  border: 1px solid  #002069;
  color:  #002069;
  text-decoration: none;
  font-size: 20px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.contact_wrap a:after{
  content: "";
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background:  #002069;
  z-index:-1;
  transition:all .3s ease-out;
  transform:translateX(100%);
}
.contact_wrap a:hover:after{
  transform:translateX(0%);
}

.contact_wrap a:hover span{
  z-index: 10;
  color: #ffffff;
}

/*******UN_SP*********/

@media screen and (max-width: 980px) {

  .next_bt_wrap a {
      width: 280px;
      margin: 0 auto;
      padding: 20px 0;
      background: #002069;
      text-decoration: none;
  }
  .contact_wrap {
      padding: 30px;
  }
  .contact_wrap a {
      width: 250px;
      line-height: 50px;
      height: 50px;
  }

}


/************************************************

TOP

************************************************/

.key_v{
  height: 100Vh;
  position: relative;
  width: 100%;
  padding: 0 0px;
}
.key_inner{
  position: absolute;
  top:50%;
  width: 100%;
  transform: translate(0%,-50%);
  text-align: center;
}
.key_v h1{
  margin: 0;
  display: inline-block;
  text-align: left;
  font-size: 70px;
  font-weight: 400;
  overflow: hidden;
  transition:all 1s ease-out;
  transform:translateX(30%);
  opacity: 0;
  color: #000;
}
.load .key_v h1{
  transition-delay: 2s;
  transform:translateX(0%);
  opacity: 1;
}


.about_section,
.career_section{
  background: #002069;
  margin-left: 10%;
  margin-bottom: 250px;
}
.about_section{
  background: url(../img/img.png) no-repeat right#002069;
  background-attachment: fixed;
}
.career_section{
  background: url(../img/img2.png) no-repeat right#002069;
  background-attachment: fixed;
}
.about_section .inner,
.career_section .inner{
  margin-right: 10%;
  padding:80px 100px;
  position: relative;
}
.solution_section{
  background: #ffffff;
  margin-right: 10%;
  margin-bottom: 250px;
}
.solution_section .inner{
  margin-left: 10%;
  padding:80px 100px;
  position: relative;
}

/********

TOP more BT

********/

.bt_wrap{
  position: absolute;
  bottom: 100px;
  right: 100px;
  text-align: right;
}
.bt_wrap a{
  font-size: 20px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 300;
  position: relative;
  transition:all .5s ease-out;
  padding: 5px 0 5px 20px;
}
.bt_wrap a:hover{
  letter-spacing: 0.1em;
}
.bt_wrap a:before{
  content: "";
  bottom:0px;
  right: 0;
  position: absolute;
  width: 0px;
  height: 1px;
  background: #ffffff;
  transition:all 1s ease-out;
}
.appear.load .bt_wrap a:before{
  width: 100px;
}
.appear.load .bt_wrap a:hover::before{
  animation-name: bthover_line;
  animation-duration: 0.5s;
}

@keyframes bthover_line {
  from {
    width: 0px;
  }
  to {
    width: 100px;
  }
}

.l_col  .bt_wrap a{
  color: #002069;
}
.l_col .bt_wrap a:before{
  background: #002069;
}


.news_section{
  max-width: 1200px;
  margin: 0 auto 250px; 
  padding: 0 50px;
}
.news_list{
  display: flex;
  list-style: none;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.news_list li{
  width: 30%;
  padding: 20px;
  background: #ffffff;
}
.news_list li figure{
  margin: 0 20px 0 0;
}
.news_list .news_contents{
  display: flex;
}
.news_list .news_contents p.newsday{
  font-size: 13px;
  margin: 0 0px 10px;
}
.news_list .news_contents p{
  margin: 0px;
  line-height: 1.6;
}
.news_list a {
text-decoration: none;
  color: #000000;
}
.news_ttl_wrap{
  font-size: 30px;
  color:  #002069;
  position: relative;
}
/* NEWS more 廃止 下層削除
.news_ttl_wrap .bt_wrap{
  position: absolute;
  bottom: 10px;
  left: 130px;
  right: auto;
  
}
.news_ttl_wrap .bt_wrap a{
  text-decoration: none;
  font-size: 20px;
  color:  #002069;
  font-weight: 300;
  position: relative;
}
.news_ttl_wrap .bt_wrap a:before{
  content: "";
  bottom:-5px;
  right: 0;
  position: absolute;
  width: 100px;
  height: 1px;
  background: #002069;
}
*/


/*******SPトップ*********/

@media screen and (max-width: 980px) {

  .key_v {
    text-align: center;
    height: 100vh;
  }
  .key_v h1 {
    display: inline-block;
    text-align: left;
    font-size: 10vw;
    font-weight: 400;
  }
  .about_section, .career_section, .solution_section{
    margin-bottom: 100px;
  }
  .about_section .inner, .career_section .inner {
    padding: 50px 10px 60px 40px;
  }
  .solution_section .inner {
    padding: 50px 40px 60px 10px;
  }

  .index_top .appear .l_small {
    font-size: 24px;
    margin-top: 8px;
  }
  .appear .l_small {
    font-size: 45px;
  }
  .bt_wrap {
    position: relative;
    bottom: 0;
    left: 0;
  }

  .news_section {
    padding: 0 20PX;
    margin: 0 auto 100px;
  }
  .news_list {
    display: block;
  }
  .news_list li {
    width: 100%;
    padding: 20px;
    margin-bottom: 15PX;
  }

}

/************************************************

about

************************************************/

.about_index{
  padding:0px;
}
.about_inner{
  margin: 0 auto;
  max-width: 980px;
  padding: 300px 0 300px;
  position: relative;
}
.about_tx{
  padding-left: 260px;
  font-size: 25px;
  color: #ffffff;
  line-height: 1.8;
}
.about_inner .ttl_box{
  position: absolute;
  top:100px;
  left: 20px;
  color: #ffffff;
}
.company_detail h4{
  font-size: 30px;
  color:  #002069;
  text-align: center;
  margin-bottom: 30px;
}
.company_detail{
  background: #ebeef5;
}
.company_inner{
  margin: 0 auto;
  max-width: 980px;
  padding: 50px 0 100px;
}
.detail_line{
  display: flex;
  background: #ffffff;
  margin-bottom: 5px;
}
.detail_line p{
  margin: 0;
  padding: 15px;
}
.detail_line p.th_tx{
  width: 15%;
  text-align: right;
  padding-right: 40px;
}
#gn_jp_map{
  margin-top: 30px;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

#gn_jp_map iframe,
#gn_jp_map object,
#gn_jp_map embed {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
#gn_jp_map iframe,
#gn_jp_map object,
#gn_jp_map embed {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all  0.7s ease;
}

#gn_jp_map iframe:hover,
#gn_jp_map object:hover,
#gn_jp_map embed:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}

.map_bt{
  text-align: right;
  margin:10px 0 50px; 
}
.map_bt a{
  display: inline-block;
  padding: 0px 40px;
  height: 28px;
  line-height: 28px;
  background: #ffffff;
  border: 1px solid #002069;
  text-decoration: none;
  border-radius: 14px;
  color: #002069;
}
/*******SPアバウト*********/

@media screen and (max-width: 980px) {

  .about_inner .ttl_box {
      top: 130px;
  }
  .about_inner {
      padding: 260px 0 100px;
  }
  .about_tx {
      padding:0 60PX 0 60px;
      color: #ffffff;
      line-height: 2.5;
  }
  .company_inner {
      padding: 30px 20PX 50px;
  }
  .detail_line {
      display: block;
  }
  .detail_line p.th_tx {
      width: 100%;
      text-align: left;
      padding-right: 0px;
      padding: 15px 15px 0px 15px;
  }

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

  .about_tx {
      padding:0 20PX 0 20px;
      font-size: 4VW;
  }

}



/************************************************

career

************************************************/

.career_index{
  padding:0px;
}
.career_inner{
  margin: 0 auto;
  max-width: 980px;
  padding: 280px 0 100px;
  position: relative;
}
.career_tx{
  padding-left: 260px;
  font-size: 18px;
  color: #ffffff;
  line-height: 2;
}
.career_inner .ttl_box{
  position: absolute;
  top:100px;
  left: 20px;
  color: #ffffff;
}
.career_info_wrap{
  margin: 0 auto;
  max-width: 820px;
  padding: 50px;
  background: #ffffff;
  margin-top: 100px;
}
.career_info_wrap .career_name{
  font-size: 20px;
  margin-bottom: 20px;
}
.career_info_wrap table{
  border-top: 1px solid #e8e8e8;
  margin-bottom: 20px;
  width: 100%;
}
.career_info_wrap table tr th,
.career_info_wrap table tr td{
  padding: 10px 15px;
  border-bottom: 1px solid #e8e8e8;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}
.career_info_wrap table tr th{
  width: 25%;
}
.career_info_wrap table p{
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 5px;
}
.career_info_wrap table p.disc_list{
  text-indent: -1em;
  padding-left: 1em;
}
.career_info_wrap table p.disc_list:before{
  content: "・";
}
.career_info_wrap .career_data_ttl{
  margin-bottom: 20px;
  font-size: 14px;
}
.career_info_wrap .career_data_ttl:before{
  content:"■";
  margin-right:10px;
  color: #002069; 
}
/*******SPキャリア*********/

@media screen and (max-width: 980px) {

  .career_inner {
      padding: 260px 20px 100px;
  }
  .career_inner .ttl_box {
      top: 130px;
  }
  .career_tx {
      padding:0 0PX 0 0px;
      font-size: 4VW;
      line-height: 2.5;
  }
  .career_info_wrap {
      padding: 10px;
      margin-top: 60px;
  }
  .career_info_wrap .career_name {
      font-size: 4vw;
  }
  .career_info_wrap table tr th, .career_info_wrap table tr td {
      padding: 10px 10px 10px 0px;
  }
  .career_info_wrap table tr th.sp1line, .career_info_wrap table tr td.sp1line{
    display: list-item;
    width: 100%;
    list-style: none;
  }
  .career_info_wrap table tr th.sp1line{
    border-bottom: none;
  }

}


/************************************************

solution

************************************************/

.solution_index{
  padding:0px;
}
.solution_inner{
  margin: 0 auto;
  max-width: 980px;
  padding: 300px 0 60px;
  position: relative;
}
.solution_tx{
  padding-left: 260px;
  font-size: 18px;
  line-height: 2;
  color: #002069;
  font-weight: bold;
}
.solution_inner .ttl_box{
  position: absolute;
  top:100px;
  left: 20px;
  color: #002069;
}
.solution_detail_inner{
  margin: 0 auto;
  max-width: 1200px;
  padding:0 20px 80px;
  position: relative;
}
.solution_flex{
  display: flex;
  align-items: flex-start;
}
.solution_flex .l_wrap ,
.solution_flex .r_wrap{
  width: 48%;
  margin: 1%;
}
.solution_flex .r_wrap{
  margin-top: 100px;
}
.solution_flex .s_box{
  margin-bottom: 5%;
  text-align: center;
  background: #FFFFFF;
  padding: 30px 20px 50px;
}
.solution_flex .s_box h3{
  font-size: 25px;
  margin-bottom: 50px;
}
.solution_flex .s_box p.info_tx{
  font-size: 15px;
  line-height: 2;
  margin:30px 0 0;
}
.solution_item{
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e8e8e8;
}
.solution_item p{
  font-size: 15px;
  text-indent: -1em;
  padding-left: 1em;
  margin: 0;
  text-align: left;
  line-height: 2;
}
.solution_item p:before{
  content:"・";
}
.client_list_wrap{
  margin-top: 80px;
  padding-bottom: 150px;
}
.client_list_wrap h4{
  font-size: 20px;
  text-align: center;
  margin-bottom:0px 0 30px;
  line-height: 1.6;
}
.client_list_wrap p{
  font-size: 20px;
  text-align: center;
  margin-bottom:0px;
  line-height: 1.6;
}
.client_list_wrap p span{
  display: inline-block;
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/*******SPソリューション*********/

@media screen and (max-width: 980px) {

  .solution_inner {
      padding: 240px 0 50px;
    }
  .solution_inner .ttl_box {
      top: 130px;
  }
  .solution_tx {
      padding:0 60PX 0 60px;
      line-height: 2.5;
  }
  .solution_flex {
      display: block;
  }
  .solution_flex .l_wrap, .solution_flex .r_wrap {

      width: 100%;
      max-width: 500px;
      margin: 0 auto 30px ;
  }
  .solution_flex .s_box h3 {
      font-size: 20px;
  }
  .solution_flex .s_box p.info_tx {
      text-align: left;
  }

  .client_list_wrap {
      padding-bottom: 80px;
  }

}
@media screen and (max-width: 640px) {
  
  .solution_tx {
      padding:0 20PX 0 20px;
      font-size: 4VW;
  }
  .solution_tx p{
    padding: 10px;
      background: rgba(235,238,245,.3);
  }
  .client_list_wrap p {
      font-size: 3.5vw;
      text-align: center;
      margin-bottom: 0px;
      line-height: 1.6;
  }

}


/************************************************

contact

************************************************/

.contact_formwrap{

}
.contact_formwrap h4{
  font-size: 30px;
  color:  #002069;
  text-align: center;
  margin-bottom: 30px;
}
.contact_inner{
  margin: 0 auto;
  max-width: 600px;
  padding: 120px 0 100px;
}
.contact_inner .th_tx{
  font-weight: bold;
}
.contact_inner p.th_tx{
  margin:20px 0 10px; 
  font-weight: bold;
}
.contact_inner input[type="text"],
.contact_inner input[type="email"],
.contact_inner input[type="tel"]{
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
}
.contact_inner label{
  margin-left: 8px;
}
.contact_inner textarea{
  width: 100%;
  padding: 10px;
  min-height:150px; 
}
.contact_bt_wrap{
  margin-top: 50px;
}
.contact_bt_wrap button[type="reset"] {
	display: block;
	width: 100px;
    margin: 0 auto 20px;
    padding: 8px 20px;
    background: #ececec;
    font-size: 14px;
    border: 1px solid #999;
    cursor: pointer;
}
.contact_bt_wrap button[type="submit"] {
    display: block;
    width: 350px;
    margin: 0 auto;
    padding: 30px 0;
    background: #002069;
    text-decoration: none;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
}
#mfp_button_send{
  display: block;
    width: 350px;
    margin: 30px auto 40px;
    padding: 30px 0;
    background: #002069;
    text-decoration: none;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
}
.thank_coment{
  text-align: center;
  line-height: 2;
  padding: 100px 20px;
}

/*******SPコンタクト*********/

@media screen and (max-width: 980px) {

  .contact_inner {
      padding: 80px 20px 100px;
  }
  .contact_bt_wrap a {
      width: 280px;
  }
  .pc_br{
    display: none;
  }
  #mfp_button_send{
    display: block;
    width: 250px;
    margin: 30px auto 40px;
    padding: 30px 0;
    background: #002069;
    text-decoration: none;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
  }

}

