@charset "UTF-8";
/*--------------------------------------------


---------------------------------------------*/
/*--------------------------------------------
   [00] 基本設定
---------------------------------------------*/
* {
  font-family: "Noto Sans JP", sans-serif;
}

html {
  font-size: 62.5%;
  /*1rem=10px*/
}

body {
  font-size: 1.8rem;
  /*本文サイズ 1.8rem=18px*/
  line-height: 2;
  color: #33312b;
}

img {
  max-width: 100%;
  height: auto;
  text-align: center;
}

a {
  transition: 0.4s;
  color: #0084DB;
  text-decoration-line: underline;
}
a:hover {
  transition: 0.4s;
  opacity: 0.7;
}

::-moz-selection {
  background: #0084DB;
  color: #ffffff;
}

::selection {
  background: #0084DB;
  color: #ffffff;
}

h1, h2, h3, h4, h5, th {
  font-weight: 700;
}

main {
  width: 100%;
  overflow: hidden;
}

/*セクション設定-------------------------*/
.bg-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
}

main {
  width: 100%;
}

.w_limit_sp {
  width: 94%;
}

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

.w_limit_1100 {
  max-width: 1100px;
  margin: 0 auto;
}

.w_limit_1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.w_90per {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.w_limit_900 {
  max-width: 900px;
  margin: 0 auto;
}

h2 {
  line-height: 1;
  position: relative;
  margin-bottom: 80px;
  display: block;
  font-size: 3.2rem;
  text-align: left;
  vertical-align: middle;
  z-index: 1;
}
h2::before {
  content: "";
}

h2.h2-normal {
  line-height: 1.2;
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 25px;
  display: block;
  text-align: center;
  vertical-align: middle;
  z-index: 1;
}
h2.h2-normal::after {
  content: "";
  height: 9px;
  width: 80px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: auto;
  z-index: -1;
  background-size: auto auto;
  background-color: #49cad4;
}

h2.h2-sideicon {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
h2.h2-sideicon img {
  height: 60px;
  width: auto;
  margin-right: 25px;
}

#Nittei h2::before {
  content: "";
}

/*アンカーリンクの飛び先*/
#About-anchor, #Date-anchor, #Nittei-anchor, #Online-anchor, #Contact-anchor, #Takuji-anchor, #Profile-anchor {
  margin-top: -80px;
}

#About-anchor {
  margin-top: -200px;
}

#About-anchor::before, #Date-anchor::before, #Nittei-anchor::before, #Online-anchor::before, #Contact-anchor::before, #Takuji-anchor::before, #Profile-anchor::before {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
}

#About-anchor::before {
  height: 200px;
}

#aruku-pdf {
  margin-top: -100px;
}
#aruku-pdf::before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
}

@media screen and (max-width: 1200px) {
  h2 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 600px) {
  section > .w_limit_1200, section > .w_limit_1000 {
    padding: 50px 0px 0px;
  }
  body {
    font-size: 1.6rem;
  }
  h2.h2-sideicon {
    flex-direction: column;
    margin-bottom: 50px;
  }
  h2.h2-sideicon img {
    height: 50px;
    margin-right: 0px;
    margin-bottom: 15px;
  }
}
/*--------------------------------------------
[01] ヘッダー
---------------------------------------------*/
header {
  height: 100px;
  background-color: #ffffff;
  z-index: 50;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
header .w_limit_1200 {
  height: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header h1 {
  width: 20%;
}
header h1 img {
  width: 220px;
  height: auto;
}
header nav#header_nav {
  width: 60%;
}
header nav#header_nav ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
}
header nav#header_nav ul li {
  margin: 0 3%;
  position: relative;
}
header nav#header_nav ul li img {
  height: 36px;
}
header nav#header_nav ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

header.fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 999; /*最前面へ*/
  top: 0; /*位置指定*/
  display: block;
  width: 100%;
}

