@charset "UTF-8";
/* 動き設定 */
@-webkit-keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
  100% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
  100% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.vegas-animation-kenburns {
  -webkit-animation: kenburns ease-out forwards;
  animation: kenburns ease-out forwards;
}

@-webkit-keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
/*　上に上がる動き　*/
@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/*　タブ切り替え用　*/
@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*　エフェクト　*/
@-webkit-keyframes wave {
  50% {
    top: 55%;
  }
  75% {
    top: 50%;
  }
  100% {
    top: 55%;
  }
}
@keyframes wave {
  50% {
    top: 55%;
  }
  75% {
    top: 50%;
  }
  100% {
    top: 55%;
  }
}
/*時間差(秒)※動的に出力する箇所はnth-of-type使用*/
.d1 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.d2 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.d3 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.d4 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.d5 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.d6 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.d7 {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.d8 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.item {
  opacity: 0;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  transition: 0.7s;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.item.sil.is-show {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

.item.sir.is-show {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

.item.fiu.is-show {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.item.fid.is-show {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

.item.fi.is-show {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

.page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

/* Scss Document */
main {
  overflow: hidden;
}
@media (min-width: 769px) {
  main {
    padding-top: 50px;
  }
}
main::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 100%;
}
main .topSection .inner {
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}
main .topSection .ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
  font-size: 4rem;
  position: relative;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 40px;
  letter-spacing: 0.2em;
}
@media (min-width: 769px) {
  main .topSection .ttl {
    text-align: left;
  }
}
main .topSection .ttl span {
  display: block;
  font-size: 1.2rem;
  color: #ccc;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  main .topSection .ttl span {
    margin-left: 1em;
    display: inline-block;
  }
}
main .topSection .ttl::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgb(87, 255, 115) 0%, rgb(125, 185, 255) 100%);
}

body {
  font-size: 1.6rem;
}
@media (min-width: 769px) {
  body {
    font-size: 1.8rem;
  }
}

.hero {
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 769px) {
  .hero {
    max-height: 900px;
    height: 900px;
    width: 100%;
    overflow: hidden;
  }
}
.hero .hero__eyecatch {
  width: 100%;
  z-index: -1;
}
.hero .hero__eyecatch img {
  width: 100%;
  height: auto;
  pointer-events: none;
}
@media (min-width: 769px) {
  .hero .hero__eyecatch img {
    height: 900px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero .hero__catchcopy {
  position: absolute;
  top: 8%;
  left: 5%;
  width: 87%;
  font-size: 7vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #000;
  line-height: 1.35;
}
@media (min-width: 769px) {
  .hero .hero__catchcopy {
    max-width: 40vw;
    top: unset;
    bottom: 12%;
    left: 14%;
    font-size: clamp(2.2rem, -4.483px + 3.448vw, 3rem);
    color: #ffffff;
    line-height: 1.2;
  }
}
@media (min-width: 1025px) {
  .hero .hero__catchcopy {
    font-size: clamp(2.4rem, -2.667px + 3.472vw, 6.4rem);
  }
}
.hero .hero__catchcopy span {
  display: block;
}
.hero .hero__catchcopy .catchcopy__en {
  font-size: 5vw;
}
@media (min-width: 769px) {
  .hero .hero__catchcopy .catchcopy__en {
    font-size: clamp(1.8rem, -1.667px + 2.561vw, 4.75rem);
  }
}
.hero .hero__catchcopy .bg {
  display: block;
  font-size: 5vw;
  font-family: arial Narrow, sans-serif;
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.12em;
  background: linear-gradient(to right, rgb(87, 255, 115) 0%, rgb(0, 84, 187) 60%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0px 0px 3px rgba(36, 64, 73, 0.2);
}
@media (min-width: 769px) {
  .hero .hero__catchcopy .bg {
    background: linear-gradient(to right, rgb(87, 255, 115) 0%, rgb(0, 84, 187) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    padding-top: 10px;
    font-size: clamp(1.8rem, -1.667px + 2.561vw, 4.75rem);
    text-shadow: none;
  }
}
.hero .hero__catchcopy .text_green {
  color: #7fff45;
  text-shadow: 0px 0px 3px rgba(36, 64, 73, 0.3);
}
@media (min-width: 769px) {
  .hero .hero__catchcopy .text_green {
    text-shadow: none;
    color: #4ef400;
  }
}
.hero .hero__catchcopy .text_blue {
  color: #0086ff;
}
.hero .hero__catchcopy img {
  width: 90%;
}
@media (min-width: 769px) {
  .hero .hero__catchcopy img {
    max-width: 580px;
  }
}
.hero .slick-dots {
  text-align: left;
  bottom: -28px;
  left: -6px;
}
.hero .slick-dots li {
  width: clamp(10px, 6.183px + 1.018vw, 14px);
  height: clamp(10px, 6.183px + 1.018vw, 14px);
  margin: 0 clamp(4px, 0.183px + 1.018vw, 8px);
}
@media (min-width: 769px) {
  .hero .slick-dots {
    bottom: clamp(-50px, -30px - 20 * (100vw - 768px) / 1152, -30px);
  }
}
.hero .hero__link {
  padding: 20px;
}
@media (min-width: 769px) {
  .hero .hero__link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    bottom: 11%;
    left: 14%;
    padding: 0;
  }
}
.hero .hero__link a {
  display: inline-block;
  width: 100%;
}
@media (min-width: 769px) {
  .hero .hero__link a {
    width: 46%;
  }
}
.hero .hero__link a img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .hero .hero__link a img {
    box-shadow: 7px 7px 14px rgba(0, 0, 0, 0.04);
  }
}
.hero .hero__link a:first-of-type {
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .hero .hero__link a:hover img {
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.15);
  }
}
.hero .hero__linkList {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 769px) {
  .hero .hero__linkList {
    padding: 0;
    position: absolute;
    left: auto;
    bottom: 6%;
    max-width: 630px;
  }
}
.hero .hero__linkList li {
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .hero .hero__linkList li {
    width: 48.5%;
  }
}
.hero .hero__linkList li.junior {
  order: 0;
}
.hero .hero__linkList li.senior {
  order: 1;
}
.hero .hero__linkList li.jexam {
  order: 2;
}
.hero .hero__linkList li.sexam {
  order: 3;
}
@media (min-width: 769px) {
  .hero .hero__linkList li.sexam {
    order: 3;
  }
}
.hero .hero__linkList li.jappli {
  order: 3;
}
@media (min-width: 769px) {
  .hero .hero__linkList li.jappli {
    order: 4;
  }
}
.hero .hero__linkList li.sappli {
  order: 5;
}
.hero .hero__linkList li.-inv {
  display: none;
}
@media (min-width: 769px) {
  .hero .hero__linkList li.-inv {
    display: block;
    height: 79px;
  }
}
.hero .hero__linkList .junior,
.hero .hero__linkList .senior {
  width: 48.5%;
  position: relative;
  border-radius: 4px;
  height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .hero .hero__linkList .junior,
.hero .hero__linkList .senior {
    height: 100px;
    border-radius: 10px 10px 0 0;
  }
}
.hero .hero__linkList .junior a,
.hero .hero__linkList .senior a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.3rem;
}
.hero .hero__linkList .junior a .with_circle,
.hero .hero__linkList .senior a .with_circle {
  font-size: 1.6rem;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .hero .hero__linkList .junior a .with_circle,
.hero .hero__linkList .senior a .with_circle {
    font-size: 2rem;
  }
}
.hero .hero__linkList .junior a::after,
.hero .hero__linkList .senior a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -23px;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 25px;
  border: solid 10px #fff;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media (min-width: 769px) {
  .hero .hero__linkList .junior a:hover::after,
.hero .hero__linkList .senior a:hover::after {
    bottom: 10px;
  }
}
@media (min-width: 769px) {
  .hero .hero__linkList .junior a:hover .with_circle,
.hero .hero__linkList .senior a:hover .with_circle {
    transform: translateY(-25px);
  }
}
@media (min-width: 769px) {
  .hero .hero__linkList .junior a:hover,
.hero .hero__linkList .senior a:hover {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.12);
  }
}
.hero .hero__linkList .junior a {
  background: #3bc700;
}
.hero .hero__linkList .senior a {
  background: #0054bb;
}
.hero .hero__linkList .jexam a,
.hero .hero__linkList .sexam a {
  font-size: 2rem;
  letter-spacing: 0.18rem;
}
.hero .hero__linkList .jappli a,
.hero .hero__linkList .sappli a {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
}
.hero .hero__linkList .jappli a .item_name,
.hero .hero__linkList .sappli a .item_name {
  font-size: 2.4rem;
}
@media (min-width: 769px) {
  .hero .hero__linkList .jappli a::before,
.hero .hero__linkList .sappli a::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -12px;
    width: 100%;
    height: 12px;
    border-radius: 0 0 10px 10px;
  }
}
@media (min-width: 769px) {
  .hero .hero__linkList .solo a::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -12px;
    width: 100%;
    height: 12px;
    border-radius: 0 0 10px 10px;
  }
}
.hero .hero__linkList .jexam,
.hero .hero__linkList .sexam,
.hero .hero__linkList .jappli,
.hero .hero__linkList .sappli {
  width: 100%;
}
@media (min-width: 769px) {
  .hero .hero__linkList .jexam,
.hero .hero__linkList .sexam,
.hero .hero__linkList .jappli,
.hero .hero__linkList .sappli {
    width: 48.5%;
  }
}
.hero .hero__linkList .jexam a,
.hero .hero__linkList .sexam a,
.hero .hero__linkList .jappli a,
.hero .hero__linkList .sappli a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 0;
  width: 100%;
  background: #fff;
  border: solid 1px #ccc;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .hero .hero__linkList .jexam a,
