@charset "utf-8";

* {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
body {
  background-color: #fff;
  color: #444;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
p {
  margin: 15px 0;
}
a, button {
  transition: opacity .2s;
}
a:hover, button:hover {
  opacity: .6;
}
a {
  color: #444;
  text-decoration: none;
}
img {
  max-width: 100%;
}
ul, ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #bbb;
  opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #bbb;
  opacity: 1;
}
input::-moz-input-placeholder, textarea::-moz-input-placeholder {
  color: #bbb;
  opacity: 1;
}
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#print {
  display: none;
}
#main {
  margin: 15px 0 90px;
}
.inner {
  max-width: 1114px;
  margin: 0 auto;
  padding: 0 15px;
}
.flex_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
}
.arrow_link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border: solid #999;
  border-width: 1px 1px 0 0;
  vertical-align: middle;
  transform: rotate(45deg);
}
.blue_link {
  color: #03c;
  text-decoration: underline;
}
.another_link::after {
  content: url(../img/another_link_ico.png);
  vertical-align: middle;
  margin-left: 5px;
}
.note {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.field {
  min-height: 44px;
  padding: 12px 15px;
  background-color: #fff;
  border: solid 1px #e6e6e6;
  border-radius: 4px;
}
.share {
  width: 205px;
  height: 50px;
  padding: 10px 20px;
  border-radius: 4px;
  background-color: #fff;
}
.share .share_txt {
  margin: 0 0 8px;
  font-size: 1.4rem;
  line-height: 2rem;
}
.share .share_list li {
  float: left;
  margin-right: 15px;
}
.share .share_list li:last-child {
  margin-right: 0;
}
.share .share_list li a {
  display: block;
}
.category_select .js_select .js_select_popup .js_select_list > li:nth-child(1) {
  display: none;
}
time.time {
  display: block;
  float: none;
  margin-bottom: 15px;
  text-align: right;
}
time.time::before {
  content: "投稿日：";
}
/* チェックボックス・ラジオボタン */
.checkbox, .radio {
  line-height: 2rem;
  cursor: pointer;  
}
.checkbox input[type="checkbox"], .radio input[type="radio"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkbox .ico {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  border: solid 1px #ddd;
  border-radius: 2px;
  vertical-align: middle;
}
.radio .ico {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  border: solid 1px #ddd;
  border-radius: 50%;
  vertical-align: middle;
}
.checkbox input[type="checkbox"]:checked + .ico::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #008924;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.radio input[type="radio"]:checked + .ico::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  background-color: #008924;
  border-radius: 50%;
}
.checkbox .txt, .radio .txt {
  margin-left: 8px;
  font-size: 1.4rem;
  line-height: 2.2rem;
  vertical-align: middle;
}
/* セレクト */
[data-select] {
  display: none;
}
.js_select {
  position: relative;
}
.js_select .js_select_field {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  padding: 12px 40px 12px 15px;
  background-color: #fff;
  border: solid 1px #e6e6e6;
  border-radius: 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.js_select .js_select_field::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  background-color: #fff;
  border-radius: 4px;
  opacity: 0;
  transition: opacity .2s;
}
.js_select .js_select_field::after {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border: solid #008924;
  border-width: 0 2px 2px 0 ;
  transform: rotate(45deg);
}
.js_select .js_select_field:hover::before {
  opacity: .4;
}
.js_select .js_select_field.disabled {
  background-color: #e6e6e6;
  cursor: default;
}
.js_select .js_select_field.disabled span {
  display: none;
}
.js_select .js_select_field.disabled:hover::before {
  opacity: 0;
}
.js_select .js_select_field span {
  color: #bbb;
}
.js_select .js_select_select {
  display: none;
}
.js_select .js_select_popup {
  position: absolute;
  z-index: 1;
  visibility: hidden;
  width: 675px;
  padding: 25px 30px;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
  background-color: #fff;
  opacity: 0;
  transition: opacity .2s, visibility .2s;
}
.js_select .js_select_popup.left {
  left: -5px;
}
.js_select .js_select_popup.right {
  right: -5px;
}
.js_select.open .js_select_popup {
  visibility: visible;
  opacity: 1;
}
.js_select .js_select_list {
  margin-bottom: -4px;
}
.js_select .js_select_list > li {
  float: left;
  width: 33.3%;
  margin-bottom: 4px;
  padding: 0 2px;
  font-size: 1.4rem;
  line-height: 2rem;
}
.js_select .js_select_list > li > a {
  display: block;
  position: relative;
  padding: 2px 8px 2px 20px;
  border-radius: 4px;
  transition: background-color .1s;
}
.js_select .js_select_list > li > a:hover {
  background-color: #e0f4de;
  opacity: 1;
}
.js_select .js_select_list > li > a::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 6px;
  width: 6px;
  height: 6px;
  border: solid #999;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
}
.js_select .js_select_list > li > a.active {
  background-color: transparent;
  font-weight: bold;
  opacity: 1;
  cursor: default;
}
.js_select .js_select_list > li > a.active::before {
  top: 7px;
  left: 9px;
  width: 5px;
  height: 10px;
  border-color: #008924;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.js_select .js_select_close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: opacity .2s;
}
.js_select .js_select_close:hover {
  opacity: .6;
}
.js_select .js_select_close::before, .js_select .js_select_close::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 2px;
  margin: auto;
  background-color: #008924;
}
.js_select .js_select_close::before {
  transform: rotate(45deg);
}
.js_select .js_select_close::after {
  transform: rotate(-45deg);
}
/* パンくずリスト */
.breadcrumb .breadcrumb_list {
  padding: 6px 0;
  font-size: 0;
  line-height: 0;
}
.breadcrumb .breadcrumb_list li {
  display: inline-block;
  color: #888;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.breadcrumb .breadcrumb_list li::after {
  content: "＞";
  padding: 0 10px;
  color: #444;
}
.breadcrumb .breadcrumb_list li:last-child::after {
  content: none;
}
.breadcrumb .breadcrumb_list li a {
  color: #444;
}
/* snsボタン */
.sns li a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 41px;
  height: 41px;
  border: solid 2px;
  border-radius: 50%;
  background-color: #fff;
  text-indent: 100%;
  white-space: nowrap;
  transition: background-color .2s;
}
.sns li a::before, .sns li a::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 41px;
  height: 41px;
  background: no-repeat center;
  background-size: contain;
  transition: opacity .2s;
}
.sns li a::before, .sns li a:hover::after {
  opacity: 1;
}
.sns li a:hover::before, .sns li a::after {
  opacity: 0;
}
.sns li a:hover {
  opacity: 1;
}
.sns li.fb a {
  border-color: #3a5898;
}
.sns li.fb a:hover {
  background-color: #3a5898;
}
.sns li.fb a::before {
  background-image: url(../img/facebook_ico.png);
}
.sns li.fb a::after {
  background-image: url(../img/facebook_ico_on.png);
}
.sns li.tw a {
  border-color: #1ea2f2;
}
.sns li.tw a:hover {
  background-color: #1ea2f2;
}
.sns li.tw a::before {
  background-image: url(../img/twitter_ico.png);
}
.sns li.tw a::after {
  background-image: url(../img/twitter_ico_on.png);
}
.sns li.ig a {
  border-color: #a143bf;
}
.sns li.ig a:hover {
  background-color: #a143bf;
}
.sns li.ig a::before {
  background-image: url(../img/instagram_ico.png);
}
.sns li.ig a::after {
  background-image: url(../img/instagram_ico_on.png);
}
/* お知らせリスト */
.news_list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: dotted 1px #bfbfbf;
}
.news_list li:last-child {
  margin-bottom: 0;
}
.news_list li a {
  display: inline-block;
  position: relative;
  padding-left: 110px;
}
.news_list li a p {
  display: inline;
  margin: 0;
}
.news_list li a .date {
  position: absolute;
  top: 0;
  left: 0;
}
.news_list li a .tag, .news_list li a .room {
  display: inline-block;
  min-width: 85px;
  margin-right: 6px;
  padding: 0 10px;
  border-radius: 2px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 2.1rem;
  text-align: center;
}
.news_list li a .tag {
  background-color: #ed4a4a;
}
.news_list li a .room {
  background-color: #fff;
  color: inherit;
  border: solid 1px #ccc;
}
/* 投稿詳細 */
.entry_content .txt {
  width: 66.421%;
}
.entry_content .txt p {
  margin: 0;
}
.entry_content .txt a {
  color: #03c;
  text-decoration: underline;
}
.entry_content .img {
  width: 31.09%;
}
.entry_content .img .img_wrapper {
  max-width: 337px;
  margin: 0 auto;
}
.entry_content .img #img_slider {
  display: none;
}
.entry_content .img #img_slider .main_img {
  position: relative;
  padding-top: calc(100% - 2px);
  border: solid 1px #f6f6f6;
  background: no-repeat center;
  background-size: contain;
}
.entry_content .img #img_slider .main_img .img_zoom {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../img/course_detail_zoom.png) no-repeat top 5px right 5px;
  cursor: pointer;
  transition: opacity .2s;
}
.entry_content .img #img_slider .main_img .img_zoom:hover {
  opacity: .6;
}
.entry_content .img #img_slider .main_img .img_zoom img {
  display: block;
}
.entry_content .img #img_slider .img_list {
  width: calc(100% + 4px);
  margin: 4px -2px 0;
  font-size: 0;
  text-align: center;
}
.entry_content .img #img_slider .img_list li {
  display: inline-block;
  width: 33.33%;
  padding: 0 2px;
}
.entry_content .img #img_slider .img_list li a {
  display: block;
  padding-top: calc(100% - 2px);
  border: solid 1px #f6f6f6;
  background: no-repeat center;
  background-size: contain;
}
.entry_content .img #img_slider .img_list li a img {
  display: none;
}
.entry_content .img .caption {
  margin: 5px 0 10px;
  font-size: 1.4rem;
  line-height: 2rem;
}
.entry_content.flimg_l .img, .entry_content.flimg_r .txt {
  float: left;
}
.entry_content.flimg_r .img, .entry_content.flimg_l .txt {
  float: right;
}
.entry_content.flimg_none .img {
  display: none;
}
.entry_content.flimg_none .txt {
  width: auto;
}
/* ページナビ */
.page_nav {
  font-size: 0;
  text-align: center;
}
.page_nav .page_list {
  display: inline-block;
  margin: 0 -5px;
  vertical-align: middle;
}
.page_nav .page_list li {
  display: inline-block;
  margin: 0 5px;
  font-size: 1.4rem;
}
.page_nav .page_list li a {
  display: inline-block;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  background-color: #eee;
  line-height: 4rem;
}
.page_nav .page_list li.active a {
  background-color: #444;
  color: #fff;
}
.page_nav .page_list li.active a:hover {
  opacity: 1;
}
.page_nav .prev_btn, .page_nav .next_btn {
  padding-top: 7px;
  padding-bottom: 7px;
  border-color: #444;
  color: #444;
  font-size: 1.4rem;
  vertical-align: middle;
  border-width: 1px;
}
.page_nav .prev_btn:hover, .page_nav .next_btn:hover {
  background-color: #444;
  color: #fff;
}
.page_nav .prev_btn {
  margin-right: 20px;
  padding-right: 25px !important;
  padding-left: 42px;
}
.page_nav .prev_btn::after {
  right: auto;
  left: 16px;
  border-width: 0 0 2px 2px !important;
}
.page_nav .next_btn {
  margin-left: 20px;
}
/* datepicker */
.ui-datepicker {
  z-index: 2000 !important;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
  display: none;
}
.ui-datepicker a {
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-header {
  padding: 0 12px;
  border-bottom: dotted 1px #bfbfbf;
  position: relative;
  background-color: #e0f4de;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev, .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  width: 24px;
  height: 24px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  border: solid 1px #008924;
  border-radius: 4px;
  position: absolute;
  top: 6px;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover {
  opacity: 0.6;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before, .ui-datepicker .ui-datepicker-header .ui-datepicker-next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border: solid #008924;
  border-width: 2px 2px 0 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  left: 5px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before {
  transform: rotate(225deg);
  left: 9px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  right: 5px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next::before {
  transform: rotate(45deg);
  right: 9px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  font-weight: bold;
  line-height: 36px;
  color: #008924;
  text-align: center;
}
.ui-datepicker .ui-datepicker-calendar {
  border-collapse: separate;
  border-spacing: 2px;
  margin: 5px;
}
.ui-datepicker .ui-datepicker-calendar th, .ui-datepicker .ui-datepicker-calendar td {
  width: 32px;
  line-height: 22px;
  text-align: center;
}
.ui-datepicker .ui-datepicker-calendar .ui-datepicker-week-end:first-child {
  color: #ed4a4a;
}
.ui-datepicker .ui-datepicker-calendar .ui-datepicker-week-end:last-child {
  color: #5985d6;
}
.ui-datepicker .ui-datepicker-calendar td .ui-state-default {
  color: #000;
  border: solid 1px #e6e6e6;
  border-radius: 4px;
  display: block;
}
.ui-datepicker .ui-datepicker-calendar td .ui-state-hover {
  background-color: #e0f4de;
  opacity: 1;
}
.ui-datepicker .ui-datepicker-calendar td .ui-state-active {
  background-color: #008924;
  color: #fff;
  border-color: #008924;
}
.ui-datepicker .ui-datepicker-unselectable span.ui-state-default {
	color: #999;
	border: solid 1px #eee;
	background: #eee;
}
/* パターンバナー */
[data-patternbanner] > li {
  position: relative;
}
[data-patternbanner] > li > a {
  display: none;
  position: absolute;
  right: 50%;
  bottom: 50%;
  overflow: hidden;
  text-align: left;
  transform: translate(50%, 50%);
}
[data-patternbanner] > li > a.img_banner img {
  width: 100%;
}
[data-patternbanner] > li > a.txt_banner .banner_inner {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
[data-patternbanner] > li > a.txt_banner .banner_inner.img_r {
  flex-direction: row;
}
[data-patternbanner] > li > a.txt_banner .banner_inner.img_l {
  flex-direction: row-reverse;
}
[data-patternbanner] > li > a.txt_banner .banner_inner .txt {
  width: 100%;
  margin: 0;
  padding: 10px 12px;
}
[data-patternbanner] > li > a.txt_banner .banner_inner .txt .ttl {
  display: block;
  overflow: hidden;
  max-height: 4.4rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.2rem;
  word-break: break-all;
}
[data-patternbanner] > li > a.txt_banner .banner_inner .txt .sub_ttl {
  display: block;
  overflow: hidden;
  max-height: 1.7rem;
  font-size: 1.3rem;
  line-height: 1.7rem;
  word-break: break-all;
}
[data-patternbanner] > li > a.txt_banner .banner_inner .txt .ttl + .sub_ttl {
  margin-top: 10px;
}
[data-patternbanner] > li > a.txt_banner .banner_inner .img {
  flex-shrink: 0;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
}
[data-patternbanner] > li > a.txt_banner .banner_inner.img_none .img {
  display: none;
}
[data-patternbanner] > li > a.txt_banner[data-banner="1"] .banner_inner, [data-patternbanner] > li > a.txt_banner[data-banner="2"] .banner_inner, [data-patternbanner] > li > a.txt_banner[data-banner="3"] .banner_inner, [data-patternbanner] > li > a.txt_banner[data-banner="4"] .banner_inner, [data-patternbanner] > li > a.txt_banner[data-banner="5"] .banner_inner, [data-patternbanner] > li > a.txt_banner[data-banner="6"] .banner_inner {
  color: #444;
}
[data-patternbanner] > li > a.txt_banner[data-banner="7"] .banner_inner, [data-patternbanner] > li > a.txt_banner[data-banner="8"] .banner_inner, [data-patternbanner] > li > a.txt_banner[data-banner="9"] .banner_inner, [data-patternbanner] > li > a.txt_banner[data-banner="10"] .banner_inner, [data-patternbanner] > li > a.txt_banner[data-banner="11"] .banner_inner, [data-patternbanner] > li > a.txt_banner[data-banner="12"] .banner_inner {
  color: #fff;
}
[data-patternbanner] > li > a.txt_banner[data-banner="1"] .banner_inner {
  background-color: #81e9db;
}
[data-patternbanner] > li > a.txt_banner[data-banner="2"] .banner_inner {
  background-color: #91dcff;
}
[data-patternbanner] > li > a.txt_banner[data-banner="3"] .banner_inner {
  background-color: #ffe491;
}
[data-patternbanner] > li > a.txt_banner[data-banner="4"] .banner_inner {
  background-color: #ffc791;
}
[data-patternbanner] > li > a.txt_banner[data-banner="5"] .banner_inner {
  background-color: #ffb18f;
}
[data-patternbanner] > li > a.txt_banner[data-banner="6"] .banner_inner {
  background-color: #ffacaa;
}
[data-patternbanner] > li > a.txt_banner[data-banner="7"] .banner_inner {
  background-color: #008674;
}
[data-patternbanner] > li > a.txt_banner[data-banner="8"] .banner_inner {
  background-color: #006898;
}
[data-patternbanner] > li > a.txt_banner[data-banner="9"] .banner_inner {
  background-color: #dea700;
}
[data-patternbanner] > li > a.txt_banner[data-banner="10"] .banner_inner {
  background-color: #f49131;
}
[data-patternbanner] > li > a.txt_banner[data-banner="11"] .banner_inner {
  background-color: #f2672a;
}
[data-patternbanner] > li > a.txt_banner[data-banner="12"] .banner_inner {
  background-color: #d73430;
}
/* ローディング */
#wrapper.loading::before {
  content: "";
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}
#wrapper.loading::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9001;
  width: 50px;
  height: 50px;
  margin: auto;
  border: solid 6px #fff;
  border-top-color: #008924;
  border-radius: 50%;
  animation: loading 1s infinite linear;
}
@keyframes loading {
0% {
  transform: rotate(0);
}100% {
  transform: rotate(360deg);
}
}

/* ---------- 汎用パーツ ---------- */
.table_01, .table_02, .table_03, .box_01, .box_02, .box_03, .box_04, .list_01, .list_02, .list_03, .olist_01, .olist_02, .yoko, .dl_01, .dl_02, .dl_03, .dl_04, .img_lyt {
  margin-top: 15px;
  margin-bottom: 15px;
}
.table_01:first-child, .table_02:first-child, .table_03:first-child, .box_01:first-child, .box_02:first-child, .box_03:first-child, .box_04:first-child, .list_01:first-child, .list_02:first-child, .list_03:first-child, .olist_01:first-child, .olist_02:first-child, .yoko:first-child, .dl_01:first-child, .dl_02:first-child, .dl_03:first-child, .dl_04:first-child, .img_lyt:first-child {
  margin-top: 0;
}
.table_01:last-child, .table_02:last-child, .table_03:last-child, .box_01:last-child, .box_02:last-child, .box_03:last-child, .box_04:last-child, .list_01:last-child, .list_02:last-child, .list_03:last-child, .olist_01:last-child, .olist_02:last-child, .yoko:last-child, .dl_01:last-child, .dl_02:last-child, .dl_03:last-child, .dl_04:last-child, .img_lyt:last-child {
  margin-bottom: 0;
}
/* HTML */
.html:after {
	content: " ";
	display: block;
	clear: both;
}
.html a {
  color: #03c;
  text-decoration: underline;
}
.html .btn_01 {
  margin: 4px 2px;
  color: #444;
  text-decoration: none;
}
.html .youtube {
  display: none;
}
.html .youtube_wrapper {
  position: relative;
}
.html .youtube_wrapper .youtube {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* テーブル */
.table_01 th, .table_01 td {
  padding: 10px;
  border: solid 1px #e0e0e0;
}
.table_01 th {
  background-color: #f7f7f7;
}
.table_02 th, .table_02 td {
  padding: 10px;
  border: solid 1px #e0e0e0;
}
.table_02 th {
  background-color: #f7f7f7;
}
.table_03 th, .table_03 td {
  padding: 10px;
  border: solid 1px #e0e0e0;
}
.table_03 thead th {
  background-color: #e2e2e2;
}
.table_03 tbody th {
  background-color: #f7f7f7;
}
.table_01.table_green th, .table_02.table_green th, .table_03.table_green thead th {
  background-color: #4ab667;
  color: #fff;
}
.table_03.table_green tbody th {
  background-color: #dbf0e1;
}
.table_01 a, .table_02 a, .table_03 a {
  color: #03c;
  text-decoration: underline;
}
/* 見出し */
.h1 {
  position: relative;
  margin: 0 0 40px;
  padding-bottom: 20px;
  color: #008924;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 3rem;
}
.h1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #e0e0e0;
}
.h2 {
  margin: 35px 0 15px;
  padding: 0 12px;
  border-left: solid 4px #14a83b;
  font-size: 2rem;
  line-height: 2.2rem;
}
.h3 {
  margin: 25px 0 10px;
  color: #008924;
  font-size: 1.8rem;
  line-height: 2.6rem;
  border-radius: 3px;
}
.h4 {
  margin: 25px 0 10px;
  font-size: 1.7rem;
  line-height: 2.5rem;
  border-radius: 3px;
}
.h5 {
  margin: 20px 0 10px;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.h6 {
  margin: 20px 0 10px;
  font-size: 1.5rem;
  line-height: 2.3rem;
}
/* 囲み枠 */
.box_01 {
  padding: 15px;
  border: solid 1px #e0e0e0;
  border-radius: 5px;
}
.box_02 {
  padding: 15px;
  border: solid 2px #008924;
  border-radius: 5px;
}
.box_03 {
  padding: 15px;
  border-radius: 5px;
  background-color: #dbf0e1;
}
.box_04 {
  padding: 15px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
  background-color: #fff;
}
.box_01 a, .box_02 a, .box_03 a, .box_04 a {
  color: #03c;
  text-decoration: underline;
}
.box_01 p, .box_02 p, .box_03 p, .box_04 p {
  margin: 0;
}
.box_01 dl, .box_02 dl, .box_03 dl, .box_04 dl {
  margin: 0;
}
/* リスト */
.list_01 > li {
  margin-bottom: 2px;
}
.list_01 > li > a {
  text-decoration: underline;
}
.list_02 > li {
  position: relative;
  margin-bottom: 2px;
  padding-left: 20px;
}
.list_02 > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 4px;
  height: 4px;
  background-color: #444;
}
.list_02 > li > a {
  text-decoration: underline;
}
.list_03 > li {
  position: relative;
  margin-bottom: 2px;
  padding-left: 20px;
}
.list_03 > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 4px;
  height: 4px;
  background-color: #008924;
}
.list_03 > li > a {
  text-decoration: underline;
}
.olist_01 {
  counter-reset: count;
}
.olist_01 > li {
  position: relative;
  margin-bottom: 2px;
  padding-left: 30px;
}
.olist_01 > li::before {
  content: counter(count)".";
  counter-increment: count;
  position: absolute;
  top: 1px;
  left: 2px;
  color: #444;
}
.olist_01 > li > a {
  text-decoration: underline;
}
.olist_02 {
  counter-reset: count;
}
.olist_02 > li {
  position: relative;
  margin-bottom: 2px;
  padding-left: 30px;
}
.olist_02 > li::before {
  content: counter(count)".";
  counter-increment: count;
  position: absolute;
  top: 1px;
  left: 2px;
  color: #008924;
}
.olist_02 > li > a {
  text-decoration: underline;
}
.yoko {
  font-size: 0;
}
.yoko > li {
  display: inline-block;
  padding: 0 10px;
  border-right: solid 1px #444;
  font-size: 1.6rem;
}
.yoko > li:last-child {
  border-right: none 1px #444;
}
.yoko > li > a {
  text-decoration: underline;
}
/* 定義リスト */
.dl_01 dt {
  padding: 10px 15px;
  background-color: #dbf0e1;
  font-weight: bold;
}
.dl_01 dd {
  margin-left: 0;
  padding: 10px 15px;
  border: solid 1px #eee;
  background-color: #fff;
}
.dl_01 dd + dd {
  border-top: none;
}
.dl_01 dt:first-child, .dl_01 dd:first-child {
  border-radius: 5px 5px 0 0;
}
.dl_01 dt:last-child, .dl_01 dd:last-child {
  border-radius: 0 0 5px 5px;
}
.dl_02 {
  overflow: hidden;
  height: 0;
  opacity: 0;
}
.dl_02 dt {
  width: 25%;
  margin-bottom: 1px;
  padding: 5px 15px;
  background-color: #f7f7f7;
  font-weight: bold;
  text-align: center;
}
.dl_02 dd {
  margin-left: 25%;
  padding: 5px 15px;
  background-color: #fff;
}
.dl_03 {
  overflow: hidden;
  height: 0;
  opacity: 0;
}
.dl_03 dt {
  width: 160px;
  margin-bottom: 1px;
  padding: 5px 15px;
  font-weight: bold;
}
.dl_03 dd {
  margin-left: 160px;
  padding: 5px 15px;
}
.dl_04 dt {
  margin: 20px 0 5px;
  font-weight: bold;
}
.dl_04 dt:first-child {
  margin-top: 0;
}
.dl_04 dd {
  margin-left: 0;
}
.dl_04 dd + dd {
  border-top: none;
}
.dl_04 {
  margin: 0;
}
.dl_01 a, .dl_02 a, .dl_03 a, .dl_04 a {
  color: #03c;
  text-decoration: underline;
}
/* 画像配置 */
.img_lyt::after {
  content: "";
  display: block;
  clear: both;
}
.img_lyt.border {
  padding: 15px;
  border: solid 1px #e0e0e0;
  border-radius: 5px;
}
.img_lyt.no_border {
  padding: 15px;
  border-radius: 5px;
}
.img_lyt .imgR {
  float: right;
  margin: 0 0 15px 15px;
}
.img_lyt .imgL {
  float: left;
  margin: 0 15px 15px 0;
}
.img_lyt .imgC {
  margin-bottom: 15px;
  text-align: center;
}
.img_lyt a {
  color: #03c;
  text-decoration: underline;
}
.img_lyt .ttl {
  margin: 10px 0 0 0;
  font-size: 1.8rem;
  font-weight: bold;
}
.img_lyt .imgR img, .img_lyt .imgL img, .img_lyt .imgC img {
  max-width: 300px;
  max-height: 400px;
  object-fit: contain;
}
.img_lyt .imgR span, .img_lyt .imgL span, .img_lyt .imgC span {
  display: block;
  font-size: 1.3rem;
}
/* 画像配置カラムリスト */
[class^="col_"] {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1% -15px;
}
[class^="col_"] > [class^="box_"] {
  text-align: center;
  margin: 0 1% 15px;
}
[class^="col_"] > [class^="box_"] .img {
  max-width: 100%;
  align-items: flex-start;
}
[class^="col_"] > [class^="box_"] p {
  text-align: left;
  font-size: 1.4rem;
  margin: 10px 0;
}
[class^="col_"] > [class^="box_"] p:last-child {
  margin-bottom: 0;
}
[class^="col_"] > [class^="box_"] p.ttl {
  margin: 10px 0 0 0;
  font-weight: bold;
  font-size: 1.6rem;
}
[class^="col_"] > [class^="box_"] span {
  display: block;
  font-size: 1.3rem;
}
[class^="col_"] > .no_border[class^="box_"] {
  border: 0;
  background-color: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.col_two [class^="box_"] {
  width: 48%;
}
.col_thr [class^="box_"] {
  width: 31%;
}
.col_fou [class^="box_"] {
  width: 23%;
}
/* 水平線 */
.hr_01 {
  height: 1px;
  border: none;
  background-color: #e0e0e0;
}
.hr_02 {
  border: none;
  border-bottom: dotted 1px #bfbfbf;
}
.hr_03 {
  height: 4px;
  border: none;
  background-color: #e0e0e0;
}
.hr_04 {
  height: 2px;
  border: none;
  background-color: #008924;
}
/* ボタン */
.btn_wrapper {
  margin: 15px 0;
}
.btn_01 {
  display: inline-block;
  padding: 5px 15px;
  border-bottom: solid 2px #e2e2e2;
  border-radius: 4px;
  background-color: #f7f7f7;
  color: #444;
  cursor: pointer;
}
.btn_01[disabled] {
  opacity: .4;
  cursor: default;
}
.btn_01.btn_arrow {
  position: relative;
  padding-right: 40px;
}
.btn_01.btn_arrow::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 16px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto 0;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
.btn_01.btn_green {
  border-bottom-color: #329f3a;
  background-color: #4fbc57;
  color: #fff;
}
.btn_01.btn_yellow {
  border-bottom-color: #c26715;
  background-color: #ff7901;
  color: #fff;
}
.btn_01.btn_red {
  border-bottom-color: #b4222f;
  background-color: #f13a49;
  color: #fff;
}
.btn_01.btn_blue {
  border-bottom-color: #177dc2;
  background-color: #3aa8f1;
  color: #fff;
}
.btn_02 {
  display: inline-block;
  padding: 6px 25px;
  border: solid 2px #444;
  background-color: #fff;
  color: #444;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}
.btn_02:hover {
  background-color: #444;
  opacity: 1;
  color: #fff;
}
.btn_02.btn_arrow {
  position: relative;
  padding-right: 42px;
}
.btn_02.btn_arrow::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 16px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
/* 講座一覧 */
.course {
  overflow: hidden;
  margin: -10px;
}
.course li {
  float: left;
  padding: 10px;
}
.course li a {
  display: block;
  position: relative;
  padding: 25px 20px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
}
.course li a .img {
  margin: -25px -20px 20px -20px;
}
.course li a .img .img_inner {
  max-width: 256px;
  margin: 0 auto;
  background: no-repeat center;
  background-size: contain;
}
.course li a .img .img_inner::before {
  content: "";
  display: block;
  padding-top: calc(100% * 211 / 256);
}
.course li a .room {
  height: 10px;
}
.course li a .img + .room {
  height: 0;
}
.course li a .room span {
  position: absolute;
  top: 2px;
  left: 2px;
  min-width: 70px;
  margin: 0;
  padding: 0 5px;
  border-radius: 2px;
  background-color: rgba(153, 153, 153, .8);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-align: center;
}
.course li a .finished_label span {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 70px;
  margin: 0;
  padding: 0 5px;
  border-radius: 2px;
  background-color: #fff0f0;
  color: #ed4a4a;
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: center;
  border: solid 1px #ed4a4a;
}
.course li a .ttl {
  margin: 0;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 2.1rem;
}
.course li a .txt {
  margin: 15px 0 15px;
  font-size: 1.4rem;
  line-height: 2rem;
}
.course li a .date {
  margin: 15px 0 0;
  font-size: 1.4rem;
  line-height: 2rem;
}
.course li a .lecturer {
  display: block;
  overflow: hidden;
  margin: 6px 0 0;
  font-size: 1.4rem;
  line-height: 2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.course li a .lecturer span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.course li a .tag {
  height: 20px;
  margin: 10px 0 0;
  line-height: 0;
}
.course li a .tag span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  min-width: 105px;
  padding: 0 10px;
  border: solid 1px #ccc;
  border-radius: 2px;
  background-color: #eee;
  color: #888;
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-align: center;
}
.course_one li {
  width: 100%;
}
.course_one li a .img {
  float: left;
  width: 24.522%;
  margin: -25px 20px -20px -20px;
}

.course_one li a.finished {
  pointer-events: none;
}
.course_one li a div.container {
  position: relative;
}
.course_one li a div.container .finished_label {
    position: absolute;
    top: 22px;
}

.course_one li a .img + .content, .course_one li a .img + .room + .content,
.course_one li a .img + .content, .course_one li a .img + .finished_label + .content,
.course_one li a .img + .content, .course_one li a .img + .room + .finished_label + .content {
  float: right;
  width: 75.478%;
}
.course_one li a .lecturer {
  width: calc(100% - 115px);
}
.course_one li a .tag {
  height: auto;
  margin-top: 0;
}
.course_two li {
  width: 50%;
}
.course_two li a .img {
  float: left;
  width: 52.033%;
  margin: -25px 20px -20px -20px;
}
.course_two li a .img + .content, .course_two li a .img + .room + .content,
.course_two li a .img + .content, .course_two li a .img + .finished_label + .content,
.course_two li a .img + .content, .course_two li a .img + .room + .finished_label + .content {
  float: right;
  width: 47.967%;
}
.course_thr li {
  width: 33.333%;
}
.course_fou li {
  width: 25%;
}
.course_list li {
  position: relative;
  margin-bottom: 2px;
  padding-left: 30px;
}
.course_list li a {
  display: inline-block;
  font-size: 0;
}
.course_list li a::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: solid #008924;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
.course_list h3, .course_list p {
  display: inline;
  margin: 0;
}
.course_list h3 {
  font-weight: bold;
  font-size: 1.6rem;
}
.course_list h3, .course_list p {
  font-size: 1.5rem;
}
.course_list .date, .course_list .lecturer {
  margin-left: 40px;
}
.course_list .finished_label {
  display: inline;
  margin-left: 10px;
}
.course_list .finished_label span {
  display: inline-block;
  min-width: 70px;
  padding: 0 5px;
  border-radius: 2px;
  background-color: #fff0f0;
  color: #ed4a4a;
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: center;
  border: solid 1px #ed4a4a;
}
/* フォーム */
.form_tbl {
  display: table;
  width: 100%;
  margin: 0;
  border: 1px #bfbfbf;
  border-style: dotted none;
}
.form_tbl + .form_tbl {
  border-top: none;
}
.form_tbl > dt, .form_tbl > dd {
  display: table-cell;
  margin: 0;
  vertical-align: top;
}
.form_tbl > dt {
  position: relative;
  width: 280px;
  padding: 22px 80px 22px 20px;
  background-color: #f7f7f7;
}
.form_tbl > dd {
  width: calc(100% - 280px);
  padding: 15px 20px;
}
.form_tbl > dd .field {
  width: 100%;
  max-width: 440px;
  min-height: 38px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.form_tbl > dd input[type="tel"].field {
  max-width: 240px;
}
.form_tbl > dd input[type="number"].field {
  max-width: 140px;
}
.form_tbl > dd .date_picker.field {
  max-width: 140px;
}
.form_tbl > dd textarea.field {
  max-width: 640px;
}
.form_tbl > dd select.field {
  width: auto;
  max-width: none;
}
.form_tbl > dd .textarea_wrapper {
  font-size: 0;
  line-height: 0;
}
.form_tbl > dd .textarea_wrapper textarea {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.form_tbl > dd .checkbox_list {
  margin-bottom: -8px;
  padding: 6px 0;
}
.form_tbl > dd .checkbox_list.inline {
  margin-right: -25px;
}
.form_tbl > dd .checkbox_list li {
  margin-bottom: 8px;
}
.form_tbl > dd .checkbox_list.inline li {
  float: left;
  margin-right: 25px;
}
.form_tbl > dd .form_txt {
  margin: 5px 0 0;
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.form_tbl > dd .error_txt {
  margin: 5px 0 0;
  color: #ed4a4a;
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.form_tbl.error > dd .field {
  background-color: #fff4f4;
}
.form_tbl.required > dt::before {
  content: "必須";
  position: absolute;
  top: 24px;
  right: 20px;
  width: 40px;
  height: 20px;
  background-color: #ed4a4a;
  border-radius: 2px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: center;
}
.form_btn {
  margin-top: 20px;
}
.form_btn .btn_01 {
  margin-right: 10px;
  padding: 10px 30px;
}
.form_btn .btn_01:last-child {
  margin-right: 0;
}
.g-recaptcha {
  display: inline-block;
  margin-top: 20px;
 }

/* ---------- ヘッダー ---------- */
#header {
  position: relative;
  z-index: 1000;
  padding-bottom: 4px;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
}
#header .header_content {
  padding: 0 15px;
}
#header .logo {
  float: left;
  margin: 13px 14px 13px 0;
  font-size: 1.6rem;
}
#header .logo a:hover {
  opacity: 1;
}
#header .room_name {
  display: block;
  float: left;
  margin: 25px 12px 19px 0;
  padding: 0 14px;
  border-radius: 16px;
  background-color: #008924;
  color: #fff;
  font-size: 2rem;
  line-height: 3.2rem;
}
#header .room_name:hover {
  opacity: 1;
}
#header .tel {
  float: left;
  margin: 27px 0 21px;
}
#header .tel .number {
  float: left;
  margin-right: 10px;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 2.8rem;
}
#header .tel .number a {
  color: #ff7901;
  font-family: Arial, sans-serif;
  pointer-events: none;
}
#header .tel .txt {
  float: left;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4rem;
}
#header .header_mypage {
  position: relative;
  float: right;
  margin: 24px 0;
}
#header .header_mypage .mypage_btn {
  font-weight: bold;
}
#header .header_mypage .mypage_btn span {
  vertical-align: middle;
}
#header .header_mypage .mypage_btn::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  background: url(../img/menu_ico_01.png) no-repeat center;
  background-size: contain;
  vertical-align: middle;
}
#header .header_mypage .mypage_popup {
  position: absolute;
  top: 18px;
  right: 0;
  z-index: 2000;
  visibility: hidden;
  padding-top: 10px;
  opacity: 0;
  transition: visibility .2s, opacity .2s;
}
#header .header_mypage .mypage_btn:hover + .mypage_popup, #header .header_mypage .mypage_popup:hover {
  visibility: visible;
  opacity: 1;
}
#header .header_mypage .mypage_popup .popup_inner {
  padding: 14px;
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
  background-color: #fff;
  text-align: center;
}
#header .header_mypage .mypage_popup .popup_inner::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 48px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent #eee transparent;
}
#header .header_mypage .mypage_popup .popup_inner::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 50px;
  border-width: 0 4px 5px 4px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
