@charset "UTF-8";
/* reset */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, blockquote, th, td, header, section, article, footer, article, aside, time, nav, a {
  margin: 0;
  padding: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
}

p {
  text-justify: inter-ideograph;
  margin: 0;
}

header, section, article, footer, article, aside, time, nav {
  display: block;
}

ul {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
}

figure {
  display: block;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* root */
:root {
  --key-color-blue: #184895;
  --key-color-red: #B40000;
  --text-color: #363636;
  --base-font-family: "Noto Serif JP", serif;
  --base-letter-spacing: .12em;
  --base-line-height: 2em;
  --base-font-size: 16px;
  --link-color: #184895;
  --link-text-color: #fff;
  --heading-text-color: #363636;
  --heading-text-sub-color: #B40000;
  --heading-font-family: "Noto Serif JP", serif;
  --heading-font-size: min(3.22vw,62px);
  --heading-font-weight: 100;
  --heading-line-height: 1.4;
  --heading-margin-bottom: min(6.666vw,128px);
  --heading-padding-bottom: min(.6vw,10px);
  --lower-heading-font-size: min(3.22vw,62px);
}
@media screen and (max-width: 768px) {
  :root {
    --heading-font-size: 8.5vw;
    --heading-margin-bottom: 9vw;
    --heading-padding-bottom: 1vw;
    --lower-heading-font-size: 8.5vw;
  }
}

/* common */
* {
  box-sizing: border-box;
}

body {
  background: #F8F8F8;
  color: var(--text-color);
  counter-reset: number 0;
  font-family: var(--base-font-family);
  font-feature-settings: "palt";
  font-size: var(--base-font-size);
  letter-spacing: var(--base-letter-spacing);
  line-height: var(--base-line-height);
  position: relative;
}

img {
  vertical-align: bottom;
}

a {
  display: block;
  text-decoration: none;
  transition: 0.15s;
  outline: none;
}
a:hover {
  opacity: 0.7;
  text-decoration: none;
}
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

header {
  background: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}
header .header-wrap {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  header .header-wrap {
    border-top: 3px solid var(--key-color-blue);
  }
}
header .header-logo {
  background: var(--key-color-blue);
  border-radius: 0 0 12px 0;
  position: absolute;
  top: 0;
  left: 0;
  padding: 34px 26px;
  width: 213px;
}
@media screen and (max-width: 768px) {
  header .header-logo {
    border-radius: 0 12px 0 0;
    top: calc(100vh + 12.533vw);
    padding: 2vw 3vw;
    width: 32vw;
  }
  header .header-logo::after {
    border-bottom: 3px solid var(--key-color-blue);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 3px;
  }
}
header .header-logo img {
  width: 100%;
}
header .header-right-wrap {
  position: relative;
  margin-left: auto;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  header .header-right-wrap {
    margin-left: 0;
  }
}
header .header-right-wrap ul.header-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  header .header-right-wrap ul.header-nav-content {
    border-bottom: 1px solid #fff;
    display: block;
    margin-bottom: 6vw;
    padding-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  header .header-right-wrap ul.header-nav-content li.nav-contact {
    display: none;
  }
}
header .header-right-wrap ul.header-nav-content li a {
  color: var(--text-color);
  display: block;
  line-height: 1.2em;
  padding: 18px 45px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  header .header-right-wrap ul.header-nav-content li a {
    color: #fff;
    padding: 4vw 1vw;
    text-align: left;
    display: block;
  }
}
header .header-right-wrap ul.header-nav-content li a .main {
  font-size: 16px;
  font-weight: var(--heading-font-weight);
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  header .header-right-wrap ul.header-nav-content li a .main {
    font-size: 6vw;
    line-height: 1em;
  }
}
header .header-right-wrap ul.header-nav-content li a .sub {
  font-size: 12px;
  line-height: 1em;
}
header .header-right-wrap ul.header-nav-content li:nth-child(2) a::before, header .header-right-wrap ul.header-nav-content li:nth-child(2) a::after {
  border-right: 1px solid var(--text-color);
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 75%;
  transform: translate3d(0, -50%, 0);
}
@media screen and (max-width: 768px) {
  header .header-right-wrap ul.header-nav-content li:nth-child(2) a::before, header .header-right-wrap ul.header-nav-content li:nth-child(2) a::after {
    display: none;
  }
}
header .header-right-wrap ul.header-nav-content li:nth-child(2) a::before {
  left: 0;
}
header .header-right-wrap ul.header-nav-content li:nth-child(2) a::after {
  right: 0;
}
header .header-right-wrap ul li.nav-recruit {
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  header .header-right-wrap ul li.nav-recruit {
    margin-left: 0;
  }
}
header .header-right-wrap ul li.nav-recruit a {
  background-color: var(--key-color-red);
  color: #fff;
  display: block;
  line-height: 1.2em;
  padding: 23px 60px;
}
@media screen and (max-width: 768px) {
  header .header-right-wrap ul li.nav-recruit a {
    background-color: unset;
    padding: 4vw 1vw;
  }
}
header .header-right-wrap ul.header-nav-content-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header-right-wrap ul.header-nav-content-sp {
    display: block;
    margin-bottom: 5vw;
  }
  header .header-right-wrap ul.header-nav-content-sp li a {
    color: #fff;
    display: block;
  }
  header .header-right-wrap ul.header-nav-content-sp li:not(:last-of-type) {
    margin-bottom: 3vw;
  }
}
header .header-right-wrap ul.header-sns {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header-right-wrap ul.header-sns {
    display: block;
  }
  header .header-right-wrap ul.header-sns li {
    display: inline-block;
    margin-right: 10px;
    width: 20px;
  }
  header .header-right-wrap ul.header-sns li.sns-icon a {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: min(17.4vw, 33.53px);
  }
  header .header-right-wrap ul.header-sns li.sns-icon a svg {
    width: 100%;
    height: 100%;
  }
  header .header-right-wrap ul.header-sns li.sns-icon a svg.white {
    fill: #fff;
  }
}

.header-nav-contact-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-nav-contact-sp {
    display: block;
  }
  .header-nav-contact-sp a {
    background: var(--link-color);
    color: #fff;
    display: block;
    padding: 4vw 0 3vw;
    position: fixed;
    bottom: 0;
    left: 0;
    text-align: center;
    z-index: 11;
    width: 100%;
  }
  .header-nav-contact-sp a .main {
    font-size: 22px;
    font-weight: var(--heading-font-weight);
    line-height: 1em;
    display: block;
    margin-bottom: -27px;
  }
  .header-nav-contact-sp a .sub {
    font-size: 12px;
    line-height: 1em;
  }
}

