@charset "UTF-8";
/* =================== base =================== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Heebo&display=swap");
:root {
  --main-color: #232E7C;
  --og-color: #FF6200;
  --gr-color: #06C755;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html {
  margin: 0;
  overflow-x: hidden;
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  letter-spacing: .05em;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #000;
  background: #fff;
}

* {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  letter-spacing: normal;
}

a {
  text-decoration: none;
  color: #595757;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

pre {
  width: 70%;
  margin: 1em auto;
  padding: 1em;
  border-radius: 5px;
  background: #25292f;
  color: #fff;
  overflow-x: auto;
  /* ⭐ */
  -webkit-overflow-scrolling: touch;
  /* ⭐ */
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

li {
  list-style: none;
}

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

.clear {
  clear: both;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.ipad {
  display: none;
}

p {
  line-height: 1.8em;
}

.bold {
  font-weight: 700;
}

.btn {
  position: relative;
  padding-bottom: 20px;
  color: var(--main-color);
  text-align: center;
  font-size: 1.6rem;
}

.btn:before {
  content: "";
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: var(--main-color);
}

.btn:hover:before {
  width: 0;
  right: 0px;
}

.og {
  color: var(--og-color);
}

.gr {
  color: var(--gr-color);
}

.brank {
  padding-right: 20px;
  position: relative;
}

.brank:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/brank.svg) no-repeat;
  background-size: contain;
  background-position: center;
  width: 11px;
  height: 11px;
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 25px;
}

@media screen and (max-width: 1180px) {
  .container {
    max-width: 1080px;
  }
}

@media screen and (max-width: 820px) {
  .container {
    padding: 0 25px;
  }
  header .container {
    padding: 0 15px;
  }
}

/* =================== loading =================== */
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#contact input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

#contact select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

#contact textarea {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

/* =================== header =================== */
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 990;
}

header .container {
  background: #fff;
  max-width: 100%;
  padding-right: 0;
}

