@charset "UTF-8";
/* ----------------------------------
    reset
----------------------------------- */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
  *::before,
  *::after { 
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
  }  
  body,h1,h2,h3,h4,h5{
    margin: 0px;
    padding: 0px;
    font-weight: normal;
  }
  body {
    color: #000000;
    background-color: #ffffff;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    line-height: 1.3;
    font-size: 16px;
  }
  ol, ul {
    list-style: none;
  }
  img {
    max-width: 100%;
    height: auto; 
  }
  table {
    border-collapse: collapse;
  }
  a{
    cursor: pointer;
  }

  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=esubmit],
  button,
  select,
  textarea {
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;
  }

/* ----------------------------------
    基本レイアウト
----------------------------------- */
#wrapper {
  overflow: hidden;
}


/* ----------------------------------
    共通パーツ
----------------------------------- */

.main_width {
  max-width: 1500px;
  margin-left: auto; /*max-widthを指定してmarginをautoにすると真ん中になる*/
  margin-right: auto;
  padding: 100px 60px 70px 60px;
}

@media only screen and (max-width: 1024px) {
  .main_width {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 80px;
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .main_width {
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

.bg_gray {
  background-color: #f5f4f1;
}

.section_title h2 {
  font-size: 40px;
  text-align: center;
  color: #2a17b6;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.section_box {
  margin: 74px 50px;
}

.btn_box {
  width: 33.3333%;
  margin: 0 auto;
}

.btn_link {
  height: 100%;
  color: #fff;
  background-color: #1666d6;
  opacity: 0.9;
  padding: 8px 10px;
  transition: 0.5s;
  border-radius: 5px;
}

.btn_link:hover {
  background-color: #1c39b8;
  transition: 0.5s;
}

.btn_link p {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}

.btn_link p span {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .section_title h2 {
    font-size: 40px;
    text-align: center;
    color: #2a17b6;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .section_box {
    margin: 40px 0px;
  }
  
  .btn_box {
    width: 50%;
    margin: 0 auto;
  }
  
  .btn_link {
    height: 100%;
    color: #fff;
    background-color: #1666d6;
    opacity: 0.9;
    padding: 8px 10px;
  }
  
  .btn_link p {
    font-weight: bold;
    text-align: center;
    font-size: 14px;
  }

  .btn_link p span {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .section_title h2 {
    font-size: 36px;
    text-align: center;
    color: #2a17b6;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .section_box {
    margin: 20px 0px;
  }
  
  .btn_box {
    width: 50%;
    margin: 0 auto;
  }
  
  .btn_link {
    height: 100%;
    color: #fff;
    background-color: #1666d6;
    opacity: 0.9;
    padding: 8px 10px;
  }
  
  .btn_link p {
    font-weight: bold;
    text-align: center;
    font-size: 14px;
  }

  .btn_link p span {
    display: block;
  }
}

/* ----------------------------------
    header
----------------------------------- */
header {
  height: 76px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #fff;
}

header #es_logo {
  padding: 10px 80px;
  height: 100%;
  display: flex;
  align-items: center;
}

/* ハンバーガーメニュー */
header #hd_menu_btn {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
}

header #hd_menu_btn img {
  width: auto;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  header {
    height: 76px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #fff;
  }
  
  header #es_logo {
    padding: 10px 40px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  /* ハンバーガーメニュー */
  header #hd_menu_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
  }
  
  header #hd_menu_btn img {
    width: auto;
    height: 100%;
  }
  
}

/* ----------------------------------
    first_view
----------------------------------- */
#first_view {
  background-image: url(../img/main.JPG);
  background-repeat: no-repeat;
  width: 100%;
  margin-top: 76px;
}

.top_bg {
  position: relative;
}

.top_area {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: center;
}

.top_left {
  text-align: center;
  padding: 100px;
  margin-right: 0;
  margin-left: auto;
}

.top_left img {
  border-radius: 50%;
}

.top_right {
  text-align: center;
  width: 400px;
  margin-right: auto;
  margin-left: 0;
  padding-top: 100px;
}

.top_name {
  text-align: center;
  width: 400px;
  padding-top: 50px;
}

.top_name h3 {
  color: #fff;
  font-size: 48px;
  padding-top: 20px;
  font-weight: bold;
  letter-spacing: 0.3em;
}

.top_name h5 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.top_menu {
  padding-top: 20px;
}