#header .header_mypage .mypage_popup .login_btn {
  display: inline-block;
  width: 160px;
  margin-bottom: 8px;
  border: solid 2px #008924;
  color: #008924;
  line-height: 3.6rem;
  transition: background-color .2s, color .2s;
}
#header .header_mypage .mypage_popup .login_btn:hover {
  background-color: #008924;
  opacity: 1;
  color: #fff;
}
#header .header_mypage .mypage_popup .register_btn {
  font-size: 1.2rem;
}
#header #sp_menu_btn {
  display: none;
}
#header .header_nav .nav_overlay {
  display: none;
}
#header .header_nav .nav_head {
  display: none;
}
#header .header_nav .nav_list {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-bottom: 7px;
}
#header .header_nav .nav_list li {
  display: table-cell;
  width: calc(100% / 7);
  border-right: dotted 1px #898989;
  vertical-align: middle;
}
#header .header_nav .nav_list li:last-child {
  border-right: none;
}
#header .header_nav .nav_list li a {
  display: block;
  position: relative;
  padding: 6px 10px 4px;
  font-weight: bold;
  text-align: center;
}
#header .header_nav .nav_list li a:hover {
  opacity: 1;
}
#header .header_nav .nav_list li a::after {
  content: "";
  display: block;
  position: relative;
  top: 4px;
  width: 0;
  height: 2px;
  margin: 0 auto;
  background-color: #008924;
}
#header .header_nav .nav_list li a:hover::after {
  width: 100%;
  transition: width .4s;
}
#header .header_nav .nav_list li.mypage {
  display: none;
}
#header .header_nav .nav_list li.active a {
  color: #008924;
}
#header .header_nav .help_btn {
  display: none;
}
#header .all_nav {
  padding: 20px 0 15px;
  float: right;
}
#header .all_nav .sns {
  float: left;
  margin-right: 30px;
}
#header .all_nav .sns > li {
  float: left;
  margin-right: 14px;
}
#header .all_nav .sns > li:last-child {
  margin-right: 0;
}
#header .all_nav .help_btn {
  float: left;
}
#header .all_nav .help_btn a {
  display: block;
  padding: 0 55px;
  border: solid 2px #ff7901;
  border-radius: 21px;
  background-color: #fff;
  color: #ff7901;
  font-size: 1.8rem;
  line-height: 3.7rem;
  transition: background-color .2s, color .2s;
}
#header .all_nav .help_btn a:hover {
  background-color: rgb(255, 121, 1);
  opacity: 1;
  color: rgb(255, 255, 255);
}