header .flex {
  height: 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .flex .left {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .flex .left h1 {
  font-size: 2.1rem;
  line-height: 1.1em;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.5px;
  font-weight: 400;
  color: var(--main-color);
}

header .flex .left h1 span {
  font-size: 1.56rem;
}

header .modalbtn {
  background: #fff;
  right: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 999;
  position: relative;
  width: 35px;
  height: 60px;
  width: 60px;
}

header .modalbtn:before {
  content: "";
  right: 0;
  left: 0;
  height: 2px;
  width: 23px;
  background: var(--main-color);
  margin: auto;
  position: absolute;
  top: -7px;
  bottom: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header .modalbtn:after {
  content: "";
  right: 0;
  left: 0;
  height: 2px;
  width: 23px;
  background: var(--main-color);
  margin: auto;
  position: absolute;
  top: 0;
  bottom: -7px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header .modalbtn.active{
background: none;
}

header .modalbtn.active:before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: 0;
  bottom: 0;
  background: #fff;
}

header .modalbtn.active:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  background: #fff;
}

header .right .modalnav {
  position: fixed;
  opacity: 0;
  display: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: scroll;
  height: 100%;
  top: 0;
  right: 0;
  width: 100%;
  height: 80%;
  background: var(--main-color);
  -ms-overflow-style: none;  /* IE, Edge 対応 */
  scrollbar-width: none;/* Firefox 対応 */
}
header .right .modalnav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
        display:none;
}

header .right .modalnav.open {
  z-index: 995;
  display: block;
  opacity: 1;
  animation: show 0.3s linear 0s;
}

@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

header .right nav {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header .right .modalnav ul {
  width: 100%;
  max-width: 1080px;
  height: auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

header .right .modalnav .btn-box {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}

header .right .modalnav .btn-box a {
  text-align: center;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.8rem;
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 20px;
  box-shadow: 0px 3px 33px rgb(10 10 10 / 6%);
}

header .right .modalnav .btn-box a:nth-child(1) {
  margin-right: 20px;
  background: #fff;
  color: #000;
  position: relative;
}

header .right .modalnav .btn-box a:nth-child(1)::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(assets/images/btn1.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

header .right .modalnav .btn-box a:nth-child(2) {
  background: var(--gr-color);
  color: #fff;
  position: relative;
}

header .right .modalnav .btn-box a:nth-child(2)::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(assets/images/btn2.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

header .right .modalnav ul li {
  width: 50%;
  text-align: center;
}

header .right .modalnav ul li:not(:last-child) {
  margin-right: 0;
}

header .right .modalnav ul li:nth-child(2) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

header .right .modalnav ul li:nth-child(3) {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

header .right .modalnav ul li:nth-child(4) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

header .right .modalnav ul li:nth-child(5) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

header .right .modalnav ul li:nth-child(6) {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

header .right .modalnav ul li a {
  display: block;
  margin: 30px 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  font-weight: bold;
}

header .right .head-btn {
  padding-right: 15px;
  line-height: 60px;
  width: 200px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
}

header .right .head-btn2 svg {
  max-height: 20px;
  margin-right: 10px;
  margin-bottom: -5px;
}

header .right .head-btn1 svg {
  max-height: 20px;
  margin-right: 5px;
  margin-bottom: -2px;
}

header .right .head-btn1 {
  background: var(--main-color);
}

header .right .head-btn2 {
  background: var(--gr-color);
}

/*.nav-open header {
  bottom: 0;
  height: 100%;
}*/

body.fixed {
  position: fixed;
  width: 100%;
}

.gmnoprint,
.gm-svpc,
.gmnoprint,
.gm-fullscreen-control {
  display: none;
}

#page-top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  width: 50px;
  height: 50px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0px 3px 33px rgb(10 10 10 / 6%);
}

#page-top a img {
  width: 25px;
}

#page-top {
  position: fixed;
  right: 10px;
  bottom: 60px;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}

#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(120px);
            transform: translateY(120px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(120px);
            transform: translateY(120px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(120px);
            transform: translateY(120px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(120px);
            transform: translateY(120px);
  }
}

.fix-btn {
  position: fixed;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  z-index: 1;
}

.fix-btn a {
  display: block;
  width: 50%;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  font-weight: 700;
}

.fix-btn .head-btn1 {
  background: var(--main-color);
  position: relative;
  padding-right: 10px;
}

.fix-btn .head-btn1 svg {
  max-height: 20px;
  margin-right: 5px;
  margin-bottom: -2px;
}

.fix-btn .head-btn1::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(assets/images/btn3.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.fix-btn .head-btn2 {
  background: var(--gr-color);
  position: relative;
  padding-right: 10px;
}

.fix-btn .head-btn2 svg {
  max-height: 20px;
  margin-right: 10px;
  margin-bottom: -5px;
}

.fix-btn .head-btn2::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(assets/images/btn2.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.black-bg { display: none; position: fixed; left: 0; top: 0; bottom: 0; right: 0; width: 100vw; height: 100vh; z-index: 990; background-color: #000; opacity: 0; visibility: hidden; transition: all .3s; cursor: pointer; }
.nav-open .black-bg { animation: show2 0.3s linear 0s; display: block; opacity: .4; visibility: visible; }
@keyframes show2{
    from{
        opacity: 0;
    }
    to{
        opacity: 0.4;
    }
}

/* =================== footer =================== */
footer {
  padding: 90px 0 20px;
}

footer small {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  color: #727171;
}

main {
  max-width: 1080px;
  margin: auto;
}

#top .fv {
  position: relative;
  border-bottom: 1px solid #999999;
  padding-top: 60px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#top .fv img {
  height: calc(100vh - 100px);
  -o-object-fit: cover;
     object-fit: cover;
}

#top .fv .text {
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 100%;
}

#top .fv .text h2 {
  display: inline-block;
}

#top .fv .text h2 .text1 {
  letter-spacing: 0.1em;
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  padding: 20px;
}

#top .fv .text h2 .text2 {
  letter-spacing: 0.2em;
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 5rem;
  padding: 20px;
}

#top section {
  margin-bottom: 60px;
}

#top section h2 {
  text-align: center;
  letter-spacing: 2px;
  font-size: 3.5rem;
  margin-bottom: 80px;
  font-weight: 300;
}

#top section .flex .img {
  width: 50%;
}

#top section .flex .img img {
  width: 110%;
}

#top section .flex .left.img img {
  margin-left: -10%;
}

#top section .flex .text {
  width: 50%;
}

#top section .flex .text.right {
  padding-left: 80px;
}

#top section .flex .text.left {
  padding-right: 80px;
}

#top section .box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#top section .box .text p {
  line-height: 3em;
}

#top section a {
  display: inline-block;
  position: relative;
  padding-bottom: 7px;
}

#top section a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #595757;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#top section a:hover:before {
  width: 0%;
}

