@charset "UTF-8";

*{
  box-sizing: border-box;
}
html, body{
  font-size: 62.5%;
  color: #000000;
  font-family: "Noto Sans JP",  "メイリオ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  width: 100%;
}
html{
  position: relative;
}
body{
  margin-bottom: 355px;
  min-width: 320px;
}
p, td, th, li{
  line-height: 1.6;
}
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="button"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
a:link,a:visited,a:hover,a:active{
  color: #000000;
}

.container{
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1120px;
}
.block-section{
  padding: 60px 0;
}
.btn__default{
  padding: 12px 20px;
  border-radius: 30px;
  background: #000000;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  /* box-shadow: 0 3px 6px rgba(0,0,0,0.16); */
  transition: .4s;
}
.btn__default:hover{
  background:#000000;
  color: #fff;
  transition: .4s;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.1875em);
}
.border__btn{
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  border: solid 1px #000000;
  border-radius: 30px;
  color: #000000;
  background-color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}
.border__btn a{
  color: #000000;
}
/* .border__btn::after{
  position: absolute;
  content: url(../image/icon-right-arrow-blue.png);
  right: 20px;
  top: 50%;
  -webkit-transform : translateY(-50%);
  transform : translateY(-50%);
} */
.border__btn:hover{
  background: #000000;
  color: #fff;
  transition: .4s;
}
/* .border__btn:hover::after{
  content: url(../image/icon-right-arrow-white.png);
} */
@media only screen and (min-width: 768px) {
  body{
    margin-bottom: 306px;
  }
  .container{
    padding: 0 20px;
  }
  .border__btn{
    padding: 16px 30px;
    border-radius: 30px;
    font-size: 1.6rem;
  }
}
/* header */
header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 60px;
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  transition: .5s;
}
.header__color{
  background: #000000;
  /* box-shadow: 0 3px 6px rgba(0,0,0,0.16); */
}
.header__logo img{
  height: 22px;
  margin-top: 5px;
}
.header__menu-btn{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 18px;
  height: 18px;
  background: url(../image/icon-header-menu-white.png) no-repeat center center;
  background-size: contain;
  padding: 10px 0;
}
/* .header__menu-btn--color{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 18px;
  height: 18px;
  background: url(../image/icon-header-menu.png) no-repeat center center;
  background-size: contain;
  padding: 10px 0;
} */
.header__menu-btn-back{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 18px;
  height: 18px;
  background: url(../image/icon-header-menu-back.png) no-repeat center center;
  background-size: contain;
  padding: 10px 0;
}
.header__nav__list, .nav__open{
  display: none;
}
.nav__open{
  font-family: 'Open Sans', sans-serif;
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 13px 20px 20px 20px;
  height: 100%;
}
.nav__open__language{
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 30px;
}
.nav__open__language img{
  margin-right: 15px;
  width: 24px;
  height: 24px;
}
.nav__open__language a{
  font-size: 1.8rem;
  color: #333333;
}
.nav__open__language--slash{
  margin: 0 10px;
}
.nav__open__list{
  font-size: 3rem;
  font-weight: bold;
  /* height: calc(100% - 160px); */
  margin-top: 50px;
  font-family: "Roboto",serif;
}
.nav__open__list a{
  color: #000000;
}
.nav__open__item{
  margin-bottom: 20px;
}
.nav__open__link{
  align-items: center;
  /* position: absolute; */
  text-align: right;
  font-weight: bold;
  /* bottom: 30px;
  right: 30px; */
}
.nav__open__link__img{
  margin-left: 20px;
  width: 40px;
  height: 40px;
}
.nav__open__subitem, .nav__open__subitem a, .nav__open__subitem--small a{
  color: #666666;
}
.nav__open__subitem{
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  header{
    height: 100px;
    padding: 0 30px;
  }
  .header__logo img{
    height: 30px;
  }
  .header__menu-btn{
    display: none;
  }
  .header__menu-btn--color{
    display: none;
  }
  .header__nav__list{
    display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .header__nav__language{
    display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
  }
  .header__nav__item, .header__nav__item--color{
    margin-left: 20px;
  }
  .header__nav__item--active{
    padding-bottom: 8px;
    border-bottom: solid 2px #fff;
  }
  .header__nav__language--slash{
    margin: 0 10px;
    color: #fff;
  }
  .header__nav__language--color-slash{
    margin: 0 10px;
    color: #333;
  }
  .header__nav__language img{
    margin-right: 20px;
  }
  .header__nav__item a{
    color: #fff;
  }
}
@media only screen and (min-width: 992px) {
  header{
    height: 100px;
    padding: 0 60px;
  }
  .header__nav__item, .header__nav__item--color{
    margin-left: 40px;
  }
}
/* /header */
/* top */
.top{
  position: relative;
  height: 100vh;
}
.top:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(7, 54, 131, 0.3), rgba(0, 0, 0, 0.5)),url(../image/img-top.png) no-repeat center center;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(7, 54, 131, 0.3), rgba(0, 0, 0, 0.5)),url(../image/img-top.png) no-repeat center center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(7, 54, 131, 0.3), rgba(0, 0, 0, 0.5)),url(../image/img-top.png) no-repeat center center;
  background-size: cover;
}
.fixed-sub-nav{
  display: none;
}
.header__title{
  position: absolute;
  left: 50%;
  bottom: 50%;
  color: #fff;
  font-weight: bold;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,50%);
  width: 100%;
}
.header__title__logo{
  margin-top: 10px;
  display: flex;
  height: 26px;
}
.header__title__logo img{
  height: 26px;
  border: 1px solid #fff;
  padding: 3px 3px 0 3px;
}
.header__title__catchphrase{
  width: 80%;
  margin: 0 auto;
}
.header__title__catch1{
  font-family: "Roboto", serif;
  font-size: 5.8vw;
  line-height: 1.1;
}
.header__title__catch2{
  font-size: 1.2rem;
  color: #000000;
  line-height: 26px;
  padding: 0 8px;
  background-color: #fff;
}
.header__title__catch1--normal{
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  .header__title{
    width: 80%;
  }
  .header__title__logo{
    height: 33px;
  }
  .header__title__logo img{
    height: 33px;
  }
  .header__title__catchphrase{
    width: 100%;
    margin: 0;
  }
  .header__title__catch1{
    font-size: 5.2rem;
  }
  .header__title__catch2{
    font-size: 1.4rem;
    line-height: 33px;
  }
}
@media only screen and (min-width: 1200px) {
  .fixed-sub-nav{
    z-index: 10;
    position: fixed;
    display: inline;
    right: 40px;
    top : 50%;
    -webkit-transform : translateY(-50%);
    transform : translateY(-50%);
    text-align: right;
    color: #fff;
    font-weight: bold;
  }
  .fixed-sub-nav__border{
    position: absolute;
    border-right: solid 1px #fff;
    height: 225px;
    right: 7px;
    top: 90px;
  }
  .fixed-sub-nav__border--blue{
    border-right: solid 1px #006EBA;
  }
  .fixed-sub-nav__item1, .fixed-sub-nav__item2{
    position: relative;
    padding-right: 30px;
  }
  .fixed-sub-nav__item1{
    font-size: 1.6rem;
    margin: 25px 0;
  }
  .fixed-sub-nav__item2{
    font-size: 1.4rem;
    margin: 15px 0;
  }
  .fixed-sub-nav__circle{
    position: absolute;
    content: "";
    background: #fff;
    border-radius: 50%;
    transition: .3s;
    -webkit-transition: .3s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  }
  .fixed-sub-nav__item1 .fixed-sub-nav__circle{
    width: 15px;
    height: 15px;
    top: 5px;
    right: 0;
  }
  .fixed-sub-nav__item2 .fixed-sub-nav__circle{
    width: 9px;
    height: 9px;
    top: 6px;
    right: 3px;
  }
  .fixed-sub-nav__item1 .fixed-sub-nav__circle:hover{
    transform: scale(1.5) !important;
  }
  .fixed-sub-nav__item2 .fixed-sub-nav__circle:hover{
    transform: scale(2) !important;
  }
  .fixed-sub-nav__circle--blue{
    background: #006EBA;
  }
  .fixed-sub-nav__text{
    color: #fff;
    height: 22px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.16);
  }
  .fixed-sub-nav__text--blue{
    color: #006EBA;
  }
  .fixed-sub-nav__text:hover, .fixed-sub-nav__text--blue:hover{
    transition: .3s;
    -webkit-transition: .3s;
  }
}
/* /top */
/* about-us */
.section__title{
  font-family: 'Roboto', sans-serif;
  font-size: 5rem;
  text-align: center;
  margin-bottom: 25px;
}
.section__title--white{
  font-family: 'Roboto', sans-serif;
  color: #fff;
}
.section__title--subname{
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 16px;
}
.about-us__bg{
  background-color: #EAEAEA;
}
.about-us__box__disoaych{
  margin-bottom: 20px;
  font-weight: bold;
}
.about-us__box__operation p{
  font-size: 1.6rem;
  line-height: 2;
}
.about-us__box{
  color: #000000;
}
.about-us__box__name{
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.about-us__box__text{
  font-size: 2.4rem;
}
.br__lead {
  display: none;
}
@media only screen and (min-width: 768px) {
  .br__lead {
    display: block;
  }
}
.section__title__text{
  font-weight: bold;
  font-size: 1.3rem;
}
@media only screen and (min-width: 768px) {
  .block-section{
    padding: 80px 0;
  }
  .section__title{
    font-size: 8rem;
    margin-bottom: 40px;
  }
  .section__title--white{
    color: #fff;
  }
  .section__title__text{
    font-size: 1.8rem;
  }
  .about-us__content{
    display: flex;
    margin: 70px 0;
  }
  .about-us__box__disoaych{
    margin-bottom: 0;
    margin-right: 77px;
    width: 50%;
  }
  .about-us__box__operation{
    width: 50%;
    font-size: 1.8rem;
  }
  .about-us__box{
    color: #000000;
  }
  .about-us__box__name{
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .about-us__box__text{
    font-size: 3.0rem;
  }
}
/* /about-us */
/* news */
.news__bg{
  background: url(../image/img-news.png) no-repeat center;
  background-size: cover;
}
.news__content{
  width: 100%;
  font-size: 1.5rem;
}
.news__item{
  margin-bottom: 25px;
}
.news__date{
  margin-bottom: 15px;
  font-weight: bold;
}
.news__item p{
  display: inline-block;
}
/* .news__item a{
  margin-left: 15px;
} */
.news__btn{
  width: 70%;
  margin-left: auto;
  margin-bottom: 20px;
}
.news__link{
  display: block;
}
.news__media-link{
  display: flex;
}
.news__media-link__text{
  display: none;
}
.news__media{
  display: flex;
  align-items: center;
}
.news__media p{
  margin-left: 10px;
}
@media only screen and (min-width: 768px) {
  .news__item{
    margin-bottom: 40px;
    display: flex;
  }
  .news__date{
    margin-bottom: 0;
    margin-right: 100px;
    width: 84px;
  }
  .news__btn{
    display: block;
    width: 260px;
    margin-left: 20px;
  }
  .news__media-link__text{
    padding: 8px 0;
    display: inline-block;
  }
  .news__link{
    display: flex;
    justify-content: flex-end;
  }
}
/* /news */
.block-section--none{
  font-weight: bold;
}
.p-s-s__content{
  padding: 60px 0;
  background-color: #F8F8F8;
}
.p-s-s__bg{
  background: #fff;
}
.box3-img{
  width: 100%;
  margin-bottom: 15px;
}
.box__img{
  width: 100%;
  height: 0;
  /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
  padding-top: 66.66%;
  margin-bottom: 15px;
}
.p__box__img1{
  background: url(../image/img-category.jpg) no-repeat center center;
  background-size: cover;
}
.p__box__img2{
  background: url(../image/img-category-1.jpg) no-repeat center center;
  background-size: cover;
}
.p__box__img3 {
  background: url(../image/img-category3.jpg) no-repeat center center;
  background-size: cover;
}
.c-s__box__img1{
  background: url(../image/img-heroSplit-rws.png) no-repeat left center;
  background-size: cover;
}
.c-s__box__img2{
  background: url(../image/img-kintone.png) no-repeat left center;
  background-size: cover;
}
.c-s__box__img3{
  background: url(../image/img-consulting.png) no-repeat left center;
  background-size: cover;
}
.c-s__box__img4{
  background: url(../image/img-rakuri.png) no-repeat left center;
  background-size: cover;
}
.c-s__box__img5{
  background: url(../image/img-applican.png) no-repeat center center;
  background-size: cover;
}
.c-s__box__img6{
  background: url(../image/img_signage.jpg) no-repeat center center;
  background-size: cover;
}
.c-s__box__img7{
  background: url(../image/img-infoplug.jpg) no-repeat left center;
  background-size: cover;
}
.c-s__box__img8{
  background: url(../image/img-visioneye.png) no-repeat center center;
  background-size: cover;
}
.box__name{
  font-family: 'Roboto', sans-serif;
  font-size: 2.6rem;
  margin-bottom: 6px;
}
.box__subname{
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.box__text{
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: normal;
}
.btn__coming-soon{
  padding: 12px 20px;
  border-radius: 30px;
  background: #dddddd;
  font-size: 1.2rem;
  width: 62%;
  font-weight: bold;
  color: #fff;
}
.btn__coming-soon:link,.btn__coming-soon:visited,.btn__coming-soon:hover,.btn__coming-soon:active{
  color: #fff;
}
.box__btn{
  position: relative;
  display: inline-block;
  width: 62%;
  margin-bottom: 50px;
}
.box__btn:link,.box__btn:visited,.box__btn:hover,.box__btn:active{
  color: #fff;
}
.box__btn a{
  color: #000000;
}
/* .box__btn::after{
  position: absolute;
  content: url(../image/icon-right-arrow-white.png);
  right: 20px;
  top: 50%;
  -webkit-transform : translateY(-50%);
  transform : translateY(-50%);
} */
.box__btn--last{
  margin-bottom: 0;
}
.box__btn--long{
  width: 80%;
}
.c__box, .s-i__box{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-flow: wrap;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
  justify-content: space-between;
}
.box__icon{
  width: 47%;
  text-align: center;
}
.box__icon img{
  width: 63.5%;
  margin-bottom: 20px;
}
.box__icon p{
  font-size: 1.4rem;
  margin-bottom: 25px;
}
.box2__button-none .box__text{
  /* height: 268px; */
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .p-s-s__content{
    padding: 100px 0;
  }
  .p__box--reverse, .c-s__box, .c-s__box--reverse{
    margin-bottom: 120px;
  }
  .p__box, .c-s__box{
    display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
  }
  .p__box--reverse, .c-s__box--reverse{
    display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
    flex-direction: row;
  }
  .box___last{
    margin-bottom: 0;
  }
  .box__img{
    padding-top: 0;
    margin-bottom: 0;
  }
  .p__box__img1, .p__box__img2, .p__box__img3, .c-s__box__img1, .c-s__box__img2, .c-s__box__img3, .c-s__box__img4, .c-s__box__img5, .c-s__box__img6, .c-s__box__img7, .c-s__box__img8{
    width: 49%;
    height: auto;
  }
  .box1{
    width: 51%;
    min-height: 352px;
    padding-right: 90px;
  }
  .box2__button-none .box__text{
    /* height: 268px; */
    margin-bottom: 50px;
  }
  .box2{
    width: 51%;
    min-height: 352px;
    padding-left: 90px;
  }
  .box__name{
    font-size: 4rem;
    margin-bottom: 10px;
  }
  .box__subname{
    font-size: 1.6rem;
    margin-bottom: 35px;
  }
  .box__text{
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .btn__coming-soon{
    padding: 16px 30px;
    color: #fff;
    width: 260px;
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .box__btn{
    padding: 16px 30px;
    width: 260px;
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .box__btn--long{
    width: 80%;
  }
  .c__box, .s-i__box{
    flex-flow: nowrap;
  }
  .box__icon{
    width: 20%;
    text-align: center;
  }
  .box__icon img{
    width: 60%;
    margin-bottom: 20px;
  }
  .box__icon p{
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}
/* contact career */
.c-c__bg{
  background-color: #171717;
  background-size: cover;
  border-bottom: 1px #fff solid;
}

.section__title--small{
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}
.c-c__btn-list{
  width: 100%;
  justify-content: center;
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
}
.c-c__btn{
  width: 276px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .c-c__bg{
    padding: 100px 0;
  }
  .section__title--small{
    font-size: 4rem;
    margin-bottom: 60px;
  }
  .c-c__btn{
    margin-bottom: 0;
    margin-right: 10px;
  }
}
footer{
  position: absolute;
  bottom: 0;
  height: 355px;
  width: 100%;
  font-weight: bold;
}
.footer__content1{
  padding: 30px 0;
  background: #F5F7F9;
}
.footer__content2{
  padding: 50px 0;
}
.footer__content2__box{
  display: block;
  margin-bottom: 30px;
}
.footer__member{
  display: flex;
  align-items: center;
}
.footer__member--w3c{
  margin-bottom: 20px;
}
.footer__member img{
  width: 40px;
  height: 40px;
}
.footer__member__txt{
  width: 100%;
  margin-left: 20px;
  font-size: 1.2rem;
}
.footer__content2{
  background: #000000;
  padding: 80px 0;
}
.footer__logo img{
  margin-bottom: 10px;
}
.footer__access p{
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}
.footer__text{
  display: block;
}
.footer__copyright{
  display: block;
  font-size: 1.3rem;
  color: #000000;
  padding: 20px 0;
  background-color: #CCCCCC;
}
.footer__privacy-policy{
  display: block;
  font-size: 1.5rem;
}
.footer__privacy-policy:link,.footer__privacy-policy:visited,.footer__privacy-policy:hover,.footer__privacy-policy:active{
  color: #fff;
}
.footer__p-mark{
  margin-left: auto;
  text-align: right;
}
@media only screen and (min-width: 768px) {
  footer{
    position: absolute;
    bottom: 0;
    height: 306px;
    width: 100%;
  }
  .footer__content2--flex{
    display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
    align-items: center;
  }
  .footer__content1__box{
    display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
  }
  .footer__content2__box{
    display: block;
  }
  .footer__member img{
    width: 50px;
    height: 50px;
  }
  .footer__member__txt{
    width: 210px;
  }
  .footer__member--w3c{
    margin-bottom: 0;
    margin-right: 50px;
  }
  .footer__content2__box{
    margin-bottom: 0;
    width: 45%;
  }
  .footer__access__img1{
    width: 40px;
    margin-left: 0;
  }
  .footer__access__img2{
    width: 40px;
    margin-left: 20px;
  }
  .footer__text{
    margin-left: auto;
    text-align: right;
  }
}






/* about */
.about, .corporate{
  position: relative;
  background-color: #000000;
  width: 100%;
  height: 400px;
}
.top-section{
  padding-top: 50px;
  /* display:-webkit-box;
  display:-ms-flexbox;
  display: flex; */
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 50%;
  color: #fff;
  font-weight: bold;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,50%);
  width: 100%;
}

.top-section__title{
  font-family: 'Roboto', sans-serif;
  font-size: 5rem;
  margin: auto;
  color: #fff;
}
.top-section__title--subtxt{
  font-size: 1.4rem;
  font-weight: normal;
}
.top-section__title--subname{
  font-size: 1.6rem;
  font-weight: bold;
  margin: 15px 0 5px;
}
.company-profile{
  width: 100%;
}
.section-sub{
  background-color: #F5F5F5;
}
.section-sub__title{
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  padding: 50px 0;
  color: #000000;
}
.section-sub__title-sub{
  font-size: 1.6rem;
  margin-top: 15px;
  display: block;
  color: #000000;
}
.officer__list{
  margin-bottom: 80px;
}
.company-profile__list dt, .officer__list dt, .review__list dt{
  margin-bottom: 15px;
  font-weight: bold;
  /* color: #666; */
  font-size: 1.6rem;
}
.company-profile__list span, .officer__list span{
  margin-right: 10px;
}
.company-profile__list dd, .officer__list dd, .review__list dd{
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 1.6rem;
  border-bottom: 1px solid #DDDDDD;
}
.access__bg{
  padding: 0;
}
.access__list1{
  margin-bottom: 10px;
}
.access__list dt{
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
  font-size: 1.6rem;
}
.access__list dd{
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 1.4rem;
  padding-left: 1.5rem;
}
.access__list--clear p{
  margin-bottom: 10px;
}
#mapDiv{
  filter: grayscale(100%);
}
.access__map{
  width: 100%;
  height: 450px;
}
.access__way{
  background: #004969;
  font-size: 1.4rem;
  padding-top: 30px;
  color: #fff;
}
.officer__bg{
  background: #F3F6F8;
}
.officer__title{
  margin-bottom: 30px;
  font-size: 1.8rem;
}
.officer__title span{
  margin-right: 15px;
}
.company-profile__vision{
  width: 100%;
  margin-top: 20px;
}
.member{
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  /* flex-flow: column; */
  flex-wrap: wrap;
  margin: calc(-40px /2);
}
.member__box{
  width: calc(100% / 1 - 40px);
  margin: calc(40px / 2);
  background-color: #fff;
}
.member__box img{
  width: 100%;
}
.member__box img::before{
  content: "";
  display: block;
}
.member__item{
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.member__content{
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  margin-top: 20px;
}
.member__content--post{
  font-size: 1.4rem;
}
.member__content--name{
  font-size: 2.6rem;
  font-weight: bold;
  margin: 8px 0 16px;
}
.member__content--txt{
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .about, .corporate{
    padding-top: 100px;
    height: 400px;
    background-position: center 0;
  }
  .top-section__title{
    font-size: 8rem;
  }
  .section-sub__title{
    font-size: 6rem;
  }
  .company-profile__list, .officer__list, .access__list, .review__list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .company-profile__list dt, .officer__list dt, .review__list dt{
    width: 30%;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-left: 0;
    margin-bottom: 0;
    font-weight: bold;
    /* color: #666; */
    border-bottom: 1px solid #DDDDDD;
  }
  .company-profile__list dd, .officer__list dd, .review__list dd{
    width: 70%;
    margin-bottom: 0;
    padding-top: 30px;
    /* font-size: 1.4rem; */
  }
  .access__list dt{
    width: 10%;
    border-bottom: none;
  }
  .access__list dd{
    width: 90%;
  }
  .company-profile__vision{
    display: block;
    margin: 40px auto 0;
    max-width: 580px;
  }
  .member{
    margin: calc(-80px / 2);
  }
  .member__box{
    width: calc(100% / 2  - 80px);
    margin: calc(80px / 2);
  }
  .member__content{
    font-size: 1.4rem;
  }
  .member__content--post{
    font-size: 1.4rem;
  }
}


/* corporate-consulting */
.officer__list{
  margin-bottom: 80px;
}
.company-profile__list dt, .officer__list dt, .review__list dt{
  margin-bottom: 15px;
  font-weight: bold;
  /* color: #666; */
  font-size: 1.6rem;
}
.company-profile__list span, .officer__list span{
  margin-right: 10px;
}
.company-profile__list dd, .officer__list dd, .review__list dd{
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 1.6rem;
  border-bottom: 1px solid #DDDDDD;
}
.service-s{
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  /* flex-flow: column; */
  flex-wrap: wrap;
  margin: calc(-15px /2);
}
.service-s__box{
  width: calc(100% / 1 - 15px);
  margin: calc(15px / 2);
  background-color: #fff;
}
.service-s__icon{
  width: 50px;
  height: 50px;
}
.service-s__box img{
  width: 100%;
}
.service-s__box img::before{
  content: "";
  display: block;
}
.service-s__item{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #EBEBEB;
  padding: 32px;
}

.service-s__content{
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  margin-top: 20px;
}
.service-s__content--name{
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 2.4rem;
}
.service-s__content--subname{
  font-size: 1.4rem;
  font-weight: bold;
  margin: 12px 0 16px;
}
.service-s__content--txt{
  font-size: 1.3rem;
  line-height: 2;
}
#service-case3 {
  padding-top: 100px;
}
.service-c{
  margin-bottom: 150px;
}
.service-c__titlebox{
  margin-bottom: 40px;
}
.service-c__title{
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 15px;
}
.service-c__subtitle{
  font-size: 1.6rem;
}
.service-c__img{
  width: 100%;
  margin-bottom: 40px;
}
.service-organization__img {
  width: 100%;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
 .service-organization__img {
   width: 50%;
   margin-bottom: 40px;
 }
}
.service-c1{
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  /* flex-flow: column; */
  flex-wrap: wrap;
  margin: calc(-8px /2);
}
.service-c1__box{
  width: calc(100% / 1 - 8px);
  margin: calc(8px / 2);
  background-color: #fff;
}
.service-c1__item{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #F5F5F5;
  padding: 32px;
  flex: 1 1 auto;
}
.service-c1__item--name{
  font-weight: bold;
  font-size: 2rem;
}
.service-c1__item--txt{
  font-size: 1.4rem;
  /* margin-top: 17px; */
}
.service-c4__box:last-child{
  margin-top: 32px;
}
.service-c4__item--circle{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #000000;
}
.service-c4__item--circle img{
  width: 72px;
  padding: 10px;
}
.service-c4__item--ul li{
  display: flex;
  margin-top: 16px;
}
.service-c4__item--txt{
  font-size: 1.6rem;
  line-height: 72px;
  margin-left: 16px;
}
.service-c4__item--ul2{
  display: inline-block;
  font-size: 1.4rem;
  margin: 16px 0 0;
}
.service-c1__item--ul2 li{
  display: inline-block;
  font-size: 1.4rem;
}
.service-c1__item--arrow{
  display: flex;
  vertical-align: middle;
  color: #000000;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 2rem 2.5rem;
  border-top-color: currentColor;
  border-bottom: 0;
  margin: 12px auto;
}
@media only screen and (min-width: 768px) {
  .company-profile__list, .officer__list, .access__list, .review__list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .company-profile__list dt, .officer__list dt, .review__list dt{
    width: 30%;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-left: 0;
    margin-bottom: 0;
    font-weight: bold;
    /* color: #666; */
    border-bottom: 1px solid #DDDDDD;
  }
  .company-profile__list dd, .officer__list dd, .review__list dd{
    width: 70%;
    margin-bottom: 0;
    padding-top: 30px;
    /* font-size: 1.4rem; */
  }
  .service-s{
    margin: calc(-15px / 3);
  }
  .service-s__box{
    width: calc(100% / 3  - 15px);
    margin: calc(15px / 3);
    /* min-height: 514px; */
    display: flex;
    justify-content: space-around;
  }
  .service-s__content{
    font-size: 1.4rem;
  }
  .service-c__title{
    font-size: 3.7rem;
  }
  .service-c1{
    margin: calc(-8px / 3);
  }
  .service-c1__box{
    width: calc(100% / 2  - 8px);
    margin: calc(8px / 2);
    display: flex;
    justify-content: space-around;
  }
  .service-c4__item--ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .service-c4__item--ul li{
    display: flex;
    margin-top: 16px;
  }
  /* .service-s__content--post{
    font-size: 1.4rem;
  } */
}

/* recruit */

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table {
  width: 100%;
  border: 1px #eee solid;
  font-size: 1.4rem;
}

table td,
table th {
  display: block;
  width: 100%;
  text-align: left;
}

table th {
  padding: 2rem 0 2rem 2rem;
  text-align: left;
  background: #f7f7f7;
  font-weight: bold;
}

table td {
  padding: 2rem;
  line-height: 1.8em;
  background: #fff;
}

@media only screen and (min-width: 768px) {
  table {
    width: 100%;
  }
  table td,
  table th {
    padding: 2rem;
    margin-bottom: 0.1rem;
    display: table-cell;
  }
  tr {
    border-bottom: 1px solid rgb(237, 237, 237);
  }
  table th {
    width: 20%;
  }
  table td {
    width: 80%;
  }
}



/* news */
.news{
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(7, 54, 131, 0.3), rgba(0, 0, 0, 0.5)),url(../image/img-top.jpg) no-repeat center 70px;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(7, 54, 131, 0.3), rgba(0, 0, 0, 0.5)),url(../image/img-top.jpg) no-repeat center 70px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(7, 54, 131, 0.3), rgba(0, 0, 0, 0.5)),url(../image/img-top.jpg) no-repeat center 70px;
  background-size: cover;
}
.news-page__age{
  font-family: 'Roboto', sans-serif;
  font-size: 2.4rem;
  margin: 20px 0;
  color: #000000;
  font-weight: bold;
}
.news-page__list{
  border-top: 1px solid #DDDDDD;
}
.news-page__item{
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 0;
}
.news-page__item__age{
  margin-bottom: 15px;
  font-weight: bold;
  color: #000000;
  font-size: 1.6rem;
}
.news-page__item__text1{
  line-height: 1.7;
  font-size: 1.4rem;
}
.news-page__item__link{
  display: block;
  margin-top: 10px;
  word-break: break-all;
}
.text__margin-bottom{
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .news{
    padding-top: 100px;
    height: 380px;
    background-position: center 0;
  }
  .news-page__item{
    width: 100%;
    display: flex;
  }
  .news-page__item__age{
    width: 20%;
    margin: 0;
  }
  .news-page__item__text1{
    width: 80%;
    margin-bottom: 0;
  }
  .news-page__item__link{
    margin-top: 15px;
  }
  .news-page__item__link--margin-delete{
    margin-top: 0;
  }
}
/* contact */
#error-box{
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #CB5B5B;
}
.error-box__text{
  margin: 10px 0;
  font-size: 1.4rem;
}
.privacy__bg{
  padding-top: 90px;
}

.contact__bg{
  padding-top: 40px;
}
.contact__item{
  display: block;
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.contact__item label{
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #666666;
}
.contact__item input, .contact__item textarea, .contact__contact-item{
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  border: solid 1px #ccc;
  font-size: 1.4rem;
}
.contact__item input:focus, .contact__item textarea:focus,.contact__contact-item:focus{
  border: solid 2px #000000;
  outline: 0;
}
.contact__item input{
  height: 40px;
}
.contact__item textarea{
  margin-bottom: 10px;
  height: 160px;
}
.contact__post-code__item, .contact__phone-number__item{
  display: flex;
  align-items: center;
}
.contact__post-code__item p, .contact__phone-number__item p{
  font-size: 2rem;
  margin-right: 5px;
  margin-top: 5px;
}
.post-code__item-hyphen, .phone-number__item-hyphen{
  margin-left: 5px;
}
#contact__post-code, #contact__phone-number{
  width: 80px;
}
.contact__contact-item{
  position: relative;
  border-radius: 20px;
  height: 40px;
  background: #fff;
  font-size: 1.4rem;
}
.contact__contact-item::after{
  position: absolute;
  display: block;
  content: url(../image/icon-right-arrow-blue.png);
  right: 20px;
}
.contact__btn{
  text-align: center;
  margin: 40px;
}
.contact__btn input[type="button"]{
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  width: 100%;
  border: none;
}
.contact--privacy__item{
  height: 300px;     /* 高さを制限(※) */
  overflow-y:scroll;  /* スクロールバーを表示(※) */
  border: solid 1px #7F9DB9;
  -webkit-overflow-scrolling: touch;
  padding: 20px 10px;
  font-size: 1.2rem;
}
.btn__disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.contact--privacy__title{
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;
}
.contact--privacy__text{
  font-size: 1.3rem;
  margin-bottom: 30px;
}
.contact--privacy__list{
  font-size: 1.3rem;
}
.contact--privacy__list li{
  margin-bottom: 20px;
}
.contact--privacy__list__title{
  font-weight: bold;
  margin-bottom: 5px;
}
.contact--privacy__list__text{
  padding-left:2em;
}
.contact__item span{
  background-color: #CB5B5B;
  font-size: 1rem;
  color: #fff;
  padding: 3px 10px;
  border-radius: 8px;
  margin-left: 20px;
}
@media only screen and (min-width: 768px) {
  #error-box{
    width: 70%;
    margin: 40px auto;
  }
  .privacy__bg{
    padding-top: 150px;
  }
  .contact__form{
    width: 70%;
    margin: 0 auto;
  }
  .contact__item{
    margin-bottom: 35px;
  }
  .contact__btn input[type="button"]{
    width: 260px;
    font-size: 1.6rem;
  }
  .contact--privacy__item{
    padding: 20px;
  }
  .contact--privacy__text{
    text-align: center;
    margin-bottom: 40px;
  }
}
/* review-screen */
.section-form__title{
  font-size: 2rem;
  margin: 40px 0;
  text-align: center;
}
.review__btn{
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 40px 0;
}
.review__btn--back{
  background: #fff;
  width: 30%;
  color: #000000;
  box-shadow: none;
}
.review__btn--submit{
  width: 60%;
}
.review__btn--back:hover{
  background: #000000;
}
@media only screen and (min-width: 768px) {
  .review__btn{
    position: relative;
    justify-content: center;
  }
  .review__btn--back{
    position: absolute;
    width: 150px;
    left: 0;
  }
  .review__btn--submit{
    width: 260px;
  }
}
/* /review-screen */
/* result-screen */
.form-text {
  font-size: 16px;
}
.u-required {
  color: #FF0000;
}
.u-center {
  text-align: center;
}
.u-underline {
  text-decoration: underline;
}
.form__wrapper {
  background: #F5F5F5;
  margin: 40px 0 60px;
  padding:  40px 30px;
}
.form-group {
  margin-bottom: 25px;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  font-size: 16px;
}

