@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700&display=swap');


body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
  width: 100%;
  position: relative;
  /* スクロール動作をスムーズに */
  scroll-behavior: smooth;
  /* スクロールの滑らかさを向上 */
  -webkit-overflow-scrolling: touch;
}


.hel{
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}

header{
  background: #272727;
  position: fixed;
  padding:37px 0 30px;
  border-bottom: 1px solid white;
  width: 100%;
  z-index: 100;
  left: 0;
  top: 0;
}

.inview1{
  display: block;
  position: relative;
}

.inview1__span{
  display: block;
    overflow: hidden;
    position: relative;
}

.inview1__span span{
  display: block;
    position: relative;
    transform: translateY(100%);
}

.inview1.show .inview1__span span.line2{
  transform: translateY(0);
    transition: transform 1.4s cubic-bezier(.19,1,.22,1);
}

/* .inview1.show .inview1__span.delay1 span.line2{
  transition-delay: 0.1s;
} */

.inview2{
  transition: 0.6s;
  opacity:0;
}

.inview2.show2{
  opacity:1;
}


header .header__wrap{
  /* width: 1480px; */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  padding-right: 130px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: relative;
}

header .header__wrap h1{
  margin: 0;
  line-height: 1;
}

header .header__wrap .header__left a{
  display: inline-block;
  transition:0.4s;
  position: relative;
}

.home header .header__wrap .header__left a:before{
  content: '';
  position: absolute;
  left: -10px;
  bottom: -35px;
  width: calc(100% + 20px);
  height: 5px;
  background: #00FFBA;
}

.home #nav header.header__wrap .header__left a:before{
  opacity: 0;
}

header .header__wrap h1 a:hover{
  opacity: 0.6;
}

header .header__wrap .header__left{
  width: 40%;
}

header .header__wrap .header__right{
  width: 60%;
  box-sizing: border-box;
  padding-right: 20px;
  position: relative;
  max-width: 730px;
}

header .header__wrap .header__right ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  top: 5px;
}

header .header__wrap .header__right ul li{
  list-style: none;
}

header .header__wrap .header__right ul li a{
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  perspective: 100px;
}

header .header__wrap .header__right ul li a span{
  display: inline-block;
  transition: 0.4s;
  transform-style: preserve-3d;
}

header .header__wrap .header__right ul li a .text-original{
  transform: translateY(0) rotateX(0deg);
}

header .header__wrap .header__right ul li a .text-hover{
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(20px) rotateX(0deg);
  opacity: 0;
}

header .header__wrap .header__right ul li a:hover .text-original{
  transform: translateY(-20px) rotateX(0deg);
}

header .header__wrap .header__right ul li a:hover .text-hover{
  transform: translateY(0) rotateX(0deg);
  opacity: 1;
}

header .header__wrap .header__right ul li.current{
  position: relative;
}

header .header__wrap .header__right ul li.current:before{
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background: #00FFBA;
}

.btn__abo{
  position: absolute;
  right: 150px;
  top: -37px;
  display: flex;

}

.btn__abo a{
  width: 115px;
  display: block;
  color:#1D211C;
  text-decoration: none;
  background:#03FFBA;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
  transition: 0.4s;
  line-height: 1.75;
}

.btn__abo a:hover{
  opacity: 0.6;
}

.wrap{
  width: 1080px;
  width: 1140px;
  padding:0 40px;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 100%;
}

.page__area{
  margin: 204px 0 100px;
}

.page__area .page__title1{
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  line-height: 1.3;
  margin: 0;
}

.page__area .page__title2{
  font-size: 80px;
  line-height: 1.2;
  margin: 0 0 50px;
}

.bread__area{
  font-size: 12px;
  color:#7C7C7C;
  margin-bottom: 95px;
}

.bread__area span a{
  color:#7C7C7C;
  text-decoration: none;
  transition: 0.4s;
  cursor:default; 
  padding-right: 36px;
  position: relative;
}

.bread__area a span{
  cursor:pointer;
  position: relative;
  display: inline-block;
  transition: 0.4s;

}

.bread__area a:after{
  content: "";
  position: absolute;
  right: 8px;
  width: 20px;
  height: 1px;
  top: 49%;
  background: #7C7C7C;

}

.bread__area span a span:hover{
  opacity: 0.6;
}

.privacy__area h3{
  background: #EDF5F3;
  font-size: 24px;
  margin:0 0 20px;
  padding:6px 25px;
}

.privacy__area p{
  margin:0 0 40px;
  font-size: 16px;
}

.privacy__area p a{
  text-decoration: none;
  color:black;
  transition: 0.4s;
}

.privacy__area p a:hover{
  opacity: 0.6;
}

.footer__contact{
  display: block;
  text-decoration: none;
  width: 100%;
  padding:115px 0 155px;
  background-image: url('img/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  color:#00FFBA;
}

.footer__contact{
  color:#00FFBA;
  text-decoration: none;
  display: block;
}

.footer__contact h2{
  margin: 0;
  font-size: 14px;
  transition: 0.4s;
}

.footer__contact h3{
  font-size: 80px;
  line-height: 1.2;
  margin:10px 0 0;
  position: relative;
  transition: 0.4s;
}

.footer__contact:hover h2 ,.footer__contact:hover h3{
  color:white;
}

.footer__contact h3:after{
  content: '';
  position: absolute;
  width: 72px;
  height: 72px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('img/arrow.png');
  background-size: cover;
  background-position: center;
  transition: 0.4s;
}

.footer__contact:hover h3:after{
  background-image: url('img/arrow-hover.png');
}

footer{
  background: #272727;
  color:#fff;
  padding:80px 0 70px;
}

footer .footer__flex{
  display: flex;
}

.footer__left{
  width: 50%;
  box-sizing: border-box;
  padding-right: 40px;
}

.footer__left a{
  transition: 0.4s;
}

.footer__left a:hover{
  opacity: 0.6;
}

.footer__right{
  width: 50%;
}

.footer__left p{
  margin:40px 0 0;
  font-size: 14px;
}

.footer__left p span{
  display: inline-block;
  position: relative;
}

.footer__left p span a{
  position: absolute;
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
  width: 33px;
  height: 33px;
  display: block;
  transition: 0.4s;
}

.footer__left p span a img{
  width: 100%;
}

.footer__left p span a:hover{
  opacity: 0.6;
}

.footer__right ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;

}

.footer__right ul div{
  width: 50%;
}

.footer__right ul div li{
  margin:0 0 23px;
}

.footer__right ul div li a{
  color:white;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  display: inline-block;
}

.footer__right ul div li a.blank{
  padding-right: 22px;
  position: relative;
}

.footer__right ul div li a.blank:before{
  content: '';
  position: absolute;
  width: 14px;
  height: 13px;
  background-image: url('img/target.png');
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  bottom: 7px;
}

.footer__right ul div li a:after{
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: #fff;
  bottom: -1px;
  left: 0;
  transition: 0.4s;
}

.footer__right ul div li a:hover:after{
  width: 100%;
}

.footer__row2{
  display: flex;
  margin-top: 115px;
  position: relative;
}

.footer__row2 p{
  color:#919191;
  font-size: 12px;
  margin: 0;
  width: 50%;
}

.footer__row2 a.link {
  color:#919191;
  text-decoration: none;
  font-size: 12px;
  display: inline-block;
  position: relative;
}

.footer__row2 a.link:after{
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: #919191;
  bottom: -1px;
  left: 0;
  transition: 0.4s;
}

.footer__row2 a.link:hover:after{
  width: 100%;
}

.footer__row2 a.arrow__link{
  position: absolute;
  right: 0;
  top: 50%;
  width: 51px;
  transform: translateY(-50%);
  transition: 0.4s;
}

.footer__row2 a.arrow__link:hover{
  top: calc(50% - 10px);
}

.footer__row2 a.arrow__link img{
  width: 100%;
}

.contact__text1{
  text-align: center;
  font-size: 16px;
  margin:0 0 50px;
}

.contact__tel{
  width: 560px;
  max-width: 100%;
  text-align: center;
  margin:0 auto;
  padding:38px 10px;
  background: #03FFBA;
  box-sizing: border-box;
}

.contact__tel a{
  color:#000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  line-height: 1.2;
}

.contact__tel a img{
  width: 27px;
  margin-right: 8px;
}

.contact__tel p.ct__1{
  font-size: 20px;
  font-weight: 600;
  margin:0 0 7px;
}

.contact__tel p.ct__2{
  margin:5px 0 0;
  font-size: 14px;
}

.contact__text2{
  font-size: 34px;
  font-weight: 600;
  margin:100px 0 15px;
  text-align: center;
}

.contact__text3{
  font-size: 16px;
  margin:0;
  text-align: center;
}

.hidden-fields-container{
  height: 0;
  padding: 0;
  margin: 0;
  visibility: hidden;
}

.contact__row{
  display: flex;
  border-top:1px solid #C9C9C9;
  padding:28px 0;
}


.form__area .contact__row.last{
  border-bottom:1px solid #C9C9C9;
  align-items: start;
}


.form__area{
  width: 900px;
  max-width: 100%;
  margin:48px auto 0;
  box-sizing: border-box;
}

.cr__left{
  width: 31%;
  box-sizing: border-box;
  padding-right: 40px;
  padding-top: 14px;
}

.row2 .cr__left{
  padding-top: 2px;
}

.cr__right{
  width: 69%;
}

.form__area p{
  margin: 0;
}

.cr__left p{
  font-size: 16px;
  position: relative;
  font-weight: 600;
}



.cr__left p span.must{
  display: block;
  width: 62px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 60px;
  background: #03FFBA;
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 14px;
  font-weight: 300;
  transform: translateY(-50%);
}

.cr__left p span.small{
  font-size: 14px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -23px;
  font-weight: 300;
}

.cr__right.text input{
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  box-sizing: border-box;
  width: 100%;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.04em;
  background: #EDF5F3;
  border:1px solid #DCDCDC;
  font-size: 15px;
  border-radius: 5px;
  padding:11px 18px;
} 

.cr__right.text input::placeholder, .cr__right.text textarea::placeholder{
  color:#B1B1B1;
}

.cr__right.text.half input{
  width: 300px;
}

