@charset "UTF-8";

/*ロードアニメーション*/
.loadingAnim{
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.loadingAnim:before,
.loadingAnim:after{
  line-height: 1;
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  margin-right: auto;
  margin-left: auto;
  content: ' ';
  transition: all .3s cubic-bezier(.785, .135, .15, .86) 0s;
  transition-delay: .3s;
  background-color: rgba(255,255,255,0.4);

}
.loadingAnim:before{
  top: 0;
}
.loadingAnim:after{
  bottom: 0;
}

.loaded .loadingAnim:before{
  height: 0;
  -webkit-transform: translateY(-1%);
  -ms-transform: translateY(-1%);
  transform: translateY(-1%);
}
.loaded .loadingAnim:after{
  height: 0;
  -webkit-transform: translateY(1%);
  -ms-transform: translateY(1%);
  transform: translateY(1%);
}

.loadingAnim_line{
  line-height: 1;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 150px;
  height: 1.25em;
  margin: auto;
  transition: all .3s cubic-bezier(.785, .135, .15, .86) 0s;
  transition-delay: .6s;
  text-align: center;
}
.loadingAnim_line:after{
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto  auto auto 0;
  content: ' ';
  -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  background-color: red;
  will-change: transform, width;
}
.loadingAnim_line:before{
  font-family: 'Poppins', sans-serif;
  font-size: 1.25em;
  font-weight: bold;
  font-style: normal;
  line-height: 1;
  display: block;
  content: '|||||';
  -webkit-animation: loadingAnim_text 1s ease .1s infinite alternate both;
  animation: loadingAnim_text 1s ease .1s infinite alternate both;
  letter-spacing: .5em;
  color: #fff;
  will-change: opacity;
}
.loaded .loadingAnim_line{
  overflow: hidden;
  height: 0;
}
.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before{
  -webkit-animation: none;
  animation: none;
}
.loaded .loadingAnim_line:before{
  content: 'LOADED!';
}

@-webkit-keyframes loadingAnim{
  0%{
    width: 0;
  }
  100%{
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@keyframes loadingAnim{
  0%{
    width: 0;
  }
  100%{
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@-webkit-keyframes loadingAnim_text{
  0%{
    opacity: 1;
    color: #cba166;
  }
  50%{
    color: #333;

  }
  100%{
    opacity: .5;
    color: #fff;
  }
}
@keyframes loadingAnim_text{
  0%{
    opacity: 1;
    color: #cba166;
  }
  50%{
    color: #333;
  }
  100%{
    opacity: .5;
    color: #fff;
  }
}
/*ロードアニメーション*/

/*トグルナビゲーション*/

#gnavi {
  margin:0;
  padding: 0;
}

#gnavi:after {
  content:"";
  display:table;
  clear:both;
}

#gnavi ul {
  float: left;
  padding:0;
  margin:0;
  list-style: none;
  position: relative;
  z-index: 10;
}

#gnavi ul#menu-head-menu li.menu-item {
  margin: 0px;
  display:inline-block;
  float: left;
  background-color: #275e9d;
}

#gnavi ul#menu-head-menu li.menu-item a {
  display:block;
  padding:28px 20px;
  color:#FFF;
  font-size:16px;
  text-decoration:none;
  border-radius:0px;
}

#gnavi ul#menu-head-menu li.menu-item a:hover,#gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item a:hover,#gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item ul.sub-menu li.menu-item a:hover { color:#275e9d; background: #fff; }


#gnavi ul#menu-head-menu li.menu-item ul.sub-menu {
  display: none;
  position: absolute;
  /* has to be the same number as the "line-height" of "a" */
  top: 80px;
}

/* Display Dropdowns on Hover */
#gnavi ul#menu-head-menu li.menu-item:hover > ul.sub-menu {

  display:inherit;
}

#gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item a{
  padding:28px 18px;
}
/* Fisrt Tier Dropdown */
#gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item {
  width:200px;
  float:none;
  display:list-item;
  position: relative;
}

#gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item ul.sub-menu li.menu-item{
  position: relative;
  top:-80px;
  /* has to be the same number as the "width" of "nav ul ul li" */
  left:200px;
}

/* Change ' ▼' in order to change the Dropdown symbol */
#gnavi ul#menu-head-menu li.menu-item > a:after { content:  ' ▼'; }
#gnavi ul#menu-head-menu li.menu-item > a:only-child:after { content: ''; }

#gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item a{
  background-color: #0e4989;
}

#gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item ul.sub-menu li.menu-item a{
  background-color: #003575;
}

/*トグルナビゲーション*/




/*一般設定*/
body{
  line-height: 1.8;
  word-wrap: break-word;
}
h2{
  font-size: 20px;
  margin-top: 15px;
}

.bkg-white{
  width: 100%;
  background: #fff;
}
.posts-lists-link{
  color:#333;
  text-decoration: none;
}

.posts-lists-link .single-post-box{
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-transition: all 0.218s;
  -moz-transition: all 0.218s;
  -webkit-transition: all 0.218s;
  transition: all 0.218s;
}
.posts-lists-link:hover{
  text-decoration:none !important;
}
.posts-lists-link .single-post-box:hover{
  background-color: #fff;
  color: #333;
  text-decoration: none;
}

.flex-eq-height{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.mb48{
  margin-bottom: 48px;
}

.mt0{
  margin-top:0px;
}


.posts-link-text{
  color: #333;
  font-weight: bold;
}

.pb0{
  padding-bottom: 0px;
}

.main-color{
  background-color: #275e9d;
}

.mb0{
  margin-bottom:0px;
}

.center{
  text-align: center;
}

.ml-15{
  margin-left: -15px;
}

.content-box{
  margin: 0 auto;
}

.progress{
  border-radius: 50px;
}


/*一般設定*/



/*ナビゲーションメニュー*/
#gnavi{
  background: #275e9d;
}
.navbar-fixed{
}
.navbar-toggle{
}
.navbar{

}


.nav-bar-box{
  margin: 0 auto;
}
.navbar-brand.title{
  color:#fff;
  font-weight: bold;
}


.navbar-brand.title:hover{
    color:#275e9d;
    font-weight: bold;
    background-color: #fff;
}

.border_none{
  border:none;
}

.navbar{
}

.nab-right-menu{
  list-style: none;
}


.navbar-right-link{
  color: #fff !important;
}
.navbar-right{

}
.login{
  background-color: #4c9e3e;
}

.member{
  background-color: #e1ae1e;
}

.navbar-nav li a, .navbar-nav li.menu-item a, ul.nav.navbar-nav li.page_item a{
  color: #fff;
  font-size: 15px;
  padding-top: 28px;
  padding-bottom: 28px;
  margin-top: 0px;
  margin-bottom: 0px;
  border-radius: 0px;
}

.navbar-nav li.menu-item a:hover, ul.nav.navbar-nav li.page_item a:hover{
  color: #275e9d;
}


/*ナビゲーションメニュー*/

/*ユーザープロフィール*/
.profile-img-box{

}
.user-profile-box{
  background-color: #e9eaed;
}

.user-profile-img-card{

}
.profile-img-card {

}

.profile-user-name{
  text-align: center;
  font-weight: bold;
}


.progress-box{

}



/*ユーザープロフィール*/

/*フロントーポスト部分*/

.post-box-title{
  color: #fff;
  font-weight: bold;

}

.single-post-box{
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}


.single-post-title{
  font-weight: bold;
}

.single-post-link-text{
  background-color: #e9eaed;
  color: #e16667;
  font-weight: bold;
}

/*フロントーポスト部分*/

/*レッスンページ概要部分*/
.page-overview-box{

  /*background:linear-gradient(to right, #E1E1EF, #CEE6F0);*/
}

.page-title{
  font-weight: bold;
}

.lesson-detail-box{
}

.lesson-label-parts{
  background: #323232;
  color: #fff;
}

.content-box.mb0{

}
.lesson-box{

}
.lesson-list-box{

}

.row.display-flex{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  display: flex;
  width: 100%;
}

.lesson_link{
  color:#333;
  text-decoration: none;
}

.lesson_link:hover{
  text-decoration: none;
}

.lesson-list-status{

}

.lesson-list-status-complete-label,.lesson-list-status-label{
  font-size: 14px;
  color: #fff;
}
.lesson-list-status-label{
  background: #323232;
}

.lesson-list-status-complete-label{
  background: #c42d2e;
  font-size: 14px;
}

.lesson-list-detail-box{

}

.lesson-list-detail-box:last-child{
}

.lesson-list-detail-num-box{

}

.lesson-list-detail-num-box p{
  font-weight: bold;
}

.lesson-list-detail-desc-box h2{
  font-weight: bold;
}

.lesson-list-detail-desc-box p{
  margin-bottom: 0px;
  font-size: 14px;
  color: #aaa;
}

.lesson-bg-lock{
  position: relative;
  background-color: #F7F7F7;
  opacity: 0.5;
}

.icon-lock-side-bar{
  -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    position: absolute;
    left: 50%;
    top: 50%;
}
.icon_lock{
  position: absolute;
  -webkit-transform: translateX(-45%);
  -moz-transform: translateX(-45%);
  transform: translateX(-45%);
  -webkit-transform: translateY(-45%);
  -moz-transform: translateY(-45%);
  transform: translateY(-45%);
}

.icon_lock{
  font-size: 100px;
}

.icon-lock-side-bar{
  font-size: 50px;
}

/*レッスンページ概要部分*/

/*pdf-slider部分*/
#gp-texts-docs-canvas-box{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gp-back-black-right{
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
  background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}

.gp-back-black-left{
  background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
  background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}

.gp-texts-docs-left{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  filter: alpha(opacity=50);
  opacity: .5;
}

.gp-texts-docs-right{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  filter: alpha(opacity=50);
  opacity: .5;
}

.gp-arrow-position-left,.go-arrow-position-right{
  position: absolute !important;
  z-index: 5;
  display: inline-block;
}

.gp-arrow-position-left{
  left:0;
}


.go-arrow-position-right{
  right:0;
}

#gp-prev,#gp-next,#the-canvas{
  width: 100%;
  height: 100%;
}

#gp-prev,#gp-next{
  display: none;
}
/*pdf-slider部分*/

/*レッスンページ詳細部分*/

.page-lesson-detail-box{
}

.page-lesson-detail-box img{
  width: 100%;
  height: auto;
}

.page-lesson-detail-box iframe{

  width: 100%;
}


.page-lesson-detail-box h2{
  background-color: #275e9d;
  color: #fff;
}
.page-lesson-detail-box h3{
  font-weight: bold;
}

.page-lesson-detail-box p{
  margin-bottom: 24px;
}

.dwd_background{
  text-align: center;
  background: #275e9d;;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-transition: all 0.218s;
  -moz-transition: all 0.218s;
  -webkit-transition: all 0.218s;
  transition: all 0.218s;
}



