@charset "utf-8";

:root {
  --white: #fff;
  --black: #000;
  --key01: #014ccc;
  --key02: #ff5091;
  --accent01: #fcfd81;
  --accent02: #fbdbe8;
  --fontFamily-M: "MFW-PAotoGothicStdN-Medium", "ヒラギノ角ゴ Pro W3";
  --fontFamily-DB: "MFW-PAotoGothicStdN-DeBold", "ヒラギノ角ゴ Pro W3";
  --fontFamily-B: "MFW-PAotoGothicStdN-Bold", "ヒラギノ角ゴ Pro W3";
  --fontFamily-EB: "MFW-PAotoGothicStdN-ExBold", "ヒラギノ角ゴ Pro W3";
  --fontFamily-po: "Passion One", sans-serif;
  --transition: all .5s cubic-bezier(0.33, 1, 0.68, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
.wrap {
  position: relative;
  min-width: inherit;
  min-height: 100vh;
  padding-bottom:20vh;
  overflow: hidden;
  z-index: 1;
  font-size: 1.4rem;
  font-family: var(--fontFamily-M);
  font-weight: 500;
  font-style: normal;
}
.wrap::before {
  content: "";
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url('../img/common/base-bg-sp.webp') no-repeat top center;
  background-size: cover;
}
main {
  padding: 70px 0 20vw;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  height: auto;
  display: block;
}

@media screen and (min-width: 751px) {
  .wrap {
    width: 100%;
    padding-bottom: 200px;
    font-size: 1.8rem;
  }
  .wrap::before {
    background: url('../img/common/base-bg-pc.webp') no-repeat top center;
    background-size: cover;
  }
}

/*----------------------------------------------------------
アウトライン
---------------------------------------------------------- */
.o-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}
.o-wrapper.bg-w {
  padding: 5vw;
  background-color: var(--white);
  border-radius: 5vw;
}
.o-box-l {
  padding: 12.5vw 0;
}
.o-box-m {
  padding: 7.5vw 0;
}
.o-box-s {
  padding: 3.75vw 3vw;
}

@media screen and (min-width: 751px) {
  .o-wrapper {
    width: 600px;
    max-width: initial;
  }
  .o-wrapper.bg-w {
    padding: 50px 40px;
    border-radius: 40px;
  }
  .o-box-l {
    padding: 100px 0;
  }
  .o-box-m {
    padding: 60px 0;
  }
  .o-box-s {
    padding: 40px;
  }
}

/*----------------------------------------------------------
共通
---------------------------------------------------------- */
.c-headline-lv1 {
  margin: 10.8vw auto;
  font-size: clamp(2rem, 7vw, 4.8rem);
  font-family: var(--fontFamily-EB);
  line-height: 1.1;
  text-align: center;
  color: var(--white);
}
.c-headline-lv1 span {
  display: block;
  padding-top: 0.5em;
  font-size: clamp(1.2rem, 3.5vw, 2.2rem);
  font-family: var(--fontFamily-DB);
}
.c-headline-lv2 {
  margin: 3.75vw auto;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-family: var(--fontFamily-DB);
  color: var(--black);
  text-align: center;
}
.c-pagemenu {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-top: -5vw;
}
.c-pagemenu li {
  width: 35%;
  max-width: 200px;
}
.c-pagemenu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  width: 100%;
  height: 3em;
  background: var(--white);
  border-radius: 1.5em;
  padding: 0.5em;
  text-align: center;
  font-family: var(--fontFamily-DB);
}
.c-youtube-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.c-youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.c-nowrap {
  display: inline-block;
}
.c-txt-l {
  font-size: 1.2em;
}
.c-txt-s {
  font-size: 0.8em;
}
.c-color-white {
  color: var(--white);
}
.c-color-acc01 {
  color: var(--accent01);
}
.c-color-acc02 {
  color: var(--accent02);
}
.c-link-color {
  color: var(--key02);
  text-decoration: underline;
}
@media screen and (min-width: 751px) {
  .c-headline-lv1 {
    margin: 100px auto;
  }
  .c-headline-lv2 {
    margin: 20px auto;
  }
  .c-link-opacity {
    transition: var(--transition);
  }
  .c-link-opacity:hover {
    opacity: 0.6;
  }
  .c-link-scale {
    display: block;
    transition: var(--transition);
  }
  .c-link-scale:hover {
    transform: scale(1.1);
  }
  .c-pagemenu {
    margin-top: -50px;
  }
}
@media screen and (min-width: 951px) {
  .c-headline-lv1 {
    margin-top: 150px;
  }
}
.u-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.u-inlineblock {
  display: inline-block;
}
/* sns
------------------------------------- */
.sns-icon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4%;
}
.sns-icon-item {
  width: 16%;
}
.sns-icon-link {
  display: block;
  transition: all 0.3s ease;
}
@media screen and (min-width: 751px) {
  .sns-icon-link:hover {
    transform: scale(1.1);
  }
}

