@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  font-feature-settings: "palt";
}

:focus {
  outline: 0;
}

body, html {
  font-size: 62.5%;
  line-height: 1.6;
  color: #000;
  font-family: "Noto Sans JP", sans-serif, "游ゴシック", Yu Gothic, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0;
}

main {
  display: block;
}

address, blockquote, caption, cite, code, dd, dt, em, h1, h2, h3, h4, h5, h6, input, li, p, pre, select, small, strong, td, textarea, th {
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
}

li, ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

a:hover {
  text-decoration: none;
}

br {
  letter-spacing: 0;
}

button {
  border: none;
  background: initial;
  box-sizing: border-box;
} /*------------------------------------------------------------
color
------------------------------------------------------------*/
/*-- base color --*/
:root {
  --corporate-red: #b4002d;
  --accent-red: #CC0033;
  --white: #ffffff;
  --black: #000000;
}

/*------------------------------------------------------------*/
.font-jsf-m {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
}
.font-jsf-mi {
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
}
.font-jsf-sb {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
}
.font-jsf-sbi {
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-weight: 600;
}
.font-jsf-b {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
}

@media (min-width: 640px) {
  .bg-animation {
    overflow: hidden;
    position: relative;
  }
  .bg-animation::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: ease 300ms all;
    z-index: 1;
  }
  .bg-animation img {
    transition: ease 300ms all;
    transform: scale(1);
    z-index: 0;
  }
  .bg-animation div {
    z-index: 1;
  }
  .bg-animation:hover::before {
    background-color: rgba(180, 0, 45, 0.1);
  }
  .bg-animation:hover > img {
    transform: scale(1.2);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*----------------------------------------

	- slick
	- pc（1281px〜）
	- sp（〜640px）

-----------------------------------------*/
/*----------------------------------------
	slick
-----------------------------------------*/
#slick_container {
  width: 104%;
  margin: 0 auto;
  margin-left: -2%;
  position: relative;
}

#slick_container .slick-slider {
  transform: rotate(4.5deg);
}

.slick-prev,
.slick-next {
  width: 46px;
  height: 140px;
}

.slick-prev {
  top: 42%;
  left: 1.5%;
}

.slick-next {
  top: 68%;
  right: 1.5%;
}

.slick-prev:before,
.slick-next:before {
  content: "";
}

/*----------------------------------------
	pc（1281px〜）
-----------------------------------------*/
@media only screen and (min-width: 1281px) {
  /*----------------------------------------
  	slick
  -----------------------------------------*/
}
/*----------------------------------------
	sp（〜640px）
-----------------------------------------*/
@media only screen and (max-width: 640px) {
  /*----------------------------------------
  	slick
  -----------------------------------------*/
  #slick_container {
    width: 106%;
    margin-left: -3%;
  }
  .slick-prev,
.slick-next {
    width: 23px;
    height: 70px;
  }
  .slick-prev {
    top: 42%;
    left: 2.5%;
  }
  .slick-next {
    top: 58%;
    right: 2.5%;
  }
  .slick-prev:before,
.slick-next:before {
    content: "";
  }
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/**
 * Swiper 5.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 16, 2020
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

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

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*------------------------------------------------------------
タグソート
------------------------------------------------------------*/
.tag-container {
  max-width: 378px;
  background-color: var(--corporate-red);
  padding: 32px;
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 80;
}
@media (max-width: 750px) and (min-width: 641px) {
  .tag-container {
    bottom: 0;
    position: relative;
    margin-left: auto;
  }
}
@media (max-width: 640px) {
  .tag-container {
    width: 86.66%;
    left: 50%;
    position: relative;
    right: initial;
    padding: 26px;
    bottom: 0;
    transform: translateX(-50%);
  }
}
.tag-trigger-head {
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .tag-trigger-head {
    font-size: 1.3rem;
  }
}
.tag-trigger-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 640px) {
  .tag-trigger-list {
    gap: 6px;
  }
}
.tag-trigger .tag-item {
  cursor: pointer;
}
@media (max-width: 640px) {
  .tag-trigger .tag-item {
    font-size: 1.2rem;
    height: 22px;
  }
}
.tag-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: var(--white);
  z-index: 5;
}
.tag-close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 64px;
  background-color: var(--corporate-red);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 10;
}
.tag-close .btn-lines {
  position: relative;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}
.tag-close .btn-lines span {
  width: 24px;
  height: 2px;
  background-color: var(--white);
  top: 50%;
  left: 50%;
  position: absolute;
}
.tag-close .btn-lines span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(15deg);
}
.tag-close .btn-lines span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-195deg);
}
.tag-close .text {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  display: flex;
  margin: auto;
  padding-top: 5px;
  letter-spacing: -0.1em;
}
.tag-content {
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
}
.tag-content-wrap {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 100px 0;
}
.tag-content-inner {
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
}
.tag-content-main {
  max-width: 996px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.tag-content-head {
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--corporate-red);
  width: fit-content;
  height: fit-content;
  padding: 8px;
  margin-bottom: 30px;
  line-height: 1;
  display: none;
}
.tag-content-head.-none {
  display: none;
}
.tag-content-head.-show {
  display: flex;
  align-items: center;
}
@media (max-width: 640px) {
  .tag-content-head.-large {
    font-size: 2.6rem;
  }
}
.tag-content-lead {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--corporate-red);
  width: fit-content;
  position: relative;
}
.tag-content-lead::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-right: 2px solid var(--corporate-red);
  border-bottom: 2px solid var(--corporate-red);
  top: 50%;
  right: -12px;
  transform: translateY(-50%) rotate(-45deg);
}
.tag-content-lead.-exlink {
  display: flex;
  align-items: center;
}
.tag-content-lead.-exlink::after {
  display: none;
}
.tag-content-lead.-exlink svg {
  position: relative;
  margin-left: 8px;
  fill: var(--corporate-red);
}
.tag-content .tag-img-container {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}
.tag-content .tag-img-container .item-img {
  transform: scale(1);
  transition: ease 300ms all;
}
.tag-content .tag-img-container .tag-category {
  position: absolute;
  left: 0;
  bottom: 0;
  width: fit-content;
  height: 28px;
  background-color: var(--white);
  line-height: 1;
  display: flex;
  z-index: 5;
}
.tag-content .tag-img-container .tag-category span {
  font-size: 1.6rem;
  font-weight: 500;
  margin: auto;
  padding: 4px 8px 4px 8px;
  color: var(--corporate-red);
  position: relative;
}
.tag-content-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 48px;
  column-gap: 24px;
  position: relative;
  z-index: 0;
}
@media (max-width: 640px) {
  .tag-content-list {
    justify-content: center;
  }
}
.tag-content-list .tag-group {
  width: 316px;
  display: flex;
  flex-direction: column;
}
.tag-content-list .tag-group .tag-img-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transition: ease 300ms all;
  z-index: 1;
}
.tag-content-list .tag-group .tag-img-container img {
  transition: ease 300ms all;
}
@media (min-width: 641px) {
  .tag-content-list .tag-group a:hover .tag-img-container::before {
    background-color: rgba(180, 0, 45, 0.1);
  }
  .tag-content-list .tag-group a:hover .tag-img-container img {
    scale: 1.2;
  }
}
.tag-content-list .tag-group.-none {
  display: none;
}
.tag-content-list .tag-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
}
.tag-content-list .tag-list .tag-item {
  background-color: var(--corporate-red);
  color: var(--white);
}
@media (max-width: 640px) {
  .tag-content-list .tag-list .tag-item {
    font-size: 1.4rem;
  }
}