.lesson_btn_box{
  text-align: center;
}

.lesson_btn_box button{
}

#send_quiz_answer_btn{
  margin-right:30px;
}
.lesson_btn_box .btn_design, .form-submit .btn_design, .btn_design, .btn_comp_design{
  border: none;
  /*pointer-events: none;*/
  background-color: #275e9d;
  color: #fff;
  border: 1px solid #275e9d;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-transition: all 0.218s;
  -moz-transition: all 0.218s;
  -webkit-transition: all 0.218s;
  transition: all 0.218s;
}


.dwd_background:hover, .lesson_btn_box .btn_design:hover, .form-submit .btn_design:hover, .btn_design:hover, .btn_comp_design{
  background: #fff;
  color: #275e9d;
  text-decoration: none;
}

.lesson_btn_box .btn_comp_design{
  border: none;
  pointer-events: none;
  background-color: #fff;
  color: #275e9d;
}

.form-submit{
  text-align: center;
}

.area_forum{
}

.area_forum{

  background-color: #f3f3f3;
  cursor: pointer;
}
.list_head.js-acordion-action p{
  margin-bottom:0px;
  font-weight: bold;
}

.qna-btn{
  float:right;
}

p.qna-title{
}
.list_body p, .list_body p span{
  font-weight: bold;
}
ul.children{

}

.area_forum.first_comment:last-child{
}


/*レッスンページ詳細部分*/

/*マイページ部分*/
.my-page-top{
  background-color: #e9eaed;
}
.my-page-bottom{
  background-color: #e9eaed;
}

.my-page-user-title{
  font-weight: bold;
}

.news-post-text,.mypage-user-name{
  text-align: left;
  font-weight: bold;
}



.mypage-img-box{
  text-align: right;
}

.mypage-profile-img-card{
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
/*マイページ部分*/

/*カレンダー部分*/

#calendarMenu{
}
.calender_table{
  width: 100%;
}
.calendar-btn.calendar-move-day{
  line-height: 30px;
  font-weight: 700;
  border-radius: 25px;
  border: 1px solid #ddd;
  color: #333;

}

.calendar-colors-green,.calendar-colors-orange,.calendar-colors-red,.calendar-colors-gray{
  display: inline-block;
  vertical-align: middle;
}
#menu-navi a, .calendar-render-range{
  text-decoration: none;
}

#menu-navi a:last-child{
}

.calendar-colors-text{
  font-weight: bold;
}


.calendar-colors-green{
  background-color: #4c9e3e;
}
.calendar-colors-orange{
  background-color: #ffbb3b;
}
.calendar-colors-red{
  background-color: #c42d2e;
}
.calendar-colors-gray{
  background-color: #ccc;
}

.calendar-day-of-the-week-item{

  line-height: 31px;
  height: auto;
}


.calendar-day-of-the-week{
  background-color: inherit;
  text-align: left;
  font-weight: normal;
}

.calendar-each-day-of-the-week{
  width: 100%;
}

.calendar-each-day-of-the-week-items{
  background-color: none;
  height: auto;
}

.calendar-each-day-of-the-week-items:last-child{

}

.holiday{
  color: #ff4040;
}

.calendar-box{
  height: auto;
}

.container.relative{
  position: relative;
}
.container {
  max-width: 1100px;
}

.calendar-detail-box{
  padding-bottom: 0px;
  height: auto;
}

.calendar-detail-box h2{

  font-weight: bold;
}




.calendar-border-red{
  border-top: 4px solid #c42d2e;
  margin-bottom: 0px;
}

.calendar-border-orange{
  border-top: 4px solid #ffbb3b;
  margin-bottom: 0px;
}

.calendar-border-green{
  border-top: 4px solid #4c9e3e;
  margin-bottom: 0px;
}

.calendar-border-gray{
  border-top: 4px solid #ccc;
  margin-bottom: 0px;
}

.calendar-border-text{
  line-height: 2;
  color: #858585;
}
.calendar-edit-box{
}

.calendar-edit-box .col-md-6{
}
.calendar-edit-text{
}
.calendar-register-text, .calendar-edit-text, .calendar-delete-text{
  text-align: center;
}

.calendar-schedule-box a.dom-box{
  text-decoration: none;
}
.calendar-schedule-box a.dom-box span.calendar-schedule-text{
  color: #333;
}

div.calendar-schedule-box a.dom-box span.red{
  background-color: #c42d2e;
  border-radius: 50%;
  display: inline-block;
}

div.calendar-schedule-box a.dom-box span.orange{

  background-color: #ffbb3b;
  border-radius: 50%;
  display: inline-block;
}

div.calendar-schedule-box a.dom-box span.green{

  background-color: #4c9e3e;
  border-radius: 50%;
  display: inline-block;
}

div.calendar-schedule-box span.calendar-schedule-text.full.gray{
  background-color: #ccc !important;
  border-radius: 50% !important;
  display: inline-block !important;
}
div.calendar-schedule-box a.dom-box span.gray{

  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
}

.calendar-schedule-box{
}

/*カレンダー部分*/

/*カレンダー編集フォーム部分*/
.form-box{
  margin: 0px auto;
}

.form-title{
  font-weight: bold;
}

.form-parts{
}

.form-parts:last-child{
}

.form-text{
  font-weight: bold;

}

.form-input,.form_textarea{
  border-radius: 10px;

}
.form-input{

}
.form_textarea{
}

.form-btn.btn_design{
}


/*カレンダー編集フォーム部分*/

/*質問フォーム部分*/
.comment-area.qna{

}
/*質問フォーム部分*/

/*登録フォーム部分*/
#guild_press_register_form{

}

#guild_press_register_form #payment-form .form-group input.btn_design{
}

.form-group .form-input{
}
/*登録フォーム部分*/

/*ログインフォーム部分*/
.card.card-container{

}

.form-signin{

}

.form-control{
}

#remember{

}

.btn.btn-lg.btn-primary.btn-block.btn-signin{

}

/*ログインフォーム部分*/

/*決済フォーム部分*/

.width100 {

}

.border_gray {

}

.p2010 {

}
.tbody_default th {

}

.btn_desgin {

}

/*決済フォーム部分*/

/*ウィジェット部分*/
.widget-box{

}



.widget-detail-box{
}

.widget-detail-box .center img.user-profile-img-card{
}
.widget-title{
  font-weight: bold;
}

.user-progress-box{
  background-color: #f3f3f3;
}
.user-progress-box .b-radius{
}

.prfoile-widget p{
  color: #858585;
}

.widget-detail-lesson-top{
}
.widget-detail-lesson{
}

.widget-detail-lesson:last-child{

}
.lesson-list-detail-desc-box{
}
.lesson-list-detail-desc-box h2{
}

.post-lists{
}
/*ウィジェット部分*/

/*教科書一覧ページ部分*/
.lesson_docs_title{
  background-color: #275e9d;
  color: #fff;
  font-weight: bold;
}

.lesson_docs_title:first-child{;
}

div.dwd_background.mb24{

  background: #F7F7F7;
  color: #333;
  text-align: left;
}
/*教科書一覧ページ部分*/

/*フッターウィジェットエリア*/
.footer-widgets-container{
}
.footer-container{
  background-color: #275e9d;
}

.footer-widgets-container h2, .footer-widgets-container ul li a{
  color:#fff;
}

.footer-widgets-container ul li{
  list-style: none;
}

.footer_text{
  color: #fff;
}

.footer-widget{

}

.footer-widgets-container h2.footer-widgets-title{

}
.footer-widgets-container ul{

}

.footer-widgets-container ul li a{

}

.footer-widgets-border{
}
/*フッターウィジェットエリア*/

/*投稿エリア*/

h1.post-title{

}

.post-bkg{
  margin-top: -50px;
  background-color: #fff;
}
.posts-box{
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  margin: 60px auto;
}

.posts-box-detail-box{
  padding: 8px 16px;
}



.post-title{
  font-weight: bold;
}

span.page-numbers.current,a.page-numbers{
  background-color: transparent;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.5;
  color: #275e9d;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.screen-reader-text{
  display: none;
}
span.page-numbers.current{
  background-color: #275e9d;
  border-color: #275e9d;
  color: #fff;
}

.posts_pagination{
  margin-bottom: 72px;
}
/*投稿エリア*/



