@charset "utf-8";
/*-------------------------------------*/
/*	トップページ	*/
/*-------------------------------------*/
/*初期アニメーション*/
#opening {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
 background-color: #000000;
  z-index:1000;
}
 
#opening .op_img{
  position: absolute;
top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	z-index: 1100;
	width: 70%;
  max-width: 700px;
}
#opening .op_img video{
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 768px) {
#opening .op_img{
	width: 70%;
}
}
/*メインビジュアル*/
#main_wrap{
  position: relative;
  width: 100%;
}
#main_img {
  width: 90%;
  height: calc( 100vh - 120px);
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/index/main_img.png);
  background-size: cover;
  border-radius: 0 0 100px 0;
}
.main_ttl {
  position: absolute;
  bottom: 10%;
  left: 10%;
  max-width: 1000px;
  width: 80%;
}
.main_ttl h2 {
  color: #FFFFFF;
  font-size: 7.0rem;
  font-weight: 800;
  line-height: 1.7;
}
.main_ttl p {
  color: #FFFFFF;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.7;
  font-family: "Encode Sans", sans-serif;
}
.fuwafuwa {
  animation: 3s fuwafuwa infinite;
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/*ページスクロール*/

.scroll a{ 
	position: absolute;
	width: 10%;
  max-width: 66px;
	height: 120px;
    bottom: 20px;
    right: 2%;
		z-index: 2;
	display: block;
}
@keyframes goDownAndUp {
  50% {
   bottom: 90px;
  }
  100% {
    bottom:0px;
  }
}
.scroll a span::after{
	content: "";
  width:  1px;
  height: 90px;
  position: absolute;
 bottom: 0;
  left: 50%;
	 transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.scroll a span::after {
  background-color: #000000;
}
.scroll a span::before{
	content: "";
  width:  6px;
  height: 6px;
  position: absolute;
 bottom: 0;
  left: 50%;
  transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  animation-name: goDownAndUp;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  background-color: #E8340C;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .main_ttl h2 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 768px) {
  #main_img {
  width: 100%;
  height: calc( 100vh - 80px);
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/index/main_img_sp.png);
  background-size: cover;
  border-radius: 0 0 50px 0;
}
.main_ttl {
  position: absolute;
  bottom: 10%;
  left: 5%;
  max-width: 800px;
  width: 90%;
}
.scroll{
  display: none;
}

}
@media screen and (max-width: 550px) {
  .main_ttl h2 {
    font-size: 3rem;
  }
  .main_ttl  p{
  font-size: 1.6rem;
}
}

/* news */
#top #news h2{
  font-weight: 800;
  font-family: "Encode Sans", sans-serif;
  text-transform: uppercase;
  color: #E8340C;
  font-size: 5.0rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
  #top #news h2{
  font-size: 4.0rem;
}
}
@media screen and (max-width: 550px) {
}
/* top_about */
.loop-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2D2D2D;
  color: #FFFFFF;
  font-family: "Encode Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 5.0rem;
  padding: 10px 0;
}
.loop-area {
  display: flex;
  animation: loop-slide 30s infinite linear 1s both;
  list-style: none;
  margin: 0;
  padding: 0;
}
.loop-area .content {
  width: 900px;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


#top_about {
  background-color: #F6F7F7;
  background-image: url(../images/bg_page01.png), url(../images/bg_doted-g-br.svg);
  background-repeat: no-repeat;
  background-position: right top, left bottom;
}
dl.about_box {
  display: flex;
  margin-bottom: 100px;
  align-items: center;
  justify-content: space-between;
}
dl.about_box:last-of-type {
  margin-bottom: 0;
}
dl.about_box.rev {
  flex-direction: row-reverse;
}
dl.about_box dt {
  text-align: center;
  position: relative;
  width: 50%;
}
dl.about_box dd {
  width: 50%;
}
dl.about_box dd .inner {
  width: 90%;
  margin: 0 auto;
  max-width: 600px;
}
dl.about_box dd .inner p {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
#top_about dl.about_box:first-of-type dt img{
  width: 100%;
  border-radius: 100px 0 0 0;
}
#top_about dl.about_box:first-of-type dt .about_img02{
  max-width: 200px;
  position: absolute;
  bottom: -100px;
  right: 30%;
}
#top_about dl.about_box dd h3{
  line-height: 1.5;
  font-weight: 600;
  font-size: 5.2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  #top_about dl.about_box dd h3{
  font-size: 3.2rem;
}
}
@media screen and (max-width: 991px) {
#top_about dl.about_box:first-of-type dt img{
  border-radius: 60px 0 0 0;
}
#top_about dl.about_box:first-of-type dt .about_img02{
  max-width: 100px;
  position: absolute;
  bottom: -50px;
  right: 20%;
}
#top_about dl.about_box:first-of-type dt{
margin-bottom: 20px;
}
  dl.about_box {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  dl.about_box.rev {
    flex-direction: column-reverse;
  }
  dl.about_box dt, dl.about_box dd {
    width: 100%;
  }
  dl.about_box dd .inner {
    width: 90%;
    margin: 0 auto;
    max-width: 600px;
  }
  dl.about_box dt {
    width: 90%;
    margin: 0 auto 0 0;
  }
  dl.about_box.rev dt {
    width: 90%;
    margin: 0 0 0 auto;
  }
  dl.about_box dd .inner p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .loop-wrap {
  font-size: 3.0rem;
}
.loop-area .content {
  width: 500px;
}
  dl.about_box dd .inner p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 550px) {}