#top #sec01 .left {
  position: relative;
}

#top #sec01 .left .pa {
  position: absolute;
  right: 20px;
  top: 60px;
  height: 100px;
  z-index: 1;
  width: 100px;
}

#top #sec01 .left {
  padding: 100px 50px 100px 0;
  position: relative;
  width: 50%;
}

#top #sec01 .left h3 {
  font-size: 5rem;
  line-height: 1.5em;
  margin-bottom: 20px;
  font-weight: 700;
}

#top #sec01 .left img {
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
  height: 90%;
  width: auto;
}

#top #sec01 .right {
  width: 50%;
}

.cta1 {
  padding: 60px 0 30px;
  background: var(--main-color);
  text-align: center;
  position: relative;
}

.cta1::before {
  position: absolute;
  content: '';
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
  width: 150px;
  height: 150px;
  background-image: url(assets/images/cta.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.cta1 p {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.cta1 .btn-box {
  margin-bottom: -50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cta1 .btn-box a {
  text-align: center;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.8rem;
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 20px;
  padding-left: 15px;
  box-shadow: 0px 3px 33px rgb(10 10 10 / 6%);
}

.cta1 .btn-box a:nth-child(1) {
  margin-right: 20px;
  background: #fff;
  color: #000;
  position: relative;
}

.cta1 .btn-box a:nth-child(1)::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(assets/images/btn1.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.cta1 .btn-box a:nth-child(2) {
  background: var(--gr-color);
  color: #fff;
  position: relative;
}

.cta1 .btn-box a:nth-child(2)::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(assets/images/btn2.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

#top #sec02 {
  margin-top: 90px;
}

#top #sec02 .container .top {
  position: relative;
}

#top #sec02 .container .top::after {
  position: absolute;
  content: '';
  top: 0px;
  right: 0%;
  display: block;
  width: 200px;
  height: 250px;
  background-image: url(assets/images/sec02-01.png);
  background-size: contain;
  background-repeat: no-repeat;
}

#top #sec02 .container .top .topttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

#top #sec02 .container .top .topttl .left {
  font-size: 3.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin-right: 20px;
}

#top #sec02 .container .top .topttl .right {
  font-size: 4.9rem;
  font-weight: bold;
}

#top #sec02 .container .top .topttl .right span {
  font-size: 10.7rem;
  color: var(--og-color);
}

#top #sec02 .container .top p {
  font-size: 1.8rem;
}

#top #sec02 .container .point-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 100px;
}

#top #sec02 .container .point-box .box {
  width: 48%;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 70px;
box-shadow: 0px 3px 33px rgb(10 10 10 / 6%);
}

#top #sec02 .container .point-box .box .pa {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 90px;
}

#top #sec02 .container .point-box .box h4 {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--main-color);
}

#top #sec02 .container .point-box .box p {
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.3;
  padding: 0 10px;
}

#top #sec03 .container .ttl {
  background-color: var(--main-color);
  text-align: center;
  font-size: 24px;
  padding: 30px 15px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 60px;
}

#top #sec03 .container .trouble {
  text-align: center;
}

#top #sec03 .container .trouble img {
  max-width: 60%;
  margin-bottom: 40px;
}

#top #sec03 .container .trouble p {
  font-size: 3rem;
  font-weight: bold;
}

#top #sec03 .container .trouble p span {
  color: var(--og-color);
}

#top #sec03 .container .feature {
  margin-top: 100px;
}

#top #sec03 .container .feature .f-ttl {
  text-align: center;
  color: var(--main-color);
  font-weight: bold;
  font-size: 3.0rem;
  margin-bottom: 60px;
}

#top #sec03 .container .feature .f-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#top #sec03 .container .feature .f-box .box {
  width: 48%;
  position: relative;
  padding: 50px 20px 30px;
  box-shadow: 0px 3px 33px rgb(10 10 10 / 6%);
  margin-bottom: 60px;
}
#top #sec03 .container .feature .f-box .box:nth-child(3),#top #sec03 .container .feature .f-box .box:nth-child(4){
  width: 100%;
}

#top #sec03 .container .feature .f-box .box .teacher{
height: 400px;
  object-position: top;
  object-fit: cover;
}
#top #sec03 .container .feature .f-box .box:nth-child(3) h4 {
  min-width: 330px;
}

#top #sec03 .container .feature .f-box .box h4 {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: inline-block;
  background-color: var(--main-color);
  padding: 15px 25px;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
}