.top_menu h4 {
  border: 2px solid #fff;
  padding: 6px;
  margin-top: 10px;
  font-weight: bold;
  color: #fff;
}

/* 854px */
@media only screen and (max-width: 1024px) {  
  .top_area {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
  }
  
  .top_left {
    padding: 40px;
    text-align: center;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .top_left img {
    border-radius: 50%;
    width: 200px;
    margin-top: 50px;
  }
  
  .top_right {
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .top_name {
    padding-top: 50px;
  }
  
  .top_name h3 {
    color: #fff;
    font-size: 38px;
    padding-top: 0px;
    font-weight: bold;
    letter-spacing: 0.3em;
  }
  
  .top_name h5 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
  }
  
  .top_menu {
    padding-top: 20px;
    width: 50%;
    margin: 0 auto 50px auto;
  }
  
  .top_menu h4 {
    border: 2px solid #fff;
    padding: 6px;
    margin-top: 10px;
    font-weight: bold;
    color: #fff;
  }  
}

/* 480-360px 768px */
@media only screen and (max-width: 768px) {
  .top_left {
    padding: 40px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }

  .top_left img {
    width: 180px;
  }
  
  .top_left img {
    border-radius: 50%;
  }
  
  .top_right {
    text-align: center;
    width: 90%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .top_name h3 {
    color: #fff;
    font-size: 38px;
    padding-top: 0px;
    font-weight: bold;
    letter-spacing: 0.3em;
  }
  
  .top_name h5 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
  }
  
  .top_menu {
    padding-top: 20px;
  }
  
  .top_menu h4 {
    border: 1px solid #fff;
    padding: 6px;
    margin-top: 10px;
    font-weight: bold;
    color: #fff;
  }
}

/* ----------------------------------
    サービス
----------------------------------- */
.service_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 30px;
}


.service_inner {
  width: 50%;
}


.service_msg h3 {
  font-size: 28px;
  line-height: 1.8em;
  letter-spacing: 0.03em;
  font-weight: bold;
  text-align: center;
  padding-top: 16px;
}

.service_msg p {
  padding: 20px;
  font-size: 18px;
  line-height: 1.8em;
  letter-spacing: 0.03em;
}

.service_img {
  width: 50%;
}

.img_area img {
  max-width: 100%;
}

.lesson_flex {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}

.lesson_inner {
  width: 60%;
  padding-top: 16px;
}

.lesson_img {
  width: 40%;
}

/* 854px */
@media only screen and (max-width: 1024px) {
  .service_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
  }
  
  
  .service_inner {
    width: 50%;
  }
  
  
  .service_msg h3 {
    font-size: 24px;
    line-height: 1.8em;
    letter-spacing: 0.03em;
    font-weight: bold;
    text-align: center;
    padding-top: 10px;
  }
  
  .service_msg p {
    padding: 20px;
    font-size: 14px;
    line-height: 1.8em;
    letter-spacing: 0.03em;
  }
  
  .service_img {
    max-width: 1000px;
  }
  
  .img_area img {
    max-width: 100%;
    height: 100%;
  }
  
  .lesson_flex {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
  }
  
  .lesson_inner {
    padding-top: 16px;
  }
  
  .lesson_img {
    max-width: 1000px;
  }
  
}

/* 480-360px */
@media only screen and (max-width: 768px) {
  .service_box {
    text-align: center;
  }

  .service_flex {
    display: inline-block;
    justify-content: center;
    width: 90%;
    align-items: center;
    padding-bottom: 10px;
  }
  
  .service_inner {
    width: 100%;
  }
  
  .service_msg h3 {
    font-size: 20px;
    line-height: 1.8em;
    letter-spacing: 0.03em;
    font-weight: bold;
    text-align: center;
    padding-top: 10px;
  }
  
  .service_msg p {
    padding: 20px;
    font-size: 14px;
    line-height: 1.8em;
    letter-spacing: 0.03em;
  }
  
  .service_img {
    max-width: 768px;
    margin: 16px auto 10px auto;
  }

  .img_area {
    width: 100%;
  }
  
  .img_area img {
    width: 100%;
  }
  
  .lesson_flex {
    display: inline-block;
    flex-wrap: wrap;
    width: 90%;
    align-items: center;
    padding-top: 10px;
  }
  
  .lesson_inner {
    width: 100%;
    padding-top: 16px;
  }
  
  .lesson_img {
    max-width: 768px;
    margin: 2px auto;
  }

}