/* top service */
#service .inner{
  background-color: #E8340C;
  padding: 40px 0;
}
#service .inner .ttl{
 color: #FFFFFF;
 text-align: center;
 margin-bottom: 0;
}
#service .inner .ttl span{
 color: #FFFFFF;
}
#top #service .service_list{
  display: flex;
  flex-wrap: wrap;
}
#top #service .service_list a{
  width: 50%;
  height: 420px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}
#top #service .service_list a.movie{
background-image: url(../images/index/service_img01.jpg);
}
#top #service .service_list a.web{
background-image: url(../images/index/service_img02.jpg);
}
#top #service .service_list a.bpo{
background-image: url(../images/index/service_img03.jpg);
}
#top #service .service_list a.fpv{

}
#top #service .service_list a:hover{
opacity: 0.7;
}
#top #service .service_list a p{
  background-color: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 600;
  padding: 0.5em 1em;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 20px 0 0 0;
  text-align: right;
}
@media screen and (max-width: 1260px) {
 #top #service .service_list a p{
  font-size: 2.4rem;
} 
}
@media screen and (max-width: 768px) {
  #service .inner{
  background-color: #E8340C;
  padding: 20px 0;
}
  #top #service .service_list{
  flex-direction: column;
}
#top #service .service_list a{
  width: 100%;
  height: 300px;
}
 #top #service .service_list a p{
  font-size: 1.8rem;
} 
}
@media screen and (max-width: 550px) {
  #top #service .service_list a{
  width: 100%;
  height: 200px;
}
}
/* top products */
#top #products{
  padding: 150px 0;
  position: relative;
}
#top #products::before{
  content: "";
  width: 60%;
  height: 80%;
  background-image: url(../images/index/products_img01.png);
  background-position: center;
  background-size: cover;
      position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
border-radius: 100px 0 0 100px;
z-index: -1;
}
#top #products .inner{
  width: 50%;
}
@media screen and (max-width: 991px) {
  #top #products .inner{
  width: 80%;
}
}
@media screen and (max-width: 768px) {
  #top #products{
  padding: 60px 0;
}
  #top #products .inner{
  width: 100%;
}
#top #products::before{
  content: none;
}
  #top #products img{
    margin-top: 40px;
}
}
@media screen and (max-width: 550px) {
}

/*-------------------------------------*/
/*	ページ共通	*/
/*-------------------------------------*/
.ttl {
  font-size: 2.8rem;
  margin-bottom: 60px;
  position: relative;
  line-height: 1.5;
}
.ttl span {
  font-size: 9.6rem;
  display: block;
  position: relative;
  padding-top: 5px;
  font-family: "Encode Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #E8340C;
}
.bg_page{
   background-size: 100%;
  background-position: center top;
  background-image: url(../images/bg_page02.png);
  background-color: #F6F7F7;
  background-repeat: no-repeat;
}
.page_ttl {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 3.6rem;
  position: relative;
  font-weight: 600;
  margin-top: 40px;
}
.page_ttl span{
  font-size: 3.0rem;
  font-weight: 600;
  display: block;
  color: #E8340C;
  font-family: "Encode Sans", sans-serif;
}
.single hr {
  margin-top: 40px;
  margin-bottom: 40px;
  border: 0;
  border-top: 1px solid #000000;
}
.base_list li {
  margin-bottom: 30px;
}
.base_list li:last-child {
  margin-bottom: 0;
}
a .img_wrap {
  overflow: hidden;
  width: 100%;
}
a:hover .img_wrap img {
  transform: scale(1.1);
  transition-duration: 0.5s;
  opacity: 1;
}
.img_radius20 {
  border-radius: 20px;
  overflow: hidden;
}
.img_shadow {
  box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1200px) {
  .ttl {
    font-size: 2.0rem;
    margin-bottom: 40px;
  }
  .ttl span {
    font-size: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .ttl {
    font-size: 2.0rem;
    margin-bottom: 40px;
  }
  .ttl span {
    font-size: 5.2rem;
  }
  .page_ttl {
  font-size: 2.0rem;
}
.page_ttl span{
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  color: #E8340C;
  font-family: "Encode Sans", sans-serif;
}
  .img_radius20 {
    border-radius: 10px;
  }
  .img_left {
    border-radius: 0 10px 10px 0;
  }
  .img_right {
    border-radius: 10px 0 0 10px;
  }
  .img_shadow {
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 550px) {}
/*-------------------------------------*/
/*	下層ページ	*/
/*-------------------------------------*/
#sub_img {
  height: 600px;
  width: 100%;
  background-size: 100%;
  background-position: center top;
  background-image: url(../images/bg_page02.png);
  display: flex;
  align-items: center;
}
#sub_img.subimg_products{
  background-image: none;
}
#sub_img .inner{
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  height: 80%;
   background-position: center top;
   background-size: cover;
   border-radius: 60px;
