@charset "utf-8";
@viewport {
  zoom: 1.0;
  width: extend-to-zoom;
}

* {
  margin: 0;
  padding: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-before: 0;
  -webkit-padding-after: 0;
  -webkit-padding-start: 0;
  -webkit-padding-end: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html,
body,
:root {
  line-height: 1.6;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: #333333;
  background-color: #fff;
  font-size: 15px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  position: relative;
}

ul,
li {
  list-style: none;
}

button {
  appearance: none;
  background: none;
  border: none;
}

.lp-sect p {
  line-height: 1.8;
  font-size: 16px;
}


/* リンク */
a {
  text-decoration: none;
  transition: all 0.2s ease;
}

.anchormark {
  pointer-events: none;
  line-height: 0;
  font-size: 0;
  height: 0;
  display: block;
  transform: translateY(-100px);
}

.sect-03 .anchormark {
  transform: translateY(-160px);
}
}
.sect-06 .anchormark {
  transform: translateY(100px);
}

/* ボタン */
.btn {
  display: inline-block;
  border-radius: 50px;
  border: 1px solid #000;
  background-color: #CAF7F7;
  padding: 10px 20px;
  line-height: 1;
  font-size: 18px;
  text-align: center;
  color: #000;
  min-width: 12em;
}
.btn:hover {
  background-color: #fdf8af;
}
@media (min-width: 1001px) {
  .btn {
    font-size: 22px;
  }
}



/* レイアウト */
.container {
  width: 100%;
  max-width: 1140px;
  margin: auto;
  padding: 0 20px;
}


/* 見出し */
.sect-h {
  text-align: center;
  margin: 0 0 30px;
}
@media (max-width: 900px) {
  .sect-h img {
    width: 98%;
    max-width: 390px;
  }

}
@media (min-width: 901px) {
  .sect-h img {
    height: 140px;
  }
}


/* アニメーション */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.fadein {
  opacity: 0;
}
.active .fadein {
  animation: fadeInUp 0.6s ease-in-out 1 forwards;
}
.active .fadein-02 {
  animation-delay: .2s;
}


/* 隠しナビ */

.nav-btn {
  cursor: pointer;
  display: block;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 300;
  width: 60px;
  height: 60px;
}
.nav-btn img {
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}
:root.nav-open {
  overflow: hidden;
}

.sidenav .nav-btn {
  position: absolute;
  top: 0;
  right: 0;
}
.nav {
  position: fixed;
  display: block;
  background-color: #E4FFFF;
  top: 0;
  bottom: 0;
  right: -320px;
  width: 320px;
  transition: right 0.3s ease;
  z-index: 1000;
  border-radius: 2rem 0 0 2rem;
  border-right: none;
  padding: 10px 10px 20px 20px;
}
.nav.open {
  right: 0;
}

.sidenav>div {
  position: relative;
}

.sidenav-links {
  padding: 10px 0 0;
}
.sidenav-links li {
  margin: 0 0 20px;
  line-height: 0;
}
.nav .sns-links {
  margin: 40px -5px 0;
}
.nav .sns-links li {
  flex: 1;
  opacity: 1;
  margin: 0 5px;
  padding: 0;
  width: auto;
  height: auto;
}
.nav .sns-links li a {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 3px;
  transition: .2s;
}
.nav .sns-links li a img {
  display: block;
  width: 100%;
  height: auto;
}

@media (hover:hover) {
  .sidenav-links a img {
    display: block;
    transition: .2s;
  }
  .sidenav-links a:hover img {
    transform: scale(1.1);
  }
}

@media (min-width: 600px) {
  .nav .sns-links li a {
    padding: 10px;
  }
}

@media (min-width: 700px) {
  .nav-btn {
    top: 20px;
    right: 20px;
  }
  .nav {
    padding: 20px 20px 30px 30px;
    right: -480px;
    width: 480px;
  }

  .sidenav-links {
    padding: 30px 0 0;

  }
}


/* ナビ用背景 */
#overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
#overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ヘッダーナビ */
.header-nav-links {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 10px 0 0;
}
.header-nav-links li {
  padding: 0 5px;
}
.header-nav-links img {
  height: 23px;
}
.header-nav-links a {
  display: block;
  transition: .2s;
}
.header-nav {
  display: none;
}

@media (hover: hover) {
  .header-nav-links a:hover {
    transform: scale(1.1);
  }
}


body::before {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background: url("../img/header-bg.webp") repeat-x top center;
  background-size: auto 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  pointer-events: none;
}

@media (min-width: 1041px) {
  body::before {
    background-size: auto 30px;
  }
  .header-nav {
    margin: 0;
    display: block;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 60;
  }
}


/* ヒーロー */
.sect-hero {
  margin: 0 0;
  background-color: #E4FFFF;
  background-repeat: no-repeat;
  background-image: url("../img/hero-bg.webp");
  background-position: top center;
  background-size: 1400px;
  z-index: 40;
  position: relative;
}
.hero-container {
  margin: auto;
  padding: 0 0 60px;
  position: relative;
}
.sect-hero-h {
  margin: auto;
  position: relative;
}
.sect-hero-h img {
  width: 100%;
  height: auto;
}

@media (max-width: 1140px) {
  .hero-container {
    width: 95%;
    max-width: 500px;
    padding: 140px 0 0;
  }
  .sect-hero-h {
    width: 100%;
  }
}

@media (min-width: 1141px) {
  .sect-hero {
    padding: 100px 0 0;
  }
  .hero-container {
    max-width: 100%;
    width: 1440px;
  }
  .sect-hero-h {
    width: 885px;
  }
}


/* ヒーロー　見出し */
.hero-01 {
  position: absolute;
  width: 55%;
  top: 7%;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
}

.hero-01::after {
  content: "";
  display: block;
  width: 120%;
  height: 100%;
  position: absolute;
  left: -20%;
  top: 0;
  background:
    linear-gradient(to right, transparent 0%, #62c0b4 15%);
  animation: hero-sweep .7s linear 1 forwards;
  animation-delay: .2s;
}
@keyframes hero-sweep {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
  }
}

.hero-02 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  padding: 0 0 0 20px;
}
.hero-02 img {
  opacity: 0;
  animation: fadeInJumpUp 0.42s ease-out 1 forwards;
  animation-delay: .9s;
}
.hero-02 img:nth-child(2) {
  animation-delay: 1.0s;
}
.hero-02 img:nth-child(3) {
  animation-delay: 1.1s;
}
.hero-02 img:nth-child(4) {
  animation-delay: 1.2s;
}
.hero-02 img:nth-child(5) {
  animation-delay: 1.3s;
}
.hero-02 img:nth-child(6) {
  animation-delay: 1.4s;
}
.hero-02 img:nth-child(7) {
  animation-delay: 1.5s;
}
@keyframes fadeInJumpUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-03 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  font-size: 0;
  line-height: 0;
  animation: fadeInJumpUp 0.42s ease-out 1 forwards;
  animation-delay: 1.6s;
}