.tag-item {
  font-size: 1.4rem;
  font-weight: 500;
  background-color: var(--white);
  width: fit-content;
  height: 26px;
  padding: 0 8px;
  word-break: keep-all;
  transition: ease 300ms all;
}
@media (min-width: 641px) {
  .tag-item:hover {
    color: var(--corporate-red);
  }
}
@media (max-width: 640px) {
  .tag-item {
    font-size: 1.2rem;
    height: 22px;
  }
}

/* ↓↓↓ searchitem ↓↓↓ */
.tag-group.-hide {
  animation-name: itemHide;
  animation-delay: 0s;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

.tag-group.-none {
  display: none;
}

.tag-content-head .-none {
  display: none;
}

.tag-group.-show {
  display: block;
  animation-name: itemShow;
  animation-delay: 0s;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

.tag-content-head .-show {
  display: block;
  animation-name: itemShow;
  animation-delay: 0s;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

@keyframes itemHide {
  0% {
    transform: scale(1);
    visibility: visible;
  }
  100% {
    transform: scale(0);
    visibility: hidden;
  }
}
@keyframes itemShow {
  0% {
    transform: scale(0.5);
    visibility: hidden;
  }
  100% {
    transform: scale(1);
    visibility: visible;
  }
}
body {
  overflow-x: hidden;
}
body .header-bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 0;
  display: none;
}
body .header-bg.-open {
  transition: ease 300ms all;
  display: block;
}
body .header-bg.-open::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(102, 2, 28, 0.7);
  z-index: 100;
}

a {
  transition: 300ms ease all;
}

.wrap {
  overflow: hidden;
}

main {
  position: relative;
  overflow: hidden;
}

/*-- break --*/
.-pc {
  display: block;
}
@media screen and (max-width: 640px) {
  .-pc {
    display: none;
  }
}

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

.-wb {
  display: inline-block;
}

/*-- style --*/
.main-content .inner {
  width: 100%;
  max-width: 1056px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .main-content .inner {
    padding: 0;
  }
}
.main-content-wrap {
  position: relative;
  z-index: 50;
}

.bg-line {
  display: flex;
  position: absolute;
  width: 100%;
  height: 80%;
  top: 100vh;
  left: 10.93%;
  z-index: -1;
}
@media (max-width: 640px) {
  .bg-line {
    height: 85%;
    left: 50%;
    transform: translateX(-50%);
    top: 296px;
  }
}
.bg-line span {
  border-left: 1px solid #CECECE;
  height: 100%;
  width: 20%;
  opacity: 0.6;
}
@media (max-width: 640px) {
  .bg-line span {
    border-left: 1px solid #d5d5d5;
    width: 33%;
  }
  .bg-line span:nth-of-type(odd) {
    display: none;
  }
}
.bg-line span:last-of-type {
  border-right: 1px solid #CECECE;
}
@media (max-width: 640px) {
  .bg-line span:last-of-type {
    border-right: 1px solid #d5d5d5;
  }
}

.info-block .category-caption {
  font-size: 1.6rem;
  color: var(--accent-red);
  margin-bottom: 30px;
  line-height: 1;
  width: fit-content;
  position: relative;
}
@media (max-width: 640px) {
  .info-block .category-caption {
    margin-bottom: 14px;
  }
}
.info-block .category-heading {
  width: fit-content;
  max-width: 268px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.info-block .category-text {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: justify;
  line-height: 2.125;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .info-block .category-text {
    font-size: 1.4rem;
  }
}

.head-text {
  position: absolute;
  width: 342px;
  height: 48px;
  display: block;
  top: -30px;
  right: 30px;
}
@media (max-width: 640px) {
  .head-text {
    max-width: 188px;
    height: 7%;
    top: -30px;
  }
}
.head-text #test {
  opacity: 0;
}

.view-more-link {
  width: 100%;
  max-width: 230px;
  height: 40px;
  background-color: var(--white);
  position: relative;
  display: flex;
  align-content: center;
  margin-left: auto;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 640px) {
  .view-more-link {
    max-width: 160px;
    justify-content: flex-start;
    border: initial;
    background-color: var(--corporate-red);
  }
}
.view-more-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--corporate-red);
  top: 0;
  left: -100%;
  transition: ease 300ms all;
  transition-delay: 0.3s;
  z-index: 0;
}
@media (max-width: 640px) {
  .view-more-link::before {
    display: none;
  }
}
.view-more-link::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-right: 2px solid var(--corporate-red);
  border-bottom: 2px solid var(--corporate-red);
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(-45deg);
  transition: ease 300ms all;
}
@media (max-width: 640px) {
  .view-more-link::after {
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
  }
}
.view-more-link span {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--corporate-red);
  z-index: 1;
  position: relative;
  width: 100%;
  padding-top: 15px;
  padding-left: 10px;
  border-bottom: 1px solid var(--corporate-red);
}
.view-more-link span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: -100%;
  background-color: var(--corporate-red);
  transition: all 0.3s;
}
@media (max-width: 640px) {
  .view-more-link span {
    color: var(--white);
  }
}
@media (min-width: 641px) {
  .view-more-link:hover {
    border-color: transparent;
  }
  .view-more-link:hover::before {
    left: 0;
  }
  .view-more-link:hover::after {
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transition-delay: 0.4s;
    right: 10px;
  }
  .view-more-link:hover span {
    color: var(--white);
    transition-delay: 0.4s;
    border: none;
  }
  .view-more-link:hover span::before {
    left: 0;
  }
}

.illust-container img {
  width: fit-content;
}

.img-link {
  display: block;
}

@media (min-width: 641px) {
  .bottomlinks-sp {
    display: none;
  }
}
@media (max-width: 640px) {
  .bottomlinks-sp {
    width: 86.66%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    display: flex;
    visibility: hidden;
    z-index: 90;
    transition: ease 300ms all;
  }
  .bottomlinks-sp .bottom-link-btn {
    width: 50%;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
  }
  .bottomlinks-sp .bottom-link-btn.-entry {
    color: var(--corporate-red);
    background-color: var(--white);
  }
  .bottomlinks-sp .bottom-link-btn.-mypage {
    background-color: var(--accent-red);
    color: var(--white);
  }
}
.bottomlinks-sp span {
  line-height: 1;
}
.bottomlinks-sp.-hide {
  opacity: 0;
  visibility: hidden;
  z-index: -10;
}
.bottomlinks-sp.-show {
  opacity: 1;
  visibility: visible;
}