/* ---------- フッター ---------- */
#footer {
  margin-top: auto;
}
.breadcrumb + #footer {
  margin-top: 0;
}
#main + .breadcrumb {
  margin-top: auto;
}
#footer .footer_contact {
  background-color: #f7f7f7;
}
#footer .footer_contact .sns {
  float: left;
  margin: 19px 0 20px;
}
#footer .footer_contact .sns li {
  float: left;
  margin-right: 14px;
}
#footer .footer_contact .sns li:last-child {
  margin-right: 0;
}
#footer .footer_contact .help_btn {
  float: right;
  margin: 15px 0 15px 20px;
  padding: 0 55px;
  border: solid 2px #ff7901;
  border-radius: 25px;
  background-color: #fff;
  color: #ff7901;
  font-size: 1.8rem;
  line-height: 4.6rem;
  transition: background-color .2s, color .2s;
}
#footer .footer_contact .help_btn:hover {
  background-color: #ff7901;
  opacity: 1;
  color: #fff;
}
#footer .footer_contact .room {
  float: right;
}
#footer .footer_contact .room_name {
  float: left;
  margin: 28px 8px 28px 0;
  color: #767676;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 2.4rem;
}
#footer .footer_contact .tel {
  float: left;
  margin: 26px 0;
}
#footer .footer_contact .tel .number {
  float: left;
  margin-right: 10px;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 2.8rem;
}
#footer .footer_contact .tel .number a {
  color: #ff7901;
  font-family: Arial, sans-serif;
  pointer-events: none;
}
#footer .footer_contact .tel .txt {
  float: left;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4rem;
}
#footer .footer_link_wrapper {
  overflow: hidden;
}
#footer .footer_link_list li {
  float: left;
  border-left: solid 1px #444;
}
#footer .footer_content {
  padding-top: 30px;
  background-color: #e2e2e2;
}
#footer .footer_content .ttl {
  margin: 20px 0 15px;
  font-weight: bold;
}
#footer .footer_content .footer_link_01 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #cecece;
}
#footer .footer_content .footer_link_01 .footer_link_list {
  margin: 0 -30px -8px;
}
#footer .footer_content .footer_link_01 .footer_link_list li {
  margin-bottom: 10px;
  padding: 0 30px;
  line-height: 1.6rem;
}
#footer .footer_content .footer_link_01 .footer_link_list li a {
  font-size: 1.5rem;
}
#footer .footer_content .room_btn {
  display: none;
}
#footer .footer_content .footer_link_02 {
  margin-bottom: 30px;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
