/* 共通 */

.single-layout {
  width: 87%;
  margin-inline: auto;
}

section + section {
  margin-top: 140px;
}

@media screen and (max-width: 750px) {
  section + section {
    margin-top: 80px;
  }
}

/* タイトル */
.section-title {
  margin-bottom: 48px;
}
.section-title .en {
  color: #000;
  font-size: clamp(90px, 9vw, 120px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: -.05em;
  font-family: "Roboto Condensed", sans-serif;
}
.section-title .ja {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}
.section-title .ja::before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 2px;
  background-color: #C12404;
}

@media screen and (max-width:750px) {
  .section-title {
    margin-bottom: 48px;
  }
  .section-title .en {
    font-size: 64px;
    margin-bottom: 10px;
  }
}

/* ボタン */
.view-btn {
  background-color: #000;
  /* width: 206px;
  height: 62px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 3px;
  padding: 10px 20px;
  box-sizing: border-box;
  transition: 0.2s;
}
.view-btn::after {
  content: '';
  display: block;
  background-color: #fff;
  width: 10px;
  height: 10px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.view-btn span {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  transition: 0.1s;
}
.view-btn:hover {
  background-color: #c12404;
}
.view-btn:hover span {
  transform: translateX(5px);
}

/* タイトル　＋ ボタン */
.tit-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* ブロックリスト */

.block-list .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.block-list .list.slider {
  grid-template-columns: repeat(8, 1fr);
  overflow-x: scroll;
}
.block-list + .block-list {
  margin-top: 84px;
}
.block-list .list + .list {
  border-top: solid 1px #CACACA;
  padding-top: 20px;
  margin-top: 20px;
}


.top-page > .wrap {
  margin: 140px 0 160px;
}
@media screen and (max-width:750px) {
  .top-page > .wrap {
    margin: 80px 0 100px;
  }
}
.mv {
  position: relative;
  height: 100dvh;
}
.mv > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv .popup-banner {
  position: fixed;
  z-index: 10;
  bottom: 56px;
  right: 4%;
}
.mv .popup-banner .banner {
  border: solid 1px #fff;
  border-radius: 5px;
}
.mv input[type="checkbox"] {
  display: none;
}
.mv input[type="checkbox"]:checked + .popup-banner {
  display: none;
}
.mv .popup-banner label {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  top: -7px;
  right: -8px;
  /* color: #fff; */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 1px #fff;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.mv .popup-banner label:hover {
  opacity: 0.7;
}
.mv .popup-banner label img {
  width: 9px;
}

@media screen and (max-width:750px) {
  .mv .popup-banner {
    bottom: 18px;
    width: 43%;
  }
}

.topics .view-btn {
  width: 206px;
  height: 62px;
  margin-left: auto;
  margin-top: 50px;
}
.topics .block-list {
  border-top: solid 1px #CACACA;
  padding-top: 20px;
}
.topics .block-list .list {
  gap: 20px;
}
.topics .block-list .list a {
  width: 100%;
}
.topics .block-list .list.slider .item {
  width: calc((87vw - 60px) / 4);
}
.topics .block-list .item img {
  width: 100%;
  aspect-ratio: 265 / 149;
  object-fit: cover;
}
.topics .block-list .item a img {
  transition: 0.3s;
}
.topics .block-list .item a:hover img {
  transform: scale(1.1);
}
.topics .block-list .item span {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  display: inline-block;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width:750px) {
  .topics .view-btn {
    width: 171px;
    height: 45px;
  }
  .topics .section-title {
    margin-bottom: 22px;
  }
  .topics .block-list {
    border-top: unset;
  }
  .topics .block-list .list {
    gap: 10px;
  }
  .topics .block-list .list.slider {
    padding-bottom: 20px;
    scrollbar-gutter: stable;
    scrollbar-color: #000 #CACACA;
    border-bottom: solid 1px #CACACA;
  }
  .topics .block-list .list:last-child {
    grid-template-columns: 1fr 1fr;
  }
  .topics .block-list .list.slider .item {
    width: calc(100vw / 2.34);
  }
  .topics .block-list .list + .list {
    border-top: unset;
  }
  .topics .block-list .item span {
    font-size: 12px;
  }
}

.event {
  margin-top: 0;
}
.event .view-btn {
  width: 206px;
  height: 62px;
  margin-left: auto;
  margin-top: 50px;
}
.event .list {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.event .list .item a {
  width: 100%;
  display: block;
}
.event .list .item a img {
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.event .list .item a:hover img {
  transform: scale(1.1);
}
.event .list .item .image {
  width: 100%;
  height: 100%;
  aspect-ratio: 540 / 303;
  overflow: hidden;
}
.event .list .item {
  border-top: solid 1px #CACACA;
  padding-top: 20px;
}
.event .list .item .title {
  margin-top: 13px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}
.event .list .item .date {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width:750px) {
  .event {
    margin-top: 80px;
  }
  .event .list {
    grid-template-columns: 1fr;
    gap: 20px;
    border-top: solid 1px #CACACA;
  }
  .event .list .item{
    border-top: unset;
  }
  .event .list .item .title {
    border-top: unset;
  }
  .event .list .item .title {
    font-size: 14px;
    margin-top: 10px;
  }
  .event .list .item .date {
    font-size: 14px;
  }
  .event .view-btn {
    margin-top: 20px;
    width: 171px;
    height: 45px;
  }
}

.appeal .intro {
  position: relative;
}
.appeal .intro .image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
.appeal .intro .texts {
  position: absolute;
  top: 177px;
  left: 7.8%;
  width: 608px;
}
.appeal .intro .texts p {
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin-top: 26px;
}
.appeal .view-btn {
  border: solid 1px #fff;
  width: 206px;
  height: 62px;
  margin-top: 60px;
}
.appeal .view-btn span {
  color: #fff;
}
.appeal .contents {
  background-color: #000;
  padding: 120px 0 50px;
}
.appeal .contents .images {
  position: relative;
  margin-left: 10%;
  width: 75%;
}
/* .appeal .contents .images img {
} */
.appeal .contents .images p {
  color: #fff;
  padding: 45px 9%;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  position: absolute;
  bottom: -53px;
  right: -80px;
  border: solid 2px #fff;
  background-color: #000;
  box-sizing: border-box;
}
.appeal .award {
  /*margin-top: 170px;*/
}
.appeal .award img {
  width: 58%;
  margin: 0 auto;
}
.appeal .award p {
  color: #e6b422;
  padding: 45px 9%;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  /*border: solid 2px #fff;*/
  width: fit-content;
  margin: 0px auto 0;
}
@media screen and (max-width: 750px) {
  .appeal .intro .image img {
    height: auto;
  }
  .appeal .intro .texts {
    top: auto;
    bottom: 80px;
    left: 10%;
    width: 80%;
  }
  .appeal .intro .texts p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 10px;
    width: 90%;
  }
  .appeal .view-btn {
    width: 171px;
    height: 45px;
    margin-top: 28px;
  }
  .appeal .contents {
    padding: 10px 0 60px;
  }
  .appeal .contents .images {
    width: 90%;
    margin: 0 auto;
  }
  .appeal .contents .images p {
    padding: 26px 8%;
    font-size: 20px;
    line-height: 1.6;
    position: static;
  }
  .appeal .award {
    margin-top: 0px;
  }
  .appeal .award img {
    width: 73%;
    margin: 0 auto;
  }
  .appeal .award p {
    padding: 26px 8%;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: -.02em;
    margin: 24px auto 0;
    width: 90%;
    box-sizing: border-box;
  }
}

.feature {
  background-color: #000;
  margin-top: 0;
}
.feature h4 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 110px;
  text-decoration: underline double 1px #fff;
  text-underline-offset: 5px;
  /* background: #000000;
  background: linear-gradient(0deg,rgba(233, 30, 149, 1) 0%, rgba(255, 255, 255, 0) 2px); */
}
.feature .block-list .list {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature .item.title-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature .section-title {
  color: #fff;
  width: fit-content;
  margin: 0 auto;
}
.feature .section-title .en {
  font-size: clamp(70px, 8vw, 101px);
}
.feature .section-title .ja {
  font-size: 12px;
}
.feature .deco {
  color: #fff;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin: 0 0 52px 9%;
}
.feature .deco .num {
  font-size: clamp(140px, 18vw, 240px);
  letter-spacing: -.05em;
  line-height: .75;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}
.feature .deco .text {
  font-size: clamp(26px, 3.5vw, 46px);
  letter-spacing: .05em;
  line-height: 1;
  font-weight: 300;
  font-family: "Roboto Condensed", sans-serif;
  display: flex;
  flex-direction: column;
}
.feature .item > a {
  position: relative;
  display: inline-block;
}
.feature .item > a > img {
  opacity: .6;
  transition: opacity .2s;
  height: 100%;
  object-fit: cover;
}
.feature .item > a:hover > img {
  opacity: .9;
}
.feature .item .title {
  position: absolute;
  bottom: 22px;
  left: 32px;
  color: #fff;
}
.feature .item .title .en {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .05em;
}
.feature .item .title .ja {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 5px;
}
.feature .item .title .ja span {
  flex: 1;
}
.feature .item .title .ja .icon {
  content: '';
  width: 34px;
  height: 34px;
  border: solid 1px #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature .item .title .ja img {
  width: 10px;
}
@media screen and (max-width:750px) {
  .feature h4 {
    font-size: 24px;
    text-align: left;
    width: 80%;
    margin: 0 auto;
  }
  .feature .block-list {
    margin-top: 66px;
    padding-bottom: 60px;
  }
  .feature .block-list .list {
    grid-template-columns: auto;
  }
  .feature .section-title .en {
    font-size: 64px;
  }
  .feature .deco {
    margin: 55px 0 56px 5%;
  }
  .feature .deco .num {
    font-size: 180px;
  }
  .feature .deco .text {
    font-size: 42px;
  }
  .feature .section-title {
    width: 90%;
  }
  .feature .item > a {
    aspect-ratio: 13/8;
  }
  .feature .item > a > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .feature .item .title {
    left: 5%;
  }
  .feature .item .title .en {
    font-size: 10px;
    line-height: 1;
  }
  .feature .item .title .ja {
    font-size: 20px;
    line-height: 1.2;
  }
  .feature .item .title .ja .icon {
    width: 26px;
    height: 26px;
  }
  .feature .item .title .ja .icon img {
    width: 7px;
  }
}

.course .section-title {
  width: 87%;
  margin-inline: auto;
}
.course .block-list .list {
  grid-template-columns: auto;
  gap: 20px;
}
.course .item {
  width: 93%;
  margin-left: auto;
}
.course .item > a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: fit-content;
}
.course .item > a::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  transition: .2s;
  opacity: .9;
  background: #000000;
  background: linear-gradient(90deg,rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
  position: absolute;
  inset: 0;
}
.course .item > a:hover::before {
  opacity: .6;
}
.course .item .title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* bottom: 22px; */
  left: 7%;
  color: #fff;
}
.course .item .title > p {
  font-size: 24px;
  margin-top: 24px;
  line-height: 1.6;
}
.course .item .title .en {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .05em;
}
.course .item .title .ja {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 15px;
}
.course .item .title .ja span {
  flex: 1;
}
.course .item .title .ja .icon {
  content: '';
  width: 34px;
  height: 34px;
  border: solid 1px #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.course .item .title .ja img {
  width: 10px;
}
@media screen and (max-width:750px) {
  .course .section-title {
    margin-bottom: 32px;
  }
  .course .item .title {
    top: auto;
    bottom: 14px;
    left: 20px;
    transform: translateY(0);
  }
  .course .item .title > p {
    font-size: 14px;
    margin-top: 8px;
  }
  .course .item .title .en {
    font-size: 10px;
  }
  .course .item .title .ja {
    font-size: 20px;
    gap: 12px;
    margin-top: 5px;
  }
  .course .item .title .ja .icon {
    width: 26px;
    height: 26px;
  }
  .course .item .title .ja .icon img {
    width: 7px;
  }
  .course .item > a::before {
    background: rgba(0, 0, 0, .4);
  }
}