.header-contact {
  text-align: right;
  position: relative;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  padding: 5px;
  background-color: #49CAD4;
  z-index: 5;
  transition: 0.3s;
}
.header-contact a {
  display: block;
  height: 100%;
  border: solid 2px #ffffff;
  text-align: center;
}
.header-contact a img {
  width: auto;
  height: 60px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header-contact:hover {
  background-color: #ffb340;
  transition: 0.3s;
  opacity: 1;
}

.header-contact-tablet, .toggle {
  display: none;
}

.sp-sticky-Btn {
  display: none;
}

@media screen and (max-width: 1000px) {
  .header-contact {
    display: none;
  }
  /* .header-contact-tablet {
     display: block;
   }

   .header-contact {
     width: auto;
     position: fixed;
     right: 0;
     top: 15%;
   z-index: 55;
       width: 60px;
       height: 240px;
    padding: 4px;
    a{
  	  border: solid 1px #ffffff;
    img{
  	  width: auto;
  	  height: 200px;
    }
    }
   }*/
  .sp-sticky-Btn {
    position: fixed;
    display: block;
    width: 60%;
    height: 70px;
    bottom: 0;
    right: 0;
    padding: 3px;
    background-color: #49CAD4;
    text-align: center;
    max-width: 300px;
    z-index: 75;
    border-top-left-radius: 15px;
  }
  .sp-sticky-Btn a {
    vertical-align: middle;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
  }
  .sp-sticky-Btn a img {
    height: 60px;
  }
  header h1 {
    width: 35%;
  }
  header nav {
    width: 65%;
  }
  header nav ul {
    justify-content: space-between;
  }
  header nav ul li {
    margin: 0;
    margin-left: 20px;
  }
}
.nav-text {
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  line-height: 1.2;
  margin-top: 7px;
  color: #666666;
  color: #659FDD;
}

.nav-only-sp {
  display: none;
}

@media screen and (max-width: 1150px) and (min-width: 768px) {
  .nav-text {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .nav-text {
    display: inline-block;
    margin-left: 15px;
  }
  header {
    height: 80px;
    padding: 15px 0;
  }
  header h1 {
    width: 100%;
    padding: 0;
  }
  header h1 img {
    height: 70px;
    width: auto;
  }
  header nav {
    width: 10%;
    position: relative;
  }
  header nav ul {
    justify-content: space-between;
  }
  header nav ul li {
    margin: 0;
    margin-left: 20px;
  }
  header nav ul li:first-of-type {
    margin-left: 0;
  }
  header nav ul li img {
    height: 28px;
  }
  .toggle {
    position: absolute;
    right: 10px;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 12;
    top: 60%;
    transform: translateY(-55%);
  }
  .toggle span {
    display: block;
    position: absolute;
    width: 70%;
    height: 3px;
    border: none;
    background: #5eabd3;
    transition: 0.35s ease-in-out;
    right: 7px;
  }
  .toggle span:nth-child(1) {
    top: 3px;
  }
  .toggle span:nth-child(2) {
    top: 13px;
  }
  .toggle span:nth-child(3) {
    top: 23px;
  }
  /* .activeを付与した時(jsで変化させたときのスタイル)
      ------------------------*/
  body.active {
    overflow: hidden;
    /*背景スクロール禁止*/
  }
  nav#header_nav.active {
    display: block;
  }
  .toggle.active span {
    border-color: #ffffff;
  }
  .toggle.active span:nth-child(1) {
    top: 15px;
    left: 4px;
    transform: rotate(-45deg);
  }
  .toggle.active span:nth-child(2), .toggle.active span:nth-child(3) {
    top: 15px;
    transform: rotate(45deg);
  }
  .nav-only-sp {
    display: block;
  }
  nav#header_nav {
    display: none;
    z-index: 85;
    position: fixed;
    width: 75vw !important;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #f8fcc0;
    padding-top: 75px;
    padding: 75px 2%;
    overflow: scroll;
    font-size: 1.6rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  nav#header_nav ul {
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    height: auto;
  }
  nav#header_nav ul li {
    display: block;
    padding: 15px 10px;
    width: 100%;
    border-top: solid 1px #41aae7;
    margin-right: 0%;
    margin-left: 0;
    padding-left: 0;
    position: relative;
  }
  nav#header_nav ul li a {
    text-align: left;
    padding: 0 25px;
  }
  nav#header_nav ul li a::before {
    content: "";
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #41aae7;
    transform: rotate(45deg);
    position: absolute;
    right: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    transition: 0.6s;
  }
  nav#header_nav ul li:last-of-type {
    border-bottom: solid 1px #41aae7;
  }
}
/*--------------------------------------------
[02] メインビジュアル
---------------------------------------------*/
#Mainvisual {
  padding: 0;
  background-image: url("../images/MV-pc-bg.svg");
  background-color: #f0ecaa;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 15;
  position: relative;
}

.bdrs-15 {
  border-radius: 15px;
}

.bdrs-25 {
  border-radius: 25px;
}

.mv-pc {
  display: block;
  position: relative;
  margin: auto;
  width: 100%;
}

@media screen and (min-width: 1920px) {
  #Mainvisual {
    background-size: cover;
    background-position: bottom 5vh center;
  }
}
@media screen and (max-width: 768px) {
  #Mainvisual {
    padding: 0;
  }
  #Mainvisual img {
    width: 100%;
    height: auto;
  }
  .mainvisual.w_limit_sp.w_limit_1200 {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 0;
  }
  .mainvisual.w_limit_sp.w_limit_1200 img {
    border-radius: 0;
  }
}
/*
  youtube埋め込み
---------------------------------------------*/
section#youtube {
  background: rgba(255, 255, 255, 0);
}
section#youtube .w_limit_1200 {
  padding: 15px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 768px) {
  section#youtube {
    padding-top: 0px;
    padding-bottom: 15px;
  }
  section#youtube .w_limit_1200 {
    padding: 0px;
  }
}
#top-to-Form {
  padding-top: 0;
  padding-left: 15px;
  padding-right: 15px;
}
#top-to-Form .toForm-box {
  max-width: 720px;
  margin: 0 auto;
  border: solid 8px #c7ba9a;
  box-shadow: rgba(0, 0, 0, 0.4) 7px 7px 25px;
}

