/* heading */
/*---------------------------------*/
.pageTitle {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ababab;
  line-height: 140%;
}
@media only screen and (max-width: 767px) {
  .pageTitle {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 26px;
  }
}

.contTitleWrap {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #979c9b;
  line-height: 140%;
}
@media only screen and (max-width: 767px) {
  .contTitleWrap {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 16px;
  }
}
.contTitleWrap .contTitle {
  float: left;
}
.contTitleWrap p {
  float: right;
  line-height: 140% !important;
}

.greenBgTitle {
  background-color: #deedd6;
  font-size: 16px;
  font-weight: bold;
  background-image: url("../images/icon/blackCircle.png");
  background-repeat: no-repeat;
  background-size: 14px;
  line-height: 140%;
  color: #2c3a38;
  background-position: 20px center;
  padding: 20px 20px 20px 45px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .greenBgTitle {
    background-position: 10px center;
    padding: 20px 10px 20px 35px;
  }
}

/* text */
/*---------------------------------*/
/* btn */
/*---------------------------------*/
.btnWrap {
  text-align: center;
  margin-bottom: 40px;
  margin-top: -20px;
}
.btnWrap + .btnWrap {
  margin-top: 20px;
}
.btnWrap a {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .btnWrap a {
    width: 100%;
  }
}

.ctaBtnWrap {
  text-align: center;
}
.ctaBtnWrap .ctaBtn {
  text-align: center;
}

.ctaBtn {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background-color: #54b420;
  color: #fff !important;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 20px 35px;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 180%;
}
a.ctaBtn span {
  color: #fff;
}
.ctaBtn:hover {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #2b8200;
}
.ctaBtn:active,
.ctaBtn:focus,
.ctaBtn:visited {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .ctaBtn {
    text-align: left;
    width: 100%;
  }
}
.ctaBtn span {
  background-image: url("../images/icon/blank_white.png");
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-background-size: 10px;
  -moz-background-size: 10px;
  -ms-background-size: 10px;
  -o-background-size: 10px;
  background-size: 10px;
  padding-left: 20px;
}

/* pager */
/*---------------------------------*/
.pagerArea {
  margin-top: 30px;
  text-align: center;
}
.pagerArea a {
  color: #3399cc;
}
.pagerArea .pcPager .page-numbers {
  margin: 0 10px;
}
.pagerArea .pcPager .page-numbers.current {
  font-weight: bold;
  color: #2c3a38;
}
.pagerArea .pcPager .prev,
.pagerArea .pcPager .next {
  background-repeat: no-repeat;
  -webkit-background-size: 10px;
  -moz-background-size: 10px;
  -ms-background-size: 10px;
  -o-background-size: 10px;
  background-size: 10px;
}
.pagerArea .pcPager .prev {
  margin-right: 25px;
  background-image: url("../images/icon/prev.png");
  background-position: left center;
  padding-left: 15px;
}
.pagerArea .pcPager .next {
  margin-left: 25px;
  background-image: url("../images/icon/next.png");
  background-position: right center;
  padding-right: 15px;
}
.pagerArea .pcPager a:hover {
  text-decoration: underline;
}
.pagerArea .spPager {
  display: table;
  width: 100%;
}
.pagerArea .spPager .page-numbers {
  display: table-cell;
  width: 33%;
}
.pagerArea .spPager .prev a,
.pagerArea .spPager .next a {
  background-repeat: no-repeat;
  -webkit-background-size: 10px;
  -moz-background-size: 10px;
  -ms-background-size: 10px;
  -o-background-size: 10px;
  background-size: 10px;
}
.pagerArea .spPager .prev {
  text-align: left;
}
.pagerArea .spPager .prev a {
  padding-left: 15px;
  background-image: url("../images/icon/prev.png");
  background-position: left center;
}
.pagerArea .spPager .next {
  text-align: right;
}
.pagerArea .spPager .next a {
  background-image: url("../images/icon/next.png");
  background-position: right center;
  padding-right: 15px;
}