/* ----------------------------------
    料金
----------------------------------- */
table {
  width: 75%;
  margin: 30px auto;
  text-align: center;
  font-size: 22px;
  line-height: 1.8em;
  letter-spacing: 0.03em;
}

th {
  font-weight: bold;
  letter-spacing: 0.5em;
  border-bottom: 1px solid #000;
}

.price {
  max-width: 700px;
  margin: 50px auto;
}

.price p {
  max-width: 700px;
  text-align: left;
  margin-left: 100px;
}

.price_img {
  max-width: 1400px;
  display: flex;
}

.price_img img {
  width: 33.333%;
  padding: 50px 10px;
}

/* 854px */
@media only screen and (max-width: 1024px) {}

/* 480-360px */
@media only screen and (max-width: 768px) {
  table {
    width: 80%;
    margin: 30px auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8em;
    letter-spacing: 0.03em;
  }
  
  th {
    font-weight: bold;
    letter-spacing: 0.5em;
    border-bottom: 1px solid #000;
  }
  
  .price {
    max-width: 700px;
    margin: 10px auto;
  }
  
  .price p {
    max-width: 700px;
    text-align: left;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
  }
  
  .price_img {
    max-width: 768px;
    display: flex;
  }
  
  .price_img img {
    width: 33.333%;
    padding: 50px 6px;
  }
  
}

/* ----------------------------------
    school
----------------------------------- */
#school h3 {
  font-size: 28px;
  line-height: 1.8em;
  letter-spacing: 0.03em;
  font-weight: bold;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 10px;
}

/* ----------------------------------
    shop
----------------------------------- */
#shop .main_width {
  padding-bottom: 100px;
}



/* ----------------------------------
    札幌Futures
----------------------------------- */
#futures {
  background-image: url(../img/futures.jpg);
  background-repeat: no-repeat;
  max-width: 100%;
  height: 500px;
}

.futures_bg {
  position: relative;
  padding-top: 50px;
}

.futures_box {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding-top: 50px;
}

.futures_msg {
  width: 500px;
  margin: auto 50px;
  top: 40%;
  left: 8%;
}

.futures_msg p {
  background-color: #fff;
  opacity: 0.6;
  font-size: 20px;
  line-height: 1.8em;
  letter-spacing: 0.03em;
  font-weight: bold;
  padding: 10px 20px;
}

.futures_btn {
  width: 300px;
  margin: auto;
  top: 50%;
  right: 8%;
}

.futures_link {
  border: 1px solid #000;
  height: 100%;
  color: #fff;
  background-color: #2a17b6;
  opacity: 0.85;
  padding: 10px 10px;

}

.futures_link p {
  font-weight: bold;
  text-align: center;
}

/* 854px */
@media only screen and (max-width: 1024px) {
  #futures {
    background-image: url(../img/futures.jpg);
    background-repeat: no-repeat;
    max-width: 100%;
    height: 500px;
  }

  .futures_bg {
    position: relative;
    padding-top: 50px;
    text-align: center;
  }

  .futures_box {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding-top: 50px;
  }

  .futures_msg {
    width: 500px;
    margin: auto;
    top: 40%;
    left: 8%;
  }

  .futures_msg p {
    background-color: #fff;
    opacity: 0.6;
    font-size: 16px;
    line-height: 1.8em;
    letter-spacing: 0.03em;
    font-weight: bold;
    padding: 10px 20px;
  }

  .futures_btn {
    width: 200px;
    margin: 30px auto;
    top: 50%;
    right: 8%;
  }

  .futures_link {
    border: 1px solid #000;
    height: 100%;
    color: #fff;
    background-color: #2a17b6;
    opacity: 0.85;
    padding: 10px 10px;

  }

  .futures_link p {
    font-weight: bold;
    text-align: center;
  }

}

/* 480-360px */
@media only screen and (max-width: 768px) {
  #futures {
    background-image: url(../img/futures.jpg);
    background-repeat: no-repeat;
    max-width: 100%;
    height: 500px;
  }

  .futures_bg {
    position: relative;
    padding-top: 50px;
    text-align: center;
  }

  .futures_box {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding-top: 50px;
  }

  .futures_msg {
    width: 500px;
    margin: auto;
    top: 40%;
    left: 8%;
  }

  .futures_msg p {
    background-color: #fff;
    opacity: 0.6;
    font-size: 16px;
    line-height: 1.8em;
    letter-spacing: 0.03em;
    font-weight: bold;
    padding: 10px 20px;
  }

  .futures_btn {
    width: 200px;
    margin: 30px auto;
    top: 50%;
    right: 8%;
  }

  .futures_link {
    border: 1px solid #000;
    height: 100%;
    color: #fff;
    background-color: #2a17b6;
    opacity: 0.85;
    padding: 10px 10px;

  }

  .futures_link p {
    font-weight: bold;
    text-align: center;
  }
}

