@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  /* font-family: "Zen Old Mincho", serif; */
  font-family: "Zen Maru Gothic", sans-serif;

}

a {
  color: #333;
  text-decoration: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

/* *{
  border: 1px solid red;
} */

/* 横スクロール防止 */
/* html, body {
  overflow-x: hidden; 
} */

/* ★common */
.container {
  width: 80%;
  /* height:300px; */
  margin-left: 10%;
  margin-top: 100px;
  margin-bottom: 30px;
}

.container .section-title {
  font-size: 1.5rem;
}

.container .englishname {
  margin-top: 6px;
  margin-left: 16px;

}

.container .text {
  margin-top: 16px;
  line-height: 1.7rem;
}

#preloader {
  position: fixed;
  inset: 0;
  background: url("../img/loading-bg.jpg") center center / cover no-repeat;
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__inner {
  text-align: center;
}

.preloader__logo {
  width: 180px;
  height: auto;
  margin-bottom: 16px;
}

.preloader__brand {
  font: 700 20px/1 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.preloader__text {
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.preloader__text .dot {
  animation: blink 1s infinite;
  display: inline-block;
}

.preloader__text .dot:nth-child(2) {
  animation-delay: .2s;
}

.preloader__text .dot:nth-child(3) {
  animation-delay: .4s;
}

@keyframes blink {

  0%,
  20% {
    opacity: 0;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

.preloader__spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #eee;
  border-top-color: #F7B402;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

html.preloading,
body.preloading {
  overflow: hidden;
}

.preloader__logo {
  animation: logoFloat 5s ease-in-out infinite;
  opacity: 0;
  transform: translateY(10px);
  animation: logoFloat 1s ease-in-out infinite,
    logoFadeIn 3s ease-out forwards;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader__text.pop {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.1em;
}

.preloader__text.pop span {
  display: inline-block;
  animation: bounce 1s infinite;
}

.preloader__text.pop span:nth-child(1) {
  animation-delay: 0s;
}

.preloader__text.pop span:nth-child(2) {
  animation-delay: 0.1s;
}

.preloader__text.pop span:nth-child(3) {
  animation-delay: 0.2s;
}

.preloader__text.pop span:nth-child(4) {
  animation-delay: 0.3s;
}

.preloader__text.pop span:nth-child(5) {
  animation-delay: 0.4s;
}

.preloader__text.pop span:nth-child(6) {
  animation-delay: 0.5s;
}

.preloader__text.pop span:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }
}

.page-bg {
  position: fixed;
  inset: 0;
  background-color: #F5EFCF;
  z-index: -1;
  pointer-events: none;
}

body {
  background: transparent;
}




/* ★header */
.seo {
  display: none;
}

header {
  padding-top: 30px;
  padding-left: 30px;
  position: relative;
  z-index: 10;
}

header .site-title {
  width: 100px;
  margin: 0;
}

header .site-title .logo1 {
  width: 100px;
  position: absolute;
}

header .site-title a {
  display: block;
}

.hamburger {
  width: 90px;
  height: 90px;
  background-color: #F7B402;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  cursor: pointer;
  transition: 0.3s;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger span {
  width: 50%;
  left: 25%;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 36%;
}

.hamburger span:nth-child(2) {
  top: 50%;
}

.hamburger span:nth-child(3) {
  top: 64%;
}

.open .hamburger span:nth-child(1) {
  top: 47%;
  background: #fff;
  transform: rotate(-45deg);
}

.open .hamburger span:nth-child(2),
.open .hamburger span:nth-child(3) {
  top: 47%;
  background: #fff;
  transform: rotate(45deg);
}


#navi {
  width: 100%;
  height: 100vh;
  background: url("../img/menu-bg.jpg") center center /cover no-repeat;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  text-align: center;
  transition: all 0.6s ease;
  opacity: 0;
  visibility: hidden;
}

.open #navi {
  opacity: 1;
  visibility: visible;
}

#navi .logo2 {
  width: 100px;
  position: absolute;
  top: 30px;
  left: 30px;
}

#navi .menu {
  margin: 80px 0 40px;
}

#navi .menu li {
  margin-bottom: 20px;
}

#navi .menu a {
  color: #fff;
  font-weight: bold;
}