footer .map {
  margin-bottom: 0.6%;
  position: relative;
  width: 100%;
  height: min(23.229vw, 446px);
}
@media screen and (max-width: 768px) {
  footer .map {
    margin-bottom: 2vw;
    height: auto;
  }
}
footer .map iframe {
  width: 100%;
  height: 100%;
}
footer .map .footer-content {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  width: min(41.4vw, 795px);
  height: 100%;
}
@media screen and (max-width: 768px) {
  footer .map .footer-content {
    position: relative;
    width: 100%;
  }
}
footer .map .footer-content .inner-wrap {
  padding: 2.5vw 2vw;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer .map .footer-content .inner-wrap {
    padding: 6.5vw 5vw;
    position: relative;
    transform: none;
    top: 0;
    width: 100%;
  }
}
footer .map .footer-content .inner-wrap .inner-heading {
  color: #fff;
  font-size: min(1.66vw, 30px);
  line-height: 1em;
  margin-bottom: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  footer .map .footer-content .inner-wrap .inner-heading {
    font-size: 6vw;
    margin-bottom: 4.5vw;
  }
}
footer .map .footer-content .inner-wrap .footer-menu {
  margin-bottom: 2.5vw;
}
@media screen and (max-width: 768px) {
  footer .map .footer-content .inner-wrap .footer-menu {
    margin-bottom: 6vw;
  }
}
footer .map .footer-content .inner-wrap .footer-menu li {
  display: inline-block;
  font-size: 14px;
  line-height: 1.2em;
  margin-bottom: 0.2vw;
  width: 28%;
}
@media screen and (max-width: 768px) {
  footer .map .footer-content .inner-wrap .footer-menu li {
    width: 45%;
  }
}
footer .map .footer-content .inner-wrap .footer-menu li a {
  color: #fff;
}
footer .map .footer-content .inner-wrap .footer-sns li {
  display: inline-block;
  width: 35px;
}
footer .map .footer-content .inner-wrap .footer-sns li:not(:last-of-type) {
  margin-right: 1.5vw;
}
@media screen and (max-width: 768px) {
  footer .map .footer-content .inner-wrap .footer-sns li:not(:last-of-type) {
    margin-right: 5vw;
  }
}
footer .map .footer-content .inner-wrap .footer-sns li.sns-icon a {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: min(17.4vw, 33.53px);
}
footer .map .footer-content .inner-wrap .footer-sns li.sns-icon a svg {
  width: 100%;
  height: 100%;
}
footer .map .footer-content .inner-wrap .footer-sns li.sns-icon a svg.white {
  fill: #fff;
}
footer .copyright {
  background: var(--key-color-blue);
  color: #fff;
  font-size: 12px;
  line-height: 1em;
  padding: 1em 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    text-align: right;
    padding-right: 1em;
  }
}

.main-wrap {
  width: 100%;
  overflow: hidden;
}

.section-wrap {
  margin-bottom: min(17.69vw, 345px);
  position: relative;
}
.section-wrap p:not(:last-of-type) {
  margin-bottom: 1em;
}

.section-inner-wrap-1200px {
  position: relative;
  margin: 0 auto;
  width: min(92%, 1200px);
}

.section-inner-wrap-1000px {
  position: relative;
  margin: 0 auto;
  width: min(92%, 1000px);
}

.heading-wrap {
  margin-bottom: var(--heading-margin-bottom);
  position: relative;
}
.heading-wrap h2 {
  color: var(--key-color-blue);
  font-size: var(--heading-font-size);
  font-weight: var(--heading-font-weight);
  letter-spacing: var(--base-letter-spacing);
  line-height: var(--heading-line-height);
  padding-bottom: var(--heading-padding-bottom);
  position: relative;
}
.heading-wrap h2 + p {
  color: var(--key-color-blue);
  display: inline;
  font-size: 14px;
  letter-spacing: var(--base-letter-spacing);
  line-height: 1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .heading-wrap h2 {
    letter-spacing: 0.1em;
  }
}
.heading-wrap::after {
  background: url(../images/heading_object.png) center no-repeat;
  content: "";
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 17px;
  height: 17px;
}
@media screen and (max-width: 768px) {
  .heading-wrap::after {
    bottom: -6vw;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}

.sp-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.flex-wrap {
  display: flex;
}

.link-off a {
  background: #ccc;
  border: none;
  box-shadow: none;
  pointer-events: none;
}
.link-off a a::after {
  display: none !important;
}

#toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  #toggle {
    background: var(--link-color);
    border-radius: 0 0 0 12px;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    height: 57px;
    width: 57px;
    transition: 0.2s;
    z-index: 11;
  }
  #toggle .button {
    background: #fff;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    transition: 0.3s;
    width: 45%;
  }
  #toggle .button::before, #toggle .button::after {
    background: #fff;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    transition: 0.3s;
    width: 100%;
  }
  #toggle .button::before {
    margin-top: -9px;
  }
  #toggle .button::after {
    margin-top: 9px;
  }
  #toggle .close {
    background: transparent;
  }
  #toggle .close::before, #toggle .close::after {
    margin-top: 0;
  }
  #toggle .close::before {
    transform: rotate(-45deg);
  }
  #toggle .close::after {
    transform: rotate(-135deg);
  }
}

@media screen and (max-width: 768px) {
  #menu {
    opacity: 0;
    transition: 0.3s;
  }
  #menu .nav-menu {
    background: var(--link-color);
    border-radius: 0 0 0 45px;
    padding: 0 11vw 7vw;
    padding-top: calc(5vw + 57px);
    position: fixed;
    top: 0;
    right: -100vw;
    transition: 0.3s;
    width: 80vw;
    z-index: 10;
  }
  #menu.open {
    display: block !important;
    opacity: 1;
    transition: 0.1s;
  }
  #menu.open .nav-menu {
    right: 0;
  }
}
.page_top {
  margin: 0;
  position: fixed;
  right: 40px;
  bottom: 40px;
  text-align: center;
  z-index: 10;
}
.page_top a {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 2px 5px 6px -5px rgba(92, 64, 2, 0.5);
  color: var(--text-color);
  display: block;
  font-size: 11px;
  height: 80px;
  line-height: 80px;
  position: relative;
  transition: all 0.2s;
  width: 80px;
}
.page_top a::before {
  border-top: 2px solid var(--text-color);
  content: "";
  width: 18px;
  position: absolute;
  top: 50%;
  left: 43%;
  transform: translate3d(-50%, -50%, 0px) rotate(-45deg);
}
.page_top a::after {
  border-top: 2px solid var(--text-color);
  content: "";
  width: 18px;
  position: absolute;
  top: 50%;
  left: 57%;
  transform: translate3d(-50%, -50%, 0px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .page_top {
    display: none;
  }
}

.more-link {
  display: flex;
  justify-content: flex-end;
}
.more-link a {
  color: var(--text-color);
  display: inline-block;
  text-align: right;
  padding-right: 89px;
  position: relative;
}
.more-link a::before, .more-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate3d(0%, -50%, 0);
}
.more-link a::before {
  border: 1px solid var(--text-color);
  border-radius: 100%;
  right: 29px;
  width: 50px;
  height: 50px;
}
.more-link a::after {
  background: url(../images/icon_link_arrow.svg) center right no-repeat;
  right: 0;
  width: 54px;
  height: 14px;
  transition: 0.15s;
}
.more-link a:hover::after {
  right: -4px;
}

