@charset "UTF-8";
/* reset
----------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-Mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
}

body {
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #404040;
  background-color: #fff;
  line-height: 2.77;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  body {
    line-height: 2;
  }
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  opacity: 0.8;
}

@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
main {
  position: relative;
  display: block;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 65px;
  }
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-between-wrap {
  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;
}

.flex-between-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-between-center-wrap {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-center-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-center-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .flex-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

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

  .flex-sp-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .flex-sp-between-wrap {
    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;
  }

  .flex-sp-between-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .flex-sp-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .flex-sp-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .flex-sp-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .flex-sp-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.u-keycolor {
  color: #ff7600;
}

.u-subcolor {
  color: #00d19c;
}

.u-bg-gray {
  background-color: #808080;
}

.u-tac {
  text-align: center;
}

.u-tar {
  text-align: right;
}

.u-tal {
  text-align: left;
}

.u-fwb {
  font-weight: bold;
}

.u-requier {
  color: #ff0000;
}

/*******************************
*　common
********************************/
/* コンテンツ幅 */
.inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1024px;
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .inner {
    padding: 0 10%;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 4%;
    width: 100%;
    max-width: 100%;
  }
}
* + .c-table01 {
  margin-top: 40px;
}

.c-table01 .ttl01 {
  color: #004E81;
  font-size: 18px;
  margin: 15px 0 10px 0;
  font-weight: 700;
}

.c-table01 {
  border-left: 1px solid #4ec67c;
  border-top: 1px solid #4ec67c;
}

.c-table01 th {
  padding: 1em;
  vertical-align: middle;
  width: 140px;
  border-right: 1px solid #4ec67c;
  border-bottom: 1px solid #4ec67c;
  color: #fff;
  background: #d6fced;
}
@media screen and (max-width: 768px) {
  .c-table01 th {
    display: block;
    width: 100%;
  }
}

.c-table01 td {
  padding: 1em 1.5em;
  width: calc(100% - 140px);
  border-right: 1px solid #4ec67c;
  border-bottom: 1px solid #4ec67c;
  background: #ffff;
}
@media screen and (max-width: 768px) {
  .c-table01 td {
    display: block;
    width: 100%;
  }
}

/**********************************
* header
********************************/
.header {
  position: fixed;
  width: 100%;
  height: 80px;
  background-color: #00d19c;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    height: 65px;
  }
}
.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 0;
  max-width: 1024px;
  height: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .header .inner {
    padding: 0 4%;
  }
}
@media screen and (max-width: 768px) {
  .header .inner {
    padding: 0 4%;
    max-width: 100%;
  }
}
.header .header-logo {
  padding-left: 18px;
  width: 40.62%;
  max-width: 416px;
}
@media screen and (max-width: 768px) {
  .header .header-logo {
    padding-left: 0;
    width: 45.94%;
    max-width: 155px;
  }
}
.header .header-logo a {
  display: block;
}
.header .header-logo img {
  vertical-align: middle;
}
.header .header-tel {
  display: block;
  width: 32.61%;
  max-width: 334px;
}
@media screen and (max-width: 768px) {
  .header .header-tel {
    width: 43.76%;
    max-width: 151px;
  }
}

/**********************************
* footer
********************************/
.footer {
  background-color: #00d19c;
}

.footer-logo {
  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;
  margin: 0 auto;
  width: 300px;
  height: 250px;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    width: calc(300 / 750 * 100%);
    height: calc(250 * 100vw / 750);
  }
}

