@charset "UTF-8";
/*===========================================================
# mixins
=========================================================== */
/*===========================================================
# font
=========================================================== */
@import url("https://fonts.googleapis.com/css2?family=Dokdo&family=M+PLUS+Rounded+1c:wght@500;700;800&display=swap");
/*===========================================================
# colors
=========================================================== */
/*===========================================================
# common - 全体に共通するスタイル
=========================================================== */
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}

@media (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #444444;
  line-height: 2;
  letter-spacing: .4mm;
  background: #66d1fe;
}

@media (min-width: 768px) and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  body {
    letter-spacing: .1mm;
    font-size: 14px;
    background-color: #66d1fe;
  }
}

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

a[href$=".pdf"]:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 34px;
  margin-left: 7px;
  background: url(../img/pdf-icon.png) no-repeat center center/25px auto;
}

@media (max-width: 767px) {
  a[href$=".pdf"]:after {
    background: url(../img/pdf-icon.png) no-repeat center center/22px auto;
  }
}

img {
  width: 100%;
  height: auto;
  border: none;
}

.inner {
  max-width: 1200px;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .inner {
    padding: 0 30px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .inner {
    padding: 0 15px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    margin: 0 auto;
  }
}

.util-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #764C4C;
  text-align: center;
  padding: 50px 0 0 0;
  background: url(../img/clouds_small.png) top center/12% 35% no-repeat;
  margin-bottom: 50px;
  position: relative;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .util-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .util-title {
    font-size: 24px;
    background: url(../img/clouds_small.png) top center/25% 40% no-repeat;
    padding-top: 30px;
  }
}

.util-title::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Dokdo", "cursive", sans-serif;
  color: #F673AA;
  opacity: 75%;
  font-size: 30px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .util-title::after {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .util-title::after {
    font-size: 22px;
  }
}

.util-button {
  display: inline-block;
  padding: 6px;
  border-bottom: solid 4px #7dcfd4;
  border-radius: 50px;
  background-color: #56e7ef;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 22px;
  text-align: center;
  font-weight: 800;
  color: #FFFACF;
  max-width: 350px;
  width: 100%;
  letter-spacing: 0.2mm;
  line-height: 1.3;
  -webkit-transition: background-color 0.4s ease 0s;
  transition: background-color 0.4s ease 0s;
  position: relative;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .util-button {
    max-width: 260px;
    font-size: 16px;
    padding: 4px;
  }
}

@media (max-width: 767px) {
  .util-button {
    max-width: 260px;
    font-size: 16px;
    padding: 4px;
  }
}

.util-button:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: none;
  /*線を消す*/
}

.util-button:not(.-submit):hover {
  background-color: #FFFACF;
  color: #56e7ef;
}

.util-button.cream {
  background-color: #FFFACF;
  color: #7dcfd4;
}

.util-button.cream:not(.-submit):hover {
  background-color: #56e7ef;
  color: #FFFACF;
}