.pagination {
  margin-bottom: 60px;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li {
  padding: 2px 10px;
}
.pagination ul li:not(:last-of-type) {
  margin-right: 20px;
}
.pagination ul li.prev, .pagination ul li.next {
  border: 1px solid;
  padding: 6px 30px;
  position: relative;
  height: 30px;
}
.pagination ul li.prev::after, .pagination ul li.next::after {
  border: 1px solid;
  border-color: var(--text-color) var(--text-color) transparent transparent;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
}
.pagination ul li.prev::after {
  transform: translate3d(-50%, -50%, 0) rotate(-135deg);
}
.pagination ul li.next::after {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.pagination ul li.on {
  background: var(--text-color);
  color: #fff;
}

/* ページネーション全体を中央揃えにするコンテナ */
.navigation.pagination {
  text-align: center; /* テキストを中央揃え */
  margin: 40px 0; /* 上下のマージンを調整 */
  /* ページネーションのリンクと数字のコンテナ */
}
.navigation.pagination .nav-links {
  display: flex; /* 横並びにする */
  justify-content: center; /* 中央揃えにする */
  flex-wrap: wrap; /* 画面幅が狭い場合に折り返す */
  align-items: center; /* 垂直方向の中央揃え */
  /* 各ページ番号と「次へ」「前へ」のスタイル */
}
.navigation.pagination .nav-links .page-numbers {
  display: inline-block; /* インラインブロック要素として扱う */
  margin-right: 15px; /* 右マージンを15px */
  padding: 8px 12px; /* 内側の余白（パディング） */
  text-decoration: none; /* 下線を削除 */
  color: #333; /* 文字色 */
  background-color: #f8f8f8; /* 背景色 */
  border: 1px solid #ccc; /* 1pxのボーダー */
  border-radius: 4px; /* 角を丸くする（任意） */
  line-height: 1; /* 行の高さを調整 */
  transition: all 0.3s ease; /* ホバー時のアニメーション */
  /* 現在のページ番号のスタイル */
  /* ドット (...) のスタイル */
  /* ホバー時のスタイル */
  /* 「次へ」「前へ」ボタンのスタイル調整 */
  /* 最後のページ番号には右マージンを適用しない */
}
.navigation.pagination .nav-links .page-numbers.current {
  background-color: #0073aa; /* 現在のページの背景色 */
  color: #fff; /* 現在のページの文字色 */
  border-color: #0073aa; /* 現在のページのボーダー色 */
  pointer-events: none; /* クリックできないようにする */
}
.navigation.pagination .nav-links .page-numbers.dots {
  border: none; /* ドットにはボーダーをつけない */
  background-color: transparent; /* 背景色なし */
  color: #333; /* 文字色 */
  padding: 8px 5px; /* ドットのパディングを調整 */
}
.navigation.pagination .nav-links .page-numbers:hover {
  background-color: #e0e0e0; /* ホバー時の背景色 */
  color: #000; /* ホバー時の文字色 */
  border-color: #999; /* ホバー時のボーダー色 */
}
.navigation.pagination .nav-links .page-numbers.prev, .navigation.pagination .nav-links .page-numbers.next {
  font-weight: bold; /* テキストを太くする */
  white-space: nowrap; /* テキストの折り返しを防ぐ */
}
.navigation.pagination .nav-links .page-numbers:last-child {
  margin-right: 0;
}

#main-img {
  position: relative;
  width: 100%;
  height: min(61.979vw, 1190px);
}
#main-img .main-img-wrap {
  width: min(96.093vw, 1845px);
  height: min(54.322vw, 1043px);
  margin-left: auto;
  position: relative;
}
#main-img .main-img-wrap img {
  width: 100%;
}
#main-img .main-img-wrap h2 {
  color: #fff;
  font-size: clamp(54px, 3.33vw, 64px);
  font-weight: var(--heading-font-weight);
  letter-spacing: 0.16em;
  line-height: 1.6em;
  position: absolute;
  bottom: 5vw;
  right: 5vw;
  text-align: right;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #main-img .main-img-wrap h2 {
    font-size: 7vw;
    right: 6.5vw;
    bottom: 0;
    transform: translate3d(0, 83%, 0);
  }
}
#main-img .main-img-wrap h2::after {
  content: "。";
  position: absolute;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  right: -5vw;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #main-img .main-img-wrap h2::after {
    right: -7.5vw;
  }
}
#main-img .main-img-wrap .main-button {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate3d(0, 50%, 0);
  z-index: 3;
}
#main-img .main-img-wrap .main-button a {
  background: #000F50;
  border-radius: 12px 0 0 0;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.2em;
  padding: 2vw 6vw 2.5vw 3.5vw;
}
#main-img .main-img-wrap .main-button a span {
  font-size: 12px;
  line-height: 1em;
  padding-left: 1em;
}
#main-img .main-img-wrap .main-button a::before {
  background: url(../images/arrow.png) center no-repeat;
  content: "";
  position: absolute;
  bottom: 1.5vw;
  left: 4%;
  width: 92%;
  height: 7px;
}
@media screen and (max-width: 768px) {
  #main-img .main-img-wrap .main-button {
    display: none;
  }
}
#main-img .scroll-arrow {
  position: absolute;
  left: min(1vw, 19.2px);
  bottom: min(13.333vw, 256px);
  z-index: 3;
}
#main-img .scroll-arrow::before {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  bottom: -75px;
  left: 43%;
  transform: translate3d(-50%, 0, 0);
  width: 1px;
  height: 65px;
}
@media screen and (max-width: 768px) {
  #main-img .scroll-arrow {
    display: none;
  }
}
#main-img::before {
  background: url(../images/main_background.jpg) center top no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(51.25vw, 984px);
  height: min(61.979vw, 1190px);
  z-index: 0;
}
#main-img::after {
  background: var(--key-color-blue);
  content: "";
  mix-blend-mode: multiply;
  position: absolute;
  transform: translate3d(0, 50%, 0) rotate(-9deg);
  right: -10%;
  bottom: -2.8vw;
  width: 120%;
  height: min(37.5vw, 720px);
}
@media screen and (max-width: 768px) {
  #main-img::after {
    bottom: -5vw;
    transform: translate3d(0, 50%, 0) rotate(-5deg);
    height: 44vw;
  }
}

#about.section-wrap {
  overflow: hidden;
  padding-top: min(10.625vw, 204px);
  padding-bottom: min(9.114vw, 175px);
}
@media screen and (max-width: 768px) {
  #about.section-wrap {
    padding-top: 38vw;
    padding-bottom: 11vw;
  }
}
#about.section-wrap .section-inner-wrap-1200px {
  z-index: 2;
}
#about.section-wrap .about-content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #about.section-wrap .about-content-wrap {
    display: block;
  }
}
#about.section-wrap .about-content-wrap .left {
  padding-right: 80px;
  width: 45%;
}
@media screen and (max-width: 768px) {
  #about.section-wrap .about-content-wrap .left {
    padding: 0 0 6vw;
    width: 100%;
  }
}
#about.section-wrap .about-content-wrap .left .heading-wrap::after {
  left: 0;
  transform: none;
}
#about.section-wrap .about-content-wrap .left .heading-wrap h2 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #about.section-wrap .about-content-wrap .left .heading-wrap h2 {
    color: var(--text-color);
  }
}
#about.section-wrap .about-content-wrap .left .heading-wrap h2 + P {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #about.section-wrap .about-content-wrap .left .heading-wrap h2 + P {
    color: var(--text-color);
  }
}
#about.section-wrap .about-content-wrap .left p {
  line-height: 2.5em;
}
#about.section-wrap .about-content-wrap .right {
  position: relative;
  width: 55%;
}
@media screen and (max-width: 768px) {
  #about.section-wrap .about-content-wrap .right {
    width: 80%;
  }
}
#about.section-wrap .about-content-wrap .right img {
  border-radius: 65px 0 0 0;
  width: 100%;
}
#about.section-wrap .about-object .object-pict {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(33.07vw, 635px);
  height: min(45.364vw, 871px);
  z-index: 1;
}
#about.section-wrap .about-object .object-pict img {
  width: 100%;
}
#about.section-wrap .about-object .object-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(66.4vw, 1275px);
  height: min(14.062vw, 270px);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #about.section-wrap .about-object .object-text {
    right: 0;
    bottom: 103vw;
    left: auto;
  }
}
#about.section-wrap .about-object .object-text img {
  width: 100%;
}