.cr__right.text .flex{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.cr__right.text .flex p{
  font-size: 14px;
  
}

.cr__right.text .flex input{
  width: 160px;
  margin-right: 15px;
}

.cr__right textarea{
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  box-sizing: border-box;
  width: 100%;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 15px;
  background: #EDF5F3;
  border:1px solid #DCDCDC;
  border-radius: 5px;
  padding:11px 18px; 
  resize: none;
  height: 225px;
}

.contact__row.bo-none{
  border-top: 0;
  padding-top: 20px;
  /* padding-top: 0; */
}

.check{
  margin:50px 0 80px;
  text-align: center;
  line-height: 1.6;
}

.check a{
  color:black;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid black;
  transition: 0.4s;
}

.check a:hover{
  opacity: 0.6;
}

.submit p{
  text-align: center;
  margin: 0;  
}

.submit p input{
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  box-sizing: border-box;
  width: 100%;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 16px;
   width: 424px;
   max-width: 100%;
   padding:27px 0;
   border:2px solid #03FFBA;
   margin:0 auto;
   background: #03FFBA;
   transition: 0.4s;
   cursor: pointer;
}

.submit p input:hover{
  opacity: 0.7;
}


.cr__right.radio .wpcf7-form-control{
  display: flex;
  flex-wrap: wrap;
}

.cr__right.radio .wpcf7-form-control label{
  font-size: 16px;
  margin-right: 20px;
}

.cr__right.radio .wpcf7-list-item{
  margin-bottom: 5px;
  display: block;
  margin-left: 0;
  margin-right: 15px;
}

.cr__right.radio .wpcf7-form-control input{
  margin-right: 4px;
}

.news__flex{
  display: flex;
}

.news__left{
  width: 35%;
  box-sizing: border-box;
  padding-right: 40px;
}

.news__right{
  width: 65%;
}

.news__left h3{
    font-size: 16px;
    margin:0 0 20px;
}

.news__left ul{
  list-style: none;
  margin:0;
  padding:0;
}

.news__left ul li{
  margin-bottom: 12px;
}

.news__left ul li a{
  background: #000;
  color:white;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
  padding: 2px 25px;
  font-size: 12px;
  transition: 0.4s;
}

.news__left ul li.current a{
  background: #03FFBA;
  color: #1D211C;
  pointer-events: none;
}

.news__left ul li a:hover{
  opacity: 0.6;
}

.news__info{
  display: flex;
  align-items: center;
}

.news__info p{
  font-size: 14px;
  margin: 0;
  margin-right:15px;
}

.news__info a{
  background: #000;
  color:white;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
  padding: 2px 25px;
  font-size: 12px;
  margin-right: 10px;
  transition: 0.4s;
}

.news__info a:hover{
  opacity: 0.6;
}

.news__col .news__title{
  margin:20px 0 0;
  font-size: 18px;
  display: block;
  line-height: 1.6;
  text-decoration: none;
  color:black;
  transition: 0.4s;
}

.news__col .news__title:hover{
  opacity: 0.6;
}

.news__col{
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom:1px solid #707070;
}

.archive .news__col{
  border-color: #DEDEDE;
}

.news__col:last-child{
  margin-bottom: 0;
}

.news__pagination{
  margin-top: 60px;
  text-align: center;
}

.news__pagination .wp-pagenavi span{
  width: 37px;
  height: 37px;
  line-height: 35px;
  padding:0;
  border: 0;
  margin: 0 10px;
  border-radius: 50%;
  color:black;
  background: #03FFBA;
  display: block;
  font-size: 16px;
}

.wp-pagenavi{
  display: flex;
  justify-content: center;
}

.news__pagination .wp-pagenavi a{
  width: 37px;
  height: 37px;
  line-height: 36px;
  padding:0;
  border: 0;
  margin: 0 10px;
  border-radius: 50%;
  color:black;
  border:1px solid #03FFBA!important;
  display: block;
  font-size: 16px;
  transition: 0.4s;
}

.news__pagination .wp-pagenavi a:hover{
  opacity: 0.6;
}

.news__pagination .wp-pagenavi a.nextpostslink{
  width: 37px;
  height: 37px;
  position:relative;
  width: 12px;
  height: 21px;
  border: 0!important;
  margin-left: 45px;
}

.news__pagination .wp-pagenavi a.nextpostslink:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 50%;
  background-image: url('img/next.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


.news__pagination .wp-pagenavi a.previouspostslink{
  width: 37px;
  height: 37px;
  position:relative;
  width: 12px;
  height: 21px;
  border: 0!important;
  margin-right: 45px;
}

.news__pagination .wp-pagenavi a.previouspostslink:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 50%;
  background-image: url('img/prev.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.news__singlearea{
  width: 800px;
  max-width: 100%;
  margin:0 auto;
}

.ns__infoarea{
  background: #EDF5F3;
  padding: 34px 45px;
  box-sizing: border-box;
}

.ns__infoarea .nsi__title{
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  margin:25px 0 0;
}

.news__content{
  margin:30px 0;
}

.news__content p{
  font-size: 16px;
  margin:16px 0;
}

.news__content img{
  margin:30px 0;
}

.news__content h2{
  font-weight: 600;
  font-size: 26px;
  padding-left:20px;
  margin:50px 0 20px;
  position: relative;
  line-height: 1.5;
}

.news__content h2:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #03FFBA;
}

.news__content h3{
  font-weight: 600;
  font-size: 21px;
  margin:30px 0 15px;
}

.page__area.mb__plus{
  margin-bottom: 120px;
}

.newsall__link{
  display: block;
  width: 256px;
  margin:60px auto 0;
  text-decoration: none;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 19px 0;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 600;
  color:black;
  transition: 0.4s;
  position: relative;
  letter-spacing: 0.06em;
}

.news__content p a{
  color:black;
  transition: 0.4s;
}

.news__content p a:hover{
  opacity: 0.6;
}

.newsall__link:before{
  content: '';
  position: absolute;
  width: 15px;
  height: 17px;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('img/arrow3.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.newsall__link:after{
  content:'↑' ;
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 16px;
  font-weight: bold;
  color:black;
  transition: 0.4s;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.newsall__link:hover:after{
  transform: translate(5px ,-50%) rotate(90deg);
}

.pagebg__area{
  position: relative;
  padding-bottom: 50px;
}

.pagebg__area:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url('img/pageVisual.png');
  background-size: cover;
  background-position: center;
}

.pagebg__area header{
  background: inherit;
}

.pagebg__area  .page__area{
  margin-top: 0;
  padding-top: 204px;
}

.pagebg__area .page__area .page__title1{
  color:#03FFBA;
}

.pagebg__area .page__area .page__title2{
  color:white;
}

.page__area .wrap{
  position: relative;
  z-index: 2;
}

.pagebg__area .bread__area span span{
  color:white;
}

.pagebg__area .bread__area span a span{
  color:#7C7C7C!important;
}

.pageV__img{
  width: 100%;
}

.pa__flex{
  display: flex;
}

.pa__flex .pa__left{
  width: 300px;
  box-sizing: border-box;
  padding-right: 40px;
  position: sticky;
  top: 130px;
  height: fit-content;
  align-self: flex-start;
}

.pa__flex .pa__right{
  width: calc(100% - 300px);
}

.page__area2{
  padding:100px 0 120px;
}

.pa__flex .pa__right h3{
  position: relative;
  padding-top:35px;
  font-size: 46px;
  line-height: 1.3;
  font-weight: 600;
  margin:100px 0 0;
}

.pa__flex .pa__right h3 span.size__small{
  font-size: 37px;
}

.pa__flex .pa__right h3:before{
  content: '';
  position: absolute;
  width: 97px;
  height: 3px;
  background: #03FFBA;
  left: 0;
  top: 0;
}

.pa__flex .pa__right h3.first{
  margin-top: 0;
}

.pa__flex .pa__right p{
  font-size: 16px;
  margin: 0;
}

.pa__flex .pa__right .en{
  font-size: 17px;
  margin:5px 0 0;
}

.pa__flex .pa__right h4{
  margin:50px 0 40px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
}

.st__flex{
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.st__flex .stf__col{
  width: 48%;
  background: #EDF5F3;
}

.st__flex .stf__col img{
  width: 100%;
}

.stf__text{
  width: 100%;
  box-sizing: border-box;
  padding:20px 24px 35px;
  
}

.stf__text h5{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  padding-left: 25px;
  position: relative;
}

.stf__text h5:before{
  content: '';
  position: absolute;
  width: 15px;
  height: 1px;
  left: 0;
  top: 50%;
  background: black;
}

.pa__flex .pa__right .stf__text p{
  letter-spacing: 0;
}

.about__bg{
  width: 100%;
  padding:40px 20px;
  box-sizing: border-box;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-image: url('img/about/bg.jpg');
  color:white;
}

.pa__flex .pa__right .about__bg h4{
  font-size: 34px;
  line-height: 1.5;
  margin:0 0 28px;
  position: relative;
}

.pa__flex .pa__right .about__bg h4:before{
  content: '';
  position: absolute;
  width: 117px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  background: white;
}

.pa__flex .pa__right .about__bg h4 span{
  color:#03FFBA;
}

.pa__flex .pa__right .about__bg p .deco2{
  color:#03FFBA;
}

.pa__flex .pa__right .about__bg p{
  line-height: 1.9;
}

.pa__flex .pa__right .about__bg p .deco1{
  font-size: 18px;
  display: inline-block;
  position: relative;
  background: white;
  padding:0 5px;
  margin:0 5px;
  font-weight: 600;
  color:black;
}

.pa__flex .pa__right .about__bg p .deco1:before{
  content: '';
  position: absolute;
}

.pa__flex .pa__right .about__bg .box{
  width: 530px;
  background: white;
  margin:0 auto;
  max-width: 100%;
  padding:14px 10px 17px;
  box-sizing: border-box;
  text-align: center;
  margin-top: 30px;
  color:black
}

.pa__flex .pa__right .about__bg .box h5{
  font-size: 16px;
  font-weight: 600;
  margin:0;
}

.pa__flex .pa__right .about__bg .box p{
  font-size: 12px;
  margin: 0;
}

.pa__left ul{
  list-style: none;
  padding:0;
  margin:0;
}

.pa__left ul li{
  margin: 0;
  border-bottom: 1px solid #DEDEDE;
}

.pa__left ul li:first-child{
  border-top: 1px solid #DEDEDE;
}

.pa__left ul li a{
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  color:#ABABAB; 
  padding:20px 0;
  padding-left: 32px;
  position: relative;
  transition: 0.4s;
}

.pa__left ul li a:before{
  content: '';
  position: absolute;
  width: 20px;
  height: 1px;
  background: #DEDEDE;
  left: 0;
  top: 50%;
  transition: 0.4s;
}

.pa__left ul li a.current{
  color:#000;
}

.pa__left ul li a.current:before{
  background: #03FFBA;
}

.feature__flex{
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.feature__flex .feature__col{
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: #000;
  color:white;
  text-align: center;
  margin-right: 10px;
  box-sizing: border-box;
  padding:25px 0 0;
}

.feature__flex .feature__col .ffc__1{
  font-size: 28px;
  font-weight: 600;
  margin:0;
}

.feature__flex .feature__col .ffc__2{
  font-size: 12px;
  font-weight: 600;
  margin:0;
}

.pa__flex .pa__right .feature__flex .ffc__3{
  font-size: 28px;
  font-weight: 600;
  margin:0;
  margin-left: 6px;

}

.pa__flex .pa__right .feature_area{
  margin-top: 40px;
}

.pa__flex .pa__right .feature_area h4{
  background: black;
  color:white;
  font-size: 16px;
  padding:9px 37px;
  display: flex;
  align-items: center;
  margin: 0;
}

.pa__flex .pa__right .feature_area h4 span{
  font-size: 53px;
  font-weight: 300;
  display: block;
  margin-right: 10px;
}

.pa__flex .pa__right .feature_area .feature__textarea{
  padding: 25px 35px;
  background: #EDF5F3;
  margin-bottom: 20px;
}

.pa__flex .pa__right .feature_area .feature__textarea .fet__1{
  margin:0 0 13px;
  font-size: 22px;
  font-weight: 600; 
}

.pa__flex .pa__right .feature_area .feature__textarea .fet__2{
  font-size: 16px;
  margin: 0;
}

.pa__flex .pa__right h4.size2{
  font-size: 28px;
}

.pa__flex .pa__right p.mb__plus{
  margin-bottom: 28px;
}

.message__flex{
  display: flex;
  margin-top: 40px;
  align-items: end;
}

.message__flex .mf__left{
  width: 200px;
}

.message__flex .mf__left img{
  width: 100%;
}

.message__flex .mf__right{
  width: calc(100% - 200px);
  box-sizing: border-box;
  padding-left: 35px;
}

.message__flex .mf__right p.mfr__1{
  margin: 0;
  font-size: 16px;
}

.message__flex .mf__right p.mfr__2{
  margin: 0;
  font-size: 20px;
}

.pa__flex .pa__right p.message{
  margin-top: 55px;
  line-height: 1.95;
}

.info__img{
  display: block;
  width: 100%;
  margin-top: 60px;
}

.info__table{
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  font-size: 16px;
}

.info__table .it__left{
  width: 130px;
  text-align: center;
  background:black;
  padding:23px 0;
  border-bottom:1px solid #DEDEDE;
  display: flex;
  align-items: center;
  justify-content: center;  
}

.info__table .it__right{
  width: calc(100% - 130px);
  box-sizing: border-box;
  padding:23px 30px;
  border-bottom:1px solid #DEDEDE;

}

.info__table .it__left.first ,
.info__table .it__right.first{
  border-top:1px solid #DEDEDE;
}

.info__table .it__left p{
  margin: 0;
  color:white;
  font-weight: 600;

}

.info__table .it__right p{
  margin: 0;
}

.info__table .it__right p span{
  display: inline-block;
  width: 160px;
}

.info__table .it__right p span.w2{
  width: auto!important;
  
}

.info__table .it__right p span.w2.ls{
  letter-spacing: 0.065em;
}


.info__table .it__right p a{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color:black;
  transition: 0.4s;
}

.info__table .it__right p a img{
  width: 33px;
  display: block;
  margin-left: 10px;
}

.info__table .it__right p a:hover{
  opacity: 0.6;
}

.pa__right ol{
  margin: 0;
  padding: 0;
  padding-left: 16px;
  list-style: none;
}

.pa__right ol li{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 13px;
  padding-left: 30px;
  position: relative;
}

.pa__right ol li:before{
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: black;
  left: 0;
  top: 6px;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  line-height: 22px;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  color:white;
}


.pa__right ol li:nth-child(1):before{
  content: '1';
}

.pa__right ol li:nth-child(2):before{
  content: '2';
}

.pa__right ol li:nth-child(3):before{
  content: '3';
}

.pa__right ol li:nth-child(4):before{
  content: '4';
}

.pa__right ol li:nth-child(5):before{
  content: '5';
}

.pa__flex .pa__right p.phy__1{
  margin: 60px 0 20px;
}

.pa__flex .pa__right p.phy__2{
  margin: 20px 0;
}

.history__row{
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}

.history__row .hr__left{
  width: 155px;
  display: flex;
  align-items: center;
  padding:15px 0;
  border-top: 1px solid #DEDEDE;
}

.history__row .hr__right{
  width: calc(100% - 155px);
  box-sizing: border-box;
  position: relative;
  padding:25px 0;
  border-top: 1px solid #DEDEDE;
  min-height: 97px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;  
}

.history__row .hr__right.flex{
  display: flex;
  align-items: center;
}

.history__row .hr__left.bottom{
  border-bottom: 1px solid #DEDEDE;
}

.history__row .hr__right.bottom{
  border-bottom: 1px solid #DEDEDE;
}

.history__row .hr__left p{
  font-size: 46px!important;
  font-weight: 300;
  margin: 0;
  line-height: 1;
}

.history__row .hr__right .month{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 600;
}

.history__row .hr__right .hrr__text{
  font-size: 16px;
  margin: 0;
  padding-left: 77px;
}


.history__row .hr__left.last{
  border-top: 0;
}

.history__row .hr__left.last p{
  font-size: 36px!important;
  padding-left: 17px;
}

.history__row .hr__right .rel{
  position: relative;
  padding:14px 0;
  /* margin: 10px 0; */
  width: 100%;
  border-bottom: 1px solid #DEDEDE;
}

.history__row .hr__right .rel.last{
  border-bottom: 0;
  /* padding-bottom: 0; */
}

.history__row .hr__right.type2{
  padding:7px 0;
}

.history__row .hr__left.border{
  border-bottom: 1px solid #DEDEDE;
}

.history__row .hr__right.border{
  border-bottom: 1px solid #DEDEDE;
}

.history__row .hr__left.space{
  padding-top:40px;
}

.history__row .hr__left{
  position: relative;
  /* overflow: hidden; */
}

.history__row .hr__left:before{
  content: '';
  position: absolute;
  width: 10px;
  box-sizing: border-box;
  /* border-left:10px dashed #DEDEDE; */
  height:90%;
  left: 50px;
  bottom: -70px;
  background-image:url('img/company/line.png');
  background-size: contain;
  background-repeat: repeat-y;
}

.history__row .hr__left p span{
  position: relative;
  background: white;
  z-index: 3;
  display: inline-block;
  padding:10px 0;
}

.history__row .hr__left.last p span{
  padding-bottom: 25px;
}

.history__row .hr__left.space:before{
  display: none;
}

.pa__flex .pa__right h4.mb__half{
  margin-bottom: 13px;
}

.pa__flex .pa__right .bg__area p{
  background: #EDF5F3;
  box-sizing: border-box;
  
  padding:5px 14px;
  margin-bottom: 5px;
}

.pa__flex .pa__right .bg__area.bold p{
  font-weight: 600;
}

.pa__flex .pa__right .bg__area{
  margin: 14px 0;
}

.pa__flex .pa__right .bg__area.type2 p{
  padding-left: 84px;
  position: relative;
}

.pa__flex .pa__right .bg__area.type2 p span{
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  font-weight: 600;
  transform: translateY(-50%);
  width: 58px;
  text-align: center;
  border-right: 1px solid #DEDEDE;
  font-size: 18px;
  line-height: 1.1;
}

.pa__flex .pa__right p.last__text{
  margin-top:40px;
}

.pa__flex .pa__right p.last__text .bold{
  font-weight: 600;
}

.block__bg{
  color:white;
  background-image: url('img/blocks/recom-bg.png');
  background-size: cover;
  background-position: center;
  padding:5.5vw 0;
  box-sizing: border-box;
  position: relative;
  z-index: 4;
}

.block__bg .bb__text1{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  margin:0 0 20px;
}

.block__bg .bb__text2{
  font-size: 16px;
  margin:25px 0 0;
  line-height: 1.6;
}

.block__bg img{
  width: 300px;
}

.pa__flex .pa__right p.mt__plus{
  margin-top: 60px;
}

.resaon__flex{
  display: flex;
  margin-top: 40px;
  background: #EDF5F3;
  box-sizing: border-box;
  padding:35px 30px 20px;
}

.resaon__flex .rf__left{
  width: 48.5%;
  box-sizing: border-box;
  padding-right: 20px;
}

.resaon__flex .rf__right{
  width: 51.5%;
}

.resaon__flex.type2 .rf__right{
  display: flex;
  align-items: center;
}

.resaon__flex .rf__right img{
  width: 100%;
  margin-bottom: 17px;
}

.resaon__flex .rf__left  .rf__text1{
  font-size: 58px;
  margin:0;
  line-height:1.1;
  font-weight: 300;
}

.resaon__flex .rf__left  .rf__text2{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin:14px 0 0;
}

.resaon__flex .rf__right p{
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0;
}

.works__slider{
  margin-top: 50px;
}

.works__slider img{
  margin-bottom: 0;
  width: 100%;
}

.works__slider .slider-1{
  height: auto;
}

.works__slider .slick-slide{
  height: auto!important;
}

.works__slider .slick-slide.thumbnail-img{
  padding:0 5px;
}

.works__slider .thumbnail-1{
  width: calc(100% + 10px);
  position: relative;
  left: -5px;
  margin-top: 7px;
}

.btn__black{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 414px;
  margin-top: 25px;
  text-decoration: none;
  background: black;
  color:white;
  padding: 19px 0;
  font-size: 14px;
  font-weight: 600;
  transition: 0.4s;
  position: relative;
}

.btn__black img{
  width: 14px;
  display: block;
  margin-left: 15px;
}

.btn__black:hover{
  opacity: 0.6;
}

.pa__flex .pa__right p.bg__black{
  background: black;
  color:white;
  padding:12px 24px;
  margin:17px 0 12px;
}

.pa__flex .pa__right p.bg__black.mt__plus{
  margin-top: 60px;
}

.works__slider img.slick-prev{
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  z-index: 3;
  cursor: pointer;
}

.works__slider img.slick-next{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  z-index: 3;
  cursor: pointer;

}

.category__title{
  position: relative;
  font-size: 20px;
  font-weight: 600;
  margin:0 0 25px;
  padding-left: 24px;
}

.category__title:before{
  content: '';
  position: absolute;
  width: 15px;
  height: 1px;
  background: black;
  left: 0;
  top: 50%;
}

.wa__categoryarea{
  padding:35px 0 15px;
  border-top:1px solid black;
  border-bottom:1px solid black;
}

.archive .works__area{
  width: 100%;
  margin: 0;
  padding: 0;
}

.works__list{
  margin-top: 60px;
  width: calc(100% + 10px);
  position: relative;
  left: -5px;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-evenly; */
}

.works__item{
  width: 32.3%;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  margin-bottom: 60px;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.works__item img{
  width: 100%;
  height: 222px;
  object-fit: cover;
}

.top__ver .works__item img{
  height: 15.5vw;
}

.works__item h4{
  margin:18px 0;
  font-size: 16px;
  font-weight: 300;
  color:black;
}

.works__meta{
  display: flex;
  align-items: start;
}

/* .works__meta .works__categories ,
.works__meta .works__tags{
  font-size: 12px;
  border-radius: 30px;
  color:white;
  padding:2px 23px;
  background:black;
  margin-right: 6px;
} */

.works__single{
  width: 800px;
  max-width: 100%;
  display: block;
  margin:0 auto;
}

.thumbnail-img{
  cursor: pointer;
}

.thumbnail-1 .slick-track{
  margin-left: 0!important;
}

.works__single__content{
  margin-top: 50px;
  padding:32px;
  background: #EDF5F3;
}

.works__single__content h3{
  margin:0 0 14px;
  font-size:24px;
  font-weight: 600;
  line-height: 1.6;
}

.works__single__content p{
  margin: 0;
  font-size: 16px;
}

.works__other h3{
  font-size: 30px;
  margin:100px 0 45px;
  font-weight: 600;
  position: relative;
  padding-top: 30px;
  line-height: 1.3;
}

.works__other h3:before{
  content: '';
    position: absolute;
    width: 97px;
    height: 3px;
    background: #03FFBA;
    left: 0;
    top: 0;
}

.works__list a{
  transition: 0.4s;
}

.works__list a:hover{
  opacity: 0.6;
}

.recruit__visual{
  width: 100%;
  height: 62vw;
  background-image: url('img/recruit/pageV.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit__visual h2{
  font-size:2.4vw;
  margin: 0;
  font-weight: 600;
  text-align: center;
}

.recruit__message{
  background-image: url('img/recruit/message-bg.jpg');
  background-size: cover;
  background-position: bottom; 
  text-align: center;
  padding:100px 0 590px;
}

.recruit__message p{
  font-size: 16px;
  line-height:2;
  color:white;
  font-weight: 600;
  margin: 0;
}

.recruit__infoarea{
  padding: 100px 0 120px;
  background: white;
  position: relative;
}

.recruit__infoarea h3{
  font-size: 30px;
  margin:100px 0 45px;
  font-weight: 600;
  position: relative;
  padding-top: 30px;
  line-height: 1.3;
}

.recruit__infoarea h3:before{
  content: '';
    position: absolute;
    width: 97px;
    height: 3px;
    background: #03FFBA;
    left: 0;
    top: 0;
}

.recruit__infoarea h3.mt0{
  margin-top: 0;
}

.recruit__list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.recruit__list .rl__col{
  width:24%;
  box-sizing: border-box;
  background: #EDF5F3;
}

.recruit__list .rl__col img{
  width: 100%;
}

.recruit__list .rl__col .rl__col__inner{
  padding:35px 22px 45px;
}

.recruit__list .rl__col .rl__col__inner h4{
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin:0 0 12px;
  line-height: 1.4;
}

.recruit__list .rl__col .rl__col__inner p{
  margin: 0;
  font-size: 16px;
}

.qa__item{
  margin-bottom: 15px;
}

.qa__question{
  position: relative;
}

.qa__question:before{
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: white;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.qa__question:after{
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: white;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 2;
  transition: 0.4s;
}

.qa__item.active .qa__question:after{
  transform: translateY(-50%) rotate(0deg);
}

.qa__item .qa__question h4{
  background: black;
  padding: 28px 60px;
  padding-left: 90px;
  margin: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  color: white;
  position: relative;
}

.qa__item .qa__question h4 span{
  position: absolute;
  left: 30px;
  top: 22px;
  width: 42px;
  height: 42px;
  display: block;
  background: white;
  color: black;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
}

.qa__item .qa__answer{
  border: 1px solid black;
  padding:30px;
  display: none;
}

.qa__item .qa__answer p{
  margin: 0;
}

.recruit__table{
  display: flex;
  flex-wrap: wrap;
}

.recruit__table .rt__left{
  width: 130px;
  background: black;
  color: white;
  border-bottom: 1px solid #DEDEDE;
  display: flex;
  align-items: center;
  justify-content: center;  
}

.recruit__table .rt__left p{
  text-align: center;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  padding: 23px 0;

}

.recruit__table .rt__left.first{
  border-top: 1px solid #DEDEDE;
}

.recruit__table .rt__right.first{
  border-top: 1px solid #DEDEDE;
}

.recruit__table .rt__right{
  width: calc(100% - 130px);
  box-sizing: border-box;
  padding: 23px 30px;
  border-bottom: 1px solid #DEDEDE;
}

.recruit__table .rt__right p{
  font-size: 16px;
  margin: 0;

}

.qa__area.type2 .qa__item .qa__question h4{
  padding-left: 30px;
}

.type2 .qa__item .qa__answer{
  padding:40px 50px;
}

.submit .wpcf7-spinner{
  margin:0 auto;
  display: block;
}

.pagebg__area header{
  transition: 0.4s;
}

.pagebg__area header.color{
  background: #272727;
}

.works__slider .slick-slide.thumbnail-img{
  height: 98px!important;
}

.works__slider .slick-slide.slick-img{
  height: 510px!important;
}

.works__slider .slick-slide.thumbnail-img img{
  height: 100%;
  object-fit: cover;
}

.works__slider .slick-slide.slick-img img{
  height: 100%;
  object-fit: cover; 
}

.news__info.works__info a{
  margin-right: 0;
}

.works__list a{
  display: block;
  text-decoration: none;
}

.works__meta a{
  text-decoration: none;
  color: white;
  transition: 0.4s;
  font-size: 12px;
  border-radius: 30px;
  color: white;
  padding: 2px 23px;
  background: black;
  margin-right: 6px;
  display: inline-block;
  text-align: center;
}

.works__meta a:hover{
  opacity: 0.6;
}

.works__meta{
  flex-wrap: wrap;
}

.works__meta a{
  margin-bottom: 6px;
}

.mainV{
  position: relative;
}

.mainV:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background-image: url('img/deco.png');
  background-size: cover;
  background-position: right;
  z-index: 5;
}

.mainV , .mainV .mv__slick img{
  height: 60vw;
}

.mainV .mv__slick{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.mainV .mv__slick div{
  height: 100%;
}

.mainV .mv__slick img{
  width: 100%;
  object-fit: cover;
}

.mainV .mv__text{
  position: relative;
  z-index: 18;
  /* width: 70%; */
  display: block;
  /* margin-left: auto; */
  box-sizing: border-box;
  /* padding:37vw 0 0; */
  color: white;
}

.mainV .mv__text h2{
  font-size:1.6vw;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.mainV .mv__text h3{
  font-size: 10.1vw;
  line-height: 1.1;
  margin:10px 0;
  font-weight: 300;
  letter-spacing: 0.05em;
  position: relative;
  left:-5px;
  white-space: nowrap;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.mainV .mv__text p{
  font-size: 1.2vw;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.top__section2{
  background: #272727;
  overflow: hidden;
  padding-bottom: 100px;
  position: relative;
}


.wwd__area{
  /* padding:150px 0 0; */
  color:white;
}

.wwd__area h3{
  font-size: 18px;
  font-weight: 500;
  margin:0 0 25px;
}

.wwd__area h2{
  font-weight: 600;
  font-size: 52px;
  line-height: 1.5;
  margin:0 0 30px;
}

.wwd__flex{
  display: flex;
  align-items: start;
}

.wwd__left{
  width: 50%;
  padding-right: 55px;
  box-sizing: border-box;
}

.wwd__right{
  width: 50%;
}

.wwd__right img{
  width: 100%;
}

.wwd__left p{
  font-size: 16px;
  margin:0 0 36px;
}

.wwd__left ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.wwd__left ul li:first-child{
  border-top:1px solid #707070;
}

.wwd__left ul li{
  border-bottom:1px solid #707070;
}
    
.wwd__left ul li a{
  display: block;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding:15px 26px;
  color:white;
  text-decoration: none;
}

.wwd__left ul li a:before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 17px;
  background-image: url('img/arrow3.png');
  background-size: cover;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.wwd__left ul li a:after{
  content: '→';
  font-size: 16px;
  font-weight: 600;
  color:#03FFBA;
  margin: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.4s;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.wwd__left ul li a:hover:after{
  right: 0;
}

.wrap.flex{
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.ts3__row{
  padding:40px 0;
  transition: 0.4s;
  background: #3C3C3C;
  border-bottom:1px solid #707070;
  color:white;
  position: relative;
  display: block;
  text-decoration: none;
}

.ts3__row:before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  transition: 0.5s;
  background: #00FFBA;
}

.ts3__row:hover:before{
  height: 100%;
}

.top__section3 .ts3__row:last-child{
  border-bottom:0;
}

.ts3__left{
  width: 55%;
}

.ts3__right{
  width: 45%;
}

.ts3__right p{
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  margin:0;
  color:white;
  transition: 0.4s;
  transition-delay: 0.1s;
  text-align: right;
}

.ts3__left h3{
  font-size: 52px;
  font-weight: 600;
  margin: 0;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color:white;
  transition: 0.4s;
  transition-delay: 0.1s;
}

.ts3__row:hover .ts3__right p{
  color:black;
}

.ts3__row:hover .ts3__left h3{
  color:black;
}

.top__section4{
  background-image: url('img/recom_bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  border:5px solid #00FFBA;
  padding:75px 0 0;
  display: block;
  text-decoration: none;
  transition: 0.4s;
}

.top__section4:hover{
  opacity: 0.8;
}

.top__section4 h2{
  text-align: center;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 600;
  color:#03FFBA;
}

.top__section4 h2 span{
  font-size: 21px;
}

.top__section4 img{
  width: 375px;
  display: block;
  margin:36px auto 70px;
}

.top__section4 h3{
  line-height: 1;
  margin: 0;
  text-align: center;
  font-size: 140px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color:#03FFBA;
  position: relative;
  top: 20px;
}

a.link__type1{
  display: block;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding:15px 26px;
  color:black;
  text-decoration: none;
  width: 257px;
  box-sizing: border-box;
  margin-left: auto;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

a.link__type1:before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 17px;
  background-image: url('img/arrow3.png');
  background-size: cover;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

a.link__type1:after{
  content: '→';
  font-size: 16px;
  color:black;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  margin: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transition: 0.4s;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

a.link__type1.color:after{
  color:#03FFBA;
}

a.link__type1:hover:after{
  right: 0;
}

.ts5__flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ts5__left{
  width: 60%;
}

.ts5__right{
  width: 40%;
}

.top__section5{
  padding:120px 0;
  position: relative;
  background: white;
  z-index: 2;
}

.title__size1{
  font-size: 17px;
  margin: 0;
  font-weight: 300;
}

.title__size2{
  font-size: 80px;
  font-weight: 300;
  margin: 0;
  line-height: 1;
}

.works__area{
  position: relative;
  width: 100%;
  padding-left: calc(50% - 570px + 40px);
  box-sizing: border-box;
  padding-right: 0;
  margin-top: 45px;
}

.top__ver .works__item{
  margin: 0!important;
  padding-right: 10px;
  height: auto!important
  ;padding-bottom: 2px;
}

.top__ver .wa__slider{
  padding-left: 175px;
  
}

.top__ver .wa__slider .works__meta a{
  padding-top: 5px;
  padding-bottom: 5px;
}

.top__ver .wa__slider .slick-prev{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.top__ver .wa__slider .slick-next{
  position: absolute;
  left: 65px;
  bottom: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.top__news__flex{
  display: flex;
  margin-top: 160px;
}

a.link__type1.left{
  margin-left: 0;
}

.top__news__flex a.link__type1{
  margin-top: 65px;
}

.top__news__left{
  width: 35%;
}

.top__news__right{
  width: 65%;
}

.top__news__right .news__col:first-child , .archive .news__col:first-child{
  padding-top: 32px;
  border-top: 1px solid #707070;
}

.archive .news__col:first-child{
  border-color: #DEDEDE;
}

.top__section6{
  position: relative;
  /* margin-top: 150px; */
  padding:0 0 24vw;
  background: white;
}



.ts6__bg{
  /* background-image: url('img/recruit-bg.png');
  background-size: cover;
  background-position: top; */
  position: absolute;
  left: 50%;
  /* bottom: 0; */
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  /* object-fit: cover; */
  z-index: 1;
  /* opacity: 0; */
  transition: 0.6s;
  transition-delay: 0.3s;
}

.ts6__bg.active{
  opacity: 1;
}

.ts6__box{
  background: #303133;
  width: 770px;
  max-width: 100%;
  display: block;
  margin:0 auto;
  padding:50px 10px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.ts6__box h2{
  font-size: 17px;
  font-weight: 300;
  color:white;
  text-align: center;
  margin: 0;
}

.ts6__box h3{
  font-size: 80px;
  font-weight: 300;
  color: #00FFBA;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 13px;
}

.ts6__box .ts6__text1{
  font-size: 34px;
  font-weight: 600;
  color:white;
  text-align: center;
  margin: 0 0 22px;
  line-height: 1.4;
}

.ts6__box .ts6__text2{
  text-align: center;
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color:white;
  margin: 0 0 40px;
}

a.link__type1.center{
  margin-left: auto;
  margin-right: auto;
}

.ts6__box a.link__type1{
  color:white;
}

.wa__slider a{
  transition: 0.4s;
  text-decoration: none;
}

.wa__slider a:hover{
  opacity: 0.7;
}

.pagebg__area.top{
  padding:0;
}

.pagebg__area.top:before{
  display: none;
}

.btn__menu{
  position: absolute;
  right: 0;
  top: 0;
  width: 112px;
  height: 112px;
  box-sizing: border-box;
  border-left:1px solid #fff;
}


.menu_button p{
  font-weight: bold;
  color:#3D96C8;
}

.menu_button .bar{
  width: 40px;
  display: block;
  margin:20px auto 0;
}

.header-flex{
 padding-top: 22px;
}


.menu_button:hover{
 cursor:pointer;
}

.menu_button .menu_icon01 {
 display: block;
 float:left;
 cursor: pointer;
 transition: .7s;
 position: relative;
 top:33px;
 left:20px;
}

.menu_button .menu_icon01 span {
 display: block;
 width: 27px;
 height: 2px;
 background: black;
 margin-bottom: 15px;
 transition: .7s;
}

.menu_button.open .menu_icon01 span{
 background:white; 
}

.news-flex article .news-content img{
 height:170px;
}


.menu_button .menu_icon01{
 top: 22px;
 left: 16px;
}

.menu_button:hover{
 cursor:pointer;
}

.menu_button .menu_icon01 {
 display: block;
 cursor: pointer;
 transition: .5s;
 position: absolute;
 top:50%;
 left:50%;
 transform: translate(-50%, -50%);
}

.menu_button .menu_icon01 span {
 display: block;
 width: 56px;
 height: 2px;
 background: white;
 margin-bottom: 8px;
 transition: .5s;
}

/* .menu_button .menu_icon01 span.bar2{
 width: 36px;
}

.menu_button .menu_icon01 span.bar3{
 width: 32px;
}	

.menu_button.open .menu_icon01 span.bar2{
 width: 40px;
}

.menu_button.open .menu_icon01 span.bar3{
 width: 40px;
}	 */

.menu_button.open .menu_icon01{
 transform:translate(-50%, -50%) rotate(-45deg);
 /* left: 20px; */

}
.menu_button.open .menu_icon01 .bar1 {
 transform: rotate(15deg) translateY(9px);
}
.menu_button.open .menu_icon01 .bar2 {
 opacity: 0;
}
.menu_button.open .menu_icon01 .bar3 {
transform: rotate(-105deg) translateX(9px);
}

.menu_button .menu_icon01 span.bar3{
  margin-bottom: 0!important;
}

.menu_button .menu_icon02 {
 display: block;
 float: left;
 cursor: pointer;
 transition: all 0.2s ease-in;
}
.menu_button .menu_icon02 span {
 display: block;
 width: 30px;
 height: 2px;
 background: #707070;
 margin-bottom: 4px;
 transition: all 0.4s ease-out;
}
.menu_button.open .menu_icon02 .bar1 {
 transform: translateY(10px) rotate(135deg);
}
.menu_button.open .menu_icon02 .bar2 {
opacity: 0;
transform:translateX(-100px);
}
.menu_button.open .menu_icon02 .bar3 {
transform:  translateY(-6px)
rotate(45deg);
}

.menu_button .menu_icon03 {
 display: block;
 float: left;
 cursor: pointer;
 transition: all 0.2s ease-in;
}
.menu_button .menu_icon03 span {
 display: block;
 width: 30px;
 height: 2px;
 background: #707070;
 margin-bottom: 4px;
 transition: all 0.4s ease-out;
}
.menu_button.open .menu_icon03 .bar1 {
 transform: translateY(10px) rotate(45deg);
}
.menu_button.open .menu_icon03 .bar2 {
opacity: 0;
width:150px;
transform: translateX(-60px)
}
.menu_button.open .menu_icon03 .bar3 {
transform: translateY(-6px)
rotate(135deg);
}

.right__fix{
  position: fixed;
  right: 0;
  top: 34%;
  z-index: 20;
}

.right__fix a{
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background:#FF0347;
  color:white;
  width: 76px;
  height: 195px;
  box-sizing: border-box;
  margin-bottom: 5px;
  letter-spacing: 0.15em;
  text-align: center;
  padding:0 27px;
  transition: 0.4s;
}

.right__fix a:hover{
  opacity: 0.6;
}

.inimg__flex{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.inimg__flex img{
  width: 32%;
}

.pa__flex .pa__right p.mb__half{
  margin-bottom: 15px;
}

.resaon__flex .rf__left ul{
  margin:22px 0 0;
  padding: 0;
  font-size: 14px;
  list-style: none;
}

.resaon__flex .rf__left ul li{
  position: relative;
  padding-left: 13px;
}

.resaon__flex .rf__left ul li:before{
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
}

.pa__flex .pa__right .resaon__flex .rf__text3{
  margin-top: 22px;
}

.resaon__flex.type2 .rf__left{
  width: 110px;
}

.resaon__flex.type2 .rf__right{
  width: calc(100% - 110px);
  display: block;
}

.resaon__flex.type2 .rf__right p:first-child{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.resaon__flex.type2 .rf__right p:first-child span{
  font-size: 16px;
}

.resaon__flex.type2{
  align-items: center;
  padding-bottom: 35px;
}

.resaon__flex .rf__right p.mb0{
  margin-bottom: 0!important;
}


#nav{
	position: fixed;
  overflow-y: auto;
  min-height: 100vh;
  max-height: 100vh;
  width: 100%;
  top: 0;
  background:rgba(39,39,39,0.9);
  margin-top: 0px;
  padding: 170px 0 50px;
  padding-right: 0!important;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: .6s;
  color: #fff;
}

.home #nav header .header__wrap .header__left a:before{
  opacity: 0;
}

#nav header{
  background: inherit!important;
}

#nav.in{
	opacity: 1;
	pointer-events: auto;
	z-index: 999;

}

#nav ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

#nav ul li{
  border-bottom:1px solid #707070;
  padding-left: 80px;
  padding-right: 130px;
}

#nav ul li:first-child{
  border-top:1px solid #707070;
}

#nav ul li a{
  margin: 0 auto;
  padding:12px 0;
  font-size: 18px;
  color:white;
  text-decoration: none;
  display: block;
  position: relative;
}

#nav ul li a:after{
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  font-weight: bold;
  color:#00FFBA;
  transition: 0.4s;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

#nav ul li a:hover:after{
  right: -10px;
}

#nav ul li a.type2 , #nav div.privacy a{
  transition: 0.4s;
}

#nav ul li a.type2:hover , #nav div.privacy a:hover{
  opacity: 0.7;
}

#nav ul li a.type2:after{
  content: '';
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('img/target.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 22px;
}

#nav div.privacy{
  padding-left: 80px;
  padding-right: 130px;
  margin-top: 15px;

}

#nav div.privacy a{
  color:#919191;
  font-size: 16px;
  text-decoration: none;
}

/* Works Filter Styles */
.radio-group {
  display: flex;
  flex-wrap: wrap;
}

/* アニメーション用スタイル */
.works__item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-right: 40px;
  margin-bottom: 10px;
  font-size: 16px;
}

.radio-label input[type="radio"] {
  margin-right: 5px;
  accent-color: #7C7C7C;
  margin-top: 0;
}

.radio-text {
  color: #333;
}

.scroll__down{
  position: absolute;
  top: 50%;
  left: 120px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color:white;
  z-index: 10;
  letter-spacing: 0.1em;
}

.scroll__down p{
  writing-mode: vertical-rl;
  margin: 0;
  position: relative;
}

.scroll__down p::after{
  content: '';
  position: absolute;
  width: 6px;
  height: 135px;
  background-image: url('img/arrow4.png');
  background-size: cover;
  background-repeat: no-repeat;
  top: calc(100% + 20px);
  left: 47%;
  transform: translateX(-50%);
  animation: scroll 2.5s ease-in-out infinite;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.footer__left a.tel{
  color:white!important;
  text-decoration: none;
}

.sp__ver{
  display:none;
}

.pc__ver{
  width: 800px;
  max-width: 100%;
  display: block;
  margin:0 auto;
  padding-top: 130px;
}

.pcv__flex{
  display: flex;
  justify-content: space-between;
}

.pcv__col{
  width: 31%;
}

.pcv__col a{
  color:white;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  margin-bottom: 40px;
}

.pcv__col p{
  margin: 0;
}

.pcv__col a:before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 17px;
  background-image: url('img/arrow3.png');
  background-size: contain;
  transition: 0.3s;
}

.pcv__col a:hover:before{
  left: 5px;
}

.pcv__flex2{
  justify-content: center;
  display: flex;
  margin-top: 35px;
}

.pcv__flex2 a{
  color:white;
  text-decoration: none;
  display: block;
  width: 200px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  background:#FF0347;
  border:2px solid #FF0347;
  box-sizing: border-box;
  margin:0 10px;
  transition: 0.4s;
  font-size: 14px;
  font-weight: 600;
}

.pcv__flex2 a:hover{
  background:white;
  color:#FF0347;
}

#nav header .btn__menu{
  border: 0;
}

#nav header{
  border: 0;
}

#nav .btn__menu a{
  display:block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#nav .btn__menu a img{
  width: 60px;
  transition: 0.4s;
  opacity: 0;
}

#nav.in .btn__menu a img{
  opacity: 1;
}

.link__postion{
  position: relative;
  top: -120px;
}

.sns__flex{
  display: flex;
  margin-top: 25px;
}

.sns__flex a{
  display: block;
  width: 29px;
  transition: 0.4s;
}

.sns__flex a:hover{
  opacity: 0.6;
}

.sns__flex a:first-child{
  margin-right: 30px;
}

.sns__flex a img{
  width: 100%;
}

.info__table .it__right p span.pc{
  width: 30px;
  text-align: center;
}

.info__table .it__right p a img.sns-icon{
  width: 29px;
  margin-left: 0;
  margin-right: 12px;
}

.info__table .it__right p a img.target-icon{
  width: 14px;
  margin-left: 6px;
}

.info__table .it__right.sns p{
  display: flex;
  align-items: center;
}
























/* CSSレスポンシブ*/


@media screen and (max-width: 1650px){
  header .header__wrap .header__right{
    padding-right: 40px;
  }

  header .header__wrap .header__left{
    width: 35%;
  }

  header .header__wrap .header__right{
    width: 65%;
  }

  header .header__wrap{
    padding-left: 40px;
    padding-right: 110px;
  }

  #nav ul li{
    padding:0 30px;
  }

  #nav div.privacy{
    padding:0 30px;
  }

  .scroll__down{
    left: 90px;
  }

  .top__section2 .pin-spacer{
    height: 75vw!important;
    padding-bottom: 0!important;
  }

}




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

  .top__ver .works__item img{
    height: 20vw;
  }

  .scroll__down p::after{
    width: 4px;
    height: 85px;
  }

  .scroll__down{
    font-size: 17px;
  }


  .top__section6{
    padding:0 0 20vw;
  }

  .recruit__visual h2{
    font-size: 2.9vw;
    line-height: 1.6;
  }

  .recruit__list .rl__col .rl__col__inner p{
    font-size: 15px;
  }

  .recruit__infoarea p{
    font-size: 15px;
  }

  .recruit__list .rl__col .rl__col__inner h4{
    font-size: 20px;
  }

  .recruit__list .rl__col .rl__col__inner{
    padding:30px 20px;
  }

  .recruit__message{
    padding:80px 0 400px;
  }

  .home header .header__wrap .header__left a:before{
    bottom: -30px;
  }

  .resaon__flex.type2 .rf__left{
    width: 90px;
  }

  .resaon__flex.type2 .rf__right p:first-child{
    font-size: 20px;
  }

  .resaon__flex.type2 .rf__right p:first-child span{
    font-size: 15px;
  }

  .resaon__flex.type2 .rf__right{
    width: calc(100% - 90px);
  }

  header .header__wrap .header__right ul li.current:before{
    bottom: -25px;
  }

  .right__fix a{
    width: 60px;
    padding:0 18px;
  }

  .right__fix{
    top: 27%;
  }

  header .header__wrap .header__left{
    width: 25%;
  }

  header .header__wrap .header__right{
    width: 75%;
  }

  header .header__wrap{
    padding-right: 80px;
  }

  .btn__abo{
    right: 120px;
    top: -34px;
  }

  header{
    padding:34px 0 25px
  }

  header .header__wrap .header__right ul li.current a:before{
    bottom: -30px;
  }

  header .header__wrap .header__right ul li a{
    font-size: 13px;
  }

  .page__area .page__title2{
    font-size: 64px;
  }

  .news__left{
    width: 30%;
  }

  .news__right{
    width: 70%;
  }

  .news__col .news__title{
    font-size: 17px;
    margin-top: 20px;
  }

  .footer__left{
    width: 45%;
  }

  .footer__right{
    width: 55%;
  }

  .footer__right ul div li a{
    font-size: 14px;
  }

  .footer__right ul div li a:after{
    display: none;
  }

  .bread__area{
    margin-bottom: 60px;
  }

  .category__title{
    font-size: 18px;
    margin-bottom: 15px;
  }

  #category-filter-form{
    margin-bottom: 20px;
  }

  #tag-filter-form{
    margin-bottom: 0;
  }

  .works__meta a{
    padding:2px 15px ;
  }

  .works__item h4{
    margin:15px 0;
    line-height: 1.5;
  }

  .works__item img{
    height: 20vw;
  }

  .works__slider .slick-slide.slick-img{
    height: 41vw!important;
  }

  .works__slider .slick-slide.thumbnail-img{
    height: 8vw!important;
  }

  .resaon__flex .rf__left .rf__text1{
    font-size: 46px;
  }

  .resaon__flex .rf__left .rf__text2{
    font-size: 20px;
  }

  .pagebg__area{
    padding-bottom: 20px;
  }

  .pa__flex .pa__right h3{
    font-size: 38px;
    margin-top:80px ;
    padding-top: 25px;
  }

  .pa__flex .pa__right h3 span.size__small{
    font-size: 29px;
  }

  .pa__flex .pa__right .en{
    font-size: 16px;
  }

  .pa__flex .pa__right h4{
    margin:40px 0 30px;
    font-size: 24px;
  }

  .pa__flex .pa__right p{
    font-size: 15px;
  }

  .info__table .it__right p span{
    width: 145px;
  }

  .stf__text h5{
    font-size: 17px;
  }

  .pa__flex .pa__right .about__bg h4{
    font-size: 25px;
  }

  .pa__flex .pa__right .about__bg p .deco1{
    font-size: 16px;
  }

  .pa__flex .pa__right .about__bg .box{
    width: 450px;
  }

  .pa__flex .pa__right .about__bg .box h5{
    font-size: 15px;
  }

  .feature__flex .feature__col .ffc__1{
    font-size: 23px;
  }

  .feature__flex .feature__col{
    width: 118px;
    height: 118px;
  }

  .pa__flex .pa__right .feature__flex .ffc__3{
    font-size: 22px;
  }

  .pa__flex .pa__right .feature_area h4 span{
    font-size: 40px;
  }

  .pa__flex .pa__right .feature_area .feature__textarea .fet__1{
    font-size: 20px;
  }

  .pa__flex .pa__right .feature_area .feature__textarea .fet__2{
    font-size: 15px;
  }

  .pa__flex .pa__right .feature_area .feature__textarea{
    padding:25px ;
  }

  .pa__flex .pa__right .feature_area h4{
    padding:9px 25px;
  }

  .pa__flex .pa__right h4.size2{
    font-size: 23px;
  }

  .pa__left ul li a{
    font-size: 15px;
  }

  .pa__flex .pa__left{
    width: 250px;
    padding-right: 20px;
  }

  .pa__flex .pa__right{
    width: calc(100% - 250px);
  }

  .pa__right ol{
    padding-left: 0;
  }

  .block__bg .bb__text1{
    font-size: 18px;
  }

  .block__bg img{
    width: 240px;
  }

  .block__bg .bb__text2{
    font-size: 15px;
  }

  .cr__left{
    width: 235px;
    padding-right: 20px;
  }

  .cr__right{
    width: calc(100% - 235px);
  }

  .cr__left p{
    font-size: 15px;
  }

  /* スクロールアニメーション用の初期スタイル */
  .top__section2 .tsb__text1 {
    font-size: 18vw;
    transition: font-size 0.1s ease-out;
  }

  .btn__menu{
    width: 104px;
    height: 104px;
  }

  /* .mainV .mv__text{
    width: 75%;
    padding-top: 35vw;
  } */

  /* .mainV .mv__text h2{
    font-size: 18px;
  }

  .mainV .mv__text h3{
    font-size: 100px;
  }

  .mainV .mv__text p{
    font-size: 16px;
  } */

  .wwd__area h2{
    font-size: 42px;
  }

  .wwd__left p{
    font-size: 15px;
  }

  .wwd__left ul li a{
    font-size: 15px;
  }

  .ts3__left h3{
    font-size: 40px;
  }

  .ts3__right p{
    font-size: 18px;
  }

  .top__section4 img{
    width: 320px;
  }

  .top__section4 h3{
    font-size: 100px;
    top: 12px;
  }

  .title__size2{
    font-size: 64px;
    margin-top: 5px;
  }

  .top__ver .wa__slider{
    padding-left: 0;
    padding-bottom: 95px;
  }

  .works__area{
    padding-left: 40px;
  }

  .top__section2 .pin-spacer{
    height: 90vw!important;
  }




}

