@charset "UTF-8";
/*! ========================================
※※※※※※※※※※※※※※※※※※※※※※※※※※※
  このCSSファイルはSassから生成されていますので、
  編集しないようご注意ください。 by takayama
※※※※※※※※※※※※※※※※※※※※※※※※※※※
========================================= */
/*!
 * Eric Meyer's Reset CSS v2.0 (https://meyerweb.com/eric/tools/css/reset/)
 * https://cssreset.com
 */
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;
}

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;
}

/*! ========================================
　　　base（要素などに対するサイト全体に共通のスタイリング）
========================================= */
* {
  box-sizing: border-box;
}

body {
  color: #555;
  background-color: #e8e5e5;
  font-family: "メイリオ", "Meiryo", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: normal;
  font-style: normal;
}

/* 画像のフルードイメージ化 */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 全体のリンク色 */
a {
  color: #555;
}
a:hover {
  color: #26add3;
}
a:hover > img {
  opacity: 0.8;
}

/* SP版・TB版・PC版での表示・非表示 */
/* SP版のみで表示、TB・PC版で非表示 */
@media only screen and (min-width: 600px) {
  .sp {
    display: none;
  }
}
/* TB版のみで表示、SP・PC版で非表示 */
@media only screen and (max-width: 599px), only screen and (min-width: 1024px) {
  .tb {
    display: none;
  }
}
/* SP版・TB版のみで表示、PC版で非表示 */
@media only screen and (min-width: 1024px) {
  .sptb {
    display: none;
  }
}
/* TB・PC版で表示、SP版で非表示 */
@media only screen and (max-width: 600px) {
  .tbpc {
    display: none;
  }
}
/* PC版のみで表示、SP・TB版で非表示 */
@media only screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}
/* TB版のみで非表示、SP・PC版で表示 */
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .sppc {
    display: none;
  }
}
/* .container の設定（MAX1000px・中央揃え・clearfix） */
.container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  *zoom: 1;
}
.container::after {
  content: "";
  display: table;
  clear: both;
}

/* .inner の共通設定 */
.inner {
  background-color: #fff;
  padding: 20px;
}

/*! ========================================
　　　header
========================================= */
/* ヘッダー */
header {
  background-color: #fff;
  width: 100%;
  height: 89px;
  position: absolute;
  z-index: 6;
  border-bottom: 1px solid #ccc;
}
header .container {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 600px) {
  header {
    height: 111px;
  }
}
@media only screen and (min-width: 1024px) {
  header {
    position: static;
    height: auto;
    border: none;
  }
}
header.sticky {
  position: fixed;
  top: -21px;
}
@media only screen and (min-width: 1024px) {
  header.sticky {
    position: static;
    border: none;
  }
}
header a {
  text-decoration: none;
}

/* ヘッダーキャッチ */
.header__catch {
  font-size: 10px;
  padding-top: 10px;
  padding-bottom: 5px;
  margin-left: -5px;
}
@media only screen and (min-width: 600px) {
  .header__catch {
    font-size: 11px;
  }
}

/* ロゴ〜SP用メニューボタンを仮想テーブルレイアウト */
.header__dtable {
  width: 100%;
  display: table;
  padding-bottom: 10px;
}
@media only screen and (min-width: 1024px) {
  .header__dtable {
    width: 980px;
    margin-left: -5px;
    margin-right: -15px;
  }
}

/* ヘッダーロゴ */
.header__logo {
  display: block;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

.header__logolink {
  display: block;
  width: 140px;
}
@media only screen and (min-width: 600px) {
  .header__logolink {
    width: 196px;
  }
}

.header__logoimg {
  width: 100%;
  height: auto;
  margin-left: -5px;
}

/* ヘッダー右　電話番号・資料請求用ボタン */
.header__info {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header__info {
    display: block;
    /*width: 250px;*/
    width: 560px;
    display: table-cell;
    vertical-align: bottom;
    text-align: right;
  }
}
.fcc {
  margin-right: 20px;
}

.header__inq {
  float: right;
}
.header__inqbtn {
  display: block;
  width: 270px;
  height: 40px;
  background-color: #e64b68;
  box-shadow: 0 0 15px #e33555 inset;
  font-size: 15px;
  font-weight: bold;
  line-height: 40px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}
.header__inqbtn i {
  margin-right: 0.3em;
}
.header__inqbtn:hover {
  color: #fff;
  background-color: #ec788e;
  box-shadow: none;
}
.header__inqbtn::before {
  content: "\f044";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}

.header__tel {
  margin-bottom: 8px;
}
.header__tel a {
  color: #666;
  font-size: 18px;
  font-weight: bold;
}
.header__tel a::before {
  content: "\f095";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
.header__tel a:hover {
  color: #26add3;
}

/* グローバルナビ SP・TB版ボタン */
.gnav--sp {
  display: table-cell;
  vertical-align: bottom;
  text-align: right;
}

.gnav--sp__trigger,
.gnav--sp__trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.gnav--sp__trigger {
  position: relative;
  width: 32px;
  height: 38px;
}
@media only screen and (min-width: 600px) {
  .gnav--sp__trigger {
    width: 40px;
    height: 45px;
  }
}
@media only screen and (min-width: 1024px) {
  .gnav--sp__trigger {
    display: none;
  }
}
.gnav--sp__trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #555;
  border-radius: 4px;
}
@media only screen and (min-width: 600px) {
  .gnav--sp__trigger span {
    height: 5px;
    border-radius: 5px;
  }
}
.gnav--sp__trigger span:nth-of-type(1) {
  top: 0;
}
.gnav--sp__trigger span:nth-of-type(2) {
  top: 10px;
}
@media only screen and (min-width: 600px) {
  .gnav--sp__trigger span:nth-of-type(2) {
    top: 12px;
  }
}
.gnav--sp__trigger span:nth-of-type(3) {
  top: 20px;
}
@media only screen and (min-width: 600px) {
  .gnav--sp__trigger span:nth-of-type(3) {
    top: 24px;
  }
}
.gnav--sp__trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.gnav--sp__trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.gnav--sp__trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
@media only screen and (min-width: 600px) {
  .gnav--sp__trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
  }
  .gnav--sp__trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
  }
}
.gnav--sp__trigger p {
  font-size: 10px;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
}
@media only screen and (min-width: 600px) {
  .gnav--sp__trigger p {
    font-size: 11px;
  }
}

