@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-padding-top: 70px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: rgb(184, 201, 192);
  margin: 0;
  padding: 0;
}

.italic-text {
  font-family: "Noto Sans JP", sans-serif;
  font-style: italic;
}

a {
  color: #000;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: bottom;
}

/* ==========================================================================
   Typography (4の倍数ルール適用)
   ========================================================================== */
h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

p {
  font-size: 0.875rem;
}

h5 {
  font-size: 0.75rem;
}

dt {
  font-size: 1rem;
}

dd {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 5.4rem;
  }
  h2 {
    font-size: 3.25rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  p {
    font-size: 1rem;
  }
  h5 {
    font-size: 0.875rem;
  }
  dd,
  dt {
    font-size: 1rem;
  }
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  line-height: 1.7;
  font-weight: 400;
}

p {
  color: #333333;
  line-height: 1.7;
  font-weight: 400;
}

/*-----flex-----*/
.flex {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.flex-column {
  display: flex;
  flex-direction: column;
}

.recruit-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.recruit-btn a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  border: 2px solid #ffffff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: #1d83d7;
  color: #fff;
  letter-spacing: 0.1em;
}
.recruit-btn a:hover {
  background-color: rgb(43.0840163934, 143.6209016393, 226.4159836066);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.recruit-btn a:active {
  transform: translateY(2px);
}
.recruit-btn a {
  width: 120px;
  padding: 10px 0;
}

@media (min-width: 992px) {
  header .recruit-btn a {
    width: auto;
    padding: 8px 25px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .header-menu .recruit-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .header-menu .recruit-btn a {
    width: 260px;
    padding: 18px 0;
    font-size: 20px;
  }
}
/* ==========================================================================
   ページトップボタン
   ========================================================================== */
.page-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  font-size: 14px;
  padding-top: 6px;
  font-weight: bold;
  color: #ffffff;
  background: #de8006;
  border: 2px solid #ffffff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  letter-spacing: 1px;
}

.is-active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   スクロールアニメーション（上からフワッと降りる）
============================================ */
.js-fade {
  opacity: 0;
  transform: translateY(-15px); /* 15px上からスタート */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  /* 画面に入って「is-show」が付いた時の姿 */
}
.js-fade.is-show {
  opacity: 1;
  transform: translateY(0); /* 元の位置へ */
}

/* ============================================
   1. HEADER 全体の箱とスクロール時の設定
============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  background-color: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}
header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}
header {
  /* --- ロゴ --- */
}
header .logo-flex {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}
header .logo-flex img {
  width: 120px;
  height: auto;
}
header .logo-flex span {
  font-weight: 700;
  font-size: 13px;
  display: block;
}
header {
  /* --- 右側のセット（ボタン・ハンバーガー） --- */
}
header .header-right-set {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 400px) {
  header .header-right-set {
    gap: 10px;
  }
}
@media (min-width: 992px) {
  header .header-right-set {
    gap: 20px;
  }
}
header .header-right-set {
  /* メニュー　スマホではハンバーガーメニューの.recruit-btnを隠す */
}
@media (min-width: 992px) {
  header .header-right-set .header-menu {
    display: block;
    order: 1;
    margin-right: 20px;
  }
  header .header-right-set .header-menu .recruit-btn {
    display: none;
  }
}
header .header-right-set {
  /* 応募ボタン */
}
header .header-right-set .recruit-btn {
  display: block;
  order: 1;
}
@media (min-width: 992px) {
  header .header-right-set .recruit-btn {
    order: 2;
  }
}
header .header-right-set {
  /* ハンバーガーボタン */
}
header .header-right-set .menu-trigger {
  display: block;
  order: 2;
  position: relative;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  z-index: 2000;
}
header .header-right-set .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 7px;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
}
header .header-right-set .menu-trigger span:nth-of-type(1) {
  top: 12px;
}
header .header-right-set .menu-trigger span:nth-of-type(2) {
  top: 21px;
}
header .header-right-set .menu-trigger span:nth-of-type(3) {
  top: 30px;
}
header .header-right-set .menu-trigger.is-active span {
  background-color: #002c50;
}
header .header-right-set .menu-trigger.is-active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
header .header-right-set .menu-trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}
header .header-right-set .menu-trigger.is-active span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
@media (min-width: 992px) {
  header .header-right-set .menu-trigger {
    display: none;
  }
}
header {
  /* --- スクロール時の変化 --- */
}
header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
header.is-scrolled .logo-flex {
  color: #002c50;
}
header.is-scrolled .logo-flex span {
  color: #002c50;
}
header.is-scrolled .menu-trigger span {
  background-color: #002c50;
}
@media (min-width: 992px) {
  header.is-scrolled .header-menu ul li a {
    color: #002c50;
  }
  header.is-scrolled .header-menu ul li a:hover {
    color: #de8006;
  }
}

