@charset "UTF-8";
/*---------------------------
  フォントの読み込み
---------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&display=swap");
/*---------------------------
  関数
---------------------------*/
/*---------------------------
  ローディング画面
---------------------------*/
.loading {
  background-color: #FFFFFF;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 999;
}

.loading__symbool {
  width: 25vw;
  height: 25vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .loading__symbool {
    width: 80vw;
    height: 80vw;
  }
}

/*---------------------------
  キービジュアル
---------------------------*/
.topKeyVisual {
  position: relative;
}

.topKeyVisual__video {
  position: relative;
  padding-top: 56.25%;
}

@media screen and (max-width: 767px) {
  .topKeyVisual__video {
    padding-top: 177.77%;
  }
}

.topKeyVisual__videoSource {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.topKeyVisual__videoMask {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.topKeyVisual__symbol {
  width: 26.72035%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .topKeyVisual__symbol {
    width: 67.46667%;
  }
}

.topKeyVisual__symbol img {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.topKeyVisual__symbol:hover {
  opacity: 0.9;
}

.topKeyVisual__symbol:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.topKeyVisual__link {
  width: 140px;
  padding: 5.5px 13px;
  font-size: 1.4rem;
  font-family: "Oswald", sans-serif;
  line-height: calc(21 / 14);
  letter-spacing: 0.1em;
  color: #fff;
  border: 1px solid #fff;
  position: absolute;
  right: 2.2vw;
  bottom: 4.2vw;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .topKeyVisual__link {
    width: 100px;
    padding: 8px 9px;
    font-size: 1rem;
    line-height: calc(10 / 15);
    bottom: 11.2vw;
  }
}

.topKeyVisual__link::after {
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media screen and (max-width: 767px) {
  .topKeyVisual__link::after {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.topKeyVisual__link:hover {
  opacity: 0.8;
}

/*---------------------------
  動画用モーダル
---------------------------*/
.movieModal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.movieModal__mark {
  font-size: 3rem;
  color: #FFFFFF;
  position: absolute;
  top: 50%;
}

.movieModal__contentWrapper {
  width: calc(865 / 1366 * 100vw);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 0;
  padding-top: calc(865 / 1366 * 100vw * 0.5625);
}

@media screen and (max-width: 767px) {
  .movieModal__contentWrapper {
    width: calc(300 / 375 * 100vw);
    padding-top: calc(300 / 375 * 100vw * 0.5625);
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
  }
}

.movieModal__contentWrapper iframe {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movieModal__contentWrapper::before {
  content: "×";
  color: #FFFFFF;
  font-size: 4rem;
  position: absolute;
  top: -65px;
  right: 0;
}

.movieModal.is-show {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

/*---------------------------
  ピックアップ
---------------------------*/
.topPickUp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.topPickUp::after {
  content: "";
  display: block;
  width: calc(94.4% / 3);
}

.topPickUp__item {
  background-color: #FFFFFF;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: calc(94.4% / 3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  .topPickUp__item {
    width: calc(95% / 2);
  }
}

.topPickUp__item:first-child, .topPickUp__item:nth-child(2) {
  width: calc(96.3% / 2);
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .topPickUp__item:first-child, .topPickUp__item:nth-child(2) {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .topPickUp__item:last-child {
    display: none;
  }
}

.topPickUp__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.topPickUp__itemImg > img {
  aspect-ratio: 158 / 85;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.topPickUp__itemContent {
  padding: 14px 20px 18px;
}

@media screen and (max-width: 767px) {
  .topPickUp__itemContent {
    padding: 14px 10px;
  }
}

.topPickUp__itemLabel {
  margin-bottom: 8px;
  font-family: "Oswald", sans-serif, "Noto Sans JP", sans-serif;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .topPickUp__itemLabel {
    line-height: 1.41;
  }
}

.topPickUp__itemDate {
  margin-right: 12px;
}

@media screen and (max-width: 767px) {
  .topPickUp__itemDate {
    margin-right: 10px;
  }
}

.topPickUp__itemCategory {
  letter-spacing: 0.06em;
}

.topPickUp p {
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .topPickUp p {
    letter-spacing: 0.06em;
    line-height: 1.67;
  }
}

.topPickUp__item--small .topPickUp__itemContent {
  padding: 11px 20px 7px;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .topPickUp__item--small .topPickUp__itemContent {
    padding: 9px 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .topPickUp__item--small .topPickUp__itemImg {
    height: 26.66667vw;
  }
}

.topPickUp__item--small .topPickUp__itemImg img {
  aspect-ratio: 413 / 223;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .topPickUp__item--small .topPickUp__itemImg img {
    border-radius: 10px 10px 0 0;
  }
}

.topPickUp__item--small .topPickUp__itemLabel {
  margin-bottom: 7px;
  line-height: 1.42;
}

@media screen and (max-width: 767px) {
  .topPickUp__item--small .topPickUp__itemLabel {
    line-height: 1.5;
  }
}

.topPickUp__item--small .topPickUp__itemLabel date {
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .topPickUp__item--small .topPickUp__itemLabel date {
    margin-right: 7px;
  }
}

.topPickUp__item--small .topPickUp p {
  line-height: 1.67;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .topPickUp__item--small .topPickUp p {
    line-height: 1.4;
  }
}

/*---------------------------
  カテゴリー
---------------------------*/
.topCategory {
  margin-bottom: 100px;
  border-radius: 36px 0 0 36px;
  background-color: #000000;
  overflow: hidden;
  position: relative;
}

.topCategory:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .topCategory {
    border-radius: 15px 0 0 15px;
    margin-bottom: 30px;
  }
  .topCategory:last-child {
    margin-bottom: 80px;
  }
}

.topCategory__img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.topCategory__contentsBlock {
  position: absolute;
  left: 2.92826vw;
  bottom: 40px;
}

@media screen and (max-width: 767px) {
  .topCategory__contentsBlock {
    bottom: 20px;
  }
}

.topCategory__contentsBlock--top {
  top: 40px;
}

@media screen and (max-width: 767px) {
  .topCategory__contentsBlock--top {
    top: 20px;
  }
}

.topCategory__titleBlock {
  color: #FFFFFF;
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .topCategory__titleBlock {
    margin-bottom: 11px;
  }
}

.topCategory__subTitle {
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .topCategory__subTitle {
    font-size: 1rem;
  }
}

.topCategory__title {
  font-family: "Oswald", sans-serif;
  font-size: 4.4rem;
  line-height: 1.48;
}

@media screen and (max-width: 767px) {
  .topCategory__title {
    font-size: 2.2rem;
    line-height: 1.45;
  }
}

.topCategory__description {
  line-height: 1.875;
}

@media screen and (max-width: 767px) {
  .topCategory__description {
    line-height: 1.5;
  }
}
/*# sourceMappingURL=top.css.map */