#navi .btn {
  width: 250px;
  border: solid 1px #fff;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 15px 0;
  transition: 0.3s;
  position: relative;
}

#navi .btn::after {
  position: absolute;
  content: "";
  width: 250px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  padding: 15px 0;
  right: -6px;
  bottom: -6px;
}

#navi .btn:hover {
  background-color: #fff;
  color: #F7B402;
}

/* main */

.fv {
  position: relative;
  margin: 10% auto;
  text-align: center;
  height: 70vh;
  width: 60%;
}

.fv-image,
.fv-illust,
.fv-logo {
  position: absolute;
}

.fv-image-1 {
  width: 40%;
  top: 5%;
  left: 5%;
}

.fv-image-2 {
  width: 50%;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
}

.fv-image-3 {
  width: 40%;
  bottom: 5%;
  left: 2%;
}

.fv-illust-1 {
  width: 20%;
  top: 10%;
  right: 10%;
}

.fv-illust-2 {
  width: 20%;
  bottom: 5%;
  left: 60%;
}

.fv-logo {
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* sub-copy */
.sub-copy-text {
  text-align: center;
  margin: 10px auto 20px;
  margin-bottom: 100px;
}

.sub-copy-main {
  margin-left: 10%;
}

.sub-copy-main p {
  width: fit-content;
  display: block;
  font-size: 24px;
  color: #fff;
  background-color: #00A3DF;
  padding: 10px 20px;
}

.group-sub {
  display: flex;
}

.guide-illust {
  width: 25%;
  /* margin-left:30%; */
  text-align: left;
}

.copy-fadein {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s ease-out;
  margin-top: 1px;
}

.copy-fadein.show {
  opacity: 1;
  transform: translateY(0);
}


/* mainlogo */
.mainlogo {
  width: min(60vw, 600px);
  /* 画面幅の60%か520pxの小さい方 */
  margin-top: 150px;
}

.mainlogo img {
  display: block;
  width: 70%;
  margin: 0 auto;
  height: auto;
}

/* イラスト */
.illust {
  position: absolute;
  bottom: -40px;
  width: 120px;
}

.illust img {
  width: 100%;
  height: auto;
}

/* 左側のイラスト */
.illust-left {
  left: -140px;
  bottom: -10px;
}

/* 右側のイラスト */
.illust-right {
  right: -140px;
  bottom: -60px;
}

@keyframes illustPopIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes illustBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes illustSway {

  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }

  25% {
    transform: rotate(-2deg) translateY(2px);
  }

  75% {
    transform: rotate(2deg) translateY(4px);
  }
}

.illust-left img {
  animation:
    illustPopIn .8s ease-out .1s both,
    illustBob 3.6s ease-in-out .9s infinite;
  transform-origin: 50% 90%;
}

.illust-right img {
  animation:
    illustPopIn .8s ease-out .1s both,
    illustSway 5s ease-in-out .9s infinite;
  transform-origin: 50% 90%;
}

@media (prefers-reduced-motion: reduce) {

  .illust-left img,
  .illust-right img {
    animation: none !important;
  }
}

/* ★mainvisual */
.mainvisual {
  width: min(60vw, 600px);
  position: relative;
  z-index: 0;
  /*logo1よりも後ろに*/
  aspect-ratio: 16 / 9;
}

.mainvisual .fade li {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fade 15s infinite;
}


.mainvisual .fade li:nth-child(1) {
  animation-delay: 0s;
}


.mainvisual .fade li:nth-child(2) {
  animation-delay: 5s;
}


.mainvisual .fade li:nth-child(3) {
  animation-delay: 10s;
}

.mainvisual .fade li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  45% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.main-copy {
  text-align: center;
  margin: 40px 0;
  color: #00A3DF;
}

.main-copy .line1 {
  font-size: 1rem;
  margin-bottom: 20px;
}

.main-copy .line2 {
  font-size: 1rem;
  line-height: 1.6;
}

/*promotion-movie1 */
.animation-box1 {
  background: #F7B402;
  height: 800px;
}

.box-title1 {
  padding: 50px;
  text-align: center;
  color: #fff;
}

.movie-frame1 {
  display: block;
  margin: 0 auto;
  background-color: #F7B402;
  width: 315px;
  height:auto;
}

.pro-movie1 {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}


