@charset "UTF-8";
.visible-pc{
  display: none;
}
#wrapper{
  position: relative;
  /*height: 100%;*/
  width: 100%;
  /*border:1px solid #f00;*/
}

#index #wrapper{
  height: 100%;
}
/*-------------------------------------------------------------------------
navigation
-------------------------------------------------------------------------*/
#header{
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  /*opacity: 0;*/
}

#index #header{
  opacity: 0;
  transition:all 0.5s 0.0s linear;
}
#index #header.initialize{
  opacity: 1;
}



#header:after{
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.9);
  transition:all 0.4s ease-out;
}
#header.active:after{
  width: -webkit-calc(100% - 160px);
  width: calc(100% - 160px);
  /*width: 50px;*/
}

#logo{
  position: absolute;
  width: 140px;
  top:12px;
  left: 5px;
  transition:all 0.4s linear;
}

#logo img{
  width: 100%;
}
#header.active #logo{
  opacity: 0;
}
#header.active #logo:after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}


#toggleBtn{
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
}

#toggleBtn:before{
  content: "";
  width: 18px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform:translate(-50%, -50%);
  transform:translate(-50%, -50%);
  margin-top: -4px;
  position: absolute;
  background-color: #fff;
  transition:all 0.3s ease;
}
#toggleBtn:after{
  content: "";
  width: 18px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform:translate(-50%, -50%);
  transform:translate(-50%, -50%);
  margin-top: 4px;
  position: absolute;
  background-color: #fff;
  transition:all 0.3s 0.1s ease;
}


#header.active #toggleBtn:before{
  margin: 0;
  background-color: #000;
}
#header.active #toggleBtn:after{
  margin: 0;
  background-color: #000;
}

#navigation{
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  overflow: hidden;
  background-color: #fff;
  color: #000;
  padding: 60px 0 20px;
  box-sizing:border-box;
  /*box-shadow: 0 0 3px rgba(0,0,0,0.3);*/
  /*opacity: 0;*/
  transition:width 0.4s ease-out, opacity 0.2s 0.1s linear;
}

#navigation.active{
  /*width: -webkit-calc(100% - 50px);
  width: calc(100% - 50px);*/
  width: 160px;
}


#navigation li a{
  display: block;
  color: inherit;
  padding: 5px 0 5px 30px;
}
#navigation li.parent a,
#navigation li.current a{
  padding-left: 22px;
  color: #00387F;
}
#navigation ul{
  min-width: 200px;
}
#navigation ul li{
  position: relative;
  /*opacity: 0;*/
  font-size: 16px;
  /*margin-top: 5px;*/
  /*transition:all 0.6s 0.6s ease;*/
}
/*#navigation.active ul li{
  opacity: 1;
  margin-top: 0;
}*/

#navigation ul li:after{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 1px;
  background-color: #00387F;
}
#navigation ul li.parent:after,
#navigation ul li.current:after{
  width: 14px;
}


#navigation .en{
  margin-top: 50px;
  font-size: 13px;
  line-height: 1.4;
}
#navigation .en a{
  color: inherit;x;
  margin-left: 30px;
}

#navigation .en a img{
  width: auto;
  height: 18px;
  margin-left: 5px;
  vertical-align: top;
}


/*-------------------------------------------------------------------------
container
-------------------------------------------------------------------------*/
#previous{
  /*visibility: hidden;*/
  display: none;
}
#stage{
  position: relative;
  /*height: 100%;*/
  min-height: 100%;
  transition:all 0.5s ease-out;
}


body:not(#index) .container{
  background-color: #fff;
  padding-bottom: 40px;
}


#stage.passive{
  position: relative;
  /*opacity: 0.2;*/
}
#stage:after{
  content: "";
  position: fixed;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: 997;
  background-color: rgba(4,19,40,0.8);
  opacity: 0;
  transition:opacity 0.3s linear, height 0s 0.3s linear;
}
#stage.passive:after{
  height: 100%;
  opacity: 1;
  
  transition:opacity 0.3s linear;
}


#main{
  position: relative;
  height: 100%;
}


#stage.transitionSp{
  /*transform:scale(0.5);
  box-sizing:border-box;*/
}

/*#stage.transitionSp:before{
  content: "";
  position: fixed;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  border-top: 2px solid rgba(255,255,255,0.2);
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  opacity: 1;
  -webkit-animation: spin 0.8s linear 0s infinite;
  animation: spin 0.8s linear 0s infinite;
  opacity: 0;
}


#stage.transitionSp:after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}*/
#stage.transitionSp .container{
  opacity: 0;
}