/* deco
------------------------------------- */
[class^="deco"] img {
  display: inline-block;
}
.c-headline-lv2 .deco img {
  width: 10vw;
  height: auto;
  margin: -3vw 0 0 2vw;
}
.c-headline-lv2 .deco02 img {
  width: 10.5vw;
  height: auto;
  margin: -3vw 0 0 2vw;
}
.c-headline-lv2 .deco03 img {
  width: 8.2vw;
  height: auto;
  margin: -3vw 0 0 2vw;
}
.c-pagemenu [class^="deco"] {
  width: 3rem;
  height: 3rem;
}
.c-pagemenu [class^="deco"] img {
  object-fit: contain;
  max-height: 100%;
}

@media screen and (min-width: 751px) {
  .c-headline-lv2 .deco img {
    width: 51px;
    margin: -12px 0 0 10px;
  }
  .c-headline-lv2 .deco02 img {
    width: 45px;
    margin: -12px 0 0 10px;
  }
  .c-headline-lv2 .deco03 img {
    width: 55px;
    margin: -12px 0 0 10px;
  }
}
/* header
------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 15px;
  background-color: var(--white);
  z-index: 9999;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo img {
  width: 230px;
  height: auto;
}
.global-navigation__wrap {
  flex: 1;
}
.global-navigation__link {
  font-family: var(--fontFamily-B);
  font-size: 1.6rem;
}
.global-navigation__link[tabindex="-1"]::after {
  content: 'coming soon';
  margin-left: 1.2em;
  font-family: var(--fontFamily-M);
  font-size: 0.6em;
  opacity: 0.5;
}

@media screen and (max-width: 950px) {
  .sp-menu {
    display: block;
  }
  .pc-menu {
    display: none;
  }
  .trigger {
    display: block;
    position: relative;
    z-index: 10;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border-radius: 23px;
    background-color: var(--key01);
  }
  .is-active .trigger .trigger__line {
    background-color: transparent;
  }
  .is-active .trigger .trigger__line::before {
    top: 0;
    transform: rotate(45deg);
  }
  .is-active .trigger .trigger__line::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .trigger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    background-color: var(--white);
    transition: var(--transition);
  }
  .trigger__line:before,
  .trigger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: var(--white);
    transition: inherit;
  }
  .trigger__line:before {
    top: -6px;
  }
  .trigger__line:after {
    top: 6px;
  }
  .header__nav-area {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100vh;
    width: 100%;
    padding-top: 70px;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
  }
  .is-active .header__nav-area {
    visibility: visible;
    opacity: 1;
  }
  .global-navigation {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100dvh - 70px);
    padding: 40px 5vw;
    opacity: 0;
    transition: var(--transition);
  }
  .is-active .header__nav-area .global-navigation {
    opacity: 1;
  }
  .global-navigation__list {
    flex: 1;
  }
  .global-navigation__list > li {
    padding-bottom: 20px;
    border-bottom: 2px solid #e7e9ee;
  }
  .global-navigation__list > li + li {
    margin-top: 20px;
  }
  .global-navigation__link {
    display: flex;
    align-items: center;
  }
  .global-navigation .kbc-logo {
    width: 25vw;
    max-width: 200px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 951px) {
  .sp-menu {
    display: none;
  }
  .pc-menu {
    display: block;
  }
  .header_inner {
    display: flex;
  }
  .trigger {
    display: none;
  }
  .grobal-navigation__wrap {
    width: fit-content;
    margin-inline: auto 0;
  }
  .global-navigation__list {
    display: flex;
    gap: 1.5em;
    width: fit-content;
  }
  .global-navigation__list li {
    text-align: center;
    line-height: 1.2;
  }
  .global-navigation__link:not([tabindex="-1"]):hover {
    color: var(--key02);
  }
  .global-navigation__link[tabindex="-1"] {
    position: relative;
  }
  .global-navigation__link[tabindex="-1"]::after {
    position: absolute;
    bottom: -1.5em;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    margin: 0;
    text-align: center;
  }
}
/* footer
------------------------------------- */
footer {
  position: absolute;
  bottom: 0;
  z-index: 5;
  width: 100%;
  background: #fff;
  text-align: center;
}
footer::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: -6vw;
  left: 0;
  width: 100%;
  aspect-ratio: 10 / 1;
  background: url('../img/common/bg-footer.svg') no-repeat center top;
  background-size: 100vw auto;
}
.kbc-logo {
  width: 31.25vw;
  max-width: 251px;
  margin-inline: auto;
  padding-bottom: 6vw;
}
.copyright {
  padding-bottom: 5px;
  font-size: 0.6em;
}
@media screen and (min-width: 951px) {
  footer::after {
    top: -5.5vw;
  }
  .kbc-logo {
    padding-bottom: 4vw;
  }
}

