@charset "utf-8";

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.8;
}

body {
  margin: 0;
  padding-top: 80px;
}

svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
  height: auto;
}
 
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s 0s ease;
  color: #61768c;
}

a:hover,
button:hover {
  text-decoration: none;
  color: #1f4e89;
}


button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* ===== Base ===== */
html,
body {
  font-family: "BIZ UDゴシック", "BIZ UDGothic", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "Segoe UI", "Hiragino Sans", "ヒラギノ角ゴシック",
    "Yu Gothic", "游ゴシック", "Meiryo", sans-serif;
  color: #080808;
  background: #fff url(/common_recruit/images/footer_bg.jpg) no-repeat center bottom;
  background-size: contain;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width:1160px){
  
  body {
    padding-top: 70px;
  }
  .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 8px;
  }
}

/* ===== Header ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2000;
  background: #fff;
  box-shadow: none;
  transition: background .25s, height .25s, box-shadow .25s;
}

#header_inner {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

#logo {
  margin: 0 0 0 10px;
  margin-right: auto;
  line-height: 1;
}

#logo a {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
#logo span {
  color: #000;
  font-size: 16px;
  padding-bottom: 6px;
  font-weight: normal;
}
@media (max-width: 1160px) {    
  #logo {
    margin: 0 10px 0 10px;
    margin-right: auto;
    line-height: 1;
  }
  #logo span {
    padding-bottom: 5px;
    font-size: 11px;
  }
}

#logo img {
  display: block;
  transition: opacity .3s ease;
}

#header #logo img {
  content: url("/common_recruit/images/logo.png");
}

@media (max-width: 1160px) {
  #header #logo img {
    max-width: 160px;
  }
}

#header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}


/* ===== Global Nav ===== */
.global-menu {
  position: static;
  right: auto;
  height: auto;
  background: transparent;
  z-index: auto;
  display: block;
  overflow: visible;
  transition: none;
  margin-right: 25px;
  margin-top: 10px;
}

.global-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.global-menu li {
  margin: 0;
  text-align: left;
}

.global-menu a {
  display: inline-block;
  line-height: 1;
  padding: 14px 0;
  letter-spacing: .1rem;
  font-size: 80%;
  font-weight: 700;
  color: #000;
}

.global-menu a:hover {
  color: #32aae9;
}

#logout_btn,
.menu-toggle {
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

#logout_btn {
  width: 130px;
  height: 80px;
  background: #01aaea;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#logout_btn picture {
  width: 119px;
}
#logout_btn picture img {
  width: 100%;
}

.menu-toggle {
  width: 70px;
  height: 70px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1f4e89;
  transition: all 0.3s ease;
}
.menu-toggle.active span {
  background: #fff;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1160px) {
  #header_inner {
    padding: 0;
  }
  #logout_btn {
    width: 70px;
    height: 71px;
  }
  #logout_btn img {
    max-width: 35px;
  }
  #logout_btn picture {
    width: 35px;
  }
  .menu-toggle {
    display: flex;
    z-index: 10000;
    height: 70px;
  }
  .menu-toggle.active:hover {
    background: initial;
  }
  .global-menu li {
    margin: 0;
    text-align: left;
    border-bottom: 1px solid #fff;
    width: 100%;
  }
}

/* 右上ナビ */
#nav.global-nav {
  position: fixed;
  top: 80px;
  right: 0px;
  z-index: 1600;
}

#nav.global-nav ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

#nav.global-nav li {
  margin: 0;
}

#nav.global-nav button {
  width: 90px;
  height: 80px;
  background: #1f4e89;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  padding: 10px 0 11px;
  box-sizing: border-box;
  cursor: pointer;
}
#nav.global-nav li.a11y button {
  background: #1b3c6e;
}
#nav.global-nav button::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#nav.global-nav a:hover,
#nav.global-nav button:hover {
  opacity: .9;
}

#nav.global-nav button:focus {
  outline: 2px solid #ef7c00;
  outline-offset: 3px;
  background-color: #1b3c6e;
}

#nav.global-nav li.search button::before {
  background-image: url("/common_recruit/images/icon_search.png");
  width: 21px;
  height: 21px;
}

#nav.global-nav li.a11y button::before {
  background-image: url("/common_recruit/images/icon_set.png");
  width: 18px;
  height: 18px;
}

#nav.global-nav .search {
  position: static !important;
  bottom: auto !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  z-index: auto !important;
}

