@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@media screen and (max-width: 600px) {
  .hidden-sm {
    display: none;
  }
}

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

@media screen and (max-width: 900px) {
  .hidden-lg {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1.25rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #232323;
  line-height: 1.7;
  overflow-x: hidden;
}

span {
  display: block;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-left: auto;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  width: auto;
  z-index: 100;
}

.button a {
  position: relative;
  display: block;
  /* リンク全体をクリック可能に */
  color: #232323;
  line-height: 1;
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
  padding-bottom: 6px;
  /* margin-right: 95px; */
}

.button a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #232323;
  position: absolute;
  right: 0;
  bottom: -3px;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

/* ボタン本体 */
.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 200px;
  height: 60px;
  padding: 0 20px;
  background-color: #232323;
  border-radius: 30px;
  text-decoration: none;
  overflow: hidden;
  /* 念のためボタン全体にも適用 */
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* テキスト表示エリア（ここが“マスク”になる） */
.btn__text-wrapper {
  position: relative;
  width: 120px;
  height: 20px;
  /* テキスト1行分の高さ */
  overflow: hidden;
  /* ★これがマスク効果を生む！ */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn__text {
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  white-space: nowrap;
}

/* デフォルト表示のテキスト */
.btn__text--default {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

/* ホバーで出てくるテキスト（下にスタンバイ） */
.btn__text--hover {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

/* ホバー時にスライド */
.btn:hover .btn__text--default {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.btn:hover .btn__text--hover {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

/* 白いドット */
.btn__dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* ホバーで拡大 */
.btn:hover .btn__dot {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.button-center {
  margin-right: auto;
}

.button-white a {
  color: #fff;
}

.button-white a::after {
  background-color: #fff;
}

.button-white::before {
  background-image: url(../img/service-button-white.svg);
}

.video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section-title-sub {
  padding-left: 18px;
  position: relative;
}

.section-title-sub::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 13px;
  height: 22.75px;
  background-image: url("../img/section-title-sub.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.section-top {
  padding-top: 120px;
  margin-top: -120px;
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #232323;
  text-align: center;
  color: #fff;
  z-index: 100000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gear {
  position: relative;
  width: 100px;
  height: 100px;
}

.gear svg {
  width: 100%;
  height: 100%;
}

.lil-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.text {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-top: -16px;
}

.load {
  position: relative;
  margin: 50px auto;
  width: 100px;
  height: 80px;
}

.gear {
  position: absolute;
  z-index: -10;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 12s linear infinite;
  animation: spin 12s linear infinite;
}

.two {
  left: 40px;
  width: 80px;
  height: 80px;
  -webkit-animation: spin-reverse 12s linear infinite;
  animation: spin-reverse 12s linear infinite;
}

.three {
  top: 45px;
  left: -10px;
  width: 60px;
  height: 60px;
}

@-webkit-keyframes spin {
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin-reverse {
  50% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes spin-reverse {
  50% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

.text {
  color: lightgray;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  text-align: center;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.xxl-none {
  display: none;
}

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

.sm-none {
  display: block;
}

@media screen and (max-width: 600px) {
  .sm-none {
    display: none;
  }
}

.header__logo {
  width: 195px;
  position: absolute;
  top: 26px;
  left: 60px;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .header__logo {
    top: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .header__logo {
    left: 70px;
  }
}

@media screen and (max-width: 768px) {
  .header__logo {
    left: 30px;
  }
}

@media screen and (max-width: 498px) {
  .header__logo {
    left: 16px;
    top: 18px;
  }
}

.header__inner {
  position: fixed;
  width: 100%;
  height: 90px;
  z-index: 9999;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  top: 0;
}

@media screen and (max-width: 1200px) {
  .header__inner {
    height: 60px;
  }
}

.header__inner--black {
  background-color: #232323;
  position: fixed;
  width: 100%;
  height: 90px;
  z-index: 9999;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  top: 0px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 600px) {
  .header__inner--black {
    height: 60px;
  }
}

@media screen and (max-width: 416px) {
  .header__inner--black {
    height: 60px;
    background-color: #232323;
  }
}

.header__inner--black.active {
  top: -120px;
}

.header__logo svg {
  width: 190px;
  height: auto;
  display: block;
  z-index: 10;
}

@media screen and (max-width: 1200px) {
  .header__logo svg {
    width: 130px;
  }
}

@media screen and (max-width: 498px) {
  .header__logo svg {
    width: 100px;
  }
}

/* inputがチェックされたときに.header__logoを非表示にする */
input:checked~.header__logo {
  display: none;
  /* 要素を非表示にする */
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

label .menu {
  position: absolute;
  right: 42px;
  top: 10px;
  z-index: 100;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-box-shadow: 0 0 0 0 #fff, 0 0 0 0 #fff;
  box-shadow: 0 0 0 0 #fff, 0 0 0 0 #fff;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  label .menu {
    top: 5px;
  }
}

@media screen and (max-width: 768px) {
  label .menu {
    right: 30px;
  }
}

@media screen and (max-width: 498px) {
  label .menu {
    top: 0;
    right: 0;
    width: 66px;
    height: 60px;
    border-radius: 30px 0 0 30px;
  }
}

label .hamburger {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 44px;
  height: 44px;
  background-image: url("../img/menu_img.png");
  /* 画像のパス */
  background-size: contain;
  /* 画像を要素内に収める */
  background-repeat: no-repeat;
  /* 画像の繰り返しを防ぐ */
  background-position: center;
  /* 画像を中央に配置 */
  -webkit-transition: transform 1s ease-in-out;
  /* 回転アニメーションのトランジション */
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@media screen and (max-width: 498px) {
  label .hamburger {
    width: 38px;
    height: 38px;
    top: 10px;
    right: 10px;
  }
}

label .hamburger:after,
label .hamburger:before {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

label .hamburger:before {
  top: -10px;
}

label .hamburger:after {
  bottom: -10px;
}

label input {
  display: none;
}

label input:checked+.menu {
  box-shadow: 0 0 0 100vw #fff, 0 0 0 110vh #fff;
  border-radius: 50%;
}

@media screen and (max-width: 498px) {
  label input:checked+.menu {
    border-radius: 30px 0 0 30px;
  }
}

label input:checked+.menu {
  background: #232323;
  /* チェック時の背景色 */
}

label input:checked+.menu .hamburger {
  background-image: url("../img/close_img.png");
  /* 画像のパス */
  background-size: contain;
  /* 画像を要素内に収める */
  background-repeat: no-repeat;
  /* 画像の繰り返しを防ぐ */
  background-position: center;
  /* 画像を中央に配置 */
  -webkit-transform: rotateY(360deg);
  /* Y軸方向に360度回転 */
  transform: rotateY(360deg);
}

label input:checked+.menu+.header__nav {
  display: block;
}

.header__nav {
  z-index: 200;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: none;
  -webkit-transition: 0.25s 0s ease-in-out;
  transition: 0.25s 0s ease-in-out;
  width: 100%;
  padding: 0 0 100px;
}

label a {
  display: block;
  color: #232323;
  text-decoration: none;
}

.header-nav__inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transition: 0.75s;
  transition-delay: 1s;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
  padding-top: 100px;
}

@media screen and (max-width: 1200px) {
  .header-nav__inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 1000px) {
  .header-nav__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 800px) {
  .header-nav__inner {
    padding: 0 5%;
    display: flex;
    width: 100vw;
    height: 110vh;
    overflow-y: scroll;
    padding-top: 0;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 600px) {
  .header-nav__inner {
    display: block;
  }
}

.nav-fadein {
  opacity: 1;
}

.nav-child {
  font-size: 1rem;
  color: #616161;
  font-weight: 500;
}

.header__title--ja {
  font-weight: 700;
  line-height: 1;
  font-size: 1rem;
}

.header__title--en {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
  color: #FFAF10;
}

.headerNav-hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.headerNav-hover:hover {
  opacity: 0.6;
}

.nav-center,
.nav-right,
.nav-left {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 70px;
}

.sp-block {}

@media screen and (max-width: 600px) {
  .sp-block {
    display: block;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 800px) {

  .nav-center,
  .nav-right,
  .nav-left {
    width: 50%;
    gap: 24px;
  }

  .nav__left {
    padding-top: 70px;
  }

  .nav-center {
    padding-top: 24px;
  }
}

.nav-right {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width: 1200px) {
  .nav-right {
    white-space: nowrap;
  }

  .nav-center {
    padding-top: 0px;
  }

}

@media screen and (max-width: 800px) {
  .nav-right {
    padding-bottom: 200px;
    margin-top: -200px;
  }

  .nav-center {
    padding-top: 70px;
  }
}

@media (max-width: 600px) {
  .nav-right {
    margin: 0;
  }

  .nav-center {
    padding-top: 20px;
  }
}

@media screen and (max-width: 416px) {

  .nav-center,
  .nav-right,
  .nav-left {
    gap: 44px;
  }
}



.nav-center__corporate--child,
.nav-center__business--child,
.nav-right__recruit--child {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.nav-left__wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1200px) {
  .nav-left__wrap {
    display: none;
  }
}

.nav-left__logo {
  width: 195px;
}

.instagram__comment {
  position: relative;
  padding-left: 25px;
}

.instagram__comment::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 24px;
  background-image: url("../img/instagram-comment-left.svg");
  background-repeat: no-repeat;
}

.instagram__comment::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 192px;
  width: 15px;
  height: 24px;
  background-image: url("../img/instagram-comment-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
  .instagram__comment {
    display: none;
  }
}

.instagram__logo {
  position: relative;
  padding-left: 64px;
  margin-top: 16px;
}

.instagram__logo::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 24px;
  width: 32px;
  height: 32px;
  background-image: url("../img/instagram-icon-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
  .instagram__logo {
    display: none;
  }
}

.nav-right__telephoneNumber {
  position: relative;
  font-family: "Anton", "Arial", sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  padding-left: 52px;
  margin-top: 30px;
}

.nav-right__telephoneNumber::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-image: url("../img/header-nav-tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.nav-right__faxNumber {
  position: relative;
  font-family: "Anton", "Arial", sans-serif;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  padding-left: 52px;
  margin-top: 30px;
}

.nav-right__faxNumber::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-image: url("../img/header-nav-fax.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.nav-right__contactForm a {
  position: relative;
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  padding-left: 52px;
  margin-top: 30px;
}

.nav-right__contactForm a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-image: url("../img/header-nav-mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.nav-right__contactForm a::after {
  content: "";
  position: absolute;
}

/* ナビゲーションのアニメーション */
.nav-fadein {
  -webkit-animation: navfadein 0.5s linear both;
  animation: navfadein 0.5s linear both;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes navfadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes navfadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.section__fv--slick {
  height: 812px;
  margin-inline: auto;
  overflow: hidden;
  /* 画像がはみ出ないようにする */
  width: 100vw;
}

.slick-img img {
  width: 100%;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    /* 拡大率 */
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    /* 拡大率 */
  }
}

.add-animation {
  -webkit-animation: zoomUp 10s linear 0s normal both;
  animation: zoomUp 10s linear 0s normal both;
}

.section__fv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.section__fv--small {
  height: 480px;
}

.section__fv--inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sectionTop__circle {
  width: 100%;
  height: 200px;
  overflow-x: hidden;
  position: absolute;
  margin-top: -1px;
  z-index: -1;
  top: 610px;
}

.sectionTop__circle span {
  content: "";
  display: block;
  width: 120vw;
  position: absolute;
  top: 1px;
  left: 50%;
  z-index: 999;
  background-color: #fff;
  border-radius: 50%/100% 100% 0 0;
  height: 100%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, 0);
}

.sectionTop__circle--small {
  top: 370px;
}

.sectionTop__circle--gray span {
  background-color: #eeeeee;
}

.sectionTop__circle--small span {
  background-color: #eeeeee;
}

.sectionTop__circle--smallWhite span {
  background-color: #fff;
}

.sectionTop__title--en {
  font-family: "Anton", sans-serif;
  font-size: 4.375rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.9px;
  color: #fff;
}

@media screen and (max-width: 416px) {
  .sectionTop__title--en {
    font-size: 46px;
  }
}

.color-gray::before {
  background-image: url("../img/sectionTop__titleIconGray.svg");
}

.sectionTop__titleinner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.bg-gray {
  background-color: transparent;
}

.color-gray {
  color: #949494;
}

.sectionTop__title--ja {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.9px;
  margin-top: 24px;
}

@media screen and (max-width: 416px) {
  .sectionTop__title--ja {
    font-size: 16px;
  }
}


.color-gray {
  color: #949494;
}

.works__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.works-contents__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 5%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 600px) {
  .works-contents__head {
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.works-title {
  padding-left: 120px;
}

.section__fv--contents {
  background: #fff;
  width: 100%;
}

.fv__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 600px;
}

@media screen and (max-width: 498px) {
  .fv__slide {
    height: 680px;
  }
}

.fv__slide--left {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 498px) {
  .fv__slide--left {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    height: 100%;
  }
}

.fv__slide--right {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

@media screen and (max-width: 498px) {
  .fv__slide--right {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
  }
}

.fv__slide--right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.fv__slide--container {
  height: 100%;
  width: 100%;
}

/* .works__slider-item {
  padding-right: 26px;
} */

/* スライドの動き等速 */
.fv__slide--slider {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: 363px;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: none;
  object-fit: cover;
}

.fv__text--contents {
  padding-left: 150px;
  padding-right: 40px;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .fv__text--contents {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media screen and (max-width: 768px) {
  .fv__text--contents {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 498px) {
  .fv__text--contents {
    padding-left: 20px;
    padding-right: 30px;
    padding-top: 0px;
    margin-top: -100px;
  }
}

.fv__text--contents-recruit {
  top: 174px;
}

.section__fv--title {
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 4.16px;
  margin-top: 46px;
}

@media screen and (max-width: 600px) {
  .section__fv--title {
    font-size: 1.75rem;
  }
}

.sm-none {
  display: none;
}

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

.section__fv--leads {
  margin-top: 20px;
  color: #232323;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
}

.section__fv--lead {
  color: #232323;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.7;
}

@media screen and (max-width: 600px) {
  .section__fv--lead {
    font-size: 0.9375rem;
  }
}

.section__fv--lead2 {
  margin-top: 24px;
  color: #232323;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.7;
}

@media screen and (max-width: 600px) {
  .section__fv--lead2 {
    font-size: 1rem;
  }
}

.philosophy__title--ja {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.2px;
  margin-top: 24px;
}

.breadcrumb {
  position: absolute;
  top: calc(100vh + 100px);
  left: 120px;
  z-index: 100;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.breadcrumb-small {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  padding-left: 150px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding-right: 120px;
  margin-top: 47px;
}

.breadcrumb-item {
  display: inline;
  color: #8D8D8D;
  font-size: 0.875rem;
  font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: ">";
  padding: 0 8px;
  color: #8D8D8D;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #8D8D8D;
  font-size: 0.875rem;
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 1px solid #8D8D8D;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.is-black {
  color: #232323;
}

/*===================================
recruit
===================================*/
.recruit__contents-common {
  padding-top: 82px;
}

.recruit__inner {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 1400px) {
  .recruit__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.recruit__topWrap {
  width: 100%;
  position: relative;
}

.recruit__img img {
  border-radius: 24px;
  width: 1276px;
  height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
}

.recruit-button__items {
  width: 100%;
  margin-top: 120px;
}

.recruit-button__item {
  width: 100%;
}

.recruit-button {
  background-color: #fdfdfd;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 54px;
  padding-inline: 74px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  /* 念のためボタン全体にも適用 */
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
  .recruit-button {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

@media screen and (max-width: 800px) {
  .recruit-button {
    padding-block: 40px;
    padding-inline: 5%;
  }
}

.recruitBtn__text-wrapper {
  position: relative;
  width: 100%;
  height: 60px;
  /* テキスト1行分の高さ */
  overflow: hidden;
  /* ★これがマスク効果を生む！ */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.is-transparent {
  background-color: #f4f4f4;
}

.recruit-button__titleEn {
  position: absolute;
  left: 0;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 3.75rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.6px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  white-space: nowrap;
}

@media screen and (max-width: 1000px) {
  .recruit-button__titleEn {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 600px) {
  .recruit-button__titleEn {
    font-size: 2rem;
  }
}

.recruitBtn__text--default {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.recruitBtn__text--hover {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

/* ホバー時のアニメーション */
.recruit-button:hover .recruitBtn__text--default {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.recruit-button:hover .recruitBtn__text--hover {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.recruit-button__titleJa {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.section__title--en {
  position: relative;
  color: #232323;
  font-family: "Antonio", sans-serif;
  font-size: 8.125rem;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}

.sectionService__fv {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.sectionService--inner {
  height: 100%;
  width: 100%;
}

.section__fv--slick {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.slick-img {
  height: 100vh;
  width: 100vw;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.slick-img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.sectionTop__title {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  padding: 100px;
  background: RGBA(0, 0, 0, 0.2);
}

@media screen and (max-width: 416px) {
  .sectionTop__title {
    padding: 0px;
  }
}

@media (max-width: 600px) {
  .sectionService__fv {
    height: 300px !important;
    min-height: auto !important;
    max-height: none !important;
    top: 60px;
  }

  .sectionTop__title {
    padding: 25px 5% !important;
  }

  .section__fv--small {
    height: 250px !important;
    margin-top: 60px !important;
  }

  .slick-img img {
    height: 250px !important;
  }
}

.title-gray1 {
  color: #eeeeee;
}

.title-accent {
  color: #fff;
}

.section__title--ja.title-gray2 {
  color: #eeeeee;
}

.section__title--ja.title-gray2::before,
.section__title--ja.title-gray2::after {
  background-color: #eeeeee;
}

.section__title--enSmall {
  font-family: "Anton", sans-serif;
  font-size: 4.375rem;
}

.section__title--enSmallWhite {
  color: #fff;
}

.elem {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.elem.sp {
  display: none;
}

@media screen and (max-width: 800px) {
  .elem.sp {
    display: flex;
  }

  .elem.pc {
    display: none;
  }
}

.elem span {
  -webkit-transform: translateY(105%);
  transform: translateY(105%);
}

.anime span {
  display: block;
  -webkit-animation: text 0.4s linear both;
  animation: text 0.4s linear both;
  -webkit-animation-delay: calc(0.04s * var(--i));
  animation-delay: calc(0.04s * var(--i));
}

@media screen and (max-width: 600px) {
  .anime span {
    font-size: 60px;
  }

  .anime .title-bold {
    font-size: 30px;
    margin: 0 -1px;
  }
}

.is-orange {
  color: #FFAF10;
}

@-webkit-keyframes text {
  0% {
    -webkit-transform: translateY(105%);
    transform: translateY(105%);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes text {
  0% {
    -webkit-transform: translateY(105%);
    transform: translateY(105%);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.news-title {
  padding-bottom: 50px;
}

.section__title--ja {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* inline-block → inline-flex に変更 */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* テキストとラインを垂直中央揃え */
  gap: 15px;
  /* ラインとテキストの間隔 */
  margin-top: 46px;
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
}

.section__title--ja::before,
.section__title--ja::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 17px;
  background-color: #232323;
}

.white {
  color: #fff;
}

.is-white {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* inline-block → inline-flex に変更 */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* テキストとラインを垂直中央揃え */
  gap: 15px;
  /* ラインとテキストの間隔 */
  margin-top: 46px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
}

.is-white::before,
.is-white::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 17px;
  background-color: #fff;
}

.section__title--jaSmallWhite::before,
.section__title--jaSmallWhite::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 17px;
  background-color: #fff;
}

.title-bold {
  font-weight: 600;
}

.section__title--jaSmall {
  margin-top: 12px;
}

.section__title--jaSmallWhite {
  color: #fff;
}

.is-white {
  color: #fff;
}

.recruit__textBox {
  margin-top: 44px;
}

@media screen and (max-width: 1400px) {
  .recruit__textBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: -164px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .recruit__textBox {
    display: block;
    margin-top: 50px;
  }
}

@media screen and (max-width: 498px) {
  .recruit__textBox {
    margin-top: 34px;
    padding-bottom: 0px;
  }
}

.flex-none {
  display: block;
  margin-top: 50px;
}

.recruit__leads {
  margin-top: 36px;
  padding-bottom: 20px;
}

.recruit__lead1 {
  font-size: 2.3125rem;
  font-weight: 600;
}

.recruit__lead2 {
  margin-top: 22px;
  font-size: 1.125rem;
  font-weight: 600;
}

.recruit__textFlows {
  position: absolute;
  width: 100%;
  height: 120px;
  right: 0;
  bottom: -148px;
  overflow: hidden;
}

.recruit__textFlows--slider {
  width: 100%;
  min-width: 100vw;
  /* 画面全体の幅を確保 */
}

.recruit__textFlows--slider div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 120px;
}

.recruit__textFlows--slider img {
  width: 100%;
  height: 100px;
}

.recruit__subButton--area {
  margin-top: -116px;
  padding-inline: 40px;
  overflow-x: auto;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .recruit__subButton--area {
    padding-inline: 0px;
  }
}

@media screen and (max-width: 900px) {
  .recruit__subButton--area {
    margin-top: -100px;
  }
}

@media screen and (max-width: 1400px) {
  .recruit__subButton--area {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding-left: 20px;
  }
}

@media screen and (max-width: 600px) {
  .recruit__subButton--area {
    margin-top: -40px;
  }
}

.recruit__button--items {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1400px) {
  .recruit__button--items {
    overflow: visible;
  }
}

.recruit__button--item {
  position: relative;
  z-index: 10;
}

.recruit__button--title {
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.5px;
  position: absolute;
  top: -25px;
  left: 15px;
}

.recruit__button--itemComment {
  padding-left: 20px;
  display: none;
  font-size: 0.8125rem;
  color: #232323;
}

@media screen and (max-width: 1400px) {
  .recruit__button--itemComment {
    display: block;
  }
}

.recruit-sub__button {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding-top: 10px;
  overflow: visible;
}

.recruit__button--item1,
.recruit__button--item2,
.recruit__button--item3 {
  width: 442px;
  height: 257px;
  background-size: cover;
  background-repeat: no-repeat;
}

.recruit__button--item1 {
  background-image: url(../img/recruit__button--img1.png);
}

.recruit__button--item2 {
  background-image: url(../img/recruit__button--img2.png);
}

.recruit__button--item3 {
  background-image: url(../img/recruit__button--img3.png);
}

.recruit__images--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  bottom: -9%;
  left: 0;
}

.recruit-img {
  width: 22%;
}

.recruit-img img {
  width: 100%;
  border-radius: 6px;
}

.is-bottom {
  margin-top: 64px;
}

.recruit__circle {
  width: 100%;
  height: 200px;
  overflow-x: hidden;
  position: relative;
  background: #FFAF10;
  z-index: -1;
  margin-top: -2px;
}

.recruit__circle span {
  content: "";
  display: block;
  width: 120vw;
  height: 200px;
  position: absolute;
  top: 1px;
  left: 50%;
  z-index: 999;
  background-color: #eeeeee;
  border-radius: 50%/0 0 100% 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, 0);
}

.recruit__circle--white span {
  background-color: #fff;
}

.recruit {
  margin-top: -10px;
  border-radius: 80px 80px 0 0;
  margin-top: -80px;
  background-image: url(../img/bg-texture.png);
  background-color: #eeeeee;
}

.title-white {
  color: #fff;
}

@-webkit-keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes MoveLeft2 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@keyframes MoveLeft2 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

.recruit__button {
  margin-top: 60px;
}

@media screen and (max-width: 1400px) {
  .recruit__button {
    margin-top: 30px;
  }
}

@media screen and (max-width: 900px) {
  .recruit__button {
    margin-top: 80px;
  }
}

@media screen and (max-width: 600px) {
  .recruit__button {
    margin-top: 30px;
  }
}

.recruit-sub__button {
  color: #fff;
  position: absolute;
  padding-top: 10px;
}

.recruit-sub__button--title {
  border-bottom: 1px solid #fff;
  padding-bottom: 1px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  top: 0;
  margin: 0;
  padding: 0;
}

/* ナビゲーションのアニメーション */
.nav-fadein {
  -webkit-animation: navfadein 0.5s linear both;
  animation: navfadein 0.5s linear both;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@keyframes navfadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* worksの下の円部分 */
.section__circle__bottom {
  position: absolute;
  width: 100vw;
  bottom: -19vw;
  left: 0;
}

.section__circle__bottom svg {
  width: 100%;
}

.service__circle {
  width: 100%;
  height: 200px;
  overflow-x: hidden;
  position: relative;
  background: #ffffff;
  margin-top: -1px;
  z-index: 999;
}

.service__circle span {
  content: "";
  display: block;
  width: 120vw;
  position: absolute;
  top: 1px;
  left: 50%;
  z-index: 999;
  background-color: #eeeeee;
  border-radius: 50%/100% 100% 0 0;
  height: 100%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, 0);
}

.service__circle--white {
  background-color: #eeeeee;
}

.service__circle--white span {
  background-color: #fff;
}

.strengths__circle {
  width: 100%;
  height: 200px;
  overflow-x: hidden;
  position: relative;
  margin-top: -1px;
  z-index: 999;
}

/*===================================
footer
===================================*/
.footer__common {
  margin-top: 0;
}

.footer-hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-hover:hover {
  opacity: 0.6;
}

.footer__contact--top {
  height: 256px;
  background-image: url(../img/footer-contactBg.png);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-inline: 120px;
  gap: 20px;
}

@media screen and (max-width: 1200px) {
  .footer__contact--top {
    padding-inline: 60px;
  }
}

@media screen and (max-width: 900px) {
  .footer__contact--top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  .footer__contact--top {
    padding-inline: 20px;
  }
}

.news {
  background-color: #fff;
}

.news__inner {
  padding: 80px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width: 1200px) {
  .news__inner {
    flex-direction: column;
    gap: 50px;
  }
}

@media screen and (max-width: 1090px) {
  .news__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .news__inner {
    padding-inline: 40px;
  }
}

@media screen and (max-width: 498px) {
  .news__inner {
    padding-inline: 16px;
    padding-top: 180px;
  }
}

.news__title--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.news__mainTitle {
  -ms-flex-preferred-size: 12%;
  flex-basis: 12%;
}

@media screen and (max-width: 1090px) {
  .news__mainTitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 10px;
  }
}

.news__title--en {
  white-space: nowrap;
  color: #232323;
  font-family: "Anton", sans-serif;
  font-size: 4.375rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.7px;
}

@media screen and (max-width: 600px) {
  .news__title--en {
    font-size: 2.5rem;
    width: 30%;
  }
}

.news__title--en span {
  display: inline;
  -webkit-text-stroke: 1.5px #232323;
  color: transparent;
}

.news__title--ja {
  font-size: 1.125rem;
  color: #232323;
  font-weight: 700;
  line-height: 100%;
  /* 18px */
  margin-top: 8px;
}

@media screen and (max-width: 1090px) {
  .news__title--ja {
    margin-top: 6px;
  }
}

.news__content {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
}

.news__content--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 600px) {
  .news__content--inner {
    padding-block: 50px;
  }
}

.news__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

@media screen and (max-width: 498px) {
  .news__items {
    gap: 12px;
  }
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  padding-inline: 40px;
  padding-block: 30px;
  border-radius: 10px;
  gap: 85px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .news__item {
    gap: 20px;
  }
}

@media screen and (max-width: 498px) {
  .news__item {
    padding-inline: 20px;
    padding-block: 30px;
  }
}

@media screen and (max-width: 416px) {
  .news__item {
    padding-inline: 10px;
  }
}

.news__date {
  padding-left: 40px;
  color: #828282;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 100%;
}

@media screen and (max-width: 1090px) {
  .news__date {
    padding-left: 0px;
  }
}

@media screen and (max-width: 498px) {
  .news__date {
    font-size: 0.75rem;
  }
}

.news__title {
  color: #232323;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 100%;
  /* 18px */
}

@media screen and (max-width: 498px) {
  .news__title {
    font-size: 0.875rem;
  }
}

.news__button {
  margin-top: 52px;
  margin-left: auto;
}

@media screen and (max-width: 498px) {
  .news__button {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.news-items__inner {
  padding-inline: 310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding-top: 70px;
  padding-bottom: 100px;
}

.news-item {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.news-itemText__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 60px;
  padding-block: 40px;
  padding-inline: 24px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  max-width: 890px;
  margin: 0 auto;
  padding-right: 100px;
}

@media screen and (max-width: 1200px) {
  .news-itemText__wrap {
    max-width: none;
    gap: 30px;
  }
}

@media screen and (max-width: 600px) {
  .news-itemText__wrap {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

.news-itemText__wrap::after {
  content: "";
  position: absolute;
  bottom: -42px;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 14px;
  height: 9px;
  background-image: url(../img/news-arrowIcon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-itemText__wrap:hover::after {
  -webkit-transform: translateY(-50%) translateX(6px);
  transform: translateY(-50%) translateX(6px);
}

.news-item__date {
  color: #828282;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  width: 97px;
}

.news-item__title {
  color: #232323;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  flex: 1;
}

.news-item {
  list-style: none;
}

.footer {
  position: relative;
  margin-top: -1px;
}

.footer__contact--wrap {
  background-color: #eeeeee;
}

.footer__contact--inner {
  padding: 185px 5% 305px;
  text-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-image: url(../img/bg-texture.png);
}

@media screen and (max-width: 1200px) {
  .footer__contact--inner {
    flex-direction: column;
    gap: 50px;
  }
}

@media screen and (max-width: 600px) {
  .footer__contact--inner {
    padding: 100px 5% 200px;
  }
}

.footer__contactText--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.footer__contact--title {
  color: #FFAF10;
  font-family: "Anton", sans-serif;
  font-size: 5.625rem;
  font-weight: 400;
  line-height: 100%;
  /* 90px */
  letter-spacing: 0.9px;
}

@media screen and (max-width: 498px) {
  .footer__contact--title {
    font-size: 4.375rem;
  }
}

.contact__top--txt {
  color: #232323;
  margin-top: 40px;
}

.contact__top--txt span {
  font-weight: 600;
  font-size: 1.5rem;
}

@media screen and (max-width: 1200px) {
  .contact__top--txt span {
    font-size: 1.2rem;
  }
}

.contact__top--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}

@media screen and (max-width: 1090px) {
  .contact__top--bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 1200px) {
  .contact__top--bottom {
    gap: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .contact__top--bottom {
    width: 100%;
    gap: 24px;
  }
}

.top__button--tel,
.top__button--mail {
  position: relative;
  width: 600px;
  height: 160px;
  background-color: #232323;
  border-radius: 10px;
  color: #fff;
  padding-block: 20px;
  padding-inline: 20px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (max-width: 1200px) {

  .top__button--tel,
  .top__button--mail {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {

  .top__button--tel,
  .top__button--mail {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {

  .top__button--tel,
  .top__button--mail {
    height: auto;
  }
}

.top__button--tel::before,
.top__button--mail::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 35px;
}

.top__button--tel::after,
.top__button--mail::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url("../img/contact-arrow-icon.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 16.53px;
  height: 14.48px;
  background-position: center;
}

.top__button--tel:hover,
.top__button--mail:hover {
  background-color: #eeeeee;
  color: #232323;
  border: 1px solid #232323;
}

.top__button--tel:hover .top__button--telIcon,
.top__button--tel:hover .top__button--mailIcon,
.top__button--mail:hover .top__button--telIcon,
.top__button--mail:hover .top__button--mailIcon {
  background-color: #232323;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.top__button--tel:hover .top__button--telTitle,
.top__button--tel:hover .top__button--mailTitle,
.top__button--mail:hover .top__button--telTitle,
.top__button--mail:hover .top__button--mailTitle {
  color: #232323;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.top__button--telTop,
.top__button--mailTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 21px;
}

@media screen and (max-width: 600px) {

  .top__button--telTop,
  .top__button--mailTop {
    gap: 10px;
  }
}

.top__button--telTitle,
.top__button--mailTitle {
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.6px;
}

@media screen and (max-width: 600px) {

  .top__button--telTitle,
  .top__button--mailTitle {
    font-size: 3rem;
  }
}

.top__button--telNumber {
  font-family: "Anton", "Arial", sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 100%;
  /* 24px */
}

@media screen and (max-width: 600px) {
  .top__button--telNumber {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 416px) {
  .top__button--telNumber {
    font-size: 1.125rem;
  }
}

.top__button--telBottom,
.top__button--mailBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 14px;
}

.top__button--telText,
.top__button--mailText {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 100%;
}

@media screen and (max-width: 600px) {

  .top__button--telText,
  .top__button--mailText {
    font-size: 0.875rem;
  }
}

.footer__instagram--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.footer__companyRecruit--wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.footer__companyRecruit {
  padding-top: 55px;
  color: #232323;
}

.footer__companyRecruit--title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
}

.footer__companyRecruit--lead {
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.7;
}

.footer__background--img {
  position: absolute;
  max-width: 1000px;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0.05;
  z-index: 0;
}

.footer__inner {
  padding: 120px 5%;
  gap: 50px;
  color: #fff;
  background-color: #232323;
  position: relative;
  top: 0;
  padding-top: 130px;
  padding-bottom: 64px;
  overflow: hidden;
  border-radius: 140px 140px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: -120px;
}

@media screen and (max-width: 800px) {
  .footer__inner {
    flex-direction: column-reverse;
    gap: 60px;
  }

  .footer__logo {
    margin: 0 auto;
  }
}


@media screen and (max-width: 600px) {
  .footer__inner {
    padding-top: 100px;
    padding-bottom: 40px;
    border-radius: 40px 40px 0 0;

  }
}

.footer__head {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .footer__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 20px;
    width: 100%;
  }
}

@media screen and (max-width: 498px) {
  .footer__head {
    padding-bottom: 10px;
    border-bottom: 0.5px solid #fff;
    gap: 12px;
  }
}

.footer__logo img {
  width: 270px;
}

@media screen and (max-width: 1200px) {
  .footer__logo img {
    width: 190px;
  }
}

@media screen and (max-width: 498px) {
  .footer__logo img {
    width: 140px;
  }
}

.footer__corporate--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #999999;
  margin-top: 76px;
}

@media screen and (max-width: 800px) {
  .footer__corporate--wrap {
    margin-top: 30px;
    width: 100%;
  }
}

@media screen and (max-width: 498px) {
  .footer__corporate--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 8px;
  }
}

@media screen and (max-width: 768px) {
  .footer__corporate--left {
    width: 100%;
  }
}

.footer__corporate--name {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

@media screen and (max-width: 800px) {
  .footer__corporate--name {
    text-align: center;
  }
}

.footer__corporate--postCode {
  margin-top: 4px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.32px;
}

@media screen and (max-width: 1400px) {
  .footer__corporate--postCode {
    font-size: 1rem;
  }
}

.footer__corporate--address {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.36px;
  margin-top: 40px;
}

@media screen and (max-width: 1400px) {
  .footer__corporate--address {
    font-size: 1rem;
    margin-top: 24px;
  }
}

.footer__address--button {
  display: block;
  margin-top: 14px;
  width: 100%;
}

.footer__address--button iframe {
  aspect-ratio: 2/1;
  width: 100%;
}

.footer__address--button a {
  color: #999999;
}

.footer__corporate--center {
  margin-top: 40px;
}

.footer__corporate--tel,
.footer__corporate--fax {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.6px;
}

@media screen and (max-width: 1400px) {

  .footer__corporate--tel,
  .footer__corporate--fax {
    font-size: 1rem;
  }
}

.footer__corporate--right a p {
  font-size: 1.25rem;
  font-weight: 500;
}

.footer__instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 498px) {
  .footer__bottom {
    margin-top: 20px;
  }
}

.footer__nav--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  .footer__nav--wrap {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1000px) {
  .footer__nav--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (max-width: 1000px) {
  .footer__nav--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
  }
}

.footer__nav--title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 1000px) {
  .footer__nav--title {
    font-size: 1.625rem;
    margin-bottom: 20px;
  }
}

.footer__nav--title a {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 1000px) {
  .footer__nav--title a {
    font-size: 1.625rem;
  }
}

.footer-child {
  color: #999999;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 498px) {
  .footer-child {
    font-size: 0.75rem;
  }
}

.footer-children {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

@media screen and (max-width: 1200px) {
  .footer-children {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .footer-children {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    margin-top: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footer-tel-link {
  color: #FFF;
  font-family: "Archivo Black";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.footer-tel-link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 56px;
  height: 54px;
  background-image: url("../img/footer-icon-tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-mail-link a,
.footer-line-link a {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

.footer-tel-link,
.footer-mail-link,
.footer-line-link {
  width: 388px;
  height: 54px;
  border-radius: 27px;
  border: 3px solid #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 78px;
  position: relative;
}

.footer-tel-link::after,
.footer-mail-link::after,
.footer-line-link::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 40px;
  width: 17px;
  height: 17px;
  background-image: url("../img/footer-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-mail-link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 56px;
  height: 54px;
  background-image: url("../img/footer-icon-mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-line-link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 56px;
  height: 54px;
  background-image: url("../img/footer-icon-line.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.footer__copy--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 40px;
}

.footer__instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.footer__instagram p {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  padding-left: 4px;
}

.footer__instagram img {
  width: 32px;
  height: 32px;
}

.copyLight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #c9c9c9;
  margin-top: 140px;
  font-size: 1rem;
}

@media screen and (max-width: 600px) {
  .copyLight {
    font-size: 0.75rem;
  }
}

.button_top {
  position: absolute;
  bottom: 72px;
  right: 5%;
  border: 1px solid #4F4F4F;
  font-size: 16px;
  width: 157px;
  height: 157px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 1.1875rem;
  color: #999999;
  font-weight: 600;
}

@media screen and (max-width: 1000px) {
  .button_top {
    width: 100px;
    height: 100px;
  }
}

.button_top::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.service__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 80px;
}

@media screen and (max-width: 900px) {
  .service__button {
    margin-right: auto;
    margin-left: auto;
  }
}

.footer__flex {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 25%;
}

@media screen and (max-width: 1000px) {
  .footer__flex {
    width: 100%;
  }
}

.slider .slick-slide {
  margin: 0 10px;
  /*スライド左右の余白調整*/
}

.slider {
  margin-top: 60px;
  padding: 0 3.5%;
}

/* 親要素のスタイル */
.works-slider__img {
  position: relative;
  /* 子要素の位置指定を可能にする */
  overflow: hidden;
  /* はみ出した部分を隠す */
  border-radius: 20px 20px 0 0;
  /* 親要素の角丸 */
}

/* ホバーしたときの画像拡大 */
.works__slider-item:hover .works-slider__img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  /* 中の画像のみ拡大 */
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /* スムーズな拡大アニメーション */
}

/* 初期状態の画像設定 */
.works-slider__img img {
  width: 100%;
  /* 親要素に合わせてサイズ調整 */
  height: auto;
  /* アスペクト比を保つ */
  border-radius: inherit;
  /* 親要素のborder-radiusを継承 */
  -webkit-transform: scale(1);
  transform: scale(1);
  /* 初期状態では拡大なし */
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /* ホバー前もトランジション設定 */
}

.section__works {
  background-color: #eeeeee;
  padding-top: 285px;
  padding-bottom: 280px;
  margin-top: -80px;
  background-image: url(../img/bg-texture.png);
}

.works-slider {
  color: #232323;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.works-slider__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.works-slider__contents {
  background-color: #fff;
  border-radius: 0px 0px 10px 10px;
  padding-block: 18px;
  padding-inline: 16px;
}

.works-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #666;
  font-size: 0.875rem;
  font-weight: 500;
}

.works-card__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.343px;
}

.works-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 16px;
}

.tagflex {
  display: flex;
  gap: 5px;
}

.works-card__tag {
  color: #4B4B4B;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  padding-block: 6px;
  border-radius: 14px;
}

.works-card__date::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: #666;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.works-card__location {
  padding-left: 20px;
}

.works-card__date {
  position: relative;
}

.works-slider__date {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.works-slider__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.works-slider__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 4px;
}

.works-slider__labelWrap {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  margin-bottom: 5px;
}

.works-slider__labelWrap div {
  padding-inline: 20px;
  padding-block: 8px;
  border: 1px solid #232323;
  border-radius: 16.5px;
}

.works-slider__label {
  padding-inline: 20px;
  padding-block: 8px;
  border: 1px solid #232323;
  border-radius: 16.5px;
}

.fadeIn-common {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: opacity 0.3s ease-out, visibility 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.scroll {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.js-opacity-fv {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.opacity-fv-scroll {
  opacity: 1;
  visibility: visible;
}

.js-opacity {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease-out, visibility 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out, transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

.opacity-scroll {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.service__content--title {
  padding-top: 140px;
}

.service__content--titleEn {
  font-family: "Anton", sans-serif;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.service__content--titleEn::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #FFAF10;
  border-radius: 50%;
  z-index: -1;
}

.service__content--titleJa {
  color: #232323;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.2px;
  margin-top: 16px;
  position: relative;
  padding-left: 31px;
}

.service__content--titleJa::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/spanner-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.service__case {
  padding-top: 120px;
}

.service__case--inner {
  margin-left: calc(300px + 5%);
  margin-right: 5%;
}

.service__case--title {
  -moz-text-align-last: left;
  text-align-last: left;
}

.service__case--titleEn {
  font-size: 3.75rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 1;
}

.service__case--titleJa {
  font-size: 1.375rem;
  color: #FFAF10;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.1px;
  margin-top: 16px;
}

.service__case--itemFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.service__case--item {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  width: 48%;
  padding-block: 30px;
  padding-inline: 20px;
  border-radius: 16px;
}

.service__case--itemTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.service__case--itemNumber {
  padding-right: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1px;
  position: relative;
}

.service__case--itemNumber::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -2px;
  height: 24px;
  width: 2px;
  background-color: #232323;
}

.service__case--itemText {
  padding-left: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.8px;
}

.case-before {
  position: relative;
  margin-top: -10px;
}

.case-before::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -29px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #232323;
  /* 色をオレンジに変更 */
}

.case-before__inner,
.case-after__inner {
  padding-block: 12px;
  padding-inline: 33px;
}

.case-before__inner,
.case-after__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.case-before__title {
  color: #ADADAD;
  font-size: 2.375rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  position: relative;
  padding-block: 10px;
  text-align: center;
  width: 100%;
}

.case-before__text,
.case-after__text {
  text-align: justify;
  font-size: 1rem;
  font-weight: 500;
  min-height: 200px;
}

.case-after__textBox,
.case-before__textBox {
  padding-block: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 416px) {

  .case-after__textBox,
  .case-before__textBox {
    padding-block: 8px;
  }
}

.case-after__textBox img,
.case-before__textBox img {
  width: 70px;
  height: 96px;
  margin-right: 16px;
}

@media screen and (max-width: 416px) {

  .case-after__textBox img,
  .case-before__textBox img {
    width: 56px;
  }
}

.case-after__title {
  color: #FFAF10;
  font-weight: 700;
  font-size: 2.375rem;
  letter-spacing: 0.9px;
  position: relative;
  padding-block: 10px;
  text-align: center;
  width: 100%;
}

.section__flow {
  background-color: #fff;
}

.section__flow--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-inline: 120px;
  padding-top: 120px;
  padding-bottom: 90px;
}

.section__flow--titleEn {
  font-family: "Anton", sans-serif;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1;
}

.section__flow--titleJa {
  color: #FFAF10;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.1px;
  margin-top: 16px;
}

.section__flow--content {
  width: 60%;
}

.section__flow--items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}

.flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.flow-item:last-child .flow-item__icon::after {
  display: none;
}

.flow-item__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
}

.flow-item__icon img {
  width: 140px;
  height: 140px;
  -o-object-fit: cover;
  object-fit: cover;
}

.flow-item__icon::after {
  content: "";
  position: absolute;
  bottom: -62px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 3px;
  height: 62px;
  background-color: #D9D9D9;
}

.flow-item__titleWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 10px;
}

.flow-item__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

.flow-item__number img {
  width: 76px;
  height: 86px;
  min-width: 76px;
}

.flow-item__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.1px;
}

.flow-item__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.8px;
  margin-top: 10px;
}

.flow-item__text a {
  color: #404040;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.7px;
  border-bottom: 1px solid #404040;
  padding-bottom: 2px;
}

.service__place {
  padding-top: 120px;
  margin-top: -50px;
}

.service__place--inner {
  background-image: url(../img/service-placeBg.png);
  border-radius: 10px;
  background-repeat: no-repeat;
  text-align: center;
  padding-block: 72px;
  padding-inline: 82px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: calc(300px + 5%);
  margin-right: 5%;
}

.service__place--title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.1px;
  margin-bottom: 18px;
  position: relative;
  padding-inline: 50px;
  color: #fff;
}

.service__place--title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 23px;
  height: 21px;
  background-image: url(../img/hagurumaIcon-orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.service__place--textWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 16px;
  width: 60%;
}

.service__place--textBox {
  -moz-text-align-last: left;
  text-align-last: left;
  color: #fff;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 8px;
}

.service__place--subTitle {
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.service__place--text {
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding-left: 10px;
}

.space {
  padding-left: 30px;
}

.next__contents {
  width: 100%;
  background-color: #eeeeee;
  background-image: url(../img/bg-texture.png);
}

.next__contents--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: auto;
  padding-top: 84px;
  padding-inline: 100px;
}

.next__content__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 24px;
}

.next__contents--item {
  min-width: 426px;
  width: 454px;
  width: 48%;
  position: relative;
}

.next__contents--card:hover .next__content__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  /* 画像のみ拡大 */
}

.next__content {
  position: absolute;
  top: 58%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 86%;
  z-index: 10;
}

.next__text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.9px;
}

.next__content__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.next__content__image img {
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.recruit::before {
  background-color: #fff;
}

.recruit-common {
  margin: 120px auto 0;
  width: 90%;
  min-height: 600px;
  background-image: url(../img/recruit-common-bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.recruit-common__inner {
  padding-inline: 32px;
  padding-block: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 600px;
  gap: 200px;
}

@media screen and (max-width: 416px) {
  .recruit-common__inner {
    padding-inline: 14px;
  }
}

.recruit-common__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .recruit-common__contents {
    flex-direction: column;
    gap: 50px;
  }
}

.recruit-common__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  flex: 1;
}

.recruit-common__title {
  font-size: 2.3125rem;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 600px) {
  .recruit-common__title {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.recruit-common__text {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 500;
  color: #fff;
  margin-top: 22px;
}

@media screen and (max-width: 600px) {
  .recruit-common__text {
    font-size: 18px;
    letter-spacing: 0.1rem;
  }

  .case-before__text,
  .case-after__text {
    min-height: auto;
  }

  .sectionTop__title--small {
    top: 50% !important;
    transform: translateY(-50%);
    background: transparent;
  }
}

.recruit-button__items {
  padding: 0 5% 120px;
}

.recruit-commonTop {
  background-image: url(../img/bg-texture.png);
  background-color: #eeeeee;
  margin-top: -120px;
  padding-top: 20px;
}

.recruit-btnNext {
  width: 230px;
}

.sectionTop__title--small {
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
}

.title-orange {
  color: #FFAF10;
}

.section__title--en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section__title-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-child a {
  font-weight: 500;
}

.nav-right__telephoneNumber a,
.nav-right__faxNumber a {
  font-weight: 600;
}

.btn__text-wrapper1Recruit {
  min-width: 160px;
}

@media (max-width: 1024px) {
  .breadcrumb-small {
    padding: 0 5%;
  }
}