/* ----------------------------------
    お問合せ
----------------------------------- */
.contact {
  width: 80%;
  margin: 30px auto 0 auto;
}

.contact p {
  text-align: center;
  font-size: 20px;
  line-height: 1.8em;
  letter-spacing: 0.03em;
}



/* 854px */
@media only screen and (max-width: 1024px) {}

/* 480-360px */
@media only screen and (max-width: 768px) {
  .contact {
    width: 80%;
    margin: 30px auto;
  }
  
  .contact p {
    text-align: center;
    font-size: 16px;
    line-height: 1.8em;
    letter-spacing: 0.03em;
  }
}

/* ----------------------------------
    footer
----------------------------------- */
footer {
  height: 100px;
  width: 100%;
}

.sns_img {
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
  align-items: center;
}

.sns_img img {
  padding: 0 10px;
}

/* 854px */
@media only screen and (max-width: 1024px) {}

/* 480-360px */
@media only screen and (max-width: 768px) {}

/* ----------------------------------
    ハンバーガーメニュー
----------------------------------- */
 #sp_menu {
  display: block;
  position: fixed;
  background-color: #1666d6;
  width: 100%;
  height: 100%;
  z-index: 9999; /* 一番上にしたい*/
  top: 76px;
  right: -100%;
  overflow-x: hidden; /*はみ出た分を隠れておいてもらう指示*/
  overflow-y: auto; /*画面からはみ出た時にスクロールさせる*/
  padding-bottom: 76px;
  transition: all 0.8s; /*メニューをしまうスピード*/
}

#sp_menu.sp_menu_open {
  right: 0;
  transition: all 0.4s; /*メニューがでてくるスピード*/
}

#sp_menu .main_width {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 76px; /*ヘッダーの分下がっているので、直す*/
}

.hb_top ul {
  display: flex;
  flex-wrap: wrap;
}

.hb_top ul li {
  width: 33.3333%;
  color: #fff;
  margin-bottom: 60px;
  padding: 0 16px;
}


.hb_top a span.en {
  font-size: 40px;
  letter-spacing: 0.05em;
  font-family: 'Lato', sans-serif;
}

.hb_top a span.jp {
  font-size: 16px;
}

.hb_top ul li span {
  display: block;
}

/* 480-360px */
@media only screen and (max-width: 768px) {
  #sp_menu .main_width {
    height: auto;
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    overflow-y: auto; /*画面からはみ出た時にスクロールさせる*/
    padding-bottom: 60px; /*topに20px入れてるのでその20pxが出てこなくなるので、その対策*/
    padding-left: 30px;
  }  
  
  .hb_top ul li {
    width: 50%;
    color: #fff;
    margin-bottom: 30px;
  }
  
  .hb_top ul li a {
    width: 100%;
    max-width: 200px;
    margin: auto;
  }
  
  .hb_top a span.en {
    font-size: 28px;
    letter-spacing: 0.05em;
    font-family: 'Lato', sans-serif;
  }
  
  .hb_top a span.jp {
    font-size: 14px;
  }
  
  .hb_top ul li span {
    display: block;
  }
  
  .span_f {
    font-size: 12px;
  }
}

/* 480-360px */
@media only screen and (max-width: 480px) {
  #sp_menu .main_width {
    height: auto;
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    overflow-y: auto; /*画面からはみ出た時にスクロールさせる*/
    padding-bottom: 60px; /*topに20px入れてるのでその20pxが出てこなくなるので、その対策*/
  }  
  
  .hb_top ul li {
    width: 100%;
    color: #fff;
    margin-bottom: 30px;
  }
  
  
  .hb_top a span.en {
    font-size: 20px;
    letter-spacing: 0.05em;
    font-family: 'Lato', sans-serif;
  }
  
  .hb_top a span.jp {
    font-size: 12px;
  }
  
  .hb_top ul li span {
    display: block;
  }
  
  .span_f {
    font-size: 12px;
  }
}