/*--------------------------------------------
   [03] ABOUT
---------------------------------------------*/
#About {
  padding: 0;
  position: relative;
  z-index: 1;
}
#About > .w_limit_1200 {
  padding-top: 0px;
  padding-bottom: 0px;
}
#About h2 {
  padding: 40px 15px 50px;
  border-top: solid 8px #ffb340;
  text-align: center;
  background-color: #ffffff;
}
#About h2 img {
  max-width: 464px;
  height: auto;
}

.about-pc {
  position: relative;
  background-color: #ffffff;
  background-image: radial-gradient(rgba(255, 212, 212, 0.5) 12%, rgba(255, 255, 255, 0) 32%), radial-gradient(rgba(255, 212, 212, 0.5) 12%, rgba(255, 255, 255, 0) 32%);
  background-position: 0 0, 5px 5px;
  background-size: 10px 10px;
}

.about-bg-01 {
  background-image: url("../images/about-bg-01.jpg");
  background: linear-gradient(#b7d6ef, #e4deff);
  padding: 200px 0 220px;
  margin-top: -100px;
  transform: skewY(6deg);
  transform-origin: top right;
  position: relative;
  /*  z-index: 4;*/
}
.about-bg-01 > div {
  transform: skewY(-6deg) !important;
}
.about-bg-01 .w_limit_1200 {
  position: relative;
}

.about-bg-02 {
  position: relative;
  padding-top: 150px;
  margin-top: -200px;
  padding-bottom: 0px;
  z-index: 3;
}

.about-bg-03 {
  background-color: #FFEBDD;
  transform: skewY(-6deg);
  transform-origin: top right;
  position: relative;
  z-index: 2;
  padding-top: 150px;
  margin-top: -250px;
  padding-bottom: 50px;
  margin-bottom: 250px;
}
.about-bg-03 > div {
  transform: skewY(6deg) !important;
}
.about-bg-03::after {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background-color: #FFEBDD;
  position: absolute;
  bottom: -100px;
  left: 0;
  z-index: 0;
  transform: skewY(6deg) !important;
}

.about-02 {
  position: absolute;
  right: 0;
  top: 120px;
  margin: auto;
  z-index: 3;
}

.about-03 {
  z-index: 5;
  position: relative;
  padding-bottom: 50px;
}

.btn-case {
  background-color: #ffffff;
  width: 100%;
  max-width: 350px;
  color: #49cad4;
  border: solid 2px #49cad4;
  padding: 10px 15px;
  padding-left: 30px;
  text-align: center;
  border-radius: 50px;
  position: absolute;
  right: 0%;
  bottom: -15px;
  margin: auto;
  cursor: default;
  font-size: 16px;
  font-weight: 500;
}
.btn-case::before {
  content: "";
  background-image: url("../images/icon-question.svg");
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
}

.btn-case-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 55;
}

/*
.case-container:hover .active-hide-list{
    opacity: 1;
    transition: 0.3s;
}*/
.active-hide-list {
  opacity: 0;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.9);
  border: solid 2px #49cad4;
  padding: 25px;
  right: 0;
  top: 50%;
  margin: auto;
  width: 100%;
  max-width: 600px;
  z-index: 999;
  transition: 0.3s;
}
.active-hide-list.active {
  opacity: 1;
  transition: 0.3s;
}
.active-hide-list h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: solid 1px #ffadaf;
}
.active-hide-list ul li {
  position: relative;
  padding-left: 1em;
}
.active-hide-list ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: #ffadaf;
  position: absolute;
  left: 0;
  top: 1em;
}

.about-04 {
  margin-top: -50px;
  position: relative;
  z-index: 4;
  padding-bottom: 120px;
}

.bg_03::before {
  content: "";
  transform: skewY(-8deg);
  background-color: #f9f5b1;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-img {
  position: absolute;
  right: 0;
  bottom: 0px;
  z-index: 0;
}

.about-05 {
  margin-top: 50px;
  padding-top: 0;
  position: relative;
  z-index: 4;
}

.about-06 {
  text-align: center;
  margin-top: -100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 5;
}
.about-06::after {
  content: "";
  background-image: url("../images/before-arrow.svg");
  background-repeat: no-repeat;
  width: 50px;
  height: 94px;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: auto;
  z-index: 999;
}