/* ★submain */
.submain .submain-img {
  background-image: url(../img/fixedbg.jpg);
  position: relative;
}

.fixed-bg {
  width: 100%;
  margin: 0 auto;
  height: 300px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  margin-top: 0px;
}

.submain .date {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  filter: drop-shadow(1px 1px 5px #c0c0c0);
  position: absolute;
  top: 44%;
}

/* ★timetable */
.container .topics {
  display: flex;
  justify-content: left;
}

.timetable-flex {
  display: flex;
}

/* GSAPに伴い追加 */
#timetable {
  /* position: relative; */
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  margin-bottom: 5%;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: calc(100vw / 6);
  padding-right: 16px;
}

.scroll-infinity__item img {
  width: 90%;
}

.items {
  margin: 0 auto;
  /* height: 5100px; */
}

.slide-wrapper {
  /* height: 600px; */
  margin-bottom: 20px;
  position: sticky;
  top: 30px;
}

.slide {
  width: 100%;
  /* height: 600px; */
  max-width: 800px;
  background-color: #F5EFCF;
  margin: 0 auto;
  margin-bottom: 40px;
}

.slide__inner {
  width: 100%;
}

.slide-image {
  position: relative;
  height: auto;
  width: 100%;
  text-align: center;
}

.slide-image img {
  width: 100%;
  height: auto;
}

.program-title {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333;
  font-size: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
  z-index: 10;
}

.program-text {
  /* height: 50px; */
  background-color: #F5EFCF;
  padding: 20px 8px;
  text-align: center;
}

/* 
.spacer {
  height: 4700px;
} */

.schedule {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .02em;
}

/*pickup*/
.sec-title {
  text-align: center;
  margin-bottom: 50px;
}

#pickup {
  width: 100%;
  padding: 50px 0 100px 0;
  border-top: 1px solid #F7B402;
}

#pickup .slick-area {
  font-size: 0;
}

.slick-slide {
  margin: 0 15px;
}

/*promotion-movie2*/
.animation-box2 {
  background: #00A3DF;
  height: 800px;
}

.box-title2 {
  padding:50px 0;
  text-align: center;
  color: #fff;
}

.movie-frame2 {
  display: block;
  margin: 0 auto;
  background-color: #00A3DF;
  width: 315px;
  height:auto;
}

.pro-movie2 {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}


/* application-text */
.application-text {
  margin-top: 100px;
}

/* applicatiion-form */
.form {
  margin: 100px 0;
}

#application-form {
  position: relative;
  min-height: 300px;
}

#application-form .application-illust {
  position: absolute;
  right: 8%;
  top: 20%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

#application-form .application-illust img {
  display: block;
  width: 150px;
  height: auto;
}

@keyframes pulseIllust {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

}

#application-form .application-illust img {
  animation: pulseIllust 4s ease-in-out infinite;
}

/* ★form-btn */

.btn-application {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  background: #F7B402;
  padding: 14px 22px;
  border: 2px solid #F7B402;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  color: #fff;

  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.btn-application>span {
  display: block;
}

.btn-application::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  transition: transform .35s ease;
  pointer-events: none;
}

.btn-application:hover::before {
  transform: translateX(0);
}

.btn-application:hover {
  background-color: rgba(247, 180, 2, 0);
  color: #000;
  border-color: #F7B402;
}

.btn-application:focus-visible {
  outline: 3px solid rgba(0, 102, 255, .4);
  outline-offset: 3px;
}


/* form-btn */
#form-btn {
  /* どこかの記述が悪さをしていてマージンが空きすぎているのでマイナスで強制的に詰める、
  犯人捜しは後回し。レスポンシブの時だけ再度調整 */
  margin-top: -100px;
  margin-bottom: 100px;
}

#form-btn .form {
  text-align: center;
}


/* ★esmo-comments */

.esmo-comments {
  --speed: 20s;
  --gap: 120px;
  --avatar: 160px;
  --bubble-pad: 14px 18px;
  --bubble-radius: 14px;
  --red: #F7B402;
  --text: #111;
  padding-block: 32px 48px;
}

.ec__title {
  border-top: 1px solid #F7B402;
  text-align: center;
  color: var(--text);
  margin: 0 auto;
  display: block;
  padding-top: 50px;
  padding-bottom: 50px;
}