position: relative;
}
#sub_img.subimg_company .inner{
background-image: url(../images/page/subimg_company.png);
}
#sub_img.subimg_service .inner{
background-image: url(../images/page/subimg_service.png);
}
#sub_img.subimg_products .inner{
background-image: url(../images/page/subimg_products.png);
}
#sub_img .inner h2{
  position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    letter-spacing: 0.1em;
}
#sub_img .inner h2 span.jp{
  display: inline-block;
  background-color: #2D2D2D;
    color: #FFFFFF;
    padding: 0.5em;
    font-size: 2.4rem;
     line-height: 1;
}
#sub_img .inner h2 span.en{
  display: inline-block;
  background-color: #E8340C;
  color: #FFFFFF;
  font-family: "Encode Sans", sans-serif;
  text-transform: uppercase;
  font-size: 7.0rem;
  font-weight: 700;
  padding: 0.2em;
}
/* subimg02 */
#sub_img02 {
  width: 95%;
  border-radius: 0 0 100px 0;
  background-size: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#sub_img02.subimg_movie{
  height: 770px;
  background-image: url(../images/page/subimg_movie.png);
}
#sub_img02.subimg_web{
  height: 450px;
  background-image: url(../images/page/subimg_web.png);
}
#sub_img02.subimg_bpo{
  height: 450px;
  background-image: url(../images/page/subimg_bpo.png);
}
#sub_img02.subimg_fpv{
  height: 770px;
}
.youtube-mask {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.thumb-wrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/page/subimg_fpv.jpg);
}
.thumb-wrap.completed {
visibility: hidden;
}
#sub_img02 h2{
  position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    letter-spacing: 0.1em;
}
#sub_img02 h2 span.en{
  display: inline-block;
   background-color: #E8340C;
    color: #FFFFFF;
    padding: 0.5em;
    font-size: 2.8rem;
    font-family: "Encode Sans", sans-serif;
  text-transform: uppercase;
     line-height: 1;
       font-weight: 700;
}
#sub_img02 h2 span.jp{
  display: inline-block;
  background-color: #2D2D2D;
  color: #FFFFFF;
  font-size: 6.0rem;
    padding: 0.2em;
     font-weight: 700;
}
/* sub ttl */
#sub_ttl{
  width: 100%;
  background-size: 100%;
  background-position: center top;
  background-image: url(../images/bg_page02.png);
}
#sub_ttl .container{
  height: 300px;
  display: flex;
  align-items: center;
}
#sub_ttl h2{
  font-size: 4.0rem;
  font-weight: 600;
}
@media screen and (max-width: 1430px) {
 #sub_img .inner h2{
  position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
}
@media screen and (max-width: 768px) {
 #sub_img {
  height: 300px;
  width: 100%;
}
#sub_img .inner{
  width: 90%;
   border-radius: 40px;
} 
 #sub_img .inner h2{
    left: -10px;
}
  #sub_img .inner h2 span.jp{
    padding: 0.5em;
    font-size: 1.8rem;
}
#sub_img .inner h2 span.en{
  font-size: 4.0rem;
  padding: 0.2em;
}
#sub_img02 {
  width: 95%;
  border-radius: 0 0 50px 0;
}
#sub_img02.subimg_movie{
  height: 400px;
}
#sub_img02.subimg_web{
  height: 250px;
}
#sub_img02.subimg_bpo{
  height: 250px;
}
#sub_img02.subimg_fpv{
  height: 400px;
}
#sub_img02 h2{
  position: absolute;
    top: 50%;
    left: 0;
}
#sub_img02 h2 span.en{
    font-size: 2rem;
}
#sub_img02 h2 span.jp{
  font-size: 3.0rem;
}
#sub_ttl .container{
  height: 150px;
}
#sub_ttl h2{
  font-size: 2.4rem;
  font-weight: 600;
}
}
@media screen and (max-width: 550px) {
   #sub_img {
  height: 250px;
  width: 100%;
}
    #sub_img .inner h2 span.jp{
    font-size: 1.8rem;
}
#sub_img .inner h2 span.en{
  font-size: 3.0rem;
}
#sub_ttl .container{
  height: 100px;
}
#sub_ttl h2{
  font-size: 2.2rem;
}
}
/*-------------------------------------*/
/*	company	*/
/*-------------------------------------*/
#access{
  margin-top: -100px;
  padding-top: 100px;
}
.pagelink{
  padding: 30px 0;
  text-align: center;
  margin-bottom: 60px;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}