.util-button .fa-solid,
.util-button .fas {
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 30px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .util-button .fa-solid,
  .util-button .fas {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .util-button .fa-solid,
  .util-button .fas {
    font-size: 20px;
  }
}

.wrap {
  overflow: hidden;
}

/*===========================================================
# drawer
=========================================================== */
@media (max-width: 767px) {
  .drawer--right .drawer-hamburger {
    right: 10px;
    top: 12px;
    z-index: 100;
  }
  .drawer-hamburger-icon {
    width: 26px;
    height: 20px;
    background: transparent url(../img/sp/hamburger.png) no-repeat center center/contain;
    margin-top: 0;
    margin-left: auto;
    z-index: 102;
  }
  .drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
    opacity: 0;
  }
  .drawer-open .drawer-hamburger-icon {
    width: 21px;
    height: 21px;
    background: transparent url(../img/sp/batsu.png) no-repeat center center/contain;
  }
  .drawer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 101;
    margin: 0 auto;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .drawer-nav {
    padding: 30px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .drawer-overlay {
    background: #000;
    opacity: 0.7;
    z-index: 49;
  }
}

/*===========================================================
# header
=========================================================== */
.header {
  background-color: #66d1fe;
  height: 140px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header {
    height: 110px;
  }
}

@media (max-width: 767px) {
  .header {
    position: fixed;
    height: 40px;
    background-color: #66d1fe;
  }
  .drawer-open .header {
    position: initial;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

@media (max-width: 767px) {
  .header-inner {
    padding: 20px 10px;
    height: 40px;
    background-color: #66d1fe;
  }
}

.header-logo img {
  display: block;
  padding: 10px;
  width: 140px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header-logo img:hover, .header-logo img.is-active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header-logo img {
    width: 115px;
  }
}

.header-logo .logo-img-sp {
  display: none;
}

@media (max-width: 767px) {
  .header-logo .logo-img-pc {
    display: none;
  }
  .header-logo .logo-img-sp {
    display: block;
    width: 87%;
  }
}

.header-nav {
  margin-left: auto;
}

@media (max-width: 767px) {
  .header-nav {
    background-color: #FFFACF;
  }
}

.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

@media (max-width: 767px) {
  .header-nav-list {
    display: block;
    margin: 0 auto;
    height: auto;
  }
}

.header-nav-item {
  max-width: 144px;
  height: inherit;
}

@media (max-width: 767px) {
  .header-nav-item {
    margin: 0 auto;
    height: auto;
  }
}

.header-nav-item .header-nav-item-link {
  display: block;
  width: 100%;
  height: inherit;
  line-height: 140px;
  text-align: center;
  font-weight: 700;
  color: #444444;
  letter-spacing: 0.2mm;
  background: url(../img/clouds_small.png) center/100% 35% no-repeat;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header-nav-item .header-nav-item-link:hover, .header-nav-item .header-nav-item-link.is-active {
  color: #02b1fd;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header-nav-item .header-nav-item-link {
    font-size: 13px;
    letter-spacing: 0;
  }
}

@media (max-width: 767px) {
  .header-nav-item .header-nav-item-link {
    background: none;
    display: block;
    padding: 16px 0;
    line-height: 5em;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
  }
}

.header-nav-item + .header-nav-item {
  margin-left: 44px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header-nav-item + .header-nav-item {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .header-nav-item + .header-nav-item {
    margin-left: 0;
  }
}

.header-content-contact {
  margin-left: auto;
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header-content-contact:hover, .header-content-contact.is-active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.header-content-contact .header-content-text {
  text-align: center;
}

.header-content-contact .header-content-text a {
  display: inline-block;
  padding: 36px 10px;
  line-height: 1.5;
  text-align: center;
  background: url(../img/clouds_small.png) center/207px 100px no-repeat;
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header-content-contact .header-content-text a {
    width: 150px;
    background: url(../img/clouds_small.png) center/149px 80px no-repeat;
    font-size: 10px;
  }
}

.header-content-contact .header-content-text a .header-content-tell {
  font-size: 18px;
  font-weight: 800;
  color: #FB9C44;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header-content-contact .header-content-text a .header-content-tell {
    font-size: 13px;
  }
}

.header-content-contact .header-content-text a .header-content-tell .fa-square-phone {
  color: #5dbcfc;
}

.header-content-contact .header-content-text a .header-content-text-small {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header-content-contact .header-content-text a .header-content-text-small {
    font-size: 8px;
    line-height: 1;
  }
}

/*===========================================================
# footer
=========================================================== */
.footer {
  width: 100%;
  height: 80px;
  text-align: center;
  background: url(../img/bg_footer_frame.png) no-repeat top center/cover;
  font-weight: 700;
  padding: 20px 0;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-name {
  margin-top: 1em;
}

.footer-small {
  font-size: 12px;
  margin-top: 0.5em;
}

/*===========================================================
# top
=========================================================== */
@media (max-width: 767px) {
  .top {
    margin-top: 40px;
  }
}

.top .top-img-pc {
  height: auto;
  width: 100%;
}

.top .top-img-sp {
  display: none;
}

@media (max-width: 767px) {
  .top .top-img-pc {
    display: none;
  }
  .top .top-img-sp {
    display: block;
    width: 100%;
  }
}

/*===========================================================
# about
=========================================================== */
.about {
  background-color: #FFFACF;
  padding: 180px 0 0 0;
}

@media (max-width: 767px) {
  .about {
    padding: 100px 0;
  }
}

.about .util-title::after {
  content: "MIND";
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 100px 40px;
}

@media (max-width: 767px) {
  .about-inner {
    padding: 0 15px;
  }
}

.about-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .about-container {
    display: block;
    text-align: center;
  }
}

.about-container:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: center;
}

@media (max-width: 767px) {
  .about-container:nth-child(even) {
    text-align: center;
  }
}

.about-container:not(:last-child) {
  margin-bottom: 140px;
}

.about-message {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 51%;
          flex: 0 1 51%;
  max-width: 500px;
  margin-right: 7.66667%;
}

@media (max-width: 767px) {
  .about-message {
    width: 100%;
    margin: 0 auto;
  }
}

.about-message.center {
  margin-right: 0;
  margin-left: 7.66667%;
}

@media (max-width: 767px) {
  .about-message.center {
    width: 100%;
    margin: 0 auto;
  }
}

.about-message-title {
  font-size: 24px;
  font-weight: 800;
  color: #764C4C;
  line-height: 1.8;
  margin-bottom: 24px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-message-title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .about-message-title {
    font-size: 18px;
  }
}

.about-message-text {
  margin-bottom: 15px;
}

.about-message-text span {
  font-size: 18px;
  font-weight: 800;
  color: #F673AA;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-message-text span {
    font-size: 16px;
    letter-spacing: .1em;
  }
}

@media (max-width: 767px) {
  .about-message-text span {
    letter-spacing: .2mm;
    font-size: 15px;
  }
}

.about-message-text-small {
  font-size: 13px;
  color: #764C4C;
  font-weight: 600;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-message-text-small {
    font-size: 12px;
  }
}

.about-picture {
  -webkit-box-flex: 0;
      -ms-flex: 0 2 49%;
          flex: 0 2 49%;
}

@media (max-width: 767px) {
  .about-picture {
    position: relative;
    margin: 40px auto;
    width: 90%;
  }
  .about-picture::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: -130px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: url(../img/flower.png) center center/100% no-repeat;
  }
}

.about-picture.point {
  position: relative;
}

.about-picture .about-top {
  border-radius: 20px;
  outline: solid 20px rgba(255, 206, 32, 0.7);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-picture .about-top {
    outline: solid 10px rgba(255, 206, 32, 0.7);
  }
}

@media (max-width: 767px) {
  .about-picture .about-top {
    outline: solid 10px rgba(255, 206, 32, 0.7);
  }
}

.about-picture .about-point-sunny {
  position: absolute;
  top: -15%;
  width: 35%;
  right: -15%;
}

@media (max-width: 767px) {
  .about-picture .about-point-sunny {
    right: 0;
  }
}

.abot-sliders-header {
  padding: 30px 0;
  position: relative;
}

@media (min-width: 1200px) {
  .abot-sliders-header::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    top: 30px;
  }
  .abot-sliders-header::before, .abot-sliders-header::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    background: url(../img/flower.png) center center/80% 80% no-repeat;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .abot-sliders-header::before {
    left: 0;
  }
  .abot-sliders-header::after {
    right: 0;
    -webkit-transform: translateY(-50%) scale(-1, 1);
            transform: translateY(-50%) scale(-1, 1);
  }
}

