/**
 * style.css
 * @version 1.0.0
 */
@charset "UTF-8";

/* 設定 */
/* padding */
/* hover SET */
/*---------------------------------------------
BASE Page CSS
---------------------------------------------*/
/* For modern browsers */
.cf:before,
.cf:after {
  display: table;
  content: '';
}

.cf:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
  zoom: 1;
}

.relative {
  position: relative;
}

#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

p {
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph;
}


/* 設定 */
/* padding */
/* hover SET */
/*---------------------------------------------

Default CSS (for HTML5)

for all site
coded by cloud-box at 2016-07-07
imported to "page-type.css"

---------------------------------------------*/
/* 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,
hr,
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 {
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  font-family: 'Noto Sans JP',メイリオ, Meiryo, 'MS ゴシック', 'MS Gothic', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  overflow-y: scroll;
  color: #010101;
  background-color: #fff;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}

body {
  line-height: 1;
}

a,
ins {
  text-decoration: none;
}

address,
em,
cite,
dfn,
var {
  font-style: normal;
}

fieldset {
  border: none;
}

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

mark {
  background: none;
}

a {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  text-decoration: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

a:hover {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

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

ul,
ol {
  list-style-position: outside;
  list-style-type: none;
}

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

/*IE用セレクトボックスカスタマイズ*/
select::-ms-expand {
  display: none;
}

/* Box sizingの定義 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/* 設定 */
/* padding */
/* hover SET */
/*---------------------------------------------
form 共通 CSS
---------------------------------------------*/
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: 12px;
  font-weight: normal;
  margin: 0;
  padding: .4em;
  border: none;
  border: 1px solid #bbb;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type='text'] {
  width: 200px;
}

input[type='submit'] {
  cursor: pointer;
}

textarea {
  width: 200px;
}

textarea::-webkit-input-placeholder {
  color: #999;
}

textarea::-moz-placeholder {
  color: #999;
}

textarea:-ms-input-placeholder {
  color: #999;
}

textarea::-ms-input-placeholder {
  color: #999;
}

textarea::placeholder {
  color: #999;
}

select {
  color: #010101;
}

input {
  vertical-align: middle;
}

input::-webkit-input-placeholder {
  color: #999;
}

input::-moz-placeholder {
  color: #999;
}

input:-ms-input-placeholder {
  color: #999;
}

input::-ms-input-placeholder {
  color: #999;
}

input::placeholder {
  color: #999;
}

input:-webkit-autofill {
  -webkit-text-fill-color: #707070 !important;
}

/* checkbox radio select style */
.control {
  display: block;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control input:checked ~ span:before {
  background: #00b9c1;
}

.control input:checked ~ span:after {
  display: block;
}

.control input ~ span {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  cursor: pointer;
  background: #fff;
}

.control--checkbox span {
  text-align: left;
}

.control--checkbox span:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  content: '';
  border: 1px solid #00b9c1;
}

.control--checkbox span:after {
  position: absolute;
  top: 1px;
  left: 5px;
  display: none;
  width: 4px;
  height: 10px;
  content: '';
  -webkit-transform: rotate(38deg);
  -ms-transform: rotate(38deg);
  transform: rotate(38deg);
  border: solid #fff;
  border-width: 0 1px 1px 0;
}

.control--radio span:before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 12px;
  height: 12px;
  content: '';
  border: 1px solid #00b9c1;
  border-radius: 50%;
}

.control--radio span:after {
  position: absolute;
  top: 5px;
  left: 4px;
  display: none;
  width: 4px;
  height: 4px;
  content: '';
  border-radius: 50%;
  background: #fff;
}

.selectWrap {
  position: relative;
}

.selectWrap:before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 15px;
  width: 10px;
  height: 10px;
  content: '';
  -webkit-transform: rotate(45deg) translate(8px, 8px);
  -ms-transform: rotate(45deg) translate(8px, 8px);
  transform: rotate(45deg) translate(8px, 8px);
  color: #010101;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.btnConfirm {
  pointer-events: none;
  opacity: 0.8;
}

.btnConfirm.agree-cheked {
  pointer-events: auto;
  opacity: 1;
}


/* 設定 */
/* padding */
/* hover SET */
/*---------------------------------------------
swiper CSS
---------------------------------------------*/
.mainvisual .swiper-pagination-bullet-active {
  background-color: #ddd;
}