.gallery {
  background-image: url('/assets/images/gallery/gallery-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  max-height: 100vh;
  overflow: hidden;
}
.gallery .section-title {
  color: #fff;
}
.gallery .section-title .en {
  color: #fff;
}
.gallery .view-btn {
  border: solid 1px #fff;
  width: 206px;
  height: 62px;
  margin-top: 48px;
}
.gallery .view-btn span {
  color: #fff;
}
.gallery .filter {
  background-color: rgba(0, 0, 0, 0.75);
  display: grid;
  grid-template-columns: 1fr 43%;
  align-content: center;
  gap: 7%;
  width: 100%;
}
.gallery .slide-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-height: 100vh;
  overflow: hidden;
}
.gallery .slide-container .slide ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
}
.gallery .slide-container .slide.under-top ul {
  animation: scrollAnimFromUnder 30s infinite linear both;
}
.gallery .slide-container .slide.top-under ul {
  animation: scrollAnimFromTop 30s infinite linear both;
}
.gallery .slide-container .slide-item {
  max-width: 264px;
}
.gallery .slide-container .slide-item img {
  aspect-ratio: 264 / 396;
  width: 100%;
  object-fit: cover;
}
.gallery .contents {
  align-self: center;
}
.gallery .contents p {
  color: #fff;
  width: 66%;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (max-width:750px) {
  .gallery {
    max-height: none;
  }
  .gallery .view-btn {
    width: 171px;
  }
  .gallery .filter {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 70px;
    padding: 80px 0;
  }
  .gallery .slide-container {
    flex-direction: column;
    width: 100vw;
    max-height: none;
  }
  .gallery .slide-container .slide ul {
    flex-direction: row;
    width: fit-content;
    /* width: 100%;
    overflow: hidden; */
  }
  .gallery .slide-container .slide.under-top ul {
    animation: scrollAnimFromLeft 30s infinite linear both;
  }
  .gallery .slide-container .slide.top-under ul {
    animation: scrollAnimFromRight 30s infinite linear both;
  }
  .gallery .slide-container .slide ul li {
    width: calc(100vw / 2.3);
    
  }
  .gallery .contents {
    margin: 0 auto;
    width: 89%;
  }
  .gallery .contents p {
    width: 100%;
    font-size: 14px;
  }
}

.sns .section-title {
  margin-bottom: 72px;
}
.sns .view-btn {
  width: 158px;
  height: 42px;
}
.sns .tit {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 38px;
  line-height: 1.3;
  font-weight: bold;
}
.sns .list.col5 {
  grid-template-columns: repeat(5, 1fr);
}
.sns .list.col6 {
  grid-template-columns: repeat(6, 1fr);
}
.sns .list.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.sns .list .item {
  width: 100%;
}
.sns .list .item.video {
  position: relative;
}
.sns .list .item.video::before,
.sns .list .item.video::after {
  content: '';
  display: block;
  position: absolute;
}
.sns .list .item.video::before {
  width: 70px;
  height: 70px;
  z-index: 1;
  border: solid 1px #fff;
  border-radius: 50%;
  top: calc(50% - 35px);
  left: calc(50% - 35px);
}
.sns .list .item.video::after {
  background-color: #fff;
  width: 15px;
  height: 20px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  top: calc(50% - 9px);
  left: calc(50% - 4px);
  
}
.sns .list .item.video iframe {
  width: 100%;
}
@media screen and (max-width:750px) {
  .sns {
    width: 100%;
  }
  .sns .view-btn {
    width: 28px;
    height: 28px;
    padding: 0;
    justify-content: center;
  }
  .sns .view-btn::after {
    width: 5px;
    height: 5px;
  }
  .sns .section-title {
    width: 87%;
    margin: 0 auto 40px;
  }
  .sns .tit-area {
    justify-content: start;
    gap: 8px;
    width: 87%;
    margin-inline: auto;
  }
  .sns .tit {
    font-size: 24px;
  }
  .sns .list.col5 .item {
    width: calc(100vw / 2.3);
  }
  .sns .list.col6 {
    display: flex;
  }
  .sns .list.col6 .item {
    min-width: calc((100vw - 16px) / 3);
  }
  .sns .list.col3 {
    display: flex;
  }
  .sns .list.col3 .item {
    min-width: calc((100vw - 8px) / 1.6);
  }
  .sns .list .item.video::before {
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
  }
  .sns .list .item.video::after {
    width: 10px;
    height: 15px;
    top: calc(50% - 6px);
    left: calc(50% - 2px);
  }
}

@keyframes scrollAnimFromUnder {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes scrollAnimFromTop {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes scrollAnimFromLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollAnimFromRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.slidein {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}
.is-visible .slidein, .is-visible.slidein {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  opacity: 1;
  transition: 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0.2s;
}