.pagelink li{
  display: inline-block;
  margin-right: 40px;
}
.pagelink li:last-child{
  margin-right: 0;
}
.pagelink li a{
  font-size: 1.6rem;
  font-weight: 500;
}
.pagelink li a:hover{
  opacity: 0.7;
}
.pagelink li a::after{
    content: "\f0ab";
    font-family: FontAwesome;
    margin-left: 5px;
    color: #E8340C;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
  #access{
  margin-top: -80px;
  padding-top: 80px;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	service	*/
/*-------------------------------------*/
.bg_service{
  background-image: url(../images/page/bg_service.svg);
  background-size: contain;
  margin-bottom: 60px;
}
.service_box{
  position: relative;
  padding: 80px 40px 60px 40px;
  background-color: #F1F1F1;
  border-radius: 60px;
  max-width: 1300px;
  margin: 0 auto 80px auto;
}
.service_box:last-of-type{
  margin: 0 auto 0 auto;
}
.service_box .inner{
  max-width: 1170px;
  margin: 0 auto;
}
.service_box .col-2_list{
align-items: center;
}
.service_box .no{
  position: absolute;
  left: 5%;
  top: -30px;
  max-width: 110px;
}
.service_box h3{
margin-top: 0;
}
.banner_fpv{
  position: relative;
  width: 100%;
  height: 419px;
  border-radius: 20px;
  overflow: hidden;
}
#service_fpv{

}
@media screen and (max-width: 1200px) {
  .service_box .no{
  left: 5%;
  top: -20px;
  max-width: 80px;
}
}
@media screen and (max-width: 768px) {
  .service_box{
  padding: 80px 20px 40px 20px;
  border-radius: 40px;
  margin: 0 auto 60px auto;
}
  .service_box .col-2_list .col_box{
    margin-bottom: 0;
}
.banner_fpv{
  height: 419px;
  border-radius: 10px;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/* 映像制作事業 */
/*-------------------------------------*/
#m_concept{
  background-image: url(../images/page/bg_movie.png);
  background-position: left center;
  background-repeat: repeat-y;
}
#m_concept dl{
  background-color: #E8340C;
  margin-bottom: 20px;
  color: #FFFFFF;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#m_concept dl:last-of-type{
  margin-bottom: 0;
}
#m_concept dl dt{
  text-align: center;
  width: 25%;
  padding: 1em 0 1em 1em;
}
#m_concept dl dd{
  width: 75%;
  padding: 1em;
  line-height: 1.8;
}
#m_service{
  background-color: #F1F1F1;
}
.m_serivce_box{
  text-align: center;
}
.m_serivce_box p{
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-top: 10px;
}
#m_point{
  background-color: #F1F1F1;
  background-image: url(../images/bg_doted-w-tr.svg),url(../images/bg_doted-w-mr.svg);
  background-position: top right,left center;
  background-repeat: no-repeat;
}
#m_point .m_point_box{
  background-color: #FFFFFF;
  padding: 60px 40px;
  max-width: 1300px;
  width: 90%;
  margin: 0 auto 60px auto;
  border-radius: 40px;
}
#m_point .m_point_box:last-of-type{
  margin: 0 auto;
}
#m_point .m_point_box dl{
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#m_point .m_point_box:nth-of-type(even) dl{
  flex-direction: row-reverse;
}
#m_point .m_point_box dl dt{
  text-align: center;
  width: 40%;
}
#m_point .m_point_box dl dd{
  width: 55%;
}
#m_point .m_point_box dl dd h3{
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 20px;
}
#m_point .m_point_box dl dd h3 span{
  font-size: 2rem;
  font-weight: 700;
  font-family: "Encode Sans", sans-serif;
  color: #E8340C;
  text-transform: uppercase;
  display: block;
}
#m_point .m_point_box dl dd p{
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  #m_point .m_point_box dl dd h3{
  font-size: 2.8rem;
}
#m_point .m_point_box dl dd h3 span{
  font-size: 1.8rem;
}
}
@media screen and (max-width: 991px) {
  #m_point .m_point_box{
  background-color: #FFFFFF;
  padding: 60px 40px;
  margin: 0 auto 40px auto;
  border-radius: 20px;
}
#m_point .m_point_box dl,#m_point .m_point_box:nth-of-type(even) dl{
  max-width: 1170px;
  flex-direction: column-reverse;
}
#m_point .m_point_box dl dt{
  width: 100%;
}
#m_point .m_point_box dl dd{
  width: 100%;
}
}
@media screen and (max-width: 768px) {
  #m_concept dl{
  border-radius: 10px;
  flex-direction: column;
}
#m_concept dl dt{
  text-align: center;
  width: 100%;
  padding: 1em 1em 0 1em;
}
#m_concept dl dd{
  width: 100%;
  padding: 1em;
}
  #m_point .m_point_box{
  background-color: #FFFFFF;
  padding: 40px 20px;
  margin: 0 auto 40px auto;
  border-radius: 20px;
}
  #m_point .m_point_box dl dd h3{
  font-size: 2.0rem;
}
#m_point .m_point_box dl dd h3 span{
  font-size: 1.4rem;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/* web制作・メディア制作運用事業 */
/*-------------------------------------*/
#w_concept p{
  margin-bottom: 20px;
}
#w_concept ul.check_list{
  max-width: 600px;
  margin: 0 auto 60px auto;
}
.check_list li{
  background-color: #F1F1F1;
  border-radius: 10px;
  padding: 1em 1em 1em 2.7em;
  position: relative;
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.check_list li::before{
  content: url(../images/ico_check.svg);
  position: absolute;
  left: 1em;
  top: auto;
}
.check_list li:last-child{
  margin-bottom: 0;
}
.check_list li span{
  font-size: 1.8rem;
}
#w_4view{
  background-color: #F1F1F1;
  background-image: url(../images/bg_doted-w-tr.svg);
  background-position: top right;
  max-width: 1300px;
  width: 100%;
  background-repeat: no-repeat;
  border-radius: 40px;
  padding: 60px 40px;
  margin: 0 auto;
}
#w_4view .inner{
max-width: 1170px;
margin: 0 auto;
}
#w_4view .inner ul{
  display: flex;
  justify-content: space-between;
  gap: 20px 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
#w_4view .inner ul li{
  width: calc( 100% / 4 - 20px );
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 20px;
}
#w_4view .inner ul li h3{
  text-align: center;
  font-size: 2.0rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #E8340C;
}
#w_4view .inner ul li h3 span{
  font-size: 4.0rem;
  display: block;
  font-weight: 700;
}
#w_4view .inner ul li p{
  font-size: 1.6rem;
}

