@charset "utf-8";

/* ==========================================================================
   メインビジュアル
========================================================================== */
.main-visual {
  position: relative;
  margin: 0 auto;
  padding: 50px 0 0;
  animation: fadeIn 1s ease-out;
}
.main-visual__wrap {
  position: relative;
  z-index: 6;
  overflow: hidden;
  width: 100%;
  height: 80vh;
  max-height: 600px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
}
.main-visual__wrap .bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-visual__copy {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
.main-visual__copy-title {
  position: relative;
  z-index: 3;
  max-width: 580px;
}
.main-visual__copy::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 290px;
  background: url(../images/banners/mv-sp-obi.png) repeat-x left bottom;
  background-size: contain;
}

/* メインビジュアル オブジェクト
----------------------------------------------- */
.main-visual__wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: min(50vw, 400px);
  aspect-ratio: 1/1;
  background: url(../images/banners/mv-sp-obj-left-b.png) no-repeat;
  background-size: contain;
}
.main-visual__wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: min(50vw, 400px);
  aspect-ratio: 1/1;
  background: url(../images/banners/mv-sp-obj-right-b.png) no-repeat;
  background-size: contain;
}

/* プログラムバナー
----------------------------------------------- */
.program__bnr {
  padding: 0.2em 2% 1.5em;
  background: #001b5f;
  text-align: center;
}
.program__bnr a {
  display: block;
  max-width: 500px;
  margin: 0 auto;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (min-width: 992px) {
  .main-visual {
    padding-top: 0;
  }
  .main-visual__wrap {
    height: calc(100vh - 120px);
    max-height: inherit;
  }
  .main-visual__copy-title {
    margin-left: -30px;
    width: 65vw;
    max-width: 880px;
  }
  .main-visual__copy::after {
    height: 84%;
    max-height: 400px;
  }
  .program__bnr {
    position: absolute;
    z-index: 15;
    right: 30px;
    bottom: 40px;
    width: 43%;
    padding: 0;
    background: transparent;
  }
  .main-visual__wrap::before {
    width: min(30vw, 800px);
    background-image: url(../images/banners/mv-pc-obj-left-b.png);
  }
  .main-visual__wrap::after {
    width: min(30vw, 800px);
    background-image: url(../images/banners/mv-pc-obj-right-b.png);
  }
}
@media screen and (min-width: 1300px) {
  .main-visual__wrap {
    height: 100vh;
    max-height: inherit;
  }
  .main-visual__copy-title {
    margin-left: 0;
  }
  .main-visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: multiply;
  }
}

/* ==========================================================================
   home-news
========================================================================== */
#home-news {
  padding-bottom: min(15vw, 120px);
}
#home-news::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  z-index: -1;
  width: min(50vw, 400px);
  aspect-ratio: 1/1;
  background: url(../images/contents/topNews-obj.png) no-repeat;
  background-size: contain;
}

/* post-list
----------------------------------------------- */
.home-news__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1em;
}
.home-news__list .post-list__item {
  display: flex;
  align-items: stretch;
}
.home-news__list .post-list__link {
  display: block;
  color: var(--color-text);
  text-decoration: none;
}
.home-news__list .post-list__link:hover {
  color: var(--color-btn);
}
.home-news__list .post-list__image {
  display: block;
  overflow: hidden;
  margin-bottom: 0.2em;
  aspect-ratio: 8/5;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.home-news__list .post-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-out;
}
.home-news__list .post-list__link:hover .post-list__image img {
  transform: scale(1.1);
  opacity: 0.7;
}
.home-news__list .post-list__body {
  padding: 0.2em 0 0.8em;
}
.home-news__list .post-list__date {
  font-size: 0.8em;
}
.home-news__list .post-list__title {
  margin: 0.3em 0 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.9em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* カテゴリバッジ
----------------------------------------------- */
.post-list__cat {
  display: inline-block;
  margin: 0 0 0 0.5em;
  padding: 0.2em 0.5em;
  border-radius: 3px;
  font-size: 0.75em;
  line-height: 1.2;
  border: 1px solid #252899;
  background-color: #fff;
  color: #252899;
}
.post-list__cat--conference {
  border-color: #9ecaff;
  background-color: #9ecaff;
  color: #1a3a5c;
}
.post-list__cat--trainee {
  border-color: #fffa73;
  background-color: #fffa73;
  color: #5a5000;
}
.post-list__cat--seminar {
  border-color: #ffbf73;
  background-color: #ffbf73;
  color: #5a3000;
}
.post-list__cat--media {
  border-color: #e2bdff;
  background-color: #e2bdff;
  color: #3a005a;
}
.post-list__cat--other {
  border-color: #e1e1e5;
  background-color: #e1e1e5;
  color: #333;
}

@media screen and (max-width: 599px) {
  #home-news .home-news__list .post-list__item:nth-child(n + 4) {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #home-news .home-news__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 1.5em;
  }
}
@media screen and (min-width: 992px) {
  #home-news .home-news__list {
    grid-template-columns: repeat(3, 1fr);
  }
  #home-news .submit-btn {
    justify-content: flex-end;
  }
  #home-news::before {
    width: min(30vw, 800px);
  }
}

