<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /*16px*63.5%=10px*/
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.8;
}
/*
a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
*/
img {
  max-width: 100%;
  height: auto;
}
/********* Loading　***********/
/* Loading背景画面設定 */
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #007EC5;
  text-align: center;
  color: #fff;
}
/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}
/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.liner {
  background: linear-gradient(transparent 50%, #FFED5F 60%);
}
/*ヘッダー*/
.header {
  position: relative;
}
#scroll-header {
  position: fixed;
  margin: 0 auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 150px;
  display: block;
  content: "";
  z-index: 500;
}
#scroll-header::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: 1s;
}
#scroll-header.scroll::before {
  opacity: 1;
}
.header-logo {
  position: relative;
}
/*  スクロールしたらクラスを付与する */
.header::before .scroll {
  opacity: 1;
}
.header nav {
  z-index: 10000;
  box-sizing: border-box;
  position: fixed;
  top: 0px;
  /* left: 10px; */
  width: 100%;
  height: 100vh;
  background: #007EC5;
  left: 100vw;
  transition: left .5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
  padding-left: 50px;
}
.header nav.open {
  left: 50vw;
}
.header__navigation {
  text-align: left;
  color: #FFF;
  font-weight: 500;
  font-size: 2rem;
  top: 50%;
  left: 50%;
  margin: 50px 0;
  /*    transform: translate(-50%, -50%)*/
}
.header nav ul li {
  margin-bottom: 25px;
  display: block;
}
.header__navigation li a {
  text-decoration: none;
  display: inline-block;
}
.header__navigation li a:hover {
  transform: translateX(5px);
  transition: all 0.6s 0s ease;
}
.nav_plan_menu {
  font-size: 1.6rem;
  font-weight: 400;
  padding-left: 10px;
}
.nav_plan_menu a {
  margin-left: 10px;
  margin-right: 10px;
}
.nav-button {
  text-align: right;
  margin-bottom: 50px;
}
.nav-button a {
  display: inline-block;
  color: #FFF;
  font-size: 2.08333333333vw;
  font-weight: 500;
  background-color: #009FAF;
  border-radius: 50px;
  padding: 15px 75px;
}
#drawer_toggle {
  z-index: 10001;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  display: inline-block;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