#footer .footer_content .footer_link_02 .footer_link_list {
  display: inline-block;
  margin-bottom: -8px;
}
#footer .footer_content .footer_link_02 .footer_link_list li {
  margin-bottom: 8px;
  padding: 0 15px;
  line-height: 1.4rem;
}
#footer .footer_content .footer_link_02 .footer_link_list li:first-child {
  border-left: none;
}
#footer .footer_content .footer_link_02 .footer_link_list li a {
  font-size: 1.4rem;
  vertical-align: middle;
}
#footer .footer_content .logo {
  margin-bottom: 20px;
  text-align: center;
}
#footer .footer_content .logo img {
  width: 120px;
}
#footer .footer_content .copyright {
  display: block;
  padding: 5px 0;
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: center;
}
#footer #top_btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5000;
  visibility: hidden;
  width: 65px;
  height: 65px;
  padding-top: 35px;
  border-radius: 50%;
  background-color: #008924;
  opacity: 0;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  transition: opacity .2s, visibility .2s, transform .2s;
}
#footer #top_btn:hover {
  transform: scale(1.1);
}
#footer #top_btn::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border: solid #fff;
  border-width: 2px 0 0 2px;
  transform: rotate(45deg);
}
#footer #top_btn.view {
  visibility: visible;
  opacity: 1;
}

/* ---------- TOP ---------- */
#top #main {
  margin: 10px 0 0;
}
#top .top_ttl {
  position: relative;
  margin: 0 0 40px;
  padding-bottom: 15px;
  color: #008924;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 2.6rem;
}
#top .top_ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #e0e0e0;
}
#top .top_content {
  align-items: stretch;
}
#top .top_banner {
  width: 100%;
}
#top .top_banner .banner_list {
  max-width: 940px;
  margin: 0 auto;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
#top .top_banner .banner_list li {
  display: inline-block;
  position: relative;
  width: 31.915%;
  margin: 0 2.128% 0 0;
}
#top .top_banner .banner_list li:last-child {
  margin-right: 0;
}
#top .search {
  position: relative;
  width: 70.48%;
  margin-bottom: 20px;
  padding: 25px 50px;
  background: no-repeat center;
  background-size: cover;
}
#top .search::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, .65) 30%, rgba(255, 255, 255, .4) 60%)
}
#top .search .search_inner {
  position: relative;
  z-index: 1;
}
#top .search .search_ttl {
  text-align: center;
}
#top .search .search_ttl .top_ttl {
  display: inline-block;
  margin-bottom: 20px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 2.6rem;
  line-height: 3rem;
}
#top .search .search_ttl .top_ttl::before {
  background-color: #ccc;
}
#top .search .top_form {
  position: relative;
}
#top .search .search_sub_ttl {
  margin: 0 0 5px;
  color: #008924;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.2rem;
  text-align: left;
  text-shadow: #efefef 1px 1px 1px, #efefef -1px 1px 1px, #efefef 1px -1px 1px, #efefef -1px -1px 1px;
}
#top .search .input_wrapper .submit_btn {
  float: right;
  padding: 0 34px;
  border-bottom-color: #006a1c;
  background-color: #008924;
  color: #fff;
  line-height: 48px;
  vertical-align: middle;
  position: relative;
}
#top .search .input_wrapper .submit_btn:hover {
  opacity: 1;
}
#top .search .input_wrapper .submit_btn[disabled] {
  opacity: 1;
}
#top .search .input_wrapper .submit_btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: -2px;
  left: 0;
  background-color: #fff;
  border-radius: 4px;
  opacity: 0;
  transition: opacity .2s;
}
#top .search .input_wrapper .submit_btn:hover::before {
  opacity: .4;
}
#top .search .input_wrapper .submit_btn[disabled]::before {
  opacity: .6;
}
#top .search .search_txt {
  margin-bottom: 20px;
}
#top .search .search_txt .input_wrapper .field {
  float: left;
  width: calc(97.14% - 100px);
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: 45px;
  border: solid 2px #008924;
  background: url(../img/search_ico.png) no-repeat center left 15px #fff;
  background-size: 20px;
}
#top .search .search_txt .tag_list {
  margin: 10px -4px -8px 0;
}
#top .search .search_txt .tag_list li {
  float: left;
  margin: 0 4px 8px 0;
}
#top .search .search_txt .tag_list li a {
  display: block;
  padding: 0 15px;
  background-color: #fff;
  border: solid 1px #6cd187;
  border-radius: 12px;
  font-size: 1.2rem;
  line-height: 2.2rem;
}
#top .search .search_category .input_wrapper .category_select {
  float: left;
  width: calc(47.44% - 50px);
  margin-right: 2.26%;
}
#top .search .category_btn {
  position: absolute;
  top: 0;
  right: 4px;
  padding-right: 12px;
  color: #008924;
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: #efefef 1px 1px 1px, #efefef -1px 1px 1px, #efefef 1px -1px 1px, #efefef -1px -1px 1px;
}
#top .search .category_btn::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  bottom: 0;
  width: 9px;
  height: 9px;
  margin: auto 0;
  border: solid #efefef;
  border-width: 4px 4px 0 0;
  transform: rotate(45deg);
}
#top .search .category_btn::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 1px;
  bottom: 0;
  width: 7px;
  height: 7px;
  margin: auto 0;
  border: solid #008924;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