.container{
  position: relative;
  min-height: 100%;
  transition:all 0.5s linear;
  /*overflow: hidden;*/
}
/*.container.initialize{
  overflow: visible;
}*/

body:not(#index) .container{
  background-color: #fff;
  min-height: none;
}



#titleArea{
  position: relative;
  height: 240px;
  background-color: #000;
  color: #fff;
  transform:scale(1.0);
  overflow: hidden;
}


#titleArea .pageTitle{
  position: absolute;
  top: 53%;
  left: 20px;
  z-index: 10;
  font-size: 48px;
  font-family: 'Work Sans', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 200;
  -webkit-transform:translateY(-50%);
  transform:translateY(-50%);
  line-height: 0.9;
  letter-spacing: -0.05em;
  /*opacity: 0;*/
  /*margin-top: 10px;*/
  text-shadow:0 0 7px rgba(0,0,0,0.5);
}
/*.container.initialize #titleArea .pageTitle{
  margin-top: 0;
  opacity: 1;
  transition:all 0.5s 0.0s ease-out;
}*/

#titleArea .pageTitle span{
  display: block;
  font-size: 14px;
  margin: 7px 0 0 5px;
  letter-spacing: 0em;
}
#titleArea .parentLink{
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 3;
  /*opacity: 0;
  margin-top: 10px;*/
  transition:all 0.5s 0.2s ease-out;
}

/*.container.initialize #titleArea .parentLink{
  margin-top: 0;
  opacity: 1;
}*/
#titleArea .parentLink a{
  position: relative;
  color: inherit;
  line-height: 20px;
  display: block;
}

#titleArea .parentLink a img{
  position: absolute;
  display: block;
  left: 10px;
  width: 20px;
  height: 20px;
}

#titleArea .parentLink a span{
  position: relative;
  font-size: 110%;
  margin-left: 35px;
  padding-bottom: 2px;
  border-bottom: 3px solid #fff;
}

#titleArea #bg{
  position: absolute;
  width: 100%;
  height: 150%;
  background-position: 50% center;
  background-size: cover;
}

#titleArea #bg.news{
  background-image: url("/images/news/bg.jpg?0");
}
#titleArea #bg.aboutus{
  background-image: url("/images/aboutus/bg.jpg?0");
}
#titleArea #bg.service{
  background-image: url("/images/service/bg.jpg?0");
}
#titleArea #bg.recruit{
  background-image: url("/images/recruit/bg.jpg?0");
}
#titleArea #bg.contact{
  background-image: url("/images/contact/bg.jpg?0");
}

#contentArea{
  overflow: hidden;
  background-color: #fff;
}

#contentArea .inner{
  position: relative;
  width: calc(100% - 40px);
  /*margin: 30px auto 30px;*/
  margin: 20px auto 0;
  font-size: 13px;
  /*opacity: 0;*/
  transition: all 0.4s 0.4s ease-out;
}

/*.container.initialize #contentArea .inner{
  margin: 20px auto 0;
  opacity: 1;
}*/

#contentArea .inner > header{
  margin-bottom: 20px;
}
#contentArea .inner h2{
  font-size: 140%;
  position: relative;
  line-height: 1.4;
}

#contentArea .inner h2 span{
  font-size: 12px;
  display: block;
  font-weight: normal;
}

#contentArea .inner .catch{
  font-size: 110%;
  margin-top: 10px;
}
#contentArea .inner section{
  margin-bottom: 40px;
}


#contentArea .inner section.page{
  margin-bottom: 80px;
}
#contentArea .inner section.page > header{
  margin-bottom: 15px;
}
#contentArea .inner section.page h2:after{
  content: "";
  position: absolute;
  left: -20px;
  top: 0.7em;
  height: 2px;
  width: 15px;
  background-color: #999;
}

#contentArea .inner p{
  margin-bottom: 15px;
}
#contentArea .inner h3.copy{
  font-size: 115%;
  color: #00387F;
  line-height: 1.4;
  margin-bottom: 7px;
}

#contentArea .inner .headline{
  font-weight: normal;
  font-size: 160%;
  line-height: 1.3;
}

.subNavi{
  margin-top: 30px;
  text-align: right;
  /*opacity: 0;*/
  transition:all 0.5s 0.6s ease-out;
}

/*.container.initialize .subNavi{
  opacity: 1;
}*/