.setting_txt {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  background: rgba(0, 0, 0, 0.88);
  z-index: 3000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.setting_txt.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.setting_txt > div {
  padding: 1.5rem 0;
  width: 100%;
  margin-bottom: 0;
}
.setting_close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff !important;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3100;
}
button.setting_close:hover {
  text-decoration: none !important;
}
.setting_txt .inner {
  display: flex;
  justify-content: center;
}
.setting_txt .search {
  display: flex;
  position: relative;
  align-items: center;
  gap: initial;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-right: 2rem;
  border-bottom: none;
  background: none;
  width: auto;
}
.setting_txt .search .search-label {
  color: #fff;
  position: relative;
  padding-left: 20px;
  margin-right: 1rem;
  font-size: 100%;
}

.setting_txt .color {
  display: flex;
  margin-right: 2rem;
}
.setting_txt .color dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  width: 46px;
}
.setting_txt .color dd:first-of-type a {
  background: #0c4ad3;
}
.setting_txt .color dd:nth-of-type(2) a {
  background: #d7d243;
}
.setting_txt .color dd:nth-of-type(3) a {
  background: #000;
}
.setting_txt .color dd:nth-of-type(4) a {
  background: #cfcfcf;
  color: #000 !important;
  width: 64px;
}

.setting_txt .font_size {
  display: flex;
  align-items: center;
}
.setting_txt .font_size dl, .setting_txt .color dl {
  display: flex;
  align-items: center;
}
.setting_txt .font_size dt, .setting_txt .color dt {
  color: #fff !important;
  font-size: 16px;
  margin-right: 1rem;
  position: relative;
  padding-left: 22px;
}
.setting_txt .search .search-label::before, .setting_txt .font_size dt::before, .setting_txt .color dt::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: url("/common_recruit/images/arw02.png") no-repeat center;
  background-size: contain;
  vertical-align: middle;
}
.setting_txt .font_size dl a, .setting_txt .color dl a {
  height: 46px;
  border: 2px solid #fff;
  text-decoration: none;
}
.setting_txt .font_size dd, .setting_txt .color dd {
  margin-right: 5px;
  font-size: 16px;
}
.setting_txt .font_size dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cfcfcf;
  color: #000 !important;
  width: 66px;
}

@media screen and (max-width: 1160px) {
  .global-menu.active {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    z-index: 9999 !important;
    background: rgba(31, 78, 137, 0.95) !important;
    overflow-y: auto !important;
    pointer-events: auto !important;
    line-height: 1.5;
  }
  #nav.global-nav {
    display: none !important;
    top: 70px;
  }
  #header .global-menu.active .global-nav-sp {
    display: block !important;
    width: 100% !important;
    z-index: 10000;
    padding: 0 24px;
  }
  #header .global-nav-sp .global-nav {
    display: block !important;
  }

  .global-menu.active .global-nav-sp {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .global-nav-sp .global-nav ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .global-nav-sp .global-nav li a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700;
    text-align: left !important;
    background: none !important;
    height: auto !important;
  }

  .global-nav-sp .global-nav li a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
  }

  .global-nav-sp .global-nav ul li:nth-child(1) a::before { 
    background-image: url("/common_recruit/images/nav_side_icon01.png") !important; 
  }
  .global-nav-sp .global-nav ul li:nth-child(2) a::before { 
    background-image: url("/common_recruit/images/nav_side_icon02.png") !important; 
  }
  .global-nav-sp .global-nav ul li:nth-child(3) a::before { 
    background-image: url("/common_recruit/images/nav_side_icon03.png") !important; 
  }
  .global-nav-sp .global-nav ul li:nth-child(4) a::before { 
    background-image: url("/common_recruit/images/nav_side_icon05.png") !important;
  }

  .global-nav-sp .search.sp,
  .global-nav-sp .setting_txt_sp {
    background: initial;
  }

  .global-nav-sp .search-form {
    display: flex;
    width: 100%;
    border: 2px solid #fff;
  }

  .global-nav-sp .search-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #fff;
  }
}
.global-nav-sp {
  display: none;
}

