@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700|Roboto:300,400,700&display=swap&subset=japanese,latin-ext");

/*=============================================
 * body
 *=============================================*/
body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Open Sans', 'メイリオ', Meiryo, sans-serif;
  font-weight: 400;
  color: #212121;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.5px;
  background: #FFF;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
}
@media screen and (max-width:767px) {
  body {
    font-size: 14px;
    line-height: 28px;
  }
}
/*=============================================
 * fonts
 *=============================================*/
.fnt-Roboto {
  font-family: 'Roboto', sans-serif;
}

.fnt-NotoSans {
  font-family: 'Noto Sans JP', sans-serif;
}

/*=============================================
 * <main>
 *=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-left: 200px;
  box-sizing: border-box;
  background: rgba(33,33,33,0.02);
}

.wrap {
  width: 960px;
}

/*=============================================
 * <header>
 *=============================================*/
header {
  background: #fff;
  width: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 30px 0 0;
  overflow-y: auto;
}
header .logo {
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}
header .navbar .navbar-nav {
  text-align: right;
  padding: 30px 0 10px;
}
header .navbar .navbar-nav li {
  padding-bottom: 20px;
}
header .navbar .navbar-nav li a {
  font-size: 14px;
  line-height: 20px;
  color: #231815;
  display: block;
  padding-right: 40px;
  position: relative;
  transition: all 0.3s;
}
header .navbar .navbar-nav li a:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  border-top: 1px solid #231815;
  width: 30px;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
}
header .navbar .navbar-nav li a:hover {
  text-decoration: none;
  color: #196ed8;
}
header .navbar .navbar-nav li a:hover:before, header .navbar .navbar-nav li.active a:before {
  opacity: 1;
}
header .navbar .nav_btn_2 {}
header .navbar .nav_btn_2 a {
  display: block;
  border: 1px solid #231815;
  font-size: 14px;
  line-height: 14px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-self: center;
  border-radius: 5px;
  width: 160px;
  height: 30px;
  box-sizing: border-box;
  padding: 6px;
  transition: all 0.3s;
  margin: 30px auto 0;
}
header .navbar .nav_btn_2 a:after {
  content: url(../images/icon_1.png);
  display: block;
  margin-left: 10px;
}
header .navbar .nav_btn_2 a:hover {
  text-decoration: none;
  background: #231815;
  color: #fff;
}
header .navbar .nav_btn_2 a:hover:after {
  content: url(../images/icon_1_on.png);
}
header .hamburger {
  display: none;
}
@media screen and (max-height: 700px) {
  header {
    overflow-y: scroll;
    width: 220px;
    padding: 30px 0;
    bottom: 0;
  }
}




@media screen and (max-width:767px) {
  main {
    padding-left: 0;
    padding-top: 13%;
  }
  header {
    background: none;
    width: 100%;
    height: 100%;
    padding: 0;
    position: static;
    overflow: inherit;
  }
  header .logo {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  header .navbar {
    background: #fff;
    width: 100%;
    max-width: 200px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    overflow-y: auto;
    padding: 14% 0 8%;
    box-sizing: border-box;
    transition: all 0.3s;
    z-index: 100;
  }
  header .navbar .navbar-nav {
    padding: 0;
  }
  header .hamburger {
    position: fixed;
    bottom: 100px;
    right: 0;
    width: 30px;
    height: 90px;
    background: #212121;
    padding: 10px;
    transition: all 0.3s;
    display: block;
    opacity: 1 !important;
    z-index: 100;
  }
  header .hamburger span {
    font-family: 'Roboto', sans-serif;
    display: block;
    width: 12px;
    position: absolute;
    top: 40px;
    left: 16px;
    color: #fff;
    font-size: 15px;
    font-style: italic;
    line-height: 15px;
    text-align: center;
    font-weight: 300;
  }
  header .hamburger-box {
    width: 30px;
  }
  header .hamburger-inner, header .hamburger-inner:after, header .hamburger-inner:before {
    background-color: #fff;
    width: 30px;
    border-radius: 0;
  }
  .navOpen{
    overflow: hidden;
  }
  .navOpen .navbar {
    right: 0;
  }
  .navOpen header .hamburger {
    right: 200px;

  }
  .navOpen:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9;
  }
  .navOpen section, .navOpen footer{
    z-index: -1;
  } 
  header .hamburger.hidden {
    opacity: 0;
    visibility: hidden;
  }
}

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