.subNavi ul li{
  position: relative;
  margin-top: 3px;
}
.subNavi ul li a{
  padding-right: 35px;
}
.subNavi ul li a:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 25px;
  height: 1px;
  background-color: #ccc;
}
.subNavi ul li a span{
  color: #333;
  font-size: 110%;
  opacity: 1;
  margin-right: 0;
}


.textBtn{
  display: inline-block;
  text-align: center;
  padding: 10px 80px;
  background-color: #134a90;
  color: #fff;
}


#copyright{
  font-size: 9px;
  opacity: 1;
  color: #333;
}

#index #copyright {
  opacity: 0;
  margin-top: -20px;
  margin-left: 5px;
}
#index #copyright.initialize {
  color: #fff;
  transition:opacity 0.5s 1.0s linear, color 0.5s 1.0s linear;
  opacity: 0.5;
}

body:not(#index) #copyright {
  padding: 5px;
  text-align: center;
  border-top: 1px solid #ccc;
  background-color: #fff;
}









/*-------------------------------------------------------------------------
home
-------------------------------------------------------------------------*/
#index #stage{
  /*本当はコンテンツが画面に収まらない時だけautoにしたい*/
  height: 100%;
  /*小さい端末でコンテンツが収まるくらいの高さを確保*/
  min-height: 630px;
}
#index #main{
}
#home{
  color: #fff;
}

#home.container{
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow: auto;
}

#home #content{
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
  box-sizing:border-box;
  /*padding:110px 10px 10px;*/
  padding:85px 10px 10px;
}
#home #copy{
  opacity: 0;
  transition: all 1.0s 0.7s ease;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
}
#home.container.initialize #copy{
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity:1;
}
#home #copy .word{
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 5px;
}

#home #copy span img{
  height: 36px;
}
@media screen and (max-width: 340px) {
#home #copy span img{
  height: 30px;
}
}


#home .news{
  opacity: 0;
  transition: all 1.0s 1.0s ease;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
}
#home.container.initialize .news{
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

#home .news dl{
  position: relative;
  /*margin-top: 70px;*/
  margin-top: 45px;
  padding-top: 15px;
}
#home .news dl:after{
  content: "";
  position: absolute;
  top:0;
  left: 0;
  background-color: #fff;
  height: 3px;
  width: 70px;
}
#home .news dl dt{
  position: absolute;
  width: 6em;
}
#home .news dl dd{
  padding-left: 6.5em;
  margin-bottom: 7px;
}
#home .news a{
  color: inherit;
}
#home .news .more{
  display: block;
  margin: 10px auto 0;
  width: 28px;
  height: 28px;
}
#home .news .more img{
  width: 28px;
}


#home .links{
  opacity: 0;
  margin: 30px 0 50px;
  transition: all 1.0s 1.3s ease;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
}
#home.container.initialize .links{
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
#home .links ul{
  overflow: hidden;
}
#home .links ul li{
  position: relative;
  width: -webkit-calc(50% - 2px);
  width: calc(50% - 2px);
  float: left;
  margin: 0 1px 10px 0;
}
#home .links ul li div{
  position: relative;
  height: 60px;
  background-size: cover;
  background-position: center center;
}
#home .links ul li div.service{
  background-image: url("/images/home/service.jpg");
}
#home .links ul li div.aboutus{
  background-image: url("/images/home/aboutus.jpg");
}
#home .links ul li div.recruit{
  background-image: url("/images/home/recruit.jpg");
}
#home .links ul li div.contact{
  background-image: url("/images/home/contact.jpg");
}
#home .links ul li img{
  display: none;
  width: 100%;
}
#home .links ul li h2{
  position: relative;
  font-weight: normal;
  padding-left: 15px;
  /*margin-top: 3px;*/
}

@media screen and (min-width: 500px) {
#home .links ul li{
  width: -webkit-calc(25% - 2px);
  width: calc(25% - 2px);
}
#home .links ul li div{
  height: 60px;
}
}



#home .links ul li h2:after{
  content: "";
  position: absolute;
  height: 1px;
  width: 10px;
  top: 50%;
  margin-top: -1px;
  left: 0;
  background-color: rgba(255,255,255,0.4);
}

#home .links ul li a{
  color: inherit;
}

#home nav#homeNavi,
#home #homeLogo{
  display: none;
}
#home #bg{
  /*display: none;*/

  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform:scale(1.1);
  transform:scale(1.1);
  top:0;
  left:0;
  opacity: 0;
  z-index: -1;
  background-image: url("/images/home/bg01.jpg?10");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /*background-attachment: fixed;*/
  transition:all 1.5s ease;
}
#home.container.initialize #bg{
  -webkit-transform:scale(1.0);
  transform:scale(1.0);
  opacity: 1;
}