@media screen and (max-width: 1200px) {
  .about-bg-01 {
    padding: 150px 0 0px;
  }
  .about-02 {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
  .about-02 img {
    width: 60vw;
  }
  .about-04 {
    width: 60vw;
    left: 0;
    right: auto;
    text-align: left;
    margin: 0;
  }
  .about-img {
    width: 45vw;
  }
  .about-05 {
    width: 60vw;
    margin: 25px 0 0;
  }
}
@media screen and (max-width: 1180px) {
  .btn-case {
    position: relative;
    margin-bottom: 40px;
  }
  .active-hide-list {
    position: relative;
  }
  .active-hide-list::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 17.3px 10px;
    border-color: transparent transparent #49cad4 transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: -17.3px;
    margin: auto;
  }
  .case-container {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 15px;
  }
  .case-container:hover .active-hide-list {
    opacity: 1;
    transition: 0s;
  }
  .btn-case-wrap {
    position: relative;
    z-index: 5;
  }
  .active-hide-list {
    display: none;
    opacity: 1;
    position: relative;
  }
  .active-hide-list.active {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .about-bg-01 {
    padding: 50px 0 0px;
  }
  .about-bg-02 {
    position: relative;
    padding-top: 150px;
    margin-top: -200px;
    padding-bottom: 0px;
    z-index: 3;
  }
  .about-bg-03 {
    background-color: #FFEBDD;
    transform: skewY(-6deg);
    transform-origin: top right;
    position: relative;
    z-index: 2;
    padding-top: 150px;
    margin-top: -250px;
    padding-bottom: 50px;
    margin-bottom: 250px;
  }
  .about-01, .about-02, .about-03, .about-04, .about-05, .about-img {
    max-width: 600px;
    padding: 0 15px;
  }
  .about-01 {
    margin: 50px auto;
  }
  .about-02 {
    display: none;
  }
  .about-03 {
    margin-top: 50px;
    width: 100%;
  }
  .about-04 {
    position: relative;
    width: 100%;
    margin: 15px auto 50px;
  }
  .about-img {
    position: relative;
    right: 0;
    text-align: center;
    bottom: 0px;
    margin: 0px auto;
    width: 100%;
  }
  .about-05 {
    margin-top: 0px;
    padding-top: 0;
    position: relative;
    margin: auto;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #About h2 span.h2-about {
    padding-bottom: 0;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 14vw;
  }
}
@media screen and (max-width: 480px) {
  section#About > .w_limit_1200 {
    padding: 0px inherit;
  }
  .about-01 {
    margin: 25px 0;
  }
}
/*--------------------------------------------
[04] 講座開催内容
---------------------------------------------*/
#Date {
  padding-top: 0;
  padding-bottom: 0;
  z-index: 0;
  position: relative;
}
#Date::before {
  content: "";
  width: 100%;
  height: 18px;
  background-size: auto auto;
  background-color: #f4f2c7;
  background-image: repeating-linear-gradient(30deg, transparent, transparent 6px, white 6px, white 12px);
  padding: 5px 15px;
  position: absolute;
  top: 0;
}
#Date .w_limit_1200 {
  background-color: #ffffff;
  padding: 100px 0px;
}
#Date table {
  margin: 0 auto;
  font-size: 2.1rem;
  line-height: 1.5;
  width: 100%;
  max-width: 900px;
}
#Date table th {
  width: 20%;
  background: #659FDD;
  padding: 20px 30px;
  text-align: center;
  border-bottom: solid 1px #ffffff;
  /*    border-right: dashed 1px $theme-color;*/
  z-index: 3;
  color: #ffffff;
  vertical-align: middle;
}
#Date table td {
  width: 80%;
  padding: 20px 30px;
  vertical-align: middle;
  border-bottom: solid 1px #ffffff;
  background-color: #FFF7F8;
}
#Date table td p {
  margin-top: 5px;
}
#Date table td span.disp-pc-only {
  display: inline;
}
#Date table td .date-kome {
  font-size: 1.6rem;
  text-align: left;
}
#Date table tr:last-of-type th, #Date table tr:last-of-type td {
  border-bottom: none;
}

.to-googlemap-wrap {
  margin: 15px 0;
}

.to-googlemap.Btn {
  margin-left: 0rem;
  margin-top: 15px;
  position: relative;
  font-size: 16px;
  height: 50px;
  line-height: 46px;
  max-width: 280px;
  background-color: #ffffff;
  color: #00334e;
  border: solid 2px #00334e;
  text-align: center;
}
.to-googlemap.Btn::before {
  content: "";
  background-image: url("../images/icon-mappin.svg");
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
  width: 15px;
  height: 22px;
}
.to-googlemap.Btn::after {
  border-color: #00334e;
}
.to-googlemap.Btn:hover::after {
  border-color: #23a1db;
}

.toform-Btn img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(5px 5px 5px rgba(104, 69, 18, 0.3));
}

@media screen and (max-width: 767px) {
  #Date table {
    border: none;
    font-size: 1.8rem;
  }
  #Date table th, #Date table td {
    display: block;
    width: 100%;
  }
  #Date table th {
    margin-top: 25px !important;
    border-right: none;
    border-bottom: none;
    padding: 5px 0px;
  }
  #Date table th:first-of-type {
    margin-top: 0;
  }
  #Date table td {
    border-bottom: none;
    border-top: none;
    text-align: center;
    padding: 15px 15px 30px;
  }
  .to-googlemap.Btn {
    margin: 25px auto 0;
  }
}
#Date ul {
  list-style-type: square;
  color: #30BCDE;
  padding-left: 25px;
  text-align: left;
}
#Date ul li:nth-of-type(n+2) {
  margin-top: 15px;
}
#Date ul li p {
  color: #33312b;
}
#Date .price {
  color: #E85F02;
  background: linear-gradient(transparent 70%, #FFF280 30%);
  font-weight: 700;
  font-size: 2.6rem;
  margin-left: 1em;
}

.ul-list-style-none {
  list-style-type: none;
  padding-left: 0;
}