.ec__person img {
  margin: 0 auto;
}

.ec__viewport {
  position: relative;
  padding-bottom: 50px;
  border-bottom: 1px solid #F7B402;
}

.ec__track-wrap {
  display: flex;
  overflow: hidden;
}

.ec__track {
  display: flex;
  align-items: flex-end;
  gap: var(--gap);
  /* animation: ycMarquee var(--speed) linear infinite; */
  animation: infinity-scroll-left 80s infinite linear 0s both;
  will-change: transform;
  padding: 8px 0 8px calc(100vw/10);
}


@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }

}

.ec__item {
  flex: 0 auto;
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  row-gap: 24px;
  width: calc(100vw / 6);
}

.ec__bubble {
  position: relative;
  margin: 0;
  padding: var(--bubble-pad);
  background: #fff;
  border: 1px solid var(--red);
  border-radius: var(--bubble-radius);
  color: var(--red);
  font: 700 0.95rem/1.7, ;
  max-width: 320px;
  text-align: left;
}

.ec__bubble::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  transform: rotate(45deg);
  left: 70%;
  bottom: -9px;
}

.ec__person {
  margin: 0;
  text-align: center;
}

.ec__person img {
  height: var(--avatar);
  width: auto;
  object-fit: contain;
  display: block;
}

.ec__person figcaption {
  margin-top: 10px;
  line-height: 1.3;
  color: #333;
  font-family: "Zen Maru Gothic", sans-serif;
}

.ec__person .role {
  display: block;
  font-size: .8rem;
  opacity: .7;
}

.ec__person .name {
  display: block;
  font-weight: 700;
  font-size: .9rem;
}

/*faq */
.faq-acc {
  width: min(900px, 100%);
  margin: 32px auto 0;
  display: grid;
  gap: 12px;
}

/* details 全体 */
.faq-acc__item {
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  overflow: clip;
}

.faq-acc__q {
  list-style: none;
  cursor: pointer;
  font: 1.2rem;
  padding: 16px 52px 16px 16px;
  position: relative;
}

.faq-flex {
  display: flex;
}

.faq-image {
  width: 30%;
  margin-left: 10%;
  position: relative;
}

.faq-image1 {
  position: absolute;
  top: 0;
  right: 5%;
  width: 70%;
}

.faq-image2 {
  position: absolute;
  top: 280px;
  left: 0;
  width: 60%;
}



.faq-acc__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}

.faq-acc__icon::before,
.faq-acc__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #666;
  transition: transform .25s ease, opacity .2s ease;
}

.faq-acc__icon::before {
  width: 18px;
  height: 2px;
}

.faq-acc__icon::after {
  width: 2px;
  height: 18px;
}


#faq .container {
  height: auto;
  margin-bottom: 40px;
}

#faq .faq-acc {
  margin-bottom: 32px;
}

.faq-acc__a {
  padding: 0 16px 16px;
  color: #333;
  line-height: 1.8;
  font-size: .95rem;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}

.faq-acc__a>* {
  overflow: hidden;
}


.faq-acc__item[open] .faq-acc__a {
  grid-template-rows: 1fr;
}

.faq-acc__item[open] .faq-acc__icon::after {
  opacity: 0;
  transform: scaleY(.4);
}


.faq-acc__item:hover {
  border-color: #ccc;
}

.faq-acc__q:focus {
  outline: none;
}

.faq-acc__q:focus-visible {
  outline: 3px solid rgba(0, 102, 255, .25);
  border-radius: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-acc__a {
    transition: none;
  }

  .faq-acc__icon::before,
  .faq-acc__icon::after {
    transition: none;
  }
}

/*Access*/
.map-wrap {
  width: 50%;
  margin: 0 auto;
  border-radius: 12px;
  margin-top: 0px;
  margin-bottom: 100px;
}

.map-wrap img {
  margin-bottom: 50px;
}

/*footer*/
footer {
  text-align: center;
  padding: 20px 0;
  border-top:1px solid #F7B402;
}

footer .footer-text {
  margin: 0;
  color: #555;
  font-size: 12px;
}

footer .contact img {
  width: 170px;
}