@media screen and (max-width: 1300px) {
  #w_4view{
  border-radius: 0;
  padding: 60px 40px;
  margin: 0 auto;
}
}
@media screen and (max-width: 991px) {
#w_4view .inner ul li{
  width: calc( 100% / 2 - 20px );
}
#w_4view .inner ul li h3{
  font-size: 1.6rem;
}
#w_4view .inner ul li h3 span{
  font-size: 2.4rem;
}
}
@media screen and (max-width: 768px) {
#w_4view{
  padding: 60px 15px;
}
  #w_4view .inner ul{
  gap: 20px 10px;
}
#w_4view .inner ul li{
width: calc( 100% / 2 - 10px );
  border-radius: 10px;
  padding: 15px;
}
  .check_list li{
  font-size: 1.8rem;
}
.check_list li span{
  font-size: 1.6rem;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/* BPO事業 */
/*-------------------------------------*/
.bpo_cat_list{
  display: flex;
  justify-content: center;
  gap: 20px 20px;
  flex-wrap: wrap;
}
.bpo_cat_list li{
  width: calc( 100% / 4 - 20px );
  border-radius: 20px;
  border: 1px solid #E8340C;
  overflow: hidden;
}
.bpo_cat_list li h3{
  background-color: #E8340C;
  padding: 0.5em;
  text-align: center;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.bpo_cat_list li p{
  padding: 1em;
  font-size: 1.4rem;
}
#b_about{
  background-color: #F1F1F1;
    background-image: url(../images/bg_doted-w-tr.svg);
  background-position: top right;
  background-repeat: no-repeat;
}
#b_service02 ol{
  display: flex;
  justify-content: center;
  gap: 20px 20px;
  flex-wrap: wrap;
  counter-reset:number; /*数字をリセット*/
	list-style-type: none; /*数字を一旦消す*/
}
#b_service02 ol{
counter-reset: item;
}
#b_service02 ol li{
  background-color: #F1F1F1;
  padding: 30px 20px;
  border-radius: 20px;
  width: calc( 100% / 4 - 20px );
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.5;
  position:relative;
}
#b_service02 ol li:before{
	counter-increment: item;
	content: counter(item)"";
	font-size:113%;
	font-weight:bold;
	color:#E8340C;
	position: absolute;
	left: -10px;
	top: -10px;
	background: #FFFFFF;
	border: 2px solid #E8340C;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 2.4rem;
	font-weight: 600;
	z-index: 1;
}
#b_service02 ol li span{
  font-weight: 400;
  font-size: 1.4rem;
  text-align:left;
  display: block;
}
#b_voice{
  background-color: #F1F1F1;
}
.voice_box dl {
  margin-bottom: 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
}
.voice_box dl:last-of-type {
  margin-bottom: 0;
}
.voice_box dl dt {
  font-size: 2.8rem;
  padding: 1em 70px 1em 1.5em;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.5;
  position: relative;
}
.voice_box dl dt::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("../images/ico_plus.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
    transition: 0.3s;
}
.voice_box dl dt.on::after {
  background-image: url("../images/ico_minus.svg");
}
.voice_box dl dd {
  line-height: 1.5;
  padding: 0 30px 30px 30px;
}
.voice_box dl dd .inner{
  border-top: 2px dotted #E8340C;
}
.voice_box dl dd .inner .caption{
  margin-top: 40px;
}
.voice_box .submenu {
  display: none;
}
.voice_box ul {
  margin-top: 40px;
}
.voice_box ul li {
  display: flex;
  margin-bottom: 20px;
  align-items: baseline;
}
.voice_box ul li span{
  max-width: 150px;
  border:1px solid #E8340C;
  text-align: center;
  color: #E8340C;
  padding: 0.5em;
  width: 100%;
  font-weight: 600;
  display: inline-block;
}
.voice_box ul li p{
width: 100%;
padding-left: 20px;
}