@media (max-width: 767px) {
  .abot-sliders-header {
    padding: 15px 0;
  }
}

.about-sliders-text {
  text-align: center;
  color: #764C4C;
  font-size: 18px;
  font-weight: 700;
  padding: 0 100px;
}

@media (max-width: 767px) {
  .about-sliders-text {
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
    padding: 0;
    letter-spacing: .2mm;
  }
}

.swiper-container {
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  .swiper-container {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .swiper-container {
    padding-left: 3px;
    padding-right: 3px;
  }
}

.swiper-slide {
  width: calc(25% - 24px * 3/ 4);
  margin-right: 30px;
}

.swiper-button-prev,
.swiper-button-next {
  top: auto;
  bottom: 6px;
  width: 25px;
  height: 25px;
  margin: 0 25px;
  z-index: 3;
}

@media (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    bottom: 3px;
    margin: 0;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev {
  right: calc(50% + 100px);
  left: auto;
  background: transparent url(/img/arrow-prev.png) no-repeat center center/contain;
}

.swiper-button-next {
  right: auto;
  left: calc(50% + 100px);
  background: transparent url(/img/arrow-next.png) no-repeat center center/contain;
}

.swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background: rgba(246, 115, 170, 0.4);
  opacity: 1;
}

@media (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.swiper-pagination-bullet-active {
  background: rgba(246, 115, 170, 0.9);
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
  z-index: 2;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin-left: 6px;
  margin-right: 6px;
}

/*===========================================================
# contact
=========================================================== */
.contact {
  width: 100%;
  max-width: 1200px;
  margin: 100px auto;
  position: relative;
  margin-bottom: 65px;
}

@media (max-width: 767px) {
  .contact {
    margin: 0 auto;
  }
}

.contact-inner {
  padding-top: 40%;
  background: url(../img/frame.png) no-repeat center center/contain;
}

@media (max-width: 767px) {
  .contact-inner {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 106%;
    background: url(../img/sp/frame_sp.png) no-repeat center center/contain;
  }
}

.contact-message {
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #764C4C;
  padding: 1em 0;
}

.contact-message-title {
  font-size: 28px;
  font-weight: 800;
  color: #ff64a9;
  position: relative;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact-message-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .contact-message-title {
    font-size: 20px;
  }
}

.contact-message-title::before, .contact-message-title::after {
  content: "";
  display: inline-block;
  background-color: #F673AA;
  width: 6px;
  height: 1.3em;
  margin: 0 0.8em;
  margin-top: -0.2em;
  vertical-align: middle;
  border-radius: 50px;
}

.contact-message-title::before {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

.contact-message-title::after {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

.contact-message-subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact-message-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .contact-message-subtitle {
    font-size: 14px;
  }
}

.contact-message-subtitle strong {
  font-weight: 800;
  font-size: 22px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact-message-subtitle strong {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .contact-message-subtitle strong {
    font-size: 16px;
  }
}

.contact-tell {
  line-height: 1.2;
  margin-top: 20px;
}

.contact-tell-item {
  margin-top: 15px;
}

.contact-tell-number {
  padding: 0 0.6em;
  font-weight: 800;
  font-size: 34px;
  color: #ff64a9;
  background-color: #FFD1E5;
  border-radius: 50px;
  letter-spacing: 0.2em;
  text-shadow: 2px 2px 0 #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact-tell-number {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .contact-tell-number {
    font-size: 26px;
    letter-spacing: .2mm;
  }
}

.contact-tell-number:hover {
  color: #FFFFFF;
  background-color: #fb6dad;
  text-shadow: none;
}

.fa-phone {
  margin-right: 0.3em;
  color: #64c1ff;
  font-size: 28px;
  text-shadow: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .fa-phone {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .fa-phone {
    font-size: 22px;
  }
}

.contact-tell-text {
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 767px) {
  .contact-tell-text {
    letter-spacing: .1mm;
    font-size: 13pxx;
  }
}

/*===========================================================
# bg-wrapper
=========================================================== */
.bg-wrapper {
  position: relative;
}

@media (max-width: 767px) {
  .bg-wrapper {
    background: url(../img/sp/bg.png) no-repeat top center/cover fixed;
    z-index: 1;
  }
}

.bg-wrapper-footer {
  position: absolute;
  bottom: 0px;
  text-align: center;
  font-weight: 700;
  width: 100%;
  padding: 30px 40px;
  background: url(../img/bg_footer_frame.png) no-repeat top center/cover;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .bg-wrapper-footer {
    padding: 30px 10px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .bg-wrapper-footer {
    padding: 1em 20px;
    font-size: 14px;
    background: url(../img/sp/bg_frame_sp.png) no-repeat top center/cover;
  }
}

.bg-wrapper-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 3em;
}

@media (max-width: 767px) {
  .bg-wrapper-footer-inner {
    max-width: 518px;
    text-align: center;
    margin: 0 auto;
    letter-spacing: .1mm;
    padding: 2em 1em 0 1em;
  }
}

/*===========================================================
# bg-wrapper-2
=========================================================== */
.bg-wrapper-2 {
  position: relative;
  background: url(../img/sp/bg.png) no-repeat top center/cover fixed;
  z-index: 1;
}

/*===========================================================
# program
=========================================================== */
.program {
  padding: 100px 0 250px 0;
  position: relative;
}

@media (max-width: 767px) {
  .program {
    margin: 80px 0 160px 0;
    padding: 0 0 100px 0;
  }
}

.program::before {
  display: block;
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../img/rainbow_vivid.png) no-repeat top center/contain;
  opacity: 0.8;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .program::before {
    top: 33%;
    background: url(../img/rainbow_vivid.png) no-repeat top center/cover;
  }
}

@media (max-width: 767px) {
  .program::before {
    visibility: hidden;
  }
}

.program::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 300px;
  height: 300px;
  background: url(../img/sunny_main.png) no-repeat center/contain;
}

@media (max-width: 767px) {
  .program::after {
    max-width: 250px;
    height: 250px;
    top: 96%;
    left: 100%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.program .util-title::after {
  content: "PROGRAM";
}

.program-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .program-inner {
    padding: 0;
  }
}

.program-text {
  text-align: center;
}

@media (max-width: 767px) {
  .program-text {
    max-width: 505px;
    margin: 0 auto 50px;
    text-align: center;
  }
}

.program-container {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .program-container {
    margin-top: 15px;
  }
}

.program-list-up {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .program-list-up {
    display: block;
  }
}

.program-list-up .program-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3333%;
          flex: 0 1 33.3333%;
  margin-right: 24px;
  margin-top: 20px;
  font-size: 14px;
}

.program-list-up .program-item:last-child {
  margin-right: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .program-list-up .program-item {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .program-list-up .program-item {
    max-width: 310px;
    margin-right: 0;
    margin-top: 16px;
  }
  .program-list-up .program-item:nth-of-type(odd) {
    margin-right: auto;
  }
  .program-list-up .program-item:nth-of-type(even) {
    margin-left: auto;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .program-list-up .program-item {
    height: 370px;
  }
  .program-list-up .program-item:nth-child(1) {
    background: url(../img/sp/program_1.png) no-repeat center left/contain;
  }
  .program-list-up .program-item:nth-child(2) {
    background: url(../img/sp/program_2.png) no-repeat center right/contain;
  }
  .program-list-up .program-item:nth-child(3) {
    background: url(../img/sp/program_3.png) no-repeat center left/contain;
  }
}

.program-item-body {
  padding: 35px 0;
  background: url(../img/clouds_small.png) no-repeat center center/100% 103%;
  line-height: 1.6;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .program-item-body {
    letter-spacing: 0.1em;
    padding: 30px 0;
    line-height: 1.4;
  }
}

@media (max-width: 767px) {
  .program-item-body {
    opacity: 0;
  }
}

.program-item-title {
  display: inline-block;
  background-color: transparent;
  border-radius: 50px;
  text-shadow: 1px 1px 0 #FFFFFF;
  font-weight: 800;
  padding: 0 0.5em;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .program-item-title {
    letter-spacing: 0;
  }
}

@media (max-width: 767px) {
  .program-item-title {
    letter-spacing: 0.2mm;
    opacity: 0;
  }
}

.program-item-title.orange {
  color: #ff8c21;
  background-color: #ffc76d;
}

.program-item-title.pink {
  color: #fc5198;
  background-color: #fcb9d5;
}

.program-item-title.yellow {
  color: #ffbc00;
  background-color: #ffe895;
}

.program-item-title.green {
  color: #00c120fe;
  background-color: #80f37f;
}

.program-item-title.blue {
  color: #02b1fd;
  background-color: #7af8ff;
}

.program-item-title.red {
  color: #fc5a5a;
  background-color: #feb6cb;
}

.program-item-title.purple {
  color: #c643f6;
  background-color: #dfa3f5;
}

.program-item-text {
  margin-top: 0.6em;
  padding: 0 2em;
}

@media (max-width: 767px) {
  .program-item-text {
    margin-top: 0.8em;
  }
}

@media (max-width: 767px) {
  .program-item-text {
    opacity: 0;
  }
}

.program-list-center {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .program-list-center {
    display: block;
  }
}

.program-list-center .program-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3333%;
          flex: 0 1 33.3333%;
  margin-right: 24px;
  font-size: 14px;
}

.program-list-center .program-item:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .program-list-center .program-item {
    max-width: 310px;
    margin-right: 0;
    margin-top: 16px;
  }
  .program-list-center .program-item:nth-of-type(odd) {
    margin-left: auto;
  }
  .program-list-center .program-item:nth-of-type(even) {
    margin-right: auto;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .program-list-center .program-item {
    height: 370px;
  }
  .program-list-center .program-item:nth-child(1) {
    background: url(../img/sp/program_7.png) no-repeat center right/contain;
  }
  .program-list-center .program-item:nth-child(2) {
    height: 330px;
    background: url(../img/sp/program_5.png) no-repeat center left/contain;
  }
}

.program-list-down {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .program-list-down {
    display: block;
  }
}

.program-list-down .program-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3333%;
          flex: 0 1 33.3333%;
  margin-right: 24px;
  font-size: 14px;
}

.program-list-down .program-item:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .program-list-down .program-item {
    max-width: 320px;
    margin-right: 0;
    margin-top: 16px;
  }
  .program-list-down .program-item:nth-of-type(odd) {
    margin-left: auto;
  }
  .program-list-down .program-item:nth-of-type(even) {
    margin-right: auto;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .program-list-down .program-item {
    height: 330px;
  }
  .program-list-down .program-item:nth-child(1) {
    background: url(../img/sp/program_6.png) no-repeat center right/contain;
  }
  .program-list-down .program-item:nth-child(2) {
    background: url(../img/sp/program_4.png) no-repeat center left/contain;
  }
}

/*===========================================================
# aday
=========================================================== */
.aday {
  padding: 190px 40px 15px 40px;
}

.aday .util-title::after {
  content: "A DAY";
}

@media (max-width: 767px) {
  .aday .util-title {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .aday {
    padding: 90px 5px 15px 5px;
    height: 997px;
  }
}

.aday-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 148px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .aday-inner {
    padding-bottom: 127px;
  }
}

@media (max-width: 767px) {
  .aday-inner {
    display: block;
    padding-bottom: 133px;
    margin: 0 auto;
    max-width: 505px;
    background: url(../img/sp/house_sp.png) no-repeat top center/100% 80%;
  }
}

.aday-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.aday-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.aday-body {
  width: 100%;
  max-width: 530px;
  height: 490px;
  margin: 0 auto;
  padding: 0 40px;
  font-weight: 700;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .aday-body {
    padding: 0 30px;
  }
}

.aday-body.left {
  background: url(../img/house_pink.png) no-repeat top center/100% 100%;
}

.aday-body.right {
  background: url(../img/house_cream.png) no-repeat top center/100% 100%;
}

@media (max-width: 767px) {
  .aday-body {
    padding: 0 1em;
  }
  .aday-body.left {
    height: 330px;
    background: transparent;
  }
  .aday-body.right {
    height: 498px;
    background: transparent;
  }
}

@media (max-width: 767px) and (min-width: 515px) {
  .aday-body.right {
    height: 543px;
  }
}

.aday-body dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 1em;
  margin-left: 2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.aday-body dl::after {
  position: absolute;
  content: "";
  left: 11%;
  bottom: -6px;
  height: 27px;
  width: 20px;
  background-color: #f7dd20;
}

@media (max-width: 767px) {
  .aday-body dl::after {
    left: 10%;
  }
}

.aday-body dl:last-child::after {
  background-color: transparent;
}

@media (max-width: 767px) {
  .aday-body dl {
    margin-left: 3em;
  }
}

.aday-body-title {
  text-align: center;
  font-size: 22px;
  padding: 140px 0 10px 0;
  font-weight: 700;
  color: #764C4C;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .aday-body-title {
    font-size: 18px;
    padding-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .aday-body-title.pink {
    padding: 92px 0 10px 0;
  }
  .aday-body-title.cream {
    padding: 100px 0 5px 0;
  }
}

@media (max-width: 767px) and (min-width: 515px) {
  .aday-body-title.cream {
    padding: 130px 0 10px 0;
  }
}

.aday-body-time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 27%;
          flex: 0 0 27%;
  margin-right: 2em;
  letter-spacing: none;
  display: inline-block;
  padding: 4px;
  border-radius: 50px;
  background-color: transparent;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  z-index: 1;
}

.aday-body-time.left {
  background-color: #FFFACF;
  color: #F673AA;
}

.aday-body-time.right {
  background-color: #ffa8cc;
  color: #FFFACF;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .aday-body-time {
    font-size: 14px;
    letter-spacing: 0;
  }
}