.form-input.error,
.form-textarea.error {
  border: 1px solid #FF0000;
}
.error-text {
  margin-top: 8px;
  color: #FF0000;
  display: inline-block;
  font-size: 14px;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.form-textarea {
  min-height: 150px;
  resize: vertical;
}
.name-fields {
  display: flex;
  gap: 20px;
}
.name-field {
  flex: 1;
}
.form-term {
  font-size: 16px;
  display: flex;
  align-items: center;
  column-gap: 4px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
.termcheck {
  appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0 2px 0px 0;
  border: 1px solid #cccccc;
  background: #FFFFFF;
  border-radius: 2px;
  cursor: pointer;
}
.termcheck:checked {
  border: none;
  background: #000000;
}
.termcheck:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.form-items {
  font-size: 16px;
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 8px;
  line-height: 1;
  cursor: pointer;
}
.itemcheck {
  appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0 2px 0px 0;
  border: 1px solid #cccccc;
  background: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
}
.itemcheck:checked {
  border: 4px solid #000000;
}
.confirm {
  max-width: 1080px;
  margin: 0 auto;
}
.confirm-item {
  border-bottom: 1px solid #E5E5E5;
  padding: 32px 0;
  display: flex;
  font-size: 16px;
  line-height: 26px;
}
.confirm-label {
  width: 190px;
}
.confirm-value {
  flex: 1;
}
.confirm__btn-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 60px auto 0;
  max-width: 582px;
}
.confirm__btn-list form {
  width: 50%;
}
.confirm__btn-list form button {
  width: 100%;
}
.u-pd-10 {
  padding-bottom: 10px;
}
.result{
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 60px;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 60px 0;
}
.download-item {
  background: #F5F5F5;
  padding: 40px 20px;
}
.download-item h3 {
  font-size: 37px;
  margin-bottom: 30px;
}
.download-item img {
  margin-left: 15px;
  vertical-align: sub;
}
.download-button {
  width: 215px;
}
.download-icon {
  width: 16px;
  height: 16px;
}
.coming-soon {
  font-size: 12px;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  .form__wrapper{
    padding:60px 100px;
  }
}
/* /result-screen */
/* 個人情報保護方針 レイアウト設定 */
div#box-eyecatch {
	height: 80px;
	padding-top: 15px;
}
	div#box-eyecatch .h2Title {
		color: #3d4a53;
	}