.qa_box dl {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.qa_box dl:last-of-type {
  margin-bottom: 0;
}
.qa_box dl dt {
  font-size: 2.8rem;
  padding: 1em 70px 1em 2.5em;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.5;
  position: relative;
  background-color: #2D2D2D;
  color: #F1F1F1;
}
.qa_box dl dt::before {
  content: "Q.";
  position: absolute;
  font-family: "Encode Sans", sans-serif;
  font-weight: 600;
  left: 1em;
  top: 1em;
}
.qa_box dl dt::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("../images/ico_plus-w.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.3s;
}
.qa_box dl dt.on::after {
  background-image: url("../images/ico_minus-w.svg");
}
.qa_box dl dd {
  background: #FFF;
  padding: 1.5em 1em 1.5em 65px;
  line-height: 1.5;
  position: relative;
  background-color: #F1F1F1;
}
.qa_box dl dd::before {
  content: "A.";
  position: absolute;
  font-family: "Encode Sans", sans-serif;
  left: 1em;
  top: 0.5em;
  font-size: 2.8rem;
  font-weight: 600;
  color: #E8340C;
}
.qa_box .submenu {
  display: none;
}

@media screen and (max-width: 1200px) {
#b_service02 ol{
flex-direction: column;
max-width: 800px;
margin: 0 auto;
}
#b_service02 ol li{
  background-color: #F1F1F1;
  padding: 30px 30px;
  border-radius: 20px;
  width: 100%;
  font-weight: 700;
  font-size: 2.0rem;
  text-align: left;
  line-height: 1.5;
  position:relative;
}
}
@media screen and (max-width: 991px) {
  .bpo_cat_list li{
  width: calc( 100% / 2 - 20px );
}
}
@media screen and (max-width: 768px) {
.bpo_cat_list li h3{
  font-size: 2.0rem;
}
.voice_box dl {
  border-radius: 10px;
}
.voice_box dl dt {
  font-size: 2.0rem;
  padding: 1em 60px 1em 1em;
}
.voice_box dl dt::after {
  content: "";
  width: 30px;
  height: 30px;
}
.voice_box dl dd {
  line-height: 1.5;
  padding: 0 20px 20px 20px;
}
.voice_box dl dd .inner{
  border-top: 2px dotted #E8340C;
}
.voice_box dl dd .inner .caption{
  margin-top: 20px;
}
.voice_box ul {
  margin-top: 20px;
}
.voice_box ul li {
  flex-direction: column;
}
.voice_box ul li span{
  max-width: 150px;
  border:1px solid #E8340C;
  text-align: center;
  color: #E8340C;
  padding: 0.5em;
  width: 100%;
  font-weight: 600;
  margin-bottom: 10px;
}
.voice_box ul li p{
width: 100%;
padding-left: 0;
}

.qa_box dl {
  border-radius: 10px;
}
.qa_box dl dt {
  font-size: 2rem;
  padding: 1em 60px 1em 2.5em;
}
.qa_box dl dt::before {
  content: "Q.";
  position: absolute;
  font-family: "Encode Sans", sans-serif;
  font-weight: 600;
  left: 1em;
  top: 1em;
}
.qa_box dl dt::after {
  content: "";
  width: 30px;
  height: 30px;
}
.qa_box dl dd {
  background: #FFF;
  padding: 1.5em 1em 1.5em 65px;
  line-height: 1.5;
  position: relative;
  background-color: #F1F1F1;
}
.qa_box dl dd::before {
  left: 1em;
  top: 0.5em;
  font-size: 2.8rem;
}
}
@media screen and (max-width: 550px) {
    .bpo_cat_list{
  flex-direction: column;
}
.bpo_cat_list li{
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
.voice_box dl dt {
  font-size: 1.8rem;
}
.qa_box dl dt {
  font-size: 1.8rem;
}
}
/*-------------------------------------*/
/* FPVドローン映像撮影事業 */
/*-------------------------------------*/
#f_about{
  background-color: #2D2D2D;
  color: #FFFFFF;
  background-image: url(../images/bg_doted-g-tr.svg),url(../images/bg_doted-b-bl.svg);
  background-position: top right,left bottom;
  background-repeat: no-repeat;
  background-size: 20%;
}
#f_about p{
  font-weight: 500;
  margin-bottom: 20px;
}
#f_image{
  background-color: #F1F1F1;
}
.movie_wrap video{
	width: 100%;
	height: 100%;
}
#f_company{
  background-color: #2D2D2D;
  color: #FFFFFF;
  padding: 60px 0;
}
#f_company .midashi02{
  color: #FFFFFF;
}
.company_sld .slick-slide{
  margin: 10px;
}
.price_box{
  background-color: #F1F1F1;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 20px;
}
.price_box .inner{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.price_box .inner h3{
  font-size: 2.4rem;
  font-weight: 700;
  width: 48%;
  line-height: 1.5;
}
.price_box .inner p{
  font-size: 2.4rem;
  font-weight: 700;
  width: 48%;
  line-height: 1.5;
  text-align: right;
  color: #E8340C;
}
@media screen and (max-width: 991px) {
  #f_about{
  background-size: 40%;
}
}
@media screen and (max-width: 768px) {
  .price_box{
  border-radius: 10px;
  padding: 30px 20px;
}
.price_box .inner{
  flex-direction: column;
}
.price_box .inner h3{
  font-size: 2.0rem;
  width: 100%;
  margin-bottom: 10px;
}
.price_box .inner p{
  font-size: 2.0rem;
  width: 100%;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/* recruit */
/*-------------------------------------*/
#recruit .gaiyo ul{
  margin-bottom: 0;
}
.recruit_ttl{
  font-weight: 700;
  font-size: 3.2rem;
  margin-top: 60px;
  margin-bottom: 20px;
  line-height: 1.5;
  padding-left: 20px;
  border-left: 4px solid #E8340C;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
  .recruit_ttl{
  font-size: 2rem;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	お知らせ一覧	*/
/*-------------------------------------*/
/*一覧*/
.news_list {
  padding: 0;
	border-top: 1px dotted #707070;
}
.news_list li{
	padding-top: 20px;
	border-bottom: 1px dotted #707070;
}
.news_list .item {
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  align-items: baseline;
}
.news_list .item .date {
  margin: 0;
  min-width: 120px;
  color: #000000;
  padding: 0 15px 0 0;
	line-height: 2;
	font-size: 1.4rem;
  font-family: "Encode Sans", sans-serif;
}
.news_list .item .category {
  margin: 0;
  min-width: 120px;
  padding: 0 15px 0 0;
}
.news_list .item .category a.cat{
  width: 100%;
}
.news_list .item .title {
  margin: 0;
  width: 100%;
	line-height: 2;
}
.news_list .item .title a{
   display: block;
	  padding: 0 0.5em 20px 0.5em;
	color: #000000;
}
.news_list .item .title a:hover {
  opacity: 0.7;
	color: #000;
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  .news_list .item {
    flex-wrap: wrap;
  }
  .news_list .item .date {
    min-width: 100px;
  }
.news_list .item .title a{
   display: block;
	  padding: 15px 0.5em 15px 0;
  }
}
@media screen and (max-width: 550px) {}
/*-------------------------------------*/
/*	お知らせ・ページ */
/*-------------------------------------*/
/*　新着　*/
#single {

}

#single .date {
  font-family: "Encode Sans", sans-serif;
  font-size: 1.4rem;
}
.thumb {
  display: block;
  margin: 0 auto 40px auto;
  text-align: center;
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 550px) {
  #single .contents_box {
    border-radius: 10px;
    padding: 40px 20px;
  }
}