/*-------------------------------------------------------------------------
news & blog
-------------------------------------------------------------------------*/
#article article:not(:last-child){
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
#article header{
  margin-bottom: 15px;
}
#article header h2{
  font-size: 16px!important;
}

#article header .date{
  margin-top: 3px;
  color: #666;
  font-size: 12px;
}

#article .entry img{
  max-width: 100%;
  height: auto;
}
#article .entry iframe{
  max-width: 100%;
  max-height: 280px;
}


#article .archive article{
  overflow: hidden;
}
#article .archive article a{
  display: block;
  overflow: hidden;
}
#article .archive header{
  margin-bottom: 10px;
}
#article .archive header h2{
  font-size: 120%;
}
#article .archive .eyecatch{
  float: left;
  width: 90px;
}
#article .archive .eyecatch img{
  width: 100%;
}
#article .archive .text{
  box-sizing:border-box;
  float: right;
  width: calc(100% - 90px);
  padding-left: 10px;
}
#article .archive a .entry{
  color: #333;
}

#blog #article .archive a .entry{
  line-height: 1.5;
  font-size: 90%;
}

#article footer{
  margin-top: 30px;
}
#article footer ul.navigation{
  overflow: hidden;
  -webkit-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#article footer ul.navigation li{
  width: 50%;
  /*float: left;*/
  font-size: 14px;
  box-sizing:border-box;
}
#article footer ul.navigation li.next{
  text-align: right;
}
#article footer ul.navigation li a{
  color: inherit;
  position: relative;
}
#article footer ul.navigation li.prev a{
   padding-left: 22px;
}
#article footer ul.navigation li.next a{
  padding-right: 22px;
}
#article footer ul.navigation li.prev a:after{
  content: url("/images/arrow_blk.svg");
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0; 
  margin-top: -9px;
}
#article footer ul.navigation li.next a:after{
  content: url("/images/arrow_blk.svg");
  -webkit-transform:rotate(180deg);
  transform:rotate(180deg);
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 0; 
  margin-top: -9px;
}
#article .paginate{
  margin-top: 50px;
}
#article .paginate ul{
  text-align: center;
}
#article .paginate ul li{
  display: inline-block;
  width: 30px;
  margin: 0 2px;
}
#article .paginate ul li span{
  display: block;
  height: 30px;
  background-color: #8A94BF;
  color: #fff;
  line-height: 30px;
  /*box-sizing:border-box;*/
}
#article .paginate ul li a{
  display: block;
  height: 30px;
  color: #fff;
  line-height: 30px;
  background-color: #00387F;
}
.pagination h2.screen-reader-text {
    display: none !important;
}

/*-------------------------------------------------------------------------
service
-------------------------------------------------------------------------*/
#service .concept{
  margin-bottom: 50px;
}
#service .concept span{
  display: inlune-block;
  /*background-color: #00387F;
  color: #fff;*/
  font-size: 90%;
  padding: 2px 8px;
  border:1px solid #333;
}
#service .concept .headline{
  margin-top: 5px;
}

#service .index:after{
  content: "";
  display: block;
  clear: both;
  /*overflow: hidden;*/
}
#service .index .image{
  width: 190px;
  margin: 0 auto;
}
#service .index .image img{
  width: 100%;
}
#service .index .description{
  /*margin-top: 20px;*/
}
#service .index .detail{
  margin-top: 15px;
  text-align: center;
}


#degitalpublishing ul.flow{
  overflow: hidden;
  margin: 20px auto 0;
  text-align: center;
  max-width: 400px;
}
#degitalpublishing ul.flow li{
  display: inline-block;
  text-align: center;
  color: #2F6FAE;
  font-size: 110%;
  position: relative;
  /*margin-right: 10px;*/
  box-sizing:border-box;
  width: 25%;
  /*font-weight: bold;*/
}
#degitalpublishing ul.flow li:last-child{
  margin-right: 0;
}
#degitalpublishing ul.flow li:not(:last-child):after{
  display: inline-block;
  content: url("/images/arrow_blk.svg");
  width: 14px;
  height: 14px;
  -webkit-transform:rotate(180deg);
  transform:rotate(180deg);
  position: absolute;
  right: -7px;
  top: 24px;
}

