@charset "utf-8";
:root {
    --main-color: #1a68a9;
    --sub-color: #269DC7;
    --light-color: #eff8ff;
    --font-color: #1a1a1a;
    --bg-gradation: linear-gradient(to bottom left, #215195, #1fb5e6);
}

html{
	width: 100%;
	font-size:62.5%; /* 1rem ≒ 10px */
	overflow: auto;
  -webkit-text-size-adjust: 100%; /* iOS文字サイズリセット */
  scroll-behavior: smooth;
}

body{
	width: 100%;
  height: 100%;
	overflow: hidden;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */

  font-family: "Noto Sans JP" , sans-serif;
  font-size: 1.5rem;
  color: var(--font-color);
  line-height: 2;
  font-weight: 400;
  background-color: #fff;
}

@media screen and (max-width:768px) {
  body{ font-size: 1.4rem; }
}

main{
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  /* overflow:hidden; */
}

p:empty {
  display: none;
}

a[href^="tel:"] {
  pointer-events: inherit;
}

@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

img{
  width: 100%;
  height: auto;
  max-width: 100%;
}

section,div,h3{
  scroll-margin-top: 120px;
}

.vertical-rl{
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.PCtype{ display: block !important; }
.PCtype_flex{ display: flex !important; }
.SPtype,.SPtype_flex{ display: none !important; }
@media screen and (max-width:768px) {
  .PCtype,.PCtype_flex{ display: none !important; }
  .SPtype{ display: block !important;}
  .SPtype_flex{ display: flex !important; }
}

.en{
  font-family: "Anton" , sans-serif;
}

/* shadow */
.shadow{
  filter: drop-shadow(0px 5px 5px rgba(103, 103, 103, 0.2));
}
.box-shadow{
  box-shadow: 0px 5px 5px rgba(103, 103, 103, 0.2);
  overflow: visible;
}
.slick-list{
  filter: drop-shadow(0px 5px 5px rgba(103, 103, 103, 0.2));
}

/* ========================== contents body ==== */
.contents-body{
  padding: 0;
}

.contents-body__inner{
  padding: 100px 5%;
  position: relative;
}

.wrap-container{
  /* flex-wrap: nowrap; */
  /* gap: 50px; */
  width: 100%;
  max-width: 1240px;
  padding: 0;
  margin: 0 auto;
}

.wrap-container.narrow{
  max-width: 900px;
}

@media screen and (max-width:768px) {
  .contents-body__inner{
    padding: 50px 5%;
  }

  /* .wrap-container{
    gap: 20px;
  } */
}
/* ========================== contents body end ==== */

/* ========================== section common ==== */
.consept{ z-index: 7; }
.job{ z-index: 6; }
.interview{ z-index: 5; }
.benefits{ z-index: 4; }
.company{ z-index: 3; }
.ourteam{ z-index: 2; }
.entry{ z-index: 1; }

.section-title__box__inner{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  align-items: flex-end;
  justify-content: space-between;
}

.section-title{
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;

  transform: translateY(50%);
  filter: blur(10px);
  opacity: 0;
}

.section-title__en{
  display: inline-block;
  font-size: 1.6rem;
  margin-left: 10px;
}

.section-title.scrollin{
  transform: translateY(0);
  filter: blur(0);
  opacity: 1;
  transition: 0.5s;
}

@media screen and (max-width:850px) {
  .section-title__box{
    flex-direction: column;
    gap: 20px;
  }

  .section-title__box__inner{
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width:768px) {
  .btn{
    width: 180px;
    padding: 10px 15px;
    margin-left: auto;
  }

  .section-title{
    font-size: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .section-title__en{
    margin: 0;
  }
}
/* ========================== section common end ==== */

/* ========================== btn ==== */
.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0);
  border-radius: 5px;
  color: white;
  padding: 5px 20px;
  transition: 0.2s;
  position: relative;
  z-index: 10;
}

.btn::before{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../img/icon/arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.2s;
}

.btn::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-gradation);
  border-radius: 5px;
  z-index: -10;
  opacity: 1;
  transition: 0.2s;
}

.btn:hover{
  border: 1px solid var(--main-color);
  color: var(--main-color);
  transition: 0.2s;
}
.btn:hover::before{
  background-image: url(../img/icon/arrow-blue.png);
  right: 15px;
  transition: 0.2s;
}
.btn:hover::after{
  opacity: 0;
  transition: 0.2s;
}

.btn.active{
  border: 1px solid var(--main-color);
  color: var(--main-color);
  transition: 0.2s;
}
.btn.active::before{
  background-image: url(../img/icon/arrow-blue.png);
  right: 15px;
  transition: 0.2s;
}
.btn.active::after{
  opacity: 0;
  transition: 0.2s;
}