@media (max-width: 767px) {
  .aday-body-time {
    font-size: 14px;
    letter-spacing: 0;
    padding: 2px;
    max-width: 100px;
  }
}

.aday-body-time span {
  font-size: 12px;
}

.aday-body-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
  letter-spacing: none;
}

.aday-body-text.left {
  border-bottom: 4px dashed #FFFACF;
}

.aday-body-text.right {
  border-bottom: 4px dashed #ffa8cc;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .aday-body-text {
    font-size: 14px;
    letter-spacing: .1em;
  }
}

/*===========================================================
# price
=========================================================== */
.price {
  background-color: #FFFACF;
  padding: 180px 40px 60px 40px;
}

@media (max-width: 767px) {
  .price {
    padding: 60px 15px;
  }
}

.price .util-title::after {
  content: "PRICE";
}

.price-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.price-message {
  text-align: center;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .price-message {
    padding: 0;
  }
}

.price-message-text {
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 767px) {
  .price-message-text {
    font-size: 14px;
  }
}

.price-image {
  margin: 0 auto;
  max-width: 200px;
  padding-top: 1%;
}

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

/*===========================================================
#  instagram
=========================================================== */
.instagram {
  background-color: #FFFACF;
  padding: 120px 40px 100px 40px;
}

@media (max-width: 767px) {
  .instagram {
    padding: 60px 15px;
  }
}