#degitalpublishing ul.flow li span{
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
  margin: 0 auto 5px;
  border-radius: 50%;
  border:1px solid #5e8bc8;
}
#degitalpublishing ul.flow li span img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform:translate(-50%, -50%);
  transform:translate(-50%, -50%);
  width: 36px;
  height: 36px;
}

#degitalpublishing .comicPhoto{
  text-align: center;
}
#degitalpublishing .comicPhoto img{
  display: inline-block;
  border-radius: 50%;
  width: -webkit-calc(50% - 30px);
  width: calc(50% - 30px);
  max-width: 180px;
  margin: 10px 15px;
}
#degitalpublishing .label{
  border:1px solid #ededed;
  padding:10px;
}
#degitalpublishing .label:after{
  content: "";
  display: block;
  clear: both;
}

#degitalpublishing .label .caption{
  font-size: 90%;
  margin-bottom: 3px;
  /*color:#00387F;*/
}

#degitalpublishing .label .logo{
  width: 140px;
  display: block;
  margin-bottom: 5px;
}
#degitalpublishing .label .image{
  width: 100px;
  float: right;
  /*margin-top: -50px;*/
  /*margin: 0 auto;*/
}
#degitalpublishing .label .image img{
  width: 100%;
}
#degitalpublishing .label .description{
  float: left;
  font-size: 12px;
  width: calc(100% - 110px);
}


/*#smartphone ul.store{
  text-align: center;
}*/
#smartphone ul.store li{
  display: inline-block;
  margin-right: 5px;
}
#smartphone ul.store li img{
  width: 110px;
  display: block;
}


#smartphone .serviceSP{
  overflow: hidden;
  margin-bottom: 50px;
}
#smartphone .serviceSP:after{
  content: "";
  display: block;
  clear: both;
}
#smartphone h3.copy{
}
#smartphone .image{
  width: 150px;
  float: right;
  margin-top: 5px;
 /*
  position: absolute;
  top: 0;
  right: -20px;*/
}
#smartphone .image img{
  width: 100%;
}
#smartphone .description{
  box-sizing:border-box;
  width: calc(100% - 150px);
  margin-top: 10px;
  float: left;
}

ul.otherService{
}
ul.otherService li{
  /*font-size: 120%;*/
  text-align: right;
  box-sizing:border-box;
  margin-bottom: 5px;
}
ul.otherService li a{
  /*color: inherit;*/
  padding-right: 15px;
  position: relative;
}

ul.otherService li a:after{
  content: url("/images/arrow_blk.svg");
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: -10px; 
  margin-top: -10px;
  -webkit-transform:rotate(180deg);
  transform:rotate(180deg);
}

/*-------------------------------------------------------------------------
aboutus
-------------------------------------------------------------------------*/
/*#aboutus #naviAnchor{
  position: absolute;
  top: 0;
  right: 0;
}
#aboutus #naviAnchor li{
  position: relative;
  display: inline-block;
  margin-left: 5px;
}
#aboutus #naviAnchor li a{
  padding: 1px 15px;
  line-height: 1;
  font-size: 11px;
  border:1px solid #346bb0;
}*/


#aboutus .headline{
  margin-bottom: 15px;
}
#aboutus #philosophy h3:not(:first-child){
  margin-top: 25px;
}

#aboutus table{
  margin-top: 20px;
  width: 100%;
  border-bottom:1px solid #ededed;
  border-collapse: collapse;
}
#aboutus table tr td:first-child{
  width: 90px;
  box-sizing:border-box;
  font-weight: normal;
  text-align: left;
}
#aboutus table th,
#aboutus table td{
  padding: 10px 5px;
  border-top:1px solid #ededed;
}
#aboutus table td span{
  /*font-weight: bold;*/
  font-size: 110%;
  /*color: #00387F;*/
}

#aboutus #map{
  /*margin-top: 30px;*/
  width: 100%;
  height: 240px;
}
#aboutus .googlemap{
  margin-top: 5px;
  text-align: right;
}
#aboutus .googlemap a{
  position: relative;
  padding-right: 22px;
}
#aboutus .googlemap a:after{
  content: url("/images/blank.svg");
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  right: 0;
}


/*-------------------------------------------------------------------------
recruit
-------------------------------------------------------------------------*/
#recruit .profile{
  margin-bottom: 20px;
  text-align: center;
}
#recruit .profile img{
  /*width: 100%;*/
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}
#recruit .headline{
  margin-bottom: 15px;
}
#recruit .name{
  margin-top: 5px;
  text-align: right;
}