@media screen and (max-width: 1160px) {
  .search.sp {
    display: flex;
    align-items: center;
    gap: initial;
    padding-bottom: 0;
    margin: 0 0 2rem;
    border-bottom: none;
  }  
  .setting_txt_sp .color {
    display: flex;
    margin-right: 2rem;
    margin-bottom: 1rem;
  }
  .setting_txt_sp .color dl a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    width: 35px;
    filter: none;
    margin-bottom: 1rem;
  }
  .setting_txt_sp .color dd:first-of-type a {
    background: #0c4ad3;
  }
  .setting_txt_sp .color dd:nth-of-type(2) a {
    background: #d7d243;
  }
  .setting_txt_sp .color dd:nth-of-type(3) a {
    background: #000;
  }
  .setting_txt_sp .color dd:nth-of-type(4) a {
    background: #cfcfcf;
    color: #000 !important;
    width: 48px;
  }

  .setting_txt_sp .font_size dl, .setting_txt_sp .color dl {
    display: flex;
    align-items: center;
  }
  .setting_txt_sp .font_size dt, .setting_txt_sp .color dt {
    color: #fff !important;
    font-size: 14px;
    margin-right: 1rem;
    position: relative;
    padding-left: 17px;
  }
  .setting_txt_sp .search .search-label::before, .setting_txt_sp .font_size dt::before, .setting_txt_sp .color dt::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    margin-right: 5px;
    background: url("/common_recruit/images/arw01.png") no-repeat center;
    background-size: contain;
    vertical-align: middle;
  }
  #recruit .setting_txt_sp .search .search-label::before, #recruit .setting_txt_sp .font_size dt::before, #recruit .setting_txt_sp .color dt::before {
    background: url("/common_recruit/images/arw03.png") no-repeat center;
  }
  .setting_txt_sp .font_size dl a, .setting_txt_sp .color dl a {
    height: 35px;
    border: 2px solid #fff;
    text-decoration: none;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }
  .setting_txt_sp .font_size dd, .setting_txt_sp .color dd {
    margin-right: 5px;
    font-size: 16px;
  }
  .setting_txt_sp .font_size dl a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cfcfcf;
    color: #000 !important;
    width: 66px;
    filter: none;
    padding: 0;
  }
}
@media screen and (max-width: 1160px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 70px;
    border-radius: 0;
    background: #fff;
  }
  #header .global-nav {
    display: none;
  }
  .logo-area {
    margin-top: 0;
  }

  .global-nav-sp {
    display: block;
    margin-top: 1rem;
    z-index: 10;
    position: relative;
  }

  .global-nav-sp .global-nav {
    color: #fff;
    margin-bottom: 4rem;
  }

  .global-nav-sp .global-nav ul {
    display: block;
    padding: 0;
    margin-bottom: 2rem;
  }

  .global-nav-sp .global-nav li {
    margin-bottom: .5rem;
    border-bottom: none;
  }

  .global-nav-sp .global-nav a,
  .global-nav-sp .global-nav button:not(.search-form button) {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: left center;
    filter: brightness(0) invert(1);
  }

  .global-nav-sp .global-nav a:hover {
    text-decoration: underline;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  #header .global-menu-list a,
  #header .global-nav-sp .global-nav button,
  #header .global-nav-sp .setting_txt_sp dt,
  #header .global-nav-sp .search-label {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
  }
}

/* ===== main_visual ===== */
#main_visual {
  position:relative;
  /* height:592px; */
  /* background:url("../images/main01.jpg") no-repeat center / cover; */
  overflow:hidden;
}

#main_visual .mv_copy{
  background-color: #DD2F30;
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 25px 0;
}
#main_visual .slick-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1160px) {
  #main_visual {
    /* height: 360px; */
    position: relative;
  }
  #main_visual::before {
    transform: skewX(-26deg);
    left: -10%;
  }
  #main_visual .mv_copy{
    padding: 15px 0px;
    /* font-size: 15px; */
  }
}

#main_visual h1 {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: .04em;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  animation: fade_up_soft 2.8s cubic-bezier(.25, .8, .25, 1) 1s both;
  will-change: transform, opacity, filter;
}

#main_visual p {

}

@keyframes fade_up_soft {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  #main_visual h1,
  #main_visual p,
  #main_visual a[role="button"],
  #main_visual button,
  #main_visual .btn {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

#main_visual h1 span {
  font-size: 150%;
  letter-spacing: .1rem;
}


/* ===== for_hokkaido ===== */
.for_hokkaido{
  background:#fff;
  padding: 90px 0 110px;
}