#Date ul.course-bikou {
  margin-top: 25px;
  color: #E6843F;
}

.course-btn-container {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.course-btn-container a {
  z-index: 50;
  width: 100%;
  display: block;
}
.course-btn-container img {
  width: 480px;
  height: auto;
}

@media screen and (max-width: 600px) {
  .course-btn-container {
    flex-direction: column;
  }
  .course-btn-container p:last-of-type {
    margin-top: 25px;
  }
  #Date .price {
    margin: 10px auto 15px;
    text-align: center;
    display: block;
    background: #ffffff;
    border: solid 2px #FFEADC;
  }
}
@media screen and (max-width: 480px) {
  #Date table td span.disp-pc-only {
    display: none;
  }
}
/*--------------------------------------------
[05] 講座スケジュール
---------------------------------------------*/
.nittei-box {
  border: solid 6px #E8EEF2;
  background-color: #ffffff;
  border-radius: 20px;
  margin-bottom: 75px;
  position: relative;
  padding: 75px 0;
  /*
    &:last-of-type {
     margin-bottom: 50px;
    }*/
  /*
    &::after {
      content: '';
      width: 60px;
      height: 32px;
      background-image: url("../images/nittei-triangle.svg");
      background-repeat: no-repeat;
      position: absolute;
      left: 0;
      right: 0;
      bottom: -60px;
      margin: auto;
    }*/
}
.nittei-box:nth-of-type(n+5)::after {
  display: none;
}
.nittei-box h4 {
  font-size: 2.8rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.kouza-title-h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3.6rem;
  color: #219FDB;
  background-size: auto auto;
  background-color: white;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 6px, #e8eef2 6px, #e8eef2 12px);
  padding: 5px 15px;
  border-radius: 20px;
  position: relative;
  line-height: 1.2;
  padding: 15px 0 10px 115px;
  height: 80px;
}
.kouza-title-h3::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 15px;
  width: 308px;
  height: 88px;
  background-repeat: no-repeat;
}

.nittei-box::before {
  content: "";
  position: absolute;
  top: 100px;
  right: 25px;
  background-repeat: no-repeat;
  width: 128px;
  height: 128px;
  z-index: 0;
}
.nittei-box:nth-of-type(1)::before {
  background-image: url("../images/icon-kouza-01.svg");
}
.nittei-box:nth-of-type(2)::before {
  background-image: url("../images/icon-kouza-02.svg");
}
.nittei-box:nth-of-type(3)::before {
  background-image: url("../images/icon-kouza-03.svg");
}
.nittei-box:nth-of-type(4)::before {
  background-image: url("../images/icon-kouza-04.svg");
}
.nittei-box:nth-of-type(5)::before {
  background-image: url("../images/icon-kouza-05.svg");
}
.nittei-box:nth-of-type(1) .kouza-title-h3::before {
  background-image: url("../images/number-01.svg");
}
.nittei-box:nth-of-type(2) .kouza-title-h3::before {
  background-image: url("../images/number-02.svg");
}
.nittei-box:nth-of-type(3) .kouza-title-h3::before {
  background-image: url("../images/number-03.svg");
}
.nittei-box:nth-of-type(4) .kouza-title-h3::before {
  background-image: url("../images/number-04.svg");
}
.nittei-box:nth-of-type(5) .kouza-title-h3::before {
  background-image: url("../images/number-05.svg");
}

.nittei-box-inner {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 5%;
  position: relative;
}