.c-copy {
  background-color: #e6dde6;
  text-align: center;
}
.c-copy span {
  display: inline-block;
  padding: 1em 0;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .c-copy span {
    padding: 0.8em 0;
    font-size: 1rem;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

/*********************************
* mv
*********************************/
.mv-wrap {
  position: relative;
  padding-top: calc(400 / 1367 * 100%);
  height: 0;
  background-image: url(../img/mv_pc.jpg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}
@media screen and (max-width: 768px) {
  .mv-wrap {
    padding-top: calc(400 / 750 * 100%);
    background-image: url(../img/mv_sp.jpg);
    min-height: 1px;
  }
}
.mv-wrap .inner {
  position: absolute;
  left: calc((100% - 1024px)/2);
  top: 0;
  height: 100%;
  margin: 0 auto;
  max-width: 1024px;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .mv-wrap .inner {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .mv-wrap .inner {
    left: 0;
  }
}

.mv-ttl {
  position: absolute;
  top: 20%;
  left: 0;
  width: 646px;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .mv-ttl {
    top: 11%;
    left: 4%;
    width: calc(646 / 1366 * 100%);
  }
}
@media screen and (max-width: 768px) {
  .mv-ttl {
    top: 31%;
    left: 4%;
    width: calc(300 / 750 * 100%);
  }
}

.netshop-list {
  position: absolute;
  left: 50%;
  bottom: -100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 700px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .netshop-list {
    max-width: 630px;
    width: calc(630 / 750 * 100%);
    bottom: -36%;
  }
}

.netshop-list-item {
  margin: 0 auto;
  max-width: 200px;
}
.netshop-list-item:not(:first-child) {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .netshop-list-item:not(:first-child) {
    margin-left: 2%;
  }
}

.sec-intro {
  padding: 150px 0 100px;
  background: url(../img/bg_intro.jpg) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .sec-intro {
    padding: calc(210 / 750 * 100%) 0 calc(145 / 750 * 100%);
    background: url(../img/bg_intro_sp.jpg) no-repeat top center;
    background-size: cover;
  }
}
.sec-intro .ttl {
  margin: 0 auto 35px;
  max-width: 865px;
}
@media screen and (max-width: 768px) {
  .sec-intro .ttl {
    width: calc(516 / 690 * 100%);
    max-width: 516px;
  }
}
.sec-intro .ttl02 {
  margin: 0 auto 44px;
  max-width: 760px;
}
@media screen and (max-width: 768px) {
  .sec-intro .ttl02 {
    margin: 0 auto 23px;
    max-width: 690px;
  }
}
.sec-intro .intro-img {
  max-width: 800px;
  margin: 30px auto 52px;
}
@media screen and (max-width: 768px) {
  .sec-intro .intro-img {
    margin: calc(18 / 750 * 100%) auto calc(182 / 750 * 100%);
    max-width: 690px;
  }
}
.sec-intro .intro-img-arrow {
  margin: 0 auto 22px;
  max-width: 366px;
}
.sec-intro .intro-balloon {
  position: relative;
  padding: 2em 1em 1.8em 1.7em;
  font-size: 3.5rem;
  line-height: 1.35;
  font-weight: bold;
  color: #fff;
  background-color: #ff7600;
  border-radius: 132px;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .sec-intro .intro-balloon {
    font-size: 2.56vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-intro .intro-balloon {
    padding: 1.9em 3.2em;
    font-size: 1.7rem;
    font-size: 4.53vw;
  }
}
.sec-intro .intro-balloon:after {
  position: absolute;
  left: 50%;
  bottom: -40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 182.5px 0 182.5px;
  border-color: #ff7600 transparent transparent transparent;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .sec-intro .intro-balloon:after {
    bottom: -2.93vw;
    border-width: 2.92vw 13.32vw 0 13.32vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-intro .intro-balloon:after {
    bottom: -14px;
    border-style: solid;
    border-width: 32px 79px 0 79px;
    border-color: #ff7600 transparent transparent transparent;
  }
}
.sec-intro .intro-balloon .txt01 {
  font-size: 5.7rem;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .sec-intro .intro-balloon .txt01 {
    font-size: 4.17vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-intro .intro-balloon .txt01 {
    font-size: 2.8rem;
    font-size: 7.46vw;
  }
}
.sec-intro .intro-balloon .txt02 {
  font-size: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .sec-intro .intro-balloon .txt02 {
    font-size: 3.66vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-intro .intro-balloon .txt02 {
    font-size: 2.5rem;
    font-size: 6.66vw;
  }
}

.c-btn01 {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .c-btn01 {
    margin: 20px auto 0;
  }
}
.c-btn01 a {
  margin: 0 auto;
  padding: 0.7em 0;
  max-width: 650px;
  text-align: center;
  display: block;
  font-size: 5rem;
  font-weight: bold;
  color: #fff;
  background-size: auto auto;
  background-color: #ff5d00;
  background-image: repeating-linear-gradient(-20deg, transparent, transparent 5px, #ff7803 5px, #ff7803 10px);
  position: relative;
  line-height: 1.73;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .c-btn01 a {
    font-size: 3.66vw;
  }
}
@media screen and (max-width: 768px) {
  .c-btn01 a {
    font-size: 2.5rem;
    font-size: 6.66vw;
  }
}
.c-btn01 a::after {
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: url(../img/icon_arrow.svg) no-repeat center;
}

.c-btn02 {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .c-btn02 {
    margin: 20px auto 0;
  }
}
.c-btn02 a {
  margin: 0 auto;
  padding: 0.7em 0;
  max-width: 650px;
  text-align: center;
  display: block;
  font-size: 5rem;
  font-weight: bold;
  color: #fff;
  background-size: auto auto;
  background-color: #00c69b;
  background-image: repeating-linear-gradient(-20deg, transparent, transparent 5px, #00cd9c 5px, #00cd9c 10px);
  line-height: 1.73;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .c-btn02 a {
    font-size: 3.66vw;
  }
}
@media screen and (max-width: 768px) {
  .c-btn02 a {
    font-size: 2.5rem;
    font-size: 6.66vw;
  }
}
.c-btn02 a::after {
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: url(../img/icon_arrow.svg) no-repeat center;
}

.intro-list {
  margin: -16px -16px;
}
@media screen and (max-width: 768px) {
  .intro-list {
    margin: -2% -2%;
  }
}

.intro-item {
  margin: 16px;
  max-width: 319px;
  width: calc(319 / 1024 * 100%);
}
@media screen and (max-width: 768px) {
  .intro-item {
    margin: 2.5% 2%;
    width: calc(314 / 690 * 100%);
  }
}
.intro-item img {
  width: 100%;
}

.sec02 .inner {
  padding: 52px 0 60px;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .sec02 .inner {
    padding: 52px 10% 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec02 .inner {
    padding: 20px 4% 50px;
  }
}

.sec02 .inner p {
  font-size: 1.8rem;
  line-height: 2.77;
}
@media screen and (max-width: 768px) {
  .sec02 .inner p {
    font-size: 1.2rem;
    line-height: 2;
  }
}

.contact-box {
  margin-top: 100px;
  border: 8px solid #00d19c;
}
@media screen and (max-width: 768px) {
  .contact-box {
    margin-top: 60px;
    border: 4px solid #00d19c;
  }
}
.contact-box .contact-box-ttl {
  padding: 0.5em 0;
  text-align: center;
  font-size: 5rem;
  line-height: 1.74;
  font-weight: bold;
  color: #fff;
  background-color: #00d19c;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .contact-box .contact-box-ttl {
    font-size: 3.66vw;
  }
}
@media screen and (max-width: 768px) {
  .contact-box .contact-box-ttl {
    padding: 0.2em 0;
    font-size: 2.2rem;
    font-size: 5.86vw;
  }
}
.contact-box .contact-box-body {
  padding: 50px 56px;
  font-size: 4.5rem;
  line-height: 1.73;
  font-weight: bold;
  color: #ff7600;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .contact-box .contact-box-body {
    font-size: 3.29vw;
  }
}
@media screen and (max-width: 768px) {
  .contact-box .contact-box-body {
    padding: 30px 2%;
    font-size: 2.2rem;
    font-size: 5.86vw;
  }
  .contact-box .contact-box-body .txt01,
.contact-box .contact-box-body .txt02 {
    padding: 0 10%;
  }
}

.sec-intro .c-btn01 {
  margin-top: 216px;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .sec-intro .c-btn01 {
    margin-top: calc(260 / 896 * 100%);
  }
}
@media screen and (max-width: 768px) {
  .sec-intro .c-btn01 {
    margin-top: 52%;
  }
}
.sec-intro .c-btn01::before {
  position: absolute;
  display: block;
  top: -310px;
  left: 0;
  content: "";
  width: 450px;
  height: 322px;
  background: url(../img/img_illustration02.png) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .sec-intro .c-btn01::before {
    top: -200%;
    padding-top: calc(322 / 896 * 100%);
    width: calc(450 / 896 * 100%);
    height: 0;
  }
}
@media screen and (max-width: 768px) {
  .sec-intro .c-btn01::before {
    top: auto;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 0;
    width: calc(450 / 690 * 100%);
    padding-top: calc(332 / 690 * 100%);
  }
}

.sec02-ttl {
  padding: 0.9em 0;
  color: #fff;
  background-color: #00d19c;
  text-align: center;
  font-size: 3rem;
  line-height: 1;
}
.sec02-ttl img {
  vertical-align: middle;
  height: 1em;
}
@media screen and (max-width: 768px) {
  .sec02-ttl {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 768px) {
  .sec-course .inner > *,
.sec-place .inner > *,
.sec-supply .inner > * {
    padding: 0 10%;
  }

  .sec-expense .inner > p {
    padding: 0 10%;
  }
}
.place-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .place-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.place-wrap figure {
  max-width: 500px;
}
.place-wrap figure:nth-child(2) {
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .place-wrap figure:nth-child(2) {
    margin-top: 4%;
    margin-left: 0;
  }
}
.place-wrap + h3 {
  margin-top: 2.5em;
}

@media screen and (max-width: 768px) {
  .sec-date .c-tbl01 td {
    text-align: center;
  }
}

.sec-expense .c-tbl01 + p {
  margin-top: 1em;
}
.sec-expense p + p {
  margin-top: 2em;
}

.sec-course .thumb {
  margin: 42px auto 0;
  max-width: 500px;
}

.c-tbl01 {
  width: 100%;
  font-size: 1.8rem;
  border-left: 1px solid #4ec67c;
  border-top: 1px solid #4ec67c;
}
@media screen and (max-width: 768px) {
  .c-tbl01 {
    font-size: 1.2rem;
    line-height: 2;
  }
}

.c-tbl01 th {
  padding: 1em 3em;
  vertical-align: middle;
  border-right: 1px solid #4ec67c;
  border-bottom: 1px solid #4ec67c;
  background: #d6fced;
}
@media screen and (max-width: 768px) {
  .c-tbl01 th {
    display: block;
    width: 100%;
  }
}

.c-tbl01 td {
  padding: 1em 1.5em;
  border-right: 1px solid #4ec67c;
  border-bottom: 1px solid #4ec67c;
  background: #ffff;
}
@media screen and (max-width: 768px) {
  .c-tbl01 td {
    display: block;
    width: 100%;
    padding: 1em 10%;
  }
}

.sec-place h3 {
  font-size: 1.8rem;
  line-height: 2.77;
}
@media screen and (max-width: 768px) {
  .sec-place h3 {
    font-size: 1.2rem;
    line-height: 2;
  }
}

.curriculum-wrap {
  font-size: 1.8rem;
  border-top: 1px solid #4ec67c;
}
@media screen and (max-width: 768px) {
  .curriculum-wrap {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.curriculum-wrap .ttl {
  padding: 1em 3em;
  vertical-align: middle;
  border-left: 1px solid #4ec67c;
  border-right: 1px solid #4ec67c;
  border-bottom: 1px solid #4ec67c;
  background: #d6fced;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .curriculum-wrap .ttl {
    padding: 1em 10%;
  }
}
.curriculum-wrap .item-body {
  padding: 1em 3em;
  border-left: 1px solid #4ec67c;
  border-right: 1px solid #4ec67c;
  border-bottom: 1px solid #4ec67c;
  background: #ffff;
}
@media screen and (max-width: 768px) {
  .curriculum-wrap .item-body {
    padding: 1em 10%;
  }
}

.c-list01 {
  font-size: 1.8rem;
  line-height: 2.77;
}
@media screen and (max-width: 768px) {
  .c-list01 {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.c-list01[data-type=lower-alpha] {
  list-style-type: lower-alpha;
  padding-left: 1.5em;
}
.c-list01[data-type=type01] li::before {
  content: "・";
  display: inline-block;
}

.qa-wrap {
  width: 100%;
}
.qa-wrap .qa-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.qa-wrap .qa-q:nth-of-type(n+ 2) {
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .qa-wrap .qa-q:nth-of-type(n+ 2) {
    margin-top: 4px;
  }
}
.qa-wrap .qa-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2px;
}
.qa-wrap .qa-ttl-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.6rem;
  letter-spacing: -0.08em;
  color: #fff;
  background-color: #00e890;
  width: 100px;
}
@media screen and (max-width: 768px) {
  .qa-wrap .qa-ttl-q {
    font-size: 1.3rem;
    width: 50px;
  }
}
.qa-wrap .qa-ttl-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.6rem;
  color: #fff;
  background-color: #13b498;
  width: 100px;
}
@media screen and (max-width: 768px) {
  .qa-wrap .qa-ttl-a {
    font-size: 1.3rem;
    width: 50px;
  }
}
.qa-wrap .da-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2em;
  font-size: 1.5rem;
  line-height: 2.33;
  border-top: 1px solid #4ec67c;
  border-right: 1px solid #4ec67c;
  border-bottom: 1px solid #4ec67c;
  background: #d6fced;
  width: calc(100% - 100px);
}
@media screen and (max-width: 768px) {
  .qa-wrap .da-txt {
    padding: 0.3em 1.5em;
    font-size: 1.2rem;
    line-height: 2;
    width: calc(100% - 50px);
  }
}

.sec-contact {
  padding: 148px 0 122px;
  background-color: #d6fced;
}
@media screen and (max-width: 768px) {
  .sec-contact {
    padding: 58px 0 30px;
  }
}
.sec-contact .thumb {
  margin: 50px auto 0;
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .sec-contact .thumb {
    margin: 24px auto 0;
    width: calc(450 / 690 * 100%);
  }
}

.contact-box02 {
  padding: 70px 134px 114px;
  background-color: #fff;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .contact-box02 {
    padding: 35px 4% 57px;
    border-radius: 15px;
  }
}

.sidemenu {
  position: fixed;
  right: 0;
  top: 20%;
  width: calc(70 / 1366 * 100%);
  max-width: 70px;
  line-height: 1;
  -webkit-box-shadow: -4px 4px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: -4px 4px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 30px 0 0 30px;
  border-radius: 2.19vw 0 0 2.19vw;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  z-index: 101;
}
@media screen and (min-width: 769px) and (max-width: 1365px) {
  .sidemenu {
    width: calc(70 / 1366 * 100%);
    max-width: 70px;
  }
}
@media screen and (max-width: 768px) {
  .sidemenu {
    top: 27%;
    width: calc(70 / 750 * 100%);
    border-radius: 15px 0 0 15px;
    border-radius: 1.09vw 0 0 1.09vw;
  }
}
@media (orientation: landscape) and (max-width: 768px) {
  .sidemenu {
    top: auto;
    bottom: 5%;
    width: calc(45 / 750 * 100%);
  }
}
.sidemenu.is-active {
  opacity: 1;
}
.sidemenu .btn-contact01 {
  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;
  color: #fff;
  background-color: #ff7600;
}
.sidemenu .btn-contact01 span {
  display: inline-block;
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 2.5em 0 3em;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) and (max-width: 1365px) {
  .sidemenu .btn-contact01 span {
    font-size: 2rem;
    font-size: 1.46vw;
  }
}
@media screen and (max-width: 768px) {
  .sidemenu .btn-contact01 span {
    font-size: 1.2rem;
    font-size: 3.2vw;
  }
}
@media (orientation: landscape) and (max-width: 768px) {
  .sidemenu .btn-contact01 span {
    font-size: 1rem;
    font-size: 1.86vw;
  }
}
.sidemenu .btn-contact01 span::before {
  display: inline-block;
  margin-bottom: 0.5em;
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/icon_check.svg) no-repeat center;
}
.sidemenu .btn-contact02 {
  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;
  color: #fff;
  background-color: #00d19c;
}
.sidemenu .btn-contact02 span {
  position: relative;
  display: inline-block;
  padding: 1.5em 0 2em;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) and (max-width: 1365px) {
  .sidemenu .btn-contact02 span {
    font-size: 2rem;
    font-size: 1.46vw;
  }
}
@media screen and (max-width: 768px) {
  .sidemenu .btn-contact02 span {
    font-size: 1.2rem;
    font-size: 3.2vw;
  }
}
@media (orientation: landscape) and (max-width: 768px) {
  .sidemenu .btn-contact02 span {
    font-size: 1rem;
    font-size: 1.86vw;
  }
}
.sidemenu .btn-contact02 span::before {
  display: inline-block;
  margin-bottom: 0.5em;
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/icon_mail.svg) no-repeat center;
}