#top #sec03 .container .feature .f-box .box ul {
  padding: 0 20px;
}

#top #sec03 .container .feature .f-box .box ul li {
  margin-bottom: 40px;
}

#top #sec03 .container .feature .f-box .box ul li:last-child {
  margin-bottom: 0;
}

#top #sec03 .container .feature .f-box .box ul li .sub-ttl2 {
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#top #sec03 .container .feature .f-box .box ul li .sub-ttl2 span {
  display: inline-block;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--main-color);
  text-align: center;
  line-height: 37px;
  font-weight: 600;
  color: var(--main-color);
  margin-right: 15px;
}

#top #sec03 .container .feature .f-box .box ul li p {
  font-size: 1.5rem;
}

#top #sec03 .container .feature .f-box .instructor {
  position: relative;
  width: 45%;
  padding: 0px 0px 30px;
  border: var(--main-color) 4px solid;
}

#top #sec03 .container .feature .f-box .instructor .name {
  background-color: var(--main-color);
  color: #fff;
  font-size: 1.7rem;
  display: inline-block;
  padding: 10px;
  position: absolute;
  left: -15px;
  top: 310px;
  line-height: 1.4;
  font-weight: bold;
}

#top #sec03 .container .feature .f-box .instructor .name span {
  font-size: 2rem;
  color: #fff;
}

#top #sec03 .container .feature .f-box .instructor .bottom {
  position: relative;
  padding: 50px 20px 0;
}

#top #sec03 .container .feature .f-box .instructor .bottom img {
  position: absolute;
  right: 20px;
  top: 10px;
  width: 90px;
}

#top #sec03 .container .feature .f-box .instructor .bottom .ttl {
  font-size: 1.8rem;
  font-weight: bold;
  background-color: var(--main-color);
  color: #fff;
  padding: 10px;
  margin-bottom: 20px;
  display: inline-block;
}

#top #sec03 .container .feature .f-box .instructor .bottom .ttl2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}

#top #sec03 .container .feature .f-box .instructor .bottom p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.f-ttl {
  text-align: center;
  color: var(--main-color);
  font-weight: bold;
  font-size: 3.0rem;
  margin-bottom: 60px;
}

#top #sec04 {
  background-color: #F5F5F5;
  padding-top: 120px;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 20px;
}

#top #sec04 p {
  color: var(--main-color);
  background-color: #fff;
  display: inline-block;
  margin: 0 auto;
  padding: 10px 60px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.7rem;
  margin-bottom: 30px;
}

#top #sec04 .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#top #sec04 .sns li a::before {
  display: none;
}

#top #sec04 .sns li a img {
  width: 75px;
  margin: 0 20px;
}

#top #sec05 {
  background-color: #F5F5F5;
  padding-top: 60px;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 60px;
}

#top #sec05 .accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}

#top #sec05 .accordion-area li {
  margin: 10px 0;
}

#top #sec05 .accordion-area section {
  background-color: #fff;
  margin-bottom: 20px;
}

#top #sec05 .title {
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 50px 3% 3%;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

#top #sec05 .title .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#top #sec05 .title .flex .left {
  display: inline-block;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--main-color);
  text-align: center;
  line-height: 35px;
  font-weight: 600;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--main-color);
  margin-right: 15px;
}

#top #sec05 .title .flex .right {
  font-size: 2rem;
  text-align: left;
  color: var(--main-color);
  font-weight: bold;
}

#top #sec05 .title::before, #top #sec05 .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: var(--main-color);
}

#top #sec05 .title::before {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

#top #sec05 .title::after {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

#top #sec05 .title.close::after {
  display: none;
}

#top #sec05 .answer-box {
  border-top: 1px dashed var(--main-color);
  display: none;
  background: #fff;
  padding: 3% 50px 3% 3%;
  text-align: left;
}

#top #sec05 .answer-box .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#top #sec05 .answer-box .flex .left {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--og-color);
  text-align: center;
  line-height: 35px;
  font-weight: 600;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--og-color);
  margin-right: 15px;
}

#top #sec05 .answer-box .flex .right {
  font-size: 2rem;
  color: var(--og-color);
  font-weight: bold;
}

#top #sec05 .answer-box p {
  padding-left: 55px;
}

#top #sec06 {
  background-color: var(--main-color);
  margin-bottom: 90px;
}

