@charset "UTF-8";
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 0%;
  left: 5%;
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 20px;
  bottom: 20%;
  /*テキストの形状*/
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 100px;
  background: #eee;
}

body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

h1 {
  font-size: 150px;
  margin: 0;
  line-height: 100px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #DE0101;
  letter-spacing: -10px;
}

h2 {
  font-size: 28px;
  color: #DE0101;
}

h3 {
  font-size: 20px;
}

p {
  font-size: 16px;
  margin: 0;
}

.nav-item2 {
  color: white !important;
}

.h1-subtitle {
  font-size: 30px;
  font-weight: 700;
  color: #DE0101;
}

.line {
  width: 100px;
  height: 3px;
  margin-left: 50px;
  background-color: #DE0101;
}

.line_rev {
  width: 100px;
  height: 3px;
  margin-right: 50px;
  background-color: #DE0101;
}

.h1-subtitle-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

/* Right align title */
.right-line-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin-bottom: 10px;
}

/* Middle line container */
.middle-line-container {
  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;
  margin-bottom: 10px;
}

.subtitle-container-left {
  text-align: left;
  margin: 0 auto;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.subtitle-container-right {
  text-align: right;
  position: relative;
  right: 0;
}

.subtitle-container-middle {
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 0;
  right: 0;
  margin: auto;
}

.body-width {
  margin-left: 200px;
  margin-right: 200px;
}

.access-container {
  background-color: #F8F8F8;
}

.access-container .map-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 80px 0;
  max-width: unset;
}

.access-container .map-container .map {
  width: 50%;
}

.access-container .map-container .map iframe {
  width: 90%;
  margin: auto;
}

.access-container .subtitle-container-left {
  top: -100px;
}

.odoburu-container {
  padding-top: 150px;
  padding-bottom: 150px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  position: relative;
}