@media (min-width: 320px) and (max-width:767px){

  #gnavi ul#menu-head-menu li.menu-item {
    margin: 0px;
    display:inline-block;
    float: left;
    background-color: #275e9d;
    width: 100%;
  }
  #gnavi {
    margin:0;
  }


  .toggle + a,
  .menu {
    display: none;
  }


  /* Display Dropdown when clicked on Parent Lable */
  [id^=drop]:checked + ul {
    display: block;
  }

  nav#gnavi ul li {
    display: block;
    width: 100%;
  }

  #gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item a{
    padding: 0 40px;
  }

  #gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item ul.sub-menu li.menu-item a{
    padding: 0 80px;
  }

  #gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item a,
  #gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item ul.sub-menu li.menu-item a{
    padding:14px 20px;
    color:#FFF;
    font-size:17px;
  }

  #gnavi ul#menu-head-menu li.menu-item a,
  #gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item a,
  #gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item ul.sub-menu li.menu-item a {
    margin-bottom:2px;
    box-shadow: 0px 2px 8px -3px hsla(0,0%,0%,0.6);
    -webkit-box-shadow: 0px 2px 8px -3px hsla(0,0%,0%,0.6);
    -moz-box-shadow: 0px 2px 8px -3px hsla(0,0%,0%,0.6);
  }



  /* Hide Dropdowns by Default */
  #gnavi ul#menu-head-menu li.menu-item ul.sub-menu{
    float: none;
    position:static;
    color: #ffffff;
    /* has to be the same number as the "line-height" of "nav a" */
  }

  /* Hide menus on hover */
  #gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item:hover > ul.sub-menu,
  #gnavi ul#menu-head-menu li.menu-item:hover > ul.sub-menu {
    display:none;
  }

  /* Fisrt Tier Dropdown */
  #gnavi ul#menu-head-menu li.menu-item ul.sub-menu,
  #gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item,
  #gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item ul.sub-menu{

    width: 100%;
  }

  #gnavi ul#menu-head-menu li.menu-item ul.sub-menu li.menu-item ul.sub-menu li.menu-item{
    position: static;

  }


  .content-box{
    width: 100%;
    margin-bottom:32px;
  }

  .b-radius{
    border-radius: 16px;
  }
  /*ナビゲーションメニュー*/
  .navbar-fixed{
    position: fixed;
    top: 0;
    z-index: 1;
  }
  .navbar-toggle{
    margin-top:12px;
    margin-bottom:12px;
  }
  .navbar{
    height: 60px;
    min-height: 40px;
    width: 100%;
  }
  .navbar-brand.title{
    font-size: 18px;
    padding:16px;
    height: auto;
  }

  .navbar-nav li.menu-item a{

  }

  .border_none{
    border:none;
  }

  .navbar{
    margin-bottom: 0px;
    z-index: 10;
  }

  .navbar-right-items{
    padding: 8px 0px;
  }
  /*ナビゲーションメニュー*/

  /*ユーザープロフィール*/
  .profile-img-box{
    margin-bottom:24px;
  }
  .user-profile-box{
    padding:32px 40px;
  }

  .user-profile-img-card{
    width: 96px;
    height: 96px;
    display: block;
    margin: 0 auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 16px;
  }
  .profile-img-card {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }

  .profile-user-name{
    margin-bottom:0px;
  }


  .progress-box{
    margin-bottom: 14px;
  }

  /*ユーザープロフィール*/
  /*フロントーポスト部分*/
  .post-box-title{
    margin-top:0px;
    margin-bottom:24px;
    padding:16px 20px;

  }

  .single-post-box{
    margin-bottom: 16px;
  }

  .single-post-content{
    padding: 16px;
    background: #fff;
  }
  .single-post-title{
    margin-top:16px;
    margin-bottom:8px;
    font-size:18px;
  }

  .single-post-text{
    font-size: 14px;
    margin-bottom:16px;
    color: #999;
  }

  .single-post-link-text{
    padding: 8px 10px;
    font-size:14px;
  }

  /*フロントーポスト部分*/

  /*レッスンページ概要部分*/
  .page-overview-box{
    margin-top: -48px;
    padding:16px;
    padding-bottom: 0px;
  }

  .page-detail-box{
  }

  .detail-page-title,.page-title{
    font-weight: bold;
    font-size: 30px;
  }

  .detail-page-title{
    margin-top: 40px;
  }


  .lesson-detail-box h2.page-title{
    margin-top: 20px;
  }

  .lesson-detail-box{
    margin-bottom: 24px;
  }

  .lesson-label-parts{
    margin-right: 20px;
    padding: 8px 40px;
  }

  .content-box.mb0{
    margin-bottom:0px;
  }
  .lesson-box{
    padding-bottom: 0px;
  }
  .lesson-list-box{
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  }

  .row.display-flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
  }

  .lesson_link{
    color:#333;
    text-decoration: none;
  }

  .lesson_link:hover{
    text-decoration: none;
  }

  .lesson-list-status{
    margin-top: 30px;
    margin-bottom: 1px;
  }

  .lesson-list-status-complete-label,.lesson-list-status-label{
    font-size: 14px;
    padding: 5px 20px;
  }
  .lesson-list-status-label{
  }

  .lesson-list-status-complete-label{
  }

  .lesson-list-detail-box{
    border: 1px solid #ccc;
    padding: 16px 24px;
    padding-left: 32px;
  }

  .lesson-list-detail-box:last-child{
    margin-bottom:20px;
  }

  .lesson-list-detail-num-box{
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #275e9d;
    color: #fff;
  }

  .lesson-list-detail-num-box p{
    font-size: 20px;
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 8px;
    padding-top: 15px;
  }

  .lesson-list-detail-desc-box h2{
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 16px;
  }

  .lesson-list-detail-desc-box p{
    margin-bottom: 0px;
    font-size: 14px;
  }

  .lesson-bg-lock{
    opacity: 0.5;
  }

  .icon-lock-side-bar{
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    position: absolute;
    left: 50%;
    top: 50%;
  }
  .icon_lock{
    left: 45%;
    top: 50%;
    -webkit-transform: translateX(-45%);
    -moz-transform: translateX(-45%);
    transform: translateX(-45%);
    -webkit-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    transform: translateY(-45%);
  }

  .icon_lock{
    font-size: 100px;
  }

  .icon-lock-side-bar{
    font-size: 50px;
  }

  /*レッスンページ概要部分*/

  /*pdf-slider部分*/
  #gp-texts-docs-canvas-box{
  }

  .gp-back-black-right{
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
    background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x;
  }

  .gp-back-black-left{
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
    background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x;
  }

  .gp-texts-docs-left{
    top: 0;
    bottom: 0;
    left: 0;
    width: 40%;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    filter: alpha(opacity=50);
    opacity: .5;
  }

  .gp-texts-docs-right{
    top: 0;
    bottom: 0;
    right: 0;
    width: 40%;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    filter: alpha(opacity=50);
    opacity: .5;
  }

  .gp-arrow-position-left,.go-arrow-position-right{
    top: 45% !important;
    z-index: 5;
    font-size: 100px;
  }

  .gp-arrow-position-left{
    left:0;
  }


  .go-arrow-position-right{
    right:0;
  }

  #gp-prev,#gp-next,#the-canvas{
    width: 100%;
    height: 100%;
  }

  #gp-prev,#gp-next{
  }
  /*pdf-slider部分*/

  /*レッスンページ詳細部分*/

  .page-lesson-detail-box{
    margin-top: 48px;
  }

  .page-lesson-detail-box img{

    width: 100%;
  }

  .page-lesson-detail-box iframe{

    width: 100%;
  }


  .page-lesson-detail-box h2{
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 26px;
    padding: 12px 16px;
  }
  .page-lesson-detail-box h3{
    font-size: 20px;
    border-bottom: 2px solid #275e9d;
    margin-top: 32px;
    padding: 8px;
  }

  .page-lesson-detail-box p{
    margin-bottom: 24px;
  }

  .dwd_background{
    margin-left: 40px;
    margin-right: 40px;
    padding: 8px 16px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
    border: 1px solid #275e9d;
  }



  .lesson_btn_box{
    margin-top: 32px;
  }

  .lesson_btn_box button{
    margin-right:30px;
  }

  #send_quiz_answer_btn{
    margin-right:30px;
  }
  .lesson_btn_box .btn_design, .form-submit .btn_design, .btn_design, .btn_comp_design{
    padding: 10px 40px;
    margin-top: 16px;
    margin-bottom: 16px;
    /*border: 1px solid #ea8909;*/
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
  }

  .dwd_background:hover, .lesson_btn_box .btn_design:hover, .form-submit .btn_design:hover, .btn_design:hover, .btn_comp_design:hover{
    border:1px solid #275e9d;
  }

  .lesson_btn_box .btn_comp_design{
    padding: 10px 40px;
    margin-top: 16px;
    margin-bottom: 16px;
    border: 1px solid #275e9d;
    width: 300px;
    margin-right: 0px;
    margin-left: 0px;
  }

  .form-submit{
    text-align: center;
  }

  .area_forum{
    margin-bottom: 24px;
  }

  .area_forum{
    padding: 20px 16px;
    padding-bottom: 40px;
  }

  .area_forum.first_comment{
    padding-bottom: 16px;
  }

  .list_head.js-acordion-action p{
    margin-bottom:0px;
    font-size: 18px;
  }

  .qna-btn{
    font-size:20px;
  }

  p.qna-title{
    margin-top: 12px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom:1px solid #333;
  }
  .list_body p, .list_body p span{
  }
  ul.children{
  }

  .area_forum.first_comment:last-child{
    margin-bottom: 48px;
  }


  /*レッスンページ詳細部分*/

  /*マイページ部分*/
  .my-page-top{
    padding: 56px 48px;
    padding-bottom: 24px;
  }
  .my-page-bottom{
    padding: 56px 48px;
    padding-top: 24px;
  }

  .my-page-user-title{
    margin-top: 0px;
    margin-bottom: 24px;
  }

  .mypage-user-name{
    margin-bottom: 0px;
  }

  .mypage-img-box{
  }

  .mypage-profile-img-card{
    width: 96px;
    height: 96px;
    margin-right: 24px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 16px;
  }
  /*マイページ部分*/

  /*カレンダー部分*/

  #calendarMenu{
    margin-bottom: 24px;
  }
  .calender_table{
    width: 100%;
  }
  .calendar-btn.calendar-move-day{

    padding: 0 16px;
    line-height: 30px;
    font-weight: 700;
    border-radius: 25px;
    border: 1px solid #ddd;
    font-size: 12px;
    margin-right: 5px;

  }

  .calendar-colors-green,.calendar-colors-orange,.calendar-colors-red,.calendar-colors-gray{
    width: 20px;
    height: 4px;
  }
  #menu-navi a, .calendar-render-range{
    margin-right: 6px;
  }

  #menu-navi a:last-child{

    margin-right: 20px;
  }

  .calendar-colors-text{
    margin-right: 20px;
  }

  .calendar-day-of-the-week-item{

    width: 14.285714285714286%;
    padding-left: 10px;
    padding-right: 0;
  }


  .calendar-day-of-the-week{
    border-top: 1px solid #e5e5e5;
    height: 31px;
    font-size: 16px;
    border-right:1px solid #e5e5e5;
    border-left:1px solid #e5e5e5;
  }

  .calendar-each-day-of-the-week{
    width: 100%;
    font-size: 16px;
  }

  .calendar-each-day-of-the-week-items{
    width:14.285714285714286%;
    font-size: 14px;
    border-right:1px solid #e5e5e5;
    border-left:1px solid #e5e5e5;
    border-top:1px solid #e5e5e5;
    padding-left:10px;
  }

  .calendar-each-day-of-the-week-items:last-child{

    border-bottom:1px solid #e5e5e5;
  }

  .holiday{
  }

  .calendar-box{
  }

  .container.relative{
  }

  .calendar-detail-box{
    width: 320px;
    padding:16px;
    padding-bottom: 0px;
  }

  .calendar-detail-box h2{

    margin-top: 0px;
    margin-bottom: 16px;
  }




  .calendar-border-red{
    border-top: 4px solid #c42d2e;
    margin-bottom: 0px;
  }

  .calendar-border-orange{
    border-top: 4px solid #ffbb3b;
    margin-bottom: 0px;
  }

  .calendar-border-green{
    border-top: 4px solid #4c9e3e;
    margin-bottom: 0px;
  }

  .calendar-border-gray{
    border-top: 4px solid #ccc;
    margin-bottom: 0px;
  }

  .calendar-border-text{
    font-size: 12px;
    margin-bottom:0px;
  }
  .calendar-edit-box{
    border-top: 1px solid #e5e5e5;
    margin-left:  10px;
    margin-right:  10px;
    margin-top:  16px;
  }

  .calendar-edit-box .col-md-6{
    padding-left: 0px;
    padding-right: 0px;
  }

  .calendar-register-text, .calendar-edit-text, .calendar-delete-text{
    margin:8px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .calendar-delete-text{
    padding-top: 8px;
    margin-top: 0px;
    border-top: 1px solid #e5e5e5;
  }

  .calendar-schedule-box a.dom-box{
  }
  .calendar-schedule-box a.dom-box span.calendar-schedule-text{
    font-size: 16px;
  }

  div.calendar-schedule-box a.dom-box span.red{
    width: 8px;
    height: 8px;
  }

  div.calendar-schedule-box a.dom-box span.orange{
    width: 8px;
    height: 8px;
  }

  div.calendar-schedule-box a.dom-box span.green{

    width: 8px;
    height: 8px;
  }

  div.calendar-schedule-box span.calendar-schedule-text.full.gray{
    width: 8px !important;
    height: 8px !important;
  }
  div.calendar-schedule-box a.dom-box span.gray{

    background-color: #ccc;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
  }

  .calendar-schedule-box{
    margin-bottom: 4px;
  }

  /*カレンダー部分*/

  /*カレンダー編集フォーム部分*/
  .form-box{
    width: 300px;
    margin: 0px auto;
  }

  .form-title{
    margin-top:0px;
    margin-bottom: 32px;
    font-weight: bold;
  }

  .form-parts{
    margin-bottom: 24px;
  }

  .form-parts:last-child{
    margin-bottom: 32px;
  }

  .form-text{
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: bold;

  }

  .form-input,.form_textarea{
    padding: 8px 16px;
    border-radius: 10px;
    border: solid 1px #ccc;

  }
  .form-input{

    width: 300px;
  }
  .form_textarea{
    width: 300px;
  }

  .form-btn.btn_design{
    margin-bottom: 0px;
    margin-top: 0px;
  }


  /*カレンダー編集フォーム部分*/

  /*質問フォーム部分*/
  .comment-area.qna{
    width: 100%;
    height: 100%;
    border:1px solid #ccc;
  }
  /*質問フォーム部分*/

  /*登録フォーム部分*/
  #guild_press_register_form{
    background: #fff;
    padding: 8px 16px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  }

  #guild_press_register_form #payment-form .form-group input.btn_design{
    width: 100%;
  }

  .form-group .form-input{
    width: 100%;
  }

  /*登録フォーム部分*/

  /*ログインフォーム部分*/
  .card.card-container{
    background: #fff;
    padding: 32px 16px;
    width: 100%;
    margin: 0 auto;
  }

  .form-signin{
    margin-top: 32px;
  }

  .form-control{
    margin-bottom: 16px;
  }

  #remember{
    margin-top: 0px;
    margin-bottom: 32px;
  }

  .btn.btn-lg.btn-primary.btn-block.btn-signin{
    background: #275e9d;
    border: 1px solid #275e9d;
  }

  /*ログインフォーム部分*/


  /*決済フォーム部分*/

  .width100 {
    width: 100%;
  }

  .border_gray {
    border: 2px solid #dddddd;
  }

  .p2010 {
    padding: 20px 10px;
  }
  .tbody_default th {
    border-right: 2px solid #dddddd;
  }

  .btn_desgin {
    width: 100%;
    font-size: 1em;
    line-height: 1.5;
    font-weight: bold;
    position: relative;
    background-color: #275e9d;
    color: #fff;
    border-radius: 0.2em;
    /* box-shadow: 0 4px 0 #d34e4e; */
    border: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .09);
    transition: 0.3s;
  }

  /*決済フォーム部分*/

  /*ウィジェット部分*/
  .widget-box{

  }



  .widget-detail-box{
    padding:8px 16px;
  }

  .widget-detail-box .center img.user-profile-img-card{
    margin-top: 16px;
  }
  .widget-title{
    font-size: 20px;
    font-weight: bold;
    border-bottom:2px solid #275e9d;
    margin-top: 32px;
    padding: 8px;
  }

  .user-progress-box{
    padding: 8px;
  }
  .user-progress-box .b-radius{
    margin-bottom:8px;
  }

  .prfoile-widget p{
  }

  .widget-detail-lesson-top{
    margin-top: 24px;
  }
  .widget-detail-lesson{
    border-bottom:1px solid #aaa;
    margin-bottom: 24px;
  }

  .widget-detail-lesson:last-child{
    margin-bottom:10px;

  }
  .lesson-list-detail-desc-box h2{
    margin-bottom: 5px;
  }

  .post-lists{

    margin-bottom: 24px;
  }
  /*ウィジェット部分*/

  /*教科書一覧ページ部分*/
  .lesson_docs_title{
    margin-top: 48px;
    margin-bottom: 32px;
    padding: 16px 24px;
  }

  .lesson_docs_title:first-child{
    margin-top: 0px;
  }

  div.dwd_background.mb24{
    padding: 15px;
    border: 1px solid #ccc;
    margin-top: -1px;
    text-align: left;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 24px;
  }
  /*教科書一覧ページ部分*/


  /*フッターウィジェットエリア*/
  .footer-widgets-container{
    margin-bottom:32px;
  }
  .footer-container{
    padding-top: 32px;
  }

  .footer-widgets-container h2, .footer-widgets-container ul li a{

  }

  .footer-widgets-container ul li{
    margin-bottom: 8px;
  }

  .footer_text{
    color: #fff;
  }

  .footer-widget{
    padding-bottom: 32px;
  }

  .footer-widgets-container h2.footer-widgets-title{
    font-size: 16px;
  }
  .footer-widgets-container ul{
    padding-left: 0px;
  }

  .footer-widgets-container ul li a{
    font-size: 14px;
  }

  .footer-widgets-border{
    margin-top: 8px;
    margin-bottom: 8px;
  }
  /*フッターウィジェットエリア*/

  /*投稿エリア*/
  h1.post-title{
    font-size: 26px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
  }
  .post-title{
    font-size: 26px;
  }
  /*投稿エリア*/
}
@media (min-width: 768px) and (max-width:991px){
  .content-box{
    width: 708px;
    margin-bottom:48px;
  }

  .b-radius{
    border-radius: 16px;
  }
  /*ナビゲーションメニュー*/
  .navbar-fixed{
  }
  .navbar-toggle{
  }
  .navbar{
    width: 100%;
    margin-bottom: 0px;
  }
  .nav-bar-box{
    /*width: 820px;*/
  }
  .navbar-brand.title{

  }

  .navbar-nav li.menu-item a{

  }

  .border_none{
    border:none;
  }

  .navbar-right-items{
    padding: 8px 0px;
  }

  .navbar-right-items{
    margin-right: 0px !important;
  }

  /*ナビゲーションメニュー*/

  /*ユーザープロフィール*/
  .profile-img-box{

  }
  .user-profile-box{
    padding:56px 48px;
  }

  .user-profile-img-card{
    width: 96px;
    height: 96px;
    display: block;
    margin: 0 auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 16px;
  }
  .profile-img-card {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }

  .profile-user-name{
    margin-bottom:0px;
  }


  .progress-box{
    margin-bottom: 24px;
  }



  /*ユーザープロフィール*/
  /*フロントーポスト部分*/
  .post-box-title{
    margin-top:0px;
    margin-bottom:32px;
    padding:24px 40px;

  }

  .single-post-box{

  }

  .single-post-content{
    padding: 16px;
    background: #fff;
  }
  .single-post-title{
    margin-bottom:8px;
  }

  .single-post-text{
    margin-bottom:8px;
    color: #999;
  }

  .single-post-link-text{
    padding: 8px 10px;
    font-size:16px;
  }

  /*フロントーポスト部分*/

  /*レッスンページ概要部分*/
  .page-overview-box{
    margin-top: -48px;
    padding:48px;
    padding-bottom: 0px;
  }

  .page-detail-box{
  }

  .detail-page-title,.page-title{
    font-weight: bold;
    font-size: 32px;
  }

  .lesson-detail-box{
    margin-bottom: 48px;
  }

  .lesson-label-parts{
    margin-right: 30px;
    padding: 8px 40px;
  }

  .content-box.mb0{
    margin-bottom:0px;
  }
  .lesson-box{
    padding-bottom: 0px;
  }
  .lesson-list-box{
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  }

  .row.display-flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
  }

  .lesson_link{
    color:#333;
    text-decoration: none;
  }

  .lesson_link:hover{
    text-decoration: none;
  }

  .lesson-list-status{
    margin-top: 30px;
    margin-bottom: 1px;
  }

  .lesson-list-status-complete-label,.lesson-list-status-label{
    font-size: 14px;
    padding: 5px 20px;
  }
  .lesson-list-status-label{
  }

  .lesson-list-status-complete-label{
  }

  .lesson-list-detail-box{
    border: 1px solid #ccc;
    padding: 16px 24px;
    padding-left: 32px;
  }

  .lesson-list-detail-box:last-child{
    margin-bottom:20px;
  }

  .lesson-list-detail-num-box{
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #275e9d;
    color: #fff;
  }

  .lesson-list-detail-num-box p{
    font-size: 20px;
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 8px;
    padding-top: 15px;
  }

  .lesson-list-detail-desc-box h2{
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 16px;
  }

  .lesson-list-detail-desc-box p{
    margin-bottom: 0px;
    font-size: 14px;
    color: #aaa;
  }

  .lesson-bg-lock{
    opacity: 0.5;
  }

  .icon-lock-side-bar{
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    position: absolute;
    left: 50%;
    top: 50%;
  }
  .icon_lock{
    left: 45%;
    top: 50%;
    -webkit-transform: translateX(-45%);
    -moz-transform: translateX(-45%);
    transform: translateX(-45%);
    -webkit-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    transform: translateY(-45%);
  }

  .icon_lock{
    font-size: 100px;
  }

  .icon-lock-side-bar{
    font-size: 50px;
  }
  /*レッスンページ概要部分*/

  /*pdf-slider部分*/
  #gp-texts-docs-canvas-box{
  }

  .gp-back-black-right{
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
    background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x;
  }

  .gp-back-black-left{
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
    background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x;
  }

  .gp-texts-docs-left{
    top: 0;
    bottom: 0;
    left: 0;
    width: 40%;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    filter: alpha(opacity=50);
    opacity: .5;
  }

  .gp-texts-docs-right{
    top: 0;
    bottom: 0;
    right: 0;
    width: 40%;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    filter: alpha(opacity=50);
    opacity: .5;
  }

  .gp-arrow-position-left,.go-arrow-position-right{
    top: 45% !important;
    z-index: 5;
    font-size: 100px;
  }

  .gp-arrow-position-left{
    left:0;
  }


  .go-arrow-position-right{
    right:0;
  }

  #gp-prev,#gp-next,#the-canvas{
    width: 100%;
    height: 100%;
  }

  #gp-prev,#gp-next{
  }
  /*pdf-slider部分*/

  /*レッスンページ詳細部分*/

  .page-lesson-detail-box{
    margin-top: 48px;
  }

  .page-lesson-detail-box img{

    width: 100%;
  }

  .page-lesson-detail-box iframe{

    width: 100%;
  }


  .page-lesson-detail-box h2{
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 26px;
    padding: 12px 16px;
  }
  .page-lesson-detail-box h3{
    font-size: 20px;
    border-bottom: 2px solid #275e9d;
    margin-top: 32px;
    padding: 8px;
  }

  .page-lesson-detail-box p{
    margin-bottom: 24px;
  }

  .dwd_background{
    margin-left: 40px;
    margin-right: 40px;
    padding: 16px 24px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
    border: 1px solid #275e9d;
  }



  .lesson_btn_box{
    margin-top: 32px;
  }

  .lesson_btn_box button{
    margin-right:30px;
  }

  #send_quiz_answer_btn{
    margin-right:30px;
  }
  .lesson_btn_box .btn_design, .form-submit .btn_design, .btn_design, .btn_comp_design{
    padding: 10px 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #275e9d;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
  }

  .dwd_background:hover, .lesson_btn_box .btn_design:hover, .form-submit .btn_design:hover, .btn_design:hover, .btn_comp_design{
    border:1px solid #275e9d;
  }

  .lesson_btn_box .btn_comp_design{
    padding: 10px 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #275e9d;
  }

  .form-submit{
    text-align: center;
  }

  .area_forum{
    margin-bottom: 24px;
  }


  .area_forum{
    padding: 20px 16px;
    padding-bottom: 40px;
  }

    .area_forum.first_comment{
    padding-bottom: 16px;
  }
  .list_head.js-acordion-action p{
    margin-bottom:0px;
    font-size: 20px;
  }

  .qna-btn{
    font-size:20px;
  }

  p.qna-title{
    margin-top: 12px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom:1px solid #333;
  }
  .list_body p, .list_body p span{
  }
  ul.children{
  }

  .area_forum.first_comment:last-child{
    margin-bottom: 48px;
  }


  /*レッスンページ詳細部分*/

  /*マイページ部分*/
  .my-page-top{
    padding: 56px 48px;
    padding-bottom: 24px;
  }
  .my-page-bottom{
    padding: 56px 48px;
    padding-top: 24px;
  }

  .my-page-user-title{
    margin-top: 0px;
    margin-bottom: 24px;
  }

  .mypage-user-name{
    margin-bottom: 0px;
  }

  .mypage-user-name:last-child{
    margin-bottom: 24px;
  }

  .news-post-text{
    margin-bottom:0px;
  }

  .mypage-img-box{
    text-align: center;
  }

  .mypage-profile-img-card{
    width: 96px;
    height: 96px;
    margin-right: 24px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 16px;
  }
  /*マイページ部分*/

  /*カレンダー部分*/

  #calendarMenu{
    margin-bottom: 24px;
  }
  .calender_table{
    width: 100%;
  }
  .calendar-btn.calendar-move-day{
    padding: 0 16px;
    line-height: 30px;
    font-weight: 700;
    border-radius: 25px;
    border: 1px solid #ddd;
    font-size: 12px;
    margin-right: 5px;

  }

  .calendar-colors-green,.calendar-colors-orange,.calendar-colors-red,.calendar-colors-gray{
    width: 20px;
    height: 4px;
  }
  #menu-navi a, .calendar-render-range{
    margin-right: 6px;
  }

  #menu-navi a:last-child{

    margin-right: 20px;
  }

  .calendar-colors-text{
    margin-right: 20px;
  }

  .calendar-day-of-the-week-item{

    width: 14.285714285714286%;
    padding-left: 10px;
    padding-right: 0;
  }


  .calendar-day-of-the-week{
    border-top: 1px solid #e5e5e5;
    height: 31px;
    font-size: 16px;
    border-right:1px solid #e5e5e5;
    border-left:1px solid #e5e5e5;
  }

  .calendar-each-day-of-the-week{
    width: 100%;
    font-size: 16px;
  }

  .calendar-each-day-of-the-week-items{
    width:14.285714285714286%;
    font-size: 14px;
    border-right:1px solid #e5e5e5;
    border-left:1px solid #e5e5e5;
    border-top:1px solid #e5e5e5;
    padding-left:10px;
  }

  .calendar-each-day-of-the-week-items:last-child{

    border-bottom:1px solid #e5e5e5;
  }

  .holiday{
  }

  .calendar-box{
  }

  .container.relative{
  }

  .calendar-detail-box{
    width: 320px;
    padding:16px;
    padding-bottom: 0px;
  }

  .calendar-detail-box h2{

    margin-top: 0px;
    margin-bottom: 16px;
  }




  .calendar-border-red{
    border-top: 4px solid #c42d2e;
    margin-bottom: 0px;
  }

  .calendar-border-orange{
    border-top: 4px solid #ffbb3b;
    margin-bottom: 0px;
  }

  .calendar-border-green{
    border-top: 4px solid #4c9e3e;
    margin-bottom: 0px;
  }

  .calendar-border-gray{
    border-top: 4px solid #ccc;
    margin-bottom: 0px;
  }

  .calendar-border-text{
    font-size: 12px;
    margin-bottom:0px;
  }
  .calendar-edit-box{
    border-top: 1px solid #e5e5e5;
    margin-left:  10px;
    margin-right:  10px;
    margin-top:  16px;
  }

  .calendar-edit-box .col-md-6{
    padding-left: 0px;
    padding-right: 0px;
  }
  .calendar-edit-text{
    border-right: 1px solid #e5e5e5;
  }
  .calendar-register-text, .calendar-edit-text, .calendar-delete-text{
    margin:8px;
  }

  .calendar-schedule-box a.dom-box{
  }
  .calendar-schedule-box a.dom-box span.calendar-schedule-text{
    font-size: 16px;
  }

  div.calendar-schedule-box a.dom-box span.red{
    width: 8px;
    height: 8px;
  }

  div.calendar-schedule-box a.dom-box span.orange{
    width: 8px;
    height: 8px;
  }

  div.calendar-schedule-box a.dom-box span.green{

    width: 8px;
    height: 8px;
  }

  div.calendar-schedule-box span.calendar-schedule-text.full.gray{
    width: 8px !important;
    height: 8px !important;
  }
  div.calendar-schedule-box a.dom-box span.gray{

    background-color: #ccc;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
  }

  .calendar-schedule-box{
    margin-bottom: 4px;
  }

  /*カレンダー部分*/

  /*カレンダー編集フォーム部分*/
  .form-box{
    width: 600px;
    margin: 0px auto;
  }

  .form-title{
    margin-top:0px;
    margin-bottom: 32px;
    font-weight: bold;
  }

  .form-parts{
    margin-bottom: 24px;
  }

  .form-parts:last-child{
    margin-bottom: 32px;
  }

  .form-text{
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: bold;

  }

  .form-input,.form_textarea{
    padding: 8px 16px;
    border-radius: 10px;
    border: solid 1px #ccc;

  }
  .form-input{

    width: 285px;
  }
  .form_textarea{
    width: 590px;
  }

  .form-btn.btn_design{
    margin-bottom: 0px;
    margin-top: 0px;
  }


  /*カレンダー編集フォーム部分*/

  /*質問フォーム部分*/
  .comment-area.qna{
    width: 100%;
    height: 100%;
  }
  /*質問フォーム部分*/

  /*登録フォーム部分*/
  #guild_press_register_form{
    background: #fff;
    padding: 16px 24px;
    width: 500px;
    margin: 0 auto;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  }

  #guild_press_register_form #payment-form .form-group input.btn_design{
    width: 100%;
  }

  .form-group .form-input{
    width: 100%;
  }

  /*登録フォーム部分*/

  /*ログインフォーム部分*/
  .card.card-container{
    background: #fff;
    padding: 32px 16px;
    width: 600px;
    margin: 0 auto;
  }

  .form-signin{
    margin-top: 32px;
  }

  .form-control{
    margin-bottom: 16px;
  }

  #remember{
    margin-top: 0px;
    margin-bottom: 32px;
  }

  .btn.btn-lg.btn-primary.btn-block.btn-signin{
    background: #275e9d;
    border: 1px solid #275e9d;
  }

  /*ログインフォーム部分*/




  /*決済フォーム部分*/

  .width100 {
    width: 100%;
  }

  .border_gray {
    border: 2px solid #dddddd;
  }

  .p2010 {
    padding: 20px 10px;
  }
  .tbody_default th {
    border-right: 2px solid #dddddd;
  }

  .btn_desgin {
    width: 100%;
    font-size: 1em;
    line-height: 1.5;
    font-weight: bold;
    position: relative;
    background-color: #275e9d;
    color: #fff;
    border-radius: 0.2em;
    /* box-shadow: 0 4px 0 #d34e4e; */
    border: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .09);
    transition: 0.3s;
  }

  /*決済フォーム部分*/

  /*ウィジェット部分*/
  .widget-box{

  }



  .widget-detail-box{
    padding:8px 16px;
  }

  .widget-detail-box .center img.user-profile-img-card{
    margin-top: 16px;
  }
  .widget-title{
    font-size: 20px;
    font-weight: bold;
    border-bottom:2px solid #275e9d;
    margin-top: 32px;
    padding: 8px;
  }

  .user-progress-box{
    padding: 8px;
  }
  .user-progress-box .b-radius{
    margin-bottom:8px;
  }

  .prfoile-widget p{
  }

  .widget-detail-lesson-top{
    margin-top: 24px;
  }
  .widget-detail-lesson{
    border-bottom:1px solid #aaa;
    margin-bottom: 24px;
  }

  .widget-detail-lesson:last-child{
    margin-bottom:10px;

  }
  .lesson-list-detail-desc-box h2{
    margin-bottom: 5px;
  }

  .post-lists{

    margin-bottom: 24px;
  }
  /*ウィジェット部分*/

  /*教科書一覧ページ部分*/
  .lesson_docs_title{
    margin-top: 48px;
    margin-bottom: 32px;
    padding: 24px 40px;
  }

  .lesson_docs_title:first-child{
    margin-top: 0px;
  }

  div.dwd_background.mb24{
    padding: 15px;
    border: 1px solid #ccc;
    margin-top: -1px;
    text-align: left;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 24px;
  }
  /*教科書一覧ページ部分*/


  /*フッターウィジェットエリア*/
  .footer-widgets-container{
    margin-bottom: 32px;
  }
  .footer-container{
    padding-top: 28px;
    padding-bottom: 12px;
  }

  .footer-widgets-container h2, .footer-widgets-container ul li a{

  }

  .footer-widgets-container ul li{
    margin-bottom: 4px;
  }

  .footer_text{
    color: #fff;
    margin-bottom: 0px;
  }

  .footer-widget{
    padding-bottom: 16px;
  }

  .footer-widgets-container h2.footer-widgets-title{
    font-size: 20px;
  }
  .footer-widgets-container ul{
    padding-left: 0px;
  }

  .footer-widgets-container ul li a{
    font-size: 18px;
  }

  .footer-widgets-border{
    margin-top: 8px;
    margin-bottom: 16px;
  }
  /*フッターウィジェットエリア*/

  /*投稿エリア*/
  h1.post-title{
    font-size: 26px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #333;
  }
  /*投稿エリア*/
}