.for_hokkaido_inner{
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.for_hokkaido_title{
  font-family:"游明朝体","Yu Mincho","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","Noto Serif JP","MS PMincho",serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  letter-spacing: .22em;
  margin-right: -0.22em;
  color:#004e9d;
  margin: 0 0 12px;
}

.for_hokkaido_sub{
  font-family:"游明朝体","Yu Mincho","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","Noto Serif JP","MS PMincho",serif;
  margin: 0 0 38px;
  font-size: 112.5%;
  letter-spacing: .12em;
  margin-right: -0.12em;
  color:#004e9d;
}

.for_hokkaido_text{
  max-width: 760px;
  margin: 0 auto 58px;
  color:#111;
  line-height: 2.2;
}

.for_hokkaido_text p{
  margin: 0;
}

.for_hokkaido_badges{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.for_hokkaido_badges img{
  display:block;
  height: auto;
  width: clamp(117px, 18vw, 126px);
}

@media (max-width: 1160px){
  .for_hokkaido{
    padding: 60px 0 70px;
  }

  .for_hokkaido_sub{
    margin-bottom: 28px;
  }

  .for_hokkaido_text{
    margin-bottom: 40px;
    line-height: 2.0;
    text-align: left;
  }

  .for_hokkaido_badges{
    gap: 18px;
  }

  .for_hokkaido_badges img{
    width: 22vw;
    max-width: 126px;
  }
}

/* ===== pickup ===== */
#pickup{
  position: relative;
  padding: 50px 0;
  background: url("/common_recruit/images/pickup_bg.jpg") center/cover no-repeat;
}

#pickup::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(20, 45, 70, .65);
}

#pickup .pickup_inner{
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.pickup_card{
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.pickup_thumb{
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.pickup_thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.pickup_card:hover .pickup_thumb img{
  transform: scale(1.06);
}

.pickup_body{
  padding: 26px 28px 30px;
}
.pickup_body h3{
  margin: 0 0 14px;
  font-weight: 700;
  color: #125690;
  font-size: 125%;
  letter-spacing: .08em;
}
.pickup_body p{
  margin: 0;
  color: #222;
  line-height: 1.9;
  font-size: 87.5%;
}

@media (max-width: 1160px){
  #pickup{
    padding: 40px 0;
  }
  #pickup .pickup_inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pickup_body{
    padding: 20px 18px 22px;
  }
  .pickup_body h3{
    font-size: 18px;
  }
}

/* ===== information ===== */

#information {
  background: #fff;
  padding: 5rem 0;
}

.information_inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.information_title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 2.5rem;
}

.information_body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.information_list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.information_list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.information_list .date {
  position: relative;
  padding-left: 18px;
  white-space: nowrap;
  font-size: 0.875rem;
  color: #000;
}

.information_list .date::before {
  content: "";
  position: absolute;
  left: 0;
  top: .4em;
  width: 8px;
  height: 8px;
  background: url("/common_recruit/images/arw01.png") no-repeat center / contain;
}

.information_list a {
  color: #61768c;
  text-decoration: underline;
  font-size: 125%;
}
.information_list a:hover {
  color: #1f4e89;
}

.information_btn {
  flex-shrink: 0;
}

.information_btn .btn {
  display: inline-block;
  background: #224b8f;
  color: #fff;
  padding: 0.35em 1.5em;
  border-radius: 6px;
  text-decoration: none;
  font-size: 87.5%;
}

@media (max-width: 1160px) {
  .information_body {
    flex-direction: column;
  }

  .information_btn {
    margin-top: 1.5rem;
    align-self: flex-end;
  }
}

/* ===== interview ===== */

#interview {
  background: #f2f2f2;
  padding: 4.5rem 0;
}

.interview_inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.interview_title {
  font-family:"游明朝体","Yu Mincho","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","Noto Serif JP","MS PMincho",serif;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: normal;
  letter-spacing: .22em;
  text-align: center;
  margin: 0 0 3rem;
  color: #777;
}

.interview_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 540px));
  justify-content: center;
  gap: 3rem 4rem;
}

.interview_card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.interview_thumb {
  border-radius: 15px;
  overflow: hidden;
}

.interview_thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .35s ease;
}
.interview_card:hover .interview_thumb img {
  transform: scale(1.06);
}

.interview_body {
  padding-top: 1.25rem;
}

.interview_head {
  margin: 0 0 0.5rem;
  font-size: 150%;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-weight: normal;
}

.interview_meta {
  margin: 0 0 1rem;
  font-size: 87.5%;
}

.interview_text {
  margin: 0;
  font-size: 87.5%;
  line-height: 1.9;
  color: #font-size: 87.5%;;
}