.nittei-box-inner .flex-cal2 {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
.nittei-box-inner .flex-cal2 .nittei-text {
  width: 55%;
}
.nittei-box-inner .flex-cal2 .flyer {
  width: 40%;
}

.nittei-box table, table.default-table {
  width: 100%;
  margin: 40px 0 25px;
  font-size: 1.8rem;
  position: relative;
}

.nittei-box table tr, table.default-table tr {
  border-bottom: solid 1px #ffffff;
}

.nittei-box table tr:last-of-type, table.default-table tr:last-of-type {
  border-bottom: none;
}

.nittei-box table {
  border-collapse: separate;
}
.nittei-box table th, .nittei-box table td {
  padding: 0px 15px;
}

table.default-table th, table.default-table td {
  padding: 0px 15px;
}

.nittei-box table th, table.default-table th {
  background-color: #ffffff;
  border-left: solid 1px #ffb340;
  border-bottom: solid 1px #ffb340;
  border-right: solid 10px #ffffff;
  border-top: solid 10px #ffffff;
  padding-bottom: 10px;
  width: 25%;
  text-align: center;
  vertical-align: middle;
}

.nittei-box table td, table.default-table td {
  border-bottom: solid 1px #c7c7c7;
  border-left: solid 1px #c7c7c7;
  border-top: solid 10px #ffffff;
  padding-bottom: 10px;
  background-color: #ffffff;
  width: 75%;
  z-index: 0;
}

.nittei-box table td ul, table.default-table td ul {
  list-style-type: square;
  padding-left: 1.5em;
  color: #30BCDE;
}

.nittei-box table td ul li, table.default-table td ul li {
  margin: 15px 0;
}

.nittei-box table td ul li p, table.default-table td ul li p {
  color: #33312b;
}

.kikaku-subtitle {
  color: #de5100;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.5;
  margin-bottom: 0px;
}

.img_present_01 {
  margin-top: 30px;
}

.vega-free {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
.vega-free img {
  width: 240px;
  height: auto;
  display: inline-block;
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .nittei-box-inner .flex-cal2 {
    flex-direction: column;
  }
  .nittei-box-inner .flex-cal2 .nittei-text {
    width: 100%;
    order: 2;
    margin-top: 25px;
  }
  .nittei-box-inner .flex-cal2 .flyer {
    width: 75%;
    order: 1;
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  .nittei-box h4 {
    font-size: 2.4rem;
  }
  .nittei-box-inner {
    margin: 30px auto 25px;
  }
  .nittei-box table, table.default-table {
    font-size: 1.6rem;
    margin-top: 10px;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .nittei-box table th, .nittei-box table td {
    display: block;
  }
  table.default-table th, table.default-table td {
    display: block;
  }
  .nittei-box table th, table.default-table th {
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    margin-top: 15px;
  }
  .nittei-box table td, table.default-table td {
    width: 100%;
  }
  .kouza-title-h3 {
    font-size: 2.6rem;
    padding-left: 80px;
  }
  .kouza-title-h3::before {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 20px;
    width: 246.4px;
    height: 70.4px;
    background-repeat: no-repeat;
  }
  .vega-free {
    flex-direction: column;
  }
  .vega-free img {
    width: 240px;
    height: auto;
    display: inline-block;
    margin-left: 0px;
  }
}
/*--------------------------------------------
[09] フッター
---------------------------------------------*/
footer {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  background: rgb(42, 131, 190);
  padding: 50px 0 200px;
  margin-top: -15px;
}

footer table {
  width: 100%;
  color: #ffffff;
}
footer table th, footer table td {
  padding: 20px 15px;
  vertical-align: middle;
}
footer table th {
  text-align: center;
  width: 25%;
  border-top: solid 1px #ffffff;
}
footer table th:last-of-type {
  border-bottom: solid 1px #ffffff;
}
footer table td {
  width: 75%;
  padding-left: 25px;
  border-top: solid 1px #ffffff;
  text-align: left;
}
footer table td:last-of-type {
  border-bottom: solid 1px #ffffff;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > 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);
  }
}
small {
  display: block;
  background: rgb(42, 131, 190);
  color: #ffffff;
}

@media screen and (max-width: 1000px) {
  small {
    display: block;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 50px 0;
  }
  footer table {
    background-color: transparent;
  }
  footer table tr {
    border: none;
  }
  footer table tr:last-of-type {
    border: none;
  }
  footer table th, footer table td {
    display: block;
  }
  footer table th {
    text-align: center;
    width: 100%;
    padding: 5px 15px;
    border-top: solid 1px #ffffff;
    border-bottom: solid 1px #0067B4;
  }
  footer table td {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
}
/* スポンサー
---------------------------------------------*/
#Sponsor {
  margin-bottom: 50px;
}
#Sponsor .w_limit_1200 {
  position: relative;
}
#Sponsor dl {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  padding: 25px;
  position: relative;
  border-top: solid 2px #ffb340;
  background-color: #ffffff;
}
#Sponsor dl:last-of-type {
  border-bottom: solid 2px #ffb340;
}
#Sponsor dl dt {
  width: 25%;
}
#Sponsor dl dd {
  width: 75%;
  align-self: center;
}
#Sponsor dl dd.kyosan-flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  vertical-align: middle;
}

.contactBox {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
.contactBox > div {
  width: 70%;
}
.contactBox figure {
  width: 25%;
}

.kyosan-flex div:first-of-type {
  line-height: 0;
}

@media screen and (max-width: 767px) {
  #Sponsor dl {
    padding: 25px 15px;
  }
  #Sponsor dl dt {
    margin-right: 5%;
  }
  #Sponsor dl dd {
    width: 70%;
  }
  #Sponsor dl dd.kyosan-flex {
    flex-direction: column;
  }
  #Sponsor dl dd.kyosan-flex p {
    margin-bottom: 40px;
  }
  #Sponsor dl dd.kyosan-flex p:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .contactBox {
    flex-direction: column;
  }
  .contactBox > div {
    width: 100%;
    margin-bottom: 25px;
  }
  .contactBox figure {
    width: 100%;
  }
}
.footer-logo {
  text-align: center;
  padding-bottom: 50px;
}
.footer-logo img {
  width: 465px;
  height: 39px;
}

.contact-box {
  /*  border: solid 1px #372163;*/
  max-width: 1000px;
  padding: 45px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px auto 100px;
  border: solid 5px #c7ba9a;
}

.contact-title {
  display: block;
  width: 24%;
  font-size: 2.4rem;
  padding-bottom: 0;
  margin-bottom: 0;
  border-right: solid 1px #33312b;
  text-align: center;
  font-weight: 600;
  padding-right: 25px;
}

h2.contact-title::after {
  display: none;
}

.contact-txt {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
  width: 70%;
}