/*=============================================
 * key
 *=============================================*/
#key {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.under_mainimage {
  width: 100%;
  height: 250px;
  position: relative;
}
.under_mainimage.company{
  background: #30386c;
}
.under_mainimage.flow{
  background: #2c314b;
}
.under_mainimage.work{
  background: #009f43
}
.under_mainimage:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: url('../images/under_deco.png') no-repeat right bottom / cover;
}
.under_mainimage.interview{
  background: #af2f40;
}
.under_mainimage .wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width:1100px) and (min-width: 768px){
  .under_mainimage h2 {
   width: 200px;
  }
}
@media screen and (max-width:767px) {
  .under_mainimage {
    height: 150px;
  }
  .under_mainimage:before {
    width: 100%;
    height: 100%;
  }
  .under_mainimage h2 {
    width: 200px;
    padding-left: 4%;
  }
}

/*=============================================
 * <section>
 *=============================================*/


/*=============================================
 * <footer>
 *=============================================*/
footer {}
footer .ft_bnr {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .ft_bnr li {
  width: 50%;
}
footer .ft_bnr li a {
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 120px 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  overflow: hidden;
}
footer .ft_bnr li a:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s;
}
footer .ft_bnr li a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
footer .ft_bnr li:nth-child(1) a:before {
  background: url(../images/ft_bnr_bg_01.jpg) no-repeat center / cover;
}
footer .ft_bnr li:nth-child(2) a:before {
  background: url(../images/ft_bnr_bg_02.jpg) no-repeat center / cover;
}
footer .ft_bnr li a:hover {
    text-decoration: none;
    font-weight: 600;
}
footer .ft_bnr li a:hover:before {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
footer .ft_bnr li a:hover:after {
  opacity: 1;
}
footer address {
  background: #212121;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  padding: 30px 0;
}

footer .ft_sns {
  background: #212121;
  display: flex;
  gap:.8rem;
  justify-content: center;
  align-items: center;
  padding : 2rem 0 0 0;
}
footer .ft_sns .ft_sns_text {
  color:#fff;
  font-size:1rem;
  line-height:1.4;
  margin-right:1rem;
}
footer .ft_sns .ft_sns_icon img {
width: 3.2rem;;
}






#pagetop {
  position: absolute;
  bottom: 0;
  right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  background: #212121;
  cursor: pointer;
  transition: all 0.3s;
}
#pagetop:hover {
  opacity: 0.5;
}
@media screen and (max-width:767px) {
  footer .ft_bnr li a {
    font-size: 20px;
    line-height: 20px;
    padding: 50px 0;
  }
  footer address {
    font-size: 12px;
    padding: 15px 0;
  }
  #pagetop {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 50px;
    right: 0;
    z-index: 99;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
  }
  .navOpen #pagetop {
    right: 200px;
  }
}
/*=============================================
 * RESPONSIVE
 *=============================================*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (max-width:1200px) {
  .wrap {
    max-width: 100%;
    width: auto;
    padding: 0 4%;
  }

}

@media only screen and (max-width:767px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

}

/*=============================================
 * custom
 *=============================================*/