/*-------------------------------------*/
/*	制作実績一覧	*/
/*-------------------------------------*/
.item_box .img_wrap{
  margin-bottom: 10px;
}
.item_box h3{
  margin: 15px 0;
  font-weight: 600;
  font-size: 2.4rem;
}
.item_box span.url{
  font-size: 1.4rem;
  display: block;
  margin-bottom: 10px;
}
.item_box span.url a{
  text-decoration: underline;
  position: relative;
  padding-right: 1.5em;
}
.item_box span.url a::after{
      content: "\f08e";
    position:absolute;
    top:50%;
    right:0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index:1;
    font-family: FontAwesome;
  
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
  .item_box h3{
  font-size: 2rem;
}
  .item_box p{
font-size: 1.4rem;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	投稿　共通	*/
/*-------------------------------------*/
.cat_list{
  text-align: center;
  margin-bottom: 40px;
}
.cat_list li{
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 15px;
}
.cat_list li:last-child{
  margin-right: 0;
}
.cat_list li a{
  display: block;
  background-color: #FFFFFF;
  color: #7D7D7D;
  border: 2px solid #7D7D7D;
  padding: 0.7em 1em;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 500;
}
.cat_list li.current a,.cat_list li a:hover{
  background-color: #FFFFFF;
  color: #E8340C;
  border: 2px solid #E8340C;
}
.cat_list li a:hover{
  background-color: #E8340C;
  color: #FFFFFF;
  border: 2px solid #E8340C;
}
/* カテゴリーラベル */
.cat {
  letter-spacing: 0.05em;
  color: #E8340C !important;
  text-align: center;
  display: inline-block;
  padding: 0.5em 1.2em;
  font-size: 1.2rem;
  line-height: 1;
  background: #FFFFFF;
  border: 1px solid #E8340C;
  border-radius: 50px;
}
a.cat:hover {
  color: #FFFFFF !important;
  background: #E8340C;
}
/*ページャー*/
#pager {
  margin: 40px 0;
  border-bottom: 1px solid #AAAAAA;
  border-top: 1px solid #AAAAAA;
}
#pager li.prev {
  width: 50%;
  float: left;
}
#pager li.next {
  width: 50%;
  float: right;
  text-align: right;
}
#pager li a {
  display: block;
  padding: 1em 0;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