.contact-add {
  text-align: left;
  margin-left: 25px;
}
.contact-add p.contact-email span {
  color: #0083da;
  font-size: 2.1rem;
}
.contact-add .tel-link {
  font-size: 2.4rem;
}
.contact-add .tel-link a {
  font-size: 2.4rem;
}

small {
  display: block;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .contact-txt {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-add {
    margin-left: 0px !important;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .contact-box {
    flex-direction: column;
    padding: 25px;
  }
  .contact-title {
    display: block;
    width: 100%;
    font-size: 2.8rem;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 10px;
    border-right: none;
    border-bottom: solid 1px #050403;
  }
  .contact-txt {
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 0;
    align-items: center;
    margin-top: 15px;
  }
  .contact-txt .contact-add {
    align-items: center;
    text-align: center;
  }
}
/*-------------------------------
 チラシ
-------------------------------*/
.bgc-sky {
  background-color: #1a98d6;
  background: linear-gradient(150deg, rgb(126, 195, 216) 0%, rgb(26, 152, 214) 100%);
  position: relative;
  z-index: 1;
}

.bgc-sky_bg {
  content: "";
  width: 100vw;
  height: 100%;
  background-image: url("../images/bg_kumo.png");
  background-position: center top 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  background-repeat: no-repeat;
}

.bgc-white {
  background-color: #ffffff;
}

.mainvisual {
  padding: 10px 0 15px;
}

.mv-cta {
  z-index: 1;
  padding: 50px 15px 50px;
  /*	background-color: #ffffff;
    background : linear-gradient(0deg, rgba(#ffffff, 0) 0%, rgba(#ffffff, 1) 40%);*/
  font-weight: 600;
  font-size: 2.1em;
}

a.Btn.Btn-cta {
  max-width: 600px;
  border-radius: 50px;
  font-weight: 600;
}
a.Btn.Btn-cta::before {
  display: none;
}

#PageTop {
  display: block;
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 50px;
  height: 50px;
  background: #0083ce;
  border-radius: 50px;
  border: solid 2px #ffffff;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  z-index: 5;
}
#PageTop a {
  width: 100%;
  height: 100%;
  position: absolute;
}
#PageTop::before {
  content: "";
  border-style: solid;
  border-width: 3px 3px 0px 0px;
  border-color: #ffffff;
  transform: rotate(315deg);
  position: absolute;
  margin: auto;
  top: 7px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 12px;
  height: 12px;
}

@media screen and (max-width: 1200px) {
  .bgc-sky_bg {
    top: 0;
    bottom: auto;
    background-position: center top -2%;
  }
}
@media screen and (max-width: 767px) {
  .bgc-sky_bg {
    background-size: contain;
    background-position: center top 2%;
  }
  #PageTop a.PageTop {
    width: 120px;
    height: 120px;
  }
}
/*--------------------------------------------
 [99] 標準機能
---------------------------------------------*/
/*
  微調整用
---------------------------------------------*/
.fz-12 {
  font-size: 1.2rem;
}

.fz-14 {
  font-size: 1.4rem;
}

.fz-15 {
  font-size: 1.5rem;
}

.fz-16 {
  font-size: 1.6rem;
}

.fz-18 {
  font-size: 1.8rem;
}

.fz-21 {
  font-size: 2.1rem;
}

.fz-24 {
  font-size: 2.4rem;
}

.fz-26 {
  font-size: 2.6rem;
}

.fz-28 {
  font-size: 2.8rem;
}

.fz-32 {
  font-size: 3.2rem;
}

@media screen and (max-width: 600px) {
  /*
  .fz-18 {
    font-size: calc(1.8rem * 0.8);
  }
  .fz-21 {
    font-size: calc(2.1rem * 0.8);
  }
  */
  .fz-28 {
    font-size: 2.24rem;
  }
  .fz-32 {
    font-size: 2.56rem;
  }
  .fz-18_sp {
    font-size: 1.8rem !important;
  }
  .fz-21_sp {
    font-size: 2.1rem !important;
  }
  .fz-24_sp {
    font-size: 2.4rem !important;
  }
}
.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fc-normal {
  color: #33312b;
}

.fc-white {
  color: #ffffff;
}
.fc-white a {
  color: #ffffff;
}

.fc-red {
  color: #ba1c20;
}

.fc-yellow {
  color: #FCCF00;
}

.mgl-1em {
  margin-left: 1em;
}

.mgr-1em {
  margin-right: 1em;
}

.mgt-0 {
  margin-top: 0 !important;
}

.mgt-15 {
  margin-top: 15px;
}

.mgt-20 {
  margin-top: 20px;
}

.mgt-30 {
  margin-top: 30px;
}

.mgt-40 {
  margin-top: 40px;
}

.mgt-50 {
  margin-top: 50px;
}

.mgt-100 {
  margin-top: 100px;
}

.mgb-0 {
  margin-bottom: 0 !important;
}

.mgb-10 {
  margin-bottom: 10px;
}

.mgb-15 {
  margin-bottom: 15px;
}

.mgb-20 {
  margin-bottom: 20px;
}

.mgb-30 {
  margin-bottom: 30px;
}