#recruit ol.message{
  margin: 20px 0;
  list-style-type: decimal;
  /*list-style-position: inside;*/
  padding-left: 1.2em;
}
#recruit ol.message li{
 /* margin-bottom: 7px;
  font-size: 110%;*/
  font-size: 90%;
}
.inlineBtn{
  overflow: hidden;
}
.inlineBtn li{
  float: left;
  width: 50%;
  box-sizing:border-box;
}
.inlineBtn li:nth-child(even){
  padding-left: 4px;
}
.inlineBtn li:nth-child(odd){
  padding-right: 4px;
}
.inlineBtn li a{
  display: block;
  padding: 10px;
}

#recruit ul.list{
  -webkit-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#recruit ul.list li{
  /*float: left;*/
  width: 50%;
  padding: 0 10px 10px;
  box-sizing:border-box;
  text-align: center;
  margin-bottom: 20px;
}
#recruit ul.list li a{
  color: inherit;
  display: block;
}
#recruit ul.list li .thumb{
  margin: 0 auto 7px;
  width: 80%;
  max-width: 180px;
  overflow: hidden;
  border-radius: 50%;
}
#recruit ul.list li .thumb img{
  width: 100%;
}
#recruit ul.list li h3{
  color: #00387F;
  /*font-weight: normal;*/
  line-height: 1.4;
  margin-bottom: 5px;
}
#recruit ul.list li p{
  font-size: 90%;
  line-height: 1.4;
}


/*#recruit ul.data{
  -webkit-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#recruit ul.data li{
  width: 33.3%;
  padding: 0 7px 10px;
  box-sizing:border-box;
  text-align: center;
  margin-bottom: 20px;
}
#recruit ul.data li img{
  width: 44px;
  height: 44px;
}
#recruit ul.data li h3{
  color: #2f6fae;
  font-weight: bold;
  margin-bottom: 5px;
}
#recruit ul.data li div{
  font-weight: bold;
  margin: 5px 0 10px;
  line-height: 1.4;
}
#recruit ul.data li div .visible-pc{
  display: block;
  height: 0;
  overflow: hidden;
}
#recruit ul.data li p{
  font-size: 11px;
  line-height: 1.4;
}*/

#recruit .data ul{
  -webkit-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

#recruit .data ul.description{
  margin-bottom: 30px;
  font-size: 11px;
  line-height: 1.4;
}
#recruit .data ul li{
  width: 33.3%;
  padding: 0 10px;
  box-sizing:border-box;
  text-align: center;
}
#recruit .data ul li img{
  width: 54px;
  height: 54px;
}
#recruit .data ul li h3{
  color: #2f6fae;
  font-size: 105%;
  margin-bottom: 5px;
}
#recruit .data ul li .answer{
  font-weight: bold;
  font-size: 12px;
  margin: 5px 0 10px;
  line-height: 1.4;
}

#recruit #benefits ul{
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#recruit #benefits ul li{
   width: 33.3%;
  padding: 0 10px;
  box-sizing:border-box;
  text-align: center;
  margin-bottom: 30px;
}
#recruit #benefits ul li h3{
  color: #2f6fae;
  font-size: 105%;
  line-height: 1.4;
  margin-bottom: 5px;
  min-height: 35px;
}
#recruit #benefits ul li img{
  width: 54px;
  height: 54px;
}
#recruit #benefits ul li p{
  font-size: 11px;
  margin-top: 5px;
  line-height: 1.4;
}



#recruit .galleryList{
  -webkit-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#recruit ul.galleryList li{
  width: 33.3%;
  padding: 2px;
  box-sizing:border-box;
}
#recruit ul.galleryList li > div{
  display: block;
  overflow: hidden;
}
#recruit ul.galleryList li img{
  width: 100%;
}

#galleryLarge{
  position: fixed;
  opacity: 0;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.95);
  z-index: 1000;
  transition:opacity 0.4s linear, left 0s 0.4s linear;
}
#galleryLarge.active{
  transition:opacity 0.5s linear;
  left: 0;
  opacity: 1;
}
#galleryLarge .close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 10;
}

#galleryLarge .close:before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform:translate(-50%, -50%) rotate(45deg);
  transform:translate(-50%, -50%) rotate(45deg);
}
#galleryLarge .close:after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #fff;
  -webkit-transform:translate(-50%, -50%) rotate(45deg);
  transform:translate(-50%, -50%) rotate(45deg);
}