.instagram .util-title::after {
  content: "INSTAGRAM";
}

.instagram-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.instagram-message {
  text-align: center;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .instagram-message {
    padding: 0;
  }
}

.instagram-message-text {
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 767px) {
  .instagram-message-text {
    font-size: 14px;
  }
}

.instagram-image {
  margin: 20px auto;
  max-width: 200px;
  padding-top: 4%;
  position: relative;
}

.instagram-image::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 58%;
  left: 110%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 100px;
  height: 100px;
  background: url(../img/instagram-click.png) no-repeat center/contain;
}

@media (max-width: 767px) {
  .instagram-image::after {
    background: url(../img/instagram-tap.png) no-repeat center/contain;
  }
}

.instagram-image a img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.instagram-image a img:hover, .instagram-image a img.is-active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*===========================================================
# access
=========================================================== */
.access {
  padding: 120px 40px 60px 40px;
}

.access .util-title::after {
  content: "ACCESS";
}

@media (max-width: 767px) {
  .access {
    padding: 60px 15px;
  }
}

.access-sub-title {
  display: block;
  font-size: 20px;
  color: #fb4f96;
  font-weight: 600;
  background-color: #FFD1E5;
  border-radius: 50px;
  border-bottom: solid 4px #ffa8cc;
  text-shadow: 1px 2px #FFFFFF;
  padding: 0.2em 2em;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .access-sub-title {
    font-size: 18px;
    padding: 0.1em 1.2em;
  }
}