@media (max-width: 1160px) {
  #interview {
    padding: 3rem 0;
  }

  .interview_grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .interview_head {
    font-size: 1.125rem;
  }
}

/* ===== main_content ===== */
#main_content {
}

#category_section {
  margin-top:56px;
  text-align:center;
}

#category_title {
  margin:0 0 24px;
  font-size:118.8%;
  font-weight:700;
  color:#24a16b;
}

#category_list {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px 20px;
}

#category_list a {
  display:inline-block;
  padding:.1rem 1rem;
  border-radius:10px;
  background:#41ac8e;
  color:#fff;
  font-size:100%;
}

#category_list a:hover {
  background:#1f4e89;
}

@media (max-width:1160px) {
  #main_content {
    padding: 0 16px 200px;
    margin: 0;
  }
  #pickup_lead { flex-direction:column; }
  #pickup_text { padding:16px 18px 20px; }
  #pickup_links {
    grid-template-columns:1fr;
    gap:20px;
    margin-top:28px;
  }
  #pickup_image img {
    height: 130px;
  }
  .pickup_icon {
    flex:0 0 110px;
    padding-top: 40%;
  }
  .pickup_icon::before {
    width:44px;
    height:44px;
  }
    #pickup_lead {
    flex-direction: column;
  }

  #pickup_image {
    width: 100%;
    height: 130px;
    border-radius: 15px 15px 0 0;
  }

  #pickup_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  #pickup_text {
    width: 100%;
    border-radius: 0 0 15px 15px;
  }
}

/* ===== search_area ===== */

.search-form {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 2px solid #1f4e89;
  background: #fff;
  border-radius: 10px;
}

.search-form input {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border: none;
  box-sizing: border-box;
  font-size: 1em;
  outline: none;
}
#pickup .search-form input, .search.sp .search-form input  {
  width: calc(100% - 50px);
}

.search-form input::placeholder {
  color: #777;
}

.search-form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  border: none;
  background-color: #1f4e89;
  cursor: pointer;
}

.search-form button::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background-color: #fff;
  -webkit-mask-image: url('/common_recruit/images/search.png');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url('/common_recruit/images/search.png');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}


/* ===== Footer ===== */
#footer {
  position: relative;
  background: #1f4e89;
  color: #fff;
}

#footer .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 35px 24px 28px;
}

#foot-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 87.5%;
  font-weight: 700;
  margin-bottom: 4rem;
}

#foot-nav a {
  color: #fff;
  position: relative;
  padding: 0 14px;
  border: 1px solid #fff;
}

#foot-nav a:hover {
  background: rgba(255, 255, 255, .25);
}

#foot-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

#foot-logo {
  height: 38px;
  margin: 0 auto 24px;
}

#foot_caption {
  margin: 0 0 12px;
  font-size: 87.5%;
  font-weight: 700;
  text-align: center;
}

#foot_links {
  margin: 0 0 32px;
  font-size: 87.5%;
}

.foot_copy {
  text-align: center;
  line-height: 1;
  padding-bottom: 1.5rem;
}

@media (max-width: 1160px) {
  #foot-nav {
    gap: .5rem 1rem;
  }

  .global-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: 100vw;
    height: 100vh;
    background: rgba(31, 78, 137, 0.95);
    transform: translateX(100%);
    transition: .25s;
    padding-top: 72px;
    z-index: 500;
    margin: 0;
  }

  .global-menu.active {
    transform: translateY(0)
  }

  .global-menu a {
    color: #fff;
    align-items: center;
    font-size: 93.8%;
    padding: 16px 0;
  }

  .global-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
    margin-bottom: 3rem;
    align-items: flex-start;
  }

  #menu-toggle {
    display: block;
    position: relative;
    z-index: 11;
    width: 40px;
    height: 40px;
    background: transparent;
  }

  #menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    margin: 7px auto 0 auto;
  }

  .menu-toggle span+span {
    margin-top: 4px;
  }

  #header {
    height: 70px;
    backdrop-filter: saturate(180%) blur(10px);
  }
  #header { transform: translateZ(0); }
  #logo { transform: translateZ(0); }
  .open .global-menu {
    transform: none;
  }

  /* #main_visual img {
    max-width: initial;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 6 / 3;
  } */

  #main_visual h1 {
    font-size: 30px;
    margin-top: 30%;
  }

  #main_visual p {
    font-size: 125%;
    margin-top: 4rem;
  }

  #about {
    padding: 3rem 0;
  }

  #about .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #about::after {
    top: 260px;
    right: 2%;
    width: 200px;
  }

  #links .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tile img {
    height: 220px;
  }

  #cart_banner {
    display: none;
  }
}