#galleryLarge #fs_gallery{
  opacity: 0;
}
#galleryLarge.active #fs_gallery{
  transition:all 0.3s 0.8s linear;
  opacity: 1;
}
#galleryLarge ul li div{
  position: relative;
}
#galleryLarge ul li .caption{
  color: #fff;
  width: 100%;
  padding: 10px;
  box-sizing:border-box;
  background-color: rgba(0,0,0,0.8);
}
#galleryLarge ul li .caption span{
  font-size: 11px;
}
@media screen and (min-width: 480px) {
#galleryLarge ul li .caption{
  position: absolute;
  bottom:0;
}
}


#recruit .more{
  display: block;
  width: 28px;
  margin: 10px auto 0;
}
#recruit .more img{
  width: 100%;
  opacity: 0.9;
}


#recruit ul.blog li{
  overflow: hidden;
  margin-bottom: 10px;
  min-height: 60px;
}
#recruit ul.blog li:last-child{
  margin-bottom: 0;
}
#recruit ul.blog li a{
  display: block;
  overflow: hidden;
}
#recruit ul.blog .eyecatch{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  position: relative;
  border:1px solid #ccc;
  box-sizing:border-box;
}
#recruit ul.blog .eyecatch img{
  position: absolute;
  left: 50%;
  -webkit-transform:translateX(-50%);
  transform:translateX(-50%);
  height: 72px;
}
#recruit ul.blog .text{
  width: -webkit-calc(100% - 78px);
  width: calc(100% - 72px);
  box-sizing:border-box;
  padding: 5px 0 0 10px;
  float: right;
  line-height: 1.4;
  /*font-size: 90%;*/
}
#recruit ul.blog .text .date{
  color: #333;
}

/*#recruit dl.blog{
  position: relative;
}

#recruit dl.blog dt{
  color: #666;
  position: absolute;
  width: 6em;
}
#recruit dl.blog dd{
  padding-left: 6.5em;
  margin-bottom: 7px;
}*/


/*SYMPOSIUM*/
ul.listRow{

}
ul.listRow li{
  padding: 10px 0;
  box-sizing:border-box;
  margin-bottom: 20px;
  overflow: hidden;
}
ul.listRow li a{
  color: inherit;
  display: block;
}
ul.listRow li .thumb{
  width: 150px;
  overflow: hidden;
  margin: 0 auto 10px;
  border-radius: 50%;
  /*float: left;*/
}
ul.listRow li .thumb img{
  width: 100%;
}

ul.listRow li .description{
  /*width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
  float: right;
  padding-left: 20px;*/
  box-sizing:border-box;
}
ul.listRow li h3{
  color: #00387F;
  font-size: 110%;
  line-height: 1.4;
}
ul.listRow li .catch{
  line-height: 1.4;
  margin: 5px 0 5px!important;
}
#symposium ul.listRow li .catch{
  font-weight: bold;
  margin: 5px 0 10px!important;
}
ul.listRow li p{
  font-size: 12px;
}

#occupation ul.listRow li h3,
#occupation ul.listRow li p{
  text-align: center;
}


#symposium .member{
  /*background-color: #ededed;*/
  margin-bottom: 80px;
  padding: 10px;
  box-sizing:border-box;
  border:1px solid #ededed;
}
#symposium ul.profile{
  -webkit-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#symposium ul.profile:last-child{
  margin-bottom: 0;
}
#symposium ul.profile li{
  width: 50%;
  overflow: hidden;
  margin-top: 15px;
}
#symposium ul.profile .thumb{
  /*float: left;
  width: 80px;*/
  text-align: center;
  margin-bottom: 10px;
}
#symposium ul.profile .thumb img{
  width: 90px;
  border-radius: 50%;
}
#symposium ul.profile .description{
  /*float: right;
  width: calc(100% - 80px);
  padding-left: 15px;*/
  padding: 0 10px;
  box-sizing:border-box;
}

#symposium ul.profile .description h4{
  color: #00387F;
  line-height: 1.4;
  margin-bottom: 5px;
}

#symposium ul.profile .description p{
  font-size: 90%;
  line-height: 1.4;
}
#symposium .talk .photo{
  margin-bottom: 20px;
}
#symposium .talk h2{
  margin-bottom: 20px;
}
#symposium .talk .photo img{
  width: 100%;
}
#symposium .talk p{
  position: relative;
  padding-left: 2.5em;
}
#symposium .talk p .initial{
  position: absolute;
  left: -5px;
}
#symposium .back{
  margin-top: 60px;
  text-align: center;
}



/*職業紹介*/
#occupation #contentArea .inner h3.catch{
  font-size: 125%;
  color: #00387F;
  line-height: 1.4;
  margin-bottom: 7px;
}

