@charset "UTF-8";
/*=============================================================
  home.css
---------------------------------------------------------------
===============================================================
1. home layout
=============================================================*/
.maintenance,
.products,
.news {
  margin-bottom: 100px;
}

.maintenance h2,
.products h2,
.news h2 {
  text-align: center;
  font-size: 28px;
  font-weight: normal;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  line-height: 1.2;
}

.maintenance h2 + p,
.products h2 + p,
.news h2 + p {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.maintenance h2 + p:after,
.products h2 + p:after,
.news h2 + p:after {
  content: "";
  width: 120px;
  height: 2px;
  background-color: #00559d;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.online {
  background: linear-gradient(90deg, #DFDEEE 0%, #DFDEEE 50%, #0B0508 50%, #0B0508 100%);
  position: relative;
  margin-bottom: 115px;
}

.online_wrap {
  max-width: 1314px;
  margin: 0 auto;
}

.online figure {
  width: 100%;
  text-align: center;
}

.online figure img {
  max-width: 100%;
  vertical-align: middle;
}

.online .online_readwrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
}

.online .online_readwrap h2 img {
  max-width: 100%;
}

.online .online_readwrap p {
  font-size: 14px;
  line-height: 1.4;
  margin-top: -30px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

.online .online_readwrap p.online_read {
  margin-bottom: 50px;
  text-shadow: 1px 1px 1px #FFFFFF;
}

.online .online_readwrap p.online_link {
  position: absolute;
  bottom: 0;
  right: 0;
}

.news {
  position: relative;
}

.news_link {
  position: absolute;
  right: calc(50% - 512px);
  top: 24px;
}

.newswrap {
  max-width: 1042px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.newsbox {
  border-top: 1px solid #B5B5B5;
  border-bottom: 1px solid #B5B5B5;
  width: 30%;
  box-sizing: border-box;
  transition: 0.3s;
}

.newsbox a {
  text-decoration: none;
  color: #494949;
  box-sizing: border-box;
  padding: 20px 0;
  display: block;
  transition: 0.3s;
  height: 100%;
}

.newsbox:hover {
  border-top: 1px solid #00559D;
  border-bottom: 1px solid #00559D;
}

.newsbox dt {
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #b5b5bd;
}

.newsbox dd {
  font-size: 15px;
}

.topicsLine {
  width: 100%;
}

.topicsLine-ttl {
  max-width: 1042px;
  padding: 0 10px;
  margin: 0 auto 20px;
  font-family: 游明朝, YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
}

.topicsLine ul {
  max-width: 1042px;
  padding: 0 10px;
  margin: 0 auto 40px;
}

.topicsLine ul li {
  text-align: center;
}

.topicsLine ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

.topicsLine ul li a {
  text-decoration: none;
  font-size: 1rem;
  color: #9E1610;
  display: block;
  padding: 10px;
  border: 2px solid #9E1610;
  transition: 0.3s;
  line-height: 1.4;
  font-weight: bold;
}

.topicsLine ul li a:hover {
  background-color: #9E1610;
  color: #FFFFFF;
}

/*===============================================================
2. slick layout
=============================================================*/
.slick_container {
  margin-bottom: 60px;
}

.pc_slider {
  display: block !important;
}

.sp_slider {
  display: none !important;
}

.slider {
  margin: 0 auto;
  width: 100%;
}

.slider a img {
  border-style: none;
}

.slider img {
  height: auto;
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
}

.slick-next {
  right: 50px !important;
  z-index: 100;
}

.slick-prev {
  left: 50px !important;
  z-index: 100;
}

.slider img.prev-arrow {
  width: 27px;
  height: 63px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  z-index: 100;
}

.slider img.next-arrow {
  width: 27px;
  height: 63px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
  z-index: 100;
}

.slider img.slide-arrow {
  transition: 0.3s;
  opacity: 0.5;
}

.slider img.slide-arrow:hover {
  opacity: 1;
  cursor: pointer;
}

.slick-dots {
  background-color: rgb(239, 239, 239);
}

.slick-dots li {
  vertical-align: middle;
}

/*===============================================
  画面の横幅が1025px以上（レスポンシブル対応用）
===============================================*/
/*===============================================
  画面の横幅が1025px以上1250px以下
===============================================*/
/*===============================================
  画面の横幅が1080px以下
===============================================*/
@media screen and (max-width: 1080px) {
  /*===============================================================
  1. home layout
  =============================================================*/
  .newswrap {
    padding-left: 15px;
    padding-right: 15px;
  }
  .news_link {
    right: 10px;
    transition: 0.3s;
    position: relative;
    top: auto;
    text-align: right;
    margin-bottom: 20px;
  }
}
/*===============================================
  画面の横幅が1024px以下
===============================================*/
@media screen and (max-width: 1024px) {
  /*===============================================================
  1. home layout
  =============================================================*/
  .online .online_readwrap h2 img {
    max-width: none;
    width: 70%;
  }
  .online .online_readwrap p {
    margin-top: -10px;
  }
  /*===============================================================
  2. slick layout
  =============================================================*/
  .slick_container {
    padding-top: 69px;
  }
}
/*===============================================
  画面の横幅が640px以下
===============================================*/
@media screen and (max-width: 640px) {
  /*===============================================================
  1. home layout
  =============================================================*/
  .maintenance h2,
  .products h2,
  .news h2 {
    padding: 0 10px;
  }
  .online {
    background: #000000;
  }
  .online_wrap {
    width: 100%;
  }
  .online figure {
    width: 200%;
    margin-left: -170%;
    height: 250px;
  }
  .online figure img {
    height: 100%;
    max-width: none;
  }
  .online .online_readwrap {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  .online .online_readwrap h2 {
    color: #ffffff;
    text-shadow: 1px 1px 1px #000000;
    margin-bottom: 10px;
  }
  .online .online_readwrap p.online_read {
    color: #ffffff;
    text-shadow: 1px 1px 1px #000000;
  }
  .pc_only {
    display: none;
  }
  .newswrap {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
  }
  .newsbox {
    width: 100%;
  }
  .newswrap div:not(:last-child) {
    border-bottom-style: none;
  }
  /*ビデオ再生エリア*/
  video {
    width: 100%;
  }
  .target .target_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: auto;
    margin-left: auto;
    width: 100%;
  }
  .target .close_btn {
    margin: 0 auto;
    float: none;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
  }
  /*===============================================================
  2. slick layout
  =============================================================*/
  .pc_slider {
    display: none !important;
  }
  .sp_slider {
    display: block !important;
  }
  .slider img.prev-arrow {
    right: 20px;
  }
  .slider img.next-arrow {
    left: 20px;
  }
}
html {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
}
@media (max-width: 767px) {
  html {
    font-size: 2.5vw !important;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 0.7692307692vw !important;
  }
}
@media (min-width: 1300px) {
  html {
    font-size: 10px !important;
  }
}

#contents .itemwrap {
  max-width: 1042px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  #contents .itemwrap {
    display: block;
  }
}
#contents .itemwrap section {
  width: 32%;
  position: relative;
}
@media (max-width: 767px) {
  #contents .itemwrap section {
    width: 100%;
  }
}
#contents .itemwrap section h3 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  border-top: 0.1rem solid #B5B5B5;
}
@media (max-width: 767px) {
  #contents .itemwrap section h3 {
    padding: 1rem 0;
  }
}
#contents .itemwrap section figure {
  margin-bottom: 2rem;
  text-align: center;
}
#contents .itemwrap section figure img {
  max-width: 100%;
}
#contents .itemwrap section .item_read {
  margin-bottom: 5rem;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  #contents .itemwrap section .item_read {
    margin-bottom: 2rem;
  }
}
#contents .itemwrap section .item_link {
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  #contents .itemwrap section .item_link {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    margin-bottom: 3rem;
  }
}
#contents .link_btn a {
  text-decoration: none;
  color: #ffffff;
  background-color: #11345c;
  box-sizing: border-box;
  display: inline-block;
  border: 0.1rem solid #11345C;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 767px) {
  #contents .link_btn a {
    font-size: 1.2rem;
    padding: 0.6rem 5rem 0.6rem 3rem;
  }
}
@media (min-width: 768px) {
  #contents .link_btn a {
    font-size: 1.2rem;
    padding: 0.6rem 5rem 0.6rem 3rem;
  }
}
#contents .link_btn a:after {
  content: "";
  width: 3rem;
  height: 0.1rem;
  position: absolute;
  bottom: 1.2rem;
  right: 1.5rem;
  background-color: #ffffff;
}
#contents .link_btn a:before {
  content: "";
  width: 0.8rem;
  height: 0.1rem;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #ffffff;
  transform: rotate(45deg);
}
#contents .link_btn a:hover {
  color: #11345c;
  background-color: #ffffff;
}
#contents .link_btn a:hover::after {
  background-color: #11345C;
  animation: arrow2;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-timing-function: linear;
  transform-origin: right bottom;
}
#contents .link_btn a:hover::before {
  background-color: #11345C;
  animation: arrow;
  animation-iteration-count: infinite;
  animation-duration: 6s;
  animation-timing-function: linear;
  transform-origin: right bottom;
  bottom: 1.15rem;
}
#contents .maintenance .maintenance-itemwrap {
  margin: 0 auto;
}
@media (max-width: 767px) {
  #contents .maintenance .maintenance-itemwrap {
    display: block;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  #contents .maintenance .maintenance-itemwrap {
    width: min(92.3076923077vw, 1200px);
    display: flex;
    justify-content: space-between;
    column-gap: min(1.5384615385vw, 20px);
  }
}
#contents .maintenance .maintenance-itemwrap section {
  width: 25%;
  position: relative;
}
@media (max-width: 767px) {
  #contents .maintenance .maintenance-itemwrap section {
    width: 100%;
  }
}
#contents .maintenance .maintenance-itemwrap section h3 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  border-top: 0.1rem solid #B5B5B5;
}
@media (max-width: 767px) {
  #contents .maintenance .maintenance-itemwrap section h3 {
    padding: 1rem 0;
  }
}
#contents .maintenance .maintenance-itemwrap section figure {
  margin-bottom: 2rem;
  text-align: center;
}
#contents .maintenance .maintenance-itemwrap section figure img {
  max-width: 100%;
}
#contents .maintenance .maintenance-itemwrap section .item_read {
  margin-bottom: 7rem;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  #contents .maintenance .maintenance-itemwrap section .item_read {
    margin-bottom: 2rem;
  }
}
#contents .maintenance .maintenance-itemwrap section .item_link {
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 767px) {
  #contents .maintenance .maintenance-itemwrap section .item_link {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    margin-bottom: 3rem;
  }
}
#contents .maintenance .maintenance-itemwrap section .item_link a {
  display: grid;
  place-content: center;
  line-height: 1.3;
}
@media (max-width: 767px) {
  #contents .maintenance .maintenance-itemwrap section .item_link a {
    height: 10vw;
  }
}
@media (min-width: 768px) {
  #contents .maintenance .maintenance-itemwrap section .item_link a {
    height: min(3.8461538462vw, 50px);
  }
}
#contents .titleline h2 {
  text-align: center;
  font-size: 28px;
  font-weight: normal;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  line-height: 1.2;
}
@media (max-width: 767px) {
  #contents .titleline h2 {
    padding: 0 10px;
  }
}
#contents .titleline p {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
#contents .titleline p:after {
  content: "";
  width: 120px;
  height: 2px;
  background-color: #00559d;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