#pictrail::before {
  background: var(--key-color-blue);
  content: "";
  position: absolute;
  transform: rotate(-9deg);
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  z-index: 0;
}

.pictrail .infinity-slide {
  overflow-x: hidden;
}
.pictrail .infinity-slide .pictrail-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .pictrail .infinity-slide .pictrail-box {
    width: 234%;
  }
}
.pictrail .infinity-slide .pictrail-box div {
  width: 16%;
  margin-right: 0.6%;
}
@media screen and (max-width: 768px) {
  .pictrail .infinity-slide .pictrail-box div {
    width: 32.3%;
    margin-right: 1%;
  }
}
.pictrail .infinity-slide .pictrail-box div img {
  width: 100%;
}
.pictrail .infinity-slide:not(:last-of-type) {
  margin-bottom: 1%;
}
@media screen and (max-width: 768px) {
  .pictrail .infinity-slide:not(:last-of-type) {
    margin-bottom: 2%;
  }
}

#vision .heading-wrap {
  text-align: center;
}
#vision .vision-content {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: min(9.58vw, 184px);
  position: relative;
  width: clamp(1200px, 81.875vw, 1572px);
}
@media screen and (max-width: 768px) {
  #vision .vision-content {
    flex-wrap: wrap;
    margin-bottom: 9vw;
    width: 100%;
  }
}
#vision .vision-content:nth-child(even) {
  margin-right: auto;
}
#vision .vision-content:nth-child(even) .text {
  left: -4vw;
  margin-right: -4vw;
}
@media screen and (max-width: 768px) {
  #vision .vision-content:nth-child(even) .text {
    left: 0;
    margin: 0 auto;
  }
}
#vision .vision-content:nth-child(even) .text::before, #vision .vision-content:nth-child(even) .text::after {
  right: 0;
}
#vision .vision-content:nth-child(odd) {
  margin-left: auto;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #vision .vision-content:nth-child(odd) {
    flex-direction: row;
  }
}
#vision .vision-content:nth-child(odd) .text {
  right: -4vw;
  margin-left: -4vw;
}
@media screen and (max-width: 768px) {
  #vision .vision-content:nth-child(odd) .text {
    right: 0;
    margin: 0 auto;
  }
}
#vision .vision-content:nth-child(odd) .text::before, #vision .vision-content:nth-child(odd) .text::after {
  left: 0;
}
#vision .vision-content .pict {
  width: min(58.269%, 916px);
}
@media screen and (max-width: 768px) {
  #vision .vision-content .pict {
    margin-bottom: 7vw;
    width: 100%;
  }
}
#vision .vision-content .pict img {
  width: 100%;
}
#vision .vision-content:nth-child(2) .text::before {
  background: url(../images/vision_object_01.png) center no-repeat;
  background-size: contain;
  width: min(19.635vw, 377px);
  height: min(12.656vw, 243px);
}
@media screen and (max-width: 768px) {
  #vision .vision-content:nth-child(2) .text::before {
    width: 42vw;
    height: 27vw;
  }
}
#vision .vision-content:nth-child(3) .text::before {
  background: url(../images/vision_object_02.png) center no-repeat;
  background-size: contain;
  width: min(20.05vw, 385px);
  height: min(12.343vw, 237px);
}
@media screen and (max-width: 768px) {
  #vision .vision-content:nth-child(3) .text::before {
    width: 42vw;
    height: 27vw;
  }
}
#vision .vision-content:nth-child(4) .text::before {
  background: url(../images/vision_object_03.png) center no-repeat;
  background-size: contain;
  width: min(19.375vw, 372px);
  height: min(12.343vw, 237px);
}
@media screen and (max-width: 768px) {
  #vision .vision-content:nth-child(4) .text::before {
    width: 42vw;
    height: 27vw;
  }
}
#vision .vision-content:nth-child(2) .text::after {
  content: "Trust and Works";
}
#vision .vision-content:nth-child(3) .text::after {
  content: "For the Future of Our Children";
}
#vision .vision-content:nth-child(4) .text::after {
  content: "Who You Want to Be";
}
#vision .vision-content .text {
  position: relative;
  bottom: -1vw;
  width: calc(41.731% + 4vw);
  max-width: calc(656px + 4vw);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #vision .vision-content .text {
    width: 92%;
    max-width: 100%;
  }
}
#vision .vision-content .text::before {
  content: "";
  position: absolute;
  top: 0;
  transform: translate3d(0, -80%, 0);
  z-index: 0;
}
#vision .vision-content .text::after {
  color: #DEDEDE;
  font-family: "Corsiva Hebrew";
  font-size: min(1.875vw, 36px);
  font-weight: bold;
  position: absolute;
  top: 0;
  transform: translate3d(0, -100%, 0);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #vision .vision-content .text::after {
    font-size: 4.3vw;
    opacity: 0.6;
    top: -6vw;
  }
}
#vision .vision-content .text .content-outer-wrap {
  border: 1px solid var(--key-color-blue);
  padding: 10px;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}
#vision .vision-content .text .content-outer-wrap .content-inner-wrap {
  background: rgba(255, 255, 255, 0.8);
  padding: 35px;
}
@media screen and (max-width: 768px) {
  #vision .vision-content .text .content-outer-wrap .content-inner-wrap {
    padding: 5vw;
  }
}
#vision .vision-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap {
  margin-bottom: min(2.34vw, 45px);
  position: relative;
}
#vision .vision-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap h3 {
  color: var(--key-color-blue);
  font-size: min(2.8125vw, 54px);
  font-weight: var(--heading-font-weight);
  line-height: var(--heading-line-height);
  padding-bottom: var(--heading-padding-bottom);
  position: relative;
}
@media screen and (max-width: 768px) {
  #vision .vision-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap h3 {
    font-size: 7vw;
  }
}
#vision .vision-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap h3 .small {
  font-size: min(1.66vw, 32px);
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  #vision .vision-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap h3 .small {
    font-size: 6vw;
  }
}
#vision .vision-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap h3 + p {
  color: var(--key-color-blue);
  display: inline;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1em;
  padding-right: 10px;
}
#vision .vision-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap::after {
  border-bottom: 1px solid var(--key-color-red);
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 8px;
  height: 2px;
}