.box-content{
  font-size: 1.4rem;
}
 .box-content .policyContainer{
   /* margin: 0 0 20px 15px; */
 }
	.box-content .policyContainer ol.policy {}
		.box-content .policyContainer ol.policy li {
			list-style-type: decimal;
			line-height: 1.8;
      margin: 15px 0 15px 15px;
		}
/* .box-content .contactDetail p{
  text-indent: -1em;
} */
.text-right{
  margin: 30px 0;
  text-align: right;
  width: 100%;
}

.box-content .box-subtext {
	margin: 15px 0;
	padding: 0;
}

/* 個人情報の取り扱いについて */
div.title-eyeCatch {
	padding-top: 25px;
	margin-top: 25px;
	border-top: 1px dotted #9daab4;
}
	div.title-eyeCatch .h2Title {
		color: #3d4a53;
    font-size: 2rem;
    text-align: center;
	}
.box-content h3.policySubtitle {
	padding-top: 25px;
	/* margin-left: 15px; */
}
/* 個人情報の開示等に関する請求について */
.box-content ul.numberedList li {
	line-height: 1.6;
	padding-left: 2em;
	text-indent: -2em;
  margin-bottom: 20px;
}

/* !テーブル
---------------------------------------------------------- */
.policyContainer table{
	border-spacing: 0px;
	width: 100%;
	line-height: 1.5;
	border-collapse: collapse;
}
	.policyContainer table tr th{
		background: #f1f1f1;
		padding: 10px;
		border: solid 1px #ccc;
	}
  .subject{
    width: 33.3333%;
  }
	.policyContainer table tr td{
		padding: 10px;
		border: solid 1px #ccc;
	}
	.policyContainer table tr th.who,
	.policyContainer table tr th.title {
		background: #f1f1f1;
		/* width: 25%; */
		padding: 10px;
		border: solid 1px #ccc;
	}
  .policyContainer table tr th.who,{
    width: 100%;
  }
	.policyContainer table tr td.documentation{
		padding: 10px;
		/* width: 75%; */
		border: solid 1px #ccc;
	}
		.policyContainer table tr td.documentation p{
			margin: 5px 0;
		}
		.policyContainer table tr td.documentation ul li{
			padding-left: 3em;
			text-indent: -2em;
		}
    .who, .documentation{
      width: 100%;
      display: block;
    }
/* !個人情報の取扱いに関する告知文
---------------------------------------------------------- */
#wrapper_notification {
	line-height: 1.6;
	padding: 10px 2%;
}
	#wrapper_notification h3 {
		text-align: center;
	}

	#wrapper_notification ul li {
		padding-top: 10px;
		padding-left: 2em;
		text-indent: -2em;
	}
@media only screen and (min-width: 768px) {
  .box-content .policyContainer {
  	margin:15px 45px;
  }
  .who, .documentation{
    display: inline-block;
  }
  /* .policyContainer table tr th.who,{
		background: #f1f1f1;
		width: 25%;
		padding: 10px;
		border: solid 1px #ccc;
	}
	.policyContainer table tr td.documentation{
		padding: 10px;
		width: 75%;
		border: solid 1px #ccc;
	} */
}

/* particles js
---------------------------------------------------------- */
canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

/* ---- stats.js ---- */
.count-particles {
  background: #000000;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}







/* Utitlity (clearfix mt10 pb20)
    わずかなスタイルの調整のための便利クラス
----------------------------------------------------------------- */
  .u-mb_50 {
    margin-bottom: 50px;
  }