.btn br{ display: none; }

.btn.disabled{ pointer-events: none; }

.btn.disabled::before,
.btn.disabled::after{
  opacity: 0.7;
  transition: 0.2s;
}

.wpcf7-form input[type="submit"],
.wpcf7-form input[type="button"]{
  width: 250px;
  height: 50px;
}

@media screen and (max-width:768px) {
  .btn{
    padding: 10px 15px;
    margin-left: auto;
  }
}

/* === back-btn === */
.btn.back-btn{ color: var(--main-color); border: 1px solid var(--main-color); }
.btn.back-btn::before{ background-image: url(../img/icon/arrow-blue.png); right: auto; left: 20px; transform: translateY(-50%) rotate(180deg); }
.btn.back-btn::after{ opacity: 0; }

.btn.back-btn:hover{ color: white; border: 1px solid rgba(255,255,255,0); }
.btn.back-btn:hover::before{ background-image: url(../img/icon/arrow.png); }
.btn.back-btn:hover::after{ opacity: 1; }
/* === back-btn end === */


/* === small-btn === */
.small-btn{
  width: 40px;
  height: 40px;
  padding: 0;
  flex-shrink: 0;
}

.small-btn::before{
  right: 50%;
  transform: translate(50%, -50%);
}

.small-btn:hover::before{ right: 50%; }

.small-btn.active::before{ right: 50%; }
/* small-btn end */


/* more small btn */
.small-btn.more-small{
  width: 30px;
  height: 30px;
}
.small-btn.more-small::before{
  width: 15px;
  height: 15px;
}
/* more small btn end */


/* === section-btn === */
.section-btn{
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: fit-content;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

.section-btn::after{
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: var(--bg-gradation);
  transition: 0.2s;
}

.section-btn:hover .btn { border: 1px solid var(--main-color); color: var(--main-color); }
.section-btn:hover .btn::before{ background-image: url(../img/icon/arrow-blue.png); }
.section-btn:hover .btn::after{ opacity: 0; }
/* === section-btn end === */


/* === btn-box === */
.btn-box__subpage{
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 50px auto 0;
}

.btn-box__subpage .btn{ margin-left: 0; }

@media screen and (max-width:769px) {
  .btn-box__subpage{ gap: 10px; }
  .btn-box__subpage .btn{ height: 30px; }
}
/* === btn-box end === */


/* === reverse-btn === */
.btn.reverse-btn{
  position: relative;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  padding-right: 40px;
  padding-left: 40px;
}
.btn.reverse-btn::before{ background-image: none; }
.btn.reverse-btn::after{ opacity: 0; }

.btn.reverse-btn:hover{ color: white; border: 1px solid rgba(255,255,255,0); }
.btn.reverse-btn:hover::before{ background-image: none; }
.btn.reverse-btn:hover::after{ opacity: 1; }

.btn.reverse-btn .btn{
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(90deg);
}
.btn.reverse-btn .btn.active{ background-color: white; border: 1px solid rgba(255,255,255,0); }

/* タブのボタン */
.btn.reverse-btn.current{ color: white; border: 1px solid rgba(255,255,255,0); cursor: default; }
.btn.reverse-btn.current::before{ background-image: none; }
.btn.reverse-btn.current::after{ opacity: 1; }

.btn.reverse-btn.current .btn{ background-color: white; border: 1px solid rgba(255,255,255,0); }
.btn.reverse-btn.current .btn::before{ background-image: url(../img/icon/arrow-blue.png); }
.btn.reverse-btn.current .btn::after{ opacity: 0; }

.btn-box_job .btn.reverse-btn .btn::before,
.btn-box_interview .btn.reverse-btn .btn::before
{ transform: translate(50%, -50%) rotate(-90deg); }
.btn-box_job .btn.reverse-btn.current .btn::before,
.btn-box_interview .btn.reverse-btn.current .btn::before
{ transform: translate(50%, -50%) rotate(-90deg); }
/* === reverse-btn end === */
@media screen and (min-width:769px) {
  .btn.reverse-btn{
    height: auto;
    min-height: 50px;
  }
}
/* ========================== btn end ==== */

/* ========================== slider ==== */
.slick-arrow{
  border: 1px solid var(--main-color);
  background: transparent;
}

.slick-prev.slick-arrow{
  top: auto;
  bottom: 0px;
  left: 30%;
  right: auto;
  transform: translate(0) rotate(180deg);
}

.slick-next.slick-arrow{
  top: auto;
  bottom: 0px;
  right: 30%;
  left: auto;
  transform: translate(0);
}

@media screen and (max-width:768px) {
    .slick-prev.slick-arrow{
      right: auto;
      left: 20%;
    }

    .slick-next.slick-arrow{
      right: 20%;
      left: auto;
    }
}
/* ========================== slider end ==== */

/* ======================================= common =================================================================== */


/* ======================================= pagetop =================================================================== */
#pagetop{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--sub-color);
  color: #fff;
  line-height: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding-bottom: 5px;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
}