#movie .movie-content-wrap {
  overflow: hidden;
  position: relative;
  left: -10%;
  width: 120%;
  height: 40vw;
  transform: rotate(-9deg);
}
@media screen and (max-width: 768px) {
  #movie .movie-content-wrap {
    height: 72vw;
    transform: rotate(-4deg);
  }
}
#movie .movie-content-wrap iframe {
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  transform: rotate(9deg);
}
@media screen and (max-width: 768px) {
  #movie .movie-content-wrap iframe {
    transform: rotate(4deg);
  }
}

#recruit.section-wrap {
  padding-bottom: min(15.1vw, 290px);
}
#recruit.section-wrap .recruit-content-wrap {
  display: flex;
  width: clamp(1200px, 81.25vw, 1560px);
}
@media screen and (max-width: 768px) {
  #recruit.section-wrap .recruit-content-wrap {
    display: block;
    width: 100%;
  }
}
#recruit.section-wrap .recruit-content-wrap .left {
  width: min(56.41%, 880px);
}
@media screen and (max-width: 768px) {
  #recruit.section-wrap .recruit-content-wrap .left {
    margin-bottom: 6vw;
    width: 96%;
  }
}
#recruit.section-wrap .recruit-content-wrap .left img {
  border-radius: 0 65px 0 0;
  width: 100%;
}
#recruit.section-wrap .recruit-content-wrap .right {
  padding-left: min(2.6vw, 50px);
  position: relative;
  width: min(43.59%, 680px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #recruit.section-wrap .recruit-content-wrap .right {
    margin: 0 auto;
    padding: 0;
    width: 92%;
  }
}
#recruit.section-wrap .recruit-content-wrap .right .heading-wrap::after {
  left: 0;
  transform: none;
}
#recruit.section-wrap .recruit-content-wrap .right .text-area {
  margin-bottom: 45px;
}
#recruit.section-wrap .recruit-content-wrap .right .text-area p {
  font-size: 18px;
  line-height: var(--base-line-height);
}
#recruit.section-wrap .recruit-content-wrap .right .text-area ul {
  margin-bottom: 20px;
}
#recruit.section-wrap .recruit-content-wrap .right .text-area ul li {
  padding-left: 18px;
  position: relative;
}
#recruit.section-wrap .recruit-content-wrap .right .text-area ul li::before {
  border-bottom: 1px solid var(--key-color-red);
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  width: 10px;
  height: 1px;
}
#recruit.section-wrap .recruit-content-wrap .right .text-area ul li:not(:last-of-type) {
  margin-bottom: 8px;
}
#recruit.section-wrap .recruit-content-wrap .right .link-button a {
  background: var(--key-color-red);
  color: #fff;
  display: inline-block;
  font-size: 18px;
  line-height: 1em;
  padding: 25px 45px;
}
@media screen and (max-width: 768px) {
  #recruit.section-wrap .recruit-content-wrap .right .link-button a {
    display: block;
    text-align: center;
    width: 100%;
  }
}
#recruit.section-wrap .recruit-object .object-pict {
  position: absolute;
  top: calc(50% + 3.5vw);
  left: 0;
  width: min(29.06vw, 558px);
  height: min(20.312vw, 390px);
}
@media screen and (max-width: 768px) {
  #recruit.section-wrap .recruit-object .object-pict {
    top: 48vw;
    left: auto;
    right: 4%;
    width: 42vw;
    height: 29.4vw;
  }
}
#recruit.section-wrap .recruit-object .object-pict img {
  border-radius: 0 65px 0 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #recruit.section-wrap .recruit-object .object-pict img {
    display: none;
    border-radius: 0 25px 0 0;
  }
}
#recruit.section-wrap .recruit-object .object-text {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(50.989vw, 979px);
  height: min(13.854vw, 266px);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #recruit.section-wrap .recruit-object .object-text {
    bottom: 37vw;
  }
}
#recruit.section-wrap .recruit-object .object-text img {
  width: 100%;
}

.object-company-circle {
  position: relative;
  z-index: 0;
  width: 100%;
}
.object-company-circle img {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate3d(50%, -50%, 0);
  width: min(50.208vw, 964px);
  height: min(50.156vw, 963px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .object-company-circle img {
    top: -41vw;
  }
}

#company .heading-wrap {
  text-align: center;
}
#company .company-list-wrap {
  position: relative;
  z-index: 1;
}
#company .company-list-wrap dl {
  border-bottom: 1px solid rgb(232, 232, 232);
  display: table;
  margin-bottom: 20px;
  padding-bottom: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #company .company-list-wrap dl {
    display: block;
  }
}
#company .company-list-wrap dl dt, #company .company-list-wrap dl dd {
  display: table-cell;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  #company .company-list-wrap dl dt, #company .company-list-wrap dl dd {
    display: block;
  }
}
#company .company-list-wrap dl dt {
  color: var(--key-color-blue);
  font-weight: bold;
  width: 30%;
}
@media screen and (max-width: 768px) {
  #company .company-list-wrap dl dt {
    width: 100%;
  }
}
#company .company-list-wrap dl dd {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #company .company-list-wrap dl dd {
    width: 100%;
  }
}
#company .company-list-wrap dl:last-child {
  border-bottom: none;
}
#company::after {
  background: url(../images/company_object.png) center no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 60%, 0);
  width: min(62.29vw, 1196px);
  height: min(23.229vw, 446px);
  z-index: 0;
}

#lower .heading-wrap h2 {
  font-size: var(--lower-heading-font-size);
  line-height: 1em;
  margin-bottom: 10px;
}
#lower .lower-main-wrap {
  overflow-x: hidden;
  position: relative;
}
#lower #lower-main-img {
  margin-bottom: min(5.989vw, 115px);
  width: min(100%, 1920px);
  height: min(31.61vw, 607px);
}
#lower #lower-main-img img {
  width: 100%;
}

