@charset "UTF-8";
body {
  background: none;
}
@media screen and (max-width: 767.98px) {
  body {
    background: url(../images/common/background_S.svg) top -110px right -150px no-repeat;
    background-size: 869px 1086px;
    background-attachment: fixed;
  }
}

.wrap {
  padding-top: 0;
  background: #fff;
}

.contents-title {
  font-size: 2.8rem;
}
@media screen and (max-width: 767.98px) {
  .contents-title {
    font-size: 2.4rem;
  }
}

.footer {
  margin-top: 0 !important;
}

/*----------------------------------------------------
  ローディング
----------------------------------------------------*/
.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  background-color: #fff;
}
.loading .loading-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .loading .loading-area {
    width: 240px;
  }
  .loading .loading-area img {
    width: 240px !important;
  }
}
.loading .loading-logo {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: loadingAnime;
  opacity: 0;
  width: 160px !important;
}
@keyframes loadingAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loading .spinner {
  margin: 50px auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}
.loading .dot1, .loading .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #009fe8;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}
.loading .dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  background-color: #192c5a;
}
@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
.header {
  position: absolute;
  background-color: transparent;
  transition: none;
}

#header {
  opacity: 1;
}

.fixed-op {
  opacity: 0 !important;
}

#header.fixed {
  opacity: 1 !important;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  transition: opacity 0.5s;
}
#header.fixed .global-menu > li > span,
#header.fixed .global-menu > li > a {
  color: initial;
  text-shadow: none;
}