#pager li a:hover {
  color: #0290D4;
}
#pager li.prev a::before {
  content: "\f104";
  font-family: FontAwesome;
  margin-right: 10px;
  color: #000;
}
#pager li.next a::after {
  content: "\f105";
  font-family: FontAwesome;
  margin-left: 10px;
  color: #000;
}
/*ページネーション*/
.wp-pagenavi {
  clear: both;
  margin: 40px auto auto;
  text-align: center;
  font-size: 100%;
}
.wp-pagenavi a {
  text-decoration: none !important;
  padding: 1em 1.2em !important;
  margin: 3px;
  display: inline-block;
  color: #2D2D2D !important;
  background: #F1F1F1;
  border: 1px solid #F1F1F1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 1.6rem;
  font-weight: 600;
}
.wp-pagenavi span {
  color: #2D2D2D;
}
.wp-pagenavi span.current {
  text-decoration: none !important;
  padding: 1em 1.2em !important;
  margin: 3px;
  display: inline-block;
  border: 1px solid #2D2D2D;
  color: #FFFFFF;
  background: #2D2D2D;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #2D2D2D !important;
}
.wp-pagenavi a:hover {
  border: 1px solid #2D2D2D;
  color: #FFFFFF !important;
  text-decoration: none !important;
  background: #2D2D2D;
  padding: 1em 1.2em !important;
}
.wp-pagenavi a:hover span {
  color: #FFFFFF;
}
.wp-pagenavi span {
  border: none !important;
}
.extend {
  padding: 0 10px 0 10px;
}
@media screen and (max-width: 768px) {
  .previouspostslink, .nextpostslink {
    font-size: 1.4rem;
  }
  .cat_list{
  margin-bottom: 20px;
}
  .cat_list li a{
  font-size: 1.4rem;
}
}
/*-------------------------------------*/
/*	フォーム	*/
/*-------------------------------------*/
#contact .tel a{
  color: #E8340C;
}
#contact .time{
  color: #E8340C;
}
.form_area{
  background-color: #F1F1F1;
  border-radius: 60px;
  padding: 60px;
}
.form_area h4 {
  margin-top: 40px !important;
  position: relative;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.submit_btn_wrap {
  position: relative;
  width: 220px;
  margin: 0 auto;
}
ul.submit2_btn_wrap {
  position: relative;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
ul.submit2_btn_wrap li {
  display: inline-block;
  width: 200px;
  margin-left: 5px;
}
.submit_btn {
  width: 100%;
  padding: 1em 1.5em;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  border: none;
  background: #E8340C;
  border-radius: 10px;
  color: #FFFFFF;
}
.submit_btn:hover {
  background: #E8340C;
  text-decoration: none;
  color: #FFFFFF;
}
.back_btn {
  width: 100%;
  height: 35px;
  position: relative;
  display: inline-block;
  border: 1px solid #AAAAAA;
  font-size: 100%;
  text-align: center;
  background: #AAAAAA;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 35px;
}
.back_btn:hover {
  color: #AAAAAA;
  background: #FFFFFF;
  text-decoration: none;
}
/*-------------------------------------*/
/*	フォーム関連	*/
input::-webkit-input-placeholder {
  color: #989898;
}
input:-ms-input-placeholder {
  color: #989898;
}
input::-ms-input-placeholder {
  color: #989898;
}
input::placeholder {
  color: #989898;
}
.must {
  padding: 0.2em 1em;
  display: inline-block;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 400;
  border-radius: 3px;
  background: #E8340C;
  margin-right: 10px;
  vertical-align: middle;
}
.nini {
  padding: 0.2em 1em;
  display: inline-block;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 400;
  border-radius: 3px;
  background: #63A6DB;
  margin-right: 10px;
  vertical-align: middle;
}
.privacy_box {
  background-color: #fafafa;
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 1.4rem;
}
.privacy_inner {
  width: auto;
  height: 200px;
  overflow-y: scroll;
  padding: 22px;
  font-size: 100%;
}
.consent_check_wrap {
  padding: 20px;
	margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  background: #FFFFFF;
  border: 2px solid #E8340C;
  border-radius: 10px;
}
.consent_check_wrap p a {
  text-decoration: underline;
	color:  #0071bc;
}
.form_area :focus {
  outline: solid 2px #3e4f69;
}
.form_area input[type="text"], .form_area input[type="email"], .form_area input[type="tel"], .form_area textarea, .form_area radio, .form_area select {
  border: 1px solid #707070;
  font-family: inherit;
  font-size: 1.6rem;
  padding: 0.7em;
  margin: 0;
  background-color: #FFF;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
.form_area input[type="text"], .form_area input[type="email"], .form_area input[type="tel"], .form_area textarea, .form_area radio, .form_area select {
  margin-bottom: 0;
}
.form_area input[type="text"].text_fomr_01, .form_area input[type="email"].text_fomr_01, .form_area input[type="tel"].text_fomr_01 {
  width: 70%;
}
.form_area input[type="text"].text_fomr_02, .form_area input[type="email"].text_fomr_02, .form_area input[type="tel"].text_fomr_02 {
  width: 50%;
}
.form_area input[type="text"].text_fomr_03, .form_area input[type="email"].text_fomr_03, .form_area input[type="tel"].text_fomr_03 {
  width: 40%;
  margin: 0
}
.form_area input[type="text"].text_fomr_04, .form_area input[type="email"].text_fomr_04, .form_area input[type="tel"].text_fomr_04 {
  width: 100%;
}
.form_area textarea.form_txtarea_01 {
  width: 100%;
}
.form_area input[type="checkbox"] {
  height: 15px;
  width: 15px;
  margin: 5px;
  vertical-align: middle;
}
.form_area input[type="radio"] {
  vertical-align: middle;
  margin: 0 3px 0 0;
}
.form_area label {
  margin-right: 20px;
	margin-bottom: 10px;
  font-weight: normal !important;
  font-size: 100%;
  font-weight: 500;
  padding: 5px;
	display:inline-block;
}
span.wpcf7-list-item {
  display: block;
  margin: 0 0 0 0.5em !important;
}
@media screen and (max-width: 768px) {
	.form_area{
	padding: 20px;
  border-radius: 40px;
}
.form_area h4 {
  font-size: 1.8rem;
}
  .tel_list {
    display: block;
  }
  .tel_list div {
    margin-right: 0;
  }
  .privacy_inner {
    padding: 10px;
  }
  .privacy_inner p {
    font-size: 75% !important;
  }
  .submit_btn_wrap {
    width: 80%;
    margin: 0 auto;
  }
  .submit_btn {
    width: 100%;
  }
  ul.submit2_btn_wrap li {
    margin-bottom: 20px;
  }
  input[type="text"].text_fomr_01, input[type="email"].text_fomr_01, input[type="tel"].text_fomr_01 {
    width: 100% !important;
  }
  input[type="text"].text_fomr_02, input[type="email"].text_fomr_02, input[type="tel"].text_fomr_02 {
    width: 100% !important;
  }
  input[type="text"].text_fomr_03, input[type="email"].text_fomr_03, input[type="tel"].text_fomr_03 {
    width: 100% !important;
  }
  ul.input_list li {
    margin-bottom: 20px;
  }
  ul.input_list li:last-child {
    margin-bottom: 0;
  }
  label {
    font-size: 1.6rem;
  }
}