@charset "utf-8";

/* ------------------------------------
   HEADER
------------------------------------ */
/*ヘッダー下*/
.l-header-logo-group-sp{
	margin: 1rem auto;
    position: absolute;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 15;
}
.l-header-logo-group-sp img{max-width: 120px;}

.hamburger {
      width: 30px;
      height: 22px;
      position: relative;
      cursor: pointer;
      z-index: 150;
    }
.hamburger span {
      position: absolute;
      height: 3px;
      width: 100%;
      background: #004BB1;
      border-radius: 2px;
      left: 0;
      transition: all 0.4s ease;
    }
.hamburger span:nth-child(1) {top: 0;}
.hamburger span:nth-child(2) {top: 9px;}
.hamburger span:nth-child(3) {bottom: 0;}

/* ✕に変化 */
.hamburger.active span:nth-child(1) {
      transform: rotate(45deg);
      top: 9px;
    }
.hamburger.active span:nth-child(2) {
      opacity: 0;
    }
.hamburger.active span:nth-child(3) {
      transform: rotate(-45deg);
      bottom: 9px;
    }

/* ハンバーガーメニュー　オーバーレイ */
.overlay {
      position: fixed;
      top: 0; /* ヘッダー下から */
      left: 0;
      width: 100%;
      max-width: 480px;
      height: 100%;
      background: rgba(0,0,0,0.4);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
      z-index: 10;
    }
.overlay.active {
      opacity: 1;
      visibility: visible;
    }

/* ハンバーガーメニュー（上からスライドイン） */
nav{
      position: fixed;
      top: -130%;
      left: 0;
      width: 100%;
      max-width: 480px;
      height: 100vh;/* スクロール指定 */
      overflow-y: auto;/* スクロール指定 */
      /*-webkit-overflow-scrolling: touch;/* スクロール指定 */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 4rem;
      transition: top 0.4s ease;
      z-index: 15;
    }
nav.active {top: 0; /* ヘッダーの下から展開 */}
nav .idex-logo {
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
}

/* ハンバーガーメニュー項目 */
.menu-list {
	list-style: none;
	margin: 0;
	padding: 1rem;
	width: 100%;
	background-color: #f2f7fb;
	}
.menu-list li:last-child {border: none;}

.menu-item {
	background-color: #f2f7fb;
	border-bottom: 1px solid #d8e2ec;
	padding: .3rem 2rem;	
	}

.menu-item button {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	font-size: 1rem;
	font-weight: bold;		
	color: #555;
	padding: .8rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	letter-spacing: 0.02em;
	}

/* 通常の矢印（右向き） */
    .arrow {
      position: relative;
      display: inline-block;
      width: 20px;
      height: 12px;
      margin-left: 8px;
      transition: transform 0.25s ease;
    }
    .arrow::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #888;
      transform: translateY(-50%);
    }
    .arrow::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0;
      width: 16px;
      height: 16px;
      border-top: 2.5px solid #888;
      border-right: 2.5px solid #888;
      transform: translateY(-50%) rotate(45deg);
      transform-origin: center;
    }

    .menu-item button:active .arrow {
      transform: translateX(4px);
    }

    /* ハンバーガーFooter */
    .idex-footer {
      text-align: center;
      padding: 1.5rem 0;
      background-color: #fff;
    width: 100%;	
    }

/* ------------------------------------
   HERO SLIDER
------------------------------------ */
.hero {
  margin-top:7rem;
  position:relative;
  width:100%;
}

.slide img { 
	width:100%; 
	height:100%; 
	object-fit:contain;
}

/* ------------------------------------
   HERO TITLE
------------------------------------ */
.hero-title h1 { font-size:2rem; margin-bottom:10px; }
.hero-title p { font-size:1.1rem;}

/* ------------------------------------
   SECTION BASE
------------------------------------ */
section{padding: 4rem 0 1rem;}

/* ------------------------------------
   TITLE
------------------------------------ */
.sub-title{
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
  font-family: Noto Sans JP;	
  /*color: #eef2f5;*/
  letter-spacing: .1em;
  margin-bottom: -10px;
  letter-spacing: -0.02em;
  opacity: 0.1 !important;
}

.title { 
	text-align:center;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	line-height: 2rem;
	font-size: 1.5rem;
}
.title-only{
	text-align:center;
	letter-spacing: -0.02em;
	line-height: 2rem;
	font-size: 1.5rem;	
}