#top-wrapper {
  margin: 0 auto;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
}

#top * {
  box-sizing: border-box;
}
#top .fv {
  width: 100%;
  height: 100vh;
  min-height: 680px;
  position: relative;
  margin-bottom: 128px;
}
@media (max-width: 750px) and (min-width: 641px) {
  #top .fv {
    height: 100%;
    min-height: initial;
  }
}
@media (max-width: 640px) {
  #top .fv {
    margin-bottom: 58px;
    height: 100%;
    min-height: initial;
  }
}
#top .fv-fade-slide {
  overflow: hidden;
}
#top .fv-fade-slide .item {
  background-size: cover;
  height: 100vh;
  min-height: 680px;
  margin: 0;
}
@media (max-width: 750px) and (min-width: 641px) {
  #top .fv-fade-slide .item {
    height: 72vh;
    min-height: 468px;
  }
}
@media (max-width: 640px) {
  #top .fv-fade-slide .item {
    height: 45vw;
    min-height: 298px;
  }
}
#top .fv-fade-slide .item[data-slide=second] {
  background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-cuadra_pc.jpg);
}
#top .fv-fade-slide .item[data-slide=third] {
  background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-muroda_pc.jpg);
}
#top .fv-fade-slide .item[data-slide=fourth] {
  background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-tonda_pc.jpg);
}
#top .fv-fade-slide .item[data-slide=fifth] {
  background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-ina_pc.jpg);
  background-position: bottom;
}
#top .fv-fade-slide .item[data-slide=sixth] {
  background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-kikuchi_pc.jpg);
}
#top .fv-fade-slide .item[data-slide=seven] {
  background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-li_pc.jpg);
}
@media (max-width: 750px) and (min-width: 376px) {
  #top .fv-fade-slide .item {
    background-position: right;
  }
  #top .fv-fade-slide .item[data-slide=second] {
    background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-cuadra_tab.jpg);
  }
  #top .fv-fade-slide .item[data-slide=third] {
    background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-muroda_tab.jpg);
    background-position-x: left;
  }
  #top .fv-fade-slide .item[data-slide=fourth] {
    background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-tonda_tab.jpg);
  }
  #top .fv-fade-slide .item[data-slide=fifth] {
    background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-ina_pc.jpg);
    background-position-x: left;
  }
  #top .fv-fade-slide .item[data-slide=sixth] {
    background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-kikuchi_tab.jpg);
    background-position-x: left;
  }
  #top .fv-fade-slide .item[data-slide=seven] {
    background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-li_tab.jpg);
    background-position-x: left;
  }
}
@media (max-width: 375px) {
  #top .fv-fade-slide .item[data-slide=second] {
    background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-cuadra_sp.jpg);
  }
  #top .fv-fade-slide .item[data-slide=third] {
    background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-muroda_sp.jpg);
  }
  #top .fv-fade-slide .item[data-slide=fourth] {
    background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-tonda_sp.jpg);
  }
  #top .fv-fade-slide .item[data-slide=fifth] {
    background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-ina_sp.jpg);
  }
  #top .fv-fade-slide .item[data-slide=sixth] {
    background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-kikuchi_sp.jpg);
  }
  #top .fv-fade-slide .item[data-slide=seven] {
    background-image: url(/recruit/fresh/assets/img/top/index_fv-slide-li_sp.jpg);
  }
}
#top .fv .swiper-wrapper .swiper-slide {
  height: 100vh;
}
#top .fv-catch {
  position: absolute;
  margin-top: -20px;
  left: 142px;
  max-width: 394px;
  min-width: 340px;
  width: 30vw;
  height: auto;
  z-index: 90;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 750px) and (min-width: 641px) {
  #top .fv-catch {
    left: 25px;
    position: relative;
    top: initial;
    transform: initial;
    margin-top: -50px;
    margin-bottom: 32px;
  }
}
@media (max-width: 640px) {
  #top .fv-catch {
    position: relative;
    top: 63%;
    left: 25px;
    margin-bottom: 24px;
    min-width: initial;
    transform: initial;
    width: 66.734%;
  }
}
@media (max-width: 640px) and (max-height: 560px) {
  #top .fv-catch {
    width: 90vw;
    max-width: 70%;
    min-width: initial;
  }
}
#top .news {
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 640px) {
  #top .news {
    margin-bottom: 40px;
  }
}
#top .news .category-caption {
  font-size: 2.4rem;
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  #top .news .category-caption {
    margin-bottom: 32px;
  }
}
#top .news .inner {
  position: relative;
}
#top .news-container {
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 640px) {
  #top .news-container {
    width: 68.534%;
  }
}
#top .news-table {
  margin-bottom: 50px;
}
#top .news-table .news-item {
  display: flex;
  position: relative;
  align-items: flex-start;
  align-items: baseline;
  padding-bottom: 32px;
  column-gap: 34px;
  letter-spacing: 0.15em;
}
@media (max-width: 640px) {
  #top .news-table .news-item {
    flex-direction: column;
  }
}
#top .news-table .news-item::before {
  content: "";
  background-image: linear-gradient(to right, #707070, #707070 3px, transparent 3px, transparent 8px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: 99%;
  bottom: 0;
  left: 0;
  right: 0;
}
#top .news-table .news-item-head {
  width: 11.15%;
  font-size: 1.4rem;
}
@media (max-width: 640px) {
  #top .news-table .news-item-head {
    width: 100%;
    margin-bottom: 10px;
  }
}
#top .news-table .news-item-text {
  width: 84.85%;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: justify;
}
@media (max-width: 640px) {
  #top .news-table .news-item-text {
    width: 100%;
  }
}
#top .news-table .news-item:not(:last-of-type) {
  margin-bottom: 32px;
}
#top .news .illust-container {
  position: relative;
  bottom: 0;
  left: 0;
  width: fit-content;
}
@media (max-width: 640px) {
  #top .news .illust-container {
    left: 25px;
    width: 60vw;
  }
}
#top .news .right-image {
  position: absolute;
  right: 0;
  max-width: 80px;
  width: 6.3vw;
  top: 110px;
  z-index: -1;
}
@media (max-width: 640px) {
  #top .news .right-image {
    max-width: initial;
    min-width: 80px;
    top: initial;
    bottom: -75px;
    right: 0;
    z-index: -1;
  }
}
#top .about {
  position: relative;
  margin-bottom: 224px;
}
#top .about-inner {
  display: flex;
  column-gap: 80px;
  margin-bottom: 224px;
  padding-right: 30px;
  position: relative;
}
@media (max-width: 640px) {
  #top .about-inner {
    flex-direction: column;
    width: 100%;
    padding-right: 0;
    margin-bottom: 96px;
  }
}
@media (max-width: 640px) {
  #top .about {
    margin: 0 auto 96px;
  }
}
#top .about .category-title {
  position: relative;
  top: 0;
  left: 0;
  width: 59.78vw;
  max-width: 780px;
  height: 10%;
  z-index: 1;
}
@media (max-width: 640px) {
  #top .about .category-title {
    width: 78%;
  }
}
#top .about-img {
  width: 64.883%;
  height: 480px;
}
@media (max-width: 640px) {
  #top .about-img {
    width: 84.27%;
    height: auto;
    margin-left: 0;
    margin-bottom: 32px;
  }
}
#top .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top .about .info-block {
  width: 264px;
  margin-bottom: 30px;
}
@media (max-width: 640px) {
  #top .about .info-block {
    width: 68.534%;
    margin: 0 auto;
  }
}
#top .about .info-block .category-text {
  margin-bottom: 56px;
}
@media (max-width: 640px) {
  #top .about .info-block .category-text {
    margin-bottom: 20px;
  }
}
#top .about .category-heading {
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  #top .about .category-heading {
    width: 168px;
    position: relative;
    top: 4px;
  }
}
#top .about .illust-container {
  position: absolute;
  right: 0;
  bottom: -68px;
  width: 34.375vw;
}
@media (max-width: 640px) {
  #top .about .illust-container {
    bottom: initial;
    top: 46.5vw;
    right: 4px;
    width: 44.8vw;
  }
}
#top .about .bg-animation:hover::before {
  background-color: initial;
}
#top .business {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  margin-bottom: 230px;
}
@media (max-width: 640px) {
  #top .business {
    margin-bottom: 80px;
  }
}
#top .business .inlink {
  display: block;
  height: 100%;
  background-color: #007aff;
}
#top .business .inlink .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#top .business .inlink .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: ease 300ms all;
  transform: scale(1);
}
@media (max-width: 640px) {
  #top .business .inlink .bg img {
    object-position: 0% 38%;
  }
}
@media (min-width: 641px) {
  #top .business .inlink:hover .bg img {
    transform: scale(1.2);
  }
}
#top .business .category-title {
  position: absolute;
  top: 0;
  right: 118px;
  width: 50.78%;
  max-width: 650px;
  height: 12%;
  z-index: 1;
}
@media (max-width: 640px) {
  #top .business .category-title {
    width: 100%;
    left: 0;
    right: initial;
    height: 12vw;
    max-width: initial;
  }
}
#top .business .inner {
  padding-top: 194px;
  padding-bottom: 90px;
}
@media (max-width: 640px) {
  #top .business .inner {
    padding-top: 64px;
    padding-bottom: 45px;
  }
}
#top .business .info-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 640px) {
  #top .business .info-wrap {
    flex-direction: column;
    align-items: flex-start;
    width: 80.535%;
    margin: 0 auto;
  }
}
#top .business .info-block {
  max-width: 350px;
  margin-bottom: 70px;
}
@media (max-width: 640px) {
  #top .business .info-block {
    margin-bottom: 0;
    max-width: initial;
  }
}
#top .business .info-block .category-heading {
  margin-bottom: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 640px) {
  #top .business .info-block .category-heading {
    width: 172px;
    margin-bottom: 18px;
  }
}
#top .business .info-block .category-caption {
  color: var(--white);
  font-size: 2.4rem;
}
#top .business .info-block .category-text {
  line-height: initial;
  margin-bottom: 56px;
}
@media (max-width: 640px) {
  #top .business .info-block .category-text {
    margin-bottom: 36px;
  }
}
#top .business .info-block .category-text .fill-bg {
  font-weight: 700;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 4px;
  z-index: 5;
}
@media (max-width: 640px) {
  #top .business .info-block .category-text .fill-bg {
    font-size: 1.4rem;
  }
}
#top .business .info-block .category-text .fill-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: -1;
}
#top .business .info-block .category-text .fill-bg + .fill-bg {
  margin-top: 15px;
}
@media (max-width: 640px) {
  #top .business .info-block .category-text .fill-bg + .fill-bg {
    margin-top: 7px;
    white-space: nowrap;
  }
}
#top .business .info-block .view-more-link {
  margin-left: 0;
}
@media (max-width: 640px) {
  #top .business .info-block .view-more-link {
    margin-left: auto;
    margin-right: 30px;
  }
}
#top .business .illust-container {
  position: absolute;
  left: 168px;
  top: -115px;
  width: 20.313vw;
  max-width: 260px;
}
@media (max-width: 640px) {
  #top .business .illust-container {
    max-width: 168px;
    width: 50vw;
    left: 5px;
  }
}
#top .people {
  position: relative;
  margin-bottom: 210px;
}
@media (max-width: 640px) {
  #top .people {
    margin-bottom: 80px;
  }
}
#top .people .inner-left {
  width: 100%;
  padding: 0 0 0 30px;
  margin: 0 auto;
}
#top .people .info-wrap {
  display: flex;
  position: relative;
  column-gap: 72px;
  width: 100vw;
  max-width: 1280px;
}
@media (max-width: 640px) {
  #top .people .info-wrap {
    width: 100%;
    flex-direction: column;
    overflow: initial;
  }
}
#top .people .info-wrap .category-title {
  position: absolute;
  top: -7vw;
  right: 0;
  width: 38.907%;
  max-width: 498px;
  margin-right: 140px;
  height: 7vw;
  z-index: 1;
}
@media (min-width: 1281px) {
  #top .people .info-wrap .category-title {
    top: -90px;
  }
}
@media (max-width: 640px) {
  #top .people .info-wrap .category-title {
    position: absolute;
    top: -55px;
    right: -27vw;
    width: 72vw;
    max-width: 252px;
    margin-right: 0;
    z-index: 1;
  }
}
@media (max-width: 640px) {
  #top .people .category-caption {
    margin-bottom: 22px;
  }
}
@media (max-width: 640px) {
  #top .people .category-heading {
    width: 170px;
  }
}
#top .people .info-block {
  width: 268px;
}
@media (max-width: 640px) {
  #top .people .info-block {
    width: 76.534%;
    margin: 0 auto;
  }
}
#top .people .info-block .category-text {
  margin-bottom: 130px;
}
@media (max-width: 640px) {
  #top .people .info-block .category-text {
    margin-bottom: 24px;
  }
}
#top .people .info-block .view-more-link {
  margin-left: inherit;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  #top .people .info-block .view-more-link {
    margin-left: auto;
    margin-right: 15px;
    margin-bottom: 40px;
  }
}
#top .people-slide {
  width: 100%;
}
#top .people .people-slide {
  position: relative;
}
@media (max-width: 640px) {
  #top .people .people-slide {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 130px;
  }
}
#top .people .people-slide .item {
  position: relative;
}
#top .people .people-slide .item .profile {
  position: absolute;
  width: 100%;
  padding: 15px 10.615%;
  display: flex;
  flex-direction: column;
  bottom: 0;
  left: 0;
  z-index: 0;
  transition: transform 0.2s linear;
  transform-origin: bottom;
  z-index: 10;
}
@media (max-width: 640px) {
  #top .people .people-slide .item .profile {
    padding: 16px 22px;
  }
}
#top .people .people-slide .item .profile::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  transition: ease 300ms all;
}
#top .people .people-slide .item .profile-item {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  z-index: 1;
  transform: translateZ(3px);
  transition: font-size 0.7s ease;
}
#top .people .people-slide .item .profile-item .job {
  font-size: 1.6rem;
  width: fit-content;
  line-height: 1;
  height: 24px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
}
@media (max-width: 640px) {
  #top .people .people-slide .item .profile-item .job {
    font-size: 1.4rem;
  }
}
#top .people .people-slide .item .profile-item .name, #top .people .people-slide .item .profile-item .detail, #top .people .people-slide .item .profile-item .year {
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.2;
}
@media (max-width: 640px) {
  #top .people .people-slide .item .profile-item .name, #top .people .people-slide .item .profile-item .detail, #top .people .people-slide .item .profile-item .year {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
#top .people .people-slide .item .profile-item .name {
  font-weight: 500;
}
#top .people .swiper-slide {
  height: fit-content !important;
}
#top .people .swiper-slide a {
  position: relative;
}
#top .people .swiper-tools {
  position: absolute;
  width: 252px;
  height: 70px;
  left: 0vw;
  bottom: 70px;
}
@media (max-width: 640px) {
  #top .people .swiper-tools {
    bottom: initial;
    top: 300px;
  }
}
@media (max-width: 640px) {
  #top .people .swiper-tools {
    width: 196px;
    top: initial;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
  }
}
#top .people .swiper-button-prev, #top .people .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--corporate-red);
  background-color: var(--white);
  transition: ease 300ms all;
}
@media (max-width: 640px) {
  #top .people .swiper-button-prev, #top .people .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
#top .people .swiper-button-prev::after, #top .people .swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-right: 2px solid var(--corporate-red);
  border-bottom: 2px solid var(--corporate-red);
  width: 5px;
  height: 5px;
  transition: ease 300ms all;
}
@media (min-width: 641px) {
  #top .people .swiper-button-prev:hover, #top .people .swiper-button-next:hover {
    background-color: var(--corporate-red);
  }
  #top .people .swiper-button-prev:hover::after, #top .people .swiper-button-next:hover::after {
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
  }
}
#top .people .swiper-button-prev::after {
  transform: translate(-50%, -50%) rotate(135deg);
}
@media (max-width: 640px) {
  #top .people .swiper-button-prev {
    left: 0;
  }
}
#top .people .swiper-button-next::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 640px) {
  #top .people .swiper-button-next {
    right: 0;
  }
}
#top .people .swiper-pagination {
  width: fit-content;
  color: var(--corporate-red);
  font-size: 2.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  #top .people .swiper-pagination {
    left: 64px;
  }
}
@media (min-width: 1281px) {
  #top .people .swiper-slide {
    max-width: 300px;
  }
  #top .people .swiper-slide-active {
    max-width: 400px;
  }
}
@media (min-width: 641px) {
  #top .people .swiper-parent {
    width: 62.45%;
    overflow: hidden;
  }
  #top .people .swiper-button-prev, #top .people .swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--corporate-red);
  }
  #top .people .swiper-button-prev::after, #top .people .swiper-button-next::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    border-right: 2px solid var(--corporate-red);
    border-bottom: 2px solid var(--corporate-red);
    width: 5px;
    height: 5px;
  }
}
@media (min-width: 641px) and (max-width: 640px) {
  #top .people .swiper-button-prev, #top .people .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 641px) {
  #top .people .swiper-button-prev {
    left: 115px;
  }
}
@media (min-width: 641px) {
  #top .people .swiper-button-prev::after {
    transform: translate(-50%, -50%) rotate(135deg);
  }
}
@media (min-width: 641px) {
  #top .people .swiper-button-next::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@media (min-width: 641px) {
  #top .people .swiper-slide {
    transition: transform 0.7s ease, margin 0.35s ease;
    transform: scale(1);
    transform-origin: top;
    position: relative;
  }
  #top .people .swiper-slide a {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  #top .people .swiper-slide a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(180, 0, 45, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: ease 300ms all;
    z-index: 5;
  }
  #top .people .swiper-slide a img {
    transition: ease 300ms all;
    z-index: 1;
  }
  #top .people .swiper-slide:hover img {
    transform: scale(1.1);
  }
  #top .people .swiper-slide:hover a::before {
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 641px) {
  #top .people .swiper-slide-active {
    margin: 0 68px 0 36px !important;
  }
  #top .people .swiper-slide-active.item .profile {
    padding: 15px 8.615% 25px;
  }
  #top .people .swiper-slide-active.item .profile-item > .job, #top .people .swiper-slide-active.item .profile-item .name, #top .people .swiper-slide-active.item .profile-item .detail, #top .people .swiper-slide-active.item .profile-item .year {
    font-size: 1.28rem;
  }
  #top .people .swiper-slide-active.item .profile-item .job {
    height: 18px;
  }
  #top .people .swiper-slide-active a {
    transform: scale(1.33);
    transform-origin: center;
    transition: ease 300ms transform;
  }
  #top .people .swiper-slide-active img {
    transition: ease 300ms transform;
    object-fit: cover;
    height: 100%;
    position: relative;
    top: 20px;
  }
  #top .people .swiper-slide-active .profile {
    bottom: -30px;
  }
}
@media (max-width: 640px) {
  #top .people .swiper-slide img {
    object-fit: cover;
    height: 100%;
  }
}
@media (max-width: 640px) {
  #top .people .view-more-link {
    margin-right: 60px;
  }
}
#top .career {
  position: relative;
  margin-bottom: 210px;
}
@media (max-width: 640px) {
  #top .career {
    margin-bottom: 80px;
  }
}
#top .career .inner {
  position: relative;
}
@media (max-width: 640px) {
  #top .career .inner {
    width: 91.798%;
    margin-right: 0;
    margin-left: auto;
  }
}
#top .career .category-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.6875%;
  height: 100%;
  max-width: 60px;
  max-height: 520px;
  z-index: 1;
}
@media (max-width: 640px) {
  #top .career .category-title {
    width: 100%;
    max-width: 32px;
    max-height: 274px;
    top: 140px;
  }
}
#top .career .info-block {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  z-index: 10;
}
@media (max-width: 640px) {
  #top .career .info-block {
    width: 95%;
    position: relative;
    margin-bottom: 18px;
    top: initial;
    left: 20px;
    transform: initial;
  }
}
#top .career .info-block .category-heading {
  margin-bottom: 0;
  z-index: 1;
}
#top .career .info-block .category-text {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 640px) {
  #top .career .info-block .category-text {
    margin-bottom: 32px;
  }
}
#top .career .info-block .category-text .fill-bg {
  font-weight: 700;
  line-height: 1;
  position: relative;
  display: inline-block;
  width: fit-content;
  padding: 4px;
  z-index: 5;
}
@media (max-width: 640px) {
  #top .career .info-block .category-text .fill-bg {
    font-size: 1.4rem;
  }
}
#top .career .info-block .category-text .fill-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: -1;
}
#top .career .info-block .category-text .fill-bg + .fill-bg {
  margin-top: 15px;
}
@media (max-width: 640px) {
  #top .career .info-block .category-text .fill-bg + .fill-bg {
    margin-top: 7px;
    white-space: nowrap;
  }
}
#top .career .category-heading-group {
  display: flex;
  flex-direction: column;
  column-gap: 40px;
  z-index: 0;
}
@media (max-width: 640px) {
  #top .career .category-heading-group {
    flex-direction: column;
    row-gap: 13px;
  }
}
#top .career .category-heading-group .category-heading {
  max-width: 340px;
  margin-bottom: 28px;
}
@media (max-width: 640px) {
  #top .career .category-heading-group .category-heading {
    max-width: 220px;
    margin-bottom: 0;
  }
}
#top .career .career-img {
  position: relative;
  top: 0;
  left: 100px;
  width: 81.25vw;
  height: 480px;
  z-index: 0;
  margin-left: auto;
  display: block;
}
@media (max-width: 640px) {
  #top .career .career-img {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-width: initial;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
@media (min-width: 641px) {
  #top .career .career-img:hover img {
    transform: scale(1.1);
  }
}
#top .career .career-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
#top .career .view-more-link {
  margin-left: 0;
}
@media (max-width: 640px) {
  #top .career .view-more-link {
    margin-left: auto;
    margin-right: 60px;
  }
}
#top .culture {
  position: relative;
  margin-bottom: 184px;
}
@media (max-width: 640px) {
  #top .culture {
    margin-bottom: 73.0667vw;
  }
}
#top .culture-inner {
  display: flex;
  column-gap: 80px;
  padding-right: 30px;
}
@media (max-width: 640px) {
  #top .culture-inner {
    flex-direction: column;
    padding-right: 0;
  }
}
#top .culture .category-title {
  position: relative;
  top: 0;
  left: 0;
  width: 40.625vw;
  max-width: 520px;
  height: 10%;
  z-index: 1;
}
@media (max-width: 640px) {
  #top .culture .category-title {
    width: 74.667vw;
    margin-left: auto;
  }
}
@media (max-width: 640px) {
  #top .culture .category-heading {
    width: 168px;
  }
}
#top .culture .culture-img {
  position: relative;
  max-width: 1600px;
  width: 64.883%;
  max-height: 480px;
  z-index: 0;
}
@media (max-width: 640px) {
  #top .culture .culture-img {
    min-width: initial;
    width: 100vw;
    height: auto;
    margin: 0 calc(50% - 50vw) 24px;
  }
}
#top .culture .culture-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 640px) {
  #top .culture .info-block {
    width: 68.535%;
    margin: 0 auto;
  }
}
#top .culture .category-text {
  max-width: 243px;
  margin-bottom: 48px;
}
@media (max-width: 640px) {
  #top .culture .category-text {
    margin-bottom: 32px;
  }
}
#top .culture .img-group {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
}
@media (max-width: 640px) {
  #top .culture .img-group {
    flex-direction: row-reverse;
  }
}
#top .culture .img-group img {
  width: fit-content;
  height: auto;
  position: relative;
}
#top .culture .img-group img:nth-of-type(1) {
  margin-top: 72px;
  position: relative;
  left: 21.695%;
  z-index: -1;
}
@media (min-width: 641px) {
  #top .culture .img-group img:nth-of-type(1) {
    width: 31.25vw;
  }
}
@media (max-width: 640px) {
  #top .culture .img-group img:nth-of-type(1) {
    top: -20px;
    position: relative;
    margin-top: 0;
    left: 0;
    width: 37.334vw;
  }
}
#top .culture .img-group img:nth-of-type(2) {
  top: -75px;
  position: absolute;
  right: 0;
  z-index: 1;
  width: 28.125vw;
}
@media (max-width: 980px) and (min-width: 641px) {
  #top .culture .img-group img:nth-of-type(2) {
    top: 0;
  }
}
@media (min-width: 641px) {
  #top .culture .img-group img:nth-of-type(2) {
    width: 42.122vw;
  }
}
@media (max-width: 640px) {
  #top .culture .img-group img:nth-of-type(2) {
    top: 11vw;
    position: absolute;
    right: 0;
    z-index: 1;
    width: 53.87vw;
  }
}
#top .vertual {
  position: relative;
  margin-bottom: 170px;
  z-index: 1;
}
@media (max-width: 640px) {
  #top .vertual {
    margin-bottom: 104px;
  }
}
#top .vertual-container {
  position: relative;
}
@media (max-width: 640px) {
  #top .vertual-container {
    max-width: 360px;
    width: 69.335vw;
    margin: 0 auto;
  }
}
#top .vertual-item {
  position: relative;
  max-width: 666px;
  max-height: 670px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 345px;
  aspect-ratio: 1;
  z-index: 0;
}
@media (max-width: 640px) {
  #top .vertual-item {
    margin-bottom: 26px;
    max-width: 400px;
  }
}
#top .vertual-item .text-inner {
  width: 286px;
  position: relative;
  top: 0;
  right: -20px;
}
@media (max-width: 640px) {
  #top .vertual-item .text-inner {
    top: 0;
    right: 0;
  }
}
#top .vertual-item .text-inner .view-more-link {
  margin: 0;
}
@media (max-width: 640px) {
  #top .vertual-item .text-inner .view-more-link {
    display: none;
  }
}
#top .vertual-bg {
  position: absolute;
  max-width: 666px;
  min-width: 500px;
  width: 52.31vw;
  height: auto;
  border-radius: 50%;
  border: 3px solid var(--corporate-red);
  filter: brightness(0.9);
  z-index: -1;
}
@media (max-width: 640px) {
  #top .vertual-bg {
    min-width: initial;
    max-width: 360px;
    width: 69.335vw;
  }
}
#top .vertual .illust-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 1230px;
  max-height: 666px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 640px) {
  #top .vertual .illust-container {
    max-height: initial;
  }
}
#top .vertual .illust-container img {
  position: absolute;
}
#top .vertual .illust-container img[data-name=moto] {
  top: -130px;
  right: 400px;
}
#top .vertual .illust-container img[data-name=board] {
  top: -120px;
  right: 60px;
}
#top .vertual .illust-container img[data-name=craneCar] {
  top: 300px;
  right: -10px;
}
#top .vertual .illust-container img[data-name=car] {
  bottom: -260px;
  right: 360px;
}
#top .vertual .illust-container img[data-name=ship] {
  bottom: -160px;
  left: 100px;
}
#top .vertual .illust-container img[data-name=mixier] {
  bottom: 100px;
  left: 0;
}
#top .vertual .illust-container img[data-name=craneMachine] {
  top: 70px;
  left: 0;
}
#top .vertual .illust-container img[data-name=forklift] {
  top: -120px;
  left: 120px;
}
@media (max-width: 1280px) and (min-width: 641px) {
  #top .vertual .illust-container img[data-name=moto] {
    top: -10vw;
    right: 33vw;
    width: 13.188vw;
  }
  #top .vertual .illust-container img[data-name=board] {
    top: -8vw;
    right: 6vw;
    width: 20.313vw;
  }
  #top .vertual .illust-container img[data-name=craneCar] {
    top: 25vw;
    right: -1vw;
    width: 25vw;
  }
  #top .vertual .illust-container img[data-name=car] {
    bottom: -18.5vw;
    right: 28vw;
    width: 20.313vw;
  }
  #top .vertual .illust-container img[data-name=ship] {
    bottom: -12.5vw;
    left: 15vw;
    width: 20.313vw;
  }
  #top .vertual .illust-container img[data-name=mixier] {
    bottom: 6vw;
    left: 3vw;
    width: 18.282vw;
  }
  #top .vertual .illust-container img[data-name=craneMachine] {
    top: 5.5vw;
    left: 0;
    width: 20.313vw;
  }
  #top .vertual .illust-container img[data-name=forklift] {
    top: -11vw;
    left: 14vw;
    width: 20.313vw;
  }
}
@media (max-width: 640px) {
  #top .vertual .illust-container img[data-name=moto] {
    display: none;
  }
  #top .vertual .illust-container img[data-name=board] {
    top: 43vw;
    right: -7vw;
    width: 37.335vw;
  }
  #top .vertual .illust-container img[data-name=craneCar] {
    top: -30vw;
    right: 5vw;
    width: 35.2vw;
  }
  #top .vertual .illust-container img[data-name=car] {
    display: none;
  }
  #top .vertual .illust-container img[data-name=ship] {
    bottom: -40vw;
    left: 30vw;
    width: 41.2vw;
  }
  #top .vertual .illust-container img[data-name=mixier] {
    bottom: initial;
    top: -23vw;
    left: 5vw;
    width: 30.4vw;
  }
  #top .vertual .illust-container img[data-name=craneMachine] {
    top: 53vw;
    left: 0;
    width: 25.87vw;
  }
  #top .vertual .illust-container img[data-name=forklift] {
    top: -58vw;
    left: 21vw;
    width: 45.2vw;
  }
}
#top .vertual .category-heading {
  margin-bottom: 38px;
  max-width: 286px;
}
@media (max-width: 1280px) and (min-width: 641px) {
  #top .vertual .category-heading {
    width: 27vw;
    min-width: 230px;
  }
}
@media (max-width: 640px) {
  #top .vertual .category-heading {
    width: 44.27vw;
    margin: 0 auto;
  }
}
#top .vertual .category-text {
  line-height: initial;
  font-size: 1.6rem;
  margin-bottom: 56px;
}
@media (max-width: 1280px) and (min-width: 641px) {
  #top .vertual .category-text {
    font-size: calc(3 * (100vw - 769px) / 511 + 13px);
    margin-bottom: 4.375vw;
  }
}
#top .vertual .category-text .fill-bg {
  font-weight: 500;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 4px 8px;
  z-index: 5;
}
#top .vertual .category-text .fill-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: -1;
}
#top .vertual .category-text .fill-bg + .fill-bg {
  margin-top: 15px;
}
@media (max-width: 640px) {
  #top .vertual .category-text {
    margin: 0 auto 48.535%;
    text-align: center;
  }
  #top .vertual .category-text .text {
    font-size: 1.4rem;
    font-weight: 700;
  }
  #top .vertual .category-text .view-more-link {
    margin: 32px auto 0;
    text-align: left;
  }
}
#top .recruit {
  position: relative;
  width: 100%;
  height: 600px;
  margin-bottom: 280px;
  z-index: 1;
}
@media (max-width: 640px) {
  #top .recruit {
    /*リンク3点時のサイズ*/
    height: 540px;
    margin-bottom: 390px;
  }
}
#top .recruit .inlink {
  display: block;
}
#top .recruit .inlink .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#top .recruit .inlink .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: ease 300ms all;
  transform: scale(1);
}
@media (max-width: 640px) {
  #top .recruit .inlink .bg img {
    object-position: 0% 38%;
  }
}
@media (min-width: 641px) {
  #top .recruit .inlink:hover .bg img {
    transform: scale(1.2);
  }
}
#top .recruit .inner {
  padding-top: 104px;
  padding-bottom: 104px;
}
@media (max-width: 640px) {
  #top .recruit .inner {
    padding-top: 64px;
    padding-bottom: 140px;
  }
}
#top .recruit .category-title {
  position: absolute;
  top: -19px;
  left: 0;
  width: 38.589%;
  max-width: 500px;
  height: 12%;
  z-index: 1;
}
@media (max-width: 1280px) and (min-width: 641px) {
  #top .recruit .category-title {
    top: -1vw;
  }
}
@media (max-width: 640px) {
  #top .recruit .category-title {
    width: 70%;
    top: 0;
    left: 0;
    right: initial;
    height: 12vw;
    max-width: 280px;
  }
}
#top .recruit .info-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 640px) {
  #top .recruit .info-wrap {
    flex-direction: column;
    align-items: flex-start;
    width: 68.535%;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  #top .recruit .info-wrap .info-block {
    width: 70vw;
    max-width: 257px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  #top .recruit .info-wrap .info-block .category-caption {
    margin-bottom: 20px;
  }
}
#top .recruit .info-wrap .info-block .sp-item {
  display: none;
}
@media (max-width: 640px) {
  #top .recruit .info-wrap .info-block .sp-item {
    display: block;
  }
}
@media (max-width: 640px) {
  #top .recruit .category-heading {
    width: 120px;
  }
}
#top .recruit .category-text {
  max-width: 230px;
  margin-bottom: 48px;
  font-weight: 500;
}
@media (max-width: 640px) {
  #top .recruit .category-text {
    margin-bottom: 0;
  }
}
@media (max-width: 640px) {
  #top .recruit .view-more-link {
    margin-top: 32px;
  }
}
#top .recruit-link {
  max-width: 996px;
  margin: 0 auto;
  display: flex;
  position: relative;
  top: -27px;
}
@media (max-width: 640px) {
  #top .recruit-link {
    flex-wrap: wrap;
    width: 86.4%;
    max-width: 324px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: initial;
    bottom: -232px;
  }
}
#top .recruit-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--white);
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 0;
}
#top .recruit-link-item {
  position: relative;
  width: 33.3333333333%;
  min-height: 248px;
  z-index: 5;
}
@media (max-width: 640px) {
  #top .recruit-link-item {
    width: 50%;
    max-width: 162px;
    max-height: 162px;
    height: auto;
    min-height: initial;
    aspect-ratio: 1;
  }
}
#top .recruit-link-item:not(:last-of-type) {
  border-right: 2px solid var(--corporate-red);
}
@media (max-width: 640px) {
  #top .recruit-link-item:not(:last-of-type) {
    border-right: none;
  }
}
@media (max-width: 640px) {
  #top .recruit-link-item:nth-of-type(1)::before {
    content: "";
    position: absolute;
    width: calc(100% - 20px);
    height: 1px;
    background-color: var(--corporate-red);
    bottom: 0;
    left: 10px;
  }
  #top .recruit-link-item:nth-of-type(1)::after {
    display: none;
  }
  #top .recruit-link-item:nth-of-type(2)::before {
    content: "";
    position: absolute;
    width: calc(100% - 20px);
    height: 1px;
    background-color: var(--corporate-red);
    bottom: 0;
    right: 10px;
  }
  #top .recruit-link-item:nth-of-type(3)::before {
    display: none;
  }
}
#top .recruit-link-item a {
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  row-gap: 20px;
}
@media (max-width: 640px) {
  #top .recruit-link-item a {
    padding: 0;
  }
}
#top .recruit-link-item a img {
  width: fit-content;
}
@media (max-width: 640px) {
  #top .recruit-link-item a img {
    margin-top: auto;
  }
}
#top .recruit-link-item a .item-name {
  position: relative;
  width: 150px;
  height: 27px;
  overflow: hidden;
}
@media (max-width: 640px) {
  #top .recruit-link-item a .item-name {
    width: 85%;
    max-width: 150px;
    height: auto;
    margin-bottom: auto;
  }
}
#top .recruit-link-item a .item-name::before {
  content: "";
  position: absolute;
  top: 40%;
  transform: translateY(-50%) rotate(-45deg);
  right: 2px;
  border-right: 2px solid var(--corporate-red);
  border-bottom: 2px solid var(--corporate-red);
  width: 4px;
  height: 4px;
}
@media (max-width: 640px) {
  #top .recruit-link-item a .item-name::before {
    top: 50%;
  }
}
#top .recruit-link-item a .item-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background-color: var(--corporate-red);
  transition: ease 300ms all;
}
#top .recruit-link-item a .item-name span {
  font-size: 1.4rem;
  font-weight: 700;
}
@media (min-width: 641px) {
  #top .recruit-link-item a:hover .item-name::after {
    left: 0%;
  }
}
@media (max-width: 640px) {
  #top .recruit-link-item:nth-of-type(1) img {
    max-width: 100px;
    width: 20vw;
  }
  #top .recruit-link-item:nth-of-type(2) img {
    max-width: 92px;
    width: 18vw;
  }
}
@media (max-width: 640px) and (max-width: 640px) {
  #top .recruit-link-item:nth-of-type(2) .item-name {
    padding-top: 10px;
  }
  #top .recruit-link-item:nth-of-type(2) .item-name::before {
    top: 65%;
  }
}
@media (max-width: 640px) {
  #top .recruit-link-item:nth-of-type(3) img {
    max-width: 80px;
    width: 16vw;
  }
}
@media (max-width: 640px) {
  #top .recruit-link.-odd {
    flex-direction: column;
    bottom: -286px;
  }
  #top .recruit-link.-odd .recruit-link-item {
    width: 100%;
    min-height: 162px;
    max-width: initial;
    max-height: initial;
    aspect-ratio: initial;
  }
  #top .recruit-link.-odd .recruit-link-item a {
    row-gap: initial;
  }
  #top .recruit-link.-odd .recruit-link-item a img {
    margin-top: 16px;
  }
  #top .recruit-link.-odd .recruit-link-item a .item-name {
    margin-bottom: 24px;
  }
  #top .recruit-link.-odd .recruit-link-item:nth-of-type(2) .item-name, #top .recruit-link.-odd .recruit-link-item:nth-of-type(3) .item-name {
    margin-top: 17px;
  }
}
@media (min-width: 641px) {
  #top .recruit .category-text {
    color: var(--white);
  }
}
@media (max-width: 640px) {
  #top .recruit .fill-bg {
    font-weight: 700;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding: 4px;
    z-index: 5;
  }
}
@media (max-width: 640px) and (max-width: 640px) {
  #top .recruit .fill-bg {
    font-size: 1.4rem;
  }
}
@media (max-width: 640px) {
  #top .recruit .fill-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--white);
    z-index: -1;
  }
}
@media (max-width: 640px) {
  #top .recruit .fill-bg + .fill-bg {
    margin-top: 5px;
  }
}