.logo-area img {
  filter: drop-shadow(0px 0px 2px #FFF);
}

.global-menu > li > span,
.global-menu > li > a {
  color: #fff;
  text-shadow: 0px 0px 8px #000;
}

/*----------------------------------------------------
  メイン
----------------------------------------------------*/
.mainimage-wrap {
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 991.98px) {
  .mainimage-wrap {
    height: 60vh;
    margin-top: 55px;
  }
}
.mainimage-wrap .copy-area {
  position: absolute;
  bottom: 20rem;
  left: 5vw;
  z-index: 1;
  width: 90vw;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 991.98px) {
  .mainimage-wrap .copy-area {
    bottom: 10rem;
  }
}
@media screen and (max-width: 991.98px) {
  .mainimage-wrap .copy-area {
    bottom: 5rem;
  }
}
.mainimage-wrap .copy-area .copy {
  color: #FFF;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 2;
  text-shadow: 0px 0px 8px #000, 0px 0px 8px #000;
}
@media screen and (max-width: 991.98px) {
  .mainimage-wrap .copy-area .copy {
    line-height: 2;
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .mainimage-wrap .copy-area .copy {
    font-size: 3rem;
  }
}
@media screen and (max-width: 575.98px) {
  .mainimage-wrap .copy-area .copy {
    font-size: 2rem;
  }
}

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

.slick-img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media screen and (max-width: 991.98px) {
  .slick-img img {
    height: 60vh;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/*----------------------------------------------------
  ボタン
----------------------------------------------------*/
.button a {
  background: #fff;
  border: 1px solid #192c5a;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 230px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.button a::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.button a:hover {
  background: #192c5a;
  color: #fff;
  text-decoration: none;
}

.button a:hover:after {
  right: 1.4rem;
}

/*----------------------------------------------------
  トップニュース
----------------------------------------------------*/
.top-news-area {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 50vw;
  background-color: #192c5a;
}
@media screen and (max-width: 991.98px) {
  .top-news-area {
    width: 100vw;
    position: static;
  }
}
.top-news-area .bx-wrapper {
  padding: 1.25em 3em 1.25em 1.5em;
  box-shadow: none;
  border: none;
  background: none;
}
.top-news-area .bx-wrapper .bx-controls-direction a {
  right: 16px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 991.98px) {
  .top-news-area .bx-wrapper .bx-controls-direction a {
    top: 95%;
  }
}
.top-news-area .bx-wrapper .bx-prev {
  display: none;
}
.top-news-area .bx-wrapper a.bx-next {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin-right: 15px;
}
.top-news-area li {
  display: none;
}
.top-news-area .bx-viewport li {
  display: block !important;
}

.top-news {
  color: #fff;
  padding-left: 0;
}
.top-news li a {
  display: table;
  width: 100%;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  text-decoration: none;
}
.top-news li a > * {
  display: table-cell;
}
@media screen and (max-width: 767.98px) {
  .top-news li a > * {
    display: flex;
    flex-wrap: wrap;
  }
}
.top-news li a > div {
  width: 130px;
}
.top-news .news {
  margin-top: 0;
}
.top-news time {
  border-right: 1px solid #fff;
  padding-right: 25px;
}
@media screen and (max-width: 767.98px) {
  .top-news time {
    border-right: none;
    display: inline-block;
    width: inherit;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid #fff;
    padding-top: 5px;
    margin-bottom: 5px;
  }
}

/*----------------------------------------------------
  会社案内
----------------------------------------------------*/
.company-area {
  background: url(../images/common/background_S.svg), linear-gradient(160deg, #192c5a 0%, #192c5a 50%, #273964 50%, #273964 100%);
  background-size: 50%, 100%;
  background-repeat: no-repeat;
  background-position: center right;
  width: 100%;
  padding: 10rem 0 6rem;
}
@media screen and (max-width: 767.98px) {
  .company-area {
    background-size: 100%, 100%;
    padding: 6rem 0 4rem;
    background: url(../images/common/background_S2.svg), linear-gradient(160deg, #192c5a 0%, #192c5a 50%, #273964 50%, #273964 100%);
  }
}
.company-area .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90vw;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .company-area .container {
    flex-wrap: wrap;
  }
}
.company-area .col-6 {
  width: calc(60vw - 4rem);
  margin: 0 2rem;
}
@media screen and (max-width: 767.98px) {
  .company-area .col-6 {
    width: calc(90vw - 0rem);
    margin: 0 1rem;
  }
}
.company-area .col-4 {
  width: calc(40vw - 4rem);
  margin: 0 2rem;
}
@media screen and (max-width: 767.98px) {
  .company-area .col-4 {
    width: calc(90vw - 0rem);
    margin: 0 1rem;
  }
}
.company-area .button a {
  background: #192c5a;
  border: 1px solid #fff;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .company-area .button a {
    margin: auto;
  }
}
.company-area .button a:after {
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
}
.company-area .button a:hover {
  background: #fff;
  color: #192c5a;
}
.company-area .youtube {
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767.98px) {
  .company-area .youtube {
    margin-top: 6rem;
  }
}
.company-area .youtube iframe {
  width: 100%;
  height: 100%;
}
.company-area .title-area span {
  display: block;
  color: #192C5A;
}
.company-area .title-area span.en {
  font-family: "EB Garamond", serif;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .company-area .title-area span.en {
    font-size: 4.2rem;
  }
}
.company-area .title-area span.jp {
  font-size: 2.6rem;
  line-height: 1.4;
  color: #fff;
  font-weight: 500;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767.98px) {
  .company-area .title-area span.jp {
    font-size: 2rem;
  }
}
.company-area p {
  margin-bottom: 4rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4;
  text-align: justify;
}
@media screen and (max-width: 767.98px) {
  .company-area p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .company-area p br {
    display: none;
  }
}

/*----------------------------------------------------
  強さの秘密
----------------------------------------------------*/
.quality-wrap {
  padding: 8rem 0;
  background: url(../images/common/background_S.svg) top -150px right -150px no-repeat;
  background-size: 869px 1086px;
}
@media screen and (max-width: 767.98px) {
  .quality-wrap {
    padding: 3rem 0;
    background: none;
  }
}
.quality-wrap .inner {
  position: relative;
  height: 560px;
}
@media screen and (max-width: 767.98px) {
  .quality-wrap .inner {
    height: auto;
  }
}
.quality-wrap .inner .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 90vw;
  margin: auto;
}
@media screen and (max-width: 767.98px) {
  .quality-wrap .inner .container {
    display: block;
  }
}
.quality-wrap .quality-block {
  background-color: rgba(255, 255, 255, 0.95);
  width: 40vw;
  padding: 4rem 6rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .quality-wrap .quality-block {
    width: 90vw;
    padding: 3rem 5rem;
  }
}
@media screen and (max-width: 575.98px) {
  .quality-wrap .quality-block {
    padding: 3rem;
  }
}
.quality-wrap .quality-block .title-area span {
  display: block;
  color: #192C5A;
}
.quality-wrap .quality-block .title-area span.en {
  font-family: "EB Garamond", serif;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: #192C5A;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .quality-wrap .quality-block .title-area span.en {
    font-size: 4.2rem;
  }
}
.quality-wrap .quality-block .title-area span.jp {
  font-size: 2.6rem;
  line-height: 1.4;
  color: #192C5A;
  font-weight: 500;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767.98px) {
  .quality-wrap .quality-block .title-area span.jp {
    font-size: 2rem;
  }
}
.quality-wrap .quality-block p {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .quality-wrap .quality-block p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 575.98px) {
  .quality-wrap .quality-block p {
    font-size: 1.4rem;
  }
}
.quality-wrap .quality-block ul {
  margin-bottom: 2rem;
  padding-left: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
.quality-wrap .quality-block ul li {
  list-style: none;
}
.quality-wrap .image {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767.98px) {
  .quality-wrap .image {
    position: relative;
    width: 90vw;
    height: 300px;
    order: 1;
  }
}
.quality-wrap .image img {
  height: 100%;
  object-fit: cover;
  width: 72vw;
}
@media screen and (max-width: 767.98px) {
  .quality-wrap .image img {
    width: 90vw;
  }
}

/*----------------------------------------------------
  設備紹介
----------------------------------------------------*/
.quipment-wrap {
  padding: 0 0 8rem;
}
@media screen and (max-width: 767.98px) {
  .quipment-wrap {
    padding: 3rem 0;
  }
}
.quipment-wrap .inner {
  position: relative;
  height: 560px;
}
@media screen and (max-width: 767.98px) {
  .quipment-wrap .inner {
    height: auto;
  }
}
.quipment-wrap .inner .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 90vw;
  margin: auto;
}
@media screen and (max-width: 767.98px) {
  .quipment-wrap .inner .container {
    display: block;
  }
}
.quipment-wrap .quipment-block {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 4rem 6rem;
  position: relative;
  z-index: 1;
  margin: 1.5rem 0;
}
@media screen and (max-width: 767.98px) {
  .quipment-wrap .quipment-block {
    width: 90vw;
    padding: 3rem 5rem;
  }
}
@media screen and (max-width: 575.98px) {
  .quipment-wrap .quipment-block {
    padding: 3rem;
  }
}
.quipment-wrap .quipment-block .title-area span {
  display: block;
  color: #192C5A;
}
.quipment-wrap .quipment-block .title-area span.en {
  font-family: "EB Garamond", serif;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .quipment-wrap .quipment-block .title-area span.en {
    font-size: 4.2rem;
  }
}
.quipment-wrap .quipment-block .title-area span.jp {
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767.98px) {
  .quipment-wrap .quipment-block .title-area span.jp {
    font-size: 2rem;
  }
}
.quipment-wrap .movie {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 767.98px) {
  .quipment-wrap .movie {
    position: relative;
    height: 300px;
    margin-left: auto;
  }
}
.quipment-wrap .movie video {
  width: 72vw;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@media screen and (max-width: 767.98px) {
  .quipment-wrap .movie video {
    width: 90vw;
  }
}

/*----------------------------------------------------
  採用情報
----------------------------------------------------*/
@media screen and (max-width: 767.98px) {
  .recruit-wrap {
    padding: 3rem 0;
  }
}
.recruit-wrap .inner {
  position: relative;
  height: 560px;
}
@media screen and (max-width: 767.98px) {
  .recruit-wrap .inner {
    height: auto;
  }
}
.recruit-wrap .inner .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 90vw;
  margin: auto;
}
@media screen and (max-width: 767.98px) {
  .recruit-wrap .inner .container {
    display: block;
  }
}
.recruit-wrap .recruit-block {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 4rem 6rem;
  position: relative;
  z-index: 1;
  margin: 1.5rem 0;
}
@media screen and (max-width: 767.98px) {
  .recruit-wrap .recruit-block {
    width: 90vw;
    padding: 3rem 5rem;
  }
}
@media screen and (max-width: 575.98px) {
  .recruit-wrap .recruit-block {
    padding: 3rem;
  }
}
.recruit-wrap .recruit-block .title-area span {
  display: block;
  color: #192C5A;
}
.recruit-wrap .recruit-block .title-area span.en {
  font-family: "EB Garamond", serif;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .recruit-wrap .recruit-block .title-area span.en {
    font-size: 4.2rem;
  }
}
.recruit-wrap .recruit-block .title-area span.jp {
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767.98px) {
  .recruit-wrap .recruit-block .title-area span.jp {
    font-size: 2rem;
  }
}
.recruit-wrap .recruit-block h3 {
  font-size: 3.2rem;
  line-height: 1.4;
  color: #192C5A;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767.98px) {
  .recruit-wrap .recruit-block h3 {
    font-size: 2.6rem;
  }
}
.recruit-wrap .image {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767.98px) {
  .recruit-wrap .image {
    position: relative;
    height: 300px;
    margin-left: auto;
  }
}
.recruit-wrap .image img {
  height: 100%;
  object-fit: cover;
  width: 72vw;
}
@media screen and (max-width: 767.98px) {
  .recruit-wrap .image img {
    width: 90vw;
  }
}

/*----------------------------------------------------
  お知らせ
----------------------------------------------------*/
.news-area {
  width: 100%;
  padding: 6rem 0;
  background: url(../images/common/background_S.svg) -320px -380px no-repeat;
  background-size: 869px 1086px;
}
@media screen and (max-width: 767.98px) {
  .news-area {
    background: none;
  }
}
.news-area .container {
  display: flex;
  justify-content: center;
  width: 90vw;
  max-width: 1240px;
  margin: 0 auto 2rem;
  padding: 3rem 5rem;
  background: rgba(255, 255, 255, 0.95);
}
@media screen and (max-width: 767.98px) {
  .news-area .container {
    display: block;
  }
}
@media screen and (max-width: 575.98px) {
  .news-area .container {
    padding: 3rem 0;
  }
}
.news-area .col-3 {
  width: calc(30vw - 4rem);
  margin: 0 2rem;
}
@media screen and (max-width: 767.98px) {
  .news-area .col-3 {
    width: calc(80vw - 4rem);
    margin: 0 2rem;
  }
}
@media screen and (max-width: 575.98px) {
  .news-area .col-3 {
    width: calc(90vw - 4rem);
  }
}
.news-area .col-7 {
  width: calc(70vw - 4rem);
  margin: 0 2rem;
}
@media screen and (max-width: 767.98px) {
  .news-area .col-7 {
    width: calc(80vw - 4rem);
    margin: 0 2rem;
  }
}
@media screen and (max-width: 575.98px) {
  .news-area .col-7 {
    width: calc(90vw - 4rem);
  }
}
.news-area .title-area span {
  display: block;
  color: #192c5a;
}
.news-area .title-area span.en {
  font-family: "EB Garamond", serif;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.news-area .title-area span.jp {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767.98px) {
  .news-area .title-area span.jp {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 575.98px) {
  .news-area .title-area span.jp {
    font-size: 2.4rem;
  }
}
.news-area dl {
  display: flex;
  margin-bottom: 50px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .news-area dl {
    display: block;
    margin-bottom: 25px;
  }
}
.news-area dl:last-child {
  margin-bottom: 0;
}
.news-area dt {
  width: 120px;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #192c5a;
}
@media screen and (max-width: 767.98px) {
  .news-area dt {
    display: inline-block;
    width: inherit;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #192c5a;
    padding-top: 5px;
    margin-bottom: 5px;
  }
}
.news-area dd {
  width: calc(100% - 120px);
}
@media screen and (max-width: 767.98px) {
  .news-area dd {
    width: 100%;
  }
}
.news-area dd a {
  color: initial;
}
.news-area .button a {
  margin: 0 auto;
}/*# sourceMappingURL=home.css.map */