@charset "utf-8";

/*------------------------------------------------ 
style.css
------------------------------------------------*/

/* reset
------------------------------------------------*/
html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ul,
li {
  list-style: none;
  list-style-type: none;
  padding-left: 0px;
}

/* base
------------------------------------------------*/
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #ffffff;
  color: #414141;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8;
}
img {
  max-width: 100%;
  height: 100%;
  border: 0;
  vertical-align: top;
  object-fit: cover;
}
a {
  color: #414141;
  text-decoration: none;
}
a:hover {
  color: #658cff;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
section {
  margin: 0 auto;
  overflow: hidden;
}
.main {
  margin-top: 95px;
}
.contents {
  width: 95%;
  max-width: 1500px;
}
:root {
  --main-color: #191b84;
  --sub-color: #6b9fee;
  --accent-color: #ff7f00;
}
/*  ふわっと表示
------------------------------------------------*/
.inview {
  transition: opacity 0.7s, transform 0.7s;
  transform: translate(0, 5px);
  opacity: 0;
}
.inview.--show {
  transform: translate(0, 0);
  opacity: 1;
}
.inview .card__img {
  transform: scale(0.7) rotate(-60deg);
  opacity: 0;
  transition: transform 0.7s, opacity 0.7s;
}
.inview.--show .card__img {
  transform: scale(1) rotate(0);
  opacity: 1;
}
/*  header 
------------------------------------------------*/
header {
  width: 100%;
  /* height: 80px; */
  margin: 0 auto 0 auto;
  position: fixed;
  top: 0;
  z-index: 9999;
  background: #ffffff;
  /* border-bottom: 1px solid #cfcfcf; */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.header_bar {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  text-align: right;
  width: 100%;
  background: #f3f3f3;
}
.r-link {
  max-width: 1280px;
  width: 96%;
  margin: 0 auto;
  padding: 2px 8px;
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.r-link a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent var(--sub-color);
  margin-right: 0.5rem;
}
.r-link a {
  color: #414141;
}
.r-link a:hover {
  color: var(--sub-color);
  transition: 0.3s;
}
header .text {
  margin-top: 5px;
  margin-bottom: 10px;
  margin-left: 10%;
  font-size: 12px;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 0 6px;
}
h1.logo {
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 26%;
}
h1.logo a {
  display: block;
  margin-right: 10%;
}
h1.logo img {
  object-fit: contain;
}
.nav_list_entry {
  background: var(--accent-color);
  background: -moz-linear-gradient(
    -45deg,
    #ec6700 0%,
    #e38c4a 60%,
    #edb88f 100%
  );
  background: -webkit-linear-gradient(
    -45deg,
    #ec6700 0%,
    #e38c4a 60%,
    #edb88f 100%
  );
  background: linear-gradient(135deg, #ec6700 0%, #e38c4a 60%, #edb88f 100%);
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#global .nav_list_entry a {
  color: #ffffff;
  font-weight: bold;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
/* nav 
-----------------------------------------------*/
#global ul {
  display: flex;
  max-width: 1000px;
  justify-content: center;
  align-items: center;
}
#global ul li {
  display: block;
  font-size: 16px;
  padding: 8px 10px;
}
#global a {
  color: #414141;
  text-decoration: none;
  padding: 7px 10px;
  position: relative;
}

#global ul .nav_h a {
  color: #658cff;
}
#global ul li a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background: #658cff;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#global ul .nav_list_entry a::after {
  background: transparent;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#global ul .nav_list_entry:hover {
  background: #fff;
  border: 1px solid var(--accent-color);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#global ul .nav_list_entry:hover a {
  color: var(--accent-color);
}
#global ul li a:hover::after {
  width: 100%;
}
#nav_toggle {
  display: none;
}
#global ul .rec-nav {
  background: #ffc826;
  padding: 3px;
  margin-left: 5px;
}

@media screen and (max-width: 1100px) {
  #global ul li {
    font-size: 15px;
    padding: 0px 6px 0px 6px;
  }
  header .inner {
    padding: 38px 0 9px;
  }
}

@media screen and (max-width: 960px) {
  #global {
    display: none;
    position: absolute;
    top: 90px;
    width: 100%;
    background: rgba(0, 74, 153, 0.9);
    left: 0;
  }
  #global ul {
    display: block;
    margin: 0 auto 40px;
    width: 90%;
    margin-left: 3%;
  }
  #global ul li {
    margin: 0 auto;
    text-align: center;
    border-bottom: 1px solid #ffffff;
    border-right: 0;
    border-left: 0;
  }
  #global ul li + li {
    border-left: 0;
    border-right: 0;
  }
  #global ul li a::after {
    display: none;
  }
  #global ul li:last-child {
    border: none;
    margin-top: 32px;
  }
  #global ul li a {
    display: block;
    color: #ffffff;
    padding: 15px;
  }
  h1.logo {
    width: 240px;
  }
  /*開閉ボタン*/
  #nav_toggle {
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 4px;
    position: relative;
    top: 4px;
    z-index: 100;
  }
  #nav_toggle div {
    position: relative;
  }
  #nav_toggle span {
    display: block;
    height: 3px;
    background: #333;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #nav_toggle span:nth-chld(1) {
    top: 0px;
  }
  #nav_toggle span:nth-child(2) {
    top: 12px;
  }
  #nav_toggle span:nth-child(3) {
    top: 24px;
  }

  /*開閉ボタンopen時*/
  .open #nav_toggle span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}
@media (max-width: 480px) {
  h1.logo {
    width: 56%;
    margin-right: 0;
  }
  #nav_toggle {
    width: 32px;
    height: 32px;
    top: 0;
  }
  header .inner {
    padding: 32px 0 8px;
  }
}