#pagetop.scroll{
  opacity: 1;
  transition: 0.3s;
}

#pagetop:hover{
  transform: scale(1.1,1.1);
  transition: all 0.2s ease;
}

.top-arrow__img{
  transform: rotate(-90deg);
  width: 10px;
}

.top-arrow__svg{
  stroke: white;
  fill: none;
}

@media screen and (max-width:768px) {
  #pagetop:hover{
    transform: none;
  }
}


/* ======================================= table-layout =================================================================== */
.flex{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  /* -ms-flex-wrap: wrap;
  flex-wrap: wrap; */
  position:relative;
}
.flex.space-between{
	-ms-flex-line-pack: justify;
	align-content: space-between;
}
.flex.oreder1{
	-webkit-box-ordinal-group:2;
	-ms-flex-order:1;
	order:1;
}
.align-self-center {
	-ms-flex-item-align: center;
	align-self: center;
}
.flex .col {
  position:relative;
}
.w1, .w2, .w3, .w4,.w5, .w6, .w7, .w8,.w9, .w10, .w11 {
  width:100%;
}
@media only screen and (min-width: 768px) {
  .w1 { width: 8.33333%;}
  .w2 { width:16.66666%;}
  .w3 { width:25%;}
  .w4 { width:33.33333%;}
  .w5 { width:41.66666%;}
  .w6 { width:50%;}
  .w7 { width:58.33333%;}
  .w8 { width:66.66666%;}
  .w9 { width:75%;}
  .w10 { width:83.33333%;}
  .w11 { width:91.66666%;}
  .w12 { width:100%;}
}
.justify-c-s-between{
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
/* ======================================= ClearFix =================================================================== */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {clear: both;}
/* .clearfix {*zoom: 1;} */
/* ======================================= Margin =================================================================== */
.m0{margin: 0;}
.m-auto{margin-right:auto;margin-left: auto;}
.mb10{margin-bottom:10px;}
.mb20{margin-bottom:20px;}
.mb30{margin-bottom:30px;}
.mb40{margin-bottom:40px;}
.mb50{margin-bottom:50px;}
.mb60{margin-bottom:60px;}
.mb70{margin-bottom:70px;}
.mb80{margin-bottom:80px;}
.mb90{margin-bottom:90px;}
.mb100{margin-bottom:100px;}
.mt10{margin-top:10px;}
.mt20{margin-top:20px;}
.mt30{margin-top:30px;}
.mt40{margin-top:40px;}
.mt50{margin-top:50px;}
.mt60{margin-top:60px;}
.mt70{margin-top:70px;}
.mt80{margin-top:80px;}
.mt90{margin-top:90px;}
.mt100{margin-top:100px;}
span.mt10{margin-top:10px; display: inline-block;}
span.mt20{margin-top:20px; display: inline-block;}
span.mt30{margin-top:30px; display: inline-block;}
.order-1{ order:0; }
@media only screen and (min-width: 768px) {
  .order-1{ order:-1; }
}

/* ======================================= Padding =================================================================== */
.pt0{ padding-top: 0; }
.pb0{ padding-bottom: 0; }
.pt50{padding-top: 50px;}
.pt70{padding-top: 70px;}

/* ======================================= font =================================================================== */
.fw400{font-weight: 400;}
.fw700{font-weight: 700;}


/* =======================================
	ページ送り
======================================= */
/* .news-navigation{
	margin:80px auto 0;
	max-width:1000px;
	text-align:center;
}
nav.navigation {
	width:100%;
  margin-bottom:80px;
}
.nav-previous {
	float:left;
	width:48%;
	text-align:left;
}
.nav-next {
	float:right;
	width:48%;
	text-align:right;
}
.nav-next span.meta-nav {
	float:right;
}
.screen-reader-text{
	display:none;
}
.pagination a.page-numbers{
	padding:5px 10px;
	margin-right:10px;
	color:#fff;
	text-decoration:none;
	background:#000;
	border:1px solid #fff;
  transition: all .5s ease;
  border:1px solid #000;
}
.pagination a.page-numbers:hover{
	background:rgba(255,255,255, 1);
	transition: all .5s ease;
  color:#000;
  border:1px solid #000;
}
.pagination span.current{
	padding:5px 10px;
	margin-right:10px;
	color:#000;
	text-decoration:none;
	background:rgba(255,255,255, 1);
  transition: all .5s ease;
  border:1px solid #000;
}
.nav-previous .post-title {
	  overflow:hidden;
	  text-align:left;
	  text-decoration:underline;
}
.nav-next .post-title {
	  overflow:hidden;
	  text-align:right;
	  text-decoration:underline;
}

.news-navigation .dots{
  margin-right: 10px;
} */


/* ======================================================================================================================================
　　　　　　　　　　　　　　　　 WPの設定
====================================================================================================================================== */

/*  table contact ======================================= */

/* .wpcf7{
  padding: 0 5%;
} */

#contact-table.table {
  margin: 0 auto;
  padding: 0 0 50px;
  display: table;
  width: 100%;
  background: rgba(255,255,255,0.6);
}