/* ==========================================================================
   home-about
========================================================================== */
#home-about {
  position: relative;
  z-index: 2;
  padding-top: min(20vw, 160px);
  background: url(../images/contents/topSlider-bg.jpg) no-repeat center bottom;
  background-size: 200%;
}
#home-about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url(../images/contents/topAbout-bg.png) no-repeat right top;
  background-size: contain;
}
#home-about::after {
  content: "";
  position: absolute;
  top: max(-30vw, -240px);
  left: 0;
  z-index: -1;
  width: min(50vw, 400px);
  aspect-ratio: 1/1;
  background: url(../images/contents/topAbout-obj.png) no-repeat;
  background-size: contain;
}
.home-about__name {
  margin-top: 2em;
  text-align: right;
}
.home-about__name img {
  width: min(70%, 300px);
}
@media screen and (min-width: 768px) {
  #home-about {
    background-position: left bottom;
    background-size: 1400px;
  }
  #home-about .home-about__body {
    max-width: 600px;
  }
  #home-about .submit-btn {
    justify-content: start;
  }
}
@media screen and (min-width: 992px) {
  #home-about .home-about__body {
    max-width: 680px;
  }
}

.box-swgs {
  position: relative;
  z-index: 1;
  margin-top: 4em;
  margin-bottom: 4em;
  padding: 2em 8%;
  color: #fff;
  background: linear-gradient(130deg, rgb(42, 76, 175, 0.9) 0%, rgb(14, 24, 117, 0.9) 100%);
}
.box-swgs::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: rgba(1, 29, 131, 0.2);
  transform: rotate(6deg) scale(0.97);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .box-swgs {
    margin-top: 8em;
    padding: 4em 8%;
  }
}
/* ==========================================================================
   home-slider
========================================================================== */
.home-slider {
  position: relative;
  overflow: hidden;
}
.home-slider__list {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-slider__item {
  position: absolute;
  top: 50%;
  left: 0;
  width: auto;
  will-change: transform;
  animation-name: homeSliderMove;
  animation-duration: var(--ts-duration, 12s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: var(--ts-delay, -6s);
}
.home-slider__item img {
  display: block;
  width: var(--ts-w, 200px);
  height: auto;
  object-fit: contain;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
@keyframes homeSliderMove {
  from {
    transform: translateY(-50%) translateX(var(--ts-start-x, calc(100vw + 120%)));
  }
  to {
    transform: translateY(-50%) translateX(var(--ts-end-x, -120%));
  }
}
@media screen and (min-width: 768px) {
  .home-slider__list {
    height: 400px;
  }
}
@media screen and (min-width: 992px) {
  .home-slider__list {
    height: 500px;
  }
}

/* ==========================================================================
   home-movie
========================================================================== */
#home-movie {
  background: url(../images/contents/topMovie-bg.jpg) no-repeat center bottom;
  background-size: cover;
}
#home-movie .title01__en {
  color: #fff;
}

/* ==========================================================================
   home-feature
========================================================================== */
#home-feature {
  position: relative;
  background: url(../images/contents/topFeature-bg.jpg) no-repeat center top #f7faff;
  background-size: 100vw;
}
#home-feature::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: min(50vw, 400px);
  aspect-ratio: 1/1;
  background: url(../images/contents/topFeature-obj.png) no-repeat;
  background-size: contain;
}