.tb{
  display: none;
}

.tb__link{
  display: none;
}

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

  /* .mainV .mv__text{
    padding-top: 31vw;
  } */

  .pc__ver{
    display: none!important;
  }

  .sp__ver{
    display: block;
  }

  #nav header{
    border-bottom:1px solid white;
  }

  .menu_button.open .menu_icon01{
    transform: translate(-45%, -50%) rotate(-45deg);
  }

  .tb__link{
    display: flex;
    position: absolute;
    right: 95px;
    top: -25px;
  }

  .tb__link a{
    width: 110px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color:white;
    background:#FF0247;
    line-height: 1.2;
    height: 94px;
    font-weight: 600;
    font-size: 17px;

  }

  .tb__link a:first-child{
    border-right:1px solid #2B2D2A;
  }

  .right__fix{
    display: none;
  }

  .tb{
    display: block;
  }

  .mainV .mv__text p{
    line-height: 1.4;
  }

  header .header__wrap .header__right ul{
    display: none;
  }

  .btn__abo{
    display: none;
  }

  header{
    padding:25px 0;
  }

  .page__area{
    margin:150px 0 80px;
  }

  .btn__menu{
    width: 95px;
    height: 95px;
  }

  .menu_button .menu_icon01 span{
    width: 50px;
  }

  .top__news__left{
    width: 300px;
  }

  .top__news__right{
    width: calc(100% - 300px);
  }


  .right__fix{
    display: none!important;
  }

}