#top .search .news {
  margin: 10px 0 0;
  padding: 7px 15px;
  background-color: rgba(0, 0, 0, .45);
  color: #fff;
  border-radius: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#top .search .news a {
  position: relative;
  padding-left: 15px;
  color: #fff;
}
#top .search .news a::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 10px;
  border: solid transparent;
  border-width: 5px 0 5px 8px;
  border-left-color: #fff;
}
#top .beginner {
  width: 27.676%;
  margin-bottom: 20px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
}
#top .beginner .top_ttl {
  position: relative;
  margin-bottom: 0;
  padding: 15px 15px 15px 60px;
  background-color: #e3e3e3;
  color: #000;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
#top .beginner .top_ttl::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 36px;
  height: 36px;
  margin: auto 0;
  border-radius: 18px;
  background: url(../img/beginner_ttl_ico.png) no-repeat center #008924;
}
#top .beginner .btn_list {
  padding: 20px;
}
#top .beginner .btn_list .btn_01 {
  width: 100%;
  margin-bottom: 10px;
  padding: 15px 25px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
#top .beginner .btn_list .btn_01:last-child {
  margin-bottom: 0;
}
#top .beginner .btn_list .btn_01.sp_btn {
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: center;
}
#top .beginner .btn_list .btn_01.sp_btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  background: no-repeat center;
  vertical-align: middle;
}
#top .beginner .btn_list .btn_01.beginner_btn {
  display: none;
}
#top .beginner .btn_list .btn_01.register_btn::before {
  background-image: url(../img/user_register_ico.png);
}
#top .beginner .btn_list .btn_01.beginner_btn::before {
  background-image: url(../img/beginner_ttl_ico.png);
}
#top #feature {
  margin: 60px 0;
}
#top #feature .feature_content {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
#top #feature .feature_content_inner {
  align-items: center;
  position: relative;
  padding: 0 120px;
}
#top #feature .feature_content .feature_read {
  width: 45%;
  max-width: 380px;
}
#top #feature .feature_content .feature_read a {
  display: block;
  transition: opacity .2s;
}
#top #feature .feature_content .feature_read a:hover {
  opacity: .6;
}
#top #feature .feature_content .feature_read .feature_ttl {
  margin: 0 0 15px;
  padding-bottom: 0;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 3.2rem;
}
#top #feature .feature_content .feature_read .feature_ttl::before {
  content: none;
}
#top #feature .feature_content .feature_read .feature_ttl .main {
  display: block;
  text-decoration: underline;
}
#top #feature .feature_content .feature_read .feature_ttl .sub {
  display: block;
  font-size: 1.6rem;
  line-height: 2rem;
}
#top #feature .feature_content .feature_read p {
  margin: 0;
  font-size: 1.7rem;
  line-height: 2.4rem;
}
#top #feature .feature_content .feature_read p::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border: solid;
  border-width: 2px 2px 0 0;
  vertical-align: middle;
  transform: rotate(45deg);
}
#top #feature .feature_content .feature_course {
  width: 51.7%;
  margin: 0 -7px;
}
#top #feature .feature_content .feature_course li {
  float: left;
  width: 33.3%;
  padding: 0 7px;
}
#top #feature .feature_content .feature_course li a {
  display: block;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
  background-color: #fff;
}
#top #feature .feature_content .feature_course li a .img {
  background: no-repeat center;
  background-size: cover;
}
#top #feature .feature_content .feature_course li a .img::before {
  content: "";
  display: block;
  padding-top: calc(100% * 211 / 256);
}
#top #feature .feature_content .feature_course li a .content {
  padding: 15px;
}
#top #feature .feature_content .feature_course li a .content h3 {
  position: relative;
  overflow: hidden;
  height: 36px;
  margin: 0 0 10px;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.8rem;
}
#top #feature .feature_content .feature_course li a .content h3 span {
  display: block;
}
#top #feature .feature_content .feature_course li a .content .tag {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0 10px;
  border: solid 1px #ccc;
  border-radius: 2px;
  background-color: #eee;
  color: #888;
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#top #feature .feature_content .feature_course a div.container {
  position: relative;
}
#top #feature .feature_content .feature_course li a div.container .finished_label {
  position: absolute;
  top: 2px;
  right: 2px;
  padding: 0 15px;
  background-color: #fff0f0;
  color: #ed4a4a;
  font-size: 1.6rem;
  line-height: 2rem;
  border-radius: 0 0 0 2px;
  border: solid 1px #ed4a4a;
}
#top #feature .feature_other {
  background-color: #e0e0e0;
}
#top #feature .feature_other .list_wrapper {
  max-width: 960px;
  margin: 0 auto;
}
#top #feature .feature_other .other_list {
  margin: 0 -5px;
  padding: 10px 0;
}
#top #feature .feature_other .other_list li {
  float: left;
  width: 20%;
  padding: 0 5px;
}
#top #feature .feature_other .other_list li a {
  display: block;
  overflow: hidden;
  padding: 8px 5px;
  border: solid 1px #d3d3d3;
  border-radius: 3px;
  background-color: #fff;
  font-size: 1.4rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#top #feature .feature_other .other_list .feature_link a {
  background-color: rgba(255, 255, 255, .5);
  color: #444;
  border: solid 1px #444;
  border-radius: 0;
}
#top #feature .feature_other .other_list .feature_link a:hover {
  background-color: #444;
  color: #fff;
}
#top #feature .bx-wrapper {
  position: relative;
}
#top #feature .bx-controls {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
#top #feature .bx-controls .bx-prev, #top #feature .bx-controls .bx-next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  margin: auto 0;
}
#top #feature .bx-controls .bx-prev::before, #top #feature .bx-controls .bx-next::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  border-style: solid;
  transform: rotate(45deg);
  transition: border-color .5s;
}
#top #feature .bx-controls .bx-prev {
  left: 20px;
}
#top #feature .bx-controls .bx-next {
  right: 20px;
}
#top #feature .bx-controls .bx-prev::before {
  border-width: 0 0 7px 7px;
}
#top #feature .bx-controls .bx-next::before {
  border-width: 7px 7px 0 0;
}
#top #feature .bx-controls .bx-pager {
  display: none;
}
#top #feature > #feature_slider {
  display: none !important;
}
#top #feature #feature_slider {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
#top #feature #feature_slider .slide {
  display: flex;
  width: 100%;
  align-items: center;
  float: none !important;
  padding: 16px 0;
}
#top #feature #feature_slider [data-slide="1"] {
  background-color: #81e9db;
}
#top #feature #feature_slider [data-slide="2"] {
  background-color: #91dcff;
}
#top #feature #feature_slider [data-slide="3"] {
  background-color: #ffe491;
}
#top #feature #feature_slider [data-slide="4"] {
  background-color: #ffc791;
}
#top #feature #feature_slider [data-slide="5"] {
  background-color: #ffb18f;
}
#top #feature #feature_slider [data-slide="6"] {
  background-color: #ffacaa;
}
#top #feature #feature_slider [data-slide="7"] {
  background-color: #008674;
}
#top #feature #feature_slider [data-slide="8"] {
  background-color: #006898;
}
#top #feature #feature_slider [data-slide="9"] {
  background-color: #dea700;
}
#top #feature #feature_slider [data-slide="10"] {
  background-color: #f49131;
}
#top #feature #feature_slider [data-slide="11"] {
  background-color: #f2672a;
}
#top #feature #feature_slider [data-slide="12"] {
  background-color: #d73430;
}
#top #feature #feature_slider [data-slide="1"] .feature_content .feature_read .feature_ttl, #top #feature #feature_slider [data-slide="1"] .feature_content .feature_read p, #top #feature #feature_slider [data-slide="2"] .feature_content .feature_read .feature_ttl, #top #feature #feature_slider [data-slide="2"] .feature_content .feature_read p, #top #feature #feature_slider [data-slide="3"] .feature_content .feature_read .feature_ttl, #top #feature #feature_slider [data-slide="3"] .feature_content .feature_read p, #top #feature #feature_slider [data-slide="4"] .feature_content .feature_read .feature_ttl, #top #feature #feature_slider [data-slide="4"] .feature_content .feature_read p, #top #feature #feature_slider [data-slide="5"] .feature_content .feature_read .feature_ttl, #top #feature #feature_slider [data-slide="5"] .feature_content .feature_read p, #top #feature #feature_slider [data-slide="6"] .feature_content .feature_read .feature_ttl, #top #feature #feature_slider [data-slide="6"] .feature_content .feature_read p {
  color: #4a4a4a;
}
#top #feature [data-index="1"] .bx-controls .bx-prev::before, #top #feature [data-index="1"] .bx-controls .bx-next::before, #top #feature [data-index="2"] .bx-controls .bx-prev::before, #top #feature [data-index="2"] .bx-controls .bx-next::before, #top #feature [data-index="3"] .bx-controls .bx-prev::before, #top #feature [data-index="3"] .bx-controls .bx-next::before, #top #feature [data-index="4"] .bx-controls .bx-prev::before, #top #feature [data-index="4"] .bx-controls .bx-next::before, #top #feature [data-index="5"] .bx-controls .bx-prev::before, #top #feature [data-index="5"] .bx-controls .bx-next::before, #top #feature [data-index="6"] .bx-controls .bx-prev::before, #top #feature [data-index="6"] .bx-controls .bx-next::before {
  border-color: rgba(74, 74, 74, .5);
}
#top #feature [data-index="1"] .bx-controls .bx-pager .bx-pager-item a, #top #feature [data-index="2"] .bx-controls .bx-pager .bx-pager-item a, #top #feature [data-index="3"] .bx-controls .bx-pager .bx-pager-item a, #top #feature [data-index="4"] .bx-controls .bx-pager .bx-pager-item a, #top #feature [data-index="5"] .bx-controls .bx-pager .bx-pager-item a, #top #feature [data-index="6"] .bx-controls .bx-pager .bx-pager-item a {
  border-color: #4a4a4a;
}
#top #feature [data-index="1"] .bx-controls .bx-pager .bx-pager-item a.active, #top #feature [data-index="2"] .bx-controls .bx-pager .bx-pager-item a.active, #top #feature [data-index="3"] .bx-controls .bx-pager .bx-pager-item a.active, #top #feature [data-index="4"] .bx-controls .bx-pager .bx-pager-item a.active, #top #feature [data-index="5"] .bx-controls .bx-pager .bx-pager-item a.active, #top #feature [data-index="6"] .bx-controls .bx-pager .bx-pager-item a.active {
  background-color: #4a4a4a;
}
#top #feature #feature_slider [data-slide="7"] .feature_content .feature_read .feature_ttl, #top #feature #feature_slider [data-slide="7"] .feature_content .feature_read p, #top #feature #feature_slider [data-slide="8"] .feature_content .feature_read .feature_ttl, #top #feature #feature_slider [data-slide="8"] .feature_content .feature_read p, #top #feature #feature_slider [data-slide="9"] .feature_content .feature_read .feature_ttl, #top #feature #feature_slider [data-slide="9"] .feature_content .feature_read p, #top #feature #feature_slider [data-slide="10"] .feature_content .feature_read .feature_ttl, #top #feature #feature_slider [data-slide="10"] .feature_content .feature_read p, #top #feature #feature_slider [data-slide="11"] .feature_content .feature_read .feature_ttl, #top #feature #feature_slider [data-slide="11"] .feature_content .feature_read p, #top #feature #feature_slider [data-slide="12"] .feature_content .feature_read .feature_ttl, #top #feature #feature_slider [data-slide="12"] .feature_content .feature_read p {
  color: #fff;
}
#top #feature [data-index="7"] .bx-controls .bx-prev::before, #top #feature [data-index="7"] .bx-controls .bx-next::before, #top #feature [data-index="8"] .bx-controls .bx-prev::before, #top #feature [data-index="8"] .bx-controls .bx-next::before, #top #feature [data-index="9"] .bx-controls .bx-prev::before, #top #feature [data-index="9"] .bx-controls .bx-next::before, #top #feature [data-index="10"] .bx-controls .bx-prev::before, #top #feature [data-index="10"] .bx-controls .bx-next::before, #top #feature [data-index="11"] .bx-controls .bx-prev::before, #top #feature [data-index="11"] .bx-controls .bx-next::before, #top #feature [data-index="12"] .bx-controls .bx-prev::before, #top #feature [data-index="12"] .bx-controls .bx-next::before {
  border-color: rgba(255, 255, 255, .5);
}
#top #feature [data-index="7"] .bx-controls .bx-pager .bx-pager-item a, #top #feature [data-index="8"] .bx-controls .bx-pager .bx-pager-item a, #top #feature [data-index="9"] .bx-controls .bx-pager .bx-pager-item a, #top #feature [data-index="10"] .bx-controls .bx-pager .bx-pager-item a, #top #feature [data-index="11"] .bx-controls .bx-pager .bx-pager-item a, #top #feature [data-index="12"] .bx-controls .bx-pager .bx-pager-item a {
  border-color: #fff;
}
#top #feature [data-index="7"] .bx-controls .bx-pager .bx-pager-item a.active, #top #feature [data-index="8"] .bx-controls .bx-pager .bx-pager-item a.active, #top #feature [data-index="9"] .bx-controls .bx-pager .bx-pager-item a.active, #top #feature [data-index="10"] .bx-controls .bx-pager .bx-pager-item a.active, #top #feature [data-index="11"] .bx-controls .bx-pager .bx-pager-item a.active, #top #feature [data-index="12"] .bx-controls .bx-pager .bx-pager-item a.active {
  background-color: #fff;
}
#top .bottom_content section {
  margin-bottom: 80px;
}
#top #recommend {
  width: 100%;
}
#top #news {
  position: relative;
  width: 66.882%;
}
#top #news .btn_02 {
  position: absolute;
  top: -12px;
  right: 0;
  border-color: #008924;
  color: #008924;
}
#top #news .btn_02:hover {
  background-color: #008924;
  color: #fff;
}
#top #info {
  width: 27.676%;
}
#top #info .btn_list {
  margin-bottom: 20px;
}
#top #info .btn_list li {
  margin-bottom: 10px;
}
#top #info .btn_list li:last-child {
  margin-bottom: 0;
}
#top #info .btn_list li .btn_02 {
  display: block;
  width: 100%;
  padding: 7px 20px;
  border-color: #6cd187;
  border-radius: 21px;
  font-weight: bold;
  text-align: left;
}
#top #info .btn_list li .btn_02:hover {
  background-color: #6cd187;
  color: #fff;
}
#top #info .btn_list .btn_02::after {
  border-color: #008924;
}
#top #info .link_list {
  margin-bottom: 20px;
}
#top #info .link_list li {
  margin-bottom: 8px;
}
#top #info .link_list li:last-child {
  margin-bottom: 0;
}
#top #info .banner_list li {
  margin-bottom: 10px;
}
#top #info .banner_list li:last-child {
  margin-bottom: 0;
}
#top #info .banner_list li img {
  width: 100%;
}
#top .sns_wrapper {
  transition: opacity .2s, visibility .2s;
}
#top .sns_wrapper.hide {
  visibility: hidden;
  opacity: 0;
}
#top .sns_wrapper .sns {
  position: fixed;
  top: 0;
  right: 20px;
  bottom: 0;
  z-index: 3000;
  height: 163px;
  margin: auto 0;
}
#top .sns_wrapper .sns li {
  margin-bottom: 20px;
}
#top .sns_wrapper .sns li:last-child {
  margin-bottom: 0;
}
#top .index_search {
  margin-top: -10px;
  padding: 50px 0;
  background: no-repeat center;
  background-size: cover;
}
#top .index_search .search {
  width: auto !important;
  max-width: 800px;
  margin: 0 auto;
  padding: 35px 70px 20px;
  background: rgba(0, 0, 0, .35);
  box-shadow: none;
}
#top .index_search .search::before {
  content: none;
}
#top .index_search .search .search_ttl .top_ttl {
  color: #fff;
}
#top .index_search .search .search_ttl .top_ttl::before {
  background-color: #e0e0e0;
}
#top .index_search .search .search_sub_ttl {
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-shadow: none;
}
#top .index_search .search .btn_wrapper {
  text-align: right;
}
#top .index_search .search .category_btn {
  color: #fff;
  font-size: 1.6rem;
  font-weight: normal;
  text-shadow: none;
}
#top .index_search .search .category_btn::before {
  content: none;
}
#top .index_search .search .category_btn::after {
  border-color: #fff;
}
#top .index_room {
  margin-top: 45px;
  font-size: 1.6rem;
}
#top .index_room h2 {
  margin: 0 0 15px;
  font-size: 1.8rem;
}
#top .index_room .room_list {
  position: relative;
  margin-bottom: -10px;
}
#top .index_room .room_list > li {
  float: left;
  width: 11.624%;
  margin: 0 1.015% 10px 0;
}
#top .index_room .room_list > li.communication {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 0;
}
#top .index_room .room_list > li a {
  display: block;
  padding: 5px 0;
  background-color: #ffe5ca;
  text-align: center;
  border: solid 1px #ff7901;
  border-radius: 18px;
  transition: background-color .2s, color .2s;
}
#top .index_room .room_list > li.communication a {
  padding: 28px 0;
}
#top .index_room .room_list > li a:hover {
  background-color: #ff7901;
  color: #fff;
  opacity: 1;
}
#top .index_room .sp_room_btn {
  display: none;
}
#top .index_banner {
  margin-top: 40px;
}
#top .index_banner .banner_list {
  margin: 0 auto;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