#contents .movie {
  background-color: #e6e6f1;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  #contents .movie {
    padding: 7.5vw 0 12.5vw;
    margin-bottom: 25vw;
  }
}
@media (min-width: 768px) {
  #contents .movie {
    padding: min(2.3076923077vw, 30px) 0 min(3.8461538462vw, 50px);
    margin-bottom: min(7.6923076923vw, 100px);
  }
}
#contents .movie .moviewrap {
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  #contents .movie .moviewrap {
    display: block;
    width: 100%;
    padding: 0 1.25vw;
  }
}
@media (min-width: 768px) {
  #contents .movie .moviewrap {
    display: flex;
    flex-wrap: wrap;
    width: min(92.3076923077vw, 1200px);
    justify-content: center;
    gap: min(1.5384615385vw, 20px);
  }
}
#contents .movie .moviewrap figure {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  #contents .movie .moviewrap figure {
    width: 100%;
    padding: 0 5vw;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  #contents .movie .moviewrap figure {
    width: calc(28% - min(1.5384615385vw, 20px));
    margin: 0 min(0.7692307692vw, 10px);
  }
}
@media (max-width: 767px) {
  #contents .movie .moviewrap figure:not(:last-child) {
    margin-bottom: 7.5vw;
  }
}
@media (max-width: 767px) {
  #contents .movie .moviewrap figure:last-child {
    padding: 0 5vw;
  }
}
#contents .movie .moviewrap figure a {
  display: block;
}
#contents .movie .moviewrap figure a img {
  max-width: 100%;
  transition: 0.3s;
}
@media (max-width: 767px) {
  #contents .movie .moviewrap figure a img {
    width: 100%;
  }
}
#contents .movie .moviewrap figure a img:hover {
  cursor: pointer;
}
#contents .movie .moviewrap figure a figcaption {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.7);
  color: #ffffff;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
  font-family: "Yu Mincho", "YuMincho", serif;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 767px) {
  #contents .movie .moviewrap figure a figcaption {
    top: 0;
    width: calc(100% - 10vw);
    left: 5vw;
    font-size: 4.5vw;
  }
}
@media (min-width: 768px) {
  #contents .movie .moviewrap figure a figcaption {
    font-size: min(1.3846153846vw, 18px);
  }
}
#contents .movie .moviewrap figure a figcaption div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
#contents .movie .moviewrap figure a figcaption:hover {
  cursor: pointer;
}
#contents .movie .moviewrap figure:hover figcaption {
  top: 0%;
}
#contents .movie .moviewrap figure.basiclink {
  transition: 0.3s;
}
#contents .movie .moviewrap figure.basiclink:hover {
  opacity: 0.8;
}

@keyframes arrow {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
@keyframes arrow2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=home.css.map */