@charset "UTF-8";
* {
  list-style: none;
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small,
strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label,
legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, figcaption, figure, footer, header, hgroup, menu, nav,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media all and (min-width: 767px) {
  .wrapper {
    min-width: 1200px;
    margin: 0 auto;
  }
}
/* --------------
ヘッダー
-------------- */
header {
  position: relative;
  padding-bottom: 8vw;
}
header::before {
  position: absolute;
  z-index: -9;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000;
}
header::after {
  content: "";
  position: absolute;
  bottom: -8px;
  background: linear-gradient(to right, #236bf5, #001744, #236bf5);
  height: 8px;
  width: 100%;
}
header .bg {
  position: relative;
  width: 100%;
  height: 67.2vw;
  background-image: url(../images/header-bg.jpg);
  background-size: 210%;
  background-position: top right 22%;
  background-repeat: no-repeat;
}
header .bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
  height: 34.67vw;
  width: 100%;
}
header .inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: -28vw auto 0;
}
header .inner .logo {
  display: block;
  width: 44.44%;
  margin-top: 5.33vw;
  color: #ffffff;
  font-size: 3.2vw;
}
header .inner .logo img {
  margin-top: 1.6vw;
}
header .inner h1 {
  order: -1;
}
header .inner h1 .ttl {
  width: 63%;
  padding-left: 2.67vw;
}
header .inner h1 .sub {
  width: 95%;
  margin-top: 20px;
}
header .inner .lead {
  color: #ffffff;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

@media all and (min-width: 767px) {
  header {
    height: 560px;
  }
  header .bg {
    position: absolute;
    top: 0;
    height: 560px;
    background-size: cover;
    background-position: top center;
    z-index: -1;
  }
  header .bg::after {
    display: none;
  }
  header .inner {
    width: 1080px;
    margin: 0 auto;
    padding-top: 40px;
  }
  header .inner .logo {
    width: 190px;
    margin-top: 0;
    font-size: 12px;
  }
  header .inner .logo img {
    margin-top: 6px;
  }
  header .inner h1 {
    order: 0;
  }
  header .inner h1 .ttl {
    width: 284px;
    margin-top: 25px;
    padding-left: 10px;
  }
  header .inner h1 .sub {
    width: 445px;
    margin-top: 25px;
  }
  header .inner .lead {
    width: 490px;
    margin-top: 30px;
  }
}
/* --------------
メイン
-------------- */
.mainCts {
  position: relative;
  padding-bottom: 110px;
}
.mainCts::before {
  position: absolute;
  z-index: -9;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #010017;
}
.mainCts .main-bg::before, .mainCts .main-bg::after {
  content: "";
  background-image: url("../images/main-bg.png");
  position: absolute;
  width: 100%;
  height: 235px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.mainCts .main-bg::after {
  transform: scale(-1, 1);
}
.mainCts .main-bg.bg-1::before {
  top: 0;
}
.mainCts .main-bg.bg-1::after {
  top: 1000px;
}
.mainCts .main-bg.bg-2::before {
  transform: scale(1, -1);
  top: 2000px;
}
.mainCts .main-bg.bg-2::after {
  top: 3000px;
}
.mainCts .articleList {
  width: 90%;
  max-width: 330px;
  margin: 0 auto;
  padding-top: 50px;
}
.mainCts .articleList li {
  width: 100%;
  max-width: 330px;
  margin-bottom: 70px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease-in, transform 0.5s ease-out, filter 0.5s, box-shadow 0.5s;
}
.mainCts .articleList li.fadein {
  opacity: 1;
  transform: none;
}
.mainCts .articleList li a {
  width: 100%;
  display: block;
}
.mainCts .articleList li a .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: #010017;
  width: 114px;
  height: 22px;
}
.mainCts .articleList li a img {
  margin-bottom: 15px;
  transition: 0.3s;
}
.mainCts .articleList li a .ttl {
  font-size: min(5vw, 20px);
  color: #ffffff;
  line-height: 1.4;
  margin: 10px 0 20px;
}
.mainCts .articleList li a .ttl.long {
  letter-spacing: -0.03em;
}
.mainCts .articleList li a .ttl + p {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
}
.mainCts .articleList li a .more {
  position: relative;
  width: 200px;
  height: 30px;
  margin: 20px auto 0;
  font-size: 19px;
  font-weight: 700;
  border-radius: 15px;
  background: linear-gradient(to right, #4f0076, #2e159b);
  color: #ffffff;
  text-align: center;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5019607843);
  z-index: 0;
}
.mainCts .articleList li a .more::before {
  position: absolute;
  content: "";
  inset: 0;
  top: 0;
  z-index: -1;
  border-radius: 15px;
  background: linear-gradient(to right, #001744, #236bf5);
  opacity: 1;
  transition: opacity 0.3s;
}
.mainCts .articleList li a .more .arrow::before {
  position: absolute;
  content: "";
  width: 21px;
  height: 21px;
  background-color: #ffffff;
  border-radius: 50%;
  top: 16%;
  right: 6px;
}
.mainCts .articleList li a .more .arrow::after {
  position: absolute;
  content: "";
  border-top: 2px solid;
  border-right: 2px solid;
  border-color: #007aff;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  top: 37%;
  right: 14px;
  transition: 0.3s;
}
.mainCts .foot_logo {
  width: min(80%, 220px);
  display: block;
  margin: 90px auto 0;
}

@media all and (min-width: 767px) {
  .mainCts .main-bg.bg-1::after {
    top: 490px;
  }
  .mainCts .main-bg.bg-2::before {
    top: 775px;
  }
  .mainCts .main-bg.bg-2::after {
    top: 1290px;
  }
  .mainCts .articleList {
    width: 1080px;
    max-width: 1080px;
    padding-top: 88px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .mainCts .articleList li {
    margin-bottom: 70px;
  }
  .mainCts .articleList li.show {
    opacity: 1;
    transform: none;
  }
  .mainCts .articleList li:nth-of-type(1), .mainCts .articleList li:nth-of-type(4), .mainCts .articleList li:nth-of-type(7) {
    transition: opacity 0.5s 0.5s ease-in, transform 0.5s 0.5s ease-out, filter 0.5s, box-shadow 0.5s;
  }
  .mainCts .articleList li:nth-of-type(2), .mainCts .articleList li:nth-of-type(5), .mainCts .articleList li:nth-of-type(8) {
    margin: 0 35px 35px;
    transition: opacity 0.5s 0.7s ease-in, transform 0.5s 0.7s ease-out, filter 0.5s, box-shadow 0.5s;
  }
  .mainCts .articleList li:nth-of-type(3), .mainCts .articleList li:nth-of-type(6) {
    transition: opacity 0.5s 0.9s ease-in, transform 0.5s 0.9s ease-out, filter 0.5s, box-shadow 0.5s;
  }
  .mainCts .articleList li:hover img {
    filter: brightness(0.8);
  }
  .mainCts .articleList li:hover .more::before {
    opacity: 0;
  }
  .mainCts .articleList li:hover .more .arrow::after {
    border-color: #2e159b;
  }
  .mainCts .articleList li .ttl + p {
    height: 84px;
  }
  .mainCts .articleList li.adj .ttl + p {
    height: 104px;
  }
  .mainCts .articleList li.adj .more {
    margin-top: 28px;
  }
  .mainCts .foot_logo {
    width: 300px;
    transition: 0.3s;
    margin-top: 40px;
  }
  .mainCts .foot_logo:hover {
    filter: brightness(0.8);
  }
}
/* --------------
フッター
-------------- */
footer {
  background-color: #1a1a1a;
  padding: 10px 15px;
}
footer a {
  display: block;
  width: 110px;
  margin: 0 auto 10px;
}
footer a img {
  width: 100%;
}
footer p {
  margin: 0 auto 0.5em;
  font-size: 11px;
  line-height: 1.4;
  color: #fff;
}

@media all and (min-width: 767px) {
  footer > div {
    width: 817px;
    margin: 0 auto;
  }
  footer a {
    float: left;
    margin: 10px 50px 0 0;
  }
}/*# sourceMappingURL=style.css.map */