#top .index_banner .banner_list li {
  display: inline-block;
  width: 23.986%;
  margin: 0 1.292% 0 0;
}
#top .index_banner .banner_list li:last-child {
  margin-right: 0;
}
#top .sns_wrapper .index_sns {
  display: none;
}

/* ---------- お知らせ一覧 ---------- */
#news .page_nav {
  margin-top: 80px;
}

/* ---------- お知らせ詳細 ---------- */
#news_detail h1.detail_ttl {
  color: #444;
}
#news_detail .date {
  margin: -15px 0 10px;
  font-size: 1.4rem;
  text-align: right;
}
#news_detail .relation {
  margin-top: 25px;
  border-top: solid 1px #e0e0e0;
}
#news_detail .relation .relation_list {
  margin-bottom: -5px;
}
#news_detail .relation .relation_list li {
  float: left;
  width: 50%;
}

/* ---------- カテゴリー一覧 ---------- */
#genrelist .genre_list > li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: dotted 1px #bfbfbf;
}
#genrelist .genre_list > li h2 {
  margin: 0 0 15px;
  font-weight: bold;
  font-size: 1.8rem;
}
#genrelist .genre_list > li h2 a {
  text-decoration: underline;
}
#genrelist .genre_list > li .genre_sub_list {
  margin-bottom: -5px;
}
#genrelist .genre_list > li .genre_sub_list li {
  float: left;
  width: 33.3%;
  margin-bottom: 5px;
  padding: 0 10px 0 20px;
}
#genrelist .genre_list > li .genre_sub_list li a {
  position: relative;
}
#genrelist .genre_list > li .genre_sub_list li a::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  left: -20px;
  width: 8px;
  height: 8px;
  border: solid #008924;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

/* ---------- 講座検索 ---------- */
#course_search .course_form {
  max-width: 654px;
  margin: -10px auto 0;
  padding-top: 10px;
}
#course_search .checkbox_list {
  margin: 0 -15px -8px 0;
}
#course_search .checkbox_list li {
  float: left;
  margin: 0 25px 8px 0;
}
#course_search .word .field {
  width: 100%;
  padding-left: 45px;
  background: url(../img/search_ico.png) no-repeat center left 15px;
  background-size: 20px;
}
#course_search .word .note {
  margin: 8px 0 0;
}
#course_search .category .category_select {
  width: 48.93%;
}
#course_search .category .category_select:nth-child(1) {
  float: left;
}
#course_search .category .category_select:nth-child(2) {
  float: right;
}
#course_search .term table {
  table-layout: fixed;
  width: 100%;
}
#course_search .term th, #course_search .term td {
  padding-bottom: 12px;
}
#course_search .term th {
  width: 36.7%;
  padding-right: 10px;
  font-weight: normal;
  text-align: left;
}
#course_search .term .week .checkbox_list, #course_search .term .time .checkbox_list {
  margin-right: -15px;
}
#course_search .term .week .checkbox_list li, #course_search .term .time .checkbox_list li {
  margin-right: 18px;
}
#course_search .other th {
  display: none;
}
#course_search .btn_wrapper {
  margin-top: 40px;
  text-align: center;
}
#course_search .btn_wrapper .submit_btn {
  width: 200px;
  padding: 0 15px;
  border-bottom-color: #006a1c;
  background-color: #008924;
  color: #fff;
  font-size: 2rem;
  line-height: 4.5rem;
}
#course_search .btn_wrapper .submit_result_btn {
  border-bottom-color: #c26715;
  background-color: #ff7901;
}
#course_search .course_search_tab {
  position: relative;
  margin: 45px 0 40px;
  padding-top: 10px;
}
#course_search .course_search_tab::before {
  content: "";
  position: absolute;
  top: 55px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #008924;
}
#course_search .course_search_tab .tab_list {
  display: flex;
  margin: 0 -15px;
  padding-bottom: 12px;
}
#course_search .course_search_tab .tab_list::before, #course_search .course_search_tab .tab_list::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 12px;
}
#course_search .course_search_tab .tab_list li {
  width: 78px;
  padding: 12px 3px 0;
}
#course_search .course_search_tab .tab_list li a {
  display: block;
  position: relative;
  padding: 4px 5px;
  background-color: #fff;
  font-size: 1.4rem;
  text-align: center;
  border: solid 1px #008924;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}