/* ============================================
   2. メニューの中身・スマホ全画面設定
============================================ */
@media (max-width: 991px) {
  .header-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    transition: all 0.4s ease;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-menu.is-active {
    right: 0;
  }
  .header-menu ul {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .header-menu ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .header-menu ul li a {
    display: block;
    padding: 14px 0;
    color: #002c50;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
  }
  .header-menu ul li a:hover {
    opacity: 0.7;
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  .header-menu ul .nav-item a::after {
    content: " ↗";
    font-size: 0.8em;
    margin-left: 5px;
  }
}
@media (min-width: 992px) {
  .header-menu ul {
    display: flex;
    list-style: none;
    gap: 4vw;
  }
  .header-menu ul li:first-child, .header-menu ul li.nav-item {
    display: none;
  }
  .header-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  .header-menu ul li a:hover {
    color: #de8006;
  }
}

footer {
  background-color: #002c50;
  padding: 60px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .logo {
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}
footer .logo .logo-flex {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #ffffff;
}
footer .logo .logo-flex img {
  width: 150px;
  height: auto;
}
footer .logo .logo-flex .italic-text {
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1;
}
footer .footer-nav {
  width: 100%;
}
footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
footer .footer-nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
}
footer .footer-nav ul li a:hover {
  opacity: 0.7;
  text-decoration: underline;
  text-underline-offset: 5px;
}
footer .footer-nav ul .nav-item a::after {
  content: " ↗";
  font-size: 0.8em;
  margin-left: 5px;
}
footer .copy-right {
  color: #ffffff;
  font-size: 10px;
  opacity: 0.8;
  text-align: center;
}
@media (min-width: 768px) {
  footer {
    padding: 60px 40px;
  }
  footer .footer-nav ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}

#mainvisual {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 500px;
}
@media (min-width: 768px) {
  #mainvisual {
    height: 60vh;
  }
}
#mainvisual {
  /* 中身の配置設定 */
  display: flex;
  align-items: center;
  overflow: hidden;
  /* --- 💡追加：動画の設定 --- */
}
#mainvisual .mv-video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 画面の比率に合わせて隙間なく広げる */
  z-index: 0;
  /* 一番奥に配置（オーバーレイの下） */
}
#mainvisual .mv-video.video-sp {
  display: block;
}
@media (min-width: 768px) {
  #mainvisual .mv-video.video-sp {
    display: none;
  }
}
#mainvisual .mv-video.video-pc {
  display: none;
}
@media (min-width: 768px) {
  #mainvisual .mv-video.video-pc {
    display: block;
  }
}
#mainvisual .container {
  width: 100%;
  /* 基本は親に合わせる */
  max-width: 1000px;
  padding: 0 18px;
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
}
#mainvisual .main-content {
  max-width: 900px;
  margin-bottom: -13px;
  /* マイナスにすると上に上がります */
}
@media (min-width: 768px) {
  #mainvisual .main-content {
    margin-bottom: -40px;
  }
}
#mainvisual .main-content .main-title {
  font-weight: bold;
  color: #de8006;
  line-height: 1.4;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  #mainvisual .main-content .main-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 436px) {
  #mainvisual .main-content .main-title {
    font-size: 50px;
  }
}
@media (min-width: 600px) {
  #mainvisual .main-content .main-title {
    font-size: 70px;
  }
}
@media (min-width: 768px) {
  #mainvisual .main-content .main-title {
    font-size: 86px;
  }
}
@media (min-width: 1200px) {
  #mainvisual .main-content .main-title {
    font-size: 100px;
  }
}
#mainvisual .main-content .sub-title {
  font-weight: bold;
  color: #ffffff;
  line-height: 1.4;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  /*380px以下で改行 */
}
@media (min-width: 380px) {
  #mainvisual .main-content .sub-title .br {
    display: none;
  }
}
#mainvisual {
  /* 重ねるグラデーション */
}
#mainvisual .visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(168deg, rgba(0, 44, 80, 0.8) 64%, rgba(0, 44, 80, 0.8) 65%, transparent calc(65% + 1px));
  mix-blend-mode: hard-light;
  will-change: transform;
}