#top #sec06 .container {
  padding-top: 90px;
  padding-bottom: 100px;
}

#top #sec06 .container .f-ttl {
  color: #fff;
}

#top #sec06 .container .place ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

#top #sec06 .container .place ul li {
  width: 48%;
  margin-bottom: 30px;
}

#top #sec06 .container .place ul li img {
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}

#top #sec06 .container .place ul li p {
  color: #fff;
  font-weight: bold;
}

#top #sec06 .container .place ul li .name {
  font-size: 2rem;
  margin-top: 10px;
}

#top #sec06 .container .place ul li .time {
  font-size: 1.7rem;
}

#top #sec06 .container .place ul li .address {
  font-size: 1.5rem;
  line-height: 1.5;
}

#top #sec06 .container .place ul li .address a {
  color: #fff;
  text-decoration: underline;
}

#top #sec06 .container .place ul li .address a::before {
  display: none;
}

#top #sec06 .container .place p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

#top #sec07 {
  margin-bottom: 150px;
}

#top #sec07 .container .f-ttl {
  color: #000;
}

#top #sec07 .container .cta1 {
  padding-top: 40px;
}

#top #sec07 .container .cta1 p {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

#top #sec07 .container .cta1 .contact-box {
  padding-bottom: 40px;
}

#top #sec07 .container .cta1 .contact-box p {
  font-size: 1.9rem;
  margin-bottom: 0;
}

#top #sec07 .container .cta1 .contact-box .tel {
  font-size: 4rem;
  color: #fff;
  margin: 10px 0;
  font-family: 'Heebo', sans-serif;
}
.tel a{color: #fff;}
.tel a::before{
  display: none;
}
#top #sec07 .container .cta1 .contact-box .tel span {
  color: #fff;
  font-size: 2rem;
  margin-right: 10px;
}

#top #sec07 .container .cta1 .contact-box .fax {
  color: #fff;
  font-size: 2.5rem;
  font-family: 'Heebo', sans-serif;
}

#top #sec07 .container .cta1 .contact-box .fax span {
  color: #fff;
  font-size: 1.8rem;
  margin-right: 10px;
}

#top #sec07 .container .cta1::before {
  display: none;
}

#top #sec07 .container .cta1 .btn-box a {
  padding-bottom: 20px;
  box-shadow: 0px 3px 33px rgb(10 10 10 / 6%);
}

#top #sec07 .container .cta1 .btn-box a:before {
  display: none;
}

footer {
  background-color: var(--main-color);
  text-align: center;
  padding-bottom: 50px;
}

footer .container .pc .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .container .pc .flex .left {
  text-align: left;
}

footer .container .pc .flex .left .tel {
  font-size: 3rem;
  color: #fff;
  margin: 10px 0;
  font-family: 'Heebo', sans-serif;
}

footer .container .pc .flex .left .tel span {
  color: #fff;
  font-size: 2rem;
  margin-right: 10px;
}

footer .container .pc .flex .left .fax {
  color: #fff;
  font-size: 2.5rem;
  font-family: 'Heebo', sans-serif;
}

footer .container .pc .flex .left .fax span {
  color: #fff;
  font-size: 1.8rem;
  margin-right: 10px;
}

footer .container .pc .flex .right {
  text-align: left;
}

footer .container .pc .flex .right li {
  margin-bottom: 15px;
}

footer .container .pc .flex .right li a {
  font-size: 1.8rem;
  color: #fff;
}

footer .container .sp {
  padding-top: 50px;
}

footer .container .sp ul {
  margin-bottom: 40px;
}

footer .container .sp ul li {
  margin-bottom: 10px;
}

footer .container .sp ul li a {
  color: #fff;
  font-size: 1.7rem;
}

footer .container .sp .tel {
  font-size: 3rem;
  color: #fff;
  margin: 10px 0;
  font-family: 'Heebo', sans-serif;
}

footer .container .sp .tel span {
  color: #fff;
  font-size: 2rem;
  margin-right: 10px;
}

footer .container .sp .fax {
  color: #fff;
  font-size: 2.5rem;
  font-family: 'Heebo', sans-serif;
}

footer .container .sp .fax span {
  color: #fff;
  font-size: 1.8rem;
  margin-right: 10px;
}

footer .container img {
  max-width: 200px;
  margin-bottom: 20px;
}

footer small {
  color: #fff;
  margin-top: 50px;
}
/*# sourceMappingURL=style.css.map */