#course_search .course_search_tab .tab_list li a:not([href]):hover {
  opacity: 1;
}
#course_search .course_search_tab .tab_list li.active {
  padding-top: 0;
}
#course_search .course_search_tab .tab_list li.active a {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #008924;
  color: #fff;
  font-size: 1.8rem;
}
#course_search .course_search_tab .tab_list li.active a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 12px;
  width: 18px;
  margin: 0 auto;
  border: solid transparent;
  border-width: 12px 9px 0;
  border-top-color: #008924;
}
#course_search .course_search_tab .tab_list li.none a {
  background-color: #eee;
  color: #aaa;
  border-color: #d3d3d3;
}
#course_search .course_result .course_result_ttl {
  margin: 0;
  font-size: 2rem;
  text-align: center;
}
#course_search .course_result .page_number {
  margin: 30px 0 20px;
  text-align: center;
}
#course_search .course_result .course_result_list {
  margin: 50px 0;
}
#course_search .course_result .course_result_list > li {
  margin-bottom: 20px;
  padding: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
}
#course_search .course_result .course_result_list > li:last-child {
  margin-bottom: 0;
}
#course_search .course_result .course_result_list > li .course_ttl {
  display: table;
  position: relative;
  width: 100%;
  height: 60px;
  margin-bottom: 4px;
  padding: 5px 180px 5px 134px;
  background-color: #e0f4de;
}
#course_search .course_result .course_result_list > li .course_ttl .room {
  position: absolute;
  top: 15px;
  left: 24px;
  width: 84px;
  padding: 2px 10px;
  background-color: #eafbe8;
  color: #008924;
  text-align: center;
  border: solid 1px #6cd187;
  border-radius: 15px;
}
#course_search .course_result .course_result_list > li .course_ttl .ttl {
  display: table-cell;
  margin: 0;
  font-size: 1.8rem;
  vertical-align: middle;
}
#course_search .course_result .course_result_list > li .course_ttl .ttl .main {
  display: block;
}
#course_search .course_result .course_result_list > li .course_ttl .ttl .sub {
  display: block;
  font-size: 1.4rem;
  line-height: 2.2rem;
}
#course_search .course_result .course_result_list > li .course_ttl .detail_btn {
  position: absolute;
  top: 12px;
  right: 20px;
  width: 100%;
  max-width: 148px;
  text-align: center;
}
#course_search .course_result .course_result_list > li .content {
  position: relative;
  padding: 16px;
}
#course_search .course_result .course_result_list > li .content .img {
  width: 100px;
  float: left;
}
#course_search .course_result .course_result_list > li .content .img .img_inner {
  margin: 0 auto;
  background: no-repeat center;
  background-size: contain;
}
#course_search .course_result .course_result_list > li .content .img .img_inner::before {
  content: "";
  display: block;
  padding-top: 100%;
}
#course_search .course_result .course_result_list > li .content .txt_wrapper {
  width: calc(100% - 120px);
  float: right;
}
#course_search .course_result .course_result_list > li .content .txt_wrapper .info {
  margin: 0;
  font-size: 1.4rem;
  line-height: 2rem;
}
#course_search .course_result .course_result_list > li .content .txt_wrapper .info dt {
  width: 70px;
  font-weight: bold;
  float: left;
}
#course_search .course_result .course_result_list > li .content .txt_wrapper .info dd {
  width: calc(100% - 70px);
  margin-left: 0;
  float: left;
}
#course_search .course_result .course_result_list > li .content .txt_wrapper .info dd .lecturer {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#course_search .course_result .course_result_list > li .content .txt_wrapper .tag_list {
  margin: 14px -10px -10px 0;
}
#course_search .course_result .course_result_list > li .content .txt_wrapper .tag_list .tag {
  float: left;
  margin: 0 10px 10px 0;
  padding: 2px 10px;
  border: solid 1px;
  border-radius: 3px;
  background-color: #fff;
  font-size: 1.2rem;
  line-height: 2rem;
}
#course_search .course_result .course_result_list > li .content .txt_wrapper .tag_list .tag_01 {
  color: #df6123;
}
#course_search .course_result .course_result_list > li .content .txt_wrapper .tag_list .tag_02 {
  color: #4894ea;
}
#course_search .course_result .course_result_list > li .content .status {
  position: absolute;
  top: 14px;
  right: 20px;
  padding: 0 20px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 2.6rem;
  border-radius: 3px;
}
#course_search .course_result .course_result_list > li .content .status_01 {
  background-color: #5985d6;
}
#course_search .course_result .course_result_list > li .content .status_02 {
  background-color: #f66868;
}
#course_search .course_result .course_result_list > li .content .status_03 {
  background-color: #eea700;
}
#course_search .course_result .course_result_list > li .content .status_04 {
  background-color: #1aa9b6;
}
#course_search .course_result .course_result_list > li .content .status_05 {
  background-color: #b7b7b7;
}
#course_search .course_result .course_result_list > li .content .status_06 {
  background-color: #f0acac;
}
#course_search .form_btn {
  margin: 25px 0 0;
  text-align: center;
}
#course_search .form_btn a {
  position: relative;
  padding-right: 20px;
  font-size: 1.6rem;
  text-decoration: underline;
}
#course_search .form_btn a::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  width: 12px;
  height: 7px;
  margin: auto 0;
  border: solid transparent;
  border-bottom-color: #888;
  border-width: 0 6px 7px;
}

/* ---------- 講座詳細 ---------- */
#course_detail #wrapper {
  padding-bottom: 86px;
}
#course_detail .course_ttl {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
  padding: 20px 240px 20px 20px;
  background-color: #e0f4de;
}
#course_detail .course_ttl .course_ttl_inner {
  width: 100%;
}
#course_detail .course_ttl .tag_list {
  margin-right: -10px;
}
#course_detail .course_ttl .tag_list .tag {
  float: left;
  margin: 0 10px 10px 0;
  padding: 2px 10px;
  border: solid 1px;
  border-radius: 3px;
  background-color: #fff;
  font-size: 1.2rem;
  line-height: 2rem;
}
#course_detail .course_ttl .tag_list .tag_01 {
  color: #df6123;
}
#course_detail .course_ttl .tag_list .tag_02 {
  color: #4894ea;
}
#course_detail .course_ttl h1 {
  margin: 0;
}
#course_detail .course_ttl h1 span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#course_detail .course_ttl h1 .main {
  font-size: 2.6rem;
  line-height: 3.2rem;
}
#course_detail .course_ttl h1 .sub {
  margin-top: 2px;
  font-size: 2rem;
  line-height: 2.6rem;
}
#course_detail .course_ttl .share {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
}
#course_detail .entry_content .txt {
  position: relative;
  transition: padding-bottom .4s;
}
#course_detail .entry_content .txt.open {
  padding-bottom: 68px;
}
#course_detail .entry_content .txt_hide {
  height: 0;
  overflow: hidden;
}
#course_detail .entry_content .txt.continue:not(.open) .txt_hide {
  height: 440px !important;
}
#course_detail .entry_content .continue_btn {
  display: none;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  transition: height .4s, bottom .4s;
}
#course_detail .entry_content .continue .continue_btn {
  display: block;
}
#course_detail .entry_content .open .continue_btn {
  height: 48px;
}
#course_detail .entry_content .continue_btn .btn_02 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 415px;
  margin: 0 auto;
  padding: 11px 25px;
  border-width: 1px;
  color: #444;
  font-size: 1.6rem;
  text-decoration: none;
}
#course_detail .entry_content .open .continue_btn .btn_02 {
  max-width: 180px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 1.4rem;
}
#course_detail .entry_content .continue_btn .btn_02:hover {
  color: #fff;
}
#course_detail .entry_content .continue_btn .btn_02::after {
  top: -2px;
  right: 20px;
  border-width: 0 2px 2px 0;
}
#course_detail .entry_content .open .continue_btn .btn_02::after {
  top: 2px;
  border-width: 2px 0 0 2px;
}
#course_detail .entry_content .lecturer {
  position: relative;
  margin: 5px 0 35px;
}
#course_detail .entry_content .lecturer .lecturer_list li {
  overflow: hidden;
  margin-bottom: 2px;
  padding-right: 110px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#course_detail .entry_content .lecturer .hide .lecturer_list {
  display: none;
}
#course_detail .entry_content .lecturer .all_btn {
  display: inline-block;
  position: relative;
  margin-top: 5px;
  padding-left: 20px;
  color: #444;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
#course_detail .entry_content .lecturer .all_btn::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 4px;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border: solid #008924;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
#course_detail .entry_content .lecturer .open .all_btn::before {
  top: 10px;
  border-width: 2px 0 0 2px;
}
#course_detail .entry_content .lecturer .detail_btn {
  position: absolute;
  top: 0;
  right: 0;
  padding-left: 20px;
  background: url(../img/course_detail_detail.png) no-repeat center left 0;
  background-size: 14px;
  color: #444;
}
#course_detail .entry {
  margin-top: 60px;
  text-align: center;
}
#course_detail .entry .txt {
  margin: 0 0 15px;
  color: #ff0101;
}
#course_detail .entry .entry_btn {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  font-size: 2.2rem;
}
#course_detail .entry .entry_txt {
  display: inline-block;
  width: 100%;
  padding: 20px 15px;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 4px;
}
#course_detail .entry .entry_btn img, #course_detail .entry .entry_txt img {
  margin: -4px 4px 0;
  vertical-align: middle;
}
#course_detail .warning {
  margin-top: 60px;
  padding: 20px 30px;
  background-color: #fff2dd;
}
#course_detail .warning h3 {
  margin: 0 0 10px;
  padding-left: 30px;
  background: url(../img/course_detail_warning.png) no-repeat center left 0;
  background-size: 22px;
  color: #ff0101;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