.hero .hero__linkList .sexam a,
.hero .hero__linkList .jappli a,
.hero .hero__linkList .sappli a {
    border: none;
  }
}
.hero .hero__linkList .jexam a .label,
.hero .hero__linkList .sexam a .label,
.hero .hero__linkList .jappli a .label,
.hero .hero__linkList .sappli a .label {
  width: 5.2em;
  margin-right: 1em;
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  display: inline-block;
  line-height: 28px;
  letter-spacing: 0;
  padding: 0;
}
.hero .hero__linkList .jexam a::after,
.hero .hero__linkList .sexam a::after,
.hero .hero__linkList .jappli a::after,
.hero .hero__linkList .sappli a::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  width: 13px;
  height: 13px;
  border-top: 2px solid #aaa;
  border-right: 2px solid #aaa;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media (min-width: 769px) {
  .hero .hero__linkList .jexam a:hover::after,
.hero .hero__linkList .sexam a:hover::after,
.hero .hero__linkList .jappli a:hover::after,
.hero .hero__linkList .sappli a:hover::after {
    right: 10px;
  }
}
@media (min-width: 769px) {
  .hero .hero__linkList .jexam a:hover,
.hero .hero__linkList .sexam a:hover,
.hero .hero__linkList .jappli a:hover,
.hero .hero__linkList .sappli a:hover {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.12);
  }
}
.hero .hero__linkList .jexam a .label,
.hero .hero__linkList .jappli a .label,
.hero .hero__linkList .jappli a::before,
.hero .hero__linkList .jexam a::before {
  background: #3bc700;
}
.hero .hero__linkList .sexam a .label,
.hero .hero__linkList .sappli a .label,
.hero .hero__linkList .sappli a::before,
.hero .hero__linkList .sexam a::before {
  background: #0054bb;
}