@media (max-width: 1140px) {
  .hero-02 {
    top: 32%;
    width: 90%;
    height: 15%;
    margin: auto;
  }
  .hero-02 img {
    height: 100%;
    width: auto;
  }
  .hero-03 {
    bottom: 39%;
    width: 80%;
  }
  .hero-04 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 29%;
    width: 60%;
    margin: auto;
    opacity: 0;
    font-size: 0;
    line-height: 0;
    animation: fadeInJumpUp 0.42s ease-out 1 forwards;
    animation-delay: 1.8s;
    margin: auto;
  }
}

@media (min-width: 1141px) {
  .hero-01 {
    top: 5% width: 550px;
  }
  .hero-02 {
    top: 27%;
    width: 790px;
  }
  .hero-02 img {
    width: auto !important;
    height: 140px;
  }
  .hero-03 {
    bottom: 15%;
    width: 510px;
  }
  .hero-04 {
    display: none;
  }
}


/* ヒーロー　黒板飾り */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bulb-sway {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
@keyframes stars-sway {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
@keyframes float-letsgo {
  0%,
  100% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(0);
  }
}

.sect-hero-h .hanamaru {
  position: absolute;
  opacity: 0;
  transform-origin: center;
  animation: fadeIn .6s linear forwards, bulb-sway .6s steps(1) infinite alternate;
  animation-delay: 1.5s;
}

.sect-hero-h .bulb {
  position: absolute;
  transform-origin: left bottom;
  opacity: 0;
  animation: fadeIn .6s linear forwards, bulb-sway .4s steps(1) infinite alternate;
  animation-delay: 1.5s;
}

.sect-hero-h .stars {
  position: absolute;
  opacity: 0;
  animation: fadeIn .6s linear forwards, stars-sway 1s steps(1) infinite;
  animation-delay: 1.5s;
}

.sect-hero-h .letsgo {
  position: absolute;
  opacity: 0;
  animation: fadeIn .6s linear forwards, float-letsgo .8s steps(1) infinite;
  animation-delay: 1.5s;
}

@media (max-width: 1140px) {

  .sect-hero-h .hanamaru {
    width: 12%;
    top: 13%;
    left: 7%;
  }
  .sect-hero-h .letsgo {
    width: 20%;
    top: 20%;
    right: 2%;
  }
  .sect-hero-h .stars {
    width: 12%;
    bottom: 14%;
    left: 19%;
  }
  .sect-hero-h .bulb {
    width: 13%;
    bottom: 13%;
    right: 5%;
  }

}

@media (min-width: 1141px) {

  .sect-hero-h .hanamaru {
    width: 70px;
    top: 30px;
    left: 70px;
  }
  .sect-hero-h .letsgo {
    width: 130px;
    top: 60px;
    right: 20px;
  }
  .sect-hero-h .stars {
    width: 76px;
    bottom: 50px;
    left: 90px;
  }
  .sect-hero-h .bulb {
    width: 78px;
    bottom: 40px;
    right: 90px;
  }

}


/* ヒーロー　あしらい */
.hero-deco {
  position: absolute;
}

@media (max-width: 1140px) {
  .hero-deco {
    height: auto;
  }
  /* ベッド */
  .hero-deco:nth-of-type(1) {
    top: 30px;
    left: 25%;
    width: 126px;
  }
  /* 矢印 */
  .hero-deco:nth-of-type(2) {
    top: 30px;
    right: 10%;
    width: 178px;
    animation-delay: .2s;
  }
  .hero-deco:nth-of-type(3) {
    top: 50px;
    left: 5%;
    width: 56px;
    animation-delay: .6s;
  }
  /* 先生 */
  .hero-deco:nth-of-type(4) {
    bottom: -4%;
    left: -3%;
    width: 70px;
    animation-delay: .4s;
  }
  /* 読書 */
  .hero-deco:nth-of-type(5) {
    left: 28%;
    bottom: -12%;
    width: 80px;
    animation-delay: .5s;
  }
  /* 緊急搬送 */
  .hero-deco:nth-of-type(7) {
    right: 0%;
    bottom: -20%;
    width: 220px;
    animation-delay: .4s;
  }
  /* 本 */
  .hero-deco:nth-of-type(6) {
    display: none;
  }
  /* 生徒 */
  .hero-deco:nth-of-type(8) {
    display: none;
  }
  /* 本棚 */
  .hero-deco:nth-of-type(9) {
    display: none;
  }
}

@media (min-width: 1141px) {
  .hero-deco:nth-of-type(1) {
    top: 0;
    left: 0;
  }
  .hero-deco:nth-of-type(2) {
    top: 0;
    right: 3%;
    animation-delay: .2s;
  }
  .hero-deco:nth-of-type(3) {
    bottom: 50px;
    left: 3%;
    animation-delay: .6s;
  }
  /* 先生 */
  .hero-deco:nth-of-type(4) {
    bottom: -120px;
    left: 13%;
    animation-delay: .4s;
  }
  /* 読書 */
  .hero-deco:nth-of-type(5) {
    left: 28%;
    top: 80%;
    animation-delay: .5s;
  }
  /* 本 */
  .hero-deco:nth-of-type(6) {
    left: 40%;
    top: 94%;
    animation-delay: .3s;
  }
  /* 緊急搬送 */
  .hero-deco:nth-of-type(7) {
    left: 54%;
    top: 87%;
    animation-delay: .4s;
  }
  /* 生徒 */
  .hero-deco:nth-of-type(8) {
    right: 8%;
    top: 55%;
    animation-delay: .7s;
  }
  /* 本棚 */
  .hero-deco:nth-of-type(9) {
    right: -5%;
    top: 90%;
    animation-delay: .3s;
  }

}


/* INTERVIEW */

.sect-01 {

  background-color: #C0DFF3;

  /* background-image: url("../img/dot-bg.webp"); */
  /* background-size: 18px; */

  background-image: url("../img/sect-01-bg.png");
  background-repeat: no-repeat;
  background-size: cover;

  background-position: center;

  position: relative;
  padding: 130px 0 70px;
  overflow: hidden;
}
.sect-01::before {
  content: "";
  display: block;
  background: url("../img/hero-mask.webp") top center no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 110px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.sect-01 .container {
  position: relative;
  z-index: 10;
}
@media (max-width: 500px) {
  .sect-01 .container {
    padding: 0 5px;
  }
}
@media (max-width: 1140px) {
  .sect-01 .sect-h {
    margin: 0;
  }
}
@media (min-width: 1141px) {
  .sect-01 {
    padding: 200px 0 130px;
  }
  .sect-01::before {
    height: 370px;
  }
}



.interview-item {
  position: relative;
  padding: 10px;
}

.interview-item::after,
.interview-item::before {
  content: "";
  display: block;
  width: 96%;
  height: 96%;
  background-color: #ED7980;
  transform: rotate(4deg);
  position: absolute;
  top: 5px;
  left: 0;
}
.interview-item::after {
  background-color: #FFBCBB;
  transform: rotate(2deg);
}

.interview-item.var-blue::before {
  background-color: #0265B7;
}
.interview-item.var-blue::after {
  background-color: #51A7DD;
}

.interview-item-clip {
  display: block;
  width: 80px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-66%);
  z-index: 50;
  pointer-events: none;
}

.interview-item button {
  display: block;
  width: 100%;
  height: auto;
  height: 100%;
  aspect-ratio: 2/2.7;
  position: relative;
  z-index: 10;
  appearance: none;
  background: none;
  border: none;
  background-color: #fff;
  background-image:
    linear-gradient(#ededed 1px, transparent 1px),
    linear-gradient(90deg, #ededed 1px, transparent 1px);
  background-size: 16px 16px;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}

.interview-item .person {
  height: 100%;
  width: 90%;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.interview-item .person img {
  position: absolute;
  bottom: 0;
  left: -5%;
  max-width: 110%;
  width: 110%;
}

.interview-item .img-a {
  opacity: 1;
  z-index: 20;
  animation: fadeUpZoom 0.6s ease-out 1 both;
}

.interview-item button:hover .img-a {
  opacity: 0;
  z-index: 10;
  display: none;
}

.interview-item .img-b {
  opacity: 0;
  z-index: 10;
}

.interview-item button:hover .img-b {
  opacity: 1;
  z-index: 20;
  animation: popUpZoom 0.6s ease-out 1 both;
}

@keyframes fadeUpZoom {
  0% {
    transform: scale(1) translateY(12px);
    opacity: 0.9;
  }
  60% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes popUpZoom {
  0% {
    transform: scale(1) translateY(12px);
    opacity: 0.6;
  }
  60% {
    transform: scale(1.08) translateY(-4px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.interview-item-h {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #EB626A;
  padding: 5px 10px;
  z-index: 40;
}
.interview-item-h small {
  font-weight: normal;
  display: block;
  font: .7em;
}

.var-blue .interview-item-h {
  background-color: #0054A7;
}

.interview-item .bubble {
  position: absolute;
  width: 18%;
  height: 80%;
  z-index: 10;
  pointer-events: none;
}
.interview-item .bubble.bubble-01 {
  top: 20px;
  right: 20px;
}
.interview-item .bubble.bubble-02 {
  display: flex;
  align-items: flex-end;
  bottom: 80px;
  left: 20px;
}
.interview-item .bubble img {
  width: 100%;
  height: auto;
  opacity: 0;
}
.interview-item.active .bubble img {
  animation: fadeInUp 0.6s ease-in-out 1 forwards;
}
.interview-item.active .bubble-02 img {
  animation-delay: .5s;
}

.interview-items {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 800px;
  max-width: 98%;
  margin: 30px auto 0;
}

.interview-item {
  flex: 0 0 calc(50% - 2px);
  margin: 0 0 20px;
}

@media (min-width: 701px) {
  .interview-items {
    margin: 70px auto 0;
  }
  .interview-item {
    flex: 0 0 calc(50% - 20px);
    margin: 0 0 80px;
  }
  .interview-item-h {
    padding: 10px;
    font-size: 20px;
  }
  .interview-item-clip {
    width: 120px;
  }
  .interview-item::after,
  .interview-item::before {
    width: 98%;
    height: 98%;
  }

  .interview-item .bubble.bubble-02 {
    bottom: 105px;
  }

}



/* MARQUEE */
@keyframes marq-bottom-to-top {
  0% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes marq-top-to-bottom {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}

.marq {
  overflow: hidden;
  pointer-events: none;
  line-height: 0;
  font-size: 0;
  position: absolute;
  bottom: 0;
  height: 200%;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.marq img {
  flex: 1;
  height: 25%;
  width: auto;
}
.marq-left {
  bottom: 0;
  left: 0;
  animation: marq-bottom-to-top 30s linear infinite;
}
.marq-right {
  top: 0;
  right: 0;
  align-items: flex-end;
  animation: marq-top-to-bottom 30s linear infinite;
}

@media (min-width: 1001px) {
  .marq {
    height: 300%;
  }
}


/* INTERVIEW MODAL */

.modal-body {
  position: relative;
  background-color: #fff;
  background-image:
    linear-gradient(#ededed 1px, transparent 1px),
    linear-gradient(90deg, #ededed 1px, transparent 1px);
  background-size: 16px 16px;
  background-position: center;
}
.modal-body::after,
.modal-body::before {
  content: "";
  display: block;
  width: 99%;
  height: 99%;
  background-color: #ED7980;
  transform: rotate(4deg);
  position: absolute;
  top: 5px;
  left: 0;
  z-index: -1;
}
.modal-body::after {
  background-color: #FFBCBB;
  transform: rotate(2deg);
}
.modal-body.var-blue::before {
  background-color: #0265B7;
}
.modal-body.var-blue::after {
  background-color: #51A7DD;
}

.interview-q {
  background-color: #EB626A;
  color: #fff;
  padding: 10px 10px 10px 40px;
  position: relative;
  margin: 0 0 10px;
}
.var-blue .interview-q {
  background-color: #0265B7;
}
.interview-q::before {
  content: "";
  display: block;
  width: 5px;
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  background-color: #fff;
}

.interview-foot {
  text-align: center;
  padding: 15px;
  background-color: #fdf8af;
  margin: 20px 0 0;
}
.interview-body small {
  display: block;
  font-size: .9em;
  text-align: right;
  color: rgba(0, 0, 0, 0.7);
  margin: 1em 0 0;
}

.interview-body p {
  line-height: 1.8;
}

.modal-interview {
  position: relative;
}

.modal-foot-btn {
  display: none;
}
@media (max-width: 900px) {
  .interview-foot {
    width: fit-content;
    min-width: 70%;
    margin: auto;
    padding: 10px;
  }
  .interview-body {
    padding: 0 10px 2em;
    margin: 0 0 2em;
  }
  .interview-body img {
    display: none;
  }
  .interview-head {
    padding: 20px 10px;
  }
  .interview-body-h {
    width: 90%;
    margin: auto;
  }

  .modal-schedule-content {
    padding: 0 0 40px;
  }

  .modal-foot-btn {
    display: block;
    width: fit-content;
    padding: 10px 40px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(150%);
    z-index: 100;
  }
  .modal-foot-btn.pink {
    background-color: #FFBCBB;
  }

}

@media (min-width: 901px) {
  .interview-body small {
    position: absolute;
    bottom: 20px;
    margin: 1em 0 0;
    right: 40px;
  }
  .modal-interview {
    display: flex;
    align-items: center;
    padding: 20px 30px;
  }
  .interview-head {
    flex: 1;
    padding: 10px 40px 0 20px;
  }
  .interview-body {
    flex: 0 0 540px;
  }
  .interview-q {
    font-size: 19px;
  }
  .interview-body p {
    padding: 0 0 0 40px;
  }
  .interview-body img {
    display: block;
    margin: 2em auto;
  }

}


@media (max-width: 900px) {
  .modal-photos {
    padding: 20px 0;
  }
  .modal-photos .slick-slide {
    padding: 0 5px;
  }
}
@media (min-width: 901px) {
  .modal-photos {
    padding: 0 20px 20px;
    display: flex;
    margin: 0 -15px;
  }
  .modal-photos img {
    flex: 1;
    margin: 0 15px;
  }
}


/* ノート風背景 */
.paper-bg {
  background-color: #fff;
  background-image:
    linear-gradient(#f8f8f8 2px, transparent 2px),
    linear-gradient(90deg, #f8f8f8 2px, transparent 2px);
  background-size: 25px 25px;
  background-position: center;
  position: relative;
  z-index: 1;
  padding: 0 0 50px;
}
.paper-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background: url("../img/paper-bg.svg") repeat-x center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.paper-bg.orange:before {
  background-image: url("../img/paper-bg-or.svg");
}
.paper-bg>* {
  position: relative;
  z-index: 10;
}
@media (max-width: 900px) {
  .paper-bg.orange {
    padding: 0 0 40px;
  }
}
@media (min-width: 901px) {
  .paper-bg {
    padding: 0 0 100px;
  }
  .paper-bg::before {
    height: 40px;
  }
}


/* CENTER SLIDER */
.center-slider .slick-slide {
  transition: .2s;
  transform: scale(.7);
  box-sizing: border-box;
}
.center-slider .slick-center {
  transform: scale(1);
}
.center-slider img {
  width: 100%;
}
.center-slider .slick-arrow {
  position: absolute;
  top: 36%;
  margin: auto;
  height: 50px;
  width: 50px;
  background-color: #003893;
  border-radius: 45px;
  appearance: none;
  border: none;
  font-size: 20px;
  color: #fff;
  z-index: 20;
  cursor: pointer;
}
.center-slider .slick-arrow:hover {
  color: #fdf8af;
}
.center-slider .slick-arrow.slick-prev {
  left: 3%;
}
.center-slider .slick-arrow.slick-next {
  right: 3%;
}

.center-slider .slick-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
}
.center-slider .slick-dots li {
  line-height: 0;
  font-size: 0;
}
.center-slider .slick-dots button {
  background: #FEDC5E;
  border: 1px solid #000;
  transition: background-color 0.3s ease;
  appearance: none;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.center-slider .slick-dots li.slick-active button {
  background: #EE616A;
}

@media (min-width: 1001px) {
  .center-slider .slick-arrow {
    height: 80px;
    width: 80px;
    border-radius: 100px;
    font-size: 26px;
  }
  .data-slider .slick-arrow.slick-prev {
    left: 27%;
  }
  .data-slider .slick-arrow.slick-next {
    right: 27%;
  }
}

@media (min-width: 1601px) {
  .center-slider .slick-arrow {
    height: 100px;
    width: 100px;
  }
  .center-slider .slick-slide {
    margin: 0 -1rem;
  }
  .center-slider .slick-arrow.slick-prev {
    left: 32%;
  }
  .center-slider .slick-arrow.slick-next {
    right: 32%;
  }
}



/* HIMEDAI DATA */
.sect-02 .sect-head {
  transform: translateY(-40%);
  margin: 0 0 -4em;
}
.data-items p {
  text-align: center;
  font-size: 16px;
  color: #003893;
  margin: 1em 0;
}
.data-slider {
  background: url("../img/data-frame.webp") no-repeat bottom center;
  background-size: 100%;
  padding: 0 0 80px;
}
.data-slider-item {
  position: relative;
}
.data-slider-item img {
  width: 100%;
  height: auto !important;
  position: relative;
  z-index: 2;
}
.data-slider-item .on {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: auto;
  z-index: 1;
  transition: .2s;
}

.center-slider.data-slider .slick-slide {
  transform: scale(.6);
}
.center-slider.data-slider .slick-center {
  transform: scale(1);
}
@media (min-width: 900px) {
  .data-slider-item .on {
    opacity: 0;
  }
  .slick-active .data-slider-item .on {
    opacity: 1;
  }
  .data-slider {
    background-size: auto 230px;
  }
}



/* ショート動画スライダーの矢印 */
.shorts-slider .slick-arrow {
  font-size: 0;
  line-height: 0;
  width: 60px;
  height: 60px;
  background: url("../img/chevron.webp") no-repeat center;
  background-size: 40%;
  transition: .2s;
  top: 37%;
}
.shorts-slider .slick-arrow.slick-next {
  right: 7%;
  transform: rotate(180deg);
}
.shorts-slider .slick-arrow.slick-prev {
  left: 7%;
}

@media (hover:hover) {
  .shorts-slider .slick-arrow:hover {
    background-color: #ED7980;
  }
}

@media (min-width: 1001px) {
  .shorts-slider .slick-arrow.slick-next {
    right: 28%;
  }
  .shorts-slider .slick-arrow.slick-prev {
    left: 28%;
  }
}

@media (min-width: 1501px) {
  .shorts-slider .slick-arrow.slick-next {
    right: 31%;
  }
  .shorts-slider .slick-arrow.slick-prev {
    left: 31%;
  }
}


/* ONE DAY SCHEDULE  */

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sect-schedule {
  margin: 80px 0;
  position: relative;
}
.schedule-body {
  position: relative;
  padding: 40px 0;
}
.schedule-body::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #FFE7F3;
  clip-path: polygon(0 0,
      calc(100% - 50px) 0,
      100% 50px,
      100% 100%,
      50px 100%,
      0 calc(100% - 50px));
}
.schedule-body::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  pointer-events: none;
  background-image: url("../img/corner.svg"), url("../img/corner.svg");
  background-position: top right, bottom left;
  background-size: 60px;
  background-repeat: no-repeat;
}

.schedule-item {
  border: none;
  background: none;
  appearance: none;
  font-size: 0;
  line-height: 0;
  position: relative;
  background: url("../img/schedule-01-bg.webp") no-repeat center;
  background-size: contain;
  cursor: pointer;
  text-align: right;
  padding: 10px 0 0;
  z-index: 3;
}
.schedule-item-02 {
  background-image: url("../img/schedule-02-bg.webp");
}

.schedule-item-btn {
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 10;
  padding: 14px;
  width: 170px;
  height: 170px;
}
.schedule-item-02 .schedule-item-btn {
  left: auto;
  right: -10px;
}
.schedule-item-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: url("../img/schedule-01-btn-frame.webp") center no-repeat;
  background-size: contain;
  animation: rotate 15s linear infinite;
}
.schedule-item-02 .schedule-item-btn::before {
  background-image: url("../img/schedule-02-btn-frame.webp");
}

.schedule-item-02 {
  text-align: left;
}
.schedule-item-02.active .person {
  animation-delay: .5s;
}

@media (hover: hover) {
  .schedule-item-btn {
    transition: .2s ease-in-out;
  }
  .schedule-item-btn:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 1000px) {
  .sect-schedule .sect-h {
    margin: 0 0 10px;
  }
  .schedule-body {
    padding: 40px 0;
  }
  .schedule-item {
    display: block;
    width: 100%;
  }
  .schedule-item .person {
    width: 50%;
  }
  .schedule-item-01 {
    padding: 0 10% 0 0;
    margin: 0 0 20px;
  }
  .schedule-item-02 {
    padding: 0 0 0 8%;
  }
}

@media (min-width: 1001px) {
  .sect-schedule {
    margin: 160px 0 100px 0;
  }
  .sect-schedule .sect-head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-60%);
    margin: auto;
    z-index: 10;
  }
  .schedule-body {
    width: 100%;
    max-width: 980px;
    margin: auto;
    padding: 40px;
    display: flex;
  }
  .schedule-item {
    flex: 0 0 50%;
    z-index: 10;
  }
  .schedule-item .person {
    height: 90%;
    width: auto;
  }
  .schedule-item-01 {
    text-align: right;
    padding-right: 60px;
    transform: translateX(4%);
  }
  .schedule-item-02 {
    z-index: 1;
    transform: translateX(-4%);
  }
  .schedule-item-btn {
    width: 220px;
    height: 220px;
  }
  .schedule-item-btn {
    top: 0;
    left: 20px;
  }
  .schedule-item-02 .schedule-item-btn {
    left: auto;
    right: 20px;
  }

}



/* SCHEDULE MODAL */
.modal-schedule-body {
  position: relative;
  background-color: #fff;
  background-image:
    linear-gradient(#ededed 1px, transparent 1px),
    linear-gradient(90deg, #ededed 1px, transparent 1px);
  background-size: 16px 16px;
  background-position: center;
  border: 7px solid #EB626A;
}
.modal-schedule-body::after,
.modal-schedule-body::before {
  display: none;
}
#schedule-modal-02 .modal-schedule-body {
  border-color: #0054A7;
}
#schedule-modal-02 .interview-q {
  background-color: #0054A7;
}
.modal-schedule-body .interview-foot {
  background-color: #FFE9EA;
}
.modal-schedule-body.var-blue .interview-foot {
  background-color: #E0F6FF;
}

@media (max-width: 1000px) {
  .modal-schedule-body {
    margin: 0 0 8vh;
  }
}


/* スケジュール詳細 */
.modal-schedule {
  position: relative;
}
.modal-schedule-h {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 60;
}
.modal-schedule-list {
  padding: 0 20px;
}
.modal-schedule-list li {
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: 14px;
  margin: 0 0 5px;
}
.modal-schedule-list li p {
  font-size: 14px;
}
.modal-schedule-list li:last-child {
  margin: 0;
}
.modal-schedule-list h5 {
  color: #0054A7;
  font-weight: bold;
  font-size: 1.2em;
  min-width: 3em;
  text-align: right;
}
.modal-schedule-list strong {
  color: #0054A7;
  font-weight: bold;
  font-size: 1.1em;
  min-width: 5em;
  text-align: center;
}
.modal-schedule-list strong small {
  letter-spacing: -1px;
  font-size: .8em;
}

@media (max-width: 1000px) {
  .modal-schedule {
    margin: 0 10px;
    width: auto;
  }
  .modal-schedule-h {
    width: 97%;
    transform: translateY(-50%);
  }
  .modal-schedule-h img {
    width: 100%;
    max-width: 340px;
    height: auto;
  }
  .modal-schedule-list {
    position: relative;
    padding: 20px 0 0;
    margin: 0 0 20px;
    background-color: #EFFFFE;
    width: 100%;
    overflow-x: auto;
  }
  .modal-schedule-list p {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  .modal-schedule-list ul {
    width: fit-content;
    white-space: nowrap;
    padding: 20px;
  }
  .modal-schedule-fees {
    text-align: center;
  }
  .modal-schedule-fees img {
    width: 80%;
  }
}

@media (min-width: 1001px) {
  .modal-schedule {
    background-color: #EFFFFE;
    display: flex;
    align-items: center;
    padding: 20px 20px 20px 80px;
    margin: 0 20px 20px;
  }
  .modal-schedule-h img {
    width: 65px;
  }
  .modal-schedule-fees {
    margin-left: auto;
  }
  .modal-schedule-body .interview-foot {
    margin: 0;
  }
}





/* ADMISSIONS */
.sect-04 {
  background-color: #CAF7F7;
  position: relative;
  z-index: 20;
  padding: 40px 0;
}
.sect-04::before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: url("../img/wave.webp") repeat-x center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  z-index: 2;
}


.sect-04-marq {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding: 0 0 12%;
  z-index: 1;
  transform: translateY(-130%);
}


@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sect-04-marq .marquee {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 200%;
  height: auto;
  animation: marquee 20s linear infinite;
}
.sect-04-marq div {
  flex: 0 0 50%;
  height: auto;
}
.sect-04-marq div img {
  width: 100%;
  height: auto;
}
@media (min-width: 1001px) {
  .sect-04-marq {
    transform: translateY(-110%);
    padding: 0 0 6%;

  }
  .sect-04-marq div {
    flex: 0 0 25%;
  }
}


.sect-04 .sect-head {
  text-align: center;
}
.sect-04 .sect-h {
  margin: 0;
}

.admissions {
  margin: 30px auto;
  position: relative;
}

.admissions-item {
  background-color: #fff;
  background-image: url("../img/check-bg.webp");
  background-size: 15px;
  border-radius: 20px;
  box-shadow: 7px 7px #62C0B4;
  padding: 20px 20px 30px 50px;
  position: relative;
  opacity: 0;
  margin: 0 auto 40px;
  width: 320px;
  max-width: 100%;
}
.admissions-item.item-02 {
  box-shadow: 7px 7px #0086DA;
}
.admissions-item.item-03 {
  box-shadow: 7px 7px #FF9C54;
}
.admissions-item.item-04 {
  box-shadow: 7px 7px #ED7980;
}

.active .admissions-item {
  animation: fadeInUp 0.6s ease-in-out 1 forwards;
}
.active .admissions-item.item-02 {
  animation-delay: .3s;
}
.active .admissions-item.item-03 {
  animation-delay: .4s;
}
.active .admissions-item.item-04 {
  animation-delay: .5s;
}


.admissions-item::before {
  content: "";
  display: block;
  width: 20px;
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  background-image:
    radial-gradient(circle, #62C0B4 0 6px, transparent 7px);
  background-size: 25px 25px;
  background-repeat: space;
  background-position: center top;
  border-radius: 10px;
}
.admissions-item.item-02::before {
  background-image:
    radial-gradient(circle, #0086DA 0 6px, transparent 7px);
}
.admissions-item.item-03::before {
  background-image:
    radial-gradient(circle, #F18E38 0 6px, transparent 7px);
}
.admissions-item.item-04::before {
  background-image:
    radial-gradient(circle, #ED7980 0 6px, transparent 7px);
}


.admissions-item .tape {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20px, -40%);
}

.admissions-item-h {
  text-align: center;
}

.admissions-list {
  max-width: 15em;
  width: fit-content;
  margin: 1em auto;
}
.admissions-list li {
  background: url("../img/check.webp") left center no-repeat;
  background-size: 22px;
  padding: 0 0 0 26px;
  margin: 0 0 10px;
}

.admissions-item-btn {
  display: block;
  width: 11em;
  font-size: 17px;
  line-height: 1;
  padding: 5px;
  margin: auto;
  text-align: center;
  color: #000;
  background-color: #81E8DB;
  border-radius: 30px;
  border: 1px solid #000;
}
.item-02 .admissions-item-btn {
  background-color: #3FB5FF;
}
.item-03 .admissions-item-btn {
  background-color: #FF9C54;
}
.item-04 .admissions-item-btn {
  background-color: #FFA7A4;
}
.admissions-item-btn:hover {
  background-color: #fdf8af !important;
}

[class^="admissions-img-"] {
  position: absolute;
  z-index: 1;
  opacity: 0;
}
.active [class^="admissions-img-"] {
  animation: fadeInUp 0.6s ease-in-out 1 forwards;
}

.admissions-img-01,
.admissions-img-02,
.admissions-img-03 {
  display: none;
}

@media (max-width: 1000px) {
  .admissions-item .cover-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .admissions-intro {
    width: 12em;
    font-size: 15px;
    margin: auto;
  }
  .admissions-intro span {
    display: inline-block;
  }
  .admissions-head {
    width: 100%;
    max-width: 500px;
    margin: auto;
    background-image: url("../img/sect-admissions-01.webp"), url("../img/sect-admissions-02.webp");
    background-position: bottom right, bottom left;
    background-repeat: no-repeat;
    background-size: 15%;
    padding: 0 0 10px;
  }
}
@media (min-width: 1001px) {
  .admissions-item .cover-link {
    display: none;
  }
  .sect-04 .sect-head p {
    font-size: 20px;
  }

  .admissions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
  }

  .admissions-item-h {
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .admissions-item {
    flex: 0 1 430px;
    margin: 20px;
  }

  .admissions-list {
    font-size: 17px;
  }

  .admissions-img-01 {
    display: block;
    width: 155px;
    bottom: 130px;
    left: -40px;
    animation-delay: .4s;
  }
  .admissions-img-02 {
    display: block;
    width: 150px;
    top: -70px;
    right: -10px;
  }
  .admissions-img-03 {
    display: block;
    bottom: 80px;
    right: -40px;
    animation-delay: .6s;
  }

}


/* YOUTUBE */
.sect-05 {
  background: #FFB681;
  position: relative;
  padding: 80px 0 1px;
  overflow: visible;
  z-index: 21;
}
.sect-05 .container {
  position: relative;
  z-index: 10;
}
.sect-05::after,
.sect-05::before {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  pointer-events: none;
  z-index: 1;
  background: url("../img/mask-01.webp") no-repeat center;
  background-size: 100% 100%;
}
.sect-05::before {
  top: 0;
}
.sect-05::after {
  bottom: 0;
  background-image: url("../img/mask-02.webp");
}

@media (min-width: 1031px) {
  .sect-05::after,
  .sect-05::before {
    height: 300px;
  }
}

.youtube-head {
  position: relative;
  overflow: visible;
}
.youtube-head .sect-head-deco {
  position: absolute;
}
.youtube-head .sect-head-deco img {
  height: auto;
}

@media (max-width: 1030px) {
  .youtube-head {
    width: 100%;
    max-width: 600px;
    margin: auto;
  }
  .youtube-head .deco-01 {
    width: 47%;
    top: 0;
    left: 0;
    transform: translate(0, -110%);
  }
  .youtube-head .deco-02 {
    width: 48%;
    top: 0;
    right: 0;
    transform: translate(0%, -120%);
  }
}

@media (min-width: 1031px) {
  .youtube-head .deco-01 {
    display: none;
  }
  .youtube-head .deco-02 {
    top: 0;
    right: 0;
    transform: translate(40%, -60%);
  }
}


.youtube-item {
  margin: 20px;
  position: relative;
  z-index: 30;
  cursor: pointer;
  transition: .2s;
  line-height: 0;
  font-size: 0;
}
.youtube-item button {
  display: block;
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 7px 7px #62C0B4;
  transition: .2s;
}
.youtube-item-btn:hover {
  background-color: #fdf8af;
}
.youtube-item.item-02 button {
  box-shadow: 7px 7px #ED7980;
}
.youtube-item.item-03 button {
  box-shadow: 7px 7px #0054A7;
}

.youtube-item-btn {
  cursor: pointer;
}



.youtube-body .yt-deco {
  display: none;
}

@media (max-width: 1000px) {
  .youtube-body {
    width: 99%;
    max-width: 500px;
    margin: auto;
  }

}

@media (min-width: 1001px) {
  .youtube-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 0 20px;
    z-index: 33;
  }
  .youtube-item {
    flex: 0 0 45%;
  }
  .youtube-item.item-01 {
    flex: 0 0 55%;
  }

  .youtube-item button {
    padding: 15px;
  }

  .youtube-body .yt-deco {
    display: block;
    width: 330px;
    height: 200px;
    position: absolute;
    top: 15%;
    margin: auto;
    pointer-events: none;
  }

  .yt-deco.deco-01 {
    left: 0;
    transform: translateX(-40%);
  }

  .active .yt-deco.deco-01 img {
    animation: fadeInRight 0.6s ease-in-out 1 forwards;
  }

  .yt-deco.deco-02 {
    right: 0;
    transform: translateX(40%);
    width: 226px;
    height: 250px;
  }

  .youtube-item.item-02 button {
    transform: rotate(5deg);
  }

  .youtube-item.item-03 button {
    transform: rotate(-5deg);
  }

  .youtube-item.item-01 {
    opacity: 0;
  }
  .active .youtube-item.item-01 {
    animation: fadeInDown 0.6s ease-in-out 1 forwards;
    animation-iteration-count: 1;
  }

  .youtube-item.item-02 {
    opacity: 0;
  }
  .active .youtube-item.item-02 {
    animation: fadeInRight 0.6s ease-in-out 1 forwards;
    animation-iteration-count: 1;
  }

  .youtube-item.item-03 {
    opacity: 0;
  }
  .active .youtube-item.item-03 {
    animation: fadeInLeft 0.6s ease-in-out 1 forwards;
    animation-iteration-count: 1;
  }

}


/* YOUTUBE くぎり */

.youtube-footer {
  text-align: center;
  margin: 40px 0;
  position: relative;
}

@media (max-width: 1030px) {
  .youtube-footer {
    max-width: 600px;
    width: 100%;
    margin: auto;
    padding: 40px 0 160px 0;
  }
  .youtube-footer img {
    width: 100%;
    height: auto;
  }
  .youtube-footer .deco-01 {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 200px;
  }
  .youtube-footer .deco-02 {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 120px;
  }
}

@media (min-width: 1031px) {
  .youtube-footer .deco-02 {
    display: none;
  }
  .youtube-footer .deco-01 {
    position: absolute;
    bottom: -150px;
    left: -110px;
    z-index: 1;
  }
}


/* SHORT MOVIE */

.sect-06 {
  background-color: #FF974B;
  padding: 40px 0 60px;
}
.sect-06 .sect-h {
  z-index: 80;
}
.shorts-slider .slick-track {
  padding-bottom: 10px;

}

.shorts-slider-item {
  background-color: #fff;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 7px 7px #ED7980;
  box-sizing: border-box;
}
.shorts-slider-item button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  width: 100%;
}
.shorts-slider-item button img {
  box-sizing: border-box;
  width: 100%;
  height: auto;
}
.shorts-slider-item.item-02 {
  box-shadow: 7px 7px #0054A7;
}
.shorts-slider-item.item-03 {
  box-shadow: 7px 7px #FEDC5E;
}
.shorts-slider-item.item-04 {
  box-shadow: 7px 7px #62C0B4;
}
.shorts-slider-item.item-05 {
  box-shadow: 7px 7px #F06821;
}

.shorts-slider-item:hover {
  background-color: #fdf8af;
}

.shorts-slider .slick-dots {
  padding: 40px 0 0;
}


.shorts-footer {
  text-align: center;
  position: relative;
}
.shorts-deco {
  position: absolute;
  bottom: 0;
}
.shorts-deco.deco-01 {
  left: 0;
}
.shorts-deco.deco-02 {
  right: 0;
}

@media (max-width:1000px) {
  .shorts-footer {
    padding: 30px 0 170px;
    margin: 0 auto 20px;
    max-width: 600px;
    width: 100%;
  }
  .shorts-deco.deco-01 {
    width: auto;
    height: 150px;
    left: 10%;
  }
  .shorts-deco.deco-02 {
    width: auto;
    height: 150px;
    right: 10%;
  }
  .shorts-slider .slick-dots {
    padding: 10px 0 20px 0;
  }
}
@media (min-width:1001px) {

  .sect-06 {
    padding: 60px 0 100px;
  }
  .shorts-footer {
    padding: 60px 0;
  }
}
@media (min-width: 1801px) {
  .shorts-slider {
    max-width: 1800px;
    margin: 10px auto;
    position: relative;
  }
  .shorts-slider::before,
  .shorts-slider::after {
    content: "";
    display: block;
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 40;
  }
  .shorts-slider::before {
    left: 0;
    background: linear-gradient(to right, #FF974B, transparent);
  }
  .shorts-slider::after {
    right: 0;
    background: linear-gradient(to left, #FF974B, transparent);
  }
}


/* モーダル */

body.modal-open {
  margin: auto;
  left: 0;
  right: 0;
}
body.modal-open #menuBtn {
  display: none;
}

@media (min-width:901px) {
  body.modal-open {
    padding-right: 15px;
  }
}

.modal-backdrop {
  position: fixed;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: none;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 888;
  padding-bottom: 30px;
  padding-bottom: env(safe-area-inset-bottom);
  pointer-events: none;
  display: block;
}

.modal-backdrop.open {
  display: block;
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  display: block;
  position: relative;
  width: 96%;
  max-width: 1120px;
  max-height: 80%;
  margin: 4vh auto;
}

@media (max-width:600px) {
  .modal-backdrop {
    display: none;
    inset: 0;
    overflow: hidden;
    overscroll-behavior: none;
  }
  .modal-content {
    width: 100%;
    max-height: 96dvh;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 20px 10px 10px;
    margin: 0;
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (min-width:901px) {
  .modal-backdrop {
    overflow: hidden;
    overflow-y: auto;
  }
}

.modal-close-btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
  line-height: 0;
  transition: .2s;
  width: 40px;
  height: 40px;
}

@media (min-width:901px) {
  .modal-close-btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
    width: 60px;
    height: 60px;
  }
}


/* YOUTUBE MODAL */
.modal-youtube-content {
  overscroll-behavior: none;
  width: 96%;
  max-width: 800px;
  height: fit-content;
  max-height: 80%;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 10vh;
  left: 0;
  right: 0;
}
.modal-youtube-content iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

/* SHORTS MODAL */
.modal-shorts-content {
  display: block;
  overscroll-behavior: none;
  width: fit-content;
  max-width: 800px;
  height: fit-content;
  max-height: 90dvh;
  aspect-ratio: 9/16;
  margin: auto;
  padding: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}
iframe.shortvideo {
  aspect-ratio: 9/16;
  width: auto;
  height: 70vh;
}


/* INFORMATION */
.sect-07 .sect-h {
  transform: translateY(-40%);
  margin: 0;
}
.sect-07 .sect-head {
  margin: 0 0 -70px;
}
.info-links {
  margin: 40px 0 0;
}
.info-links a {
  display: block;
  opacity: 0;
  position: relative;
}
.info-links {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width:900px) {

  .sect-07 .sect-h {
    transform: translateY(-50%);
    margin: 0;
  }
  .sect-07 .sect-head {
    margin: 0 0 -80px;
  }

  .info-links {
    width: 100%;
    max-width: 600px;
    margin: 50px auto 0;

    justify-content: space-between;
    align-items: flex-end;
  }
  .info-links a {
    display: block;
    margin: 0 0 10px;
    flex: 0 0 48%;
  }
  .info-links a:nth-of-type(5),
  .info-links a:nth-of-type(6) {
    flex: 0 0 100%;
  }
}

@media (min-width:901px) {
  .info-links {
    align-items: flex-end;
    justify-content: center;
  }
  .info-links a {
    flex: 1 1 22%;
    margin: 10px;
  }
  .info-links a:nth-of-type(5),
  .info-links a:nth-of-type(6) {
    flex: 1 1 45%;
  }
}



.info-links a img {
  transition: .2s;
}
.info-links a:hover img {
  opacity: .7;
}

.active .info-links a {
  animation: fadeInRight 0.6s ease-in-out 1 forwards;
}
.active .info-links a:nth-of-type(2) {
  animation-delay: .2s;
}
.active .info-links a:nth-of-type(3) {
  animation-delay: .4s;
}
.active .info-links a:nth-of-type(4) {
  animation-delay: .6s;
}
.active .info-links a:nth-of-type(5) {
  animation-delay: .2s;
}
.active .info-links a:nth-of-type(6) {
  animation-delay: .4s;
}



/* INFO NEW */
.info-links a.new::after {
  content: "";
  display: block;
  width: 45%;
  height: auto;
  aspect-ratio: 4/3;
  background: url("../img/new.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 2%;
  transform: translateY(-48%);
  animation: infoNewPulse 0.6s ease-in-out infinite;
}
@keyframes infoNewPulse {
  0%,
  100% {
    transform: translateY(-55%) scale(1);
  }
  50% {
    transform: translateY(-55%) scale(1.1);
  }
}


/* ACCESS */
.sect-08 {
  margin: 60px 0 0;
}
.access-head {
  position: relative;
}
.access-head-right {
  display: none;
}

.access-head-link {
  opacity: 0;
}
.active .access-head-link {
  animation: fadeInRight 0.6s ease-in-out 1 forwards;
}

.access-head-link a {
  display: block;
  position: relative;
}
@media (hover:hover) {
  .access-head-link a:hover img.off {
    opacity: 0;
  }
}

@media (max-width:1000px) {
  .access-head .sect-h {
    margin: 0 0 10px;
  }
  .access-head-link img.on {
    display: none;
  }
  .access-head-link {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    margin: auto;
  }
  .access-head-link a {
    flex: 0 0 78%;
  }
  .access-head-link a img {
    display: block;
    width: 100%;
    height: auto;
  }
  .access-head-link>img {
    width: 22%;
    height: auto;
    flex: 1;
    margin: 0 0 0 -5%;
  }

}

@media (min-width:1001px) {
  .access-head-right {
    display: block;
    position: absolute;
    top: 0;
    left: -50px;
    opacity: 0;
    width: 192px;
    height: auto;
  }
  .active .access-head-right {
    animation: fadeInUp 0.6s ease-in-out 1 forwards;
  }

  .access-head {
    padding: 40px 0 0;
  }

  .access-head-link {
    position: absolute;
    top: 0;
    right: -100px;
    opacity: 0;
  }
  .access-head-link a {
    width: 300px;
    height: 100px;
  }

  .access-head-link a img {
    position: absolute;
    top: 0;
    left: 0;
    transition: .2s;
  }

}


/* ACCESS MAP */
.access-map {
  width: 100%;
  height: 600px;
  margin: 30px 0 0;
}
p.access-text {
  margin: 20px auto;
  font-size: 14px;
  text-align: center;
}
p.access-text span {
  display: inline-block;
}
@media (min-width:901px) {
  p.access-text {
    margin: 50px auto;
    font-size: 15px;
    width: fit-content;
    margin: 50px auto;
    font-size: 20px;
  }
}


/* スクールバス時刻表 */

.access-foot {
  display: block;
  position: relative;
  width: 1020px;
  max-width: 98%;
  margin: auto;
  text-align: center;
}

.active .access-foot-bus {
  animation: fadeInLeft 0.6s ease-in-out 1 forwards;
}

@media (max-width:900px) {
  .bus-btn .on {
    display: none;
  }
  .bus-btn {
    width: fit-content;
    display: block;
    margin: 0 auto 20px;
  }
  .access-foot {
    width: 96%;
    max-width: 500px;
    margin: auto;
  }
}
@media (min-width:901px) {

  .bus-btn {
    display: block;
    position: relative;
    width: 360px;
    height: 100px;
    margin: auto;
    z-index: 10;
  }
  .bus-btn img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: .2s;
  }
  .bus-btn:hover img:nth-of-type(2) {
    opacity: 0;
  }

  .access-foot-bus {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    z-index: 1;
  }

}


/* OFFICIAL ACCOUNT */

@keyframes fadeInPopUp {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(12px);
  }
  70% {
    opacity: 1;
    transform: scale(1.05) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.sect-sns {
  padding: 20px 10px;
  background-color: #62C0B4;
  margin: 50px auto;
}

.sns-h {
  opacity: 0;
  text-align: center;
  margin: 0 0 10px;
}

.active .sns-h {
  animation: fadeInUp 0.4s ease-in-out 1 forwards;
}

.sns-h2 {
  opacity: 0;
  text-align: center;
  margin: 0 0 30px;
}
.active .sns-h2 {
  animation: fadeInUp 0.3s ease-in-out 1 forwards;
  animation-delay: .2s;
}

.sns-links {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  width: 100%;
  margin: auto;
}

.sns-links li {
  flex: 0 1 110%;
  aspect-ratio: 1/1;
  opacity: 0;
  margin: 0 5px;
}
.active .sns-links li {
  animation: fadeInPopUp 0.3s ease-out 1 forwards;
}
.active .sns-links li:nth-child(2) {
  animation-delay: .2s;
}
.active .sns-links li:nth-child(3) {
  animation-delay: .4s;
}
.active .sns-links li:nth-child(4) {
  animation-delay: .6s;
}
.active .sns-links li:nth-child(5) {
  animation-delay: .8s;
}

.sns-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  aspect-ratio: 1/1;
  border: 10px solid #fff;
}

@media (max-width:900px) {

  .sns-links li a img {
    width: 60%;
    height: auto;
  }
  .sns-h img {
    width: 65%;
    max-width: 300px;
    height: auto;
  }
  .sns-h2 {
    margin: 0 0 15px;
  }
  .sns-h2 img {
    width: 55%;
    max-width: 250px;
    height: auto;
  }

}

@media (min-width:901px) {

  .sect-sns {
    padding: 50px 10px;
  }

  .sns-links li {
    margin: 0 10px;
  }

  .sns-links li a:hover {
    border-color: #fdf8af;
  }

  .sns-links li a {
    padding: 15px;
  }

}


/* フッター */
.footer {
  background-color: #E5FFFF;
}

@media (max-width:900px) {
  .footer-body {
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
  }
  .footer-logo {
    display: block;
    margin: 0 auto 20px;
    width: 200px;
  }
}

@media (min-width:901px) {
  .footer-body {
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 98%;
    max-width: 800px;
    margin: auto;
    font-size: 16px;
  }
  .footer-body p {
    padding: 0 0 0 40px;
  }
  .footer-logo {
    display: block;
    width: 280px;
  }
}

.footer-copyright {
  background-color: #62C0B4;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  text-align: center;
  padding: 30px 10px;
}