.lower-recruit #intro .intro-text-wrap {
  text-align: center;
  margin-bottom: min(10vw, 192px);
}
.lower-recruit #ideal .outer-wrap {
  background: #184895;
  left: -10%;
  width: 120%;
  transform: rotate(-8deg);
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-recruit #ideal .outer-wrap {
    transform: rotate(-4deg);
  }
}
.lower-recruit #ideal .outer-wrap::before, .lower-recruit #ideal .outer-wrap::after {
  border-top: 1px solid var(--key-color-red);
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
}
.lower-recruit #ideal .outer-wrap::before {
  top: -20px;
}
.lower-recruit #ideal .outer-wrap::after {
  bottom: -20px;
}
.lower-recruit #ideal .outer-wrap .inner-wrap {
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .lower-recruit #ideal .outer-wrap .inner-wrap {
    display: block;
  }
}
.lower-recruit #ideal .outer-wrap .inner-wrap .left {
  position: relative;
  width: 50%;
  transform: rotate(8deg);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .lower-recruit #ideal .outer-wrap .inner-wrap .left {
    width: 100%;
    transform: rotate(4deg);
  }
}
.lower-recruit #ideal .outer-wrap .inner-wrap .left::before {
  background: url(../images/idealcandidate_img_01.jpg) center no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  height: 150%;
  z-index: 1;
}
.lower-recruit #ideal .outer-wrap .inner-wrap .right {
  color: #fff;
  padding: 140px 60px 130px;
  position: relative;
  width: 50%;
  transform: rotate(8deg);
}
@media screen and (max-width: 768px) {
  .lower-recruit #ideal .outer-wrap .inner-wrap .right {
    width: 100%;
    transform: rotate(4deg);
  }
}
.lower-recruit #ideal .outer-wrap .inner-wrap .right .inner-heading-wrap {
  margin-bottom: min(2.34vw, 45px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-recruit #ideal .outer-wrap .inner-wrap .right .inner-heading-wrap {
    margin-bottom: 9vw;
  }
}
.lower-recruit #ideal .outer-wrap .inner-wrap .right .inner-heading-wrap h3 {
  color: #fff;
  font-size: min(15.4vw, 54px);
  font-weight: var(--heading-font-weight);
  line-height: var(--heading-line-height);
  padding-bottom: var(--heading-padding-bottom);
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-recruit #ideal .outer-wrap .inner-wrap .right .inner-heading-wrap h3 {
    font-size: 8.5vw;
  }
}
.lower-recruit #ideal .outer-wrap .inner-wrap .right .inner-heading-wrap h3 + p {
  color: #fff;
  display: inline;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1em;
  padding-right: 10px;
}
.lower-recruit #ideal .outer-wrap .inner-wrap .right .inner-heading-wrap::after {
  background: url(../images/heading_object.png) center no-repeat;
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 17px;
  height: 17px;
}
.lower-recruit #ideal .outer-wrap .inner-wrap .right .ideal-list {
  margin-bottom: 20px;
}
.lower-recruit #ideal .outer-wrap .inner-wrap .right .ideal-list li {
  padding-left: 18px;
  position: relative;
}
.lower-recruit #ideal .outer-wrap .inner-wrap .right .ideal-list li::before {
  border-bottom: 1px solid var(--key-color-red);
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  width: 10px;
  height: 1px;
}
.lower-recruit #ideal .outer-wrap .inner-wrap .right .ideal-list li:not(:last-of-type) {
  margin-bottom: 8px;
}
.lower-recruit #ideal .outer-wrap .inner-wrap .right::after {
  background: url(../images/idealcandidate_object.png) center no-repeat;
  background-size: contain;
  content: "";
  opacity: 0.1;
  position: absolute;
  bottom: -8vw;
  left: -7.5vw;
  width: min(105.93vw, 2034px);
  height: min(23.125vw, 444px);
  z-index: 0;
  mix-blend-mode: multiply;
}
.lower-recruit #ocupation .heading-wrap {
  text-align: center;
}
.lower-recruit #ocupation .ocupation-outer-wrap {
  position: relative;
  width: 100%;
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content {
  margin-bottom: min(9.58vw, 184px);
  margin-left: auto;
  position: relative;
  width: clamp(1200px, 78.125vw, 1500px);
}
@media screen and (max-width: 768px) {
  .lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content {
    width: 100%;
    margin-bottom: 15vw;
  }
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .inner-heading-wrap {
  margin-bottom: min(2.34vw, 45px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .inner-heading-wrap {
    margin: 0 auto 9vw;
    width: 92%;
  }
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .inner-heading-wrap h3 {
  color: var(--key-color-blue);
  font-size: min(15.4vw, 54px);
  font-weight: var(--heading-font-weight);
  line-height: var(--heading-line-height);
  padding-bottom: var(--heading-padding-bottom);
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .inner-heading-wrap h3 {
    font-size: 7vw;
  }
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .inner-heading-wrap h3 .small {
  font-size: min(1.66vw, 32px);
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .inner-heading-wrap h3 .small {
    font-size: 4.5vw;
  }
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .inner-heading-wrap h3 + p {
  color: var(--key-color-blue);
  display: inline;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1em;
  padding-right: 10px;
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .inner-heading-wrap::after {
  border-bottom: 1px solid var(--key-color-red);
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 8px;
  height: 2px;
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .ocupation-content-flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .ocupation-content-flex {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .ocupation-content-flex .text {
  padding-right: min(6.25vw, 120px);
  width: min(40%, 600px);
}
@media screen and (max-width: 768px) {
  .lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .ocupation-content-flex .text {
    margin: 0 auto;
    padding-right: 0;
    width: 92%;
  }
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .ocupation-content-flex .text .text-box {
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 45px;
  padding: 25px;
}
@media screen and (max-width: 768px) {
  .lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .ocupation-content-flex .text .text-box {
    margin-bottom: 4vw;
  }
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .ocupation-content-flex .text .link-button a {
  background: var(--key-color-blue);
  color: #fff;
  font-size: 24px;
  line-height: 1em;
  padding: 0.8em;
  position: relative;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .ocupation-content-flex .text .link-button a {
    font-size: 5vw;
    padding: 5.5vw;
  }
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .ocupation-content-flex .text .link-button a::after {
  border: 1px solid;
  border-color: transparent #fff #fff transparent;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  width: 10px;
  height: 10px;
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .ocupation-content-flex .pict {
  width: min(60%, 900px);
}
@media screen and (max-width: 768px) {
  .lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .ocupation-content-flex .pict {
    margin: 0 0 4vw auto;
    width: 96%;
  }
}
.lower-recruit #ocupation .ocupation-outer-wrap .ocupation-content .ocupation-content-flex .pict img {
  border-radius: 65px 0 0 0;
  width: 100%;
}
.lower-recruit #requirements .heading-wrap {
  text-align: center;
}
.lower-recruit #requirements .content-outer-wrap {
  border: 1px solid var(--key-color-blue);
  padding: 10px;
}
.lower-recruit #requirements .content-outer-wrap .content-inner-wrap {
  background: rgba(255, 255, 255, 0.8);
  padding: 45px 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-recruit #requirements .content-outer-wrap .content-inner-wrap {
    padding: 5vw;
  }
}
.lower-recruit #requirements .content-outer-wrap .content-inner-wrap .inner-heading-wrap {
  margin-bottom: min(2.34vw, 45px);
  position: relative;
  text-align: center;
}
.lower-recruit #requirements .content-outer-wrap .content-inner-wrap .inner-heading-wrap h3 {
  color: var(--key-color-blue);
  font-size: min(15.4vw, 42px);
  font-weight: var(--heading-font-weight);
  line-height: var(--heading-line-height);
  padding-bottom: var(--heading-padding-bottom);
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-recruit #requirements .content-outer-wrap .content-inner-wrap .inner-heading-wrap h3 {
    font-size: 7vw;
  }
}
.lower-recruit #requirements .content-outer-wrap .content-inner-wrap .detail-list {
  position: relative;
  z-index: 1;
}
.lower-recruit #requirements .content-outer-wrap .content-inner-wrap .detail-list dl {
  border-bottom: 1px solid rgb(232, 232, 232);
  display: table;
  margin-bottom: 20px;
  padding-bottom: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lower-recruit #requirements .content-outer-wrap .content-inner-wrap .detail-list dl {
    display: block;
  }
}
.lower-recruit #requirements .content-outer-wrap .content-inner-wrap .detail-list dl dt, .lower-recruit #requirements .content-outer-wrap .content-inner-wrap .detail-list dl dd {
  display: table-cell;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .lower-recruit #requirements .content-outer-wrap .content-inner-wrap .detail-list dl dt, .lower-recruit #requirements .content-outer-wrap .content-inner-wrap .detail-list dl dd {
    display: block;
  }
}
.lower-recruit #requirements .content-outer-wrap .content-inner-wrap .detail-list dl dt {
  color: var(--key-color-blue);
  font-weight: bold;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .lower-recruit #requirements .content-outer-wrap .content-inner-wrap .detail-list dl dt {
    width: 100%;
  }
}
.lower-recruit #requirements .content-outer-wrap .content-inner-wrap .detail-list dl dd {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .lower-recruit #requirements .content-outer-wrap .content-inner-wrap .detail-list dl dd {
    width: 100%;
  }
}
.lower-recruit #requirements .content-outer-wrap .content-inner-wrap .detail-list dl:last-child {
  border-bottom: none;
}
.lower-recruit #requirements .content-outer-wrap .content-inner-wrap::after {
  background: url(../images/logo_icon.png) center no-repeat;
  background-size: contain;
  content: "";
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: min(42.76vw, 821px);
  height: min(42.65vw, 819px);
  z-index: 0;
}
.lower-recruit #requirements .content-outer-wrap .images-list {
  display: flex;
  margin-bottom: 60px;
  width: 102%;
}
@media screen and (max-width: 768px) {
  .lower-recruit #requirements .content-outer-wrap .images-list {
    flex-wrap: wrap;
    margin-bottom: 10vw;
    width: 100%;
  }
}
.lower-recruit #requirements .content-outer-wrap .images-list li {
  width: 48%;
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  .lower-recruit #requirements .content-outer-wrap .images-list li {
    width: 100%;
    margin-right: 0;
  }
}
.lower-recruit #requirements .content-outer-wrap .images-list li img {
  width: 100%;
}
.lower-recruit #requirements .content-outer-wrap .link-button a {
  background: var(--key-color-blue);
  color: #fff;
  font-size: 24px;
  line-height: 1em;
  margin: 0 auto;
  padding: 0.8em;
  position: relative;
  text-align: center;
  width: min(100%, 480px);
}
@media screen and (max-width: 768px) {
  .lower-recruit #requirements .content-outer-wrap .link-button a {
    font-size: 5vw;
    padding: 5.5vw;
  }
}
.lower-recruit #requirements .content-outer-wrap .link-button a::after {
  border: 1px solid;
  border-color: transparent #fff #fff transparent;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate3d(0, -50%, 0) rotate(-45deg);
  width: 10px;
  height: 10px;
}
.lower-recruit #welfare .heading-wrap {
  text-align: center;
}
.lower-recruit #welfare .intro {
  margin: 0 auto 100px;
  text-align: center;
  width: 92%;
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .intro {
    margin-bottom: 12vw;
  }
}
.lower-recruit #welfare .welfare-content {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: min(9.58vw, 184px);
  position: relative;
  width: clamp(1200px, 81.875vw, 1572px);
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content {
    flex-wrap: wrap;
    width: 100%;
  }
}
.lower-recruit #welfare .welfare-content::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content::before {
    z-index: 2;
  }
}
.lower-recruit #welfare .welfare-content:nth-child(3)::before {
  background: url(../images/welfare_holiday_object.png) center no-repeat;
  background-size: contain;
  width: min(44.427vw, 853px);
  height: min(13.854vw, 266px);
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content:nth-child(3)::before {
    top: 52vw;
  }
}
.lower-recruit #welfare .welfare-content:nth-child(4)::before {
  background: url(../images/welfare_allowance_object.png) center no-repeat;
  background-size: contain;
  width: min(55.833vw, 1072px);
  height: min(9.635vw, 185px);
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content:nth-child(4)::before {
    top: 57vw;
  }
}
.lower-recruit #welfare .welfare-content:nth-child(5)::before {
  background: url(../images/welfare_other_object.png) center no-repeat;
  background-size: contain;
  width: min(26.614vw, 511px);
  height: min(9.843vw, 189px);
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content:nth-child(5)::before {
    top: 57vw;
  }
}
.lower-recruit #welfare .welfare-content:nth-child(odd) {
  margin-right: auto;
}
.lower-recruit #welfare .welfare-content:nth-child(odd) .text {
  left: -4vw;
  margin-right: -4vw;
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content:nth-child(odd) .text {
    left: 0;
    margin: 0 auto;
  }
}
.lower-recruit #welfare .welfare-content:nth-child(odd)::before {
  right: -18.125vw;
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content:nth-child(odd)::before {
    right: 0;
  }
}
.lower-recruit #welfare .welfare-content:nth-child(even) {
  margin-left: auto;
  flex-direction: row-reverse;
}
.lower-recruit #welfare .welfare-content:nth-child(even) .text {
  right: -4vw;
  margin-left: -4vw;
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content:nth-child(even) .text {
    right: 0;
    margin: 0 auto;
  }
}
.lower-recruit #welfare .welfare-content:nth-child(even)::before {
  left: -20vw;
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content:nth-child(even)::before {
    left: 0;
  }
}
.lower-recruit #welfare .welfare-content .pict {
  position: relative;
  width: min(58.269%, 916px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content .pict {
    margin-bottom: 7vw;
    width: 100%;
  }
}
.lower-recruit #welfare .welfare-content .pict img {
  width: 100%;
}
.lower-recruit #welfare .welfare-content .text {
  position: relative;
  bottom: -1vw;
  width: calc(41.731% + 4vw);
  max-width: calc(656px + 4vw);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content .text {
    bottom: 0;
    width: 92%;
    max-width: 100%;
  }
}
.lower-recruit #welfare .welfare-content .text .content-outer-wrap {
  border: 1px solid var(--key-color-blue);
  padding: 10px;
  width: 100%;
  height: auto;
}
.lower-recruit #welfare .welfare-content .text .content-outer-wrap .content-inner-wrap {
  background: rgba(255, 255, 255, 0.8);
  padding: 35px;
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content .text .content-outer-wrap .content-inner-wrap {
    padding: 5vw;
  }
}
.lower-recruit #welfare .welfare-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap {
  margin-bottom: min(2.34vw, 45px);
  position: relative;
}
.lower-recruit #welfare .welfare-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap h3 {
  color: var(--key-color-blue);
  font-size: min(15.4vw, 54px);
  font-weight: var(--heading-font-weight);
  line-height: var(--heading-line-height);
  padding-bottom: var(--heading-padding-bottom);
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-recruit #welfare .welfare-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap h3 {
    font-size: 8.5vw;
  }
}
.lower-recruit #welfare .welfare-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap h3 .small {
  font-size: 32px;
  line-height: 1em;
}
.lower-recruit #welfare .welfare-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap h3 + p {
  color: var(--key-color-blue);
  display: inline;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1em;
  padding-right: 10px;
}
.lower-recruit #welfare .welfare-content .text .content-outer-wrap .content-inner-wrap .inner-heading-wrap::after {
  border-bottom: 1px solid var(--key-color-red);
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 8px;
  height: 2px;
}