.important__news {
  padding: 70px 20px 20px;
  margin: -70px auto 90px;
  max-width: 1400px;
  width: 100%;
}
@media (min-width: 769px) {
  .important__news {
    margin-bottom: 105px;
  }
}
.important__news div {
  border: solid 2px #ccc;
}
@media (min-width: 769px) {
  .important__news div {
    display: flex;
    flex-wrap: wrap;
    border: solid 3px #f7f7f7;
  }
}
.important__news div h2 {
  padding: 20px 0;
  font-size: 1.8rem;
  text-align: center;
  background: #F1F1F1;
  font-weight: bold;
}
@media (min-width: 769px) {
  .important__news div h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    font-size: clamp(1.8rem, 2vw, 2.2rem);
  }
}
.important__news div ul {
  padding: 35px 15px;
}
@media (min-width: 769px) {
  .important__news div ul {
    width: 80%;
  }
}
.important__news div ul li {
  margin-bottom: 20px;
}
.important__news div ul li a {
  color: #e32222;
  position: relative;
  font-weight: bold;
}
@media (min-width: 769px) {
  .important__news div ul li a {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
  }
  .important__news div ul li a::after {
    content: "";
    position: absolute;
    top: 42%;
    right: 13px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #aaa;
    border-right: 2px solid #aaa;
    transform: rotate(45deg);
    transition: all 0.3s;
  }
}
.important__news div ul li a .label {
  font-size: 1.4rem;
  background: #e32222;
  color: #fff;
  padding: 2px 27px;
  white-space: nowrap;
  margin-right: 10px;
}
.important__news div ul li a .date {
  font-size: 1.8rem;
  color: #000;
  margin-right: 1em;
}
.important__news div ul li a p {
  width: 100%;
  font-size: 1.6rem;
  text-decoration: underline;
  padding-top: 18px;
  position: relative;
  word-break: break-all;
}
@media (min-width: 769px) {
  .important__news div ul li a p {
    display: inline-block;
    width: 70%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-top: 0;
  }
}
.important__news div ul li a p::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e32222;
  transform: scale(0, 1);
  transform-origin: bottom left;
  transition: 0.5s;
  z-index: 1;
}
.important__news div ul li a:hover::after {
  right: 8px;
}
.important__news div ul li:last-of-type {
  margin-bottom: 0;
}