.odoburu-container::after {
  background: url("img/odoburu-bg.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: repeat;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 1;
}

.odoburu-container .odoburu-image-container {
  width: 40%;
}

.odoburu-container .odoburu-image-container img {
  width: 100%;
}

.odoburu-container .odoburu-btn-container {
  width: 40%;
  text-align: center;
}

.odoburu-container .odoburu-btn-container .odoburu-btn-text-container {
  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;
}

.odoburu-container .odoburu-btn-container .odoburu-btn-text-container .btn-line-before {
  display: inline-block;
  width: 3px;
  background-color: #DE0101;
  height: 30px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  margin-right: 20px;
}

.odoburu-container .odoburu-btn-container .odoburu-btn-text-container .btn-line-after {
  display: inline-block;
  width: 3px;
  background-color: #DE0101;
  height: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 20px;
}

.odoburu-container .odoburu-btn-container .odoburu-btn-text-container .odoburu-btn-text {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #DE0101;
  display: inline-block;
  text-shadow: 1px 1px 0 #F17820;
}

.odoburu-container .odoburu-btn img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.odoburu-container .odoburu-btn:hover img {
  opacity: 0.3;
}

.recruit-container {
  background-image: -webkit-gradient(linear, left top, right top, from(#C10000), to(#B70000));
  background-image: linear-gradient(left, #C10000, #B70000);
  text-align: center;
  position: relative;
  margin-top: 230px;
}

.recruit-container .subtitle-container-middle {
  position: absolute;
  top: -95px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.recruit-container .subtitle-container-middle .middle-line-container .line {
  background-color: white;
  margin: 0 10px;
}

.recruit-container .subtitle-container-middle .middle-line-container .h1-subtitle {
  color: white;
  -webkit-text-fill-color: white;
}

.recruit-container .recruit-detail-container {
  padding-top: 130px;
}

.recruit-container .recruit-detail-container .recruit-detail-btn {
  padding: 100px 0;
}

#page-top-container {
  position: fixed;
  right: -20px;
  bottom: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 90;
}

#page-top-container svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  height: 30px;
  width: 70px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#page-top-container p {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 5px;
  color: black;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#page-top-container:hover svg {
  -webkit-transform: translate(10px, 0) rotate(180deg);
          transform: translate(10px, 0) rotate(180deg);
}

.common-big-details-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 400px;
  height: 90px;
  margin: auto;
  text-decoration: none;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.common-big-details-btn p {
  font-size: 20px;
  font-weight: 700;
  margin-right: 30px;
}

.common-big-details-btn img {
  width: 70px;
}

.common-big-details-btn:hover {
  opacity: 0.5;
}

.big-service-details-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#DE0101), to(#DE0101));
  background-image: linear-gradient(left, #DE0101, #DE0101);
  -webkit-box-shadow: 3px 3px 10px #aaaaaa;
          box-shadow: 3px 3px 10px #aaaaaa;
}

.common-recruit-details-btn {
  background-color: rgba(255, 255, 255, 0);
  border: #fff 2px solid;
}

.common-recruit-details-btn p {
  color: white;
  font-weight: 700;
}

.common-recruit-details-btn:hover {
  background-color: white;
  opacity: 1;
}

.common-recruit-details-btn:hover p {
  color: #DE0101;
}

.common-recruit-details-btn:hover svg #Group_87 #Group_13 line, .common-recruit-details-btn:hover svg #Group_87 #Group_35 line {
  stroke: #FF0000;
}

.slick-prev {
  left: 30px;
  z-index: 2;
  width: 50px;
  height: 50px;
}

.slick-prev::before {
  font-size: 50px;
  color: #DE0101;
  opacity: 0.8;
}

.slick-next {
  right: 30px;
  z-index: 2;
  width: 50px;
  height: 50px;
}

.slick-next::before {
  font-size: 50px;
  color: #DE0101;
  opacity: 0.8;
}

.just-for-slick {
  overflow: hidden;
}

@media (min-width: 1920px) {
  body {
    max-width: 1920px;
    margin: 0 auto;
  }
}

/* laptop用　*/
@media (max-width: 1440px) {
  #page-top-container {
    right: -50px;
  }
  h1 {
    font-size: 130px;
  }
  h2 {
    font-size: 22px;
  }
  p {
    font-size: 16px;
  }
  .body-width {
    margin-left: 50px;
    margin-right: 50px;
  }
  .common-big-details-btn {
    width: 300px;
    height: 60px;
  }
  .common-big-details-btn p {
    font-size: 16px;
  }
  .odoburu-container {
    width: 100%;
    padding: 150px 0;
  }
  .odoburu-container .odoburu-btn img {
    width: 90%;
  }
  .recruit-container .recruit-detail-container {
    padding-left: 50px;
    padding-right: 50px;
  }
  .recruit-container .recruit-detail-container img {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 110px;
  }
}

/* tablet用　*/
@media (max-width: 768px) {
  h1 {
    font-size: 80px;
    line-height: 65px;
    letter-spacing: -6px;
  }
  h2 {
    font-size: 20px;
  }
  .h1-subtitle {
    font-size: 24px;
  }
  .h1-subtitle-container, .right-line-container {
    margin-bottom: 0;
  }
  .line {
    width: 80px;
    margin-left: 20px;
  }
  .line_rev {
    width: 80px;
    margin-right: 20px;
  }
  p {
    font-size: 14px;
  }
  .common-big-details-btn {
    width: 300px;
    height: 60px;
  }
  .recruit-container {
    margin-top: 100px;
  }
  .recruit-container .subtitle-container-middle {
    top: -62px;
  }
  .access-container .map-container .map {
    width: 50%;
    text-align: center;
  }
  .access-container .map-container .map iframe {
    width: 95%;
    height: 300px;
    margin: auto;
  }
  .access-container .subtitle-container-left {
    top: -100px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 60px;
  }
  .h1-subtitle {
    font-size: 20px;
  }
}

/* スマホ用　*/
@media (max-width: 428px) {
  .scrolldown2 {
    bottom: 85px;
  }
  #page-top-container {
    right: -60px;
    bottom: 100px;
  }
  p {
    font-size: 12px;
  }
  h1 {
    font-size: 36px;
    line-height: 35px;
    letter-spacing: 0px;
  }
  h2 {
    font-size: 16px;
  }
  h3 {
    color: #DE0101;
    font-size: 14px;
  }
  .h1-subtitle-container {
    margin-bottom: 0;
  }
  .h1-subtitle {
    font-size: 12px;
  }
  .line {
    width: 50px;
    height: 1.5px;
    margin-left: 10px;
  }
  .line_rev {
    width: 50px;
    height: 1.5px;
    margin-right: 10px;
  }
  .middle-line-container, .right-line-container {
    margin-bottom: 0px;
  }
  .top-japanese-title {
    font-size: 24px;
  }
  .body-width {
    margin: 0 10px !important;
    max-width: unset !important;
  }
  .common-big-details-btn {
    width: 200px;
    height: 40px;
  }
  .common-big-details-btn p {
    font-size: 14px;
    margin-right: 10px;
  }
  .common-big-details-btn svg {
    width: 40px;
  }
  .common-recruit-details-btn {
    border: 1px solid white;
  }
  .common-recruit-details-btn img {
    width: 35px !important;
  }
  .access-container .subtitle-container-left {
    top: -35px !important;
  }
  .access-container .map-container {
    -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: 40px !important;
  }
  .access-container .map-container .map {
    width: 100%;
  }
  .access-container .map-container .map iframe {
    width: 100%;
    height: 200px;
  }
  .access-container .map-container .map:nth-child(1) {
    margin-bottom: 30px;
  }
  .access-container .map-container .map p {
    font-size: 14px;
    font-weight: 700;
  }
  .odoburu-container {
    padding: 20px 0 0 0;
    width: 100%;
    height: 400px;
    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;
  }
  .odoburu-container::after {
    background-size: cover;
    width: 100%;
    height: 100%;
    background-attachment: unset;
  }
  .odoburu-container .odoburu-image-container {
    width: 70%;
    margin-bottom: 10px;
  }
  .odoburu-container .odoburu-image-container img {
    width: 100%;
  }
  .odoburu-container .odoburu-btn-container {
    width: 300px;
    text-align: center;
  }
  .odoburu-container .odoburu-btn-container .odoburu-btn-text-container .odoburu-btn-text {
    font-size: 14px;
  }
  .odoburu-container .odoburu-btn-container p {
    font-size: 14px;
  }
  .odoburu-container .odoburu-btn-container a {
    width: 300px;
  }
  .odoburu-container .odoburu-btn-container a img {
    width: 100%;
  }
  .odoburu-container .odoburu-btn-container .odoburu-btn {
    width: 300px;
  }
  .recruit-container {
    width: 100%;
    text-align: center;
    background-image: none;
    margin-top: 15px;
  }
  .recruit-container .subtitle-container-middle {
    top: -32px !important;
  }
  .recruit-container .recruit-detail-container {
    background-image: -webkit-gradient(linear, left top, right top, from(#DE0101), to(#DE0101));
    background-image: linear-gradient(left, #DE0101, #DE0101);
    height: auto;
    padding: 30px 10px;
  }
  .recruit-container .recruit-detail-container .recruit-detail-btn {
    height: 40px;
    width: 200px;
    margin: auto;
    padding: 10px;
  }
  .recruit-container .recruit-detail-container img {
    width: 100%;
    margin: 30px auto 20px auto;
  }
  .slick-prev {
    left: 10px;
  }
  .slick-next {
    right: 10px;
  }
  .just-for-slick {
    overflow-x: hidden;
  }
}
/*# sourceMappingURL=style.css.map */