/* グローバルナビ */
.gnav {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #999;
  z-index: 6;
}
@media only screen and (min-width: 1024px) {
  .gnav {
    position: absolute;
  }
  .gnav.sticky {
    position: fixed;
    top: 0;
  }
}
.gnav ul {
  background-color: #fff;
  background: url(../img/bg_str1_gray.png);
  padding: 20px;
  position: fixed;
  top: 89px;
  right: 0;
  box-shadow: -2px 2px 5px #999;
  display: none;
  z-index: 7;
  *zoom: 1;
}
.gnav ul::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .gnav ul {
    top: 111px;
  }
}
@media only screen and (min-width: 1024px) {
  .gnav ul {
    display: block;
    position: static;
    background: none;
    background-color: #fff;
    width: 1000px;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0 0;
  }
}
.gnav ul li {
  width: 20%;
  text-align: center;
  font-weight: bold;
}
@media only screen and (min-width: 1024px) {
  .gnav ul li {
    float: left;
  }
}
.gnav ul li.sptb {
  margin-top: 20px;
}
.gnav ul li a {
  display: block;
  width: 190px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  margin: 0 auto 10px;
  border-radius: 5px;
}
.gnav ul li a[href="merit.php"] {
  background: #26add3;
  box-shadow: 2px 2px 0 #4dbfdf inset, -2px -2px 0 #1e8aa8 inset;
  text-shadow: 2px 2px 10px #229bbd;
}
.gnav ul li a[href="merit.php"]:hover {
  box-shadow: 2px 2px 0 #1e8aa8 inset;
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.gnav ul li a[href="menu.php"] {
  background: url(../img/ico_course.png) 22px center no-repeat #f5cd03;
  box-shadow: 2px 2px 0 #fcda2f inset, -2px -2px 0 #c3a302 inset;
  text-shadow: 2px 2px 10px #dcb803;
  padding-left: 20px;
}
.gnav ul li a[href="menu.php"]:hover {
  box-shadow: 2px 2px 0 #c3a302 inset;
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.gnav ul li a[href="access.php"] {
  background: url(../img/ico_school.png) 22px center no-repeat #ee9f28;
  box-shadow: 2px 2px 0 #f2b457 inset, -2px -2px 0 #d28511 inset;
  text-shadow: 2px 2px 10px #ea9413;
  padding-left: 20px;
}
.gnav ul li a[href="access.php"]:hover {
  box-shadow: 2px 2px 0 #d28511 inset;
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.gnav ul li a[href="students.php"] {
  background: url(../img/ico_voice@2x.png) 22px center no-repeat #e64b68;
  box-shadow: 2px 2px 0 #ec788e inset, -2px -2px 0 #df1f43 inset;
  text-shadow: 2px 2px 10px #e33555;
  padding-left: 20px;
  background-size: 30px 19px;
}
.gnav ul li a[href="students.php"]:hover {
  box-shadow: 2px 2px 0 #df1f43 inset;
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.gnav ul li a[href="access.php#ac-event"] {
  background: #8ea925;
  box-shadow: 2px 2px 0 #b0d22f inset, -2px -2px 0 #6b7f1c inset;
  text-shadow: 2px 2px 10px #7c9420;
}
.gnav ul li a[href="access.php#ac-event"]:hover {
  box-shadow: 2px 2px 0 #6b7f1c inset;
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.gnav ul li a[href="contact.php"] {
  color: #e64b68;
  background-color: #fce8eb;
  border-radius: 0;
  box-shadow: 2px 2px 0 #f2a5b3 inset, -2px -2px 0 #ec788e inset;
}
.gnav ul li a[href="contact.php"]:hover {
  box-shadow: 2px 2px 0 #ec788e inset;
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.gnav ul li a[href="fc.php"] {
  color: #e64b68;
  background-color: #fce8eb;
  border-radius: 0;
  box-shadow: 2px 2px 0 #f2a5b3 inset, -2px -2px 0 #ec788e inset;
}
.gnav ul li a[href="fc.php"]:hover {
  box-shadow: 2px 2px 0 #ec788e inset;
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.gnav.sticky ul {
  top: 68px;
}
@media only screen and (min-width: 600px) {
  .gnav.sticky ul {
    top: 90px;
  }
}
@media only screen and (min-width: 1024px) {
  .gnav.sticky ul {
    position: static;
    display: block;
  }
}
.gnav li:last-child a {
  border-bottom: none;
  margin-bottom: 0;
}

/*! ========================================
　　　footer
========================================= */
/* フッター*/
footer {
  background-color: #fff100;
}
footer .container {
  padding: 20px;
}
@media only screen and (min-width: 1024px) {
  footer .container {
    padding-left: 0;
    padding-right: 0;
  }
}
footer small {
  display: block;
  font-size: 13px;
  line-height: 1.4em;
  text-align: center;
}

/* フッターナビ */
.ftnav {
  padding: 10px;
  *zoom: 1;
}
.ftnav::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .ftnav div {
    float: left;
    width: 50%;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .ftnav div {
    width: 33.333%;
  }
}
.ftnav ul {
  line-height: 2.2em;
  margin-bottom: 12px;
}
.ftnav ul li {
  font-weight: bold;
}
.ftnav ul li a {
  display: block;
  text-decoration: none;
}
.ftnav ul li a::before {
  content: "\f105";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
.ftnav ul li ul li {
  font-weight: normal;
  text-indent: 1em;
  line-height: 1.5em;
}

/* フッターバナー */
.ftbnr {
  *zoom: 1;
}
.ftbnr::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .ftbnr {
    width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .ftbnr {
    width: 100%;
  }
}
.ftbnr div {
  margin-bottom: 20px;
}
@media only screen and (min-width: 600px) {
  .ftbnr div {
    float: left;
    width: 270px;
    height: auto;
    margin-right: 20px;
  }
  .ftbnr div:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .ftbnr div {
    width: 320px;
    height: 150px;
  }
}

/* CSSでスタイリングしたバナー */
.bnrcss {
  background-color: #fff;
  font-weight: bold;
  width: 100%;
  height: auto;
  max-width: 560px;
  padding-bottom: 10px;
}
@media only screen and (min-width: 1024px) {
  .bnrcss {
    float: left;
    width: 320px;
    height: 150px;
  }
}
.bnrcss h2 {
  color: #fff;
  font-size: 18px;
  background: url(../img/bg_str1_darkblue.png);
  padding: 8px;
  text-align: center;
}
.bnrcss a {
  color: #0e7ac4;
  *zoom: 1;
  font-size: 21px;
  display: block;
  padding: 10px 10px 5px;
}
.bnrcss a::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 1024px) {
  .bnrcss a {
    font-size: 23px;
    padding: 25px 10px 9px 20px;
  }
  .bnrcss a:last-child {
    padding: 9px 10px 10px 20px;
  }
}
.bnrcss a:hover {
  color: #26add3;
}
.bnrcss i,
.bnrcss span {
  display: block;
  float: left;
}
.bnrcss i {
  width: 1.5em;
}
.bnrcss span {
  width: 200px;
}
.bnrcss span.mail {
  line-height: 1.1;
}

/*　TOPへボタン　*/
.btn_gototop a {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 54px;
  height: 54px;
  border-radius: 27px;
  display: block;
  padding-top: 8px;
  font-size: 14px;
  text-align: center;
  line-height: 1.5em;
  color: #26add3;
  background-color: rgba(38, 173, 211, 0.3);
  z-index: 2;
}
@media only screen and (min-width: 1024px) {
  .btn_gototop a {
    right: 50%;
    margin-right: -480px;
    bottom: 15px;
  }
}
.btn_gototop a:hover {
  background-color: rgba(38, 173, 211, 0.5);
  color: #0e7ac4;
}
.btn_gototop i {
  display: block;
  width: 100%;
  text-align: center;
}

/*! ========================================
　　　main（メイン領域の共通設定）
========================================= */
/* ヘッダー直下要素の余白設定・パディングver */
.under-header--pd {
  padding-top: 88px;
}
@media only screen and (min-width: 600px) {
  .under-header--pd {
    padding-top: 110px;
  }
}
@media only screen and (min-width: 1024px) {
  .under-header--pd {
    padding-top: 59px;
  }
}

/* ヘッダー直下要素の余白設定・マージンver */
.under-header--mg {
  margin-top: 88px;
}
@media only screen and (min-width: 600px) {
  .under-header--mg {
    margin-top: 110px;
  }
}
@media only screen and (min-width: 1024px) {
  .under-header--mg {
    margin-top: 59px;
  }
}

/* ヘッダー下タイトル部分 */
.pgtitle__bg {
  background: url("../img/bg_pgtitle_blue.jpg") center center no-repeat;
  background-size: cover;
  padding: 10px 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 4px #ccc;
}
@media only screen and (min-width: 600px) {
  .pgtitle__bg {
    padding: 15px 0;
  }
}
@media only screen and (min-width: 1024px) {
  .pgtitle__bg {
    padding: 30px 0;
    background-position: left;
  }
}

.pgtitle__heading {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff,
    -2px -2px 1px #fff;
  padding: 0 15px;
}
@media only screen and (min-width: 600px) {
  .pgtitle__heading {
    font-size: 25px;
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .pgtitle__heading {
    font-size: 27px;
    padding: 0 40px;
  }
}

/* パンくずリスト */
.pankuzu {
  background-color: #fff;
  padding: 15px 20px;
  box-shadow: 0 7px 8px -5px #999 inset;
}
.pankuzu li {
  display: inline;
  color: #aaa;
  font-size: 11px;
}
.pankuzu li::after {
  content: "\f105";
  font-family: FontAwesome;
  font-weight: normal;
  padding-left: 0.6em;
}
.pankuzu li:last-child:after {
  content: none;
}
.pankuzu li a {
  color: #aaa;
  text-decoration: none;
}
.pankuzu li a:hover {
  color: #26add3;
}

/* サブナビ */
.subnav {
  width: 100%;
}
.subnav ul {
  line-height: 2;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 10px 0 10px 40px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  *zoom: 1;
}
.subnav ul::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .subnav ul {
    display: table;
    text-align: center;
    padding: 10px 0;
  }
}
@media only screen and (min-width: 1024px) {
  .subnav ul {
    width: 80%;
    font-size: 18px;
  }
}
@media only screen and (min-width: 600px) {
  .subnav li {
    display: table-cell;
  }
}
.subnav li a {
  text-decoration: none;
}
.subnav li a::before {
  content: "\f013";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
.subnav li a:hover {
  color: #f5cd03;
}

.subnav-long ul {
  width: 100%;
  padding: 0;
}
@media only screen and (min-width: 600px) {
  .subnav-long ul {
    width: 90%;
  }
}

.recruit__intro .subnav li {
  padding: 10px;
}
.recruit__intro .subnav a {
  background-color: #fef5c6;
  display: block;
  padding: 0 5px 0 10px;
  border-radius: 5px;
}

/* メイン領域 */
main {
  display: block;
}
main section {
  padding: 35px 20px 35px;
}
@media only screen and (min-width: 600px) {
  main section {
    padding: 50px 40px 50px;
  }
}
main section article {
  padding: 35px 0 35px;
}
@media only screen and (min-width: 1024px) {
  main section article {
    padding: 45px 0 45px;
  }
}
main section p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.2em;
  line-height: 1.55;
}
main.container {
  background-color: #fff;
}

/*! ========================================
　　　TOPページ
========================================= */
/* スライドショー */
@media only screen and (min-width: 1024px) {
  .top__slidebg {
    width: 100%;
    background: url(../img/bg_str1_gray.png);
    box-shadow: 0 5px 4px #ccc;
  }

  .top__slide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* TOP_無料体験イベント（イベント・トピックスページでも流用） */
#top__seminar {
  background-color: #ebe432;
  padding-top: 40px;
  box-shadow: 0 7px 8px -5px #999 inset;
}
@media only screen and (min-width: 1024px) {
  #top__seminar {
    padding-top: 50px;
  }
}
#top__seminar p {
  margin-bottom: 0;
}

.seminar__inner {
  height: 240px;
  padding: 15px 8px;
}
@media only screen and (min-width: 600px) {
  .seminar__inner {
    height: 450px;
    padding: 25px 40px;
  }
}
#top__seminar .seminar__inner {
  background-color: #ebe432;
}
#ac-event .seminar__inner,
#ks-event .seminar__inner {
  background-color: #e8f2c2;
  margin: 0 -10px 20px -10px;
  border-top: 3px solid #8ea925;
  border-bottom: 3px solid #8ea925;
}
@media only screen and (min-width: 600px) {
  #ac-event .seminar__inner,
  #ks-event .seminar__inner {
    padding: 25px 20px;
  }
}

#top_taiken_jikan,
#ac_taiken_jikan {
  height: 210px;
  padding-top: 1px;
  max-width: 100%;
  overflow-y: scroll;
}
@media only screen and (min-width: 600px) {
  #top_taiken_jikan,
  #ac_taiken_jikan {
    height: 400px;
  }
}

#top_taiken_jikan {
  border-top: 1px dashed #0e7ac4;
  border-bottom: 1px dashed #0e7ac4;
}

.hold_list {
  background-color: #fff;
  margin: 10px 20px 20px 10px;
  width: auto;
  padding: 15px;
  font-weight: bold;
  box-shadow: 2px 2px 0 #aaa;
  overflow: hidden;
  border-radius: 5px;
}
.hold_list dt,
.hold_list dd {
  line-height: 30px;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .hold_list dt,
  .hold_list dd {
    line-height: 40px;
    float: left;
  }
}
.hold_list dt {
  font-size: 17px;
  color: #0e7ac4;
}
.hold_list dt::before {
  content: "\f073";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
@media only screen and (min-width: 1024px) {
  .hold_list dt {
    width: 30%;
  }
}
.hold_list dd:nth-child(3) {
  margin-bottom: 20px;
  margin-top: 10px;
}
@media only screen and (min-width: 1024px) {
  .hold_list dd:nth-child(3) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 480px) {
  .hold_list dt,
  .hold_list dd:nth-child(2) {
    text-align: center;
  }
}
@media only screen and (min-width: 600px) {
  .hold_list dt,
  .hold_list dd:nth-child(2) {
    width: 50%;
    text-align: left;
  }
}

@media only screen and (min-width: 1024px) {
  .hold_list dd {
    float: left;
  }
  .hold_list dt,
  .hold_list dd:nth-child(2),
  .hold_list dd:nth-child(3) {
    width: 30%;
  }
  .hold_list dd:nth-child(3) {
    margin-bottom: 0px;
    margin-top: 20px;
  }
  .hold_list dd:last-child {
    margin-left: auto;
    margin-right: auto;
  }
}
.hold_list dd a[href^="kousha"] {
  text-decoration: underline;
  color: #26add3;
}
.hold_list dd img {
  display: inline-block;
}

.btn_app {
  margin-bottom: 0;
}

.btn_hold a {
  display: block;
  width: 160px;
  height: 35px;
  line-height: 35px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  background: #e64b68;
  box-shadow: 2px 2px 0 #ec788e inset, -2px -2px 0 #df1f43 inset;
  text-shadow: 2px 2px 10px #e33555;
  margin-left: auto;
  margin-right: auto;
}
.btn_hold a:hover {
  box-shadow: 2px 2px 0 #df1f43 inset;
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.btn_hold a:hover {
  color: #fff;
}
.btn_hold a::before {
  content: "\f044";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
@media only screen and (min-width: 600px) {
  .btn_hold a {
    height: 40px;
    line-height: 40px;
  }
}

/* TOP_イントロ */
#top__intro {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 0;
  box-shadow: 0 7px 8px -5px #999 inset;
}
@media only screen and (min-width: 600px) {
  #top__intro {
    text-align: center;
  }
}
#top__intro article:last-child {
  border: none;
}
#top__intro article > p:nth-last-child(2) {
  margin-bottom: 35px;
}

/* TOP_教室をさがす */
#top__search {
  background-color: #f5cd03;
  box-shadow: 0 7px 8px -5px #c3a302 inset;
}
#top__search .fc {
  padding: 15px 10px;
  background-image: url("../img/bg_str1_blue.png");
  border-radius: 10px;
  *zoom: 1;
}
#top__search .fc::after {
  content: "";
  display: table;
  clear: both;
}
#top__search .fc p {
  text-align: center;
  color: #0e7ac4;
}
#top__search .fc a {
  display: block;
  width: 255px;
  height: 40px;
  background-color: #0e7ac4;
  box-shadow: 0 0 15px #0c6bac inset;
  font-size: 15px;
  font-weight: bold;
  line-height: 40px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}
#top__search .fc a i {
  margin-right: 0.3em;
}
#top__search .fc a:hover {
  color: #fff;
  background-color: #1797ee;
  box-shadow: none;
}
#top__search .fc a::before {
  content: "\f105";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}