/* feature-block
----------------------------------------------- */
.feature-block__content {
  position: relative;
  margin-bottom: 4em;
  padding-top: 40px;
}
.feature-block__label {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  width: 220px;
  height: 40px;
  padding-left: 29px;
  background: #0e1875;
  color: #fff;
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
}
.feature-block__num {
  line-height: 1;
  font-size: 1.1em;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
.feature-block__body {
  display: flex;
  flex-direction: column;
  background: #fff;
}
.feature-block__text {
  padding: 1.2em 0.8em 0.5em;
}
h3.feature-block__title {
  position: relative;
  margin: 0 0 1.2em;
  padding: 0 0 1em;
  border: none;
  background: none;
  color: var(--color-main);
  font-size: 1.2em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  letter-spacing: 0;
}
.feature-block__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 3em;
  height: 3px;
  background-image: -webkit-linear-gradient(5deg, rgb(14, 24, 117) 0%, rgb(7, 100, 182) 82%, rgb(0, 175, 246) 99%);
  background-image: linear-gradient(5deg, rgb(14, 24, 117) 0%, rgb(7, 100, 182) 82%, rgb(0, 175, 246) 99%);
}
.feature-block__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.feature-block__link {
  position: relative;
  z-index: 0;
  display: block;
  overflow: hidden;
  padding: 0.8em 2em 0.8em 1em;
  background-color: rgb(3, 34, 141);
  background-image: linear-gradient(to right, rgb(3, 34, 141) 0%, rgb(42, 76, 175) 100%);
  color: #fff;
  font-size: 0.9em;
  text-decoration: none;
}
.feature-block__link:hover {
  color: var(--color-main);
}
.feature-block__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #85c6f8;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.feature-block__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5em;
  z-index: 1;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  background: url("../images/common/icon-arrow04.png") no-repeat center center;
  background-size: 1.5em;
  pointer-events: none;
}
.feature-block__link:hover::before {
  opacity: 1;
}
.feature-block__link:hover::after {
  background-image: url("../images/common/icon-arrow04-white.png");
}

/* スポーツ
----------------------------------------------- */
.is-sports .feature-block__body {
  background-image: linear-gradient(90deg, rgb(42, 76, 175) 0%, rgb(14, 24, 117) 100%);
  color: #fff;
}
.is-sports .feature-block__title {
  color: #fff;
}
.is-sports .feature-block__title::before {
  display: none;
}
.feature-block__sports {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: auto;
  padding: 0.5em;
  background: #fff;
  border-bottom: solid 7px var(--color-sub);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.feature-block__sports:hover {
  opacity: 0.8;
}
.feature-block__sports-icon img {
  width: 50px;
  display: block;
}
.feature-block__sports-text {
  font-size: 0.8em;
  line-height: 1.5;
  color: var(--color-text);
}

/* 偶数番目
----------------------------------------------- */
.feature-block__content.is-even .feature-block__label {
  left: 0;
  right: auto;
  padding-left: 0;
  padding-right: 30px;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
}

@media screen and (min-width: 768px) {
  .feature-block__content {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    padding-top: 59px;
  }
  .feature-block__label {
    width: 300px;
    height: 60px;
  }
  .feature-block__num {
    font-size: 1.4em;
  }
  .feature-block__label-text {
    font-size: 1.2em;
  }
  .feature-block__media {
    height: 100%;
  }
  .feature-block__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .feature-block__body {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .feature-block__text {
    padding: 2em 2em 1em;
  }
  .feature-block__links {
    margin-top: auto;
  }
  .feature-block__content.is-even {
    grid-template-columns: 5.5fr 4.5fr;
  }
  .feature-block__content.is-even .feature-block__media {
    order: 2;
  }
  .feature-block__content.is-even .feature-block__body {
    order: 1;
  }
  .feature-block__content.is-even .feature-block__label {
    padding-right: 50px;
    clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 100%, 0 100%);
  }
}
@media screen and (min-width: 992px) {
  .feature-block__content,
  .feature-block__content.is-even {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 4em;
  }
  .feature-block__text {
    padding: 3em 2.2em 1.5em;
  }
  .feature-block__title {
    font-size: 1.5em;
  }
  .feature-block__sports-text {
    font-size: 1em;
  }
  .feature-block__link {
    font-size: 1em;
    padding: 1em 2em 1em 1em;
  }
}
@media screen and (min-width: 1200px) {
  .feature-block__text {
    padding: 4em 2.2em 3.5em;
  }
  .feature-block__title {
    font-size: 1.7em;
  }
}

/* ==========================================================================
   home-instagram
========================================================================== */
.home-sns__list {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  margin-top: 2em;
}
.home-sns__item {
  width: min(48%, 250px);
}
@media screen and (max-width: 767px) {
  #home-instagram .title01__en {
    font-size: 9vw;
  }
}
.sb_instagram_header,
#sbi_load {
  display: none;
}