@media (min-width: 992px)  and (max-width:1199px){
  .content-box{
    width: 820px;
    margin-bottom:48px;
  }

  .b-radius{
    border-radius: 16px;
  }
  /*ナビゲーションメニュー*/
  .navbar-fixed{
  }
  .navbar-toggle{
  }
  .navbar{
    width: 100%;
    margin-bottom: 0px;
  }
  .nav-bar-box{
    /*width: 820px;*/
  }
  .navbar-brand.title{

  }

  .navbar-nav li.menu-item a{

  }

  .border_none{
    border:none;
  }

  .navbar-right-items{
    margin-right: 0px !important;
  }


  /*ナビゲーションメニュー*/

  /*ユーザープロフィール*/
  .profile-img-box{

  }
  .user-profile-box{
    padding:56px 48px;
  }

  .user-profile-img-card{
    width: 96px;
    height: 96px;
    display: block;
    margin: 0 auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 16px;
  }
  .profile-img-card {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }

  .profile-user-name{
    margin-bottom:0px;
  }


  .progress-box{
    margin-bottom: 24px;
  }



  /*ユーザープロフィール*/
  /*フロントーポスト部分*/
  .post-box-title{
    margin-top:0px;
    margin-bottom:32px;
    padding:24px 40px;

  }

  .single-post-box{

  }

  .single-post-content{
    padding: 16px;
    background: #fff;
  }
  .single-post-title{
    margin-bottom:8px;
  }

  .single-post-text{
    margin-bottom:8px;
    color: #999;
  }

  .single-post-link-text{
    padding: 8px 10px;
    font-size:16px;
  }

  /*フロントーポスト部分*/

  /*レッスンページ概要部分*/
  .page-overview-box{
    margin-top: -48px;
    padding:48px;
    padding-bottom: 0px;
  }

  .page-detail-box{
  }

  .detail-page-title,.page-title{
    font-weight: bold;
    font-size: 32px;
  }

  .lesson-detail-box{
    margin-bottom: 48px;
  }

  .lesson-label-parts{
    margin-right: 30px;
    padding: 8px 40px;
  }

  .content-box.mb0{
    margin-bottom:0px;
  }
  .lesson-box{
    padding-bottom: 0px;
  }
  .lesson-list-box{
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  }

  .row.display-flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
  }

  .lesson_link{
    color:#333;
    text-decoration: none;
  }

  .lesson_link:hover{
    text-decoration: none;
  }

  .lesson-list-status{
    margin-top: 30px;
    margin-bottom: 1px;
  }

  .lesson-list-status-complete-label,.lesson-list-status-label{
    font-size: 14px;
    padding: 5px 20px;
  }
  .lesson-list-status-label{
  }

  .lesson-list-status-complete-label{
  }

  .lesson-list-detail-box{
    border: 1px solid #ccc;
    padding: 16px 24px;
    padding-left: 32px;
  }

  .lesson-list-detail-box:last-child{
    margin-bottom:20px;
  }

  .lesson-list-detail-num-box{
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #275e9d;
    color: #fff;
  }

  .lesson-list-detail-num-box p{
    font-size: 20px;
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 8px;
  }

  .lesson-list-detail-desc-box h2{
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 16px;
  }

  .lesson-list-detail-desc-box p{
    margin-bottom: 0px;
    font-size: 14px;
    color: #aaa;
  }

  .lesson-bg-lock{
    opacity: 0.5;
  }

  .icon-lock-side-bar{
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    position: absolute;
    left: 50%;
    top: 50%;
  }
  .icon_lock{
    left: 45%;
    top: 50%;
    -webkit-transform: translateX(-45%);
    -moz-transform: translateX(-45%);
    transform: translateX(-45%);
    -webkit-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    transform: translateY(-45%);
  }

  .icon_lock{
    font-size: 100px;
  }

  .icon-lock-side-bar{
    font-size: 50px;
  }

  /*レッスンページ概要部分*/

  /*pdf-slider部分*/
  #gp-texts-docs-canvas-box{
  }

  .gp-back-black-right{
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
    background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x;
  }

  .gp-back-black-left{
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
    background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x;
  }

  .gp-texts-docs-left{
    top: 0;
    bottom: 0;
    left: 0;
    width: 40%;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    filter: alpha(opacity=50);
    opacity: .5;
  }

  .gp-texts-docs-right{
    top: 0;
    bottom: 0;
    right: 0;
    width: 40%;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    filter: alpha(opacity=50);
    opacity: .5;
  }

  .gp-arrow-position-left,.go-arrow-position-right{
    top: 45% !important;
    z-index: 5;
    font-size: 100px;
  }

  .gp-arrow-position-left{
    left:0;
  }


  .go-arrow-position-right{
    right:0;
  }

  #gp-prev,#gp-next,#the-canvas{
    width: 100%;
    height: 100%;
  }

  #gp-prev,#gp-next{
  }
  /*pdf-slider部分*/

  /*レッスンページ詳細部分*/

  .page-lesson-detail-box{
    margin-top: 48px;
  }

  .page-lesson-detail-box img{

    width: 100%;
  }

  .page-lesson-detail-box iframe{

    width: 100%;
  }


  .page-lesson-detail-box h2{
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 26px;
    padding: 12px 16px;
  }
  .page-lesson-detail-box h3{
    font-size: 20px;
    border-bottom: 2px solid #275e9d;
    margin-top: 32px;
    padding: 8px;
  }

  .page-lesson-detail-box p{
    margin-bottom: 24px;
  }

  .dwd_background{
    margin-left: 40px;
    margin-right: 40px;
    padding: 16px 24px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
    border: 1px solid #275e9d;
    margin-top: 32px;
    margin-bottom: 32px;
  }



  .lesson_btn_box{
    margin-top: 32px;
  }

  .lesson_btn_box button{
    margin-right:30px;
  }

  #send_quiz_answer_btn{
    margin-right:30px;
  }
  .lesson_btn_box .btn_design, .form-submit .btn_design, .btn_design, .btn_comp_design{
    padding: 10px 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #275e9d;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
  }

  .dwd_background:hover, .lesson_btn_box .btn_design:hover, .form-submit .btn_design:hover, .btn_design:hover, .btn_comp_design{
    border:1px solid #275e9d;
  }

  .lesson_btn_box .btn_comp_design{
    padding: 10px 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #275e9d;
  }

  .form-submit{
    text-align: center;
  }

  .area_forum{
    margin-bottom: 24px;
    padding: 16px 8px;
    padding-bottom: 40px;
  }

  .area_forum.first_comment{
    padding-bottom: 16px;
  }

  .area_forum:last-child{
    margin-bottom: 48px;
  }


  .list_head.js-acordion-action p{
    margin-bottom:0px;
    font-size: 18px;
  }

  .qna-btn{
    font-size:20px;
  }

  p.qna-title{
    margin-top: 12px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom:1px solid #333;
  }
  .list_body p, .list_body p span{
  }
  ul.children{
  }

  .area_forum.first_comment:last-child{
    margin-bottom: 48px;
  }


  /*レッスンページ詳細部分*/

  /*マイページ部分*/
  .my-page-top{
    padding: 56px 48px;
    padding-bottom: 24px;
  }
  .my-page-bottom{
    padding: 56px 48px;
    padding-top: 24px;
  }

  .my-page-user-title{
    margin-top: 0px;
    margin-bottom: 24px;
  }

  .mypage-user-name{
    margin-bottom: 0px;
  }

  .mypage-img-box{
  }

  .mypage-profile-img-card{
    width: 96px;
    height: 96px;
    margin-right: 24px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 16px;
  }
  /*マイページ部分*/

  /*カレンダー部分*/

  #calendarMenu{
    margin-bottom: 24px;
  }
  .calender_table{
    width: 100%;
  }
  .calendar-btn.calendar-move-day{

    padding: 0 16px;
    line-height: 30px;
    font-weight: 700;
    border-radius: 25px;
    border: 1px solid #ddd;
    font-size: 12px;
    margin-right: 5px;

  }

  .calendar-colors-green,.calendar-colors-orange,.calendar-colors-red,.calendar-colors-gray{
    width: 20px;
    height: 4px;
  }
  #menu-navi a, .calendar-render-range{
    margin-right: 6px;
  }

  #menu-navi a:last-child{

    margin-right: 20px;
  }

  .calendar-colors-text{
    margin-right: 20px;
  }

  .calendar-day-of-the-week-item{

    width: 14.285714285714286%;
    padding-left: 10px;
    padding-right: 0;
  }


  .calendar-day-of-the-week{
    border-top: 1px solid #e5e5e5;
    height: 31px;
    font-size: 16px;
    border-right:1px solid #e5e5e5;
    border-left:1px solid #e5e5e5;
  }

  .calendar-each-day-of-the-week{
    width: 100%;
    font-size: 16px;
  }

  .calendar-each-day-of-the-week-items{
    width:14.285714285714286%;
    font-size: 14px;
    border-right:1px solid #e5e5e5;
    border-left:1px solid #e5e5e5;
    border-top:1px solid #e5e5e5;
    padding-left:10px;
  }

  .calendar-each-day-of-the-week-items:last-child{

    border-bottom:1px solid #e5e5e5;
  }

  .holiday{
  }

  .calendar-box{
  }

  .container.relative{
  }

  .calendar-detail-box{
    width: 320px;
    padding:16px;
    padding-bottom: 0px;
  }

  .calendar-detail-box h2{

    margin-top: 0px;
    margin-bottom: 16px;
  }




  .calendar-border-red{
    border-top: 4px solid #c42d2e;
    margin-bottom: 0px;
  }

  .calendar-border-orange{
    border-top: 4px solid #ffbb3b;
    margin-bottom: 0px;
  }

  .calendar-border-green{
    border-top: 4px solid #4c9e3e;
    margin-bottom: 0px;
  }

  .calendar-border-gray{
    border-top: 4px solid #ccc;
    margin-bottom: 0px;
  }

  .calendar-border-text{
    font-size: 12px;
    margin-bottom:0px;
  }
  .calendar-edit-box{
    border-top: 1px solid #e5e5e5;
    margin-left:  2px;
    margin-right:  2px;
    margin-top:  16px;
  }

  .calendar-edit-box .col-md-6{
    padding-left: 0px;
    padding-right: 0px;
  }
  .calendar-edit-text{
    border-right: 1px solid #e5e5e5;
  }
  .calendar-register-text, .calendar-edit-text, .calendar-delete-text{
    margin:8px;
  }

  .calendar-schedule-box a.dom-box{
  }
  .calendar-schedule-box a.dom-box span.calendar-schedule-text{
    font-size: 16px;
  }

  div.calendar-schedule-box a.dom-box span.red{
    width: 8px;
    height: 8px;
  }

  div.calendar-schedule-box a.dom-box span.orange{
    width: 8px;
    height: 8px;
  }

  div.calendar-schedule-box a.dom-box span.green{

    width: 8px;
    height: 8px;
  }

  div.calendar-schedule-box span.calendar-schedule-text.full.gray{
    width: 8px !important;
    height: 8px !important;
  }
  div.calendar-schedule-box a.dom-box span.gray{

    background-color: #ccc;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
  }

  .calendar-schedule-box{
    margin-bottom: 4px;
  }

  /*カレンダー部分*/

  /*カレンダー編集フォーム部分*/
  .form-box{
    width: 600px;
    margin: 0px auto;
  }

  .form-title{
    margin-top:0px;
    margin-bottom: 32px;
    font-weight: bold;
  }

  .form-parts{
    margin-bottom: 24px;
  }

  .form-parts:last-child{
    margin-bottom: 32px;
  }

  .form-text{
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: bold;

  }

  .form-input,.form_textarea{
    padding: 8px 16px;
    border-radius: 10px;
    border: solid 1px #ccc;

  }
  .form-input{

    width: 285px;
  }

  #user-edit-info .form-parts .form-input{
    width:100%;
  }

  .form_textarea{
    width: 590px;
  }

  .form-btn.btn_design{
    margin-bottom: 0px;
    margin-top: 0px;
  }


  /*カレンダー編集フォーム部分*/

  /*質問フォーム部分*/
  .comment-area.qna{
    width: 100%;
    height: 100%;
  }
  /*質問フォーム部分*/

  /*登録フォーム部分*/
  #guild_press_register_form{
    background: #fff;
    padding: 16px 24px;
    width: 600px;
    margin: 0 auto;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  }

  #guild_press_register_form #payment-form .form-group input.btn_design{
    width: 100%;
  }

  .form-group .form-input{
    width: 100%;
  }

  /*登録フォーム部分*/

  /*ログインフォーム部分*/
  .card.card-container{
    background: #fff;
    padding: 48px 24px;
    width: 600px;
    margin: 0 auto;
  }

  .form-signin{
    margin-top: 32px;
  }

  .form-control{
    margin-bottom: 16px;
  }

  #remember{
    margin-top: 0px;
    margin-bottom: 32px;
  }

  .btn.btn-lg.btn-primary.btn-block.btn-signin{
    background: #275e9d;
    border: 1px solid #275e9d;
  }

  /*ログインフォーム部分*/

  /*決済フォーム部分*/

  .width100 {
    width: 100%;
  }

  .border_gray {
    border: 2px solid #dddddd;
  }

  .p2010 {
    padding: 20px 10px;
  }
  .tbody_default th {
    border-right: 2px solid #dddddd;
  }

  .btn_desgin {
    width: 100%;
    font-size: 1em;
    line-height: 1.5;
    font-weight: bold;
    position: relative;
    background-color: #275e9d;
    color: #fff;
    border-radius: 0.2em;
    /* box-shadow: 0 4px 0 #d34e4e; */
    border: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .09);
    transition: 0.3s;
  }

  /*決済フォーム部分*/

  /*ウィジェット部分*/
  .widget-box{

  }



  .widget-detail-box{
    padding:8px 16px;
  }

  .widget-detail-box .center img.user-profile-img-card{
    margin-top: 16px;
  }
  .widget-title{
    font-size: 20px;
    font-weight: bold;
    border-bottom:2px solid #275e9d;
    margin-top: 32px;
    padding: 8px;
  }

  .user-progress-box{
    padding: 8px;
  }
  .user-progress-box .b-radius{
    margin-bottom:8px;
  }

  .prfoile-widget p{
  }

  .widget-detail-lesson-top{
    margin-top: 24px;
  }
  .widget-detail-lesson{
    border-bottom:1px solid #aaa;
    margin-bottom: 24px;
  }

  .widget-detail-lesson:last-child{
    margin-bottom:10px;

  }
  .lesson-list-detail-desc-box h2{
    margin-bottom: 5px;
  }

  .post-lists{

    margin-bottom: 24px;
  }
  /*ウィジェット部分*/

  /*教科書一覧ページ部分*/
  .lesson_docs_title{
    margin-top: 48px;
    margin-bottom: 32px;
    padding: 24px 40px;
  }

  .lesson_docs_title:first-child{
    margin-top: 0px;
  }

  div.dwd_background.mb24{
    padding: 15px;
    border: 1px solid #ccc;
    margin-top: -1px;
    text-align: left;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 24px;
  }
  /*教科書一覧ページ部分*/


  /*フッターウィジェットエリア*/
  .footer-widgets-container{
    margin-bottom:32px;
  }
  .footer-conta12er{
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-widgets-container h2, .footer-widgets-container ul li a{

  }

  .footer-widgets-container ul li{
    margin-bottom: 8px;
  }

  .footer_text{
    color: #fff;
    margin-bottom: 0px;
  }

  .footer-widget{
    padding-bottom: 16px;
  }



  .footer-widgets-container h2.footer-widgets-title{
    font-size: 20px;
  }
  .footer-widgets-container ul{
    padding-left: 0px;
  }

  .footer-widgets-container ul li a{
    font-size: 18px;
  }

  .footer-widgets-border{
    margin-top: 8px;
    margin-bottom: 16px;
  }
  /*フッターウィジェットエリア*/

  /*投稿エリア*/
  h1.post-title{
    font-size: 26px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #333;
  }
  /*投稿エリア*/

}
@media (min-width: 1200px){
  .content-box{
    width: 1100px;
    margin-bottom:48px;
  }

  .content-box.post-lists{
    margin-bottom:24px;
  }

  .b-radius{
    border-radius: 16px;
  }
  /*ナビゲーションメニュー*/
  .navbar-fixed{
  }
  .navbar-toggle{
  }
  .navbar{
    width: 100%;
    margin-bottom: 0px;
  }
  .nav-bar-box{
    /*width: 970px;*/
    width: 1100px;
  }
  .navbar-brand.title{

  }

  .navbar-nav li.menu-item a{

  }

  .border_none{
    border:none;
  }

  .navbar-right-items{
    margin-right: 0px !important;
  }


  /*ナビゲーションメニュー*/

  /*ユーザープロフィール*/
  .profile-img-box{

  }
  .user-profile-box{
    padding: 56px 48px 20px;
  }

  .user-profile-img-card{
    width: 96px;
    height: 96px;
    display: block;
    margin: 0 auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 16px;
  }
  .profile-img-card {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }

  .profile-user-name{
    margin-bottom:0px;
  }


  .progress-box{
    margin-bottom: 24px;
  }



  /*ユーザープロフィール*/

  /*フロントーポスト部分*/

  .post-box-title{
    margin-bottom: 32px;
    padding: 14px 20px;
    border-radius: 5px;
  }

  .single-post-box{

  }

  .single-post-content{
    padding: 16px;
    background: #fff;
  }


  .single-post-title{
    margin-bottom:8px;
  }

  .single-post-text{
    font-size: 14px;
    margin-bottom:8px;
    color: #999;
  }

  .single-post-link-text{
    padding: 8px 10px;
    font-size:14px;
  }

  /*フロントーポスト部分*/

  /*レッスンページ概要部分*/
  .page-overview-box{
    margin-top: -48px;
    padding:48px;
    padding-bottom: 0px;
  }

  .page-detail-box{
  }

  .detail-page-title,.page-title{
    font-weight: bold;
    font-size: 32px;
  }

  .lesson-detail-box{
    margin-bottom: 48px;
  }

  .lesson-label-parts{
    margin-right: 30px;
    padding: 8px 40px;
  }

  .content-box.mb0{
    margin-bottom:0px;
  }
  .lesson-box{
    padding-bottom: 0px;
  }
  .lesson-list-box{
    background: #fff;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
  }

  .row.display-flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
  }

  .lesson_link{
    color:#333;
    text-decoration: none;
  }

  .lesson_link:hover{
    text-decoration: none;
  }

  .lesson-list-status{
    margin-top: 30px;
    margin-bottom: 1px;
  }

  .lesson-list-status-complete-label,.lesson-list-status-label{
    font-size: 14px;
    padding: 5px 20px;
  }
  .lesson-list-status-label{
  }

  .lesson-list-status-complete-label{
  }

  .lesson-list-detail-box{
    border:1px solid #ccc;
    padding: 16px 24px;
    padding-left: 32px;
  }

  .lesson-list-detail-box:last-child{
    margin-bottom:20px;
  }

  .lesson-list-detail-num-box{
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #275e9d;
    color: #fff;
  }

  .lesson-list-detail-num-box p{
    font-size: 20px;
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 8px;
  }

  .lesson-list-detail-desc-box h2{
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 16px;
  }

  .lesson-list-detail-desc-box p{
    margin-bottom: 0px;
    font-size: 14px;
    color: #aaa;
  }

  .lesson-bg-lock{
    opacity: 0.5;
  }

  .icon-lock-side-bar{
   -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    position: absolute;
    left: 50%;
    top: 50%;
  }
  .icon_lock{
    left: 45%;
    top: 50%;
    -webkit-transform: translateX(-45%);
    -moz-transform: translateX(-45%);
    transform: translateX(-45%);
    -webkit-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    transform: translateY(-45%);
  }

  .icon_lock{
    font-size: 100px;
  }

  .icon-lock-side-bar{
    font-size: 50px;
  }

  /*レッスンページ概要部分*/

  /*pdf-slider部分*/
  #gp-texts-docs-canvas-box{
  }

  .gp-back-black-right{
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
    background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x;
  }

  .gp-back-black-left{
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
    background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x;
  }

  .gp-texts-docs-left{
    top: 0;
    bottom: 0;
    left: 0;
    width: 40%;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    filter: alpha(opacity=50);
    opacity: .5;
  }

  .gp-texts-docs-right{
    top: 0;
    bottom: 0;
    right: 0;
    width: 40%;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    filter: alpha(opacity=50);
    opacity: .5;
  }

  .gp-arrow-position-left,.go-arrow-position-right{
    top: 45% !important;
    z-index: 5;
    font-size: 100px;
  }

  .gp-arrow-position-left{
    left:0;
  }


  .go-arrow-position-right{
    right:0;
  }

  #gp-prev,#gp-next,#the-canvas{
    width: 100%;
    height: 100%;
  }

  #gp-prev,#gp-next{
  }
  /*pdf-slider部分*/

  /*レッスンページ詳細部分*/

  .page-lesson-detail-box{
    margin-top: 48px;
  }

  .page-lesson-detail-box img{

    width: 100%;
  }

  .page-lesson-detail-box iframe{

    width: 100%;
  }


  .page-lesson-detail-box h2{
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 26px;
    padding: 12px 16px;
  }
  .page-lesson-detail-box h3{
    font-size: 20px;
    border-bottom: 2px solid #275e9d;
    margin-top: 32px;
    padding: 8px;
  }

  .page-lesson-detail-box p{
    margin-bottom: 24px;
  }

  .dwd_background{
    margin-left: 40px;
    margin-right: 40px;
    padding: 16px 24px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
    border: 1px solid #275e9d;
    margin-top: 32px;
    margin-bottom: 32px;
  }



  .lesson_btn_box{
    margin-top: 32px;
  }

  .lesson_btn_box button{
    margin-right:30px;
  }

  #send_quiz_answer_btn{
    margin-right:30px;
  }
  .lesson_btn_box .btn_design, .form-submit .btn_design, .btn_design, .btn_comp_design{
    padding: 10px 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #275e9d;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
  }

  .dwd_background:hover, .lesson_btn_box .btn_design:hover, .form-submit .btn_design:hover, .btn_design:hover, .btn_comp_design{
    border:1px solid #275e9d;
  }

  .lesson_btn_box .btn_comp_design{
    padding: 10px 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #275e9d;
  }

  .form-submit{
    text-align: center;
  }

  .area_forum{
    margin-bottom: 24px;
  }

  .area_forum{
    padding: 20px 16px;
    padding-bottom: 40px;
  }

  .area_forum.first_comment{
    padding-bottom: 16px;
  }

  .list_head.js-acordion-action p{
    margin-bottom:0px;
    font-size: 20px;
  }

  .qna-btn{
    font-size:20px;
  }

  p.qna-title{
    margin-top: 12px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom:1px solid #333;
  }
  .list_body p, .list_body p span{
  }
  ul.children{
  }

  .area_forum.first_comment:last-child{
    margin-bottom: 48px;
  }


  /*レッスンページ詳細部分*/

  /*マイページ部分*/
  .my-page-top{
    padding: 56px 48px;
    padding-bottom: 24px;
  }
  .my-page-bottom{
    padding: 56px 48px;
    padding-top: 24px;
  }

  .my-page-user-title{
    margin-top: 0px;
    margin-bottom: 24px;
  }

  .mypage-user-name{
    margin-bottom: 0px;
  }

  .mypage-img-box{
  }

  .mypage-profile-img-card{
    width: 96px;
    height: 96px;
    margin-right: 24px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 16px;
  }
  /*マイページ部分*/

  /*カレンダー部分*/

  #calendarMenu{
    margin-bottom: 24px;
  }
  .calender_table{
    width: 100%;
  }
  .calendar-btn.calendar-move-day{

    padding: 0 16px;
    line-height: 30px;
    font-weight: 700;
    border-radius: 25px;
    border: 1px solid #ddd;
    font-size: 12px;
    margin-right: 5px;

  }

  .calendar-colors-green,.calendar-colors-orange,.calendar-colors-red,.calendar-colors-gray{
    width: 20px;
    height: 4px;
  }
  #menu-navi a, .calendar-render-range{
    margin-right: 6px;
  }

  #menu-navi a:last-child{

    margin-right: 20px;
  }

  .calendar-colors-text{
    margin-right: 20px;
  }

  .calendar-day-of-the-week-item{

    width: 14.285714285714286%;
    padding-left: 10px;
    padding-right: 0;
  }


  .calendar-day-of-the-week{
    border-top: 1px solid #e5e5e5;
    height: 31px;
    font-size: 16px;
    border-right:1px solid #e5e5e5;
    border-left:1px solid #e5e5e5;
  }

  .calendar-each-day-of-the-week{
    width: 100%;
    font-size: 16px;
  }

  .calendar-each-day-of-the-week-items{
    width:14.285714285714286%;
    font-size: 14px;
    border-right:1px solid #e5e5e5;
    border-left:1px solid #e5e5e5;
    border-top:1px solid #e5e5e5;
    padding-left:10px;
  }

  .calendar-each-day-of-the-week-items:last-child{

    border-bottom:1px solid #e5e5e5;
  }

  .holiday{
  }

  .calendar-box{
  }

  .container.relative{
  }

  .calendar-detail-box{
    width: 320px;
    padding:16px;
    padding-bottom: 0px;
  }

  .calendar-detail-box h2{

    margin-top: 0px;
    margin-bottom: 16px;
  }




  .calendar-border-red{
    border-top: 4px solid #c42d2e;
    margin-bottom: 0px;
  }

  .calendar-border-orange{
    border-top: 4px solid #ffbb3b;
    margin-bottom: 0px;
  }

  .calendar-border-green{
    border-top: 4px solid #4c9e3e;
    margin-bottom: 0px;
  }

  .calendar-border-gray{
    border-top: 4px solid #ccc;
    margin-bottom: 0px;
  }

  .calendar-border-text{
    font-size: 12px;
    margin-bottom:0px;
  }
  .calendar-edit-box{
    border-top: 1px solid #e5e5e5;
    margin-left:  2px;
    margin-right:  2px;
    margin-top:  16px;
  }

  .calendar-edit-box .col-md-6{
    padding-left: 0px;
    padding-right: 0px;
  }
  .calendar-edit-text{
    border-right: 1px solid #e5e5e5;
  }
  .calendar-register-text, .calendar-edit-text, .calendar-delete-text{
    margin:8px;
  }

  .calendar-schedule-box a.dom-box{
  }
  .calendar-schedule-box a.dom-box span.calendar-schedule-text{
    font-size: 16px;
  }

  div.calendar-schedule-box a.dom-box span.red{
    width: 8px;
    height: 8px;
  }

  div.calendar-schedule-box a.dom-box span.orange{
    width: 8px;
    height: 8px;
  }

  div.calendar-schedule-box a.dom-box span.green{

    width: 8px;
    height: 8px;
  }

  div.calendar-schedule-box span.calendar-schedule-text.full.gray{
    width: 8px !important;
    height: 8px !important;
  }
  div.calendar-schedule-box a.dom-box span.gray{

    background-color: #ccc;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
  }

  .calendar-schedule-box{
    margin-bottom: 4px;
  }

  /*カレンダー部分*/

  /*カレンダー編集フォーム部分*/
  .form-box{
    width: 600px;
    margin: 0px auto;
  }

  .form-title{
    margin-top:0px;
    margin-bottom: 32px;
    font-weight: bold;
  }

  .form-parts{
    margin-bottom: 24px;
  }

  .form-parts:last-child{
    margin-bottom: 32px;
  }

  .form-text{
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: bold;

  }

  .form-input,.form_textarea{
    padding: 8px 16px;
    border-radius: 10px;
    border: solid 1px #ccc;

  }
  .form-input{
    width: 285px;
  }
  .form_textarea{
    width: 590px;
  }

  #user-edit-info .form-parts .form-input{
    width:100%;
  }

  .form-btn.btn_design{
    margin-bottom: 0px;
    margin-top: 0px;
  }


  /*カレンダー編集フォーム部分*/

  /*質問フォーム部分*/
  .comment-area.qna{
    width: 100%;
    height: 100%;
  }
  /*質問フォーム部分*/

  /*登録フォーム部分*/
  #guild_press_register_form{
    background: #fff;
    padding: 16px 24px;
    width: 600px;
    margin: 0 auto;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  }

  #guild_press_register_form #payment-form .form-group input.btn_design{
    width: 100%;
  }

  .form-group .form-input{
    width: 100%;
  }

  /*登録フォーム部分*/

  /*ログインフォーム部分*/
  .card.card-container{
    background: #fff;
    padding: 48px 24px;
    width: 600px;
    margin: 0 auto;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  }

  .form-signin{
    margin-top: 32px;
  }

  .form-control{
    margin-bottom: 16px;
  }

  #remember{
    margin-top: 0px;
    margin-bottom: 32px;
  }

  .btn.btn-lg.btn-primary.btn-block.btn-signin{
    background: #275e9d;
    border: 1px solid #275e9d;
  }

  /*ログインフォーム部分*/

  /*決済フォーム部分*/

  .width100 {
    width: 100%;
  }

  .border_gray {
    border: 2px solid #dddddd;
  }

  .p2010 {
    padding: 20px 10px;
  }
  .tbody_default th {
    border-right: 2px solid #dddddd;
  }

  .btn_desgin {
    width: 100%;
    font-size: 1em;
    line-height: 1.5;
    font-weight: bold;
    position: relative;
    background-color: #275e9d;
    color: #fff;
    border-radius: 0.2em;
    /* box-shadow: 0 4px 0 #d34e4e; */
    border: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .09);
    transition: 0.3s;
  }

  /*決済フォーム部分*/

  /*ウィジェット部分*/
  .widget-box{

  }



  .widget-detail-box{
    padding:8px 16px;
  }

  .widget-detail-box .center img.user-profile-img-card{
    margin-top: 16px;
  }
  .widget-title{
    font-size: 20px;
    font-weight: bold;
    border-bottom:2px solid #275e9d;
    margin-top: 32px;
    padding: 8px;
  }

  .user-progress-box{
    padding: 8px;
  }
  .user-progress-box .b-radius{
    margin-bottom:8px;
  }

  .prfoile-widget p{
  }

  .widget-detail-lesson-top{
    margin-top: 24px;
  }
  .widget-detail-lesson{
    border-bottom:1px solid #aaa;
    margin-bottom: 24px;
  }

  .widget-detail-lesson:last-child{
    margin-bottom:10px;

  }
  .lesson-list-detail-desc-box h2{
    margin-bottom: 5px;
  }

  .post-lists{

    margin-bottom: 24px;
  }
  /*ウィジェット部分*/

  /*教科書一覧ページ部分*/
  .lesson_docs_title{
    margin-top: 48px;
    margin-bottom: 32px;
    padding: 24px 40px;
  }

  .lesson_docs_title:first-child{
    margin-top: 0px;
  }

  div.dwd_background.mb24{
    padding: 15px;
    border: 1px solid #ccc;
    margin-top: -1px;
    text-align: left;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 24px;
  }
  /*教科書一覧ページ部分*/

  /*フッターウィジェットエリア*/
  .footer-widgets-container{
    margin-bottom:32px;
    padding: 8px 16px;
  }
  .footer-container{
    padding-top: 28px;
    padding-bottom: 12px;
  }

  .footer-widgets-container h2, .footer-widgets-container ul li a{
  }

  .footer-widgets-container ul li{
    margin-bottom: 8px;
  }

  .footer_text{
    color: #fff;
    margin-bottom: 0px;
  }

  .footer-widget{
    padding-bottom: 16px;
  }

  .footer-widgets-container h2.footer-widgets-title{
    font-size: 20px;
  }
  .footer-widgets-container ul{
    padding-left: 0px;
  }

  .footer-widgets-container ul li a{
    font-size: 18px;
  }

  .footer-widgets-border{
    margin-top: 8px;
    margin-bottom: 16px;
  }
  /*フッターウィジェットエリア*/


  /*投稿エリア*/
  h1.post-title{
    font-size: 26px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #333;
  }
  /*投稿エリア*/
}