/* ------------------------------------
   GRID / CARD
------------------------------------ */
.grid{
	display:grid;
	gap:25px;
	width:90%;
	margin: 0 auto;
}
.grid-3 { grid-template-columns:1fr; }

.triangle {
  position: absolute;
  top: 7rem;	
  width: 100%;
  height: 100%;	
  background: #edf6ff;
  z-index: -1;
  clip-path: polygon(
 	0 3%,     /* 左上 */
    100% 0,   /* 右上 */
    100% 97%, /* 右下 */
    0 100%   
  );
}
.triangle-reversed {
    position: absolute;
    top: 4rem;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #edf6ff;
    z-index: -5;
}
/* 上だけ斜めにする */
.triangle-reversed::before {
	content: "";
	position: absolute;
	top: -4.5rem; /* 斜めの深さ調整 */
	left: 0;
	width: 100%;
	height: 8rem;
	background: #edf6ff;
	transform: skewY(6deg);/* 数字大きいと深くなる */
	transform-origin: top left;
}

/* ------------------------------------
   FAQ
------------------------------------ */
.faq-btn-box li{
	width: 48%;
    color: #fff;
	background: #0066b3;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;/* 縦横中央 */
    align-items: center;/* 縦横中央 */
	padding: 1rem;
    margin: 0.2rem;
	text-align: center;
	font-weight: bold;	
}
.faq-btn-box li a{margin: 0 auto;}
.faq-btn-box li a:hover{color: #fff;}

.faq-list { 
	width:90%;
	margin:0 auto 1rem; 	
}

/* ------------------------------------
   BUTTON AREA
------------------------------------ */
/* 採用情報ボタン */
.btn-area {
    display: grid;
    gap: 20px;
}
.glow-btn {
    margin: 0 1rem;
    padding: 1rem;
    background: linear-gradient(45deg, #00bfff, #007bff);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.entry-section{padding: 2rem 1.5rem;}
.entry-buttons {
     display: flex;
     flex-direction: column;
     gap: 12px;
}
.entry-btn {
     display: flex;
     justify-content: space-between;
     /*width: 100%; 文字と◯→を両端にするのに必要 */
	
     padding: 1rem;		
     background-color: #fff;
     border-radius: 4px;
		
     color: #005bac;
     align-items: center;			
     font-size: 1rem;
     font-weight: 600;
     letter-spacing: 0.03em;		
     border: none;
     cursor: pointer;		
}

/* ------------------------------------
   下層ページ共通
------------------------------------ */
.lower-box{margin-top: 7rem;}
.lower-ttl{
	background: #edf6ff;
    padding: 1rem 0;
    margin: 0 0 3rem;
}

.underblue-ttl{
    position: relative;
    padding: 0.5rem 0 1rem;
    margin: 2.5rem 0;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    color: #353535;
}
.underblue-ttl::before {
    position: absolute;
    border-bottom: 3px solid #0066b3;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    content: '';
}

/* ------------------------------------
   インタビュー詳細
------------------------------------ */
.work_schedule:after {
    content: "";
    z-index: 1;
	left: 50%;
    position: absolute;
    top: 1.1rem;
    width: 4px;
    min-height: 99%;
    background-color: #0066b3;
}
.work_schedule li {
    z-index: 2;
    position: relative;
    padding: 1rem;
    background-color: #eef2f5;
    border-radius: 10px;
    margin-bottom: 2rem;
}
.work_schedule li:first-child {margin-top: 1rem;}
.work_schedule li:last-child{margin-bottom: 0;}
.work_schedule h3{color:#0066b3;}
.work_schedule p{margin: 1rem 0;}

/* ------------------------------------
   募集要項
------------------------------------ */
.job-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;	
}
.job-info-title {
  font-size: 1.2rem;
  color: #0066b3;
  border-bottom: 2px solid #0066b3;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
}
/* 表組み */
.job-info-list div {padding: 1rem 0 0;}
.job-info-list dt {
  width: 100%;
  font-weight: bold;
  background: #edf6ff;
  padding: .5rem;	
}
.job-info-list dd {padding: 1rem 0;}

/* キャリア採用ENTRYボタン */
.job-entry-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .5rem 0;
  background: #0066b3;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
}
.job-entry-btn span {
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* ------------------------------------
   お問合せ＞新卒リンク
------------------------------------ */
.mynavi-entry{
	padding: 1rem;
	border: 1px solid #0066b3;
	border-radius: 6px;
	text-align: center;
}
.form_back{margin:0 0 .5rem 0;}