.sp_br {
  display: none;
}

@media (max-width: 1160px) {
  .sp_br {
    display: inline;
  }
}

#slider {
  position: relative;
  width: 100%;
}
#slider img {
  display: block;
  width: 100%;
  height: auto;
}
#sliderSp {
  display: none;
}
#main_visual .inner,
#slider,
#slider .slick-list,
#slider .slick-track,
#slider .slick-slide {
  height: 100%;
}

#slider .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1160px) {
  #slider { display: none; }
  #sliderSp {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #sliderSp .slick-list,
  #sliderSp .slick-track,
  #sliderSp .slick-slide {
    height: 100%;
  }
  #sliderSp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* ===== login ===== */
#login_page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #1f4e89;
}

#login_main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

#login_box {
  width: 700px;
  height: 347px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  display: grid;
  grid-template-columns: 1fr 270px;
  column-gap: 28px;
  padding: 26px 28px;
  box-sizing: border-box;
}

#login_brand {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

#login_brand img {
  height: 46px;
  width: auto;
  display: block;
}

#login_info {
  font-size: 87.5%;
  line-height: 1.7;
}

#login_info p {
  margin: 0 0 8px;
}

#login_contact {
  color: #209e7a;
  margin-top: 10px;
}

#login_contact a {
  color: #209e7a;
  text-decoration: none;
}

#login_contact a:hover {
  text-decoration: underline;
}

#login_form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.login_input {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 13px;
  outline: none;
}

.login_input:focus {
  border-color: #218abd;
  box-shadow: 0 0 0 3px rgba(33,138,189,0.18);
}

#login_btn {
  width: 100%;
  height: 36px;
  border: 0;
  border-radius: 5px;
  background: #209e7a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
}

#login_btn:hover {
  filter: brightness(1.03);
}

#login_footer {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  padding: 12px 0 18px;
}

@media (max-width: 1160px) {
  #login_box {
    width: 100%;
    max-width: 700px;
    height: auto;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  #login_form {
    width: min(320px, 100%);
    margin: 0 auto;
  }
}

#page_top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 30px;
  height: 20px;
  background-color: #254e88;
  -webkit-mask: url(../images/pagetop.png) no-repeat center / contain;
  mask: url(../images/pagetop.png) no-repeat center / contain;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
#page_top.is_footer {
  background-color: #fff;
}

#page_top.is_show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  #page_top{
    bottom: 80px;
  }
}
@media (prefers-reduced-motion: reduce){
  #page_top{
    transition: none;
  }
}

.pc-br {
  display: inline;
}

@media (max-width: 1160px) {
  .pc-br {
    display: none;
  }
}

/* js-scroll */
.js-scroll {
  overflow-y: hidden !important;
}

.font_bold {font-weight: bold !important;}
.font_red {color: #dc2f2f !important;}
.font_blue {color: #274ca1 !important;}
.font_orange {color: #cf6d32 !important;}
.font_gray {color: #9a9a9a !important;}

.infomodule_page {
    padding-bottom: 2rem;
}

.infomodule_page ul {
    width: 100%;
    margin: 0 !important;
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
    gap: 1px
}

.infomodule_page li {
    margin: 0 !important;
    padding-left: 0.2rem !important;
    margin-bottom: 0.3rem !important;
}

.infomodule_page li a,
.infomodule_page li span {
    font-size: 80%;
    display: block;
    color: #000000;
    padding: 3px 12px;
    background-color: #F2F2F2;
    border: 1px solid #999;
    text-decoration: none;
    border-radius: 7px;
}

.infomodule_page ul li::before {
    content: none !important;
}

.infomodule_page li span {
    color: #fff;
    background-color: #7F7F7F;
}

.infomodule_page li a:hover {
    color: #fff;
    background-color: #7F7F7F;
}

/* スマホのみ表示 */
@media screen and (max-width: 1160px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }

  .sp_only {
    display: none !important;
  }
}

/* PCのみ表示 */
@media screen and (min-width: 1161px) {
  .sp {
    display: none !important;
  }

  .pc {
    display: block !important;
  }

  .sp_only {
    display: none !important;
  }
}