.intern-link {
  margin-bottom: 112px;
}
@media screen and (max-width: 640px) {
  .intern-link {
    margin-bottom: 60px;
  }
}
.intern-link .internship-btn {
  width: 656px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  border-bottom: 1px solid var(--corporate-red);
  overflow: hidden;
}
@media (max-width: 640px) {
  .intern-link .internship-btn {
    width: 68.905%;
    max-width: 257px;
    height: 40px;
    border: none;
    background-color: var(--corporate-red);
  }
}
.intern-link .internship-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--corporate-red);
  top: 0;
  left: -100%;
  transition: ease 300ms all;
  transition-delay: 0.3s;
  z-index: 0;
}
@media (max-width: 640px) {
  .intern-link .internship-btn::before {
    display: none;
  }
}
.intern-link .internship-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  right: 92px;
  border-right: 2px solid var(--corporate-red);
  border-bottom: 2px solid var(--corporate-red);
  width: 8px;
  height: 8px;
  transition: ease 300ms all;
}
@media (max-width: 640px) {
  .intern-link .internship-btn::after {
    right: 32px;
    width: 4px;
    height: 4px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
  }
}
.intern-link .internship-btn span {
  font-size: 3.2rem;
  color: var(--corporate-red);
  z-index: 1;
}
@media (max-width: 640px) {
  .intern-link .internship-btn span {
    font-size: 1.4rem;
    color: var(--white);
  }
}
.intern-link .internship-btn span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: -100%;
  background-color: var(--corporate-red);
  transition: all 0.3s;
}
@media (max-width: 640px) {
  .intern-link .internship-btn span::before {
    background-color: var(--white);
  }
}
.intern-link .internship-btn span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: -100%;
  background-color: var(--corporate-red);
  transition: all 0.3s;
}
@media (max-width: 640px) {
  .intern-link .internship-btn span::after {
    background-color: var(--white);
  }
}
@media (min-width: 641px) {
  .intern-link .internship-btn:hover {
    border-color: transparent;
  }
  .intern-link .internship-btn:hover::before {
    left: 0;
  }
  .intern-link .internship-btn:hover::after {
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transition-delay: 0.4s;
    right: 70px;
  }
  .intern-link .internship-btn:hover span {
    transition-delay: 0.4s;
    color: var(--white);
  }
  .intern-link .internship-btn:hover span::before, .intern-link .internship-btn:hover span::after {
    left: 0;
  }
}

.fv-fade-slide {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.fv-fade-slide.slick-initialized {
  opacity: 1;
}