/* responsiveめちゃくちゃ途中 */
@media(min-width:1500px) {
  .fv-illust-1 {
    width: 20%;
    top: 5%;
    right: 10%;
  }

  .fv-illust-2 {
    width: 20%;
    bottom: 0%;
    left: 60%;
  }

  .map-wrap img {
    padding: 10%;
  }

  .scroll-infinity {
    display: none;
  }

  .timetable-image {
    margin-left: 20%;
  }

  footer .contact img {
    width: 200px;
  }
}

@media (max-width: 1024px) {

  .fv {
    width: 80%;
    height: 100vh;
    margin: 120px auto 40px;
  }

  .scroll-infinity__item {
    width: calc(100vw / 4);
  }

  .faq-flex {
    flex-direction: column;
  }

  .faq-image {
    height: 70vh;
    width: 80%;
    margin-left: 10%;
    position: relative;
  }

  .faq-image1 {
    position: absolute;
    top: 0;
    right: 5%;
    width: 50%;
  }

  .faq-image2 {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 40%;
  }

}

@media (max-width: 768px) {

  .fv {
    width: 70%;
    height: 100vh;
    margin: 100px auto 40px;
  }

  .fv-image-1 {
    width: 60%
  }

  .fv-image-2 {
    width: 40%;
  }

  .fv-image-3 {
    width: 70%;
  }

  .fv-logo {
    width: 90%;
  }

  .fv-illust-1 {
    width: 33%;
    top: 10%;
    right: 10%;
  }

  .fv-illust-2 {
    width: 33%;
    bottom: 5%;
    left: 60%;
  }

  .slide {
    padding-right: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .slide img {
    position: relative;
  }


  .timetable-flex {
    flex-direction: column;
  }

  .responsive-text {
    margin-bottom: 50px;
  }

  .scroll-infinity__item {
    width: calc(100vw / 3);
  }

  .esmo-comments {
    --speed: 10s;
    --gap: 72px;
    --avatar: 140px;
  }

  .ec__bubble {
    font-size: .9rem;
    max-width: 280px;
  }

  .ec__bubble::after {
    left: 65%;
  }

  .ec__item {
    width: calc(100vw / 2);
  }

  #application-form .application-illust {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
  }

  .faq-flex {
    flex-direction: column;
  }

  .faq-image {
    /* height:30vh;
  width: 80%;
  margin-left: 10%;
  position: relative; */
    display: none;
  }

  /* 
.faq-image1 {
  position: absolute;
  top: -20%;
  right: 20%;
  width: 90%;
  padding:15%;
}

.faq-image1,
.faq-image2 {
  display:none;
} */
  .guide-illust {
    width: 30%;
  }

  .container .section-title {
    font-size: 1.2rem;
  }

  .container .englishname {
    margin-top: 3px;
  }

  .sub-copy-main {
    width: 70%;
    margin-left: 0;
  }

  .sub-copy-main p {
    font-size: 20px;
  }

  .sub-copy-main2 {
    width: 90%;
  }

}

@media(max-width:560px) {
  .submain .date {
    font-size: 1.2rem;
  }

  .sub-copy-text {
    font-size: 0.8rem;
  }

  .container .section-title {
    font-size: 1.1rem;
  }

  .container .englishname {
    margin-top: 2px;
    margin-left: 16px;
  }

  .container .text {
    font-size: 0.8rem;
    margin-top: 16px;
    line-height: 1.4rem;
  }

  .program-title {
    font-size: 18px;
  }

  .program-text {
    font-size: 0.8rem;
  }

  .hamburger {
    width: 60px;
    height: 60px;
  }


  .fv {
    position: relative;
    margin: 10% auto;
    text-align: center;
    height: 50vh;
    width: 70%;
  }

  .sub-copy-main p {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ec__track {
    animation: none;
  }
}

/*MAP*/
@media (max-width: 768px) {
  .map-wrap {
    width: 90%;
  }

  /* スマホはほぼ全幅 */
}

/* mainlogo はローディング中は非表示 */
.fv-logo img {
  opacity: 0;
  transform: translateY(10px);
}

/* mainimage はローディング中は非表示 */
.fv-image img {
  opacity: 0;
  transform: translateY(10px);
}

/* illusts はローディング中は非表示 */
.fv-illusts img {
  opacity: 0;
  transform: translateY(10px);
}