/* pagetop
------------------------------------------------*/

#pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  margin-bottom: 0px;
  z-index: 10;
}
#pagetop a {
  display: block;
  text-decoration: none;
  width: 60px;
  height: 30px;
}
#pagetop a:hover {
  opacity: 0.5;
}
/* 採用情報
------------------------------------------------*/
.recruit_info h2 {
  font-size: clamp(20px, 5vw, 28px);
  white-space: nowrap;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 32px;
}
.c-column {
  display: grid;
  width: 96%;
  margin: 0 auto;
}
.c-red-section {
  margin-block: 40px;
  padding-block: 120px 96px;
  background-color: #fff4f4;
  text-align: center;
}
.c-card-link-has-title__image {
  width: 100%;
  aspect-ratio: 7/4;
}
.c-card-link-has-title__image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}
.c-column.-three {
  grid-template-columns: repeat(2, clamp(348px, calc(96% / 3), 462px));
  gap: 40px;
  justify-content: center;
}
.c-card-link-has-title.-height-fit {
  height: 100%;
}
.c-card-link-has-title {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
  color: #333;
  text-align: left;
  cursor: pointer;
}
a.c-card-link-has-title,
button.c-card-link-has-title {
  transition: 0.2s;
}
.c-card-link-has-title__title {
  position: relative;
  padding-block: 32px 28px;
  padding-inline: 24px;
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
}
.c-card-link-has-title.-big .c-card-link-has-title__title {
  font-size: clamp(20px, 5vw, 26px);
  white-space: nowrap;
  text-align: center;
  padding-block: 24px;
}
.c-card-link-has-title__title::before {
  position: absolute;
  bottom: 0;
  left: 24px;
  content: "";
  display: block;
  width: calc(100% - 48px);
  height: 3px;
  background-color: #221815;
}
.c-card-link-has-title__title::after {
  position: absolute;
  bottom: 0;
  left: 24px;
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background-color: var(--sub-color);
}
.c-card-link-has-title__text {
  padding-block: 24px 40px;
  padding-inline: 24px 84px;
  font-size: 1.4rem;
  line-height: 1.6;
}
.c-card-link-has-title.-big .c-card-link-has-title__text {
  padding-block: 16px 60px;
  padding-inline: 24px;
  text-align: center;
}
@media (max-width: 820px) {
  .c-column.-three {
    justify-content: space-evenly;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .c-column.-three {
    justify-content: space-evenly;
    grid-template-columns: repeat(2, clamp(264px, calc(96% / 2), 462px));
    gap: 8px;
  }
  .c-card-link-has-title.-big .c-card-link-has-title__title {
    font-size: clamp(20px, 5vw, 22px);
    padding-block: 18px;
  }
  .c-card-link-has-title.-big .c-card-link-has-title__text {
    padding-block: 16px 40px;
    padding-inline: 16px;
  }
}
@media (max-width: 592px) {
  .c-column.-three {
    display: block;
  }
  .c-column__box {
    width: 94%;
    margin: 40px auto;
  }
  .c-red-section {
    padding-block: 64px 96px;
  }
}
/* footer
------------------------------------------------*/

footer {
  width: 100%;
  margin: 30px auto 0px auto;
  padding-top: 0px;
  color: #222222;
}
.logo {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
}
.footer_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_nav ul li {
  display: block;
  font-size: 14px;
  border-right: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  padding: 0px 10px 0px 10px;
}
.footer_nav ul li + li {
  border-left: 0;
  border-right: 1px solid #cccccc;
}
.footer_content .inner {
  margin: 50px auto 40px auto;
  overflow: hidden;
}
address {
  clear: both;
  text-align: center;
  font-size: 90%;
  font-style: normal;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0px 60px;
}
.footer-bar {
  background: #1d2087;
  height: 105px;
  margin-bottom: 0px;
}
.footer-bar-inner {
  position: relative;
  overflow: hidden;
  margin-bottom: 0px;
}
.footer-bar-inner .logo {
  width: 320px;
  /* width: 90%; */
  margin: 16px auto 0px auto;
}

#copyright {
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  text-align: center;
  vertical-align: baseline;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 14px;
}
@media (max-width: 820px) {
  .footer_nav ul li {
    font-size: 13px;
    padding: 0px 8px 0px 8px;
  }
}
@media (max-width: 480px) {
  .footer_nav li {
    position: relative;
  }
  .footer_nav li:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.5em;
    height: 0.5em;
    z-index: 10;
    border-right: 2px solid;
    border-bottom: 2px solid;
    content: "";
    background-color: transparent;
    transform: translateY(-50%) rotate(-45deg);
  }
  .footer-bar-inner .logo {
    width: 80%;
  }
}
/* ---------------------------------------
 page_head
------------------------------------------ */
.page_head {
  background-color: #ebf9fe;
  position: relative;
  height: 240px;
  margin-top: 56px;
}
.bg_blur {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.page_head picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  filter: blur(1px);
}
.page_head picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: 0 -100px; */
}
.page_head h1 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  font-size: clamp(26px, 5vw, 38px);
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 0 1px #000, 0 0 1px #000, 0 0 2px #000, 0 0 3px #000;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.05em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.page_head h1 span {
  font-size: 0.7em;
}
@media (max-width: 820px) {
  .page_head {
    height: 220px;
    margin-top: 56px;
  }
  .page_head picture img {
    object-position: -128px 0;
  }
}
@media (max-width: 480px) {
  .page_head {
    height: 144px;
  }
  .page_head h1 {
    line-height: 1;
  }
  .page_head picture img {
    object-position: -130px 0;
  }
}
/* ---------------------------------------
 固定ページの共通部品
------------------------------------------ */
.container-1080 {
  max-width: 1080px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