.news {
  margin-bottom: 100px;
}
.news .inner ul {
  margin: 0 auto 30px;
}
@media (min-width: 769px) {
  .news .inner ul {
    max-width: 1200px;
  }
}
.news .inner ul li {
  border-bottom: dotted 2px #ccc;
}
.news .inner ul li a {
  display: block;
  padding: 12px 0;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .news .inner ul li a {
    padding: 36px 3vw;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
  }
}
.news .inner ul li a .label {
  margin: 0 2em;
}
.news .inner ul li a p {
  padding-top: 12px;
}
@media (min-width: 769px) {
  .news .inner ul li a p {
    display: inline-block;
    width: 75%;
    padding-top: 0;
  }
}
.news .inner ul li a:hover {
  background: #f7f7f7;
}
.news .inner ul li a:hover p {
  text-decoration: underline;
}

.topics {
  margin-bottom: 100px;
}
.topics .inner .tab__set {
  position: relative;
}
.topics .inner .tab__set .ttlWrap {
  position: relative;
}
.topics .inner .tab__set .ttlWrap .ttl::after {
  content: none;
}
.topics .inner .tab__set .ttlWrap::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: calc(100% + 40px);
  margin: 0 -20px;
  height: 3px;
  background: linear-gradient(90deg, rgb(87, 255, 115) 0%, rgb(125, 185, 255) 100%);
}
@media (min-width: 769px) {
  .topics .inner .tab__set .ttlWrap::after {
    width: 100%;
    margin: 0;
  }
}
.topics .inner .tab__category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1025px) {
  .topics .inner .tab__category {
    position: absolute;
    right: 0;
    top: 20px;
    width: 635px;
  }
}
.topics .inner .tab__category li {
  width: 32%;
  text-align: center;
  border-radius: 11px 11px 0 0;
}
.topics .inner .tab__category li:not(:last-of-type) {
  margin-right: 2px;
}
@media (min-width: 769px) {
  .topics .inner .tab__category li {
    width: 30%;
    max-width: 280px;
  }
  .topics .inner .tab__category li:not(:last-of-type) {
    margin-right: 4px;
  }
}
.topics .inner .tab__category li span {
  display: inline-block;
  line-height: 46px;
  height: 44px;
  width: 100%;
  border-radius: 9px 9px 0 0;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.topics .inner .tab__category .all {
  color: #000;
  border: solid 1px #777;
}
@media (min-width: 1025px) {
  .topics .inner .tab__category .all {
    border-bottom: none;
  }
}
.topics .inner .tab__category .all.active span, .topics .inner .tab__category .all:hover span {
  background: #999;
  color: #fff;
}
.topics .inner .tab__category .common {
  color: #f39c00;
  border: solid 1px #f39c00;
}
@media (min-width: 1025px) {
  .topics .inner .tab__category .common {
    border-bottom: none;
  }
}
.topics .inner .tab__category .common.active span, .topics .inner .tab__category .common:hover span {
  background: #f39c00;
  color: #fff;
}
.topics .inner .tab__category .junior {
  color: #3bc700;
  border: solid 1px #3bc700;
}
@media (min-width: 1025px) {
  .topics .inner .tab__category .junior {
    border-bottom: none;
  }
}
.topics .inner .tab__category .junior.active span, .topics .inner .tab__category .junior:hover span {
  background: #3bc700;
  color: #fff;
}
.topics .inner .tab__category .senior {
  color: #0054bb;
  border: solid 1px #0054bb;
}
@media (min-width: 1025px) {
  .topics .inner .tab__category .senior {
    border-bottom: none;
  }
}
.topics .inner .tab__category .senior.active span, .topics .inner .tab__category .senior:hover span {
  background: #0054bb;
  color: #fff;
}
.topics .inner .tab__category .notice {
  color: #e32222;
  border: solid 1px #e32222;
}
@media (min-width: 1025px) {
  .topics .inner .tab__category .notice {
    border-bottom: none;
  }
}
.topics .inner .tab__category .notice.active span, .topics .inner .tab__category .notice:hover span {
  background: #e32222;
  color: #fff;
}
.topics .inner .tab__category .divi {
  color: #299C6A;
  border: solid 1px #299C6A;
}
@media (min-width: 1025px) {
  .topics .inner .tab__category .divi {
    border-bottom: none;
  }
}
.topics .inner .tab__category .divi.active span, .topics .inner .tab__category .divi:hover span {
  background: #299C6A;
  color: #fff;
}
.topics .inner .tab__category .default {
  color: #000;
  border: solid 1px #777;
}
@media (min-width: 1025px) {
  .topics .inner .tab__category .default {
    border-bottom: none;
  }
}
.topics .inner .tab__category .default.active span, .topics .inner .tab__category .default:hover span {
  background: #999;
  color: #fff;
}
.topics .inner .tab__content {
  display: none;
  margin-bottom: 30px;
}
.topics .inner .tab__content.is-active {
  display: block;
}
@media (min-width: 1025px) {
  .topics .inner .tab__content.is-active {
    display: flex;
    flex-wrap: wrap;
  }
}
.topics .inner .tab__content li {
  border-bottom: dotted 1px #ccc;
}
@media (min-width: 1025px) {
  .topics .inner .tab__content li {
    width: 25%;
    padding: 10px;
    border: none;
    margin-bottom: 30px;
  }
  .topics .inner .tab__content li:nth-of-type(1), .topics .inner .tab__content li:nth-of-type(4n+1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .topics .inner .tab__content li:nth-of-type(2), .topics .inner .tab__content li:nth-of-type(4n+2) {
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
  }
  .topics .inner .tab__content li:nth-of-type(3), .topics .inner .tab__content li:nth-of-type(4n+3) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .topics .inner .tab__content li:nth-of-type(4), .topics .inner .tab__content li:nth-of-type(4n+4) {
    -webkit-animation-delay: 0.75s;
            animation-delay: 0.75s;
  }
}
.topics .inner .tab__content li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 18px 0;
  background: #fff;
}
@media (min-width: 1025px) {
  .topics .inner .tab__content li a {
    display: block;
    height: 100%;
    padding: 0;
    box-shadow: 7px 7px 14px rgba(0, 0, 0, 0.04);
  }
}
.topics .inner .tab__content li a .img {
  width: 30%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .topics .inner .tab__content li a .img {
    width: 100%;
  }
}
.topics .inner .tab__content li a .img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
  transform-origin: center center;
}
.topics .inner .tab__content li a .txt {
  width: 66%;
  position: relative;
}
@media (min-width: 1025px) {
  .topics .inner .tab__content li a .txt {
    width: 100%;
    padding: 10px 10px 30px;
  }
}
.topics .inner .tab__content li a .txt .date {
  color: #777;
}
.topics .inner .tab__content li a .txt .label {
  margin: 0 0.5em 3px 0;
}
@media (min-width: 1025px) {
  .topics .inner .tab__content li a .txt .label {
    position: absolute;
    top: -22px;
    right: 0;
    margin: 0;
    z-index: 1;
  }
}
.topics .inner .tab__content li a .txt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media (min-width: 1025px) {
  .topics .inner .tab__content li a:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  }
  .topics .inner .tab__content li a:hover .img img {
    transform: scale(1.05);
  }
}
@media (min-width: 769px) {
  .topics {
    margin-bottom: 130px;
  }
}
.topics .inner .tab__category {
  margin-inline: -30px;
  height: 44px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .topics .inner .tab__category {
    margin-inline: 0;
    height: auto;
  }
}
.topics .inner .tab__category li {
  width: 23%;
}
.topics .inner .tab__category li.club {
  color: #000;
  border: solid 1px #777;
}
.topics .inner .tab__category li.club.active span, .topics .inner .tab__category li.club:hover span {
  background: #999;
  color: #fff;
}