#drawer_toggle span {
  position: absolute;
  top: 50px;
  left: 17px;
  display: inline-block;
  width: 50px;
  height: 3px;
  border-radius: 2px;
  background-color: #FFF;
  vertical-align: top;
  transition: all 0.5s 0s ease; /*ゆったり動く*/
}
#drawer_toggle span:nth-child(2) {
  margin-top: 15px;
}
#drawer_toggle span:last-child {
  margin-top: 30px;
}
/*　ボタン　*/
#drawer_toggle.open span {
  position: absolute;
  top: 65px;
  left: 14px;
  width: 50px;
  margin: 0;
  transition: all 0.5s 0s ease;
  z-index: 2000;
}
#drawer_toggle.open span:first-child {
  transform: rotate(45deg);
}
#drawer_toggle.open span:nth-child(2) {
  display: none;
}
#drawer_toggle.open span:last-child {
  transform: rotate(-45deg);
}
/*****ここまでヘッダー*********/
/******↓メインビジュアル（HOME以外は共通）************/
.section-top {
  background-image: url(../image/plan/plan-mv.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: calc(100% - 190px);
  height: 90vh;
  padding: 50px 0;
  position: relative;
  top: 0;
  line-height: 1;
}
.reserve-button {
  content: "";
  width: 150px;
  height: 150px;
  color: #fff;
  text-align: center;
  background-color: #009FAF;
  border-radius: 50%;
  position: fixed;
  top: 130px;
  right: 20px;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reserve {
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: 600;
  font-size: 2rem;
}
.reserve-jp {
  font-size: 2rem;
}
/*---------scroll animation-4---------*/
.single-scroll-down-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  margin-bottom: 50px;
  position: absolute;
  right: 20px;
  top: 360px;
}
.scroll-down-copy {
  font-family: 'Oswald', sans-serif;
  color: #007EC5;
  letter-spacing: 0.5rem;
  font-size: 2rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  padding-bottom: 20px;
}
.scroll-down4 {
  width: 3px;
  height: 200px;
  background: #007EC5;
  animation: scrollDown4 2s ease infinite;
  margin: 0 auto;
}
@keyframes scrollDown4 {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  45% {
    transform-origin: top;
    transform: scaleY(1);
  }
  55% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
.mv-title {
  font-family: 'Oswald', sans-serif;
  color: #007EC5;
  font-size: 20rem;
  font-weight: 600;
  position: absolute;
  bottom: -8%;
  left: 5%;
}
.mv-plan-subtitle {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -18%;
  left: 5%;
}
.mv-plan-number {
  font-family: 'Oswald', sans-serif;
  color: #009FAF;
  font-size: 8rem;
  font-weight: 600;
  padding-right: 25px;
  border-right: 5px solid #009FAF;
}
.mv-plan-name {
  color: #333;
  font-size: 4rem;
  font-weight: 600;
  padding-left: 25px;
}
@media (min-width:769px) and (max-width:1300px) {
  .mv-message-dream {
    font-size: 18vw;
  }
  .mv-message-challenge {
    font-size: 18vw;
  }
  .mv-message-tategaki {
    font-size: 4vw;
  }
}
/**********↑メインビジュアル（（HOME以外は共通）***********/

/******フェイドアップアニメーション**********/
.fade-in {
  opacity: 0; /* 初期状態では非表示 */
  transition: all 0.8s ease-in-out; /* アニメーションの設定 */
  transform: translateY(20px);
}
.fade-in.show {
  opacity: 1; /* スクロール時に表示 */
  transform: translateY(0);
}
/******フェイドアップアニメーション***********/
/****************コンタクト**************/
.contact-container {
  text-align: center;
  background-image: url("../image/common/contact_bg_pc.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  object-fit: cover;
  padding: 150px 0;
  margin-bottom: 200px;
}
.contact-tel {
  font-size: 8rem;
  font-family: "Oswald";
  color: rgb(255, 255, 255);
  text-shadow: 0 0 5px #3d8dcc;
  font-weight: bold;
  z-index: 9;
}
.contact-title {
  font-size: 3.4rem;
  font-family: "Noto Sans JP";
  color: rgb(255, 255, 255);
  text-shadow: 0 0 5px #3d8dcc;
  z-index: 8;
}
.contact-time {
  font-size: 3rem;
  font-family: "Noto Sans JP";
  color: rgb(255, 255, 255);
  text-shadow: 0 0 5px #3d8dcc;
  z-index: 5;
}
.contact-time span {
  font-size: 1.8rem;
  font-family: "Noto Sans JP";
  color: rgb(255, 255, 255);
  z-index: 6;
  padding-right: 10px;
}
.contact-line {
  padding-top: 80px;
}

/*********フッター********/
.footer {
  background-color: #007EC5;
  position: relative;
}
.footer-container {
  color: #FFF;
  font-size: 1.8rem;
  display: flex;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  align-items: flex-start;
  padding: 100px 20px;
}
.footer__copyright {
  font-size: 1.2rem;
  margin-bottom: 30px;
  margin-top: 20px;
}

@media (min-width:769px) and (max-width:960px) {
  .footer-container {
    flex-direction: column-reverse;
  }
  .footer-left {
    display: block;
    margin: 0 auto;
  }
  .footer-right {
    padding-bottom: 50px;
  }
}
.tel {
  max-width: 396px;
  margin: 0 auto;
}
.footer-nav-container {
  max-width: 650px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  column-gap: 50px;
  row-gap: 30px;
}
.footer-nav-container li {
  text-align: left;
}
.footer-nav-container li a {
  transition-duration: 0.4s;
}
.footer-nav-container li a:hover {
  opacity: 0.5;
}
.footer-nav-content {
  font-size: 1.4rem;
  font-weight: 400;
}
.sns-links {
  text-align: center;
  padding: 10px;
}
.sns-links-inner a {
  display: inline-block;
  max-width: 42px;
  margin-right: 12px;
}
.sns-links-inner a:last-child {
  margin-right: 0;
}
.pagetop {
  width: 80px;
  position: absolute;
  right: 50px;
  bottom: 60px;
  display: inline-block;
}
.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}
/* Animation */
.parallax &gt; use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}
.parallax &gt; use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax &gt; use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax &gt; use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax &gt; use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}
/*******タブレットサイズのmv・button・humbergar***********/
@media (max-width:1023px) and (min-width:768px) {
  #drawer_toggle span {
    top: 40px;
    left: 10px;
    display: inline-block;
    width: 40px;
    height: 3px;
    border-radius: 3px;
  }
  #drawer_toggle.open span {
    position: absolute;
    top: 50px;
    left: 10px;
    width: 40px;
    margin: 0;
  }
  .header-logo {
    width: 90px;
    padding-top: 10px;
  }
}
@media (max-width:1023px) {
  /*ヘッダー*/
  .header {
    position: relative;
  }
  #scroll-header {
    height: 100px;
  }
  /*  スクロールしたらクラスを付与する */
  .header nav {
    z-index: 1000;
    left: 100vw;
  }
  .header nav.open {
    left: 20vw;
  }
  .header nav ul {
    text-align: left;
    color: #FFF;
    font-weight: 500;
    font-size: 2rem;
    top: 50%;
    left: 50%;
    /*    transform: translate(-50%, -50%)*/
  }
  .header nav ul li {
    margin-bottom: 20px;
    display: block;
  }
  .nav-button a {
    font-size: 3.08333333333vw;
  }
  #drawer_toggle {
    z-index: 10001;
    width: 80px;
    height: 80px;
  }
  #drawer_toggle span:nth-child(2) {
    margin-top: 12.5px;
  }
  #drawer_toggle span:last-child {
    margin-top: 25px;
  }
  /*　ボタン　*/
  #drawer_toggle.open span:first-child {
    transform: rotate(45deg);
  }
  #drawer_toggle.open span:nth-child(2) {
    display: none;
  }
  #drawer_toggle.open span:last-child {
    transform: rotate(-45deg);
    margin-top: 0;
  }
  /**********↓メインビジュアル（HOME以外は共通）**********/
  .section-top {
    width: 100%;
    height: 90vh;
    padding: 50px 0;
    line-height: 1;
  }
  .reserve-button {
    width: 18.84615vw;
    height: 18.84615vw;
    right: 2%;
    top: 84%;
    z-index: 200;
    line-height: 1.3;
  }
  .reserve {
    font-family: Arial, Helvetica, "sans-serif";
    font-weight: 600;
    font-size: 2.78974vw;
  }
  .reserve-jp {
    font-size: 2.98974vw;
  }
  /*---------scroll animation-4---------*/
  .single-scroll-down-animation {
    display: none;
  }
  .mv-title {
    font-size: 11rem;
    font-weight: 600;
    bottom: -4%;
    left: 5%;
  }
  .mv-plan-subtitle {
    bottom: -9%;
    left: 5%;
  }
  .mv-plan-number {
    color: #009FAF;
    font-size: 4rem;
    font-weight: 600;
    padding-right: 10px;
  }
  .mv-plan-name {
    color: #333;
    font-size: 2.4rem;
    padding-left: 10px;
  }
  .contact-container {
    padding: 60px 0;
  }
  .contact-tel {
    font-size: 6rem;
  }
}
/**************ここからモバイル*************/
@media (max-width:767px) {
  /*ヘッダー*/
  .header {
    position: relative;
  }
  #scroll-header {
    height: 100px;
  }
  .header-logo {
    width: 90px;
  }
  /*  スクロールしたらクラスを付与する */
  .header nav {
    z-index: 1000;
    left: 100vw;
    padding-left: 40px;
  }
  .header nav.open {
    left: 20vw;
  }
  .header nav ul {
    text-align: left;
    color: #FFF;
    font-weight: 500;
    font-size: 1.8rem;
    top: 50%;
    left: 50%;
    /*    transform: translate(-50%, -50%)*/
  }
  .header nav ul li {
    margin-bottom: 20px;
    display: block;
  }
  .nav_plan_menu {
    font-size: 1.4rem;
    font-weight: 400;
    padding-left: 10px;
  }
  .nav-button a {
    font-size: 3.08333333333vw;
  }
  #drawer_toggle {
    z-index: 10001;
    width: 80px;
    height: 80px;
  }
  #drawer_toggle span {
    top: 20px;
    left: 17px;
    display: inline-block;
    width: 40px;
    height: 3px;
    border-radius: 3px;
  }
  #drawer_toggle span:nth-child(2) {
    margin-top: 12.5px;
  }
  #drawer_toggle span:last-child {
    margin-top: 25px;
  }
  /*　ボタン　*/
  #drawer_toggle.open span {
    position: absolute;
    top: 35px;
    left: 14px;
    width: 40px;
    margin: 0;
  }
  #drawer_toggle.open span:first-child {
    transform: rotate(45deg);
  }
  #drawer_toggle.open span:nth-child(2) {
    display: none;
  }
  #drawer_toggle.open span:last-child {
    transform: rotate(-45deg);
  }
  /************↓メインビジュアル（HOME以外は共通）**************/
  .section-top {
    width: 100%;
    height: 80vh;
    padding: 50px 0;
    line-height: 1;
  }
  .reserve-button {
    width: 23.84615vw;
    height: 23.84615vw;
    right: 2%;
    top: 84%;
    z-index: 200;
    line-height: 1.3;
  }
  .reserve {
    font-family: Arial, Helvetica, "sans-serif";
    font-weight: 600;
    font-size: 3.58974vw;
  }
  .reserve-jp {
    font-size: 3.58974vw;
  }
  /*---------scroll animation-4---------*/
  .single-scroll-down-animation {
    display: none;
  }
}
@media (max-width:767px) {
  .mv-title {
    font-size: 9rem;
    font-weight: 600;
    bottom: -6%;
    left: 5%;
  }
  .mv-plan-subtitle {
    bottom: -14%;
    left: 5%;
  }
  .mv-plan-number {
    color: #009FAF;
    font-size: 4rem;
    font-weight: 600;
    padding-right: 10px;
  }
  .mv-plan-name {
    color: #333;
    font-size: 2.4rem;
    padding-left: 10px;
  }
  /**********ここまでメインビジュアル（HOME以外は共通）*************/
  /**************コンタクト**************/
  .contact-container {
    text-align: center;
    background-image: url("../image/common/contact_sp@3x.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    object-fit: cover;
    padding: 50px 0;
    margin-bottom: 100px;
  }
  .contact-tel {
    font-size: 3rem;
    font-weight: bold;
    z-index: 9;
  }
  .contact-title {
    font-size: 1.6rem;
    font-family: "Noto Sans JP";
    color: rgb(255, 255, 255);
    text-shadow: 0 0 5px #3d8dcc;
    z-index: 8;
  }
  .contact-time {
    font-size: 1.6rem;
    font-family: "Noto Sans JP";
    color: rgb(255, 255, 255);
    text-shadow: 0 0 5px #3d8dcc;
    z-index: 5;
  }
  .contact-time span {
    font-size: 1.4rem;
    font-family: "Noto Sans JP";
    color: rgb(255, 255, 255);
    z-index: 6;
    padding-right: 10px;
  }
  .contact-line {
    padding-top: 20px;
    width: 180px;
    margin: 0 auto;
  }
  /*************フッター****************/
}
@media (max-width:820px) {
  .footer {
    background-color: #007EC5;
    position: relative;
  }
  .footer-container {
    color: #FFF;
    font-size: 1.8rem;
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    align-items: flex-start;
    padding: 0 5.3vw;
  }
  .footer-container {
    flex-direction: column-reverse;
  }
  .footer-left {
    display: block;
    margin: 0 auto;
  }
  .footer-right {
    padding: 50px 0;
  }
  .tel {
    max-width: 500px;
    width: 80.6%;
    margin: 0 auto;
  }
  .address {
    font-size: 1.4rem;
  }
  .footer-nav-container {
    max-width: 670px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    row-gap: 15px;
  }
  .footer-nav-container li {
    text-align: left;
  }
  .footer-sns-icon img {
    width: 40px;
  }
  .footer-nav-content {
    display: none;
  }
  .sns-links {
    padding: 20px 0;
  }
  .pagetop {
    width: 60px;
    position: absolute;
    left: 30px;
    bottom: 20px;
  }
  .waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px; /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
  }
}
@media (max-width:767px) {
  .pagetop {
    width: 40px;
    left: 10px;
    bottom: 58px;
  }
}</pre></body></html>