.mgb-40 {
  margin-bottom: 40px;
}

.mgb-50 {
  margin-bottom: 50px;
}

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

.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left;
}

.indent-kome {
  padding-left: 1em;
  text-indent: -1em;
}

/*レスポンシブ改行
-------------------------------*/
.br_350, .br_480, .br_600, .br_768, .br_1200 {
  display: none;
}

@media screen and (max-width: 768px) {
  .br_768only {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .br_1200 {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .br_768 {
    display: inline;
  }
  .block-768 {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .ta-center_sp {
    text-align: center;
  }
  .ta-right_sp {
    text-align: right;
  }
  .ta-left_sp {
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  .block-600 {
    display: block;
  }
  .br_600 {
    display: inline;
  }
}
@media screen and (max-width: 480px) {
  .br_480 {
    display: inline;
  }
}
@media screen and (max-width: 350px) {
  .br_350 {
    display: inline;
  }
}
/*
効果
----------------*/
.dropshadow {
  filter: drop-shadow(5px 5px 5px rgba(104, 69, 18, 0.2));
}

/*
  背景パターン
---------------------------------------------*/
.bg-white {
  background: #ffffff;
}

.bg-gray {
  background: #eaeaea;
}

.bg-shasen {
  background-size: auto auto;
  background-color: white;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 5px, whitesmoke 5px, whitesmoke 10px);
}

.bg-shasen-bold {
  background-size: auto auto;
  background-color: #bf6258;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 15px, #b85045 15px, #b85045 30px);
}

.bg-hougan {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 14px, #e7e7e7 16px), linear-gradient(90deg, rgba(255, 255, 255, 0) 14px, #e7e7e7 16px);
  background-size: 16px 16px;
}

/*rgba(218, 250, 227, 0.6)*/
.bg-dot-naname {
  background-color: #ffffff;
  background-image: radial-gradient(rgba(186, 226, 248, 0.2) 22%, rgba(255, 255, 255, 0) 22%), radial-gradient(rgba(186, 226, 248, 0.2) 22%, rgba(255, 255, 255, 0) 22%);
  background-position: 0 0, 15px 15px;
  background-size: 30px 30px;
}

.bg-dot-hougan {
  background-color: #ffffff;
  background-image: radial-gradient(#e6e6e6 1px, rgba(255, 255, 255, 0) 1px);
  background-size: 12px 12px;
}

.bg-gradation {
  background: #6ca861;
  background: linear-gradient(45deg, #6ca861 0%, #379e8e 100%);
}

.bg-stripe {
  background-size: auto auto;
  background-color: white;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 15px, #ebca0e 15px, #ebca0e 30px);
}

.bg-vegaumi {
  background: linear-gradient(90deg, rgb(92, 218, 255) 0%, rgb(150, 244, 255) 0%, rgb(92, 218, 255) 100%);
}

/*
  ボタン
---------------------------------------------*/
a.Btn {
  font-size: 21px;
  text-decoration-line: none;
  max-width: 400px;
  height: 80px;
  line-height: 76px;
  background: #da3b24;
  border: solid 2px #da3b24;
  color: #ffffff;
  vertical-align: middle;
  position: relative;
  display: block;
  margin: auto;
  text-align: center;
}
a.Btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 11px;
  height: 11px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #ffffff;
  transform: rotate(45deg);
  transition: 0.6s;
}
a.Btn::before {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: solid 1px #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
a.Btn:hover {
  background: #ffffff;
  color: #da3b24;
  opacity: 1;
}
a.Btn:hover::after {
  border-color: #da3b24;
  transition: 0.6s;
}
a.Btn:hover::before {
  border-color: #da3b24;
}

a.Btn.Btn_mini {
  font-size: 16px;
  max-width: 300px;
  height: 45px;
  line-height: 41px;
  margin: 10px 0;
}
a.Btn.Btn_mini::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  transition: 0.6s;
}
a.Btn.Btn_mini::before {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
}

a.Btn.Btn-cta {
  background: #e94c19;
  border: solid 2px #e94c19;
}
a.Btn.Btn-cta:hover {
  background: #ffffff;
  color: #e94c19;
  opacity: 1;
}
a.Btn.Btn-cta:hover::after {
  border-color: #e94c19;
}
a.Btn.Btn-cta:hover::before {
  border-color: #e94c19;
}

a.Btn.Btn-cta_02 {
  background: #009dff;
  border: solid 2px #009dff;
}
a.Btn.Btn-cta_02:hover {
  background: #ffffff;
  color: #009dff;
  opacity: 1;
}
a.Btn.Btn-cta_02:hover::after {
  border-color: #009dff;
}
a.Btn.Btn-cta_02:hover::before {
  border-color: #009dff;
}

/*
  スクロールアニメーション
    (スクロールしたら表示してほしいところにjs-animationをつける)
---------------------------------------------*/
.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.js-animation.js-ani-nomove {
  transform: translateY(0px);
  transition: all 1.2s;
}
.js-animation.js-ani-nomove.is-show {
  transform: translateY(0px);
}/*# sourceMappingURL=style.css.map */