/* column */
/*---------------------------------*/
.sectionBlock {
  margin-bottom: 40px;
}

.leftBlock {
  float: left;
}
@media only screen and (max-width: 767px) {
  .leftBlock {
    float: none;
  }
}

.rightBlock {
  float: right;
}
@media only screen and (max-width: 767px) {
  .rightBlock {
    float: none;
  }
}

.text {
  line-height: 180%;
}
@media only screen and (max-width: 767px) {
  .text {
    width: 94%;
    margin: 0 auto;
  }
}

.textMax {
  width: 100%;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .textMax {
    width: 94%;
  }
}

.caption {
  font-size: 12px;
  margin-top: 3px;
  line-height: 150%;
}
@media only screen and (max-width: 767px) {
  .caption {
    text-align: center;
  }
}

.middleHeading {
  font-weight: bold;
  border-left: 3px solid #ababab;
  font-size: 14px;
  padding: 13px 0 13px 17px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .middleHeading {
    padding: 8px 0 8px 17px;
  }
}

.column1 .img {
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .column1 .img {
    margin-bottom: 15px;
  }
}

.column2 .leftBlock,
.column2 .rightBlock {
  width: 350px;
}
@media only screen and (max-width: 767px) {
  .column2 .leftBlock,
  .column2 .rightBlock {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .column2 .leftBlock {
    margin-bottom: 20px;
  }
}
.column2 .img {
  width: 350px;
}
@media only screen and (max-width: 767px) {
  .column2 .img {
    width: 100%;
  }
}
.column2 .text {
  width: 350px;
}
@media only screen and (max-width: 767px) {
  .column2 .text {
    width: 94%;
  }
}
.column2 .textMax {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .column2 .textMax {
    width: 94%;
  }
}
@media only screen and (max-width: 767px) {
  .column2.imgLeft .img {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .column2.imgRight .img {
    margin-bottom: 15px;
  }
}
.column2.img2Block .imgWrap {
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .column2.img2Block .imgWrap {
    margin-bottom: 15px;
  }
  .column2.img2Block .imgWrap .img:first-child {
    margin-bottom: 15px;
  }
}
.column2.img2Block .text {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .column2.img2Block .text {
    width: 94%;
  }
}
@media only screen and (max-width: 767px) {
  .column2 .withCaptionBox .leftBlock {
    margin-bottom: 20px;
  }
}
.column2 .grayBack .textWrap {
  background-color: #f5f5f5;
  padding: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.column2 .grayBack .textWrap .middleHeading {
  font-weight: bold;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 15px;
  padding: 0;
  border: none;
}
@media only screen and (max-width: 767px) {
  .column2 .grayBack .textWrap .middleHeading {
    font-size: 16px;
  }
}
.column2 .grayBack .textWrap .text {
  width: 100%;
}
.column2 .grayBack .textWrap .text .line2 {
  height: 50px;
}
@media only screen and (max-width: 767px) {
  .column2 .grayBack .textWrap .text .line2 {
    height: auto;
  }
}
.column2 .grayBack .textWrap .text .line3 {
  height: 75px;
}
@media only screen and (max-width: 767px) {
  .column2 .grayBack .textWrap .text .line3 {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .column2 .grayBack .textWrap {
    padding: 15px;
  }
}

.column3 .imgWrap {
  float: left;
  width: 230px;
  margin-left: 15px;
}
@media only screen and (max-width: 767px) {
  .column3 .imgWrap {
    width: 48.5%;
    margin-left: 3%;
  }
  .column3 .imgWrap:nth-child(2n + 1) {
    margin-left: 0;
  }
  .column3 .imgWrap:nth-child(n + 3) {
    margin-top: 3%;
  }
}
.column3 .imgWrap:first-child {
  margin-left: 0;
}

/* table */
/*---------------------------------*/
.tableWrap .table .column1table td {
  text-align: left;
}
.tableWrap .table .column2table th {
  width: 180px;
}
@media only screen and (max-width: 767px) {
  .tableWrap .table .column2table th {
    width: auto;
  }
}
.tableWrap .table .column2table th,
.tableWrap .table .column2table td {
  text-align: left;
}

/* profile */
/*---------------------------------*/
ul .profileBlock {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}
ul .profileBlock:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
ul .profileBlock .profPhoto {
  float: left;
  margin-right: 25px;
  width: 135px;
}
@media only screen and (max-width: 767px) {
  ul .profileBlock .profPhoto {
    float: none;
    margin-right: 0;
    width: 90px;
    padding-right: 15px;
  }
}
ul .profileBlock .profText {
  float: left;
  width: 560px;
}
@media only screen and (max-width: 767px) {
  ul .profileBlock .profText {
    float: none;
    width: 94%;
    margin: 0 auto;
  }
}
ul .profileBlock .profText .nameBoxWrap {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #979c9b;
}
@media only screen and (max-width: 767px) {
  ul .profileBlock .profText .nameBoxWrap {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  ul .profileBlock .profText .nameBoxWrap .nameBox {
    display: table;
    width: 100%;
  }
  ul .profileBlock .profText .nameBoxWrap .nameBox .nameBoxInner {
    display: table-cell;
    vertical-align: middle;
  }
  ul .profileBlock .profText .nameBoxWrap .nameBox .nameBoxInner:nth-child(2) {
    width: 70%;
  }
}
ul .profileBlock .profText .nameBoxWrap .role {
  color: #6f9d82;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  ul .profileBlock .profText .nameBoxWrap .role {
    font-size: 10px;
  }
}
ul .profileBlock .profText .nameBoxWrap .name {
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  ul .profileBlock .profText .nameBoxWrap .name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  ul .profileBlock .profText .nameBoxWrap .name .phonetic {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  ul .profileBlock .profText .nameBoxWrap .message {
    margin-top: 15px;
  }
}
ul .profileBlock .profText .history {
  line-height: 180%;
}
ul .profileBlock .profText .history ul {
  margin-left: 1em;
}
ul .profileBlock .profText .history ul li {
  list-style: outside none disc;
  list-style: initial;
}

.courseIntro {
  border: 8px solid #ccc;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 40px;
}
.courseIntro .tableDl {
  margin-bottom: 8px;
}
.courseIntro .tableDl:last-of-type {
  margin-bottom: 0px;
}
.courseIntro .tableDl dt {
  width: 15%;
}
.courseIntro .tableDl dd {
  width: 85%;
}

.column2.camp_column2 .leftBlock.cw_1 {
  width: 88px;
}
.column2.camp_column2 .leftBlock .text {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .leftBlock.cw_1 {
    width: 100%;
  }
}
.column2.camp_column2 .leftBlock.cw_2 {
  width: 186px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .leftBlock.cw_2 {
    width: 100%;
  }
}
.column2.camp_column2 .leftBlock.cw_3 {
  width: 284px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .leftBlock.cw_3 {
    width: 100%;
  }
}
.column2.camp_column2 .leftBlock.cw_4 {
  width: 382px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .leftBlock.cw_4 {
    width: 100%;
  }
}
.column2.camp_column2 .leftBlock.cw_5 {
  width: 480px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .leftBlock.cw_5 {
    width: 100%;
  }
}
.column2.camp_column2 .leftBlock.cw_6 {
  width: 578px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .leftBlock.cw_6 {
    width: 100%;
  }
}
.column2.camp_column2 .leftBlock.cw_7 {
  width: 676px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .leftBlock.cw_7 {
    width: 100%;
  }
}
.column2.camp_column2 .leftBlock.cw_8 {
  width: 774px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .leftBlock.cw_8 {
    width: 100%;
  }
}
.column2.camp_column2 .leftBlock.cw_9 {
  width: 872px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .leftBlock.cw_9 {
    width: 100%;
  }
}
.column2.camp_column2 .leftBlock.cw_10 {
  width: 970px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .leftBlock.cw_10 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .leftBlock {
    width: 100%;
  }
}
.column2.camp_column2 .leftBlock > img {
  width: 100%;
}
.column2.camp_column2 .rightBlock.cw_1 {
  width: 88px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .rightBlock.cw_1 {
    width: 100%;
  }
}
.column2.camp_column2 .rightBlock.cw_2 {
  width: 186px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .rightBlock.cw_2 {
    width: 100%;
  }
}
.column2.camp_column2 .rightBlock.cw_3 {
  width: 284px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .rightBlock.cw_3 {
    width: 100%;
  }
}
.column2.camp_column2 .rightBlock.cw_4 {
  width: 382px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .rightBlock.cw_4 {
    width: 100%;
  }
}
.column2.camp_column2 .rightBlock.cw_5 {
  width: 480px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .rightBlock.cw_5 {
    width: 100%;
  }
}
.column2.camp_column2 .rightBlock.cw_6 {
  width: 578px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .rightBlock.cw_6 {
    width: 100%;
  }
}
.column2.camp_column2 .rightBlock.cw_7 {
  width: 676px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .rightBlock.cw_7 {
    width: 100%;
  }
}
.column2.camp_column2 .rightBlock.cw_8 {
  width: 774px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .rightBlock.cw_8 {
    width: 100%;
  }
}
.column2.camp_column2 .rightBlock.cw_9 {
  width: 872px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .rightBlock.cw_9 {
    width: 100%;
  }
}
.column2.camp_column2 .rightBlock.cw_10 {
  width: 970px;
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .rightBlock.cw_10 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .rightBlock {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .column2.camp_column2 .leftBlock {
    margin-bottom: 20px;
  }
}

.column2.camp_column2 .text {
  width: 100%;
}
.column2.camp_column2 .img {
  width: 100%;
}
.column2.camp_column2 .img img {
  width: 100%;
  max-width: none;
}

.text a {
  color: #3399cc;
}
.text a:hover {
  text-decoration: underline;
}

/*20181106 Add*/
.CalendarHeading {
  font-weight: bold;
  font-size: 16px;
}
.CalendarHeading span {
  font-size: 12px;
  font-weight: normal;
}
.calendarWrap {
  margin-top: 24px;
}
.calendarWeek {
  display: flex;
}
.yobi {
}
.calendarWeek > div {
  width: calc(100% / 7);
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
  color: #666;
}
.calendarWeek > div span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  line-height: 30px;
}
.calendarWeek > div.practice {
}
.calendarWeek > div.practice span {
  background-color: #54b420;
  color: #fff;
}
.yobi.calendarWeek > div {
  color: #515151;
  font-weight: bold;
}
.yobi.calendarWeek > div:first-of-type {
  color: #b52121;
}
.yobi.calendarWeek > div:last-of-type {
  color: #2150b5;
}
.calendarAttention {
  margin-top: 24px;
  line-height: 1.5;
}
/*20181106 Add*/

/*20220324 Add*/
ul .profileBlock .profText .message {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  ul .profileBlock .profText .message {
    margin-top: 20px;
  }
}
/*20220324 Add*/

/*20220420 Add*/
@media only screen and (max-width: 767px) {
  .colorTable {
    table-layout: fixed;
  }
}
.colorTable .thead th {
  background-color: #deedd6;
}
.colorTable .tbody td:first-of-type {
  background-color: #f5f5f5;
}
/*20220420 Add*/

/* 20250415 Add */
html {
  scroll-behavior: smooth;
}
.CalendarHeading {
  scroll-margin-top: 150px;
}
.table-list-month-mc {
  display: none;
  /* display: flex; */
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 1px;
}
.table-list-month-mc .month-item-mc {
  width: 110px;
  margin-left: -1px;
  margin-top: -1px;
  padding: 10px;
  border: 1px solid #babfbe;
  text-align: center;
  transition: all .3s ease;
}
@media only screen and (max-width: 767px) {
  .table-list-month-mc .month-item-mc {
    width: 90px;
  }
}
.table-list-month-mc .month-item-mc:hover {
  background-color: #e1e5e4;
}
/* 20250415 Add */