#contact-table.table .tbody {
  display: table-row-group;
}

#contact-table.table .tbody .tr{
  display: block;
  border-top: 1px solid #ccc;
  padding: 2em 1em;
  background: transparent;
  display:table;
  width:100%;
}

#contact-table.table .tbody .tr:last-of-type{
  border-bottom: 1px solid #ccc;
}

#contact-table.table .tbody .tr > div {
  display: block;
  text-align: center;
  overflow-x: hidden;
}

#contact-table.table .tbody .tr > div.th {
  padding-bottom: 10px;
  vertical-align:middle;
  text-align:left;
}
#contact-table.table .tbody .tr > div.td {
  background:#fff;
  text-align:left;
}

#contact-table.table .tbody .tr > div.td > div.tel,
#contact-table.table .tbody .tr > div.td > div.fax {
  font-size:90%;
}

@media only screen and (min-width: 768px) {
  #contact-table.table {
    padding: 0 0 50px;
  }
  #contact-table.table .tbody .tr > div {
    display: table-cell;
  }
  #contact-table.table .tbody .tr > div.th {
    padding: 0;
      width:30%;
  }
  #contact-table.table .tbody .tr > div.td {
    padding: 0;
      width:70%;
  }
}
@media only screen and (min-width: 940px) {
  #contact-table.table {
    max-width: 900px;
  }
}

#contact-table .agree{
  display: block;
}

/*  archive page =================================================================== */
.wrap-container__archive{
  max-width: 900px;
}

.nav-links{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
  font-size: 1.8rem;
}

.page-numbers{
  line-height: 1;
  color: var(--main-color);
}

.page-numbers.current{
  font-weight: 700;
  color: var(--font-color);
}

.page-numbers:hover{
  opacity: 0.7;
}

.next,.prev{
  display: inline-block;
  width: 18px;
  height: 18px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 2px;
}
.next{ background-image: url(../img/icon/arrow-blue.png); }
.prev{ background-image: url(../img/icon/arrow-blue.png); transform: rotate(180deg); }


/*  パンくず =================================================================== */
.bread{
  width: 100%;
  max-width: calc(1240px + 10%);
  margin: 5px auto 0;
  /* padding: 0 5%; */
}

.bread-arrow{
  display: inline-block;
  height: 15px;
  width: 10px;
  margin: 0 5px;
  /* background-color: var(--font-color); */
  background-image: url(../img/icon/bread-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bread-list a:hover{
  opacity: 0.7;
}

.bread-list{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width:768px) {
    body{
        font-size: 1.6rem;
    }

    section{
      padding: 100px 0 0;
    }
}

/* ======================================= thanks page =================================================================== */
.thanks{
  margin: 100px auto;
  padding: 50px;
  display: table;
  max-width: 900px;
  line-height: 2;
  font-size: 1.6rem;
  background: #fff;
}
.thanks .from{
padding-top: 25px;
}

/* ======================================= PRIVACY =================================================================== */
#page-privacy h3{
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 80px 0 20px 0;
}

#page-privacy p{
  margin: 20px 0;
  text-align: left;
}
#page-privacy ul{
  margin: 20px 0 20px 40px;
}
#page-privacy ul li{
  list-style: outside decimal;
  line-height: 140%;
  margin: 10px 0 0 0;
}
#page-privacy ul li ul{
  margin-bottom: 20px;
}
#page-privacy ul li ul li{
  list-style: outside decimal;
  line-height: 140%;
  margin: 10px 0 0 0;
}

.pp{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}

.pp-container{
    flex-direction: column;
}

.pp-container h3{
    margin-top: 50px;
}

.pp-link{
    color: var(--main-color);
    text-decoration: underline;
}