.lower-works .intro-text-wrap {
  text-align: center;
  margin-bottom: min(10vw, 192px);
}
.lower-works .content-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.lower-works .content-wrap .content-box {
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  width: calc(25% - 20px);
}
@media screen and (max-width: 768px) {
  .lower-works .content-wrap .content-box {
    width: 100%;
  }
}
.lower-works .content-wrap .content-box figure img {
  width: 100%;
}
.lower-works .content-wrap .content-box figure figcaption {
  padding: 10px 14px 40px;
  line-height: 1.6em;
}
.lower-works .content-wrap .content-box figure figcaption .date {
  font-size: 12px;
  line-height: 1em;
}
.lower-works .content-wrap .content-box figure figcaption .title {
  font-size: 16px;
}
.lower-works .content-wrap .content-box .detail-link {
  color: var(--base-text-color);
  padding-right: 20px;
  position: absolute;
  bottom: 10px;
  right: 14px;
}
.lower-works .content-wrap .content-box .detail-link::after {
  border: 1px solid;
  border-color: transparent var(--key-color-red) var(--key-color-red) transparent;
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translate3d(0, -50%, 0) rotate(-45deg);
  width: 7px;
  height: 7px;
}

.lower-works-single .content-wrap h3 {
  background: var(--key-color-blue);
  color: #fff;
  font-size: 20px;
  line-height: 1.2em;
  margin-bottom: 16px;
  padding: 1em 0.6em;
}
@media screen and (max-width: 768px) {
  .lower-works-single .content-wrap h3 {
    line-height: 1.4em;
    padding: 0.6em 0.8em;
  }
}
.lower-works-single .content-wrap h3 .date {
  font-size: 12px;
  line-height: 1em;
  margin-right: 1.6em;
}
.lower-works-single .slide-media img, .lower-works-single .thumb-media img {
  width: 100%;
}
.lower-works-single .back-to-archive {
  margin: 90px auto 0;
  width: min(300px, 90vw);
}
.lower-works-single .back-to-archive a {
  text-align: center;
  padding: 8px 12px;
  color: #0073aa;
  border: 1px solid #0073aa;
  border-radius: 4px;
  line-height: 1;
}