#occupation .person{
  border:1px solid #ededed;
  padding: 15px;
  box-sizing:border-box;
  margin: 20px 0;
}
#occupation .person .photo{
  width: 160px;
  margin: 0 auto 20px;
}
#occupation .person .photo img{
  width: 100%;
  border-radius: 50%;
}
#occupation .person h4{
  text-align: center;
  margin-bottom: 5px;
}
#occupation .person p{
  font-size: 90%;
  margin-bottom: 0;
}

#occupation .read{
  margin-bottom: 50px;
  font-size: 90%;
}


#occupation .schedule table{
  margin-top: 5px;
  width: 100%;
  border:1px solid #f6f6f6;
  border-collapse: collapse;
  /*border-collapse:separate;
  border-spacing:1px;*/
}
#occupation .schedule table th{
  width: 80px;
  box-sizing:border-box;
  font-weight: normal;
  background-color: #f1f4ff;
  /*border-right: 1px solid #ccc;*/
  text-align: right;
  padding: 4px 8px;
  /*color: #666;*/
}
#occupation .schedule table th,
#occupation .schedule table td{
  /*border:1px solid #ccc;*/
}
#occupation .schedule table td{
  padding: 4px 8px;
  /*background-color: #f6f6f6;*/
}
#occupation .schedule table tr:nth-child(odd) td{
  background-color: #f6f6f6;
}
#occupation .schedule table tr:nth-child(odd) th{
  background-color: #dee3f9;
}
#occupation .back{
  margin-top: 60px;
  text-align: center;
}


.otherPage .title{
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  font-size: 110%;
}
.otherPage .title:after{
  position: absolute;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 60px;
  height: 2px;
  background-color: #666;
  margin-left: -30px;
}

.otherPage ul{
  margin: 0 auto 10px;
  -webkit-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.otherPage ul li{
  width: 25%;
  box-sizing:border-box;
  padding: 5px;
}
.otherPage ul li a{
  display: block;
}

.otherPage ul li .thumb{
  overflow: hidden;
  border-radius: 50%;
  width: 80%;
  margin: 0 auto;
}
.otherPage ul li .thumb img{
  width: 100%;
}

.otherPage ul li h3{
  font-weight: normal;
  /*color: #333;*/
  text-align: center;
  line-height: 1.4;
  font-size: 85%;
  margin-top: 5px;
}

.otherPage ul li.current .thumb img{
  opacity: 0.4;
}
.otherPage ul li.current h3{
  color: #666;
}


#career dl{
  position: relative;
  overflow: hidden;
}
#career dt{
  float: left;
  width: 90px;
  font-weight: normal;
  padding:3px 10px 3px 0;
  font-weight: bold;
  /*color: #00387F;*/
  box-sizing:border-box;
}
#career dd{
  float: left;
  width: -webkit-calc(100% - 90px);
  width: calc(100% - 90px);
  padding:3px 0 3px 10px;
  box-sizing:border-box;
  border-left: 2px solid #ccc;
  margin-bottom: 20px;
}
#career dd p{
  margin-bottom: 0!important;
}


/*-------------------------------------------------------------------------
contact
-------------------------------------------------------------------------*/
#contact form input,
#contact form textarea{
  width: 100%;
  display: block;
  font: inherit;
  padding: 10px 5px;
  box-sizing:border-box;
  -webkit-appearance: none;
  border: 1px solid #999;
  background-color: #fff;
  margin-top: 10px;
  transition:all 0.4s linear;
  border-radius: 0;
}
#contact form textarea{
  height: 180px;
}
#contact form input:focus,
#contact form textarea:focus{
  border: 1px solid #4B639E;
  background-color: #f5f5f5;
}

#contact form input[type="submit"]{
  background-color: #134a90;
  color: #fff;
  width: 150px;
  border:none;
}
#contact form input[type="submit"]:focus{
  background-color: #4B639E;
}

#contact .screen-reader-response{
  /*color: #ff3300;*/
  font-weight: bold;
}
#contact .screen-reader-response ul{
  display: none;
}

.wpcf7-not-valid-tip{
  color: #ff3300;
}

.wpcf7-validation-errors{
  display: none!important;
}
.wpcf7-mail-sent-ok{
  margin: 0!important;
  padding: 0!important;
  border:none!important;
  font-weight: bold;
  font-size: 110%;
}

#contact form input.wpcf7-not-valid,
#contact form textarea.wpcf7-not-valid{
  border: 1px solid #e17e5e;
  background-color: #fff6f3;
}