/* TOP_受講生の声 */
#top__students {
  background: url(../img/bg_str1_pink.png) #f2a5b3;
  box-shadow: 0 7px 8px -5px #ec788e inset;
  padding-top: 40px;
}
@media only screen and (min-width: 1024px) {
  #top__students {
    padding: 60px;
  }
}
#top__students .inner {
  border-radius: 10px;
  padding-top: 40px;
}
#top__students h3 {
  margin: 0;
}
#top__students p {
  max-width: 500px;
}
#top__students .stlinks {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  *zoom: 1;
}
#top__students .stlinks::after {
  content: "";
  display: table;
  clear: both;
}
#top__students .caselink {
  position: relative;
  height: auto;
  margin-bottom: 30px;
}
@media only screen and (min-width: 600px) {
  #top__students .caselink {
    width: 46%;
    height: auto;
    margin: 2%;
    float: left;
  }
}
#top__students .caselink img.caseico {
  position: absolute;
  width: 85px;
  height: 85px;
  bottom: -16px;
  left: -23px;
  z-index: 3;
}
#top__students .caselink a:hover img.caseico {
  opacity: 1;
}
#top__students .caselink h3 {
  position: absolute;
  color: #fff;
  width: 100%;
  font-size: 12px;
  line-height: 1.4;
  font-weight: bold;
  text-align: right;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  bottom: 0;
  right: 0;
}
#top__students .caselink h3 span {
  display: inline-block;
  position: absolute;
  left: -9999px;
}

/* TOP_トピックス */
#top__topix {
  background-color: #8ea925;
  box-shadow: 0 7px 8px -5px #6b7f1c inset;
}

/* TOP_Facebook */
#top__fb {
  background-color: #0e7ac4;
  box-shadow: 0 7px 8px -5px #0b5c94 inset;
}
#top__fb .inner {
  width: 100%;
}

/* TOP_トピックスとFacebook PC版横並び */
@media only screen and (min-width: 600px) {
  .pc50 {
    *zoom: 1;
  }
  .pc50::after {
    content: "";
    display: table;
    clear: both;
  }

  #top__topix,
  #top__fb {
    float: left;
    width: 50%;
    height: 600px;
  }
}
/* TOP_フランチャイズ案内 */
#top__fc {
  background: url(../img/bg_city.jpg);
  background-size: cover;
  box-shadow: 0 7px 8px -5px #0b5c94 inset;
}
#top__fc h2 {
  color: #0e7ac4;
  margin-bottom: 15px;
}
#top__fc h2 span {
  display: block;
  width: 200px;
  height: 26px;
  line-height: 26px;
  margin: 0 auto 10px;
  font-size: 16px;
  color: #fff;
  background-color: #0e7ac4;
  border-radius: 1em;
}
#top__fc p {
  text-align: center;
}

/*! ========================================
　　　プログラミングラボとは　ページ
========================================= */
/* FontAwasomeを5個並べ or 3個並べで図解っぽく */
.fa--icos {
  display: table;
  width: 90%;
  height: 60px;
  text-align: center;
  font-size: 30px;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 600px) {
  .fa--icos {
    font-size: 35px;
    height: 70px;
    max-width: 360px;
    margin-bottom: 40px;
  }
}

.fa--5icos li {
  display: table-cell;
  width: 20%;
}
.fa--5icos li:nth-child(odd) {
  vertical-align: bottom;
}
.fa--5icos li:nth-child(even) {
  vertical-align: top;
}

.fa--3icos li {
  display: table-cell;
  width: 33.333%;
  vertical-align: middle;
}

/* 写真と飾りの重ね */
.ph--ol {
  position: relative;
  max-width: 300px;
  margin: 50px auto;
}

.ph--ol-C {
  margin-left: auto;
  margin-right: auto;
}

.ph--ol-L {
  position: absolute;
  top: -20px;
  left: -10px;
  width: 70px;
  height: auto;
}
@media only screen and (min-width: 600px) {
  .ph--ol-L {
    top: 60px;
    left: -120px;
    width: 90px;
  }
}

.ph--ol-R {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 90px;
  height: auto;
}
@media only screen and (min-width: 600px) {
  .ph--ol-R {
    bottom: 70px;
    right: -135px;
    width: 110px;
  }
}

/*! ========================================
　　　コース案内　ページ
========================================= */
/* 固定ヘッダー＆ページ内リンクのめり込み防止 */
#basic,
#middle,
#premiddle,
#advance,
#progress,
#qa {
  padding-top: 60px;
  margin-top: -60px;
}

/* コース別ボタン tb版以上で横並び */
.course-links {
  *zoom: 1;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.course-links::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .course-links {
    max-width: 560px;
  }
}

.course-link__li {
  padding: 5px 10px;
}
@media only screen and (min-width: 600px) {
  .course-link__li {
    width: 50%;
    float: left;
  }
}