#loading.loader {
  background: var(--key-color-blue);
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 69;
  position: fixed;
  top: 0;
  left: 0;
  flex-flow: column;
  transition: 1.5s;
}
#loading.loader .loading-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.9);
  transition: 0.15s;
  width: 161px;
  height: 47px;
  z-index: 3;
}
#loading.loader .loading-logo.animate {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}
#loading.loader .loading-logo img {
  width: 100%;
}
#loading .block {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 384px;
  height: 384px;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 1s ease-out, opacity 1s ease-out;
  opacity: 1;
  z-index: 2;
}
#loading .block.block.animate-block { /* ここでアニメーションが発動する */ }

.spreading-circle {
  position: absolute;
  width: 100%;
  height: 100vh;
}

.spreading-circle::before {
  background: var(--key-color);
  border-radius: 100%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  opacity: 0;
  transition: 0.3s;
}

.spreading-circle.spread::before {
  opacity: 1;
  transform: scale(2000);
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.main-wrap {
  opacity: 0;
  transition: 0.3s ease-in 0.6s;
}
.main-wrap.active {
  opacity: 1;
}
.main-wrap #main-img .main-img-wrap h2 {
  bottom: 0;
  opacity: 0;
  transition: 0.3s ease-out 1.2s;
}
.main-wrap #main-img .main-img-wrap .main-button {
  opacity: 0;
  transform: translate3d(100%, 50%, 0);
  transition: 0.3s ease-out 2s;
}
.main-wrap #main-img::after {
  opacity: 0;
  transition: 0.3s ease-in 0.9s;
}
.main-wrap #main-img.active .main-img-wrap h2 {
  bottom: 5vw;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .main-wrap #main-img.active .main-img-wrap h2 {
    bottom: 0;
  }
}
.main-wrap #main-img.active .main-img-wrap .main-button {
  opacity: 1;
  transform: translate3d(0, 50%, 0);
}
.main-wrap #main-img.active::after {
  opacity: 1;
}

header {
  top: -150px;
  transition: ease-out 0.6s;
}
@media screen and (max-width: 768px) {
  header {
    top: 0;
  }
  header .header-logo {
    transition: 0.15s;
  }
}
header.active {
  top: 0;
}
@media screen and (max-width: 768px) {
  header.active .header-logo {
    top: calc(100vh - 12.533vw);
  }
}

.c-text {
  display: flex;
}
.c-text.c-text-reverse {
  flex-direction: row-reverse;
}
.c-text .c-text__item {
  flex-shrink: 0;
}
.c-text:not(.no-tick) .c-text__item.moveleft:nth-child(odd) {
  animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
}
.c-text:not(.no-tick) .c-text__item.moveleft:nth-child(even) {
  animation: MoveLeft2 var(--tick-duration, 24s) infinite linear;
}
.c-text:not(.no-tick) .c-text__item.moveright:nth-child(odd) {
  animation: MoveRight var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
}
.c-text:not(.no-tick) .c-text__item.moveright:nth-child(even) {
  animation: MoveRight2 var(--tick-duration, 24s) infinite linear;
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes MoveRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes MoveRight2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(200%);
  }
}
.object-company-circle img {
  animation: spin-clockwise 12s ease-in-out infinite;
}

@keyframes spin-clockwise {
  from {
    transform: translate3d(50%, -50%, 0) rotate(0deg);
  }
  to {
    transform: translate3d(50%, -50%, 0) rotate(360deg);
  }
}
@keyframes spin-counterclockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
#about, #pictrail, #vision, #movie, #recruit, #company, footer {
  position: relative;
  transition: ease-out 0.35s;
  top: 25px;
  opacity: 0;
}
#about.active, #pictrail.active, #vision.active, #movie.active, #recruit.active, #company.active, footer.active {
  top: 0;
  opacity: 1;
}

/* swiper */
.swiper-button-prev, .swiper-button-next {
  background: var(--key-color-blue);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  transition: 0.15s;
  z-index: 1;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 0;
  transform: translate3d(50%, -50%, 0);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 0;
  transform: translate3d(-50%, -50%, 0);
}

.swiper-button-prev:hover, .swiper-button-next:hover {
  opacity: 0.8;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -50px;
}
@media screen and (max-width: 768px) {
  .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
  }
}

.swiper-pagination-bullet {
  border: 1px solid var(--key-color-blue);
}

.swiper-pagination-bullet-active {
  background: var(--key-color-blue);
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-single .swiper-slide:not(.swiper-slide-visible) {
  pointer-events: none;
  opacity: 0.3;
}

.swiper-with-thumb.swiper-main {
  margin-bottom: 16px;
}
.swiper-with-thumb.swiper-main .slide-media {
  background: #f1f1f1;
  cursor: pointer;
  line-height: 0;
  position: relative;
  width: 100%;
  height: min(58.75vw, 705px);
  transition: 0.15s;
}
.swiper-with-thumb.swiper-main .slide-media img {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate3d(-50%, -50%, 0);
  vertical-align: middle;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.swiper-with-thumb.swiper-thumb .thumb-media {
  background: #f1f1f1;
  cursor: pointer;
  line-height: 0;
  position: relative;
  height: min(34.6vw, 130px);
  transition: 0.15s;
}
.swiper-with-thumb.swiper-thumb .thumb-media img {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate3d(-50%, -50%, 0);
  vertical-align: middle;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}/*# sourceMappingURL=style.css.map */