@media (max-width: 767px) {
  .access-sub-title {
    font-size: 14px;
    padding: 0.1em 1em;
    letter-spacing: 0;
  }
}

.access-sub-title span {
  font-weight: 800;
  padding-left: 1em;
  letter-spacing: .2em;
  font-size: 28px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .access-sub-title span {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .access-sub-title span {
    font-size: 20px;
    padding-left: 0.5em;
  }
}

.access-inner {
  padding-top: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .access-inner {
    display: block;
  }
}

.access-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
  margin-right: 3em;
}

@media (max-width: 767px) {
  .access-left {
    margin-right: 0;
  }
}

.access-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 3px dashed #C4C4C4;
  font-weight: 700;
}

@media (max-width: 767px) {
  .access-list {
    display: block;
    max-width: 310px;
    margin: 0 auto;
  }
}

.access-list-top {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  color: #764C4C;
  font-size: 18px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .access-list-top {
    font-size: 16px;
  }
}

.access-list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
}

.access-tag {
  background-color: transparent;
  border-radius: 50px;
  padding: 2px 10px;
  line-height: 1.6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1em;
}

.access-tag.pink {
  background-color: #f996c0;
  color: #FFFACF;
  margin-top: 0;
}

.access-tag.cream {
  background-color: #FFFACF;
  color: #f58cb8;
}