#achievement {
  padding-top: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  #achievement {
    padding-top: 120px;
  }
}
#achievement .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 18px;
}
@media (min-width: 400px) {
  #achievement .container .br {
    display: none;
  }
}
#achievement {
  /* --- [1] 左側の文章エリア --- */
}
#achievement .text-comment {
  width: 100%;
  /* スマホは横いっぱい */
  margin-bottom: 40px;
  /* スマホで画像との隙間を作る */
}
@media (min-width: 992px) {
  #achievement .text-comment {
    margin-bottom: 80px;
  }
}
#achievement .text-comment h2 {
  color: #002c50;
  margin-bottom: 10px;
}
#achievement .text-comment h3 {
  color: #002c50;
  margin-bottom: 25px;
}
#achievement .text-comment p {
  font-weight: 700;
  line-height: 2;
}
#achievement {
  /* スライダーのwrapper */
}
#achievement .infinite-slider .swiper-wrapper {
  transition-timing-function: linear;
}
#achievement {
  /* スライド */
}
#achievement .infinite-slider .swiper-slide {
  height: 320px;
  width: auto;
}
@media (min-width: 992px) {
  #achievement .infinite-slider .swiper-slide {
    height: 600px;
  }
}
#achievement .infinite-slider .swiper-slide img {
  width: auto;
  height: 100%;
}

#value {
  padding: 60px 18px 40px 18px;
  background-color: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  #value {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
#value h2 {
  color: #002c50;
  margin-bottom: 30px;
  display: inline-block;
}
@media (min-width: 768px) {
  #value h2 {
    margin-bottom: 80px;
  }
}
#value {
  /* カードを囲むコンテナ */
}
#value .value-container {
  max-width: 1000px;
  margin: 0 auto;
  /* スマホ・PC共通のFlex設定（縦積み・中央揃え） */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* --- PCレイアウト（横並び） --- */
}
@media (min-width: 992px) {
  #value .value-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
}
#value .value-item {
  width: 100%;
  max-width: 350px;
  margin-bottom: 30px;
  /* スマホでの下の余白 */
}
@media (min-width: 992px) {
  #value .value-item {
    margin-bottom: 0;
  }
}
#value .value-item .value-image {
  width: 100%;
  height: 280px;
  position: relative;
  /*z-indexの基準 */
  z-index: 1;
  /* テキストより奥 */
}
#value .value-item .value-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
#value .value-item {
  /* --- テキストボックスエリア --- */
}
#value .value-item .value-textbox {
  /* [1] 配置と重なり（最重要） */
  position: relative;
  z-index: 2;
  margin: -40px auto 0;
  /* [2] サイズ */
  width: 90%;
  height: 180px;
}
#value .value-item .value-textbox .br {
  display: none;
}
@media (min-width: 768px) {
  #value .value-item .value-textbox {
    height: 220px;
  }
  #value .value-item .value-textbox .br {
    display: block;
  }
}
#value .value-item .value-textbox {
  /* [3] 中身のレイアウト（Flexboxでど真ん中へ） */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* 装飾 */
  background-color: #de8006;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#value .value-item .value-textbox h3 {
  margin-bottom: 12px;
  color: #ffffff;
}
#value .value-item .value-textbox p {
  color: #ffffff;
}