.school__category {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 769px) {
  .school__category {
    width: 100%;
    max-width: 1660px;
    margin: 0 auto 100px;
    display: flex;
    flex-wrap: wrap;
  }
}
.school__category a {
  width: 100%;
  display: block;
  position: relative;
  min-height: 240px;
  overflow: hidden;
}
.school__category a:first-of-type {
  background: #2F5E1B;
}
.school__category a:last-of-type {
  background: #002450;
}
@media (min-width: 1025px) {
  .school__category a {
    width: 50%;
    height: auto;
  }
}
.school__category a .img {
  height: 64vw;
  overflow: hidden;
}
@media (min-width: 769px) {
  .school__category a .img {
    height: 100%;
  }
}
.school__category a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .school__category a .img img {
    width: 100%;
  }
}
.school__category a .txt {
  color: #fff;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-weight: bold;
}
.school__category a .txt h2 {
  font-size: 3rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .school__category a .txt h2 {
    font-size: 3.6rem;
  }
}
.school__category a .txt span {
  font-size: 1.4rem;
  display: inline-block;
  border-radius: 30px;
  border: solid 1px #fff;
  margin: 20px auto 42px;
  padding: 10px;
  width: 100%;
  max-width: 230px;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .school__category a:hover .img img {
    opacity: 0.75;
  }
}
@media (min-width: 769px) {
  .school__category a:hover .txt span {
    background: rgba(255, 255, 255, 0.33);
  }
}