.access-tag.green {
  background-color: #57d955;
  color: #FFFACF;
}

.access-tag.orange {
  background-color: #f59d4b;
  color: #FFFACF;
}

.access-text-small {
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .access-text-small {
    font-size: 13px;
  }
}

.accordion-head {
  background-color: transparent;
  border-radius: 50px;
  padding: 2px 30px 2px 10px;
  line-height: 1.6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1em;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.accordion-head:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .accordion-head:hover {
    -webkit-transform: none;
            transform: none;
  }
}

.accordion-head.pink {
  background-color: #f996c0;
  color: #FFFACF;
  margin-top: 0;
}

.accordion-head.cream {
  background-color: #FFFACF;
  color: #f58cb8;
}

.accordion-head .accordion-icon {
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.accordion-head .accordion-icon.pink {
  background: url(../img/arrow-down-cream.png) no-repeat center center/contain;
}

.accordion-head .accordion-icon.pink.is-open {
  background: url(../img/arrow-up-cream.png) no-repeat center center/contain;
}

.accordion-head .accordion-icon.cream {
  background: url(../img/arrow-down-pink.png) no-repeat center center/contain;
}

.accordion-head .accordion-icon.cream.is-open {
  background: url(../img/arrow-up-pink.png) no-repeat center center/contain;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .accordion-head .accordion-icon {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .accordion-head .accordion-icon {
    font-size: 20px;
  }
}

.accordion-body {
  display: none;
}

.accordion-body-text {
  padding: 0 1em;
}

.accordion-link {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.accordion-link:hover {
  font-size: 17px;
}

.access-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 30px 0;
}

@media (max-width: 767px) {
  .access-right {
    max-width: 500px;
    margin: 0 auto;
  }
}

.access-right img {
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 12px #7dcfd4;
          box-shadow: 0 5px 12px #7dcfd4;
}

.access-right .access-img-photo {
  margin-top: 25px;
}

.access-footer {
  text-align: center;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .access-footer {
    margin-top: 25px;
  }
}

/*===========================================================
# totop
=========================================================== */
.to-top {
  position: fixed;
  right: 30px;
  bottom: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 30;
}

.to-top::after {
  position: absolute;
  content: "TOP!!";
  top: -20px;
  left: 60%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 1em;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 767px) {
  .to-top {
    right: 16px;
    bottom: 15px;
  }
}

.to-top.is-show {
  opacity: 1;
  visibility: visible;
}

.to-top-link img {
  width: 100%;
  max-width: 90px;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}

.to-top-link img:hover {
  -webkit-transform: rotateZ(368deg);
          transform: rotateZ(368deg);
}

@media (max-width: 767px) {
  .to-top-link img {
    width: 50px;
  }
}