#business {
  background-color: #002c50;
}
#business .section-header {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 240px;
}
@media (min-width: 992px) {
  #business .section-header {
    height: 350px;
  }
}
#business .section-header .business-header-img {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#business .section-header .business-header-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #002c50;
  mix-blend-mode: hard-light;
  z-index: 2;
}
#business .section-header .business-header-img .header-img-left,
#business .section-header .business-header-img .header-img-right {
  flex: 1;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
#business .section-header .business-header-img .header-img-left {
  background-image: url("../../images/008left.jpg");
  background-position: 50% 100%;
}
@media (min-width: 992px) {
  #business .section-header .business-header-img .header-img-left {
    background-position: 40% 80%;
  }
}
#business .section-header .business-header-img .header-img-right {
  background-image: url("../../images/008right.jpg");
  background-position: 50% 30%;
}
#business .section-header .header-text {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  text-align: left;
}
#business .section-header h2,
#business .section-header p {
  color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 18px;
}
#business .section-header h2 {
  font-size: 26px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  #business .section-header h2 {
    font-size: 52px;
  }
}
#business .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  #business .container {
    padding-bottom: 120px;
  }
}
#business .container img,
#business .container .business-unit {
  width: 100%;
  max-width: 991px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#business .container img .text-box,
#business .container .business-unit .text-box {
  padding: 40px 18px 15px;
}
@media (min-width: 768px) {
  #business .container img .text-box,
  #business .container .business-unit .text-box {
    padding: 80px 18px 30px;
  }
}
@media (min-width: 1028px) {
  #business .container img .text-box,
  #business .container .business-unit .text-box {
    padding: 80px 0 30px;
  }
}
#business .container img .text-box h2,
#business .container .business-unit .text-box h2 {
  color: #de8006;
}
#business .container img .text-box h3,
#business .container img .text-box p,
#business .container .business-unit .text-box h3,
#business .container .business-unit .text-box p {
  color: #ffffff;
  margin-top: 15px;
}

#interview {
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  #interview {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
@media (min-width: 400px) {
  #interview .container .br {
    display: none;
  }
}
#interview .container .section-header {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #interview .container .section-header {
    margin-bottom: 80px;
  }
}
#interview .container .section-header h2,
#interview .container .section-header p {
  color: #002c50;
}
#interview .container .interview-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px 40px 18px;
}
#interview .container .interview-unit .profile-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 991px;
}
@media (min-width: 992px) {
  #interview .container .interview-unit .profile-card {
    flex-direction: row;
    align-items: stretch;
  }
  #interview .container .interview-unit .profile-card .profile-text {
    width: 300px;
  }
  #interview .container .interview-unit .profile-card .profile-images {
    flex: 1;
    display: flex;
  }
  #interview .container .interview-unit .profile-card .profile-images img {
    height: 100%;
  }
}
#interview .container .interview-unit .profile-card .profile-text {
  background-color: #002c50;
  padding: 30px;
  color: #ffffff;
}
#interview .container .interview-unit .profile-card .text-orange {
  color: #de8006;
  font-weight: 700;
  margin-bottom: 16px;
}
#interview .container .interview-unit .profile-card h4 {
  font-weight: 400;
  margin-top: 10px;
}
#interview .container .interview-unit .profile-card .certification {
  margin-top: 20px;
}
#interview .container .interview-unit .profile-card .certification h5 {
  display: inline-block;
  background-color: #ffffff;
  color: #002c50;
  padding: 5px 10px;
  margin-bottom: 10px;
  line-height: 1;
}
#interview .container .interview-unit .profile-card .certification ol {
  font-weight: 300;
  font-size: 12px;
  padding-left: 1.5em;
}
@media (min-width: 768px) {
  #interview .container .interview-unit .profile-card .certification ol {
    font-size: 14px;
  }
}
#interview .container .interview-unit .profile-card .certification ol li {
  margin-bottom: 8px;
}
#interview .container .interview-unit .profile-card .profile-images img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
#interview .container .interview-body {
  width: 100%;
  max-width: 991px;
  padding: 20px 0 15px;
}
@media (min-width: 768px) {
  #interview .container .interview-body {
    padding: 20px 16px 15px;
  }
}
@media (min-width: 1026px) {
  #interview .container .interview-body {
    padding: 20px 0 15px;
  }
}
#interview .container .interview-body .question-block {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  #interview .container .interview-body .question-block {
    margin-bottom: 60px;
  }
}
#interview .container .interview-body .question-block .orange-line {
  color: #002c50;
  padding-bottom: 8px;
  border-bottom: 3px solid #de8006;
  width: 100%;
}
#interview .container .interview-body .question-block h4,
#interview .container .interview-body .question-block p {
  color: #333333;
  margin-top: 12px;
}
#interview .container .interview-body .question-block p {
  line-height: 1.8;
}