.title_eng {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  font-size: 32px;
  line-height: 32px;
}
.flow_title{
  font-size: 20px;
  line-height: 32px;
  color: #212121;
  text-align: center;
  font-weight: 600;
  padding-bottom: 40px;
}
@media screen and (min-width:768px){
  .flow_title{
    font-size: 40px;
    line-height: 1.5em;
    color: #212121;
    text-align: center;
    font-weight: 600;
    padding-bottom: 40px;
  }
}
.flow_title_date{
  font-size: 18px;
  line-height: 32px;
  color: #212121;
  text-align: center;
  font-weight: 600;
  padding-bottom: 40px;
}
.style_table{
  padding: 80px 0;
}
.style_table table{
  width: 100%;
}
.style_table table tbody th, .style_table table tbody td{
  padding: 20px 40px;
  box-sizing: border-box;
  border-top: 1px solid #7a7a7a;
  border-bottom: 1px solid #7a7a7a;
  text-align: left;
  vertical-align: middle;
}
/*.style_table table tbody tr:last-child th, .style_table table tbody tr:last-child td{
    border-bottom: 1px solid #7a7a7a;
    font-style: normal;
    font-weight: normal;
    text-align: center;
}*/
.style_table table tbody th{
  width: 24%;
  max-width: 240px;
  background: #e7e7e7;
  font-weight: 600;
}
.style_table table tbody td{
  letter-spacing: 0;
}

.style_table.flow_table table tbody th{
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}
.style_table.flow_table table tbody th span{
  font-size: 16px;
}
.style_table .northRow{
  border-bottom: hidden;
}
.style_table .southRow{
  border-top: hidden;
} 
@media only screen and (min-width:768px) and (max-width: 1080px){
  .style_table table tbody th, .style_table table tbody td{
    padding: 15px;
  }
  .style_table.flow_table table tbody th{
    font-size: 20px;
  }
}
@media only screen and (max-width:767px) {
  .style_table{
    padding: 40px 0;
  }
  .style_table table tbody th, .style_table table tbody td{
    padding: 10px;
  }
  .style_table table tbody th{
    background: #e7e7e7;
    font-size: 10px;
  }
  .style_table table tbody td{
    padding: 1% 5%;
    font-size: 10px;
    line-height: 1.5;
  }
  .style_table.flow_table table tbody th{
    font-size: 18px;
    width: 40%;
  }
  .style_table.flow_table table tbody th span{
    font-size: 14px;
  }

}



.block_style_1{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
}
.block_style_1 h2{
  width: 205px;
  margin-right: 60px;
}
.block_style_1.ttl_right h2{
  order:2;
  margin-right: 0;
  margin-left: 80px;
}
.block_style_1 .txt{
  width: calc(100% - 285px);
  padding-top: 30px;
}
.block_style_1.ttl_right txt{
  order:1;
}
.block_style_1 .txt > *{
  padding-bottom: 30px;
}
.block_style_1 .txt > *:last-child{
  padding-bottom: 0;
}
.block_style_1 .txt ul li{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.block_style_1 .txt ul li strong,.block_style_1 .txt ul li span{
  display: block;
  width: 80px;
}
.block_style_1.pb0{
  padding-bottom: 0;  
}
.photo_center{
  text-align: center;
}
.photo_center p{
  margin-bottom: 40px;
}
.photo_center p:last-child{
  margin-bottom: 0;
}
.pb80{
  padding-bottom: 80px;
}
@media screen and (min-width:768px) and (max-width: 1080px){
  .block_style_1{
    flex-wrap: wrap;
    padding: 40px 0;
  }
  .block_style_1 h2{
    width: 30%;
    max-width: 205px;
    margin-right: 30px;
  }
  .block_style_1.ttl_right h2{
    margin-left: 50px;
  }
  .block_style_1 .txt{
    width: calc(70% - 50px);
  }
  .block_style_1 .txt > *{
    padding-bottom: 15px;
  }
  .pb80{
    padding-bottom: 40px;
  }
}

@media screen and (max-width:767px) {
  .block_style_1{
    flex-wrap: wrap;
    padding: 40px 0;
  }
  .block_style_1 h2{
    width: 40%;
    max-width: 205px;
    text-align: center;
    margin: 0 auto;
  }
  .block_style_1.ttl_right h2{
    order:1;
    margin: 0 auto;
  }
  .block_style_1 .txt{
    width: 100%;
    padding-top: 15px;
  }
  .block_style_1.ttl_right .txt{
    order:2;
  }
  .block_style_1 .txt > *{
    padding-bottom: 15px;
  }
  .pb80{
    padding-bottom: 40px;
  }
}