.mainvisual .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}

.swiper-container {
  height: 100%;
}

.swiper-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}


/*
グローバル
*/
/* 設定 */
/* padding */
/* hover SET */
/*
GLOBAL 404
*/
/*
GLOBAL 共通
*/
a {
  -webkit-transform: all 0.2s;
  -ms-transform: all 0.2s;
  transform: all 0.2s;
}

a:hover {
  opacity: 0.8;
}

/*
GLOBAL FORM
*/
/*
GLOBAL ページ
*/
/*
GLOBAL 投稿
*/
/*
GLOBAL TOP
*/


.sc_about .btn_cv {
	text-align: center;
}


/*
PC
*/
/* 設定 */
/* padding */
/* hover SET */
@media screen and (min-width: 769px) {
  /*
SP 共通
*/
  #contents_base {
    background-color: #fff !important;
  }
  .sp_disp {
    display: none;
  }
  #contents_inner {
    background-color: #fff !important;
    width: 100% !important;
  }
  .header_inner {
    min-width: 1000px;
    width: 100%;
    margin: 0px auto;
    padding-top: 25px;
    padding-bottom: 20px;
    padding-left: 80px;
  }
  .header_inner img {
    width: 343px;
  }
  .sc_mainv {
    overflow: hidden;
    position: relative;
    height: 710px;
    width: 100%;
    min-width: 1000px;
    background: url("../img/mv_pc.png") no-repeat;
    background-size: 1300px auto;
    background-position: center center;
  }
  .sc_mainv h1 {
    padding: 8px 20px 20px;
    background-color: #fff;
    font-size: 52px;
    line-height: 1;
    margin: auto;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    width: 620px;
    height: 80px;
  }
  .sc_about {
    position: relative;
  }
  .sc_about .btn_scroll {
    position: absolute;
    top: 50px;
    right: 20px;
  }
  .sc_about .btn_scroll img {
    width: 18px;
  }
  .sc_about h2 {
    text-align: center;
    font-size: 21px;
    margin-bottom: 60px;
  }
  .sc_about h2 strong {
    margin-top: 30px;
    display: block;
    font-size: 34px;
    line-height: 50px;
  }
  .sc_about p {
    text-align: center;
    font-size: 16px;
    line-height: 40px;
  }
  .sc_about .imgBox {
    position: relative;
    text-align: center;
    padding: 100px 0px 30px;
  }
  .sc_about .imgBox img {
    width: 170px;
  }
  .sc_about .imgBox p {
    font-size: 14px;
  }
  .sc_about .imgBox .tableBox {
    text-align: left;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: 140px;
    border: 1px solid #3cb855;
    background-color: #fff;
    padding: 10px 30px;
    width: 400px;
    border-radius: 20px;
  }
  .sc_about .imgBox .tableBox p {
    text-align: left;
  }
  .sc_about .imgBox table {
    font-size: 11px;
  }
  .sc_about .imgBox table:before {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #2ab145;
    position: absolute;
    top: 50%;
    left: -50px;
    -webkit-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }
  .sc_about .imgBox table th {
    width: 50px;
  }
  .sc_about .imgBox table td {
    text-align: left;
    line-height: 1.2;
  }
  .sc_about .btn_cv {
	padding: 0 0 60px;
  }
  .sc_feature {
    padding: 100px 0px 40px;
    min-width: 1000px;
  }
  .sc_feature .sc_inner {
    width: 1000px;
    margin: 0px auto;
  }
  .sc_feature .sc_inner .h2Wrap {
    margin-bottom: 100px;
  }
  .sc_feature .sc_inner .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 110px;
  }
  .sc_feature .sc_inner .box.no2 .imgBox {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .sc_feature .sc_inner .box.no2 .imgBox:before {
    content: "";
    position: absolute;
    top: -50px;
    right: 20px;
    left: auto;
    content: "";
    width: 50px;
    height: 80px;
    background: url("../img/no2.png") no-repeat;
    background-size: auto 100%;
    background-position: center center;
  }
  .sc_feature .sc_inner .box.no2 .txtBox {
    padding: 0px 54px 0px 0px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .sc_feature .sc_inner .box.no3 .imgBox:before {
    content: "";
    position: absolute;
    top: -50px;
    left: 20px;
    content: "";
    width: 50px;
    height: 80px;
    background: url("../img/no3.png") no-repeat;
    background-size: auto 100%;
    background-position: center center;
  }
  .sc_feature .sc_inner .box .imgBox {
    width: 375px;
    position: relative;
  }
  .sc_feature .sc_inner .box .imgBox:before {
    content: "";
    position: absolute;
    top: -50px;
    left: 20px;
    content: "";
    width: 40px;
    height: 80px;
    background: url("../img/no1.png") no-repeat;
    background-size: auto 100%;
    background-position: center center;
  }
  .sc_feature .sc_inner .box .imgBox img {
    width: 100%;
  }
  .sc_feature .sc_inner .box .txtBox {
    width: calc(100% - 375px);
    text-align: left;
    padding-left: 54px;
  }
  .sc_feature .sc_inner .box .txtBox h3 {
    font-size: 25px;
    margin-bottom: 20px;
    padding: 0px 40px;
    position: relative;
  }
  .sc_feature .sc_inner .box .txtBox h3:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -18px;
    left: 0px;
    width: 22px;
    height: 38px;
    background: url("../img/arrow2.png");
    background-size: cover;
  }
  .sc_feature .sc_inner .box .txtBox p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 1.2px;
  }
  .sc_dialogue {
    min-width: 1000px;
    padding: 100px 0px;
    background-color: #f4f5f5;
    position: relative;
    max-width: 1300px;
    margin: 0px auto;
    overflow: hidden;
  }
  .sc_dialogue:before {
    content: "";
    width: 1300px;
    height: 55px;
    background: url("../img/bg_top.png") no-repeat;
    background-size: 1300px auto;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -650px;
  }
  .sc_dialogue:after {
    content: "";
    width: 1300px;
    height: 48px;
    background: url("../img/bg_bottom.png") no-repeat;
    background-size: 1300px auto;
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -650px;
  }
  .sc_dialogue .sc_inner {
    margin: 0px auto;
    width: 653px;
  }
  .sc_dialogue .sc_inner h2 {
    border-left: 4px solid #2ab145;
    font-size: 25px;
    line-height: 38px;
    padding-left: 20px;
    margin-bottom: 35px;
  }
  .sc_dialogue .sc_inner p {
    width: 653px;
    margin-bottom: 75px;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 1.2px;
  }
  .btnWrap {
    text-align: center;
    padding: 50px 0px;
  }
  .btnWrap .btn {
    border: 1px solid #000;
    border-radius: 20px;
    display: inline-block;
    padding: 40px 110px;
    color: #000;
    font-size: 21px;
  }
  .btnWrap .btn span {
    padding-left: 34px;
    background: url("../img/arrow.png") left 0px center no-repeat;
    background-size: 18px;
  }
  .sc_curriculum {
    padding: 140px 0px 100px;
    background-color: #f4f5f5;
    min-width: 1000px;
    position: relative;
    overflow: hidden;
    max-width: 1300px;
    margin: 0px auto;
  }
  .sc_curriculum:before {
    content: "";
    width: 1300px;
    height: 55px;
    background: url("../img/bg_top.png") no-repeat;
    background-size: 1300px auto;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -650px;
  }
  .sc_curriculum:after {
    content: "";
    width: 1300px;
    height: 48px;
    background: url("../img/bg_bottom.png") no-repeat;
    background-size: 1300px auto;
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -650px;
  }
  .sc_curriculum .h2Wrap {
    margin-bottom: 80px;
  }
  .sc_curriculum p {
    text-align: center;
    font-size: 16px;
    line-height: 30px;
  }
  .sc_curriculum p span {
    display: block;
    text-align: center;
  }
  .sc_curriculum .h3Wrap {
    text-align: center;
  }
  .sc_curriculum .h3Wrap h3 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .sc_curriculum .imgBox {
    text-align: center;
  }
  .sc_curriculum .imgBox .line {
    height: 82px;
    width: auto;
    margin: 20px 0px;
  }
  .sc_curriculum .tableWrap {
    padding-top: 50px;
    text-align: center;
    margin-bottom: 80px;
  }
  .sc_curriculum .tableWrap span {
    text-align: center;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 20px;
  }
  .sc_curriculum table {
    margin: 0px auto;
    border: 1px solid #cfcfcf;
    width: 810px;
  }
  .sc_curriculum table th {
    border: 1px solid #cfcfcf;
    background-color: #dbf2df;
    color: #2ab145;
    padding: 6px 12px;
    font-size: 18px;
    text-align: center;
  }
  .sc_curriculum table td {
    text-align: center;
    border: 1px solid #cfcfcf;
    background-color: #fff;
    padding: 6px 12px;
    font-size: 16px;
    vertical-align: middle;
  }
  .sc_curriculum table td.kyukei {
    background-color: #f0f0f0;
  }
  .sc_curriculum table td:first-child {
    text-align: left;
  }
  .sc_curriculum .box {
    margin: 0px auto 50px;
    width: 810px;
    background-color: #fff;
    padding: 50px 80px;
  }
  .sc_curriculum .box h3 {
    text-align: center;
    border-bottom: 1px solid #2ab145;
    color: #2ab145;
    font-size: 21px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .sc_curriculum .box h4 {
    text-align: center;
    font-size: 17px;
    margin-bottom: 25px;
  }
  .sc_curriculum .box h4 span {
    color: #2ab145;
    font-size: 31px;
    padding-right: 5px;
  }
  .sc_curriculum .box p {
    letter-spacing: 1.12px;
    text-align: left;
    font-size: 14px;
    line-height: 26px;
  }
  .sc_curriculum .box .imgBox {
    margin-top: 30px;
  }
  .sc_curriculum .box ul {
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .sc_curriculum .box ul li {
    font-size: 10px;
    line-height: 18px;
    text-indent: -1em;
    padding-left: 1em;
  }
  
  .sc_curriculum .notice {
	width: 810px;
	margin: 10px auto 0;
    text-align: left;
  }
  .sc_curriculum .notice li {
    font-size: 12px;
    line-height: 1.4;
    text-indent: -1em;
    padding-left: 1em;
  }
  
  .sc_contact {
    padding-top: 100px;
  }
  .sc_contact .h2Wrap {
    margin-bottom: 80px;
  }
  .sc_contact p {
    text-align: center;
    font-size: 16px;
    line-height: 30px;
  }
  .sc_contact p.category {
    font-size: 21px;
    color: #2ab145;
  }
  .sc_contact p + p.category {
    margin-top: 4em;
  }
  .sc_contact p.price {
    font-size: 18px;
    line-height: 2.0;
  }
  .sc_contact p + p {
    margin-top: 20px;
  }
  .sc_contact p.notice {
    margin-bottom: 4em;
  }
  /*.sc_contact .btnWrap {
    margin-bottom: 230px;
  }*/
  .sc_contact .at {
    text-align: center;
    margin: 60px 0px 120px;
  }
  .sc_contact .at span {
    text-align: left;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding: 10px 0px;
    font-size: 10px;
    line-height: 18px;
    width: 490px;
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
  }
  .h2Wrap {
    text-align: center;
  }
  .h2Wrap h2 {
    font-size: 21px;
    display: inline-block;
    padding-bottom: 40px;
    background: url("../img/h2_bg.png") no-repeat center bottom;
    background-size: 160px auto;
  }
  footer {
    background-color: #f7f8f8;
  }
  footer p {
    text-align: center;
  }
  footer .footer_inner {
    padding-top: 62px;
    padding-bottom: 220px;
    width: 1000px;
    margin: 0px auto;
  }
  
  
  .sc_faq {
	  padding: 60px 0;
  }
  .sc_faq h2 {
	  margin: 0 0 80px;
  }
  .sc_faq .box {
	  margin: 0px auto;
      width: 810px;
  }
  .sc_faq dl {
	  margin: 0 0 90px;
  }
  .sc_faq dt {
	  color: #2ab145;
	  display: flex;
	  font-size: 16px;
	  margin: 0 0 1.2em;
  }
  .sc_faq dt > *:nth-child(1) {
	  width: 2.5em;
	  font-size: 28px;
  }
  .sc_faq dt > *:nth-child(2) {
	  flex: 1;
	  padding: .5em 0 0;
  }
  .sc_faq dd {
	  display: flex;
	  font-size: 14px;
	  line-height: 1.875;
  }
  .sc_faq dd > *:nth-child(1) {
	  width: 2.5em;
	  font-size: 28px;
  }
  .sc_faq dd > *:nth-child(2) {
	  flex: 1;
	  padding: .8em 0 0;
  }
}


/*
SP
*/
/* 設定 */
/* padding */
/* hover SET */
@media screen and (max-width: 768px) {
  /*
SP 共通
*/
  .pc_disp {
    display: none;
  }
  .header_inner {
    padding: 24px 20px;
  }
  .header_inner img {
    width: 40%;
  }
  .header_inner {
    width: 100%;
    margin: 0px auto;
    padding-top: 25px;
    padding-bottom: 20px;
    text-align: center;
  }
  .header_inner img {
    width: 220px;
  }
  .sc_mainv {
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    background-size: cover;
    background-position: center center;
  }
  .sc_mainv h1 {
    line-height: 2;
    margin: auto;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    width: 250px;
    height: 180px;
  }
  .sc_mainv h1 span {
    margin-bottom: 20px;
    text-align: center;
    display: inline-block;
    padding: 2px 10px 2px;
    background-color: #fff;
    font-size: 30px;
    width: 250px;
  }
  .sc_about {
    position: relative;
  }
  .sc_about .btn_scroll {
    display: none;
    position: absolute;
    top: 50px;
    right: 20px;
  }
  .sc_about .btn_scroll img {
    width: 18px;
  }
  .sc_about h2 {
    text-align: center;
    font-size: 14px;
    margin-bottom: 30px;
  }
  .sc_about h2 strong {
    margin-top: 30px;
    display: block;
    font-size: 21px;
    line-height: 33px;
  }
  .sc_about p {
    text-align: center;
    font-size: 13px;
    line-height: 30px;
  }
  .sc_about .imgBox {
    position: relative;
    text-align: center;
    padding: 50px 0px 0px;
  }
  .sc_about .imgBox img {
    width: 170px;
  }
  .sc_about .imgBox p {
    font-size: 14px;
  }
  .sc_about .imgBox .tableBox {
    text-align: left;
    border: 1px solid #3cb855;
    background-color: #fff;
    padding: 15px 15px;
    width: 90%;
    margin: 50px auto;
    border-radius: 10px;
  }
  .sc_about .imgBox .tableBox p {
    text-align: left;
  }
  .sc_about .imgBox table {
    font-size: 11px;
    position: relative;
  }
  .sc_about .imgBox table:before {
    content: "";
    width: 50px;
    height: 1px;
    background-color: #2ab145;
    position: absolute;
    top: -55px;
    left: 50%;
    margin-left: -80px;
    -webkit-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    transform: rotate(-60deg);
  }
  .sc_about .imgBox table th {
    width: 50px;
    padding: 5px 0px;
  }
  .sc_about .imgBox table td {
    padding: 5px 0px;
    text-align: left;
    line-height: 1.4;
  }
  .sc_about .btn_cv {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 0 50px;
  }
  
  .sc_dialogue {
    width: 100%;
    padding: 100px 38px;
    background-color: #f4f5f5;
    position: relative;
    overflow: hidden;
  }
  .sc_dialogue:before {
    content: "";
    width: 400px;
    height: 25px;
    background: url("../img/bg_top_sp.png") no-repeat;
    background-size: 400px auto;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -200px;
  }
  .sc_dialogue:after {
    content: "";
    width: 400px;
    height: 20px;
    background: url("../img/bg_bottom_sp.png") no-repeat;
    background-size: 400px auto;
    position: absolute;
    bottom: -2px;
    left: 50%;
    margin-left: -200px;
  }
  .sc_dialogue .sc_inner {
    margin: 0px auto;
  }
  .sc_dialogue .sc_inner h2 {
    border-left: 4px solid #2ab145;
    font-size: 16px;
    line-height: 27px;
    padding-left: 20px;
    margin-bottom: 15px;
  }
  .sc_dialogue .sc_inner p {
    margin-bottom: 35px;
    font-size: 11px;
    line-height: 22px;
  }
  .sc_feature {
    padding: 50px 38px 20px;
  }
  .sc_feature .sc_inner {
    width: 100%;
    margin: 0px auto;
  }
  .sc_feature .sc_inner .h2Wrap {
    margin-bottom: 100px;
  }
  .sc_feature .sc_inner .box {
    margin-bottom: 50px;
  }
  .sc_feature .sc_inner .box.no2 .imgBox {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .sc_feature .sc_inner .box.no2 .imgBox:before {
    content: "";
    position: absolute;
    right: 20px;
    left: auto;
    content: "";
    width: 50px;
    height: 55px;
    background: url("../img/no2.png") no-repeat;
    background-size: auto 100%;
    background-position: center center;
  }
  .sc_feature .sc_inner .box.no2 .txtBox {
    padding: 0px 0px 0px 0px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .sc_feature .sc_inner .box.no3 .imgBox:before {
    content: "";
    position: absolute;
    left: 20px;
    content: "";
    width: 50px;
    height: 55px;
    background: url("../img/no3.png") no-repeat;
    background-size: auto 100%;
    background-position: center center;
  }
  .sc_feature .sc_inner .box .imgBox {
    margin-bottom: 30px;
    width: 100%;
    position: relative;
  }
  .sc_feature .sc_inner .box .imgBox:before {
    content: "";
    position: absolute;
    top: -35px;
    left: 20px;
    content: "";
    width: 20px;
    height: 55px;
    background: url("../img/no1.png") no-repeat;
    background-size: auto 100%;
    background-position: center center;
  }
  .sc_feature .sc_inner .box .imgBox img {
    width: 100%;
  }
  .sc_feature .sc_inner .box .txtBox {
    width: 100%;
    text-align: left;
  }
  .sc_feature .sc_inner .box .txtBox h3 {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0px 30px;
    position: relative;
  }
  .sc_feature .sc_inner .box .txtBox h3:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -14px;
    left: 0px;
    width: 16px;
    height: 28px;
    background: url("../img/arrow2.png");
    background-size: cover;
  }
  .sc_feature .sc_inner .box .txtBox p {
    font-size: 11px;
    line-height: 20px;
  }
  .sc_curriculum {
    padding: 100px 0px;
    background-color: #f4f5f5;
    position: relative;
    overflow: hidden;
  }
  .sc_curriculum:before {
    content: "";
    width: 400px;
    height: 25px;
    background: url("../img/bg_top_sp.png") no-repeat;
    background-size: 400px auto;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -200px;
  }
  .sc_curriculum:after {
    content: "";
    width: 400px;
    height: 20px;
    background: url("../img/bg_bottom_sp.png") no-repeat;
    background-size: 400px auto;
    position: absolute;
    bottom: -2px;
    left: 50%;
    margin-left: -200px;
  }
  .sc_curriculum .h2Wrap {
    margin-bottom: 50px;
  }
  .sc_curriculum p {
    text-align: center;
    font-size: 12px;
    line-height: 30px;
  }
  .sc_curriculum p span {
    display: block;
    text-align: center;
  }
  .sc_curriculum .h3Wrap {
    text-align: center;
  }
  .sc_curriculum .h3Wrap h3 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .sc_curriculum .imgBox {
    text-align: center;
  }
  .sc_curriculum .imgBox .line {
    height: 42px;
    width: auto;
    margin: 10px 0px;
  }
  .sc_curriculum .scrollWrap {
    width: calc(100% - 28px);
    margin: 0px 0px 0px 28px;
    overflow-y: auto;
    padding-right: 28px;
  }
  .sc_curriculum .tableWrap {
    padding-top: 50px;
    text-align: center;
    margin-bottom: 80px;
  }
  .sc_curriculum .tableWrap span {
    text-align: center;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 20px;
  }
  .sc_curriculum table {
    margin: 0px auto;
    border: 1px solid #cfcfcf;
    width: 810px;
  }
  .sc_curriculum table th {
    border: 1px solid #cfcfcf;
    background-color: #dbf2df;
    padding: 6px;
    font-size: 12px;
    text-align: center;
    color: #2ab145;
  }
  .sc_curriculum table td {
    text-align: center;
    border: 1px solid #cfcfcf;
    background-color: #fff;
    padding: 6px;
    font-size: 12px;
    padding-left: 10px;
    vertical-align: middle;
  }
  .sc_curriculum table td.kyukei {
    background-color: #f0f0f0;
  }
  .sc_curriculum table td:first-child {
    text-align: left;
  }
  .sc_curriculum .box {
    margin: 0px auto 30px;
    width: calc(100% - 56px);
    background-color: #fff;
    padding: 30px 40px;
  }
  .sc_curriculum .box h3 {
    text-align: center;
    border-bottom: 1px solid #2ab145;
    color: #2ab145;
    font-size: 15px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .sc_curriculum .box h4 {
    text-align: center;
    font-size: 17px;
    margin-bottom: 25px;
  }
  .sc_curriculum .box h4 span {
    color: #2ab145;
    font-size: 31px;
    display: inline-block;
    padding-right: 5px;
  }
  .sc_curriculum .box p {
    letter-spacing: 1.12px;
    text-align: left;
    font-size: 11px;
    line-height: 21px;
  }
  .sc_curriculum .box .imgBox {
    margin-top: 30px;
  }
  .sc_curriculum .box ul {
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .sc_curriculum .box ul li {
    font-size: 10px;
    line-height: 18px;
    text-indent: -1em;
    padding-left: 1em;
  }
  .sc_curriculum .notice {
	width: calc(100% - 56px);
	margin: 5px auto 0;
    text-align: left;
  }
  .sc_curriculum .notice li {
    font-size: 10px;
    line-height: 1.4;
    text-indent: -1em;
    padding-left: 1em;
  }
  .sc_contact {
    padding-top: 50px;
    position: relative;
  }
  .sc_contact .h2Wrap {
    margin-bottom: 40px;
    font-size: 16px;
  }
  .sc_contact p {
    text-align: center;
    line-height: 30px;
    font-size: 13px;
  }
  .sc_contact p.category {
    font-size: 16px;
    color: #2ab145;
  }
  .sc_contact p + p.category {
    margin-top: 4em;
  }
  .sc_contact p.price {
    font-size: 14px;
    line-height: 2.0;
  }
  .sc_contact p + p {
    margin-top: 20px;
    font-size: 13px;
  }
  .sc_contact p.notice {
    margin-bottom: 4em;
  }
  .sc_contact .btnWrap {
    margin-bottom: 60px;
  }
  .sc_contact .at {
    text-align: center;
    margin: 60px 0px;
  }
  .sc_contact .at span {
    text-align: left;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding: 10px 0px;
    font-size: 9px;
    line-height: 18px;
    width: 80%;
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
  }
  footer {
    background-color: #f7f8f8;
  }
  footer .footer_inner {
    padding-top: 30px;
    padding-bottom: 100px;
    text-align: center;
    margin: 0px auto;
  }
  footer .footer_inner p {
    font-size: 10px;
    text-align: center;
  }
  .h2Wrap {
    text-align: center;
  }
  .h2Wrap h2 {
    font-size: 15px;
    display: inline-block;
    padding-bottom: 20px;
    background: url("../img/h2_bg.png") no-repeat center bottom;
    background-size: 105px auto;
  }
  .btnWrap {
    text-align: center;
    padding: 50px 0px;
  }
  .btnWrap .btn {
    border: 1px solid #000;
    border-radius: 20px;
    display: inline-block;
    padding: 30px 25px;
    color: #000;
    font-size: 13px;
  }
  .btnWrap .btn span {
    padding-left: 20px;
    background: url("../img/arrow.png") left 0px center no-repeat;
    background-size: 12px;
  }
  
  .sc_faq {
	  padding: 30px 0;
  }
  .sc_faq h2 {
	  margin: 0 0 40px;
  }
  .sc_faq .box {
	  margin: 0px auto;
      width: calc(100% - 56px);
  }
  .sc_faq dl {
	  margin: 0 0 45px;
  }
  .sc_faq dt {
	  color: #2ab145;
	  display: flex;
	  font-size: 14px;
	  margin: 0 0 1.2em;
	  line-height: 1.5;
  }
  .sc_faq dt > *:nth-child(1) {
	  width: 2.5em;
	  font-size: 20px;
  }
  .sc_faq dt > *:nth-child(2) {
	  flex: 1;
	  padding: .5em 0 0;
  }
  .sc_faq dd {
	  display: flex;
	  font-size: 12px;
	  line-height: 1.875;
  }
  .sc_faq dd > *:nth-child(1) {
	  width: 2.5em;
	  font-size: 20px;
  }
  .sc_faq dd > *:nth-child(2) {
	  flex: 1;
	  padding: .8em 0 0;
  }
}
