.video-wrap {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.video-wrap video {
  width: auto;
  min-width: inherit;
  height: 100vh;
  min-height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.video-wrap .top-slider {
  width: 100%;
  height: 100vh;
}

.video-wrap .top-slider li {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.video-wrap .top-slider li img {
  display: block;
  width: auto;
  min-width: inherit;
  height: 100vh;
  min-height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (min-aspect-ratio: 16/9) and (orientation: landscape) {
  .video-wrap video {
    width: 100vw;
    min-width: 100vw;
    height: auto;
    min-height: inherit;
  }
  .video-wrap .top-slider li img {
    width: 100%;
    min-width: 100%;
    height: auto;
    min-height: inherit;
  }
}
.top-op-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 1000000;
  letter-spacing: 0.25em;
  overflow: hidden;
  animation: op_animation 0.4s ease-out 2s forwards;
}

.top-op-content .top-op-logo {
  position: absolute;
  width: 8%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0;
  animation: op_logo 0.3s ease-out 0.2s both;
}

.top-op-content .top-op-logo img {
  display: block;
  width: 100%;
}

.top-op-content p {
  position: absolute;
  width: 30%;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  animation: op_logo2 0.3s ease-out 0.8s both;
  opacity: 0;
}

.top-op-content p img {
  width: 60%;
  margin: 0 20%;
}

@keyframes op_animation {
  0% {
    top: 0;
  }
  100% {
    top: -100vh;
  }
}
@keyframes op_logo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes op_logo2 {
  0% {
    opacity: 0;
    transition: translateY(40px);
  }
  100% {
    opacity: 1;
    transition: translateY(0);
  }
}
li.slick-slide .main-copy-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  transform: translateY(-50%) translateX(-40%);
}

li.slick-slide .main-copy-content .bg-flower {
  position: relative;
}

li.slick-slide .main-copy-content .bg-flower p.main-text {
  font-family: "Noto Serif JP", serif;
  color: #eb5c01;
  font-size: 4.5vw;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  opacity: 0;
}

li.slick-slide .main-copy-content .bg-flower p.main-text.middle {
  font-size: 3.5vw;
}

li.slick-slide.slick-active .main-copy-content .bg-flower p.main-text {
  text-align: left;
  margin: 0 0 0 4vw;
}

li.slick-slide.slick-active .main-copy-content .bg-flower p.main-text:nth-of-type(1) {
  animation: tracking-in-expand 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1s both;
}

li.slick-slide.slick-active .main-copy-content .bg-flower p.main-text:nth-of-type(2) {
  animation: tracking-in-expand 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1.4s both;
}

li.slick-slide.slick-active .main-copy-content .bg-flower p.main-text:nth-of-type(3) {
  animation: tracking-in-expand 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1.8s both;
}

li.slick-slide.slick-active .main-copy-content .bg-flower::before {
  content: "";
  position: absolute;
  background: url(../images/top_webp/top_icon_big.webp) no-repeat center center;
  background-size: cover;
  width: 40vw;
  height: 40vw;
  top: 50%;
  left: -10vw;
  transform: translateY(-50%);
  animation-name: fadeLeftAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.top-bnr-content {
  position: absolute;
  bottom: 16vh;
  right: 9vw;
  width: 22%;
}

.top-bnr-content ul.top-bnr-slider li a img {
  border: solid 3px #fff;
  width: 100%;
}

.top-bnr-content ul.top-bnr-slider .slick-dots {
  bottom: -15px;
  width: 45%;
  margin: 0 0 0 55%;
}

.top-bnr-content ul.top-bnr-slider .slick-dots li {
  width: 30%;
  border: unset;
}

@keyframes tracking-in-expand {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-20%) translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}
.news-tab {
  width: 100%;
  margin: 0 auto;
}

.news-tab > * {
  font-family: "Roboto", sans-serif;
}

.news-tab .tab_area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 5%;
}

.news-tab .tab_area li {
  width: 24%;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  color: #000;
  background: none;
}

.news-tab .tab_area li.active {
  background: #fff;
}

.news_panel {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.news_panel .news-box {
  opacity: 0;
  transform: translateX(10%);
  -webkit-transform: translateX(10%);
}

.news_panel.active {
  opacity: 1;
  height: auto;
  display: flex;
  flex-direction: column;
}

.news_panel.active .news-box {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.news_panel.active .news-box:nth-of-type(1) {
  transition: 0.2s all ease-in-out 0s;
  opacity: 1;
}

.news_panel.active .news-box:nth-of-type(2) {
  transition: 0.2s all ease-in-out 0.1s;
  opacity: 1;
}

.news_panel.active .news-box:nth-of-type(3) {
  transition: 0.2s all ease-in-out 0.2s;
  opacity: 1;
}

.news_panel.active .news-box:nth-of-type(4) {
  transition: 0.2s all ease-in-out 0.3s;
  opacity: 1;
}

.news_panel.active .news-box:nth-of-type(5) {
  transition: 0.2s all ease-in-out 0.4s;
  opacity: 1;
}

.news_all_panel {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.news_all_panel .news-box {
  opacity: 0;
  transform: translateX(10%);
  -webkit-transform: translateX(10%);
}

.news_all_panel.active {
  opacity: 1;
  height: auto;
  display: flex;
  flex-direction: column;
}

.news_all_panel.active .news-box {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.news_all_panel.active .news-box:nth-of-type(1) {
  transition: 0.2s all ease-in-out 0s;
  opacity: 1;
}

.news_all_panel.active .news-box:nth-of-type(2) {
  transition: 0.2s all ease-in-out 0.1s;
  opacity: 1;
}

.news_all_panel.active .news-box:nth-of-type(3) {
  transition: 0.2s all ease-in-out 0.2s;
  opacity: 1;
}

.news_all_panel.active .news-box:nth-of-type(4) {
  transition: 0.2s all ease-in-out 0.3s;
  opacity: 1;
}

.news_all_panel.active .news-box:nth-of-type(5) {
  transition: 0.2s all ease-in-out 0.4s;
  opacity: 1;
}

.news_junior_panel {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.news_junior_panel .news-box {
  opacity: 0;
  transform: translateX(10%);
  -webkit-transform: translateX(10%);
}

.news_junior_panel.active {
  opacity: 1;
  height: auto;
  display: flex;
  flex-direction: column;
}

.news_junior_panel.active .news-box {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.news_junior_panel.active .news-box:nth-of-type(1) {
  transition: 0.2s all ease-in-out 0s;
  opacity: 1;
}

.news_junior_panel.active .news-box:nth-of-type(2) {
  transition: 0.2s all ease-in-out 0.1s;
  opacity: 1;
}

.news_junior_panel.active .news-box:nth-of-type(3) {
  transition: 0.2s all ease-in-out 0.2s;
  opacity: 1;
}

.news_junior_panel.active .news-box:nth-of-type(4) {
  transition: 0.2s all ease-in-out 0.3s;
  opacity: 1;
}

.news_junior_panel.active .news-box:nth-of-type(5) {
  transition: 0.2s all ease-in-out 0.4s;
  opacity: 1;
}

.news_high_panel {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.news_high_panel .news-box {
  opacity: 0;
  transform: translateX(10%);
  -webkit-transform: translateX(10%);
}

.news_high_panel.active {
  opacity: 1;
  height: auto;
  display: flex;
  flex-direction: column;
}

.news_high_panel.active .news-box {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.news_high_panel.active .news-box:nth-of-type(1) {
  transition: 0.2s all ease-in-out 0s;
  opacity: 1;
}

.news_high_panel.active .news-box:nth-of-type(2) {
  transition: 0.2s all ease-in-out 0.1s;
  opacity: 1;
}

.news_high_panel.active .news-box:nth-of-type(3) {
  transition: 0.2s all ease-in-out 0.2s;
  opacity: 1;
}

.news_high_panel.active .news-box:nth-of-type(4) {
  transition: 0.2s all ease-in-out 0.3s;
  opacity: 1;
}

.news_high_panel.active .news-box:nth-of-type(5) {
  transition: 0.2s all ease-in-out 0.4s;
  opacity: 1;
}

.tab_area .category-all {
  border: 2px solid #eb5c01;
  color: #eb5c01;
  font-weight: bold;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.tab_area .category-all.active {
  border: none;
  color: #FFF;
  background: #eb5c01;
}

.tab_area .category-jhs {
  border: 2px solid #eb5c01;
  color: #eb5c01;
  font-weight: bold;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.tab_area .category-jhs.active {
  border: none;
  color: #FFF;
  background: #eb5c01;
}

.tab_area .category-shs {
  border: 2px solid #eb5c01;
  color: #eb5c01;
  font-weight: bold;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.tab_area .category-shs.active {
  border: none;
  color: #FFF;
  background: #eb5c01;
}

.news-list {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.news-box {
  width: 24%;
}

.news-box a {
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 0 10px;
  overflow: hidden;
  background: #FFF;
}

.news-box a .category {
  width: 100%;
  display: flex;
}

.news-box a .category span {
  width: 50%;
  display: block;
  font-size: 1.2rem;
  padding: 5px;
  text-align: center;
  letter-spacing: normal;
  color: #FFF;
  font-weight: bold;
  background: #eb5c01;
}

.news-box a .category span + span {
  background: #b7b0ac;
}

.news-box a .day {
  font-weight: bold;
  width: 140px;
  letter-spacing: normal;
  padding: 5px;
}

.news-box a .text {
  padding: 10px;
  width: 100%;
  height: 5em;
  overflow: hidden;
}

.news-box a .text p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-box a .img {
  width: 100%;
  height: 11vw;
  overflow: hidden;
  background: url(../images/top_webp/topics-no-img.webp) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.news-box a .img img {
  width: 100%;
  height: auto;
  margin-left: 50%;
  transform: translateX(-50%);
  display: block;
}

.news-more {
  margin: 20px auto 0;
  text-align: right;
}

.news-more a {
  border-bottom: 1px solid #666;
  color: #666;
  position: relative;
}

.top-section-title {
  font-size: 5rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #eb5c01;
  margin-bottom: 20px;
  font-family: "Asap Condensed", sans-serif;
}

.top-section-title.white {
  color: #FFF;
}

.top-section-title.left {
  text-align: left;
}

.top-section-title.bg {
  color: #FFF;
  background: #eb5c01;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 30px;
  width: 100%;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.tac {
  text-align: center;
}

.tac .top-section-title {
  font-size: 5rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #eb5c01;
  margin-bottom: 20px;
  font-family: "Asap Condensed", sans-serif;
  border-bottom: 3px solid #eb5c01;
  margin-bottom: 20px;
  display: inline-block;
}

.top-main-visual {
  height: 100vh;
}

.junior .top-main-visual {
  background: url("../images/mainvisual/j-top-mainvisual.jpg") no-repeat center left;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.senior .top-main-visual {
  background: url("../images/mainvisual/s-top-mainvisual.webp") no-repeat center center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.top-main-visual {
  position: relative;
}

.top-main-visual .main-copy {
  color: #eb5c01;
  font-family: a-otf-ryumin-pr6n, serif;
  font-family: "Noto Serif JP", serif;
  background: url(../images/top_webp/top_icon_big.webp) no-repeat left 90%;
  background-size: 60%;
  width: 70%;
  height: 100%;
  margin: auto 0;
  font-size: 5.5vw;
  line-height: 1.6em;
  letter-spacing: 0.3em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16vh 4.5vw 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.top-main-visual .cms-emergency {
  position: relative;
  position: absolute;
  bottom: 100px;
  background: #FFF;
  width: 80%;
  left: 0;
  right: 0;
  margin: auto;
  padding: 20px;
  padding-left: 100px;
}

.top-main-visual .cms-emergency::before {
  position: absolute;
  content: "";
  left: -50px;
  top: 0;
  background: red;
  width: 100px;
  height: 100%;
}

.top-main-visual .cms-emergency::after {
  position: absolute;
  content: "";
  left: -50px;
  top: 0;
  background: url("../images/top_webp/top_icon01.webp") no-repeat center center;
  -webkit-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  width: 100px;
  height: 100%;
}

.top-main-visual .top-category-menu {
  position: absolute;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  bottom: 0;
  left: 0;
}

.top-main-visual .top-category-menu a {
  display: block;
  background: #eb5c01;
  width: 25%;
  padding: 10px;
  text-align: center;
  color: #FFF;
  border-right: 1px solid #FFF;
}

.top-main-visual .top-category-menu a:last-child {
  border-right: none;
}

.recommend-container {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 5vw;
  background-color: #f3f5e6;
  flex-wrap: wrap;
}

.recommend-container a {
  width: 25%;
  margin: 0 1vw;
}

.junior .recommend-container a, .senior .recommend-container a {
  width: 25%;
}

.recommend-container a .recommend-box {
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
}

.recommend-container a .recommend-box .box-title {
  background: #FFF;
  padding: 5px 14px;
  color: #666;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.recommend-container a .recommend-box .en-title {
  font-size: 3rem;
  color: #FFF;
  font-family: "Asap Condensed", sans-serif;
}

.recommend-container a .recommend-box .jp-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #FFF;
}

.recommend-container a .recommend-box img {
  width: 100%;
}

.recommend-title {
  width: 100%;
  text-align: center;
  font-size: 5rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  font-family: "Asap Condensed", sans-serif;
  color: #eb5c01;
}

.content-section.catch {
  padding: 0;
}

.top-catch-container {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: fixed;
  width: 80%;
  height: 80vh;
  top: 10vh;
  left: 10%;
  padding: 4vh 5%;
  background: rgb(255, 255, 255);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-event: none;
}

.top-catch-container .top-catch-copy {
  display: flex;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 3rem;
  color: #eb5c01;
  width: 48%;
  font-family: a-otf-ryumin-pr6n, serif;
  position: relative;
  letter-spacing: 0.5em;
  line-height: 1.8em;
  opacity: 0;
  transform: translateY(30px) translateX(0);
  -webkit-transform: translateY(30px) translateX(0);
}

.top-catch-container .top-catch-copy::before {
  content: "";
  width: 200px;
  height: 200px;
  margin-bottom: 5vh;
  background: url("../images/top_webp/top_icon_small.webp") no-repeat center center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.top-catch-container.show {
  opacity: 1;
  z-index: 1;
  transition: 1s all ease;
}

.top-catch-container.show.show2 {
  opacity: 0;
  transition: 1s all ease;
}

.top-catch-container.show .top-catch-copy {
  opacity: 1;
  transform: translateY(0) translateX(0);
  -webkit-transform: translateY(0) translateX(0);
  transition: 0.8s all ease 0.4s;
}

.top-catch-container .top-catch-text {
  display: flex;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 1.65rem;
  line-height: 2.6em;
  color: #eb5c01;
  width: 48%;
  font-family: a-otf-ryumin-pr6n, serif;
  opacity: 0;
  transform: translateY(30px) translateX(0);
  -webkit-transform: translateY(30px) translateX(0);
}

.top-catch-container .top-catch-text.show {
  opacity: 1;
  transform: translateY(0) translateX(0);
  -webkit-transform: translateY(0) translateX(0);
  transition: 0.8s all ease 0.6s;
}

.jhs-shs-container {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.jhs-shs-container a {
  width: 48%;
  position: relative;
}

.jhs-shs-container a .link-box {
  height: 400px;
  background: url("http://placehold.jp/250x250.png?text=DUMMY") no-repeat center center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 10px;
}

.jhs-shs-container a .link-box.jhs {
  background: url("../images/top_webp/top_img01.webp") no-repeat center top;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.jhs-shs-container a .link-box.shs {
  background: url("../images/top_webp/top_img02.webp") no-repeat center top;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.jhs-shs-container a .link-box .school-name {
  margin-top: -60px;
  background: #FFF;
  padding: 5px 10px;
  font-size: 3rem;
  color: #eb5c01;
  position: relative;
  width: 60%;
  margin-left: 40%;
  text-align: center;
}

.jhs-shs-container a .link-box .school-name.jhs {
  color: #eb5c01;
}

.jhs-shs-container a .link-box .school-name.shs {
  color: #eb5c01;
}

.jhs-shs-container a .link-box .school-name span {
  font-size: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.jhs-shs-container a .more-btn {
  margin-top: 0;
  background: #eb5c01;
  padding: 10px;
  text-align: center;
  color: #FFF;
  font-size: 2rem;
  width: 100%;
}

.jhs-shs-container a .more-btn.jhs {
  background: #eb5c01;
}

.jhs-shs-container a .more-btn.shs {
  background: #eb5c01;
}

.contents-container {
  display: flex;
  position: relative;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 60px;
}

.contents-container a.link-content01 {
  background: url("../images/top_webp/top_img07.webp") no-repeat center center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 32%;
}

.contents-container a.link-content02 {
  background: url("../images/top_webp/top_img08.webp") no-repeat center center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 32%;
}

.contents-container a.link-content03 {
  background: url("../images/top_webp/top_img27.webp") no-repeat left center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 32%;
}

.contents-container a .club-btn {
  padding: 10px;
  height: 300px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

.contents-container a .club-btn .click-area {
  margin-left: 55%;
  width: 45%;
  background: #FFF;
  padding: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.contents-container a .club-btn .click-area .click-title {
  font-size: 2rem;
  text-align: center;
  color: #eb5c01;
}

.contents-container a .club-btn .click-area .click-title span {
  font-size: 1.6rem;
  display: block;
}

.contents-container a .club-btn .click-area .click-title.jhs {
  color: #eb5c01;
}

.contents-container a .club-btn .click-area .click-title.shs {
  color: #eb5c01;
}

.contents-container a .club-btn .click-area .click {
  border-bottom: 2px solid #eb5c01;
  display: inline-block;
  font-size: 2rem;
  color: #eb5c01;
}

.contents-container a .club-btn .click-area .click.jhs {
  border-bottom: 2px solid #eb5c01;
  color: #eb5c01;
}

.contents-container a .club-btn .click-area .click.shs {
  border-bottom: 2px solid #eb5c01;
  color: #eb5c01;
}

.contents-container .sns-link-list {
  display: flex;
  flex-direction: column;
  width: 32%;
}

.contents-container .sns-link-list a.link-content03 {
  background: url("../images/top_webp/top_img24.webp") no-repeat center center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.contents-container .sns-link-list a.link-content04 {
  background: url("../images/top_webp/top_img23.webp") no-repeat center center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.contents-container .sns-link-list a.link-content05 {
  background: url("../images/top_webp/top_img25.webp") no-repeat center center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.contents-container .sns-link-list a .sns-btn {
  padding: 10px;
  height: 100px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.contents-container .sns-link-list a .sns-btn .click-area {
  margin-left: 55%;
  width: 45%;
  height: 100%;
  background: #FFF;
  padding: 10px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.contents-container .sns-link-list a .sns-btn .click-area .click-title {
  font-size: 1.6rem;
  line-height: 1.8rem;
  text-align: center;
  color: #eb5c01;
}

.contents-container .sns-link-list a .sns-btn .click-area .click-title span {
  font-size: 1.6rem;
  display: block;
}

.contents-container .sns-link-list a .sns-btn .click-area .click-title.jhs {
  color: #eb5c01;
}

.contents-container .sns-link-list a .sns-btn .click-area .click-title.shs {
  color: #eb5c01;
}

.contents-container .sns-link-list a .sns-btn .click-area .click {
  border-bottom: 2px solid #eb5c01;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.8rem;
  color: #eb5c01;
}

.contents-container .sns-link-list a .sns-btn .click-area .click.jhs {
  border-bottom: 2px solid #eb5c01;
  color: #eb5c01;
}

.contents-container .sns-link-list a .sns-btn .click-area .click.shs {
  border-bottom: 2px solid #eb5c01;
  color: #eb5c01;
}

.contents02-container {
  display: flex;
}

.contents02-container > * {
  width: 30%;
  margin-right: 5%;
  position: relative;
}

.contents02-container > *:last-child {
  margin-right: 0;
}

.contents02-container > * .contents02-en-title {
  font-size: 2rem;
  border-bottom: 1px solid;
  text-align: right;
  transform: translateX(-105%) translateY(50%) rotate(-90deg);
  transform-origin: right center;
  font-family: a-otf-ryumin-pr6n, serif;
}

.contents02-container > * .contents02-img img {
  width: 100%;
}

.contents02-container > * .contents02-jp-title {
  color: #eb5c01;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
}

.contents02-container > * .contents02-jp-title.junior {
  color: #eb5c01;
}

.contents02-container > * .contents02-jp-title.all {
  color: #000;
}

.contents02-container > * .contents02-jp-title.new-school {
  color: #002882;
}

.contents02-container > *.new-school .contents02-img {
  display: block;
  position: relative;
  z-index: 0;
}

.contents02-container > *.new-school .contents02-img p.contents02-new-school-title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  z-index: 1;
  letter-spacing: 0.14em;
  line-height: 1.5em;
  color: #fff;
  font-weight: 800;
  text-align: center;
  font-size: calc(1.3rem + 0.8vw);
  transform: translateY(-50%) translateX(-50%);
}

.contents02-container .uniform-box {
  display: flex;
  flex-direction: column;
}

.contents02-container .uniform-box a {
  display: block;
}

.contents02-container .uniform-box a .contents02-jp-title {
  color: #eb5c01;
}

.contents02-container .uniform-box a:nth-of-type(2) {
  margin-top: auto;
}

.contents02-container .uniform-box a:nth-of-type(2) .contents02-jp-title {
  color: #eb5c01;
}

.top-footer-slider {
  margin-bottom: 100px;
}

.top-footer-slider a.slider-box {
  width: 33vw;
  background: #EDEDED;
  padding: 20px;
  margin-right: 10px;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}

.top-footer-slider a.slider-box::after {
  position: absolute;
  content: "READ MORE";
  width: 30%;
  height: auto;
  background: #cccccc;
  padding: 5px 0;
  bottom: 0;
  right: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}

.top-footer-slider a.slider-box .slider-img {
  width: 48%;
}

.top-footer-slider a.slider-box .slider-img img {
  width: 100%;
}

.top-footer-slider a.slider-box.only-img {
  width: 100%;
  overflow: hidden;
  padding: 20px;
}

.top-footer-slider a.slider-box.only-img::after {
  content: none;
}

.top-footer-slider a.slider-box.only-img .img-box {
  width: 100%;
  height: 100%;
}

.top-footer-slider a.slider-box.only-img .img-box img {
  width: 100%;
}

.top-footer-slider a.slider-box .slider-text {
  width: 48%;
  font-size: 2rem;
}

.top-footer-slider a.slider-box .slider-text span {
  font-size: 1.6rem;
  display: block;
}

.slick-dots {
  position: absolute;
  bottom: -30px;
  width: 40%;
  margin: 0 30%;
  display: flex;
  justify-content: space-between;
}

.slick-dots li {
  width: 14%;
  height: 5px;
  background: #FFF;
  border: 1px solid #eb5c01;
}

.slick-dots li button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: -9999px;
  font-size: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.slick-dots li.slick-active {
  background: #eb5c01;
}

.bg-green {
  background: rgba(235, 92, 1, 0.3);
}

.bg-global {
  padding: 0;
}

.bg-global a {
  width: 100%;
  height: 100%;
  display: block;
}

.bg-global a img {
  width: 100%;
}

.bg-grey {
  background: #EDEDED;
  margin-bottom: 100px;
}

.bg-orange {
  margin-bottom: 100px;
}

.bg-sq-green {
  position: relative;
  margin-top: 5%;
}

.bg-gradation {
  background: #ede4d8;
  position: relative;
  overflow: hidden;
}

.bg-gradation::before {
  content: none;
}

.junior .top-category-menu,
.senior .top-category-menu {
  justify-content: space-between;
}

.junior .top-category-menu a,
.senior .top-category-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  width: 13%;
  margin-right: 0.5%;
  padding: 10px;
  text-align: center;
  color: #000;
  border-right: none;
  letter-spacing: normal;
}

.junior .top-category-menu a.junior,
.senior .top-category-menu a.junior {
  background: #eb5c01;
  color: #fff;
}

.junior .top-category-menu a.senior,
.senior .top-category-menu a.senior {
  background: #888888;
  width: 55px;
  color: #fff;
  margin-right: 0;
}

.junior .tab_area li,
.senior .tab_area li {
  width: 14%;
  background: #ccc8c8;
  color: #fff;
  cursor: pointer;
}

.junior .tab_area li.active,
.senior .tab_area li.active {
  background: #eb5c01;
}

.junior .news-box a,
.senior .news-box a {
  background: #ede4d8;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.junior .news-box a .day,
.senior .news-box a .day {
  width: 150px;
  display: inline-flex;
  align-items: center;
  padding-top: 10px;
  padding-left: 10px;
}

.junior .news-box a .category,
.senior .news-box a .category {
  width: calc(100% - 160px);
  background: #fff;
  color: #000;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-right: 10px;
}

.senior .tab_area li {
  width: 16.5%;
}

.junior .tab_area li {
  width: 19.5%;
}

.top-topics {
  background: #eb5c01;
  padding-top: 0;
}

.top-topics h3.title {
  font-size: 3.5vw;
  letter-spacing: 0.3em;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-family: "Asap Condensed", sans-serif;
  padding: 2vw 0;
  margin-bottom: 4vw;
  background: #eb5c01;
}

.top-topics .content-inner {
  background: #fff;
  padding: 5% 5% 1.5%;
  box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.2);
}

.top-topics .topics-link {
  padding-top: 31%;
  position: relative;
  display: block;
}

.top-topics .topics-link span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 2.2vw;
  width: 100%;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.junior .top-category-menu a.junior {
  background: #eb5c01;
}

.junior .top-category-menu a.senior {
  background: #888888;
}

.junior .tab_area li.active {
  background: #eb5c01;
}

.junior .news-box a {
  background: #ede4d8;
}

.junior .top-topics {
  background: #f9e6be;
}

.junior .top-topics .topics-link.link01 {
  background: url(../junior/images/j-top-img01.jpg) no-repeat center center;
  background-size: cover;
}

.junior .top-topics .topics-link.link02 {
  background: url(../junior/images/j-top-img02.jpg) no-repeat center center;
  background-size: cover;
}

.junior .top-topics .topics-link.link03 {
  background: url(../junior/images/j-top-img03.jpg) no-repeat center center;
  background-size: cover;
}

.junior .top-topics .topics-link.link04 {
  background: url(../junior/images/j-top-img04.jpg) no-repeat center center;
  background-size: cover;
}

.junior .top-topics .topics-link.link05 {
  background: url(../junior/images/j-top-img05.jpg) no-repeat center center;
  background-size: cover;
}

.junior .top-topics .topics-link.link06 {
  background: url(../junior/images/j-top-img06.jpg) no-repeat center center;
  background-size: cover;
}

.senior .top-category-menu a.senior {
  background: #eb5c01;
  width: 13%;
}

.senior .top-category-menu a.junior {
  background: #888888;
  width: 55px;
  margin-right: 0;
}

.senior .tab_area li.active {
  background: #eb5c01;
}

.senior .news-box a {
  background: #ede4d8;
}

.senior .top-topics {
  background: #f9e6be;
}

.senior .top-topics .topics-link.link01 {
  background: url(../senior/images/s-top-topics01.webp) no-repeat center center;
  background-size: cover;
}

.senior .top-topics .topics-link.link02 {
  background: url(../senior/images/s-top-topics02.jpg) no-repeat center center;
  background-size: cover;
}

.senior .top-topics .topics-link.link03 {
  background: url(../senior/images/s-top-topics03.jpg) no-repeat center center;
  background-size: cover;
}

.senior .top-topics .topics-link.link04 {
  background: url(../senior/images/s-top-topics04.jpg) no-repeat center center;
  background-size: cover;
}

.senior .top-topics .topics-link.link05 {
  background: url(../senior/images/s-top-topics05.jpg) no-repeat center center;
  background-size: cover;
}

.senior .top-topics .topics-link.link06 {
  background: url(../senior/images/s-top-topics06.jpg) no-repeat center center;
  background-size: cover;
}

.goukaku_bnr-container {
  position: absolute;
  top: 5vh;
  left: 0;
  width: 25vw;
  max-width: 400px;
  height: 10vw;
}

.goukaku_bnr-container img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .video-wrap video {
    height: 70vh;
    min-height: 70vh;
  }
  .video-wrap .top-slider {
    height: 100vh;
  }
  .video-wrap .top-slider li {
    height: 100vh;
    position: relative;
  }
  .video-wrap .top-slider li img {
    width: 100vw;
    min-width: 100vw;
    height: 99vh;
    min-height: inherit;
    object-fit: cover;
    object-position: 50% 50%;
    transform: translateY(0%) translateX(-50%);
    top: 0;
  }
  .header-container > a:last-child {
    position: fixed;
    top: 20px;
    left: 20px;
    width: calc(100% - 150px);
    max-width: 400px;
    display: block;
    z-index: 10;
  }
  .header-container > a .school-logo {
    padding: 0;
  }
  .junior.top .header-container > a, .senior.top .header-container > a {
    display: none;
  }
  .top-op-content .top-op-logo {
    width: 17vw;
  }
  .top-op-content p {
    width: calc(40% - 40px);
    top: 53%;
    right: 12%;
  }
  .top-op-content p img {
    width: 90%;
    margin: 0 16%;
  }
  li.slick-slide .main-copy-content {
    top: 43vh;
    width: 100%;
    transform: translateY(-50%) translateX(-50%);
  }
  li.slick-slide .main-copy-content .bg-flower p.main-text {
    font-size: 8vw;
  }
  li.slick-slide .main-copy-content .bg-flower p.main-text.middle {
    font-size: 5vw;
  }
  li.slick-slide.slick-active .main-copy-content .bg-flower p.main-text {
    margin: 0 0 0 8vw;
  }
  li.slick-slide.slick-active .main-copy-content .bg-flower::before {
    width: 70vw;
    height: 70vw;
  }
  .top-bnr-content {
    bottom: 55px;
    right: 8vw;
    width: 85%;
  }
  .top-bnr-content ul.top-bnr-slider .slick-dots {
    margin: 0 30%;
  }
  .news-tab {
    width: 100%;
  }
  .news-tab .tab_area {
    flex-wrap: wrap;
    justify-content: unset;
    gap: 0 4.5px;
    margin-bottom: 10px;
  }
  .news-tab .tab_area li {
    width: calc(33.3333% - 3px);
    padding: 5px;
    font-size: 1rem;
  }
  .news-list {
    flex-wrap: wrap;
  }
  .news-box {
    width: 49%;
    margin-bottom: 10px;
  }
  .news-box a .img {
    width: 100%;
    height: 38vw;
  }
  .news-box a .img img {
    height: 100%;
  }
  .top-section-title {
    font-size: 3rem;
  }
  .top-section-title.bg {
    padding: 20px;
    margin-bottom: -20px;
  }
  .tac .top-section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .top-main-visual {
    height: 100vh;
    position: relative;
  }
  .junior .top-main-visual {
    height: 70vh;
    background: url("../images/mainvisual/j-top-mainvisual-res.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  .senior .top-main-visual {
    height: 70vh;
    background: url("../images/mainvisual/s-top-mainvisual-res.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  .top-main-visual .main-copy {
    background: url(../images/top/top_icon_big.png) no-repeat 10% bottom;
    background-size: 44%;
    width: 100%;
    height: calc(70vh - 5vw);
    font-size: 9.5vw;
    padding: 0;
    margin: 0 auto;
    align-items: flex-end;
    justify-content: center;
  }
  .top-main-visual .cms-emergency {
    bottom: 20px;
    width: 100%;
    padding: 10px;
    padding-left: 60px;
  }
  .top-main-visual .cms-emergency::before {
    left: 0;
    width: 50px;
  }
  .top-main-visual .cms-emergency::after {
    left: 0;
    width: 40px;
  }
  .top-main-visual .top-category-menu {
    display: none;
  }
  .recommend-container {
    flex-wrap: wrap;
  }
  .recommend-container a {
    width: 100%;
    margin-bottom: 4px;
  }
  .junior .recommend-container a, .senior .recommend-container a {
    width: 100%;
  }
  .recommend-title {
    font-size: 3rem;
  }
  .jhs-shs-container {
    flex-wrap: wrap;
  }
  .jhs-shs-container a {
    width: 100%;
    margin-bottom: 20px;
  }
  .jhs-shs-container a .link-box {
    height: 300px;
  }
  .jhs-shs-container a .link-box.jhs {
    background: url("../images/top_webp/top_img01.webp") no-repeat center center;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  .jhs-shs-container a .link-box.shs {
    background: url("../images/top_webp/top_img02.webp") no-repeat center 20%;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  .jhs-shs-container a .link-box .school-name {
    font-size: 3rem;
    width: 80%;
  }
  .jhs-shs-container a .link-box .school-name span {
    font-size: 1.4rem;
  }
  .contents-container {
    margin-top: 0;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .contents-container a {
    margin-bottom: 10px;
  }
  .contents-container a.link-content01 {
    width: 100%;
  }
  .contents-container a.link-content02 {
    width: 100%;
  }
  .contents-container a.link-content03 {
    width: 100%;
  }
  .contents-container a .club-btn {
    height: 150px;
  }
  .contents-container a .club-btn .click-area .click-title {
    font-size: 2rem;
  }
  .contents-container a .club-btn .click-area .click-title span {
    font-size: 1.4rem;
  }
  .contents-container a .club-btn .click-area .click {
    font-size: 1.4rem;
  }
  .contents-container .sns-link-list {
    width: 100%;
  }
  .contents02-container > * .contents02-en-title {
    font-size: 1rem;
  }
  .contents02-container > * .contents02-jp-title {
    font-size: 1rem;
    letter-spacing: normal;
  }
  .contents02-container > *.new-school .contents02-img p.contents02-new-school-title {
    font-size: calc(0.9rem + 0.2vw);
  }
  .top-footer-slider a.slider-box {
    padding: 5px 10px 20px;
    flex-wrap: wrap;
    height: 200px;
  }
  .top-footer-slider a.slider-box::after {
    width: 80%;
    padding: 2px;
    font-size: 1rem;
  }
  .top-footer-slider a.slider-box .slider-img {
    width: 60%;
    margin: 0 20%;
  }
  .top-footer-slider a.slider-box .slider-img img {
    width: 100%;
  }
  .top-footer-slider a.slider-box .slider-text {
    width: 100%;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 5px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .top-footer-slider a.slider-box .slider-text span {
    font-weight: bold;
    font-size: 1rem;
  }
  .bg-grey {
    background: #EDEDED;
    margin-bottom: 50px;
  }
  .bg-orange {
    margin-bottom: 50px;
  }
  .bg-gradation {
    padding: 0;
    z-index: 0;
  }
  .junior .news-box a .category,
  .senior .news-box a .category {
    width: calc(100% - 20px);
    margin: 0 10px;
  }
  .top-topics h3.title {
    font-size: 3rem;
    padding: 10% 0;
    margin-bottom: 2vh;
  }
  .top-topics .topics-link {
    width: 49%;
    padding-top: 30%;
    margin-right: 2%;
  }
  .top-topics .topics-link:nth-child(2n) {
    margin-right: 0;
  }
  .top-topics .topics-link span {
    width: 90%;
    text-align: center;
    font-size: 1.6rem;
  }
  .goukaku_bnr-container {
    position: absolute;
    top: 24vw;
    left: 0;
    width: 60vw;
    height: 20vw;
  }
  .goukaku_bnr-container img {
    width: 100%;
  }
}
/*# sourceMappingURL=maps/top.css.map */