/*----------------------------------------------------------
TOP
--------------------------------------------------------- */
#top .o-wrapper {
  padding-inline: 3vw;
}
#top .c-headline-lv1 {
  margin: 0 auto 0.5em;
  font-size: clamp(2rem, 7vw, 4rem);
}
@media screen and (max-width: 950px) {
  #top .header {
    background-color: transparent;
  }
  #top .header .logo {
    opacity: 0;
    pointer-events: none;
  }
  #top .header.is-active .logo{
    opacity: 1;
    pointer-events: initial;
  }
  #top main {
    padding-top: 0;
  }
}
@media screen and (min-width: 951px) {
  #top .o-wrapper {
    max-width: initial;
    width: 780px;
  }
}
/* アニメーション
------------------------------------- */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: var(--white);
  transition: all 0.5s linear;
}
#loading.is-loaded {
  opacity: 0;
  visibility: hidden;
}
.js-scroll-in {
  opacity: 0;
  transition: opacity 500ms ease, transform 500ms ease;
  will-change: transform, opacity;
}
.js-scroll-in.swiper-block {
  visibility: hidden;
}
.js-scroll-in.is-displayed {
  opacity: 1;
}
.js-scroll-in.swiper-block.is-displayed {
  visibility: visible;
}
.js-scroll-in[data-fade="up"] {
  transform: translateY(50px);
}
.js-scroll-in[data-fade="down"] {
  transform: translateY(-50px);
}
.is-displayed[data-fade="up"],
.is-displayed[data-fade="down"] {
  transform: translateY(0);
}
.js-scroll-in[data-fade="toRight"] {
  transform: translateX(-80px);
}
.js-scroll-in[data-fade="toLeft"] {
  transform: translateX(80px);
}
.is-displayed[data-fade="toRight"],
.is-displayed[data-fade="toLeft"] {
  transform: translateX(0);
}
.js-scroll-in.lead-01 .lead-01__content01 {
  opacity: 0;
  transform: rotateZ(-90deg);
  transition: 0.5s 0.3s cubic-bezier(0, 0.15, 0.25, 0.98);
}
.js-scroll-in.lead-01 .lead-01__content02 {
  opacity: 0;
  transform: translateX(80px);
  transition: 0.5s 0.8s cubic-bezier(0, 0.15, 0.25, 0.98);
}
.js-scroll-in.lead-02 .lead-02__content {
  opacity: 0;
  transform: translateX(-80px);
  transition: 0.5s 0.8s cubic-bezier(0, 0.15, 0.25, 0.98);
}
.is-displayed.lead-01 .lead-01__content01 {
  opacity: 1;
  transform: rotateZ(-9deg);
}
.is-displayed.lead-01 .lead-01__content02 {
  opacity: 1;
  transform: translateX(0);
}
.is-displayed.lead-02 .lead-02__content {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (min-width: 751px) {
  .js-scroll-in[data-fade="toRight"],
  .js-scroll-in[data-fade="toLeft"] {
    transition: opacity 500ms 350ms ease, transform 500ms 350ms ease;
  }
}

.js-opening01::before {
  opacity: 0;
  transform: scale(1.5);
  transition: 0.8s cubic-bezier(0, 0.55, 0.37, 0.99);
}
.js-opening01.is-displayed::before {
  opacity: 1;
  transform: scale(1);
}
.js-opening01::after {
  opacity: 0;
  transform: rotateZ(-45deg);
  transition: 0.8s 0.2s cubic-bezier(0, 0.55, 0.37, 0.99);
}
.js-opening01.is-displayed::after {
  opacity: 1;
  transform: rotateZ(0);
}
.js-opening01 h1 {
  opacity: 0;
  transform: scale(0.5);
  transition: 0.5s 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.js-opening01.is-displayed h1 {
  opacity: 1;
  transform: scale(1);
}
.js-opening02 {
  opacity: 0;
  transition: 1s 0.8s cubic-bezier(0, 0.55, 0.37, 0.99);
}
.js-opening02.is-displayed {
  opacity: 1;
}

/* メインビジュアル
------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 80 / 87;
}
.hero::before,
.hero::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: -0.5vh;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero::before {
  background: url('../img/top/hero-bg-02-sp.webp') no-repeat center center;
  background-size: contain;
}
.hero::after {
  left: -6.13vw;
  width: 112.25vw;
  background: url('../img/top/hero-bg-01-sp.webp') no-repeat center center;
  background-size: contain;
}
.hero h1 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero h1 img {
  width: 82vw;
  height: auto;
  margin-inline: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 951px) {
  .hero {
    aspect-ratio: 375 / 266;
    background-size: contain;
  }
  .hero::before {
    background: url('../img/top/hero-bg-02-pc.webp') no-repeat center center;
    background-size: contain;
  }
  .hero::after {
    left: -5.6vw;
    width: 111.2vw;
    background: url('../img/top/hero-bg-01-pc.webp') no-repeat center center;
    background-size: contain;
  }
  .hero h1 img {
    width: 56.8vw;
    margin-bottom: 6.66vw;
  }
}

/* lead
------------------------------------- */
.lead-block {
  color: var(--white);
}
.lead-01 {
  position: relative;
  width: 93vw;
  margin-bottom: 5vw;
  margin-left: 7vw;
  background: url('../img/top/lead-01-bg-sp.png') repeat-y 0 0;
  background-size: 100% auto;
}
.lead-02 {
  position: relative;
  width: 95vw;
  margin-right: 5vw;
  background: url('../img/top/lead-02-bg-sp.png') repeat-y 0 0;
  background-size: 100% auto;
}
.lead-01::before,
.lead-02::before {
  content: '';
  position: absolute;
}

.lead-01::before {
  top: -10vw;
  left: -5vw;
  width: 48vw;
  aspect-ratio: 8 / 5;
  background: url('../img/top/lead-01-deco.png') repeat-y 0 0;
  background-size: contain;
}
.lead-02::before {
  bottom: -9.5vw;
  right: -4.5vw;
  width: 55.5vw;
  aspect-ratio: 222 / 149;
  background: url('../img/top/lead-02-deco.png') repeat-y 0 0;
  background-size: contain;
}
.lead-01 p, .lead-02 dl {
  position: relative;
  z-index: 10;
  line-height: 1.2;
}
.lead-01 p {
  padding: 10vw 2vw 2vw 8vw;
}
.lead-01__content01 {
  position: absolute;
  top: -10vw;
  left: -5vw;
  transform: rotateZ(-9deg);
  font-family: var(--fontFamily-EB);
  font-size: 6vw;
}
.lead-01__content02 {
  display: block;
  font-family: var(--fontFamily-DB);
  font-size: 4.5vw;
}
.lead-02__content {
  max-width: 780px;
  margin-inline: auto 0;
  padding: 3.25vw;
  font-size: 3.5vw;
  text-align: center;
}
.lead-02__content dt {
  font-family: var(--fontFamily-EB);
  font-size: 9vw;
}
.lead-02__content dd:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (min-width: 751px) {
  .lead-block {
    max-width: 780px;
    margin-inline: auto;    
  }
  .lead-01 {
    min-width: 900px;
    margin: 0 calc(50% - 50vw) 20px 0;
    background: url('../img/top/lead-01-bg-pc.png') repeat-y top left;
    background-size: 100% auto;
  }
  .lead-02 {
    width: initial;
    margin: 0 0 0 calc(50% - 50vw);
    background: url('../img/top/lead-02-bg-pc.png') repeat-y top right;
    background-size: 100% auto;
  }
  .lead-01::before {
    top: -32px;
    left: -232px;
    width: 384px;
  }
  .lead-02::before {
    bottom: -15px;
    right: -175px;
    width: 444px;
  }
  .lead-01 p {
    max-width: 780px;
    padding: 60px 0 25px 180px;
  }
  .lead-01__content01 {
    top: -40px;
    left: 17px;
    font-size: 3.6rem;
    line-height: 1.1;
  }
  .lead-01__content02 {
    font-size: 2.4rem;
  }
  .lead-02__content {
    padding: 30px;
    font-size: 20px;
    text-align: right;
  }
  .lead-02__content dt {
    font-family: var(--fontFamily-EB);
    font-size: 48px;
  }
}

/* channel-block
------------------------------------- */
.channel-list {
  padding: 1em;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.channel-item {
  width: calc(50% - 13px);
  text-align: center;
}
.channel-caption {
  margin: 0.5em auto;
}
.channel-name {
  display: block;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-family: var(--fontFamily-DB);
  line-height: 1.2;
  color: var(--key01);
}
.channel-link {
  display: block;
  width: 90%;
  height: 2em;
  margin: 0.5em auto;
  background-color: var(--key01);
  border-radius: 1em;
  color: var(--white);
  line-height: 2;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-family: var(--fontFamily-B);
}
@media screen and (min-width: 751px) {
  .channel-link {
    width: fit-content;
    padding-inline: 4em;
  }
  .channel-link:hover {
    background-color: var(--key02);
  }
}

/* cosponsor
------------------------------------- */
.cosponsor-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2vw;
}
.cosponsor-item {
  width: calc(50% - 2vw);
}
.cosponsor-item span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 170 / 56;
  background-color: var(--white);
  font-size: clamp(1.2rem, 4.4vw, 1.8rem);
}
@media screen and (min-width: 751px) {
  .cosponsor-list {
    gap: 15px;
  }
  .cosponsor-item {
    width: calc(25% - 15px);
  }
  .cosponsor-item a {
    transition: all 0.3s ease;
  }
  .cosponsor-item a:hover {
    transform: scale(1.1);
  }
  .cosponsor-item span {
    font-size: 1.6rem;
  }
}

/* precautions
------------------------------------- */
.precautions-wrap {
  padding: 5vw 3vw;
  background-color: var(--white);
}
.precautions-list dt {
  font-size: 1.6rem;
  font-family: var(--fontFamily-B);
}
.precautions-list dt::before {
  content: '●';
}
.precautions-list dd {
  margin-bottom: 1em;
  font-size: 1.3rem;
}
.precautions-list p {
  margin-top: 1em;
  font-size: 1.3rem;
}
@media screen and (min-width: 751px) {  
  .precautions-wrap {
    padding: 40px;
  }
  .precautions-list dt {
    font-size: 2rem;
  }
  .precautions-list dd {
    font-size: 1.5rem;
  }
}

/*----------------------------------------------------------
mc-guest
--------------------------------------------------------- */
.mc-block .c-headline-lv1 + p.c-txt-s {
  position: relative;
  top: -10vw;
  margin-bottom: -1em;
  text-align: center;
  color: var(--white);
}
.mc-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em 5.5%;
}
.mc-item {
  width: 47%;
  text-align: center;
}
.mc-caption {
  margin: 0.5em 0;
}
.mc-caption > span {
  display: block;
  line-height: 1.2;
}
.mc-name {
  font-size: clamp(1.8rem, 2.5vw, 2rem);
  font-family: var(--fontFamily-DB);
}
[class^="mc-role"] {
  font-size: 0.8em;
}
.mc-role {
  color: #555;
}
.mc-item.x1 {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2em;
}
.mc-item.x1 > * {
  width: 47%;
}
.mc-item__txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:flex-start;
  text-align: left;
}
.mc-item__txt .sns-icon-list {
  width: 100%;
  justify-content: flex-start;
  margin-top: 0.8em;
}
@media screen and (min-width: 751px) {
  .mc-block .c-headline-lv1 + p.c-txt-s {
    top: -90px;
  }
}
/*----------------------------------------------------------
school
---------------------------------------------------------- */
.school-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4vw;
}
.school-item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 2vw);
}
.school-name {
  font-family: var(--fontFamily-DB);
  font-size: 1.4rem;
  line-height: 1.3;
}
.school-name .c-txt-s {
  display: block;
  margin-top: 0.25em;
  font-size: 0.9em;
  line-height: 1.1;
}
.school-genre {
  font-size: 1.2rem;
  line-height: 1.2;
}
.school-caption {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.school-caption .school-name {
  flex-grow: 1;
  padding: 5px 0;
  text-align: center;
}
.school-challenge-ttl {
  font-size: 1.4rem;
}

.school-caption .school-genre {
  width: 100%;
  margin-top: auto;
  margin-inline: auto;
  padding: 0.4em;
  background-color: var(--key01);
  color: var(--white);
  text-align: center;
}

@media screen and (min-width: 751px) {
  .school-list {
    gap: 30px;
  }
  .school-item {
    display: flex;
    flex-direction: column;
    width: calc(50% - 15px);
  }
}


/*----------------------------------------------------------
gallery
---------------------------------------------------------- */
.gallery-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
.gallery-item {
  width: calc(50% - 8px);
}
.gallery-item-txt {
  display: block;
  padding: 0.3em 0.5em;
  background-color: var(--key01);
  color: var(--white);
  font-family: var(--fontFamily-DB);
  font-size: 0.7em;
  line-height: 1.2;
}
/* gallery mfp
------------------------------------- */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all .3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: .8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all .3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}