.sp{
  display:none!important;
}

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

  .info__table .it__right.sns p{
    display: block;
  }

  .info__table .it__right.sns p a:first-child{
    margin-bottom: 13px;
  }

  .sns__flex.sp{
    display: flex!important;
  }

  .cr__right.text.half input{
    width: 100%;
  }

  .pageV__img{
    height: 330px;
    object-fit: cover;
  }

  .about__bg{
    background-image: url(img/about/bg-sp.jpg);
  }

  .footer__right ul div li a{
    font-size: 15px;
  }

  .top__section6{
    padding:0 0 54vw ;
    /* margin-top: 30px; */
  }

  .resaon__flex.type2 .rf__right{
    margin-top: 10px;
  } 

  .wa__categoryarea{
    padding-bottom: 25px;
  }

  .works__area .radio-label{
    font-size: 15px;
    margin-right: 30px;
    margin-bottom: 0;
  }

  .contact__row.row2 .cr__left{
    margin-bottom: 25px;
  }

  .cr__right.radio .wpcf7-form-control label{
    font-size: 15px;
    margin-right: 15px;
  }

  .cr__left p span.small{
    font-size: 12px;
    bottom: -22px;
  }

  .qa__item .qa__question h4 span{
    left: 15px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    top: 19px;
  }

  .recruit__visual{
    background-image: url(img/recruit/pageV-sp.jpg);
    height: 107vw;
  }

  .recruit__visual h2{
    font-size: 4.8vw;
    line-height: 1.8;
  }

  .recruit__message{
    background-image: url(img/recruit/message-bg-sp.jpg);
    padding:80px 0 40vw;
  }

  .qa__question:after{
    right: 15px;
  }

  .qa__question:before{
    right: 15px;
  }


  .qa__item .qa__answer{
    padding:30px 20px ;
  }

  .qa__item .qa__question h4{
    padding:22px 40px;
    padding-left: 65px;
  }

  .recruit__message p{
    font-size: 15px;
  }

  .recruit__table .rt__left p{
    font-size: 14px;
    padding:18px 0;
  }

  .recruit__table .rt__left{
    width: 100px;
  }

  .recruit__table .rt__right{
    width: calc(100% - 100px);
    padding:18px 15px;
  }

  .recruit__table .rt__right p{
    font-size: 14px;
  }

  .type2 .qa__item .qa__answer{
    padding:40px 20px ;
  }

  .recruit__list .rl__col{
    width: 48%;
    margin-bottom: 30px;
  }

  .home header .header__wrap .header__left a:before{
    left: 0;
    width: 100%;
  }

  #nav{
    padding-top: 150px;
  }

  #nav ul li{
    padding:0 20px;
  }

  #nav ul li a{
    font-size: 16px;
  }

  #nav div.privacy{
    padding:0 20px;
  }

  #nav div.privacy a{
    font-size: 14px;
  }

  .works__area{
    padding: 0 20px;
  }

  .wrap{
    padding:0 20px;
  }

  .wa__slider2 .works__item img{
    height:59vw ;
  }

  .top__ver .works__item{
    padding: 0!important;
  }

  .wa__slider2 a{
    text-decoration: none;
  }

  .wa__slider2 .slick-prev{
    position: absolute;
    left: 0;
    top: calc(59vw / 2 - 30px);
    width: 60px;
    z-index: 10;
  }

  .wa__slider2 .slick-next{
    position: absolute;
    right: 0;
    top: calc(59vw / 2 - 30px);
    width: 60px;
    z-index: 10;
  }

  .top__section5{
    padding-bottom: 30px;
  }

  header .header__wrap{
    padding-left: 20px;
  }

  .news__flex{
    display: block;
  }

  .news__left{
    padding: 0;
    width: 100%;
    margin-bottom: 70px;
  }

  .news__right{
    width: 100%;
  }

  .news__left .category-list{
    display: flex;
    flex-wrap: wrap;
  }

  .news__left .category-list li{
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .bread__area{
    margin-bottom: 60px;
  }

  .news__left h3{
    margin-bottom: 10px;
  }

  .news__col .news__title{
    margin-top: 15px;
  }

  .news__col{
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .footer__contact{
    padding:80px 0 100px;
  }

  .footer__contact h3{
    font-size: 60px;
  }

  .footer__contact h3:after{
    width: 58px;
    height: 58px;
    right: 0!important;
  }

  footer .footer__flex{
    display: block;
  }

  .footer__left{
    width: 100%;
    padding: 0;
    margin-bottom: 45px;
  }

  .footer__right{
    width: 100%;
  }

  .footer__left p span{
    margin-bottom: 10px;
  }

  .footer__right ul{
    display: block;
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .footer__right ul div{
    width: 100%;
  }

  .footer__right ul div li{
    padding:0 20px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom:1px solid #707070;
  }

  .footer__right ul div:first-child li:first-child{
    padding-top:12px;
    border-top:1px solid #707070;
  }

  .footer__right ul div li a{
    display: inline-block;
  }

  .footer__right ul div li a:after{
    display: none;
  }

  .pc{
    display: none!important;
  }

  .sp{
    display:block!important;
  }

  .footer__row2{
    margin-top: 20px;
  }

  .footer__row2{
    display: block;
  }

  .footer__row2 p{
    width: 100%;
  }

  .footer__row2 p.copy{
    margin-top: 80px;
  }

  .footer__row2 a.arrow__link{
    top: inherit;
    bottom: 0;
    transform: translateY(0%);
  }

  .footer__row2 a.arrow__link:hover{
    top: inherit;
  }

  footer{
    padding:80px 0 40px;
  }

  .works__item{
    width: 48.5%;
    margin:0 0 30px!important;
  }

  .works__list{
    justify-content: space-between;
    width: 100%;
    left: 0;
  }

  .works__item img{
    height: 29vw;
  }

  .ns__infoarea{
    padding:30px 20px;
  }

  .news__info p{
    margin-right: 10px;
    margin-bottom: 5px;
  }

  .news__info{
    flex-wrap: wrap;
  }

  .ns__infoarea .nsi__title{
    font-size: 20px;
    margin-top: 18px;
  }

  .works__slider .slick-slide.slick-img{
    height: 60vw!important;
  }

  .works__slider .slick-slide.thumbnail-img{
    height: 12vw!important;
  }

  .works__single__content{
    padding:30px 20px;
  }

  .works__single__content h3{
    font-size: 20px;
  }

  .works__single__content p{
    font-size: 15px;
  }

  .works__other h3{
    font-size: 24px;
  }

  .news__content p{
    font-size: 15px;
    margin:15px 0;
  }

  .news__content h2{
    font-size: 22px;
    margin:40px 0 20px;
  }

  .news__content img{
    margin:20px 0;
  }

  .news__content h3{
    font-size: 19px;
  }

  .pa__flex{
    display: block;
  }

  .pa__flex .pa__left{
    width: 100%;
    padding-right: 0;
    position: relative;
    top: 0;
  }
  
  .pa__left ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .pa__left ul li{
    width: 49%;

  }

  .pa__left ul li:nth-child(2){
    border-top: 1px solid #DEDEDE;
  }

  .page__area2{
    padding:80px 0;
  }

  .pa__flex .pa__right{
    width: 100%;
    margin-top: 60px;
  }

  .pa__flex .pa__right h3{
    font-size: 28px;
    padding-top: 20px;
  }

  .pa__flex .pa__right h3 span.size__small{
    font-size: 24px;
  }

  .pa__flex .pa__right h4{
    font-size: 20px;
    margin:30px 0 20px;
  }

  .st__flex{
    display: block;
  }

  .st__flex .stf__col{
    width: 100%;
    margin-bottom: 40px;
  }

  .pagebg__area .page__area{
    padding-top: 155px;
    margin-bottom: 20px;
  }

  .pa__left ul li a{
    color:black;
  }

  .pa__flex .pa__right p.message{
    margin-top: 40px;
  }

  .message__flex .mf__right{
    padding-left: 20px;
  }

  .message__flex .mf__right p.mfr__1{
    font-size: 15px;
  }

  .message__flex .mf__right p.mfr__2{
    font-size: 18px;
  }

  .resaon__flex{
    display: block;
  }

  .resaon__flex .rf__left{
    width: 100%;
    padding: 0;
  }

  .resaon__flex .rf__right{
    width: 100%;
  }

  .resaon__flex .rf__left .rf__text2{
    margin:5px 0 25px;
  }

  .block__bg .bb__text1{
    font-size: 16px;
  }

  .block__bg .bb__text2{
    font-size: 14px;
    line-height: 1.7;
  }

  .block__bg img{
    width: 200px;
  }

  .contact__text1{
    font-size: 15px;
    margin-bottom: 40px;
  }

  .contact__tel p.ct__1{
    font-size: 18px;
  }

  .contact__tel a{
    font-size: 32px;
  }

  .contact__tel a img{
    width: 23px;
  }

  .contact__tel{
    padding:30px 5px;
  }

  .contact__text2{
    font-size: 27px;
    margin:80px 0 15px;
  }

  .contact__text3{
    font-size: 15px;
  }

  .contact__row{
    display: block;
  }

  .cr__right{
    width: 100%;
    margin-top: 10px;
  }

  .cr__left p span.must{
    position: relative;
    top: 0;
    transform: translateY(0%);
    margin-left: 10px;

  }

  .cr__left{
    width: 100%;
    padding:0 ;
  }

  .cr__left p{
    display: flex;
    align-items: center;
  }

  .cr__right.radio .wpcf7-list-item{
    margin-left: 0;
  }

  .privacy__area h3{
    font-size: 20px;
  }

  .page__area .page__title2.size2{
    font-size: 48px;
  }

  .mainV, .mainV .mv__slick img{
    height: 140vw;
  }

  .mainV:before{
    background-image: url(img/deco-sp.png);
    width: 75%;
  }

  /* .mainV .mv__text{
    width: 100%;
    padding-top: 105vw;
  } */

  .mainV .mv__text p br{
    display: none;
  }

  .mainV .mv__text p{
    font-size: 11px;
  }

  .mainV .mv__text h3{
    font-size: 80px;
  }

  .wwd__flex{
    display: block;
  }

  .wwd__left{
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }

  .wwd__right{
    width: 100%;
  }

  .wwd__area h3{
    font-size: 16px;
    margin-bottom: 20px;
  }

  .wwd__area h2{
    font-size: 34px;
  }

  .wwd__left ul li a:after{
    font-size: 30px;
  }

  a.link__type1:after , .newsall__link:after{
    font-size: 24px;
    right: 0!important;
  }

  .wrap.flex{
    display: block;
  }

  .ts3__left{
    width: 100%;

  }

  .ts3__right{
    width: 100%;
  }

  .ts3__right p{
    margin-top: 15px;
    text-align: left;
    font-size: 17px;
  }

  .ts3__left h3{
    font-size: 35px;
  }

  .top__section4 h3{
    white-space: nowrap;
    font-size: 12vw;
    top: 1vw;
  }

  .top__section4{
    background-image: url('img/recom_bg-sp.png');
  }

  .top__section4 img{
    margin-bottom: 55px;
  }

  .title__size2{
    font-size: 50px;
  }

  .title__size1{
    font-size: 16px;
  }

  a.link__type1{
    width: 190px;
    font-size: 15px;
    padding:10px 26px;
  }

  .top__news__flex{
    display: block;
    margin-top: 80px;
  }

  .top__news__left{
    width: 100%;
    margin-bottom: 40px;
  }

  .top__news__right{
    width: 100%;
  }

  .top__news__flex a.link__type1{
    margin-top: 0;
  }

  .top__news__left{
    display: flex;
    justify-content: space-between;
    align-items: end;
  }

  .top__news__left h2{
    font-size: 16px;
  }

  .ts5__flex{
    align-items: end;
  }

  .news__col .news__title{
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
  }

  .news__info a{
    padding:1px 10px;
    margin-right: 5px;
  }

  .news__info p.date{
    margin-bottom: 0;
  }

  .top__news__right .news__col:first-child , .archive .news__col:first-child{
    padding-top: 20px;
  }

  .ts6__box h2{
    font-size: 16px;
  }

  .ts6__box h3{
    font-size: 55px;
  }

  .ts6__box .ts6__text1{
    font-size: 27px;
  }
  
  .ts6__box .ts6__text2{
    font-size: 15px;
  }

  .ts6__box a.link__type1{
    width: 340px;
    max-width: 100%;
  }

  .tb__link a{
    width: 100px;
    height: 85px;
  }

  header .header__wrap .header__left a img{
    width: 130px;
  }

  .btn__menu {
    width: 85px;
    height: 85px;
  }

  .tb__link{
    right: 85px;
  }

  .resaon__flex .rf__left .rf__text2.mt__plus2 br{
    display: none;
  }

  .resaon__flex.type2 .rf__left{
    width: 100%;
    margin-bottom: 10px;
  }

  .resaon__flex.type2 .rf__right{
    width: 100%;
  }

  .resaon__flex .rf__right{
    margin-top: 20px;
  }

  .resaon__flex .rf__left .rf__text2{
    margin-bottom: 20px;
  }

  .wwd__left ul li a:after{
    right: 0!important;
  }

  /* .top__section2 .history_animation--txt{
    top: 14.5vw;
  }

  .top__section2 .pin-spacer{
    height: 145vw !important;
  } */

  .mainV .mv__text h2{
    font-size:4vw;
  }

  .mainV .mv__text h3{
    font-size: 16.5vw;
  }

  .mainV .mv__text p{
    font-size: 2.2vw;
  }

  /* .mainV .mv__text{
    padding-top: 100vw;
  } */

  .footer__contact h3:after{
    background-image: url(img/arrow-sp.png);
  }

  .footer__contact:hover h3:after{
    background-image: url(img/arrow-hover-sp.png);
  }




}





.sp2{
  display: none!important;
}

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

  .sp2{
    display: block!important;
  }

  header .header__wrap .header__left a img{
    width: 100px;
  }

  header{
    padding:20px 0;
  }

  .page__area{
    margin:120px 0 80px;
  }

  .page__area .page__title1{
    font-size: 14px;
    margin-bottom: 6px;
  }

  .page__area .page__title2{
    font-size: 44px;
  }

  .bread__area{
    margin-bottom: 40px;
  }

  .wa__categoryarea{
    padding:20px 0;
  }

  .category__title{
    font-size: 17px;
    margin-bottom: 10px;
  }

  .radio-label{
    font-size: 13px;
    margin-right: 10px;
  }

  .radio-group{
    gap: 10px!important;
  }

  .works__item{
    width: 100%;
  }

  .works__meta a{
    padding:2px 10px ;
  }

  .works__item img{
    height: 58vw;
  }

  .footer__contact h3{
    font-size: 48px;
    margin-top: 5px;
  }

  .footer__contact h3:after{
    width: 48px;
    height: 48px;
  }

  .footer__contact{
    padding:80px 0 ;
  }

  .footer__row2 p{
    font-size: 11px;
    padding-right: 70px;
    box-sizing: border-box;
  }

  footer{
    padding:60px 0 30px ;
  }


  .ns__infoarea .nsi__title{
    margin-top: 10px;
    font-size: 18px;
  }

  .news__info.works__info a{
    font-size: 11px;
    padding:2px 15px ;
  }

  .ns__infoarea{
    padding:20px ;
  }

  .works__slider img.slick-prev{
    left: 5px;
    width: 30px;
  }

  .works__slider img.slick-next{
    right: 5px;
    width: 30px;
  }

  .works__single__content{
    padding:20px ;
  }

  .works__single__content h3{
    font-size: 18px;
  }

  .works__single__content p{
    font-size: 14px;
  }

  .newsall__link{
    width: 230px;
    padding:16px 0;
    padding-left: 30px;
    font-size: 15px;
  }

  .works__other h3{
    font-size: 21px;
  }

  .works__list{
    margin-top: 40px;
  }

  .news__info p.date{
    font-size: 13px;
    position: relative;
    top: -1px;
  }

  .news__info p.category{
    margin-right: 5px;
  }

  .news__info a{
    font-size: 11px;
    padding:2px 15px;
    margin-right: 5px;
    margin-bottom: 5px;
  }

  .news__col .news__title{
    margin-top: 5px;
  }

  .news__pagination .wp-pagenavi a.nextpostslink{
    margin-left: 20px;
  }

  .news__pagination .wp-pagenavi span{
    width: 30px;
    height: 30px;
    font-size: 14px;
    line-height: 29px;
  }

  .news__pagination .wp-pagenavi a{
    width: 30px;
    height: 30px;
    font-size: 14px;
    line-height: 29px;   
  }

  .news__pagination .wp-pagenavi a.nextpostslink:before{
    top: 6px;
  }

  .news__pagination .wp-pagenavi a.previouspostslink{
    margin-right: 20px;
  }

  .news__pagination .wp-pagenavi a.previouspostslink:before{
    top: 6px;
  }

  .bread__area{
    font-size: 11px;
  }

  .news__content p{
    font-size: 14px;
    margin:14px 0;
  }

  .news__content figure{
    margin-bottom: 0;
  }

  .news__content img{
    margin:15px 0;
  }

  .news__content h2{
    font-size: 20px;
    margin:35px 0 15px;
  }

  .news__content h3{
    font-size: 18px;
  }

  .pagebg__area .page__area{
    padding-top: 120px;
  }

  .pagebg__area{
    padding-bottom: 10px;
  }

  .pageV__img{
    height: 250px;
    object-fit: cover;
  }

  .page__area2{
    padding:70px 0;
  }

  .pa__left ul li a{
    font-size: 13px;
    line-height: 1.4;
    padding:14px 0;
    padding-left: 22px;
  }

  .pa__left ul li a:before{
    width: 13px;
  }

  .pa__flex .pa__right h3{
    font-size: 28px;
    margin-top: 70px;
  }

  .pa__flex .pa__right h3 span.size__small{
    font-size: 24px;
  }

  .pa__flex .pa__right h3:before{
    width: 60px;
    height: 2px;
  }

  .stf__text h5{
    margin-bottom: 8px;
  }

  .pa__flex .pa__right .en{
    font-size: 14px;
  }

  .pa__flex .pa__right h4{
    font-size: 19px;
  }

  .pa__flex .pa__right p{
    font-size: 14px;
  }

  .stf__text{
    padding:20px ;
  }

  .pa__flex .pa__right .about__bg h4{
    font-size: 21px;
  }

  .pa__flex .pa__right .about__bg h4:before{
    width: 80px;
  }

  .about__bg{
    padding:35px 15px ;
  }

  .pa__flex .pa__right .about__bg p .deco1{
    font-size: 15px;
    margin:0 3px;
    padding:0 3px;
  }

  .pa__flex .pa__right .about__bg .box h5{
    line-height: 1.5;
    margin-bottom: 4px;
    font-size: 14px;
  }

  .pa__flex .pa__right .about__bg .box{
    padding:14px 5px;
    margin-top: 25px;
  }

  .feature__flex .feature__col{
    width: 90px;
    height: 90px;
    margin-right: 5px;
    padding-top: 22px;
  }

  .feature__flex .feature__col .ffc__1{
    font-size:17px;
    line-height: 1.5;
  }

  .feature__flex .feature__col .ffc__2{
    font-size: 10px;
  }

  .pa__flex .pa__right .feature__flex .ffc__3{
    margin-left: 5px;
    margin-top: 5px;
    font-size: 17px;
  }

  .pa__flex .pa__right .feature_area h4 span{
    font-size: 30px;
    
  }

  .pa__flex .pa__right .feature_area h4{
    font-size: 15px;
    padding:8px 20px;
  }

  .pa__flex .pa__right .feature_area .feature__textarea .fet__1{
    font-size: 18px;
    line-height: 1.4;
  }

  .pa__flex .pa__right .feature_area .feature__textarea{
    padding:25px 15px;
  }

  .pa__flex .pa__right .feature_area .feature__textarea .fet__2{
    font-size: 14px;
  }

  .pa__flex .pa__right h4.size2{
    font-size: 20px;
  }

  .wrap{
    padding:0 15px;
  }

  header .header__wrap{
    padding-left: 15px;
  }

  .pa__left ul li a{
    letter-spacing: 0;
  }

  .footer__right ul{
    margin-left: -15px;
    width: calc(100% + 30px);
  }

  .pa__flex .pa__right p.message{
    margin-top: 30px;
  }

  .message__flex{
    margin-top: 30px;
  }

  .message__flex .mf__left{
    width: 130px;
  }

  .message__flex .mf__right p.mfr__2{
    font-size: 16px;
  }

  .message__flex .mf__right{
    padding: 0;
    padding-left: 15px;
    width: calc(100% - 130px);
    margin-top: 15px;
  }

  .message__flex .mf__right p.mfr__1{
    font-size: 13px;
  }

  .info__img{
    margin-top: 30px;
  }

  .info__table .it__left{
    width: 95px;
  }

  .info__table .it__right{
    width: calc(100% - 95px);
    padding:23px 15px;
  }

  .info__table .it__right p a img{
    width: 24px;
  }

  .pa__flex .pa__right p.phy__1{
    margin-top: 40px;
  }

  .pa__right ol li{
    font-size: 15px;
    margin-bottom: 10px;
  }

  .pa__right ol li:before{
    font-size: 14px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: 3px;
  }

  .history__row .hr__left{
    width: 110px;
  }

  .history__row .hr__right{
    width: calc(100% - 110px);
  }

  .history__row .hr__left p{
    font-size: 35px!important;
  }

  .history__row .hr__left:before{
    left: 33px;
  }

  .history__row .hr__right .month{
    font-size: 15px;
  }

  .history__row .hr__right .hrr__text{
    font-size: 13px;
    padding-left: 60px;
  }

  .history__row{
    margin-top: 40px;
  }

  .history__row .hr__left.last p{
    padding-left: 2px;
  }

  .pa__flex .pa__right .bg__area p{
    line-height: 1.5;
    padding:8px 10px;
    margin-bottom: 7px;
  }

  .pa__flex .pa__right .bg__area.type2 p span{
    font-size: 16px;
    width: 50px;
    padding-right: 5px;
  }

  .block__bg{
    background-image: url(img/blocks/recom-bg-sp.png);
    padding:60px 0 50px;
    margin-top: -1px;
  }

  .btn__black{
    max-width: 100%;
    font-size: 12px;
    margin-top: 20px;
    padding:14px 0;
  }

  .pa__flex .pa__right p.mt__plus{
    margin-top: 30px;
  }

  .pa__flex .pa__right p.bg__black.mt__plus{
    margin-top: 40px;
  }

  .block__bg .bb__text1{
    font-size: 15px;
    line-height: 1.7;
  }

  .resaon__flex .rf__left .rf__text1{
    font-size: 36px;
  }

  .resaon__flex .rf__left .rf__text2{
    font-size: 18px;
    margin-bottom: 20px;
  }

  .resaon__flex{
    padding:30px 20px;
  }

  .resaon__flex.type2{
    padding-bottom: 30px;
  }

  .resaon__flex.type2 .rf__right{
    margin-top: 10px;
  }

  .pa__flex .pa__right p.bg__black{
    padding:10px 15px;
    margin:15px 0 10px;
  }

  .contact__text1{
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact__tel p.ct__1{
    font-size: 17px;
  }
  
  .contact__tel p.ct__2{
    font-size: 13px;
  }

  .contact__text2 {
    font-size: 20px;
    margin:60px 0 10px;
  }

  .cr__right.text input , .cr__right textarea{
    font-size: 14px;
    padding:8px 10px;
  }

  .cr__right textarea{
    height: 200px;
  }

  .cr__right.text .flex input{
    width: 130px;
    margin-right: 10px;
  }

  .cr__right.text .flex p{
    font-size: 14px;
    line-height: 1.4;
  }

  .wpcf7-list-item{
    margin-left: 0!important;
  }

  .check p , .form__area p{
    font-size: 15px;
  }

  .check{
    margin:40px 0 60px;
  }

  .submit p input{
    padding:20px 0;
  }

  .form__area{
    margin-top: 40px;
  }

  .page__area .page__title2.size2{
    font-size: 40px;
  }

  .privacy__area h3{
    font-size: 18px;
    padding:5px 15px;
  }

  .privacy__area p{
    font-size: 14px;
  }

  .mainV, .mainV .mv__slick img{
    height: 180vw;
  }

  .mainV .mv__text p br{
    display: block;
  }

  .mainV .mv__text h3{
    font-size: 62px;
  }

  .mainV .mv__text h2{
    font-size: 17px;
  }

  .mainV .mv__text p{
    font-size: 12px;
    line-height: 1.5;
  }

  .mainV .mv__text{
    /* padding-top: 130vw; */
  }

  .wwd__area{
    /* margin-top: -200px; */
  }

  .wwd__area h3{
    margin-bottom: 15px;
  }

  .wwd__area h2{
    font-size: 28px;
    margin-bottom: 20px;
  }

  .wwd__left p{
    font-size: 14px;
  }

  .ts3__row{
    padding:25px 0;
  }

  .top__section4 h2{
    font-size: 16px;
  }

  .top__section4 h2 span{
    font-size: 18px;
    display: inline-block;
    margin-top: 3px;
  }

  .top__section4 img{
    max-width: 90%;
    margin:20px auto 50px;
  }

  .top__section4{
    padding-top: 45px;
  }

  .top__section5{
    padding:70px 0;
  }

  .title__size1{
    font-size: 15px;
  }

  .title__size2{
    font-size: 40px;
  }

  a.link__type1{
    width: 160px;
  }

  .ts5__left{
    width: 55%;
  }

  .ts5__right{
    width: 45%;
  }

  a.link__type1{
    width: 140px;
    padding:7px 22px;
  }

  a.link__type1:before{
    width: 11px;
    height: 13px;
  }

  .news__col{
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .top__news__right .news__col:first-child , .archive .news__col:first-child{
    padding-top: 15px;
  }

  .top__section6{
    padding:0px 0 50vw;
    /* margin-top: 10px; */
  }

  .ts6__box h2{
    font-size: 15px;
  }

  .ts6__box h3{
    font-size: 50px;
  }

  .ts6__box .ts6__text1{
    font-size: 23px;
  }

  .ts6__box .ts6__text2{
    font-size: 14px;
  }

  .ts6__box a.link__type1{
    width: 260px;
  }

  .top__section2{
    padding-bottom: 70px;
  }

  .btn__menu{
    width: 68px;
    height: 68px;
  }

  header{
    height: 68px;
    box-sizing: border-box;
  }

  .home header .header__wrap .header__left a:before{
    height: 3px;
    bottom: -23px;
  }

  .tb__link{
    right: 68px;
    top: -20px;
  }

  .tb__link a{
    width: 78px;
    height: 67px;
    font-size: 13px;
  }

  .top__section2 .pin-spacer{
    margin-bottom: -100px;
  }

  .inimg__flex{
    display: block;
    margin-bottom: 10px;
  }

  .inimg__flex img{
    width: 100%;
    margin-bottom: 10px;
  }

  .pa__flex .pa__right .resaon__flex .rf__text3{
    margin-top: -3px;
  }
  
  .wa__slider2 .slick-prev{
    position: absolute;
    left: 0;
    top: calc(59vw / 2 - 20px);
    width: 40px;
    z-index: 10;
  }

  .wa__slider2 .slick-next{
    position: absolute;
    right: 0;
    top: calc(59vw / 2 - 20px);
    width: 40px;
    z-index: 10;
  }

  .works__area{
    padding:0 15px;
  }

  #nav{
    padding-top: 110px;
    overflow-y: auto;
  }

  #nav ul li{
    padding:0 15px;
  }

  #nav ul li a{
    font-size: 15px;
  }

  #nav div.privacy{
    padding:0 15px;
  }

  #nav div.privacy a{
    font-size: 12px;
  }

  #nav ul li a:after{
    font-size: 25px;
  }

  #nav ul li a.type2:after{
    width: 20px;
    height: 18px;
    right: 4px;
  }

  
  .menu_button .menu_icon01 span{
    width: 40px;
    margin-bottom: 5px;
  }

  .menu_button.open .menu_icon01 .bar3{
    transform: rotate(-110deg) translateX(6px) translateY(-1px);
  }

  .menu_button.open .menu_icon01 .bar1{
    transform: rotate(20deg) translateY(9px);
  }

  .menu_button.open .menu_icon01{
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .menu_button.open .menu_icon01{
    left: 53%;
    top: 46%;
  }

  .recruit__visual h2{
    font-size: 5vw;
  }

  .recruit__message p{
    font-size: 14px;
    line-height: 1.9;
  }

  .recruit__message{
    padding:60px 0 45vw;
  }

  .recruit__infoarea{
    padding:70px 0;
  }

  .recruit__infoarea h3{
    font-size: 24px;
  }

  .recruit__infoarea h3:before{
    width: 80px;
    height: 2px;
  }

  .recruit__list .rl__col .rl__col__inner h4{
    font-size: 18px;
  }

  .recruit__list .rl__col .rl__col__inner p{
    font-size: 14px;
  }

  .recruit__infoarea h3{
    margin-top: 70px;
    margin-bottom: 30px;
  }

  .qa__item .qa__question h4{
    font-size: 15px;
  }

  .qa__area.type2 .qa__item .qa__question h4{
    padding:18px 35px;
    padding-left: 20px;
  }

  .qa__question:after , .qa__question:before{
    width: 15px;
    height: 2px;
  }

  .type2 .qa__item .qa__answer{
    padding:30px 20px;
  }

  .recruit__table .rt__right p{
    line-height: 1.65;
  }

  .qa__item .qa__question h4 span{
    left: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    top: 17px;
  }

  .qa__item .qa__question h4{
    padding:18px 40px;
    padding-left: 52px;
  }

  .recruit__infoarea p{
    font-size: 14px;
  }

  .qa__item .qa__answer{
    padding:20px ;
  }

  .recruit__list .rl__col .rl__col__inner{
    padding:20px 15px ;
  }

  .recruit__list .rl__col .rl__col__inner p{
    line-height: 1.65;
  }

  .recruit__list .rl__col{
    width: 49%;
    margin-bottom: 15px;
  }

  .recruit__table .rt__left p{
    font-size: 13px;
  }

  .recruit__table .rt__right p{
    font-size: 13px;
  }

  .recruit__table .rt__right{
    padding:15px 15px;
  }

  .recruit__table .rt__left{
    width: 90px;
  }

  .recruit__table .rt__right{
    width: calc(100% - 90px);
  }

  .cr__left p span.small{
    bottom: -20px;
  }

  .cr__right.radio .wpcf7-form-control label{
    font-size: 14px;
    margin-right: 10px;
  }

  .cr__right.text .flex p{
    font-size: 12px;
  }

  .contact__row{
    padding:20px 0;
  }

  .check p, .form__area p{
    font-size: 14px;
  }

  .cr__left p span.must{
    font-size: 13px;
    width: 58px;
    height: 22px;
    line-height: 21px;
    
  }

  .news__pagination .wp-pagenavi a.nextpostslink{
    width: 14px;
    height: 18px;
  }

  .news__pagination .wp-pagenavi a.nextpostslink:before{
    top: 7px;
  }

  .news__pagination .wp-pagenavi a.previouspostslink{
    width: 14px;
    height: 18px;
  }

  .news__pagination .wp-pagenavi a.previouspostslink:before{
    top: 7px;
  }

  .works__area .radio-label{
    font-size: 14px;
    margin-right: 15px;
  }

  .works__slider .slick-slide.thumbnail-img{
    padding:0 2px;
  }

  .works__slider .thumbnail-1{
    width: calc(100% + 4px);
    left: -2px;
  }

  .history__row .hr__left.last p{
    font-size: 26px!important;
    padding-left: 11px!important;
  }

  .radio-label input[type="radio"]{
    margin-top: 1px;
  }

  #nav .btn__menu a img{
    width: 44px;
  }

  .info__table .it__right p span{
    width: 125px;
  }

  .footer__left p{
    font-size: 12px;
  }

  .footer__left p span a{
    width: 30px;
    height: 30px;
    right: -50px;
    top: 24%;
  }

  .footer__left{
    margin-bottom: 35px;
  }

  .info__table .it__right p span.w2.ls{
    letter-spacing: 0.071em;
  }

  .top__section2 .pin-spacer{
    height: 220vw !important;
  }

  .mainV .mv__text h2{
    font-size: 4.9vw;
  }

  .mainV .mv__text h3{
    font-size: 17.3vw;
  }

  .link__postion{
    top:-70px
  }

  .footer__right ul div li{
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer__row2 p.copy{
    margin-top: 55px;
  }

  .history__row .hr__left:before{
    height: 100%;
  }

  .mainV{
    overflow-x: hidden;
  }

  .info__table .it__right p a img.sns-icon{
    width: 23px;
    margin-right: 8px;
  }

  .info__table .it__right p a img.target-icon{
    width: 12px;
  }





}