.message {
  background: #f7f7f7;
  padding: 70px 20px;
  text-align: center;
}
@media (min-width: 769px) {
  .message {
    padding: 84px 0;
  }
}
.message a {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  transition: 0.3s;
  box-shadow: 7px 7px 14px rgba(0, 0, 0, 0.04);
}
@media (min-width: 769px) {
  .message a {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    padding: 50px;
  }
}
.message a .img {
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .message a .img {
    width: 42%;
    margin-bottom: 0;
  }
}
.message a .img img {
  width: 100%;
  height: auto;
}
.message a .txt {
  text-align: center;
}
@media (min-width: 769px) {
  .message a .txt {
    width: 50%;
  }
}
.message a .txt img {
  width: 80%;
  max-width: 140px;
}
.message a .txt p {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2rem;
  margin: 40px 0;
}
@media (min-width: 769px) {
  .message a .txt p {
    font-size: 2.8rem;
  }
}
.message a:hover {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.12);
}
.message a:hover .btn.gr span {
  color: #fff;
}
.message a:hover .btn.gr::after {
  transform-origin: center center;
  transform: scale(0, 0);
}

.topSection.banners {
  padding: 80px 20px 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .topSection.banners {
    flex-direction: row;
    justify-content: space-between;
  }
}
.topSection.banners a {
  margin-bottom: 10px;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .topSection.banners a {
    margin: 0 5px;
  }
}
.topSection.banners a img {
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .topSection.banners a img {
    max-height: 370px;
  }
}
@media (min-width: 769px) {
  .topSection.banners a:hover img {
    opacity: 0.8;
  }
}
.topSection.banners + .banners {
  padding: 40px 20px 80px;
}

.parallax {
  min-height: 500px;
  background: url("../img/top/img_top_footer.jpg") no-repeat center center;
  background-size: 220%;
  margin-bottom: 60px;
}
@media (min-width: 769px) {
  .parallax {
    min-height: 720px;
    background: url("../img/top/img_top_footer.jpg") no-repeat bottom center;
    background-size: contain;
    background-attachment: fixed;
  }
}

/* 20240305 モデル写真差替え｜コーディング */
@media screen and (min-width: 1679px) {
  .hero .hero__linkList {
    right: 14%;
  }
}
@media screen and (769px <= width <= 1678px) {
  .hero .hero__catchcopy {
    left: 4%;
  }
  .hero .hero__linkList {
    right: 4%;
  }
}
@media screen and (769px <= width <= 1316px) {
  .hero .hero__linkList {
    max-width: 530px;
  }
  .hero .hero__linkList .junior,
.hero .hero__linkList .senior {
    height: 73px;
  }
  .hero .hero__linkList .jexam a,
.hero .hero__linkList .jappli a,
.hero .hero__linkList .sexam a,
.hero .hero__linkList .sappli a {
    padding: 15px 0;
  }
}
@media screen and (769px <= width <= 995px) {
  .hero .hero__linkList {
    right: 5px;
    max-width: 485px;
  }
  .hero .hero__linkList .junior,
.hero .hero__linkList .senior {
    height: 50px;
  }
  .hero .hero__linkList .junior a,
.hero .hero__linkList .senior a {
    font-size: 1.5rem;
  }
  .hero .hero__linkList .junior a::after,
.hero .hero__linkList .senior a::after {
    width: 35px;
    height: 35px;
  }
  .hero .hero__linkList .jexam a,
.hero .hero__linkList .jappli a,
.hero .hero__linkList .sexam a,
.hero .hero__linkList .sappli a {
    padding: 8px 0;
    font-size: 1.5rem;
  }
}