/* コース別ボタン */
.btn--course {
  display: block;
  font-size: 22px;
  line-height: 36px;
  font-weight: bold;
  border: 3px solid;
  text-decoration: none;
  padding-left: 52px;
  padding-right: 8px;
  border-radius: 21px;
}
.btn--course:hover {
  color: #555;
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.btn--course-primary {
  border-color: #8fc31f;
  box-shadow: 2px 2px #8fc31f;
  background: url("../img/ico_course_primary.png") 10px center no-repeat;
  background-size: 33px 33px;
}
.btn--course-primary:hover {
  background-color: #d7e7af;
}

.btn--course-basic {
  border-color: #e64b68;
  box-shadow: 2px 2px #e64b68;
  background: url("../img/ico_course_basic.png") 10px center no-repeat;
  background-size: 33px 33px;
}
.btn--course-basic:hover {
  background-color: #f9d1d9;
}

.btn--course-premiddle {
  border-color: #1697d5;
  box-shadow: 2px 2px #ffcc33;
  background: url("../img/ico_course_premiddle.png") 10px center no-repeat;
  background-size: 33px 33px;
}
.btn--course-premiddle:hover {
  background-color: #1697d5;
}
.btn--course-middle {
  border-color: #ee9f28;
  box-shadow: 2px 2px #ee9f28;
  background: url("../img/ico_course_middle.png") 10px center no-repeat;
  background-size: 33px 33px;
}
.btn--course-middle:hover {
  background-color: #f9deb6;
}


.btn--course-advance {
  border-color: #26add3;
  box-shadow: 2px 2px #26add3;
  background: url("../img/ico_course_advance.png") 10px center no-repeat;
  background-size: 33px 33px;
}
.btn--course-advance:hover {
  background-color: #a3deef;
}

.btn--course-progress {
  border-color: #8ea925;
  box-shadow: 2px 2px #8ea925;
  background: url("../img/ico_course_progress.png") 10px center no-repeat;
  background-size: 33px 33px;
}
.btn--course-progress:hover {
  background-color: #d0e483;
}

/* コース別案内 背景 */
.course-guide {
  margin-left: -20px;
  margin-right: -20px;
  padding: 40px 15px;
  position: relative;
  background: url("../img/line_tegaki@2x.png") center bottom no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 600px) {
  .course-guide {
    background-image: none;
    margin-bottom: 40px;
    padding: 40px 20px;
    border-radius: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .course-guide {
    padding: 50px 35px;
  }
}

/* コースタイトル */
.course-title {
  width: 100%;
  max-width: 300px;
  text-align: center;
  font-size: 23px;
  line-height: 38px;
  font-weight: bold;
  border: 3px solid;
  text-decoration: none;
  padding-left: 40px;
  padding-right: 10px;
  border-radius: 3px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .course-title {
    max-width: 320px;
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}

/* 受講学年 */
.gakunen {
  width: 160px;
  height: 26px;
  line-height: 26px;
  margin: 0 auto 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  border-radius: 1em;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1024px) {
  .gakunen {
    position: absolute;
    top: 25px;
    right: 180px;
    width: 85px;
    height: 85px;
    line-height: 1.3;
    padding-top: 15px;
  }
  .gakunen span {
    display: block;
    text-align: center;
  }
  .gakunen .gakunen-fsL {
    font-size: 18px;
  }
  .gakunen .gakunen-fsS {
    font-size: 13px;
  }
}

/* コース解説領域 */
.course-info {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 600px) {
  .course-info {
    float: left;
    width: 65%;
  }
}
@media only screen and (min-width: 1024px) {
  .course-info {
    padding: 25px;
  }
}

.course-info__heading {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 8px;
  border-bottom: 2px solid;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1024px) {
  .course-info__heading {
    font-size: 20px;
    text-align: center;
  }
}

.course-info__p {
  font-size: 15px;
  border-bottom: 1px dashed;
  margin-bottom: 20px;
}

.course-info__dl {
  font-size: 14px;
  padding-left: 15px;
  *zoom: 1;
  line-height: 1.4;
}
.course-info__dl::after {
  content: "";
  display: table;
  clear: both;
}
.course-info__dl dt {
  clear: both;
  float: left;
  font-weight: bold;
}
.course-info__dl dt::before {
  content: "\f0da";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
.course-info__dl dd {
  float: left;
  padding-left: 1em;
  color: #777;
  margin-bottom: 8px;
}
.course-info__dl a {
  color: #777;
}
.course-info__dl a:hover {
  color: #26add3;
}

.course-info__ps {
  line-height: 1.5;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 13px;
}

/* プログラミング言語ロゴ・画面 */
@media only screen and (min-width: 600px) {
  .course-info__logo {
    float: left;
    width: 35%;
    padding-top: 30px;
    padding-left: 25px;
  }
}
.course-info__logo img {
  max-width: 250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .course-info__logo img {
    max-width: 300px;
  }
}

/* コース解説とプログラミング言語ロゴ・画面 横並びclearfix */
.course-info-and-logo {
  *zoom: 1;
  margin-bottom: 40px;
}
.course-info-and-logo::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .course-info-and-logo {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 制作プログラム例 タイトル */
.pgex__heading {
  width: 220px;
  height: 34px;
  line-height: 34px;
  margin: 0 auto 10px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  border-radius: 1em;
  margin-bottom: 15px;
}

/* 制作プログラム例 画像 */
.pgex {
  margin: 0 -10px 30px;
}
@media only screen and (min-width: 1024px) {
  .pgex {
    margin: 0 10px 30px;
  }
}
.pgex ul {
  *zoom: 1;
}
.pgex ul::after {
  content: "";
  display: table;
  clear: both;
}
.pgex li {
  float: left;
  padding: 5px;
  width: 33.333%;
}
@media only screen and (min-width: 600px) {
  .pgex li {
    padding: 10px;
  }
}
.pgex li.lg {
  width: 80%;
  float: none;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 600px) {
  .pgex li.lg {
    width: 50%;
    float: left;
  }
}
.pgex a {
  display: block;
/*  border: 3px solid;*/
}
.pgex a.nothumbnail {
  display: none;
}
.pgex .pgex__img a {
  width: 80%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* コース案内領域 コースごとのカラー設定 */

/*プライマリー*/
.course-guide-primary {
  background-color: #d7e7af;
}


.course-guide-primary .course-title {
  border-color: #8fc31f;
  box-shadow: 2px 2px #8fc31f;
  background: #fff url("../img/ico_course_primary.png") 10px center no-repeat;
  background-size: 33px 33px;
}

.course-guide-primary .gakunen {
  background-color: #8fc31f;
}
@media only screen and (min-width: 1024px) {
  .course-guide-primary .gakunen {
    background: url("../img/ico_bg_pgreen.png") center center no-repeat;
    background-size: 85px 85px;
  }
}
.course-guide-primary .course-info__heading {
  color: #8fc31f;
  border-color: #8fc31f;
}
.course-guide-primary .course-info {
  box-shadow: 4px 4px #40c63f;
}
.course-guide-primary .course-info__p {
  border-color: #8fc31f;
}
.course-guide-primary dt {
  color: #8fc31f;
}
.course-guide-primary .pgex__heading {
  background: url("../img/bg_str8_pgreen.png");
}
.course-guide-primary .pgex a {
  border-color: #8fc31f;
}
.course-guide-primary a[href="#qa"] {
  color: #8fc31f;
}
.course-guide-primary a[href="#qa"]:hover {
  color: #26add3;
}

/*ベーシック*/

.course-guide-basic {
  background-color: #f9d1d9;
}
.course-guide-basic .course-title {
  border-color: #e64b68;
  box-shadow: 2px 2px #e64b68;
  background: #fff url("../img/ico_course_basic.png") 10px center no-repeat;
  background-size: 33px 33px;
}
.course-guide-basic .gakunen {
  background-color: #ec788e;
}
@media only screen and (min-width: 1024px) {
  .course-guide-basic .gakunen {
    background: url("../img/ico_bg_pink.png") center center no-repeat;
    background-size: 85px 85px;
  }
}
.course-guide-basic .course-info__heading {
  color: #e64b68;
  border-color: #e64b68;
}
.course-guide-basic .course-info {
  box-shadow: 4px 4px #e9617b;
}
.course-guide-basic .course-info__p {
  border-color: #e64b68;
}
.course-guide-basic dt {
  color: #e64b68;
}
.course-guide-basic .pgex__heading {
  background: url("../img/bg_str8_pink.png");
}
.course-guide-basic .pgex a {
  border-color: #e64b68;
}
.course-guide-basic a[href="#qa"] {
  color: #e64b68;
}
.course-guide-basic a[href="#qa"]:hover {
  color: #26add3;
}

.course-guide-middle {
  background-color: #f9deb6;
}
.course-guide-middle .course-title {
  border-color: #ee9f28;
  box-shadow: 2px 2px #ee9f28;
  background: #fff url("../img/ico_course_middle.png") 10px center no-repeat;
  background-size: 33px 33px;
}
.course-guide-middle .gakunen {
  background-color: #f2b457;
}

.course-guide-premiddle {
  background-color: #FFE28C;
}
.course-guide-premiddle .course-title {
  border-color: #ffcc33;
  box-shadow: 2px 2px #FFCC33;
  background: #fff url("../img/ico_course_premiddle.png") 10px center no-repeat;
  background-size: 33px 33px;
}
.course-guide-premiddle .gakunen {
  background-color: ##FFCC33;
}


@media only screen and (min-width: 1024px) {
  .course-guide-middle .gakunen {
    background: url("../img/ico_bg_orange.png") center center no-repeat;
    background-size: 85px 85px;
  }
  
 .course-guide-premiddle .gakunen {
    background: url("../img/ico_bg_yello.png") center center no-repeat;
    background-size: 85px 85px;
  } 
 
}
.course-guide-middle .course-info__heading {
  color: #ee9f28;
  border-color: #ee9f28;
}
.course-guide-middle .course-info {
  box-shadow: 4px 4px #f0aa40;
}
.course-guide-middle .course-info__p {
  border-color: #ee9f28;
}
.course-guide-middle dt {
  color: #ee9f28;
}
.course-guide-premiddle .course-info__heading {
  color: #ffcc33;
  border-color: #ffcc33;
}
.course-guide-premiddle .course-info {
  box-shadow: 4px 4px #ffcc33;
}
.course-guide-premiddle .course-info__p {
  border-color: #ffcc33;
}
.course-guide-premiddle dt {
  color: #ffcc33;
}


.course-guide-middle .pgex__heading {
  background: url("../img/bg_str8_orange.png");
}

.course-guide-premiddle .pgex__heading {
  background: url("../img/bg_str8_yellow.png");
}
.course-guide-middle .pgex a {
  border-color: #ee9f28;
}
.course-guide-middle a[href="#qa"] {
  color: #ee9f28;
}
.course-guide-middle a[href="#qa"]:hover {
  color: #26add3;
}

.course-guide-advance {
  background-color: #a3deef;
}
.course-guide-advance .course-title {
  border-color: #26add3;
  box-shadow: 2px 2px #26add3;
  background: #fff url("../img/ico_course_advance.png") 10px center no-repeat;
  background-size: 33px 33px;
}
.course-guide-advance .gakunen {
  background-color: #4dbfdf;
}
@media only screen and (min-width: 1024px) {
  .course-guide-advance .gakunen {
    background: url("../img/ico_bg_blue.png") center center no-repeat;
    background-size: 85px 85px;
  }
}
.course-guide-advance .course-info__heading {
  color: #26add3;
  border-color: #26add3;
}
.course-guide-advance .course-info {
  box-shadow: 4px 4px #37b7db;
}
.course-guide-advance .course-info__p {
  border-color: #26add3;
}
.course-guide-advance dt {
  color: #26add3;
}
.course-guide-advance .pgex__heading {
  background: url("../img/bg_str8_blue.png");
}
.course-guide-advance .pgex a {
  border-color: #26add3;
}
.course-guide-advance a[href="#qa"] {
  color: #26add3;
}
.course-guide-advance a[href="#qa"]:hover {
  color: #26add3;
}

.course-guide-progress {
  background-color: #d0e483;
}
.course-guide-progress .course-title {
  border-color: #8ea925;
  box-shadow: 2px 2px #8ea925;
  background: #fff url("../img/ico_course_progress.png") 10px center no-repeat;
  background-size: 33px 33px;
}
.course-guide-progress .gakunen {
  background-color: #b0d22f;
}
@media only screen and (min-width: 1024px) {
  .course-guide-progress .gakunen {
    background: url("../img/ico_bg_green.png") center center no-repeat;
    background-size: 85px 85px;
  }
}
.course-guide-progress .course-info__heading {
  color: #8ea925;
  border-color: #8ea925;
}
.course-guide-progress .course-info {
  box-shadow: 4px 4px #a0be2a;
}
.course-guide-progress .course-info__p {
  border-color: #8ea925;
}
.course-guide-progress dt {
  color: #8ea925;
}
.course-guide-progress .pgex__heading {
  background: url("../img/bg_str8_green.png");
}
.course-guide-progress .pgex a {
  border-color: #8ea925;
}
.course-guide-progress a[href="#qa"] {
  color: #8ea925;
}
.course-guide-progress a[href="#qa"]:hover {
  color: #26add3;
}
@media only screen and (min-width: 1024px) {
  .course-guide-progress .gakunen {
    padding-top: 25px;
  }
}

/* よくある質問 */
.c-qa {
  max-width: 600px;
  line-height: 1.55;
}
@media only screen and (min-width: 600px) {
  .c-qa {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .c-qa {
    padding-right: 20px;
  }
}
.c-qa dt {
  font-weight: bold;
  padding: 8px 0 12px 50px;
  background: url("../img/ico_Q@x2.png") left top no-repeat;
  background-size: 40px 40px;
  margin-bottom: 10px;
}
.c-qa dd {
  font-size: 15px;
  padding: 5px 0 5px 46px;
  background: url("../img/ico_A@x2.png") 2px top no-repeat;
  background-size: 35px 35px;
  margin-bottom: 50px;
}

/*! ========================================
　　　教室のご案内　ページ
========================================= */
/* 固定ヘッダー＆ページ内リンクのめり込み防止 */
#ac-map,
#ac-ichiran,
#ac-event,
#ac-topix {
  padding-top: 60px;
  margin-top: -60px;
}

/* 教室一覧 */
.ac-ichiran-kenbetsu {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .ac-ichiran-kenbetsu {
    max-width: 800px;
  }
}

.ac-ichiran-kenmei {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  cursor: pointer;
}
.ac-ichiran-kenmei::before {
  content: "\f0da";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}

.ac-ichiran-kenmei.open::before {
  content: "\f0d7";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}

.ac-ichiran-list {
  border-top: 3px solid #ee9f28;
  border-bottom: 3px solid #ee9f28;
  margin-bottom: 30px;
}
.ac-ichiran-list dl {
  line-height: 1.4;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
  *zoom: 1;
}
.ac-ichiran-list dl::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 1024px) {
  .ac-ichiran-list dl {
    padding: 13px 0 13px 15px;
  }
}
.ac-ichiran-list > dl:last-child {
  border: none;
}
.ac-ichiran-list dt {
  font-weight: bold;
  background: url("../img/ico_school.png") left 5px no-repeat;
  padding: 5px 0 5px 30px;
  margin-bottom: 8px;
}
@media only screen and (min-width: 1024px) {
  .ac-ichiran-list dt {
    display: inline-block;
    width: 205px;
    vertical-align: middle;
    margin-bottom: 0;
    background-position: left center;
    padding: 0 25px 0 30px;
  }
}
.ac-ichiran-list dd {
  margin-bottom: 5px;
}
@media only screen and (min-width: 1024px) {
  .ac-ichiran-list dd {
    vertical-align: middle;
    margin-bottom: 0;
  }
}

.ac-ichiran-address {
  font-size: 14px;
}
@media only screen and (min-width: 1024px) {
  .ac-ichiran-address {
    display: inline-block;
    width: 300px;
    margin-right: 20px;
  }
}

.ac-ichiran-tel {
  font-weight: bold;
  color: #ee9f28;
  display: inline-block;
  float: left;
}
.ac-ichiran-tel::before {
  content: "\f095";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
.ac-ichiran-tel a {
  text-decoration: none;
}
@media only screen and (min-width: 1024px) {
  .ac-ichiran-tel {
    width: 150px;
    float: none;
  }
}

.ac-ichiran-shosai {
  display: inline-block;
  float: right;
}
.ac-ichiran-shosai a {
  font-weight: bold;
  font-size: 14px;
  display: block;
  width: 80px;
  height: 30px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  background: #ee9f28;
  box-shadow: 2px 2px 0 #f2b457 inset, -2px -2px 0 #d28511 inset;
  text-shadow: 2px 2px 10px #ea9413;
  margin-left: auto;
  margin-right: auto;
}
.ac-ichiran-shosai a:hover {
  box-shadow: 2px 2px 0 #d28511 inset;
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.ac-ichiran-shosai a:hover {
  color: #fff;
}
.ac-ichiran-shosai a::before {
  content: "\f105";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
@media only screen and (min-width: 1024px) {
  .ac-ichiran-shosai {
    width: 90px;
    float: none;
  }
}

/* トピックス（教室個別ページ・TOPページと共有） */
.ac-topix__inner,
.top-topix__inner {
  height: 430px;
  padding: 15px 20px 15px 30px;
}
@media only screen and (min-width: 600px) {
  .ac-topix__inner,
  .top-topix__inner {
    height: 450px;
    padding: 15px 10px 15px 15px;
  }
}

.ac-topix__inner {
  margin: 0 -10px 0 -10px;
  border-top: 3px solid #26add3;
  border-bottom: 3px solid #26add3;
  background-color: #e4f5fa;
}
@media only screen and (min-width: 1024px) {
  .ac-topix__inner {
    padding: 20px 25px 20px 40px;
  }
}

.top-topix__inner {
  background-color: #ddd;
}
@media only screen and (min-width: 1024px) {
  .top-topix__inner {
    padding: 20px 10px 20px 20px;
  }
}

.ac-topix__scroll,
.top-topix__scroll {
  height: 400px;
  padding-top: 1px;
  padding-right: 15px;
  max-width: 100%;
  overflow-y: scroll;
}
@media only screen and (min-width: 600px) {
  .ac-topix__scroll,
  .top-topix__scroll {
    height: 420px;
  }
}
.ac-topix__scroll a,
.top-topix__scroll a {
  text-decoration: none;
}
.ac-topix__scroll a:hover img,
.top-topix__scroll a:hover img {
  opacity: 0.8;
}
.ac-topix__scroll dl,
.top-topix__scroll dl {
  line-height: 1.4;
  padding: 15px;
  margin-bottom: 15px;
  height: auto;
  background-color: #fff;
  box-shadow: 2px 2px #ccc;
  *zoom: 1;
}
.ac-topix__scroll dl::after,
.top-topix__scroll dl::after {
  content: "";
  display: table;
  clear: both;
}
.ac-topix__scroll dt,
.top-topix__scroll dt {
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 10px;
  *zoom: 1;
}
.ac-topix__scroll dt::after,
.top-topix__scroll dt::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .ac-topix__scroll dt,
  .top-topix__scroll dt {
    width: 20%;
    float: left;
    margin-bottom: 0;
  }
  .ac-topix__scroll dt img,
  .top-topix__scroll dt img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 600px) {
  .ac-topix__scroll dd,
  .top-topix__scroll dd {
    width: 80%;
    float: left;
    padding-left: 20px;
  }
}

.ac-topix__heading {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
.ac-topix__heading a {
  text-decoration: none;
}

.ac-topix__school {
  font-size: 14px;
  margin-bottom: 5px;
}

.ac-topix__date {
  font-size: 14px;
}

/*! ========================================
　　　各教室のご案内　ページ
========================================= */
/* 教室について　開講コース　コースラベル同士の間隔設定 */
.ks-info .course-label {
  margin: 3px;
}

/* アクセス・問い合わせ */
.ks-access ul {
  line-height: 1.5;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.ks-access li {
  margin-bottom: 15px;
}
@media only screen and (min-width: 600px) {
  .ks-access li {
    margin-bottom: 5px;
  }
}

/*! ========================================
　　　トピックス個別　ページ
========================================= */
.topix__article {
  padding: 35px 20px 10px 20px;
}
@media only screen and (min-width: 600px) {
  .topix__article {
    padding: 50px 40px 20px 40px;
  }
}
.topix__article p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.2em;
  line-height: 1.55;
}

.topix__photo {
  margin-bottom: 20px;
}

.topix__footer {
  border-top: 1px dotted #ccc;
  line-height: 1.5;
  font-size: 14px;
  padding-top: 15px;
}

.topix__info {
  text-align: right;
}

.topix__taiken p {
  font-weight: bold;
  font-size: 14px;
  color: #26add3;
  margin-bottom: 10px;
  text-align: center;
}
.topix__taiken a {
  display: block;
  width: 240px;
  height: 45px;
  background-color: #26add3;
  box-shadow: 0 0 15px #229bbd inset;
  font-size: 15px;
  font-weight: bold;
  line-height: 45px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.topix__taiken a i {
  margin-right: 0.3em;
}
.topix__taiken a:hover {
  color: #fff;
  background-color: #4dbfdf;
  box-shadow: none;
}
.topix__taiken a::before {
  content: "\f105";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}

/* ページャー */
.pager {
  overflow: hidden;
  margin-bottom: 30px;
}

.pager ul {
  list-style: none;
  position: relative;
  left: 50%;
  float: left;
}

.pager ul li {
  margin: 0 3px;
  position: relative;
  left: -50%;
  float: left;
}

.pager ul li span,
.pager ul li a {
  display: block;
  font-size: 16px;
  padding: 0.3em 0.6em;
}

.pager ul li a {
  border: 1px solid #ccc;
  text-decoration: none;
}

.pager ul li a:hover {
  background: #26add3;
  border: 1px solid #26add3;
  color: #fff;
}

/*! ========================================
　　　受講生の声　ページ
========================================= */
/* 目次 */
.students__mokuji {
  width: 100%;
  max-width: 320px;
  *zoom: 1;
  margin-left: auto;
  margin-right: auto;
}
.students__mokuji::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .students__mokuji {
    max-width: 640px;
  }
}
.students__mokuji li {
  float: left;
  width: 50%;
  max-width: 150px;
  padding: 5px;
}
@media only screen and (min-width: 600px) {
  .students__mokuji li {
    width: 25%;
  }
}

/* ページ内リンク・ヘッダーめり込み防止 */
#st-student1,
#st-student2,
#st-student3,
#st-student4 {
  padding-top: 60px;
  margin-top: -60px;
}

/* CASE 見出し */
.stcase-headingL {
  max-width: 400px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 0 auto 30px;
  padding-top: 100px;
}
@media only screen and (min-width: 600px) {
  .stcase-headingL {
    max-width: 600px;
    font-size: 27px;
    padding: 15px 0 15px 175px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}

.stcase-headingL-case1 {
  background: url("../img/ico_student_case1@2x.png") center top no-repeat;
  background-size: 120px auto;
}
@media only screen and (min-width: 600px) {
  .stcase-headingL-case1 {
    background-size: 145px auto;
    background-position: left center;
  }
}

.stcase-headingL-case2 {
  background: url("../img/ico_student_case2@2x.png") center top no-repeat;
  background-size: 120px auto;
}
@media only screen and (min-width: 600px) {
  .stcase-headingL-case2 {
    background-size: 145px auto;
    background-position: left center;
  }
}

.stcase-headingL-case3 {
  background: url("../img/ico_student_case3@2x.png") center top no-repeat;
  background-size: 120px auto;
}
@media only screen and (min-width: 600px) {
  .stcase-headingL-case3 {
    background-size: 145px auto;
    background-position: left center;
  }
}

.stcase-headingL-case4 {
  background: url("../img/ico_student_case4@2x.png") center top no-repeat;
  background-size: 120px auto;
}
@media only screen and (min-width: 600px) {
  .stcase-headingL-case4 {
    background-size: 145px auto;
    background-position: left center;
  }
}

/* 写真と飾りの重ね */
.stph--ol {
  position: relative;
  max-width: 300px;
  margin: 40px auto;
}

.stph--ol-C {
  margin-left: auto;
  margin-right: auto;
}

.stph--ol-L {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: auto;
}
@media only screen and (min-width: 600px) {
  .stph--ol-L {
    bottom: 20px;
    left: -90px;
    width: 60px;
  }
}

.stph--ol-R {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 110px;
  height: auto;
}
@media only screen and (min-width: 600px) {
  .stph--ol-R {
    top: 10px;
    right: -150px;
    width: 130px;
  }
}

/* インタビュー部分 */
.st__qa {
  max-width: 600px;
  line-height: 1.55;
}
@media only screen and (min-width: 600px) {
  .st__qa {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .st__qa {
    padding-right: 20px;
  }
}
.st__qa dt {
  font-weight: bold;
  padding: 8px 0 12px 50px;
  background: url("../img/ico_Q_ltyellow@x2.png") left top no-repeat;
  background-size: 40px 40px;
  margin-bottom: 10px;
}
.st__qa dd {
  font-size: 15px;
  padding: 6px 0 14px 50px;
  margin-bottom: 35px;
  background-position: left top;
}

.st__qa-case1 dd {
  background: url("../img/ico_A_student1@x2.png") no-repeat;
  background-size: 40px 40px;
}

.st__qa-case2 dd {
  background: url("../img/ico_A_student2@x2.png") no-repeat;
  background-size: 40px 40px;
}

.st__qa-case3 dd {
  background: url("../img/ico_A_student3@x2.png") no-repeat;
  background-size: 40px 40px;
}

.st__qa-case4 dd {
  background: url("../img/ico_A_student4@x2.png") no-repeat;
  background-size: 40px 40px;
}

.st__qa-case5 dd {
  background: url("../img/ico_A_student5@x2.png") no-repeat;
  background-size: 40px 40px;
}

/* 最下部ボタン横並び */
@media only screen and (min-width: 600px) {
  .st-btns {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    *zoom: 1;
  }
  .st-btns::after {
    content: "";
    display: table;
    clear: both;
  }
  .st-btns a {
    float: left;
    margin: 10px;
  }
}
/*! ========================================
　　　無料体験・お問い合わせ　ページ
========================================= */
/* 問い合わせ内容確認ページ（FC問い合わせページ） */
.contact-mail div,
.fc-moushikomi div {
  line-height: 1.5;
}
.contact-mail table,
.fc-moushikomi table {
  line-height: 1.5;
  font-size: 14px;
  padding: 5px;
  border: 1px solid #ccc;
  margin-left: auto;
  margin-right: auto;
}
.contact-mail tr,
.fc-moushikomi tr {
  border-bottom: 1px solid #ccc;
  padding: 2px;
}
.contact-mail td,
.fc-moushikomi td {
  border-right: 1px solid #ccc;
  padding: 2px;
}

/*! ========================================
　　　フランチャイズ案内　ページ
========================================= */
/* イントロ */
.fc__intro__phst {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.fc__intro__daihyo {
  background-color: #e4f5fa;
  margin-left: -20px;
  margin-right: -20px;
  padding: 40px 20px;
}
@media only screen and (min-width: 600px) {
  .fc__intro__daihyo {
    border-radius: 10px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
  }
}

.fc__intro__daihyoph {
  text-align: center;
}
.fc__intro__daihyoph img {
  width: 120px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.fc__intro__daihyoph p {
  font-size: 13px;
}

@media only screen and (min-width: 600px) {
  .fc__intro__daihyofl {
    *zoom: 1;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  .fc__intro__daihyofl::after {
    content: "";
    display: table;
    clear: both;
  }

  .fc__intro__daihyocomment {
    width: 75%;
    float: left;
    padding-left: 20px;
  }

  .fc__intro__daihyoph {
    width: 25%;
    float: left;
    padding-left: 20px;
  }
}
/* コース 表組 */
.fc__course__table {
  width: 100%;
  max-width: 640px;
  text-align: center;
  margin-bottom: 30px;
}
.fc__course__table thead {
  display: none;
}



.fc__course__table th {
  font-weight: bold;
}
.fc__course__table .fc__table-coursename {
  display: block;
  padding: 10px;
  width: 100%;
}
.fc__course__table tr {
  border: 1px solid #999;
  display: block;
  margin-bottom: 30px;
}
.fc__course__table tr.bt-n {
  border-top: none;
}
.fc__course__table tr.tr-mb0 {
  margin-bottom: 0;
}
.fc__course__table td {
  border-bottom: 1px dashed #999;
  font-size: 15px;
  display: block;
  padding: 8px 15px;
  text-align: right;
}
.fc__course__table td::before {
  content: attr(data-label);
  float: left;
  font-weight: bold;
}
.fc__course__table tr > td:last-child {
  border-bottom: none;
}
.fc__course__table img {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 600px) {
  .fc__course__table {
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .fc__course__table thead {
    display: table-header-group;
  }
  .fc__course__table th,
  .fc__course__table td {
    border-left: 1px solid #999;
    border-bottom: 1px solid #999;
    padding: 10px 0;
    vertical-align: middle;
    display: table-cell;
    text-align: center;
  }
  .fc__course__table th::before,
  .fc__course__table td::before {
    content: none;
  }
  .fc__course__table .fc__table-coursename {
    display: table-cell;
    width: auto;
  }
  .fc__course__table tr {
    margin-bottom: 0;
    display: table-row;
  }
  .fc__course__table th {
    background-color: #fef1ad;
  }
 .fc__course__table tbody th {
	height:90px;
	} 

}

.logo-scratch {
  max-width: 61px;
  height: auto;
}

.logo-python {
  max-width: 94px;
  height: auto;
}

.logo-JAVA {
  max-width: 70px;
  height: auto;
}

.tr__basic th {
  background-color: #e64b68;
}

.tr__p_middle th {
background-color:#FFCC33;
}

.tr__middle th {
  background-color: #ee9f28;
}

.tr__advance th {
  background-color: #26add3;
}

.tr__progress th {
  background-color: #8ea925;
}

/* 開講パック */
.fc__pack ol {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  *zoom: 1;
  margin-bottom: 30px;
}
.fc__pack ol::after {
  content: "";
  display: table;
  clear: both;
}
.fc__pack li {
  display: block;
  padding: 10px 0;
  width: 90%;
  margin: 0 auto 15px;
}
@media only screen and (min-width: 600px) {
  .fc__pack li {
    width: 50%;
    padding: 20px;
    float: left;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .fc__pack li {
    width: 33.333%;
    padding: 15px;
  }
}
.fc__pack li > div {
  border: 3px solid #8ea925;
  background-color: #e8f2c2;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  color: #8ea925;
  padding: 20px 10px;
  position: relative;
}
.fc__pack li > div span {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 20px;
  padding: 6px;
  border-radius: 20px;
  color: #fff;
  background-color: #8ea925;
  position: absolute;
  top: -18px;
  left: -18px;
}
.fc__pack li > div img {
  margin-top: 10px;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}

/* 問い合わせフォームのヘッダーめり込み防止 */
#fc__form {
  padding-top: 60px;
  margin-top: -60px;
}

/*! ========================================
　　　企業情報・採用情報　ページ
========================================= */
.company__info,
.recruit__info {
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.company__info dl,
.recruit__info dl {
  padding: 8px;
  *zoom: 1;
}
.company__info dl::after,
.recruit__info dl::after {
  content: "";
  display: table;
  clear: both;
}
.company__info dt,
.recruit__info dt {
  font-weight: bold;
  padding: 8px 0;
}
@media only screen and (min-width: 1024px) {
  .company__info dt,
  .recruit__info dt {
    width: 20%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.company__info dd,
.recruit__info dd {
  padding: 5px 5px 5px 10px;
}
@media only screen and (min-width: 1024px) {
  .company__info dd,
  .recruit__info dd {
    width: 80%;
    float: left;
    padding: 8px 20px 8px 10px;
  }
}
.company__info li,
.recruit__info li {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 8px;
}

.company__info {
  border-top: 3px solid #8ea925;
  border-bottom: 3px solid #8ea925;
}
.company__info dl {
  border-bottom: 1px solid #8ea925;
}

.recruit__info {
  border-top: 3px solid #ee9f28;
  border-bottom: 3px solid #ee9f28;
}
.recruit__info dl {
  border-bottom: 1px solid #ee9f28;
}

/* 応募はこちらまで */
.recruit__oubo {
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
.recruit__oubo h5 {
  background: url("../img/bg_str8_orange.png");
  color: #fff;
  text-align: center;
  padding: 5px;
  text-shadow: 2px 2px 10px #ea9413;
}
@media only screen and (min-width: 600px) {
  .recruit__oubo {
    font-size: 16px;
  }
}

.recruit__oubo__address {
  font-size: 18px;
  background-color: #fef1ad;
  padding: 10px 5px;
  color: #dc8b11;
}
.recruit__oubo__address a {
  color: #dc8b11;
  text-decoration: none;
}
.recruit__oubo__address a:hover {
  color: #f5cd03;
}

@media only screen and (min-width: 1024px) {
  .recruit__oubo__tel,
  .recruit__oubo__mail {
    display: inline-block;
    margin-left: 30px;
  }
}

.recruit__oubo__company {
  padding-top: 5px;
  color: #ee9f28;
  font-size: 14px;
}
@media only screen and (min-width: 600px) {
  .recruit__oubo__company {
    font-size: 16px;
  }
}

/*! ========================================
　　　プライバシーポリシー　ページ
========================================= */
.privacy__intro {
  background-color: #e4f5fa;
  padding: 20px;
  border-radius: 5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 600px) {
  .privacy__intro {
    padding: 30px;
  }
}

.privacy__policy p {
  margin-bottom: 30px;
}
.privacy__policy p.p-ol {
  margin-bottom: 1em;
}
.privacy__policy ol {
  line-height: 1.5;
  padding-left: 20px;
  margin-bottom: 30px;
  font-size: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/*! ========================================
　　　c-headings
========================================= */
/* headingL 見出しL 左揃え */
.c-headingL,
.c-headingL-C {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 600px) {
  .c-headingL,
  .c-headingL-C {
    font-size: 28px;
  }
}

/* headingL-C 見出しL 中央揃え */
.c-headingL-C {
  text-align: center;
}

/* headingM 見出しM 左揃え */
.c-headingM {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 auto 15px;
  max-width: 560px;
}
@media only screen and (min-width: 600px) {
  .c-headingM {
    font-size: 26px;
  }
}

/* headingS 見出しS 左揃え */
.c-headingS {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 auto 15px;
  max-width: 500px;
}
@media only screen and (min-width: 600px) {
  .c-headingS {
    font-size: 18px;
    max-width: 620px;
  }
}

/* headingM--ico 中見出し 左揃え 冒頭アイコン付与 */
.c-headingM--ico {
  padding: 10px 0 10px 56px;
}
@media only screen and (min-width: 600px) {
  .c-headingM--ico {
    padding: 17px 0 17px 90px;
  }
}

.c-headingS--ico {
  padding: 8px 0 8px 56px;
}
@media only screen and (min-width: 600px) {
  .c-headingS--ico {
    padding: 5px 0 20px 90px;
  }
}

.c-headingM--ico1 {
  background: url("../img/ico_1@2x.png") left 3px no-repeat;
  background-size: 46px 46px;
}
@media only screen and (min-width: 600px) {
  .c-headingM--ico1 {
    background-size: 71px 71px;
    background-position: left top;
  }
}

.c-headingM--ico2 {
  background: url("../img/ico_2@2x.png") left 3px no-repeat;
  background-size: 46px 46px;
}
@media only screen and (min-width: 600px) {
  .c-headingM--ico2 {
    background-size: 71px 71px;
    background-position: left top;
  }
}

.c-headingM--ico3 {
  background: url("../img/ico_3@2x.png") left 3px no-repeat;
  background-size: 46px 46px;
}
@media only screen and (min-width: 600px) {
  .c-headingM--ico3 {
    background-size: 71px 71px;
    background-position: left top;
  }
}

.c-headingM--ico4 {
  background: url("../img/ico_4@2x.png") left 3px no-repeat;
  background-size: 46px 46px;
}
@media only screen and (min-width: 600px) {
  .c-headingM--ico4 {
    background-size: 71px 71px;
    background-position: left top;
  }
}

/* 見出し ストライプ背景・角丸 用の文字　*/
.c-headingL-C-str {
  font-size: 23px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin: 0 auto 10px;
}
@media only screen and (min-width: 600px) {
  .c-headingL-C-str {
    font-size: 27px;
  }
}

/* 見出し ストライプ背景・角丸　spanで囲んでスタイリング
10文字くらいが 横幅限度 */
.c-headingbg-str8-pink {
  background: url("../img/bg_str8_pink.png");
  border-radius: 10px;
  padding: 10px 20px;
  margin-right: -20px;
  margin-left: -20px;
}

.c-headingbg-str8-orange {
  background: url("../img/bg_str8_orange.png");
  border-radius: 10px;
  padding: 10px 20px;
  margin-right: -20px;
  margin-left: -20px;
}

.c-headingbg-str8-blue {
  background: url("../img/bg_str8_blue.png");
  border-radius: 10px;
  padding: 10px 20px;
  margin-right: -20px;
  margin-left: -20px;
}

/* 吹き出し 見出し（青ストライプ背景） */
.c-heading-fukidashi {
  width: 90%;
  padding: 8px 0;
  margin-bottom: 25px;
  background: url(../img/bg_str1_darkblue.png);
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .c-heading-fukidashi {
    padding: 20px 0;
  }
}
.c-heading-fukidashi:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #397fc5;
  border-width: 10px;
  margin-left: -10px;
}

/* 吹き出し 見出し（吹き出し線画イラスト背景） */
.c-heading-sengafukidashi {
  width: 100%;
  background: url("../img/bg_fukidashi@2x.png") center center no-repeat;
  background-size: 260px auto;
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  line-height: 1.5;
  padding-top: 30px;
  padding-bottom: 70px;
  text-indent: -1em;
}

/*! ========================================
　　　c-buttons
========================================= */
/* 四角ボタン（矢印＋青背景） */
.c-btn--arw-blue {
  display: block;
  width: 240px;
  height: 45px;
  background-color: #26add3;
  box-shadow: 0 0 15px #229bbd inset;
  font-size: 15px;
  font-weight: bold;
  line-height: 45px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  margin: 0 auto 10px;
}
.c-btn--arw-blue i {
  margin-right: 0.3em;
}
.c-btn--arw-blue:hover {
  color: #fff;
  background-color: #4dbfdf;
  box-shadow: none;
}
.c-btn--arw-blue::before {
  content: "\f105";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
@media only screen and (min-width: 1024px) {
  .c-btn--arw-blue {
    margin: 0 auto 20px;
  }
}

/* 四角ボタン（矢印＋ピンク背景） */
.c-btn--arw-pink {
  display: block;
  width: 240px;
  height: 45px;
  background-color: #e64b68;
  box-shadow: 0 0 15px #e33555 inset;
  font-size: 15px;
  font-weight: bold;
  line-height: 45px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  margin: 0 auto 10px;
}
.c-btn--arw-pink i {
  margin-right: 0.3em;
}
.c-btn--arw-pink:hover {
  color: #fff;
  background-color: #ec788e;
  box-shadow: none;
}
.c-btn--arw-pink::before {
  content: "\f105";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
@media only screen and (min-width: 1024px) {
  .c-btn--arw-pink {
    margin: 0 auto 20px;
  }
}

/* 四角ボタン（矢印＋オレンジ背景） */
.c-btn--arw-orange {
  display: block;
  width: 240px;
  height: 45px;
  background-color: #ee9f28;
  box-shadow: 0 0 15px #ea9413 inset;
  font-size: 15px;
  font-weight: bold;
  line-height: 45px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  margin: 0 auto 10px;
}
.c-btn--arw-orange i {
  margin-right: 0.3em;
}
.c-btn--arw-orange:hover {
  color: #fff;
  background-color: #f2b457;
  box-shadow: none;
}
.c-btn--arw-orange::before {
  content: "\f105";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
@media only screen and (min-width: 1024px) {
  .c-btn--arw-orange {
    margin: 0 auto 20px;
  }
}

/* 四角ボタン（矢印＋オレンジ背景） */
.c-btn--arw-green {
  display: block;
  width: 240px;
  height: 45px;
  background-color: #8ea925;
  box-shadow: 0 0 15px #7c9420 inset;
  font-size: 15px;
  font-weight: bold;
  line-height: 45px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  margin: 0 auto 10px;
}
.c-btn--arw-green i {
  margin-right: 0.3em;
}
.c-btn--arw-green:hover {
  color: #fff;
  background-color: #b0d22f;
  box-shadow: none;
}
.c-btn--arw-green::before {
  content: "\f105";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
@media only screen and (min-width: 1024px) {
  .c-btn--arw-green {
    margin: 0 auto 20px;
  }
}

/* 四角ボタン（矢印＋紺背景） */
.c-btn--arw-dpblue {
  display: block;
  width: 240px;
  height: 45px;
  background-color: #0e7ac4;
  box-shadow: 0 0 15px #0c6bac inset;
  font-size: 15px;
  font-weight: bold;
  line-height: 45px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  margin: 0 auto 10px;
}
.c-btn--arw-dpblue i {
  margin-right: 0.3em;
}
.c-btn--arw-dpblue:hover {
  color: #fff;
  background-color: #1797ee;
  box-shadow: none;
}
.c-btn--arw-dpblue::before {
  content: "\f105";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
@media only screen and (min-width: 1024px) {
  .c-btn--arw-dpblue {
    margin: 0 auto 20px;
  }
}

/* 四角ボタン（下矢印・白抜き青枠） */
.c-btnshironuki--arw-blue {
  display: block;
  width: 240px;
  height: 45px;
  background-color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 42px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  border: 3px solid #26add3;
  color: #26add3;
  margin: 0 auto 10px;
}
.c-btnshironuki--arw-blue i {
  margin-right: 0.3em;
}
.c-btnshironuki--arw-blue:hover {
  background-color: #cfeef6;
}
.c-btnshironuki--arw-blue::before {
  content: "\f107";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}
@media only screen and (min-width: 1024px) {
  .c-btnshironuki--arw-blue {
    margin: 0 auto 20px;
  }
}

/*! ========================================
　　　c-forms
========================================= */
/* プルダウン＋検索ボタン */
.c-kensaku {
  width: 260px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.c-kensaku__select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
}

.c-kensaku__box {
  width: 160px;
  height: 40px;
  overflow: hidden;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: #fff;
  margin-right: 20px;
}

.contact__form .c-kensaku__box {
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 1px 1px #eee inset;
  margin-bottom: 2px;
}

.c-kensaku__box-glay {
  background-color: #ddd;
  border: 1px solid #ddd;
}

.c-kensaku__box > .c-kensaku__select {
  width: 130%;
  height: 40px;
  line-height: 40px;
  padding: 0 2.4em 0 0.6em;
  font-size: 17px;
  letter-spacing: 0.1em;
}

.c-kensaku__box:after {
  position: absolute;
  top: 12px;
  right: 0;
  width: 1.8em;
  display: block;
  font-family: FontAwesome;
  content: "\f107";
  pointer-events: none;
}

.contact__form .c-kensaku__box:after {
  top: 8px;
}

.c-kensaku__btn {
  width: 80px;
  height: 40px;
  display: inline-block;
  border: none;
  background-color: #555;
  color: #fff;
  font-size: 17px;
  text-align: center;
  vertical-align: middle;
  margin: 0;
  position: absolute;
  letter-spacing: 0.1em;
}

/* 問い合わせフォーム（無料体験・フランチャイズ資料請求） */
.fc__form,
.contact__form {
  width: 100%;
  text-align: left;
  line-height: 1.5;
}
.fc__form table,
.contact__form table {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.fc__form tr,
.fc__form th,
.fc__form td,
.contact__form tr,
.contact__form th,
.contact__form td {
  display: block;
}
.fc__form tr,
.contact__form tr {
  margin-bottom: 16px;
}
.fc__form th,
.contact__form th {
  margin-bottom: 2px;
}
.fc__form td p,
.contact__form td p {
  margin-bottom: 0;
  padding: 3px 10px;
  font-size: 15px;
}
.fc__form :placeholder-shown,
.contact__form :placeholder-shown {
  color: #ccc;
  font-size: 14px;
}
.fc__form ::-webkit-input-placeholder,
.contact__form ::-webkit-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.fc__form :-moz-placeholder,
.contact__form :-moz-placeholder {
  opacity: 1;
  color: #ccc;
  font-size: 14px;
}
.fc__form ::-moz-placeholder,
.contact__form ::-moz-placeholder {
  opacity: 1;
  color: #ccc;
  font-size: 14px;
}
.fc__form :-ms-input-placeholder,
.contact__form :-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.fc__form input[type="time"],
.fc__form input[type="date"],
.fc__form input[type="text"],
.fc__form textarea,
.fc__form input[type="email"],
.fc__form input[type="tel"],
.fc__form input[type="number"],
.fc__form .fc__form__checkbox,
.contact__form input[type="text"],
.contact__form textarea,
.contact__form input[type="email"],
.contact__form input[type="tel"],
.contact__form input[type="number"],
.contact__form .fc__form__checkbox {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  font-size: 15px;
  box-shadow: 0 0 1px 1px #eee inset;
  background-color: #fff;
  margin-bottom: 3px;
}
@media only screen and (min-width: 600px) {
  .fc__form input[type="text"].tb-half-width,
  .fc__form textarea.tb-half-width,
  .fc__form input[type="email"].tb-half-width,
  .fc__form input[type="tel"].tb-half-width,
  .fc__form input[type="number"].tb-half-width,
  .fc__form .fc__form__checkbox.tb-half-width,
  .contact__form input[type="text"].tb-half-width,
  .contact__form textarea.tb-half-width,
  .contact__form input[type="email"].tb-half-width,
  .contact__form input[type="tel"].tb-half-width,
  .contact__form input[type="number"].tb-half-width,
  .contact__form .fc__form__checkbox.tb-half-width {
    width: 50%;
  }
}
.fc__form label:hover,
.contact__form label:hover {
  cursor: pointer;
}
.fc__form .hissu,
.contact__form .hissu {
  display: inline-block;
  font-size: 11px;
  padding: 1px 5px;
  border-radius: 5px;
  letter-spacing: 0.1em;
  color: #fff;
  margin-left: 5px;
  vertical-align: middle;
}
.fc__form .clearfix,
.contact__form .clearfix {
  *zoom: 1;
}
.fc__form .clearfix::after,
.contact__form .clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.fc__form .fl-l-50,
.contact__form .fl-l-50 {
  float: left;
  width: 50%;
}
.fc__form .fl-l-50:first-child,
.contact__form .fl-l-50:first-child {
  padding-right: 10px;
}

.fc__form__btn,
.contact__form__btn {
  width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.fc__form__btn .form__btn,
.contact__form__btn .form__btn {
  border: none;
  width: 100px;
  height: 45px;
  font-size: 15px;
  font-weight: bold;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  cursor: pointer;
  margin: 10px 15px;
}
.fc__form__btn .form__btn-reset,
.contact__form__btn .form__btn-reset {
  background-color: #aaa;
  box-shadow: 0 0 15px #9d9d9d inset;
}
.fc__form__btn .form__btn-reset:hover,
.contact__form__btn .form__btn-reset:hover {
  background-color: #c4c4c4;
  box-shadow: none;
}

/* ページごとのフォーム個別設定 */
.fc__form {
  background-color: #e4f5fa;
}
.fc__form .hissu {
  background-color: #ee9f28;
}

.fc__form__btn .form__btn-submit {
  background-color: #26add3;
  box-shadow: 0 0 15px #229bbd inset;
}
.fc__form__btn .form__btn-submit:hover {
  background-color: #4dbfdf;
  box-shadow: none;
}

.contact__form {
  background-color: #fce8eb;
}
.contact__form .hissu {
  background-color: #e64b68;
}

.contact__form__btn .form__btn-submit {
  background-color: #e64b68;
  box-shadow: 0 0 15px #e33555 inset;
}
.contact__form__btn .form__btn-submit:hover {
  background-color: #ec788e;
  box-shadow: none;
}

.contact-mail input[type="submit"] {
  border: none;
  width: 105px;
  height: 45px;
  font-size: 15px;
  font-weight: bold;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  cursor: pointer;
  margin: 10px 15px;
  background-color: #e64b68;
  box-shadow: 0 0 15px #e33555 inset;
}
.contact-mail input[type="submit"]:hover {
  background-color: #ec788e;
  box-shadow: none;
}

.contact-mail input[type="button"] {
  border: none;
  width: 105px;
  height: 45px;
  font-size: 15px;
  font-weight: bold;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  cursor: pointer;
  margin: 10px 15px;
  background-color: #aaa;
  box-shadow: 0 0 15px #9d9d9d inset;
}
.contact-mail input[type="button"]:hover {
  background-color: #c4c4c4;
  box-shadow: none;
}

/*! ========================================
　　　c-photo
========================================= */
/* 写真の配置 SP版1カラム・TB版2カラム・PC版3カラム */
/* <div class="c-phgroup-3ph">
	<div class="c-phgroup-3ph__ph"><img src="img/ph_recruit1.jpg" alt=""></div>
	<div class="c-phgroup-3ph__ph"><img src="img/ph_recruit2.jpg" alt=""></div>
	<div class="c-phgroup-3ph__ph"><img src="img/ph_recruit3.jpg" alt=""></div>
</div> */
.c-phgroup-3ph {
  margin-left: -10px;
  margin-right: -10px;
  max-width: 800px;
  *zoom: 1;
}
.c-phgroup-3ph::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .c-phgroup-3ph {
    margin-left: auto;
    margin-right: auto;
  }
}

.c-phgroup-3ph__phrp {
  padding: 10px;
}
@media only screen and (min-width: 600px) {
  .c-phgroup-3ph__phrp {
    float: left;
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .c-phgroup-3ph__phrp {
    width: 33.333%;
  }
}

.c-phgroup-3ph__ph {
  padding: 5px;
  float: left;
  width: 33.333%;
}
@media only screen and (min-width: 600px) {
  .c-phgroup-3ph__ph {
    padding: 10px;
  }
}

/*! ========================================
　　　c-map
========================================= */
/* 埋め込みGoogle MAP */
#map_canvas {
  width: 100%;
  height: 300px;
}
@media only screen and (min-width: 600px) {
  #map_canvas {
    height: 400px;
  }
}

/*! ========================================
　　　c-background & line -decorations
========================================= */
/* セクション等の下の区切り線・手書き風 */
.c-linebt--tegaki {
  background: url("../img/line_tegaki@2x.png") center bottom no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 1024px) {
  .c-linebt--tegaki {
    background-size: 800px auto;
  }
}

/* セクション等の下の区切り線・薄い灰色実線 */
.c-linebt {
  border-bottom: 1px solid #ccc;
}

/* セクション等のライン囲み色別・白背景・角丸 */
.c-linekakomi {
  border-radius: 10px;
  margin: 0 10px 30px;
}
@media only screen and (min-width: 600px) {
  .c-linekakomi {
    margin: 0 20px 30px;
  }
}

.c-linekakomi-pink {
  border: 4px solid #e64b68;
}

.c-linekakomi-orange {
  border: 4px solid #ee9f28;
}

.c-linekakomi-green {
  border: 4px solid #8ea925;
}

.c-linekakomi-blue {
  border: 4px solid #26add3;
}

/*! ========================================
　　　c-font-decorations & styles
========================================= */
/* 文字の色 */
.fc--red {
  color: red;
}

.fc--blue {
  color: #26add3;
}

.fc--pink {
  color: #e64b68;
}

.fc--orange {
  color: #ee9f28;
}

.fc--green {
  color: #8ea925;
}

.fc--white {
  color: #fff;
}

.fc--dpink {
  color: deeppink;
}

.fc--white {
  color: #fff;
}

/* 文字揃え */
.ta-c {
  text-align: center;
}

@media only screen and (min-width: 600px) {
  .ta-c-tb {
    text-align: center;
  }
}

@media only screen and (min-width: 1024px) {
  .ta-c-pc {
    text-align: center;
  }
}

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

/* 太字 */
.bold {
  font-weight: bold;
}

/* 文字の大きさ */
.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

/* マーカー風 文字下線（span要素で囲み、下記のclass名つける） */
span.ulblue {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiM4MWQyZTgiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iIzc4Y2VlNyIvPjxzdG9wIG9mZnNldD0iODAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background: -webkit-gradient(
    linear,
    50% 0%,
    50% 100%,
    color-stop(60%, rgba(0, 0, 0, 0)),
    color-stop(60%, #81d2e8),
    color-stop(80%, #78cee7),
    color-stop(80%, rgba(0, 0, 0, 0))
  );
  background: -moz-linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #81d2e8 60%,
    #78cee7 80%,
    rgba(0, 0, 0, 0) 80%
  );
  background: -webkit-linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #81d2e8 60%,
    #78cee7 80%,
    rgba(0, 0, 0, 0) 80%
  );
  background: linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #81d2e8 60%,
    #78cee7 80%,
    rgba(0, 0, 0, 0) 80%
  );
  padding: 0;
  padding-left: 0.3em;
  padding-right: 0.3em;
}
span.ulpink {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiNmNGFlYmIiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iI2YyYTViMyIvPjxzdG9wIG9mZnNldD0iODAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background: -webkit-gradient(
    linear,
    50% 0%,
    50% 100%,
    color-stop(60%, rgba(0, 0, 0, 0)),
    color-stop(60%, #f4aebb),
    color-stop(80%, #f2a5b3),
    color-stop(80%, rgba(0, 0, 0, 0))
  );
  background: -moz-linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #f4aebb 60%,
    #f2a5b3 80%,
    rgba(0, 0, 0, 0) 80%
  );
  background: -webkit-linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #f4aebb 60%,
    #f2a5b3 80%,
    rgba(0, 0, 0, 0) 80%
  );
  background: linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #f4aebb 60%,
    #f2a5b3 80%,
    rgba(0, 0, 0, 0) 80%
  );
  padding: 0;
  padding-left: 0.3em;
  padding-right: 0.3em;
}
span.ulorange {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiNmNmNkOTAiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iI2Y1Yzk4NyIvPjxzdG9wIG9mZnNldD0iODAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background: -webkit-gradient(
    linear,
    50% 0%,
    50% 100%,
    color-stop(60%, rgba(0, 0, 0, 0)),
    color-stop(60%, #f6cd90),
    color-stop(80%, #f5c987),
    color-stop(80%, rgba(0, 0, 0, 0))
  );
  background: -moz-linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #f6cd90 60%,
    #f5c987 80%,
    rgba(0, 0, 0, 0) 80%
  );
  background: -webkit-linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #f6cd90 60%,
    #f5c987 80%,
    rgba(0, 0, 0, 0) 80%
  );
  background: linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #f6cd90 60%,
    #f5c987 80%,
    rgba(0, 0, 0, 0) 80%
  );
  padding: 0;
  padding-left: 0.3em;
  padding-right: 0.3em;
}
span.ulgreen {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiNjM2RkNjIiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iI2MwZGI1OSIvPjxzdG9wIG9mZnNldD0iODAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background: -webkit-gradient(
    linear,
    50% 0%,
    50% 100%,
    color-stop(60%, rgba(0, 0, 0, 0)),
    color-stop(60%, #c3dd62),
    color-stop(80%, #c0db59),
    color-stop(80%, rgba(0, 0, 0, 0))
  );
  background: -moz-linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #c3dd62 60%,
    #c0db59 80%,
    rgba(0, 0, 0, 0) 80%
  );
  background: -webkit-linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #c3dd62 60%,
    #c0db59 80%,
    rgba(0, 0, 0, 0) 80%
  );
  background: linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #c3dd62 60%,
    #c0db59 80%,
    rgba(0, 0, 0, 0) 80%
  );
  padding: 0;
  padding-left: 0.3em;
  padding-right: 0.3em;
}
span.ulyellow {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiNmZGU1NmIiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iI2ZkZTM2MSIvPjxzdG9wIG9mZnNldD0iODAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background: -webkit-gradient(
    linear,
    50% 0%,
    50% 100%,
    color-stop(60%, rgba(0, 0, 0, 0)),
    color-stop(60%, #fde56b),
    color-stop(80%, #fde361),
    color-stop(80%, rgba(0, 0, 0, 0))
  );
  background: -moz-linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #fde56b 60%,
    #fde361 80%,
    rgba(0, 0, 0, 0) 80%
  );
  background: -webkit-linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #fde56b 60%,
    #fde361 80%,
    rgba(0, 0, 0, 0) 80%
  );
  background: linear-gradient(
    rgba(0, 0, 0, 0) 60%,
    #fde56b 60%,
    #fde361 80%,
    rgba(0, 0, 0, 0) 80%
  );
  padding: 0;
  padding-left: 0.3em;
  padding-right: 0.3em;
}

@media only screen and (min-width: 600px) {
  br.sp + span[class^="ul"] {
    padding-left: 0;
    margin-left: -0.3em;
  }
}
@media only screen and (max-width: 599px) {
  br.tbpc + span[class^="ul"] {
    padding-left: 0;
    margin-left: -0.3em;
  }
}
/*! ========================================
　　　c-links
========================================= */
/* 外部リンク */
.c-link--ext {
  display: block;
  color: #8ea925;
  max-width: 560px;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  padding: 5px;
  background-color: #fff9df;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
}
.c-link--ext::before {
  content: "\f08e";
  font-family: FontAwesome;
  padding-right: 0.4em;
  font-weight: normal;
}

/* 内部リンク 矢印付き */
.c-link--arw {
  text-align: center;
}
.c-link--arw::before {
  font-family: FontAwesome;
  font-weight: normal;
  content: " ";
}

.c-link--map {
  color: #8ea925;
  text-decoration: none;
  font-weight: bold;
}
.c-link--map:hover {
  color: #b0d22f;
}
.c-link--map::before {
  font-family: FontAwesome;
  font-weight: normal;
  content: " ";
}

/*! ========================================
　　　c-label
========================================= */
/* コース名のラベル（無料体験一覧など） */
.course-label {
  display: inline-block;
  height: 25px;
  line-height: 25px;
  /*width: 6em;*/
  width: auto;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  border-radius: 12px;
}
.course-label a {
  display: block;
  padding: 0 5px;
  text-decoration: none;
  color: #fff;
}

.course-label.primary {
  background-color: #b0d22f;
}
.course-label.primary a:hover {
  background-color: #8ea925;
  border-radius: 12px;
}

.course-label.basic {
  background-color: #ec788e;
}
.course-label.basic a:hover {
  background-color: #e64b68;
  border-radius: 12px;
}

.course-label.premiddle {
  background-color: #1697d5;
}
.course-label.premiddle a:hover {
  background-color: #1697d5;
  border-radius: 12px;
}


.course-label.middle {
  background-color: #f2b457;
}
.course-label.middle a:hover {
  background-color: #ee9f28;
  border-radius: 12px;
}
.course-label.advance {
  background-color: #4dbfdf;
}
.course-label.advance a:hover {
  background-color: #26add3;
  border-radius: 12px;
}
.course-label.progress {
  background-color: #b0d22f;
}
.course-label.progress a:hover {
  background-color: #8ea925;
  border-radius: 12px;
}

/*! ========================================
　　　utility
========================================= */
.u-win-out {
  display: inline-block;
  text-indent: -9999px;
}

.u-mb0 {
  margin-bottom: 0;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb30-45 {
  margin-bottom: 30px;
}
@media only screen and (min-width: 600px) {
  .u-mb30-45 {
    margin-bottom: 45px;
  }
}

@media only screen and (min-width: 600px) {
  .u-mw500--C {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*トップページの体験表示のコースのアイコン設定*/
.cose_white {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  margin: 0 5px;
  padding: 10px 5px;
}

.cose_white p:nth-child(1) {
  font-weight: bold;
  padding: 5px;
}

.cose_white {
  margin: 10px 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cose_white p:nth-of-type(n + 2) {
  text-align: left;
  margin-bottom: 0;
}
@media only screen and (min-width: 600px) {
  .cose_white p:nth-of-type(n + 2) {
    text-align: center;
  }
}

.fc_cose_white {
  background-color: rgba(255, 255, 255);
  margin: 0 5px;
  padding: 10px;
  height: 200px;
}
.fc_cose_white p {
  color: #c81c1c;
  font-size: 1.5em;
  font-weight: bold;
  padding: 10px 0;
}
.fc_cose_white ul {
  height: 70%;
  overflow-y: scroll;
  padding: 10px 20px;
}
.fc_cose_white ul li {
  margin-bottom: 3px;
  padding-top:7px;
  border-bottom: 1px dotted #ddd;
  overflow: hidden;
}
.fc_cose_white ul li span {
  display: block;
  padding: 10px 0;
  float: right;
}
@media only screen and (min-width: 600px) {
  .fc_cose_white ul li span {
    display: inline;
    float: none;
  }
}

/*! ========================================
　　　オンライン受講　ページ
========================================= */

#online .kome {
  float: right;
  /*padding-right: 250px;*/
  font-size: 10px;
}

#online .heading {
  padding-top: 40px;
  padding-bottom: 30px;
}
#online .heading h1 {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}

#online .point {
  padding: 10px;
  text-align: center;
}
#online .point h2 {
  padding: 5px;
  font-weight: bold;
  font-size: 18px;
}

#online .center{
  text-align: left;
}
#online .bold{
  font-weight: bold;
  margin-top:20px;
}

.dragon{
  width:100%;
  display: block;
  margin:20px auto;
  padding-bottom: 20px;
  cursor: pointer;
}

.ninja{
  cursor: pointer;
  display: block;
  width:100%;
  margin:20px auto;
}

.steps {
  margin-top: 30px;
  text-align: center;
}

#online .btn-wrapper {
  width: 100%;
  text-align: center;
}
.btn {
  display: inline-block;
  width: 240px;
  height: 45px;
  background-color: #26add3;
  box-shadow: 0 0 15px #229bbd inset;
  font-size: 15px;
  font-weight: bold;
  line-height: 45px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  color: #fff;
}
#online .btn:hover {
  color: #fff;
  background-color: #4dbfdf;
  box-shadow: none;
}

#online .attention {
  padding-top: 30px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
#online .attention ul {
  text-align: center;
}
#online .attention li {
  display: inline-block;
  text-align: left;
}
#online .c-headingM.c-headingM--ico.c-headingM--ico1,
#online .c-headingM.c-headingM--ico.c-headingM--ico2,
#online .c-headingM.c-headingM--ico.c-headingM--ico3{
  text-align: left;
  background-position: left center;
}
#online .txt-contents,#online .attention ul{
  text-align: left;
}
#online main{
  position: relative;
}
#online .btn-wrapper.fix{
  position: fixed;
  bottom:0;
  left: 0;
   width: 100%;
  height: auto;
  text-align: left;
}
#online .btn-wrapper.fix a{
  width: 100%;
  height: auto;
  padding-left: 7px;
  padding-right: 7px;
  background-color: #d32626;
box-shadow: 0 0 15px #5b3a47 inset;
display: block;
color: #fff;
padding: 10px;
text-align: center;
line-height: 1.5;
text-decoration: none;
}
#online .btn-wrapper.fix a:hover{
  opacity: 0.7;
}
#online .btn-wrapper.fix a::after {

    content: "\f105";
    font-family: FontAwesome;
    font-weight: normal;
    padding-left: 0.6em;

}