#course_detail .warning .txt {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
#course_detail .warning a {
  color: #03c;
  text-decoration: underline;
}
#course_detail .detail {
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
#course_detail .detail dl {
  display: table;
  table-layout: fixed;
  float: left;
  width: 100%;
  margin: 0 0 15px;
  padding-bottom: 15px;
  border-bottom: solid 1px #e0e0e0;
}
#course_detail .detail dl:nth-child(2), #course_detail .detail dl:nth-child(3) {
  width: 50%;
}
#course_detail .detail dl:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#course_detail .detail dt, #course_detail .detail dd {
  display: table-cell;
}
#course_detail .detail dt {
  width: 180px;
  font-weight: bold;
}
#course_detail .detail dt span {
  display: block;
  padding-left: 15px;
  border-left: solid 4px;
}
#course_detail .detail_01 dt span {
  border-color: #ff7901;
}
#course_detail .detail_02 dt span {
  border-color: #14a83b;
}
#course_detail .detail_03 dt span {
  border-color: #666;
}
#course_detail .detail dd {
  margin-left: 0;
}
#course_detail .detail dd a {
  color: #03c;
  text-decoration: underline;
}
#course_detail .ads {
  margin-top: 40px;
}
#course_detail .ads .ads_list > li {
  margin-bottom: 5px;
}
#course_detail .ads .ads_list > li::before {
  content: "PR";
  margin-right: 10px;
  padding: 1px 5px;
  background-color: #ff7901;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  vertical-align: middle;
}
#course_detail .ads .ads_list > li > a {
  color: #03c;
  text-decoration: underline;
}
#course_detail .recommend {
  padding-bottom: 35px;
  border-bottom: solid 1px #e0e0e0;
}
#course_detail .recommend .recommend_ttl {
  position: relative;
  margin: 45px 0 30px;
  padding-bottom: 15px;
  color: #008924;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 2.6rem;
}
#course_detail .recommend .recommend_ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #e0e0e0;
}
#course_detail .recommend .recommend_list {
  margin: 0 -10px -15px 0;
}
#course_detail .recommend .recommend_list li {
  float: left;
  width: 16.6%;
  margin-bottom: 15px;
  padding: 0 10px;
}
#course_detail .recommend .recommend_list li a {
  display: block;
  position: relative;
}
#course_detail .recommend .recommend_list li a .room {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 70px;
  margin: 0;
  padding: 0 5px;
  border-radius: 2px;
  background-color: rgba(153, 153, 153, .8);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-align: center;
}
#course_detail .recommend .recommend_list li a .img {
  margin-bottom: 5px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
  background: no-repeat center;
  background-size: cover;
}
#course_detail .recommend .recommend_list li a .img::before {
  content: "";
  display: block;
  padding-top: calc(100% * 211 / 256);
}
#course_detail .recommend .recommend_list li a h3 {
  margin: 0;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 2rem;
}
#course_detail .lecturer_detail a {
  color: #03c;
  text-decoration: underline;
}
#course_detail .lecturer_detail .h2 {
  font-size: 1.8rem;
}
#course_detail .lecturer_detail .lecturer_list {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
#course_detail .lecturer_detail .lecturer_list dt {
  margin-bottom: 2px;
  font-weight: bold;
}
#course_detail .lecturer_detail .lecturer_list dd {
  margin: 0 0 25px;
}
#course_detail .entry_footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 4000;
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, .2);
  text-align: center;
  transition: opacity .2s, visibility .2s;
}
#course_detail .entry_footer.show {
  display: block;
}
#course_detail .entry_footer.hide {
  visibility: hidden;
  opacity: 0;
}
#course_detail .entry_footer {
  height: 86px;
}
#course_detail .entry_footer .entry_btn {
  width: 100%;
  max-width: 276px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  font-size: 2.2rem;
}
#course_detail .entry_footer .entry_txt {
  display: inline-block;
  width: 100%;
  max-width: 426px;
  padding: 20px 15px;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 4px;
}
#course_detail .entry_footer .entry_btn img, #course_detail .entry_footer .entry_txt img {
  margin: -4px 4px 0;
  vertical-align: middle;
}
#course_detail .print_btn{
  margin-top: 30px;
  text-align: right;
}
#course_detail .print_btn button {
  padding: 6px 40px 6px 20px;
  background: url(../img/print_ico.png) no-repeat center right 15px #f4f4f4;
  font-size: 1.4rem;
  border: solid 1px #c2c2c2;
  border-radius: 4px;
  cursor: pointer;
}
#course_detail .entry_btn_01 {
  border-bottom-color: #c26715;
  background-color: #ff7901;
}
#course_detail .entry_btn_02 {
  border-bottom-color: #ba860c;
  background-color: #eea700;
}
#course_detail .entry_txt_01 {
  background-color: #5985d6;
}
#course_detail .entry_txt_02 {
  background-color: #1aa9b6;
}
#course_detail .entry_txt_03 {
  background-color: #f66868;
}
#course_detail .entry_txt_04 {
  background-color: #b7b7b7;
}
#course_detail .entry_btn_01, #course_detail .entry_btn_02, #course_detail .entry_txt_01 {
  max-width: 276px;
}
#course_detail .entry_txt_02, #course_detail .entry_txt_03, #course_detail .entry_txt_04 {
  max-width: 426px;
}
/* 講座詳細 - 印刷 */
@media print {
#course_detail #wrapper {
  display: none;
}
#course_detail #print {
  -webkit-print-color-adjust: exact;
  display: block;
  font-size: 1.4rem;
  line-height: 2rem;
}
#course_detail #print .print_header {
  margin: 10px 0 20px;
  overflow: hidden;
}
#course_detail #print .print_header .logo {
  width: 160px;
  float: left;
}
#course_detail #print .print_header .room_name {
  display: block;
  float: left;
  margin: 8px 0 0 10px;
  padding: 0 10px;
  border-radius: 16px;
  background-color: #008924 !important;
  color: #fff;
  font-size: 1.2rem;
  line-height: 2rem;
}
#course_detail #print .print_header .tel {
  float: right;
}
#course_detail #print .print_header .tel .number {
  float: left;
  width: 180px;
  margin-top: 4px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 2.6rem;
}
#course_detail #print .print_header .tel .number a {
  color: #ff7901;
  font-family: Arial, sans-serif;
  pointer-events: none;
}
#course_detail #print .print_header .tel .txt {
  float: right;
  margin: 0 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
#course_detail #print .print_table {
  padding: 12px 15px;
  border: solid 1px #ccc;
}
#course_detail #print .print_table th, #course_detail #print .print_table td {
  padding: 12px 15px;
  border: solid 1px #ccc;
}
#course_detail #print .print_table th {
  vertical-align: top;
  white-space: nowrap;
}
#course_detail #print .print_img {
  float: right;
  width: 120px;
  margin: 0 0 20px 20px;
}
}

/* ---------- 特集一覧 ---------- */
#special .search {
  margin-bottom: 60px;
}
#special .search .search_ttl {
  margin: 40px 0 20px;
  padding: 6px 0 6px 12px;
  border-left: solid 4px #14a83b;
  background-color: #eee;
  color: #008924;
  font-size: 2rem;
  line-height: 2.6rem;
}
#special .search .checkbox_list {
  max-width: 660px;
  margin: 40px auto 0;
}
#special .search .checkbox_list li {
  float: left;
  margin: 0 25px 8px 0;
}
#special .search .btn_wrapper {
  margin-top: 30px;
  text-align: center;
}
#special .search .btn_wrapper .submit_btn {
  width: 100%;
  max-width: 200px;
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 2rem;
}
#special .special_list {
  padding-top: 30px;
  border-top: solid 1px #e0e0e0;
}
#special .special_list.room {
  padding-top: 0;
  border-top: none;
}
#special .special_list > li {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #e0e0e0;
}
#special .special_list.room > li {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#special .special_list > li .h3 {
  margin-top: 0;
}
#special .special_list > li .special_sub_list {
  margin-bottom: -10px;
}
#special .special_list > li .special_sub_list li {
  float: left;
  width: 50%;
  margin-bottom: 10px;
  padding: 0 10px 0 20px;
}
#special .special_list > li .special_sub_list li a {
  position: relative;
}
#special .special_list > li .special_sub_list li a::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  left: -20px;
  width: 8px;
  height: 8px;
  border: solid #008924;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

/* ---------- 特集詳細 ---------- */
#special_detail .special_ttl {
  position: relative;
}
#special_detail .special_ttl h1 {
  padding-right: 220px;
}
#special_detail .special_ttl h1.detail_ttl {
  color: #444;
}
#special_detail .special_ttl .share {
  position: absolute;
  top: -10px;
  right: 0;
  background-color: #f7f7f7;
}
#special_detail .info .ttl {
  color: #fe3131;
  font-weight: bold;
}
#special_detail .info .room {
  padding: 30px;
  background-color: #fff5de;
}
#special_detail .info .room .room_list li {
  margin-bottom: 10px;
}
#special_detail .info .room .room_list li:last-child {
  margin-bottom: 0;
}
#special_detail .course {
  margin-top: 20px;
}

/* ---------- 404 ---------- */
#notfound p {
  margin: 0;
}
#notfound .btn_wrapper {
  margin-top: 40px;
  text-align: center;
}

/* ---------- モーダル ---------- */
.modal_wrapper {
  display: none;
}
.modal {
  display: table;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8000;
  visibility: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .2s, visibility .2s;
}
.modal.open {
  visibility: visible;
  opacity: 1;
}
.modal .modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}
.modal .modal_inner {
  display: table-cell;
  position: relative;
  z-index: 1;
  text-align: center;
  vertical-align: middle;
  pointer-events: none;
}
.modal .modal_content {
  display: inline-block;
  position: relative;
  max-height: calc(100vh -  40px);
  padding: 10px;
  border-radius: 5px;
  background-color: #fff;
  text-align: left;
  pointer-events: auto;
}
.modal .modal_content .modal_ttl {
  margin: 0;
  padding: 12px 15px;
  background-color: #e3e3e3;
  font-size: 1.8rem;
}
.modal .modal_content .modal_close {
  position: absolute;
  top: -10px;
  right: -10px;
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  text-indent: 100%;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity .2s;
}
.modal .modal_content .modal_close::before, .modal .modal_content .modal_close::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  margin: auto;
  background-color: #008924;
}
.modal .modal_content .modal_close::before {
  transform: rotate(45deg);
}
.modal .modal_content .modal_close::after {
  transform: rotate(-45deg);
}
.modal .modal_content .modal_close:hover {
  opacity: .6;
}
/* モーダル - 全国TOP 教室リンク */
#room_link.modal .modal_ttl {
  background-color: #ffe5ca;
}
#room_link.modal .modal_room_linnk li {
  float: left;
  width: 50%;
  border-bottom: solid 1px #ff7901;
}
#room_link.modal .modal_room_linnk li.communication {
  width: 100%;
  border-right: none !important;
}
#room_link.modal .modal_room_linnk li:nth-child(2n+1) {
  border-right: solid 1px #ff7901;
}
#room_link.modal .modal_room_linnk li a {
  display: block;
  position: relative;
  padding: 15px;
  text-align: center;
}
#room_link.modal .modal_room_linnk li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border: solid #999;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
#room_link.modal .modal_content .modal_close::before, #room_link.modal .modal_content .modal_close::after {
  background-color: #666;
}
/* モーダル - フッターリンク */
#footer_link.modal .modal_footer_linnk li {
  float: left;
  width: 50%;
  border-bottom: solid 1px #e0e0e0;
}
#footer_link.modal .modal_footer_linnk li.communication {
  width: 100%;
  border-right: none !important;
}
#footer_link.modal .modal_footer_linnk li:nth-child(2n+1) {
  border-right: solid 1px #e0e0e0;
}
#footer_link.modal .modal_footer_linnk li a {
  display: block;
  position: relative;
  padding: 15px;
  text-align: center;
}
#footer_link.modal .modal_footer_linnk li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border: solid #999;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
/* モーダル - TOP 初めての方へ */
#beginner.modal .modal_ttl {
  position: relative;
  padding-left: 60px;
}
#beginner.modal .modal_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 36px;
  height: 36px;
  margin: auto 0;
  border-radius: 18px;
  background: url(../img/beginner_ttl_ico.png) no-repeat center #008924;
}
#beginner.modal .btn_list {
  padding: 20px;
}
#beginner.modal .btn_list .btn_01 {
  width: 100%;
  margin-bottom: 10px;
  padding: 15px 15px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
#beginner.modal .btn_list .btn_01:last-child {
  margin-bottom: 0;
}
#beginner.modal .btn_list .btn_01.register_btn {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
#beginner.modal .btn_list .btn_01.register_btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  background: no-repeat center;
  background-image: url(../img/user_register_ico.png);
  text-align: center;
  vertical-align: middle;
}
/* モーダル - 講座検索 教室タブ */
#search_room.modal .modal_room_linnk_wrapper {
  padding: 10px;
}
#search_room.modal .modal_room_linnk {
  margin: 0 -3px -8px;
}
#search_room.modal .modal_room_linnk li {
  width: 33.333%;
  margin-bottom: 8px;
  padding: 0 3px;
  float: left;
}
#search_room.modal .modal_room_linnk li a {
  display: block;
  position: relative;
  padding: 4px 10px;
  background-color: #fff;
  font-size: 1.4rem;
  text-align: center;
  border: solid 1px #008924;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}
#search_room.modal .modal_room_linnk li a {
  border-bottom: solid 1px #008924;
  border-radius: 3px;
}
#search_room.modal .modal_room_linnk li.active a {
  background-color: #008924;
  color: #fff;
  font-size: 1.6rem;
}
#search_room.modal .modal_room_linnk li.none a {
  background-color: #eee;
  color: #aaa;
  border-color: #d3d3d3;
}
#search_room.modal .modal_room_linnk li.active a:hover, #search_room.modal .modal_room_linnk li.none a:hover {
  opacity: 1;
}
/* モーダル - 講座詳細 画像拡大 */
.modal #img_zoom_modal .modal_img {
  max-height: calc(100vh - 60px);
}

@media screen and (min-width:768px) {
/* ---------- モーダル ---------- */
body.modal_pc {
  overflow: hidden;
}
body.modal_sp .modal {
  display: none;
}
}

@media screen and (max-width:1199px) {
/* ---------- TOP ---------- */
#top .sns_wrapper .sns {
  display: none;
}
}