#recruitment {
  background-color: #ececec;
  padding: 60px 0 40px 0;
}
@media (min-width: 768px) {
  #recruitment {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
#recruitment .container {
  width: 100%;
  max-width: 991px;
  margin: 0 auto;
}
#recruitment .container h3,
#recruitment .container dl {
  color: #333333;
}
#recruitment .container .section-header {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #recruitment .container .section-header {
    margin-bottom: 80px;
  }
}
#recruitment .container .section-header h2 {
  color: #002c50;
}
@media (min-width: 400px) {
  #recruitment .container .br {
    display: none;
  }
}
#recruitment .container .job-card {
  background-color: #ffffff;
  margin: 0 18px 40px 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#recruitment .container .job-card .job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
@media (min-width: 768px) {
  #recruitment .container .job-card .job-header {
    padding: 30px 20px;
  }
}
#recruitment .container .job-card .job-header h3 {
  display: flex;
  align-items: center;
  margin: 0;
  /* オレンジの四角 */
}
#recruitment .container .job-card .job-header h3::before {
  content: "";
  /* 空っぽの箱を作る */
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #de8006;
  margin-right: 12px;
}
#recruitment .container .job-card .job-image {
  width: 100%;
  height: 250px;
}
#recruitment .container .job-card .job-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#recruitment .container .job-card .job-details {
  padding: 20px;
}
#recruitment .container .job-card .job-details .detail-list {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  #recruitment .container .job-card .job-details .detail-list {
    grid-template-columns: 120px 1fr;
    border-top: 1px solid #eee;
  }
}
@media (min-width: 768px) {
  #recruitment .container .job-card .job-details .detail-list dt,
  #recruitment .container .job-card .job-details .detail-list dd {
    border-bottom: 1px solid #eee;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
#recruitment .container .job-card .job-details .detail-list dt {
  font-weight: bold;
  padding-bottom: 6px;
}
#recruitment .container .job-card .job-details .detail-list dd {
  margin: 0;
  padding-bottom: 24px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  #recruitment .container .job-card .job-details .detail-list dd {
    padding-bottom: 30px;
  }
}

#contact {
  position: relative;
  width: 100%;
  height: 400px;
}
@media (min-width: 768px) {
  #contact {
    height: 45vw;
  }
}
#contact {
  background-image: url("../../images/005.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
#contact .contact-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
}
#contact h2 {
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  #contact h2 {
    font-size: 44px;
  }
}
#contact .contact-card {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 30px 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}
@media (min-width: 768px) {
  #contact .contact-card {
    max-width: 600px;
  }
}
#contact .contact-card h3 {
  margin-bottom: 20px;
  color: #333333;
}
#contact .contact-card .recruit-btn a {
  margin-top: 10px;
}
@media (min-width: 768px) {
  #contact .contact-card .recruit-btn a {
    width: 200px;
    font-size: 18px;
    padding: 15px 0;
  }
}/*# sourceMappingURL=style.css.map */