@charset "UTF-8";

#site-wrap {
  clear: both;
  position: relative;
}

@media screen and (max-width: 999px) {
  #site-wrap {
    margin: 62px 0 0 0;
  }
}

header.site-head {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 20px;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 999px) {
  header.site-head {
    display: none;
  }
}

header.site-head .logo-block {
  width: 308px;
}

header.site-head .logo-block img {
  width: 100%;
}

header.site-head .gnav-block {
  width: calc(100% - 308px);
  padding: 0 0 0 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

header.site-head .gnav-block nav.contact-btn {
  width: 210px;
}

header.site-head .gnav-block nav.contact-btn a {
  display: block;
  padding: 10px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.5;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2985e1+0,0d41c2+100 */
  background: #2985e1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2985e1 0%, #0d41c2 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2985e1', endColorstr='#0d41c2', GradientType=0);
  /* IE6-9 */
}

header.site-head .gnav-block nav.nav-global {
  width: calc(100% - 210px);
}

header.site-head .gnav-block nav.nav-global ul {
  display: flex;
  justify-content: flex-end;
}

header.site-head .gnav-block nav.nav-global ul li {
  margin: 0 15px 0 0;
}

@media screen and (min-width: 1160px) {
  header.site-head .gnav-block nav.nav-global ul li {
    margin: 0 30px 0 0;
  }
}

header.site-head .gnav-block nav.nav-global ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #111111;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header.site-head .gnav-block nav.nav-global ul li a:hover {
  color: #114bc6;
}

.site-head-sp {
  display: block;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
}

@media screen and (min-width: 1000px) {
  .site-head-sp {
    display: none;
  }
}

.site-head-sp .header-innner-sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  padding: 15px;
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
}

.site-head-sp .header-innner-sp .site-logo-sp {
  height: 36px;
}

.site-head-sp .header-innner-sp .site-logo-sp img {
  height: 30px;
}

.site-head-sp .header-innner-sp .site-navi-icon {
  width: 30px;
}

.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 26px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #aaaaaa;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger span:nth-of-type(1) {
  top: 0px;
}

.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger span:nth-of-type(2) {
  top: 12px;
}

.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger span:nth-of-type(3) {
  bottom: 0px;
}

.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
  transform: translateY(12px) rotate(-45deg);
}

.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

.site-head-sp .header-innner-sp .site-navi-icon .menu-trigger.active span:nth-of-type(3) {
  opacity: 0;
}

.site-head-sp .site-nav-sp {
  display: none;
  width: 100%;
  height: calc(100vh - 66px);
  background: rgba(255, 255, 255, 0.95);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-family: "Noto Serif JP", serif;
}

.site-head-sp .site-nav-sp .navi-global-sp {
  display: block;
}

.site-head-sp .site-nav-sp .navi-global-sp ul.nav-list li {
  display: block;
  border-bottom: 1px solid #dddddd;
}

.site-head-sp .site-nav-sp .navi-global-sp ul.nav-list li:first-of-type {
  border-top: 1px solid #dddddd;
}

.site-head-sp .site-nav-sp .navi-global-sp ul.nav-list li a {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 100%;
  font-weight: 200;
  color: #333333;
  padding: 20px;
}

.site-head-sp .site-nav-sp .navi-global-sp ul.nav-list-sp {
  margin: 25px 0 0 0;
  text-align: center;
}

.site-head-sp .site-nav-sp .navi-global-sp ul.nav-list-sp li {
  display: inline-block;
  margin: 0 15px;
}

.main-visual-dir2__img {
  position: relative;
  font-size: 0px;
}

.main-visual-dir2__img>img {
  width: 100%;
}

.main-visual-dir2__img .title-block {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.5;
  color: #ffffff;
}

.main-visual-dir2__img .title-block h2 {
  font-size: 55px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .main-visual-dir2__img .title-block h2 {
    font-size: 24px;
  }
}

.main-visual-dir2__img .title-block p {
  font-size: 25px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .main-visual-dir2__img .title-block p {
    font-size: 14px;
  }
}

.main-visual-dir2 {
  padding: 140px 20px 65px 20px;
}

@media screen and (max-width: 999px) {
  .main-visual-dir2 {
    padding: 65px 20px 65px 20px;
  }
}

.main-visual-dir2.bg-schedule {
  background: url("../images/schedule/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2.bg-training {
  background: url("../images/training/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2.bg-news {
  background: url("../images/news/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2.bg-blog {
  background: url("../images/blog/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2.bg-book {
  background: url("../images/book/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2.bg-recruit {
  background: url("../images/recruit/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2.bg-line {
  background: url("../images/line/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2.bg-company {
  background: url("../images/company/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2.bg-contact {
  background: url("../images/contact/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2.bg-privacy {
  background: url("../images/privacy/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2.bg-tokushoho {
  background: url("../images/tokushoho/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2.bg-customer-harassment {
  background: url("../images/customer-harassment/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2.bg-voice {
  background: url("../images/voice/main_bg.jpg") no-repeat center center;
  background-size: cover;
}

.main-visual-dir2 .title-block {
  text-align: center;
  line-height: 1.5;
  color: #ffffff;
}

.main-visual-dir2 .title-block h2 {
  font-size: 48px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .main-visual-dir2 .title-block h2 {
    font-size: 24px;
  }
}

.main-visual-dir2 .title-block p {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .main-visual-dir2 .title-block p {
    font-size: 14px;
  }
}

.page-main-content__wrap.pad-type {
  padding: 60px 20px;
}

.page-main-content__wrap .m-inner-content {
  max-width: 1000px;
  margin: 0 auto;
}

.pc-footer-nav {
  position: fixed;
  right: 0;
  top: 100px;
  z-index: 999;
}

@media screen and (max-width: 768px) {
  .pc-footer-nav {
    display: none;
  }
}

.pc-footer-nav ul li {
  display: block;
  font-size: 0px;
  line-height: 1;
}

.pc-footer-nav ul li a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pc-footer-nav ul li a:hover {
  opacity: 0.7;
}

.sp-footer-nav {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sp-footer-nav {
    display: block;
  }
}

.sp-footer-nav .f-inner {
  display: flex;
  width: 100%;
  height: 55px;
  box-sizing: border-box;
  background: #000043;
  border-top: 1px solid #ffffff;
}

.sp-footer-nav .f-inner .tel {
  width: 20%;
  height: 55px;
}

.sp-footer-nav .f-inner .tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 55px;
  padding: 5px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
}

.sp-footer-nav .f-inner .f-contact {
  width: 40%;
  height: 55px;
  box-sizing: border-box;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.sp-footer-nav .f-inner .f-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 55px;
  padding: 5px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  line-height: 1.25;
  font-weight: bold;
}

.sp-footer-nav .f-inner .free {
  width: 40%;
  height: 55px;
  box-sizing: border-box;
}

.sp-footer-nav .f-inner .free a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 55px;
  padding: 5px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  line-height: 1.25;
  font-weight: bold;
}

.footer-bnr-menu ul {
  display: flex;
  flex-wrap: wrap;
}

.footer-bnr-menu ul li {
  display: block;
  width: calc(100% / 3);
}

@media screen and (max-width: 768px) {
  .footer-bnr-menu ul li {
    width: 100%;
  }
}

.footer-bnr-menu ul li a {
  display: block;
  font-size: 0px;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-bnr-menu ul li a:hover {
  opacity: 0.7;
}

.footer-bnr-menu ul li a img {
  width: 100%;
}

.footer-bnr-links {
  padding: 50px 20px;
  background: #dfdfdf;
}

.footer-bnr-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bnr-links ul li {
  padding: 7px;
}

.footer-bnr-links ul li a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-bnr-links ul li a:hover {
  opacity: 0.7;
}

.footer-bnr-links ul li a img {
  max-width: 100%;
}

footer.site-footer {
  padding: 50px 20px;
  background: #005da3;
}

footer.site-footer .footer-information {
  display: flex;
}

@media screen and (max-width: 768px) {
  footer.site-footer .footer-information {
    display: block;
  }
}

footer.site-footer .footer-information .f-company-info {
  width: 380px;
  padding: 0 20px 0 0;
  box-sizing: border-box;
  color: #ffffff;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  footer.site-footer .footer-information .f-company-info {
    width: 100%;
    padding: 0 0 30px 0;
  }
}

footer.site-footer .footer-information .f-company-info .c-set {
  margin-bottom: 20px;
}

footer.site-footer .footer-information .f-company-info .c-set h5 {
  margin-bottom: 10px;
}

footer.site-footer .footer-information .f-company-info .c-set h5 img {
  max-width: 100%;
}

footer.site-footer .footer-information .f-company-info .c-set p {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  footer.site-footer .footer-information .f-company-info .c-set p {
    font-size: 14px;
  }
}

footer.site-footer .footer-information .f-company-info .t-bank {
  margin-bottom: 15px;
}

@media screen and (max-width: 999px) {
  footer.site-footer .footer-information .f-company-info .t-bank {
    font-size: 14px;
  }
}

footer.site-footer .footer-information .f-company-info .t-bank .icon img {
  max-width: 100%;
}

footer.site-footer .footer-information .f-company-info .japhic img {
  max-width: 100%;
}

footer.site-footer .footer-information .footer-nav__wrap {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 380px);
}

@media screen and (max-width: 768px) {
  footer.site-footer .footer-information .footer-nav__wrap {
    width: 100%;
    display: block;
  }
}

footer.site-footer .footer-information .footer-nav__wrap .footer-nav {
  display: block;
  margin-left: 50px;
}

@media screen and (max-width: 768px) {
  footer.site-footer .footer-information .footer-nav__wrap .footer-nav {
    width: 100%;
    margin: 0;
  }
}

footer.site-footer .footer-information .footer-nav__wrap .footer-nav ul li {
  padding: 2px 0;
}

footer.site-footer .footer-information .footer-nav__wrap .footer-nav ul li a {
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer.site-footer .footer-information .footer-nav__wrap .footer-nav ul li a:hover {
  opacity: 0.7;
}

footer.site-footer .footer-information .footer-nav__wrap .footer-nav ul li a::before {
  content: "≫";
  margin-right: 5px;
}

footer.site-footer .copyright {
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  footer.site-footer .copyright {
    padding-bottom: 60px;
  }
}

footer.site-footer .copyright p {
  font-size: 10px;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
}

.pagination__wrap .pager-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pagination__wrap .pager-inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pagination__wrap .pager-inner ul li {
  margin: 7px;
  font-size: 14px;
  font-weight: bold;
}

.pagination__wrap .pager-inner ul li span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #2b32be;
  text-decoration: none;
  color: #ffffff;
  background: #2b32be;
  font-weight: bold;
}

.pagination__wrap .pager-inner ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #2b32be;
  text-decoration: none;
  color: #666666;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pagination__wrap .pager-inner ul li a:hover {
  color: #ffffff;
  background: #2b32be;
  border: 2px solid #2b32be;
}

.pagination__single {
  text-align: center;
}

.pagination__single a {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  padding: 10px 20px;
  box-sizing: border-box;
  line-height: 1.5;
  border-radius: 10px;
  color: #2b32be;
  border: 1px solid #2b32be;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pagination__single a:hover {
  background: #2b32be;
  color: #ffffff;
}

.btn-basic-type01 {
  text-align: center;
}

.btn-basic-type01 a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  width: 100%;
  max-width: 500px;
  padding: 15px 20px;
  line-height: 1.5;
  border-radius: 60px;
  box-sizing: border-box;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0037cd+0,00acf4+100 */
  background: #0037cd;
  /* Old browsers */
  background: -moz-linear-gradient(left, #0037cd 0%, #00acf4 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0037cd 0%, #00acf4 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0037cd 0%, #00acf4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0037cd', endColorstr='#00acf4', GradientType=1);
  /* IE6-9 */
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .btn-basic-type01 a {
    font-size: 14px;
  }
}

.btn-basic-type01 a:hover {
  opacity: 0.7;
}

.main-visual-top {
  line-height: 1;
  font-size: 0px;
}

.main-visual-top .item img {
  width: 100%;
}

.page-main-content__wrap-top .top-content__block {
  padding: 60px 20px;
}

.page-main-content__wrap-top .top-content__block.bg-training {
  background: url("../images/top/bg_training.png") no-repeat top center;
  background-size: auto 50%;
}

@media screen and (max-width: 999px) {
  .page-main-content__wrap-top .top-content__block.bg-training {
    background-size: auto 20%;
  }
}

.page-main-content__wrap-top .top-content__block.bg-service {
  background: url("../images/top/bg_service.png") no-repeat top center;
  background-size: auto 40%;
}

@media screen and (max-width: 999px) {
  .page-main-content__wrap-top .top-content__block.bg-service {
    background-size: auto 40%;
  }
}

@media screen and (max-width: 768px) {
  .page-main-content__wrap-top .top-content__block.bg-service {
    background-size: auto 40%;
  }
}

.page-main-content__wrap-top .top-content__block.bg-triangle01 {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#013dbf+0,238ff1+100 */
  background: #013dbf;
  /* Old browsers */
  background: -moz-linear-gradient(top, #013dbf 0%, #238ff1 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #013dbf 0%, #238ff1 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #013dbf 0%, #238ff1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#013dbf', endColorstr='#238ff1', GradientType=0);
  /* IE6-9 */
}

.page-main-content__wrap-top .top-content__block.bg-triangle02 {
  background: #ffffff;
}

.page-main-content__wrap-top .top-content__block.bg-triangle03 {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3582c5+0,ffffff+50 */
  background: #014ccb;
  /* Old browsers */
  background: -moz-linear-gradient(top, #014ccb 0%, white 50%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #014ccb 0%, white 50%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #014ccb 0%, white 50%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3582c5', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
}

@media screen and (max-width: 768px) {
  .page-main-content__wrap-top .top-content__block.bg-triangle03 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3582c5+0,ffffff+50 */
    background: #014ccb;
    /* Old browsers */
    background: -moz-linear-gradient(top, #014ccb 0%, white 25%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #014ccb 0%, white 25%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #014ccb 0%, white 25%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3582c5', endColorstr='#ffffff', GradientType=0);
    /* IE6-9 */
  }
}

.page-main-content__wrap-top .top-content__block .triangle-title2 {
  text-align: center;
  margin-bottom: 45px;
}

.page-main-content__wrap-top .top-content__block .triangle-title2 .heading {
  font-size: 56px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  margin-bottom: 10px;
}

@media screen and (max-width: 999px) {
  .page-main-content__wrap-top .top-content__block .triangle-title2 .heading {
    font-size: 30px;
    color: #0021b3;
  }
}

.page-main-content__wrap-top .top-content__block .triangle-title2 p {
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  font-size: 18px;
  color: #ffffff;
}

@media screen and (max-width: 999px) {
  .page-main-content__wrap-top .top-content__block .triangle-title2 p {
    font-size: 14px;
    color: #0021b3;
  }
}

.page-main-content__wrap-top .top-content__block .triangle-title {
  text-align: center;
  margin-bottom: 45px;
  padding-top: 50px;
}

.page-main-content__wrap-top .top-content__block .triangle-title h3 {
  font-size: 56px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-main-content__wrap-top .top-content__block .triangle-title h3.sm {
  font-size: 40px;
}

@media screen and (max-width: 999px) {
  .page-main-content__wrap-top .top-content__block .triangle-title h3 {
    font-size: 30px;
  }
}

.page-main-content__wrap-top .top-content__block .triangle-title .text {
  text-align: center;
  line-height: 1.5;
  font-size: 18px;
  color: #ffffff;
}

@media screen and (max-width: 999px) {
  .page-main-content__wrap-top .top-content__block .triangle-title .text {
    font-size: 14px;
  }
}

.page-main-content__wrap-top .top-content__block .tp-inner-block {
  max-width: 1200px;
  margin: 0 auto;
}

.tp-news__wrap {
  display: flex;
}

@media screen and (max-width: 768px) {
  .tp-news__wrap {
    display: block;
  }
}

.tp-news__wrap .tl {
  padding: 10px 10px 10px 0;
  width: 90px;
  box-sizing: border-box;
  border-right: 1px solid #005394;
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #005394;
}

@media screen and (max-width: 768px) {
  .tp-news__wrap .tl {
    width: 100%;
    display: block;
    padding: 0 0 5px 0;
    border: none;
    border-bottom: 1px solid #005394;
    margin-bottom: 15px;
  }
}


@media screen and (max-width: 768px) {
  .tp-news__wrap .tl {
    width: 100%;
    display: block;
  }
}

.tp-news__wrap .list {
  width: calc(100% - 90px);
  padding: 0 0 0 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .tp-news__wrap .list {
    width: 100%;
    display: block;
    padding: 0;
  }
}

.tp-news__wrap .list .tp-news-list article.row {
  display: block;
  padding: 15px 0;
  line-height: 1.5;
  border-bottom: 1px solid #cccccc;
}

.tp-news__wrap .list .tp-news-list article.row:last-of-type {
  border: none;
}

.tp-news__wrap .list .tp-news-list article.row time.post-date {
  font-size: 14px;
  font-weight: bold;
  color: #999999;
  margin-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .tp-news__wrap .list .tp-news-list article.row time.post-date {
    font-size: 12px;
  }
}

.tp-news__wrap .list .tp-news-list article.row h5.post-title {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .tp-news__wrap .list .tp-news-list article.row h5.post-title {
    font-size: 14px;
  }
}

.tp-news__wrap .list .tp-news-list article.row h5.post-title a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tp-news__wrap .list .tp-news-list article.row h5.post-title a:hover {
  opacity: 0.7;
}

.tp-attention-notice {
  padding: 20px;
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 40px;
  background: #8f0610;
}

@media screen and (max-width: 999px) {
  .tp-attention-notice {
    font-size: 14px;
  }
}

.tp-service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.tp-service-list .row {
  width: 33.333333%;
  padding: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .tp-service-list .row {
    width: 50%;
    padding: 3px;
  }
}

.tp-service-list .row .inner {
  width: 100%;
  padding: 30px 10px 20px 10px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .tp-service-list .row .inner {
    padding: 20px 5px 10px 5px;
  }
}

.tp-service-list .row .inner .thumb {
  text-align: center;
  margin-bottom: 20px;
}

.tp-service-list .row .inner .thumb img {
  max-width: 100%;
}

.tp-service-list .row .inner .title {
  margin-bottom: 10px;
  min-height: 55px;
}

.tp-service-list .row .inner .title h5 {
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  color: #005394;
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
}

@media screen and (max-width: 999px) {
  .tp-service-list .row .inner .title h5 {
    font-size: 18px;
  }
}

.tp-service-list .row .inner .text {
  line-height: 1.25;
  font-size: 15px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
}

@media screen and (max-width: 999px) {
  .tp-service-list .row .inner .text {
    font-size: 14px;
  }
}

.tp-service-list .row .inner .btn {
  text-align: center;
}

.tp-service-list .row .inner .btn a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  width: 100%;
  max-width: 500px;
  padding: 15px 20px;
  line-height: 1.5;
  border-radius: 60px;
  box-sizing: border-box;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0037cd+0,00acf4+100 */
  background: #0037cd;
  /* Old browsers */
  background: -moz-linear-gradient(left, #0037cd 0%, #00acf4 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0037cd 0%, #00acf4 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0037cd 0%, #00acf4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0037cd', endColorstr='#00acf4', GradientType=1);
  /* IE6-9 */
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .tp-service-list .row .inner .btn a {
    font-size: 14px;
  }
}

.tp-service-list .row .inner .btn a:hover {
  opacity: 0.7;
}

.tp-service-5step {
  display: flex;
}

@media screen and (max-width: 999px) {
  .tp-service-5step {
    display: block;
  }
}

.tp-service-5step .ex-text {
  width: calc(100% - 600px);
  padding-right: 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  .tp-service-5step .ex-text {
    width: 100%;
    padding: 0 0 20px 0;
  }
}

.tp-service-5step .ex-text .heading img {
  max-width: 500px;
  width: 100%;
}

.tp-service-5step .ex-text .read-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 50px;
  color: #ffffff;
}

@media screen and (max-width: 999px) {
  .tp-service-5step .ex-text .read-text {
    font-size: 14px;
  }
}

.tp-service-5step .ex-text .tl-note {
  font-size: 24px;
  line-height: 1.25;
  font-weight: bold;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
}

@media screen and (max-width: 999px) {
  .tp-service-5step .ex-text .tl-note {
    font-size: 18px;
  }
}

.tp-service-5step .ex-text .bank {
  text-align: right;
  margin-bottom: 15px;
}

.tp-service-5step .ex-text .bank img {
  max-width: 100%;
}

.tp-service-5step .ex-text .btn-list ul li {
  display: block;
  margin-bottom: 10px;
}

.tp-service-5step .ex-text .btn-list ul li a {
  display: inline-block;
  text-decoration: none;
  color: #0a44c1;
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  line-height: 1.5;
  border-radius: 60px;
  text-align: center;
  box-sizing: border-box;
  background: #ffffff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tp-service-5step .ex-text .btn-list ul li a.red-btn {
  background: #000000;
  color: #ffffff;
}

@media screen and (max-width: 999px) {
  .tp-service-5step .ex-text .btn-list ul li a {
    font-size: 14px;
  }
}

.tp-service-5step .ex-text .btn-list ul li a:hover {
  opacity: 0.7;
}

.tp-service-5step .youtube {
  width: 600px;
}

@media screen and (max-width: 999px) {
  .tp-service-5step .youtube {
    width: 100%;
  }
}

.tp-service-5step .youtube .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.tp-service-5step .youtube .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.tp-service-5stepplus {
  display: flex;
}

@media screen and (max-width: 999px) {
  .tp-service-5stepplus {
    display: block;
  }
}

.tp-service-5stepplus .ex-text {
  width: calc(100% - 600px);
  padding-right: 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  .tp-service-5stepplus .ex-text {
    width: 100%;
    padding: 0 0 20px 0;
  }
}

.tp-service-5stepplus .ex-text .heading {
  font-size: 45px;
  line-height: 1.25;
  font-weight: bold;
  color: #005394;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 25px;
}

@media screen and (max-width: 999px) {
  .tp-service-5stepplus .ex-text .heading {
    font-size: 24px;
  }
}

.tp-service-5stepplus .ex-text .heading span {
  font-size: 30px;
}

@media screen and (max-width: 999px) {
  .tp-service-5stepplus .ex-text .heading span {
    font-size: 20px;
  }
}

.tp-service-5stepplus .ex-text .tl {
  margin-bottom: 50px;
}

.tp-service-5stepplus .ex-text .tl img {
  max-width: 100%;
}

.tp-service-5stepplus .ex-text .heading {
  font-size: 45px;
  line-height: 1.25;
  font-weight: bold;
  color: #005394;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .tp-service-5stepplus .ex-text .heading {
    font-size: 24px;
  }
}

.tp-service-5stepplus .ex-text .heading span {
  font-size: 30px;
}

@media screen and (max-width: 999px) {
  .tp-service-5stepplus .ex-text .heading span {
    font-size: 20px;
  }
}

.tp-service-5stepplus .ex-text .read-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 50px;
  color: #333333;
}

@media screen and (max-width: 999px) {
  .tp-service-5stepplus .ex-text .read-text {
    font-size: 14px;
  }
}

.tp-service-5stepplus .ex-text .btn-list ul li {
  display: block;
  margin-bottom: 10px;
  text-align: left;
}

.tp-service-5stepplus .ex-text .btn-list ul li a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  line-height: 1.5;
  border-radius: 60px;
  text-align: center;
  box-sizing: border-box;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0037cd+0,00acf4+100 */
  background: #0037cd;
  /* Old browsers */
  background: -moz-linear-gradient(left, #0037cd 0%, #00acf4 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0037cd 0%, #00acf4 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0037cd 0%, #00acf4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0037cd', endColorstr='#00acf4', GradientType=1);
  /* IE6-9 */
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tp-service-5stepplus .ex-text .btn-list ul li a.red-btn {
  background: #cc0000;
}

@media screen and (max-width: 999px) {
  .tp-service-5stepplus .ex-text .btn-list ul li a {
    font-size: 14px;
  }
}

.tp-service-5stepplus .ex-text .btn-list ul li a:hover {
  opacity: 0.7;
}

.tp-service-5stepplus .youtube {
  width: 600px;
}

@media screen and (max-width: 999px) {
  .tp-service-5stepplus .youtube {
    width: 100%;
  }
}

.tp-service-5stepplus .youtube .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.tp-service-5stepplus .youtube .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.tp-training__wrap>h4 {
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  padding: 5px 10px;
  background: #ffffff;
  color: #005394;
  margin-bottom: 20px;
}

@media screen and (max-width: 999px) {
  .tp-training__wrap>h4 {
    font-size: 18px;
  }
}

.tp-training__wrap .other-menu {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 50px;
}

.tp-training__wrap .other-menu ul {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .tp-training__wrap .other-menu ul {
    display: block;
  }
}

.tp-training__wrap .other-menu ul li {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .tp-training__wrap .other-menu ul li {
    width: 100%;
    padding: 0 0 15px 0;
  }
}

.tp-training__wrap .other-menu ul li a {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  width: 100%;
  max-width: 500px;
  padding: 15px 20px;
  line-height: 1.5;
  box-sizing: border-box;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0037cd+0,00acf4+100 */
  background: #0037cd;
  /* Old browsers */
  background: -moz-linear-gradient(left, #0037cd 0%, #00acf4 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0037cd 0%, #00acf4 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0037cd 0%, #00acf4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0037cd', endColorstr='#00acf4', GradientType=1);
  /* IE6-9 */
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .tp-training__wrap .other-menu ul li a {
    font-size: 14px;
  }
}

.tp-training__wrap .other-menu ul li a:hover {
  opacity: 0.7;
}

.tp-training__wrap .tp-training__post-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .tp-training__wrap .tp-training__post-list {
    display: block;
  }
}

.tp-training__wrap .tp-training__post-list .row {
  width: calc(100% / 3);
  padding: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .tp-training__wrap .tp-training__post-list .row {
    width: 100%;
    padding: 0 0 20px 0;
  }
}

.tp-training__wrap .tp-training__post-list .row .thumb {
  margin-bottom: 10px;
}

.tp-training__wrap .tp-training__post-list .row .thumb img {
  width: 100%;
}

.tp-training__wrap .tp-training__post-list .row>h5.post-title {
  font-size: 18px;
  line-height: 1.5;
  color: #0066cc;
  margin-bottom: 10px;
  min-height: 65px;
}

@media screen and (max-width: 999px) {
  .tp-training__wrap .tp-training__post-list .row>h5.post-title {
    font-size: 16px;
  }
}

.tp-training__wrap .tp-training__post-list .row .info {
  line-height: 1.5;
  font-size: 15px;
  margin-bottom: 15px;
}

@media screen and (max-width: 999px) {
  .tp-training__wrap .tp-training__post-list .row .info {
    font-size: 13px;
  }
}

.tp-training__wrap .tp-training__post-list .row .btn a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  line-height: 1.25;
  text-align: center;
  padding: 10px;
  background: #000000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .tp-training__wrap .tp-training__post-list .row .btn a {
    font-size: 14px;
  }
}

.tp-training__wrap .tp-training__post-list .row .btn a:hover {
  opacity: 0.7;
}

.tp-blog__wrap .tp-blog-list {
  margin-bottom: 70px;
}

.tp-blog__wrap .tp-blog-list article.row {
  display: block;
  padding: 15px 0;
  line-height: 1.5;
  border-bottom: 1px solid #cccccc;
}

.tp-blog__wrap .tp-blog-list article.row time.post-date {
  font-size: 14px;
  font-weight: bold;
  color: #999999;
  margin-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .tp-blog__wrap .tp-blog-list article.row time.post-date {
    font-size: 12px;
  }
}

.tp-blog__wrap .tp-blog-list article.row h5.post-title {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .tp-blog__wrap .tp-blog-list article.row h5.post-title {
    font-size: 14px;
  }
}

.tp-blog__wrap .tp-blog-list article.row h5.post-title a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tp-blog__wrap .tp-blog-list article.row h5.post-title a:hover {
  opacity: 0.7;
}

@-webkit-keyframes top-slide-upper {
  0% {
    background-position: 0 0;
  }

  to {
    background-position: -9999px 0;
  }
}

@keyframes top-slide-upper {
  0% {
    background-position: 0 0;
  }

  to {
    background-position: -9999px 0;
  }
}

@-webkit-keyframes top-slide-bottom {
  0% {
    background-position: -800px 0;
  }

  to {
    background-position: 9999px 0;
  }
}

@keyframes top-slide-bottom {
  0% {
    background-position: -800px 0;
  }

  to {
    background-position: 9999px 0;
  }
}

.top-content__block__trainer {
  padding: 100px 0;
  position: relative;
}

.top-content__block__trainer .cover {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
}

.top-content__block__trainer .cover img {
  max-width: 100%;
}

.top-content__block__trainer .top-visual__scroll {
  position: relative;
  overflow: hidden;
}

.top-content__block__trainer .top-visual__scroll .scroll-top {
  background-image: url(../images/top/trainer_list.png?20241029);
  background-repeat: repeat-x;
  background-size: auto 380px;
  height: 380px;
  width: 100%;
  -webkit-animation: top-slide-upper 100s linear infinite;
  animation: top-slide-upper 100s linear infinite;
}

@media screen and (max-width: 768px) {
  .top-content__block__trainer .top-visual__scroll .scroll-top {
    background-size: auto 220px;
    height: 220px;
  }
}

.page-type__speaker-training .speaker-training-row {
  padding: 60px 20px;
}

.page-type__speaker-training .speaker-training-row.no-pdg {
  padding: 0;
}

.page-type__speaker-training .speaker-training-row.bg-blue {
  background: #00a0e9;
}

.page-type__speaker-training .speaker-training-row.bg-glay {
  background: #f7f8fa;
}

.page-type__speaker-training .speaker-training-row.bg-triangle01 {
  background: url("../images/company_training/triangle01_bg.png") no-repeat left top;
  background-size: 100% auto;
}

.page-type__speaker-training .speaker-training-row.bg-triangle02 {
  background: url("../images/fivestep/triangle02_bg.png") no-repeat right top;
  background-size: 100% auto;
}

.page-type__speaker-training .speaker-training-row.bg-triangle03 {
  padding: 60px 0;
}

.page-type__speaker-training .speaker-training-row .speaker-b-title {
  background: url("../images/speaker/bottom_bg.png") no-repeat center bottom;
  background-size: 100% auto;
  padding: 80px 0;
}

@media screen and (max-width: 999px) {
  .page-type__speaker-training .speaker-training-row .speaker-b-title {
    background-size: cover;
  }
}

.page-type__speaker-training .speaker-training-row .speaker-b-title p {
  text-align: center;
  line-height: 1.25;
  font-size: 36px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  margin-bottom: 35px;
}

@media screen and (max-width: 999px) {
  .page-type__speaker-training .speaker-training-row .speaker-b-title p {
    font-size: 18px;
  }
}

.page-type__speaker-training .speaker-training-row .title-type__bar_img {
  padding: 20px 20px;
  text-align: center;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
}

.page-type__speaker-training .speaker-training-row .title-type__bar_img.bg-faq {
  background: #e5e5e5;
}

.page-type__speaker-training .speaker-training-row .title-type__bar_img h4 {
  font-size: 26px;
  margin-bottom: 7px;
  color: #003399;
}

@media screen and (max-width: 999px) {
  .page-type__speaker-training .speaker-training-row .title-type__bar_img h4 {
    font-size: 20px;
  }
}

.page-type__speaker-training .speaker-training-row .title-type__bar_img p {
  font-size: 18px;
}

@media screen and (max-width: 999px) {
  .page-type__speaker-training .speaker-training-row .title-type__bar_img p {
    font-size: 14px;
  }
}

.page-type__speaker-training .speaker-training-row .title-type__bar {
  background: #0066cc;
  padding: 15px 20px;
  text-align: center;
  line-height: 1.2;
  color: #ffffff;
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__speaker-training .speaker-training-row .title-type__bar {
    font-size: 16px;
  }
}

.page-type__speaker-training .speaker-training-row .title-type__bar span {
  font-size: 32px;
}

@media screen and (max-width: 999px) {
  .page-type__speaker-training .speaker-training-row .title-type__bar span {
    font-size: 20px;
  }
}

@media screen and (min-width: 1000px) {
  .page-type__speaker-training .speaker-training-row .title-type__bar br {
    display: none;
  }
}

.page-type__speaker-training .speaker-training-row .inner__block {
  max-width: 1100px;
  margin: 0 auto;
}

.page-type__speaker-training .speaker-training-row .inner__block.pd-type {
  padding: 60px 20px;
}

.speakertng-pre-message {
  line-height: 1.5;
}

.speakertng-pre-message h4 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 30px;
  color: #003399;
}

@media screen and (max-width: 999px) {
  .speakertng-pre-message h4 {
    font-size: 20px;
  }
}

.speakertng-pre-message .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (max-width: 999px) {
  .speakertng-pre-message .list ul {
    display: block;
  }
}

.speakertng-pre-message .list ul li {
  position: relative;
  width: 48%;
  margin: 1%;
  padding: 15px 15px 15px 45px;
  background: #003399;
  color: #ffffff;
  box-sizing: border-box;
  border-radius: 100px;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .speakertng-pre-message .list ul li {
    width: 100%;
    font-size: 16px;
    margin: 0 0 10px 0;
  }
}

.speakertng-pre-message .list ul li::before {
  content: "";
  width: 18px;
  height: 26px;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -13px;
  background: url("../images/fivestep/icon_check.png") no-repeat;
  background-size: 100% auto;
}

.speakertng-information .pre-info {
  display: flex;
}

@media screen and (max-width: 768px) {
  .speakertng-information .pre-info {
    display: block;
  }
}

.speakertng-information .pre-info .text {
  width: calc(100% - 420px);
  padding-right: 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .speakertng-information .pre-info .text {
    width: 100%;
    padding: 0 0 30px 0;
  }
}

.speakertng-information .pre-info .text p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 999px) {
  .speakertng-information .pre-info .text p {
    font-size: 14px;
  }
}

.speakertng-information .pre-info .thumb {
  width: 420px;
}

@media screen and (max-width: 768px) {
  .speakertng-information .pre-info .thumb {
    width: 100%;
  }
}

.speakertng-information .pre-info .thumb img {
  width: 100%;
}

.speakertng-example .sub-title {
  display: flex;
  margin-bottom: 20px;
}

.speakertng-example .sub-title .t-inner {
  max-width: 550px;
  line-height: 1.5;
}

.speakertng-example .sub-title .t-inner h5 {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.1;
  padding-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .speakertng-example .sub-title .t-inner h5 {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .speakertng-example .sub-title .t-inner h5 {
    color: #333333;
  }
}

.speakertng-example .sub-title .t-inner p {
  font-size: 16px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .speakertng-example .sub-title .t-inner p {
    color: #333333;
    font-size: 14px;
  }
}

.speakertng-example .reason-list .row {
  display: flex;
  margin-bottom: 20px;
  border: 2px solid #003399;
  background: #ffffff;
  line-height: 1.5;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .speakertng-example .reason-list .row {
    display: block;
  }
}

.speakertng-example .reason-list .row .num {
  width: 95px;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0037cd+0,00acf4+100 */
  background: #0037cd;
  /* Old browsers */
  background: -moz-linear-gradient(left, #0037cd 0%, #00acf4 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0037cd 0%, #00acf4 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0037cd 0%, #00acf4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0037cd', endColorstr='#00acf4', GradientType=1);
  /* IE6-9 */
}

@media screen and (max-width: 999px) {
  .speakertng-example .reason-list .row .num {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .speakertng-example .reason-list .row .num {
    width: 100%;
  }
}

.speakertng-example .reason-list .row .information {
  width: calc(100% - 95px);
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 999px) {
  .speakertng-example .reason-list .row .information {
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .speakertng-example .reason-list .row .information {
    width: 100%;
  }
}

.speakertng-example .reason-list .row .information .text-block h6 {
  font-size: 28px;
  color: #2e5fb8;
}

@media screen and (max-width: 999px) {
  .speakertng-example .reason-list .row .information .text-block h6 {
    font-size: 16px;
  }
}

.speakertng-example .reason-list .row .information .text-block p {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .speakertng-example .reason-list .row .information .text-block p {
    font-size: 14px;
  }
}

.speakertng-chartimg .thumb {
  text-align: center;
}

.speakertng-chartimg .thumb img {
  max-width: 100%;
}

.speakertng-schedule .sch-row {
  margin-bottom: 75px;
}

.speakertng-schedule .sch-row>h5 {
  display: block;
  border-radius: 40px;
  color: #0033cc;
  background: #d2d2d2;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 999px) {
  .speakertng-schedule .sch-row>h5 {
    font-size: 16px;
  }
}

.speakertng-schedule .sch-row .price-info p {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (max-width: 999px) {
  .speakertng-schedule .sch-row .price-info p {
    font-size: 16px;
  }
}

.speakertng-schedule .sch-row .price-info p span {
  color: #0066cc;
}

.speakertng-schedule .sch-row .table-info h6 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .speakertng-schedule .sch-row .table-info h6 {
    font-size: 18px;
  }
}

.speakertng-schedule .sch-row .table-info .table {
  overflow: auto;
}

.speakertng-schedule .sch-row .table-info .table .notes {
  padding-top: 10px;
  font-size: 14px;
  text-align: right;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .speakertng-schedule .sch-row .table-info .table .notes {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .speakertng-schedule .sch-row .table-info .table .notes {
    width: 600px;
  }
}

.speakertng-schedule .sch-row .table-info .table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .speakertng-schedule .sch-row .table-info .table table {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .speakertng-schedule .sch-row .table-info .table table {
    width: 600px;
  }
}

.speakertng-schedule .sch-row .table-info .table table tbody tr:nth-of-type(odd) td {
  background: #e3f0fc;
}

.speakertng-schedule .sch-row .table-info .table table tbody tr:nth-of-type(even) td {
  background: #c5dff9;
}

.speakertng-schedule .sch-row .table-info .table table tbody tr th {
  background: #0066cc;
  padding: 10px;
  color: #ffffff;
  font-weight: normal;
  border: 1px solid #ffffff;
}

.speakertng-schedule .sch-row .table-info .table table tbody tr td {
  padding: 10px;
  color: #333333;
  font-weight: normal;
  border: 1px solid #ffffff;
}

.speakertng-schedule .sch-row .table-info .table table tbody tr td.num {
  width: 50px;
  text-align: center;
  vertical-align: middle;
}

.speakertng-faq__wrap dl {
  display: block;
  margin-bottom: 30px;
}

.speakertng-faq__wrap dl dt {
  display: block;
  padding: 10px 10px;
  color: #005da3;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
  border: 2px solid #005da3;
}

@media screen and (max-width: 999px) {
  .speakertng-faq__wrap dl dt {
    font-size: 16px;
  }
}

.speakertng-faq__wrap dl dd {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .speakertng-faq__wrap dl dd {
    font-size: 14px;
  }
}

.speakertng-bottom-message {
  padding: 50px 20px 100px 20px;
}

.speakertng-bottom-message .text {
  text-align: center;
  line-height: 1.25;
  font-size: 36px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #0000cc;
  margin-bottom: 35px;
}

@media screen and (max-width: 999px) {
  .speakertng-bottom-message .text {
    font-size: 18px;
  }
}

.page-type__pers-training .pers-training-row {
  padding: 60px 20px;
}

.page-type__pers-training .pers-training-row.no-pdg {
  padding: 0;
}

.page-type__pers-training .pers-training-row.bg-blue {
  background: #00a0e9;
}

.page-type__pers-training .pers-training-row.bg-glay {
  background: #f7f8fa;
}

.page-type__pers-training .pers-training-row.bg-triangle01 {
  background: url("../images/company_training/triangle01_bg.png") no-repeat left top;
  background-size: 100% auto;
}

.page-type__pers-training .pers-training-row.bg-triangle02 {
  background: url("../images/fivestep/triangle02_bg.png") no-repeat right top;
  background-size: 100% auto;
}

.page-type__pers-training .pers-training-row .title-type__bar_img {
  padding: 20px 20px;
  text-align: center;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
}

.page-type__pers-training .pers-training-row .title-type__bar_img.bg-faq {
  background: #e5e5e5;
}

.page-type__pers-training .pers-training-row .title-type__bar_img h4 {
  font-size: 26px;
  margin-bottom: 7px;
  color: #003399;
}

@media screen and (max-width: 999px) {
  .page-type__pers-training .pers-training-row .title-type__bar_img h4 {
    font-size: 20px;
  }
}

.page-type__pers-training .pers-training-row .title-type__bar_img p {
  font-size: 18px;
}

@media screen and (max-width: 999px) {
  .page-type__pers-training .pers-training-row .title-type__bar_img p {
    font-size: 14px;
  }
}

.page-type__pers-training .pers-training-row .title-type__bar {
  background: #0066cc;
  padding: 15px 20px;
  text-align: center;
  line-height: 1.2;
  color: #ffffff;
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__pers-training .pers-training-row .title-type__bar {
    font-size: 16px;
  }
}

.page-type__pers-training .pers-training-row .title-type__bar span {
  font-size: 32px;
}

@media screen and (max-width: 999px) {
  .page-type__pers-training .pers-training-row .title-type__bar span {
    font-size: 20px;
  }
}

@media screen and (min-width: 1000px) {
  .page-type__pers-training .pers-training-row .title-type__bar br {
    display: none;
  }
}

.page-type__pers-training .pers-training-row .inner__block {
  max-width: 1100px;
  margin: 0 auto;
}

.page-type__pers-training .pers-training-row .inner__block.pd-type {
  padding: 60px 20px;
}

.perstng-pre-message {
  line-height: 1.5;
}

.perstng-pre-message .heading {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 30px;
  color: #003399;
}

@media screen and (max-width: 999px) {
  .perstng-pre-message .heading {
    font-size: 20px;
  }
}

.perstng-pre-message .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (max-width: 999px) {
  .perstng-pre-message .list ul {
    display: block;
  }
}

.perstng-pre-message .list ul li {
  position: relative;
  width: 48%;
  margin: 1%;
  padding: 15px 15px 15px 45px;
  background: #003399;
  color: #ffffff;
  box-sizing: border-box;
  border-radius: 100px;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .perstng-pre-message .list ul li {
    width: 100%;
    font-size: 16px;
    margin: 0 0 10px 0;
  }
}

.perstng-pre-message .list ul li::before {
  content: "";
  width: 18px;
  height: 26px;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -13px;
  background: url("../images/fivestep/icon_check.png") no-repeat;
  background-size: 100% auto;
}

.perstng-information .pre-info {
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .perstng-information .pre-info {
    display: block;
  }
}

.perstng-information .pre-info .text {
  padding: 0 0 0 0;
  box-sizing: border-box;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .perstng-information .pre-info .text {
    width: 100%;
    padding: 0 0 15px 0;
  }
}

.perstng-information .pre-info .text p {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .perstng-information .pre-info .text p {
    font-size: 14px;
  }
}

.perstng-information .pre-info .thumb {
  width: 400px;
}

@media screen and (max-width: 768px) {
  .perstng-information .pre-info .thumb {
    width: 100%;
  }
}

.perstng-information .pre-info .thumb img {
  width: 100%;
}

.perstng-information .chart {
  text-align: center;
}

.perstng-information .chart img {
  max-width: 100%;
}

.perstng-example .sub-title {
  display: flex;
  margin-bottom: 20px;
}

.perstng-example .sub-title .t-inner {
  max-width: 550px;
  line-height: 1.5;
}

.perstng-example .sub-title .t-inner h5 {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.1;
  padding-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .perstng-example .sub-title .t-inner h5 {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .perstng-example .sub-title .t-inner h5 {
    color: #333333;
  }
}

.perstng-example .sub-title .t-inner p {
  font-size: 16px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .perstng-example .sub-title .t-inner p {
    color: #333333;
    font-size: 14px;
  }
}

.perstng-example .text-bar {
  padding: 15px 10px;
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  background: #0066cc;
  margin-bottom: 50px;
}

@media screen and (max-width: 999px) {
  .perstng-example .text-bar {
    font-size: 20px;
  }
}

.perstng-example .works-tbl h6 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .perstng-example .works-tbl h6 {
    font-size: 18px;
  }
}

.perstng-example .works-tbl h6 span {
  color: #0066cc;
}

.perstng-example .works-tbl .tbl {
  overflow-x: auto;
}

.perstng-example .works-tbl .tbl img {
  width: 100%;
  min-width: 600px;
}

.perstng-example .example-list {
  margin-bottom: 30px;
}

.perstng-example .example-list .row {
  padding: 15px 0;
  display: flex;
}

@media screen and (max-width: 768px) {
  .perstng-example .example-list .row {
    display: block;
  }
}

.perstng-example .example-list .row .culm01 {
  width: 360px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  border: 2px solid #04265b;
  box-sizing: border-box;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .perstng-example .example-list .row .culm01 {
    width: 100%;
    padding: 10px;
  }
}

.perstng-example .example-list .row .culm01.type02 {
  border: 2px solid #1443ca;
}

.perstng-example .example-list .row .culm01.type03 {
  border: 2px solid #148dc3;
}

.perstng-example .example-list .row .culm01 ul li {
  line-height: 1.5;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .perstng-example .example-list .row .culm01 ul li {
    font-size: 14px;
  }
}

.perstng-example .example-list .row .culm01 ul li span {
  color: #cc0000;
}

.perstng-example .example-list .row .culm02 {
  width: calc(100% - 360px);
  padding-left: 86px;
  box-sizing: border-box;
  display: flex;
  position: relative;
}

@media screen and (max-width: 768px) {
  .perstng-example .example-list .row .culm02 {
    width: 100%;
    padding: 0;
  }

  .perstng-example .example-list .row .culm02::after {
    display: none;
  }
}

.perstng-example .example-list .row .culm02::after {
  content: url("../images/company_training/arrow.png");
  position: absolute;
  left: 30px;
  top: 50%;
  margin-top: -30px;
}

.perstng-example .example-list .row .culm02.type02::after {
  content: url("../images/company_training/arrow2.png");
}

.perstng-example .example-list .row .culm02.type03::after {
  content: url("../images/company_training/arrow3.png");
}

.perstng-example .example-list .row .culm02 .inner {
  width: 100%;
  display: flex;
  border: 2px solid #04265b;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .perstng-example .example-list .row .culm02 .inner {
    display: block;
  }
}

.perstng-example .example-list .row .culm02 .inner.type02 {
  border: 2px solid #1443ca;
}

.perstng-example .example-list .row .culm02 .inner.type03 {
  border: 2px solid #148dc3;
}

.perstng-example .example-list .row .culm02 .inner .tl {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.5;
  width: 240px;
  padding: 15px 10px;
  box-sizing: border-box;
  background: #04265b;
}

@media screen and (max-width: 999px) {
  .perstng-example .example-list .row .culm02 .inner .tl {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .perstng-example .example-list .row .culm02 .inner .tl {
    width: 100%;
    padding: 7px;
  }

  .perstng-example .example-list .row .culm02 .inner .tl br {
    display: none;
  }
}

.perstng-example .example-list .row .culm02 .inner .tl span {
  font-size: 14px;
}

.perstng-example .example-list .row .culm02 .inner .tl.type02 {
  background: #1443ca;
}

.perstng-example .example-list .row .culm02 .inner .tl.type03 {
  background: #148dc3;
}

.perstng-example .example-list .row .culm02 .inner .text {
  width: calc(100% - 240px);
  padding: 15px 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .perstng-example .example-list .row .culm02 .inner .text {
    width: 100%;
    padding: 7px;
  }
}

.perstng-example .example-list .row .culm02 .inner .text h6 {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #04265b;
}

@media screen and (max-width: 999px) {
  .perstng-example .example-list .row .culm02 .inner .text h6 {
    font-size: 18px;
  }
}

.perstng-example .example-list .row .culm02 .inner .text h6.type02 {
  color: #1443ca;
}

.perstng-example .example-list .row .culm02 .inner .text h6.type03 {
  color: #148dc3;
}

.perstng-example .example-list .row .culm02 .inner .text p {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .perstng-example .example-list .row .culm02 .inner .text p {
    font-size: 14px;
  }
}

.perstng-example .example-list .row .culm02 .inner .text ul.type02 li span {
  color: #1443ca;
}

.perstng-example .example-list .row .culm02 .inner .text ul.type03 li span {
  color: #148dc3;
}

.perstng-example .example-list .row .culm02 .inner .text ul li {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 999px) {
  .perstng-example .example-list .row .culm02 .inner .text ul li {
    font-size: 14px;
  }
}

.perstng-example .example-list .row .culm02 .inner .text ul li span {
  color: #04265b;
}

.perstng-user-voice {
  display: flex;
}

@media screen and (max-width: 768px) {
  .perstng-user-voice {
    display: block;
  }
}

.perstng-user-voice .thumb {
  width: 350px;
}

@media screen and (max-width: 768px) {
  .perstng-user-voice .thumb {
    width: 100%;
    padding: 0 0 25px 0;
  }
}

.perstng-user-voice .thumb img {
  width: 100%;
}

.perstng-user-voice .information {
  width: calc(100% - 350px);
  padding-left: 30px;
  box-sizing: border-box;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .perstng-user-voice .information {
    width: 100%;
    padding: 0;
  }
}

.perstng-user-voice .information .tl-box {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 25px;
}

.perstng-user-voice .information .tl-box h6 {
  font-size: 20px;
  color: #005da3;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 999px) {
  .perstng-user-voice .information .tl-box h6 {
    font-size: 18px;
  }
}

.perstng-user-voice .information .tl-box p {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .perstng-user-voice .information .tl-box p {
    font-size: 14px;
  }
}

.perstng-user-voice .information .read-text {
  font-size: 16px;
  margin-bottom: 40px;
}

@media screen and (max-width: 999px) {
  .perstng-user-voice .information .read-text {
    font-size: 14px;
  }
}

.perstng-user-voice .information .btn-basic-type01 {
  text-align: right;
}

.perstng-user-voice .information .btn-basic-type01 a {
  text-align: center;
}

.perstng-faq__wrap dl {
  display: block;
  margin-bottom: 30px;
}

.perstng-faq__wrap dl dt {
  display: block;
  padding: 10px 10px;
  color: #005da3;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
  border: 2px solid #005da3;
}

@media screen and (max-width: 999px) {
  .perstng-faq__wrap dl dt {
    font-size: 16px;
  }
}

.perstng-faq__wrap dl dd {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .perstng-faq__wrap dl dd {
    font-size: 14px;
  }
}

.perstng-training-each__wrap {
  margin-bottom: 80px;
}

.perstng-training-each__wrap .sub-title-block {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #0064dc;
  padding: 0 0 5px 0;
  margin-bottom: 20px;
}

.perstng-training-each__wrap .sub-title-block .thumb {
  width: 80px;
}

@media screen and (max-width: 999px) {
  .perstng-training-each__wrap .sub-title-block .thumb {
    width: 50px;
  }
}

.perstng-training-each__wrap .sub-title-block .thumb img {
  width: 100%;
}

.perstng-training-each__wrap .sub-title-block .text {
  width: calc(100% - 80px);
  padding: 0 0 0 20px;
  line-height: 1.25;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  .perstng-training-each__wrap .sub-title-block .text {
    width: calc(100% - 50px);
    padding: 0 0 0 10px;
  }
}

.perstng-training-each__wrap .sub-title-block .text p {
  font-size: 18px;
  margin-bottom: 2px;
}

@media screen and (max-width: 999px) {
  .perstng-training-each__wrap .sub-title-block .text p {
    font-size: 12px;
  }
}

.perstng-training-each__wrap .sub-title-block .text .heading {
  font-size: 32px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #0045d2;
}

@media screen and (max-width: 999px) {
  .perstng-training-each__wrap .sub-title-block .text .heading {
    font-size: 18px;
  }
}

.perstng-training-each__wrap .tr-movie {
  margin-bottom: 30px;
}

.perstng-training-each__wrap .tr-movie h6 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.perstng-training-each__wrap .tr-movie .movie_wrap .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.perstng-training-each__wrap .tr-movie .movie_wrap .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.perstng-training-each__wrap .tr-explain {
  display: flex;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .perstng-training-each__wrap .tr-explain {
    display: block;
  }
}

.perstng-training-each__wrap .tr-explain .thumb {
  width: 450px;
}

@media screen and (max-width: 768px) {
  .perstng-training-each__wrap .tr-explain .thumb {
    width: 100%;
    padding: 0 0 15px 0;
  }
}

.perstng-training-each__wrap .tr-explain .thumb img {
  width: 100%;
}

.perstng-training-each__wrap .tr-explain .text {
  width: calc(100% - 450px);
  padding: 0 0 0 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .perstng-training-each__wrap .tr-explain .text {
    width: 100%;
    padding: 0;
  }
}

.perstng-training-each__wrap .tr-explain .text h5 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  color: #ff6600;
}

.perstng-training-each__wrap .tr-explain .text h5.fc-g {
  color: #26aa48;
}

.perstng-training-each__wrap .tr-explain .text h5.fc-n {
  color: #03345f;
}

@media screen and (max-width: 999px) {
  .perstng-training-each__wrap .tr-explain .text h5 {
    font-size: 18px;
  }
}

.perstng-training-each__wrap .tr-explain .text .btn-basic-type01 {
  margin-top: 35px;
}

.perstng-training-each__wrap .tr-explain .text p {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .perstng-training-each__wrap .tr-explain .text p {
    font-size: 14px;
  }
}

.perstng-training-each__wrap .tr-explain .text p.tl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 999px) {
  .perstng-training-each__wrap .tr-explain .text p.tl {
    font-size: 16px;
  }
}

.perstng-training-each__wrap .tr-explain .text .btn {
  margin-top: 30px;
  text-align: right;
}

.perstng-training-each__wrap .tr-explain .text .btn a {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.5;
  color: #ffffff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2985e1+0,0d41c2+100 */
  background: #2985e1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2985e1 0%, #0d41c2 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2985e1', endColorstr='#0d41c2', GradientType=0);
  /* IE6-9 */
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .perstng-training-each__wrap .tr-explain .text .btn a {
    font-size: 16px;
  }
}

.perstng-training-each__wrap .tr-explain .text .btn a:hover {
  opacity: 0.7;
}

.perstng-training-each__wrap .tr-post-wrap h5 {
  font-size: 18px;
  text-align: center;
  padding: 3px 10px;
  background: #dddddd;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media screen and (max-width: 999px) {
  .perstng-training-each__wrap .tr-post-wrap h5 {
    font-size: 16px;
  }
}

.perstng-training-each__wrap .tr-post-wrap .tr-post-list .no-post {
  line-height: 1.5;
  padding: 10px 0;
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .perstng-training-each__wrap .tr-post-wrap .tr-post-list .no-post {
    font-size: 14px;
  }
}

.perstng-training-each__wrap .tr-post-wrap .tr-post-list .row {
  display: flex;
  align-items: center;
  line-height: 1.5;
  padding: 15px 0;
  border-bottom: 1px dashed #cccccc;
}

@media screen and (max-width: 768px) {
  .perstng-training-each__wrap .tr-post-wrap .tr-post-list .row {
    display: block;
  }
}

.perstng-training-each__wrap .tr-post-wrap .tr-post-list .row .post-meta {
  width: calc(100% - 33%);
}

@media screen and (max-width: 768px) {
  .perstng-training-each__wrap .tr-post-wrap .tr-post-list .row .post-meta {
    width: 100%;
    padding: 0 0 10px 0;
  }
}

.perstng-training-each__wrap .tr-post-wrap .tr-post-list .row .post-meta time.post-date {
  display: block;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .perstng-training-each__wrap .tr-post-wrap .tr-post-list .row .post-meta time.post-date {
    font-size: 12px;
  }
}

.perstng-training-each__wrap .tr-post-wrap .tr-post-list .row .post-meta h6 {
  font-size: 16px;
  font-weight: bold;
  color: #003399;
}

@media screen and (max-width: 999px) {
  .perstng-training-each__wrap .tr-post-wrap .tr-post-list .row .post-meta h6 {
    font-size: 14px;
  }
}

.perstng-training-each__wrap .tr-post-wrap .tr-post-list .row .post-place {
  width: 20%;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .perstng-training-each__wrap .tr-post-wrap .tr-post-list .row .post-place {
    width: 100%;
    padding: 0 0 10px 0;
    text-align: left;
  }
}

.perstng-training-each__wrap .tr-post-wrap .tr-post-list .row .detail-btn {
  width: 13%;
  padding: 0 5px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .perstng-training-each__wrap .tr-post-wrap .tr-post-list .row .detail-btn {
    width: 100%;
  }
}

.perstng-training-each__wrap .tr-post-wrap .tr-post-list .row .detail-btn a {
  border: #F90 1px solid;
  background: #F90;
  color: #fff;
  text-align: center;
  padding: 4px 0px;
  display: block;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

.perstng-bottom-message .text {
  text-align: center;
  line-height: 1.25;
  font-size: 36px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #0000cc;
  margin-bottom: 35px;
}

@media screen and (max-width: 999px) {
  .perstng-bottom-message .text {
    font-size: 18px;
  }
}

.page-type__comp-training .comp-training-row {
  padding: 60px 20px;
}

.page-type__comp-training .comp-training-row.no-pdg {
  padding: 0;
}

.page-type__comp-training .comp-training-row.bg-blue {
  background: #00a0e9;
}

.page-type__comp-training .comp-training-row.bg-glay {
  background: #f7f8fa;
}

.page-type__comp-training .comp-training-row.bg-triangle01 {
  background: #86b4dc;
  /* Old browsers */
  background: -moz-linear-gradient(top, #86b4dc 0%, white 50%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #86b4dc 0%, white 50%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #86b4dc 0%, white 50%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#86b4dc', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
}

.page-type__comp-training .comp-training-row.bg-triangle02 {
  background: url("../images/fivestep/triangle02_bg.png") no-repeat right top;
  background-size: 100% auto;
}

.page-type__comp-training .comp-training-row .title-type__bar_img {
  padding: 20px 20px;
  text-align: center;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
}

.page-type__comp-training .comp-training-row .title-type__bar_img.bg-faq {
  background: url("../images/fivestep/faq_bg.jpg") no-repeat right center;
  background-size: cover;
}

.page-type__comp-training .comp-training-row .title-type__bar_img h4 {
  font-size: 26px;
  margin-bottom: 7px;
  color: #003399;
}

@media screen and (max-width: 999px) {
  .page-type__comp-training .comp-training-row .title-type__bar_img h4 {
    font-size: 20px;
  }
}

.page-type__comp-training .comp-training-row .title-type__bar_img p {
  font-size: 18px;
}

@media screen and (max-width: 999px) {
  .page-type__comp-training .comp-training-row .title-type__bar_img p {
    font-size: 14px;
  }
}

.page-type__comp-training .comp-training-row .title-type__bar {
  background: #0066cc;
  padding: 15px 20px;
  text-align: center;
  line-height: 1.2;
  color: #ffffff;
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__comp-training .comp-training-row .title-type__bar {
    font-size: 16px;
  }
}

.page-type__comp-training .comp-training-row .title-type__bar span {
  font-size: 32px;
}

@media screen and (max-width: 999px) {
  .page-type__comp-training .comp-training-row .title-type__bar span {
    font-size: 20px;
  }
}

@media screen and (min-width: 1000px) {
  .page-type__comp-training .comp-training-row .title-type__bar br {
    display: none;
  }
}

.page-type__comp-training .comp-training-row .inner__block {
  max-width: 1100px;
  margin: 0 auto;
}

.page-type__comp-training .comp-training-row .inner__block.pd-type {
  padding: 60px 20px;
}

.cpytng-pre-message {
  line-height: 1.5;
}

.cpytng-pre-message .heading {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 30px;
  color: #003399;
}

@media screen and (max-width: 999px) {
  .cpytng-pre-message .heading {
    font-size: 20px;
  }
}

.cpytng-pre-message .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (max-width: 999px) {
  .cpytng-pre-message .list ul {
    display: block;
  }
}

.cpytng-pre-message .list ul li {
  position: relative;
  width: 48%;
  margin: 1%;
  padding: 15px 15px 15px 45px;
  background: #003399;
  color: #ffffff;
  box-sizing: border-box;
  border-radius: 100px;
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .cpytng-pre-message .list ul li {
    width: 100%;
    font-size: 16px;
    margin: 0 0 10px 0;
  }
}

.cpytng-pre-message .list ul li::before {
  content: "";
  width: 18px;
  height: 26px;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -13px;
  background: url("../images/fivestep/icon_check.png") no-repeat;
  background-size: 100% auto;
}

.cpytng-information .read-text {
  margin-bottom: 35px;
  line-height: 1.5;
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .cpytng-information .read-text {
    font-size: 14px;
  }
}

.cpytng-information .catch .thumb {
  font-size: 0px;
  line-height: 1;
}

.cpytng-information .catch .thumb img {
  width: 100%;
}

.cpytng-information .catch .text {
  font-size: 35px;
  color: #ffffff;
  text-align: center;
  line-height: 1.25;
  color: #ffffff;
  padding: 15px 10px;
  border-radius: 60px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00befa+0,0039ce+100 */
  background: #00befa;
  /* Old browsers */
  background: -moz-linear-gradient(top, #00befa 0%, #0039ce 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #00befa 0%, #0039ce 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #00befa 0%, #0039ce 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00befa', endColorstr='#0039ce', GradientType=0);
  /* IE6-9 */
}

@media screen and (max-width: 999px) {
  .cpytng-information .catch .text {
    font-size: 18px;
  }
}

.cpytng-information .each-item__wrap {
  display: flex;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #aaaaaa;
}

@media screen and (max-width: 768px) {
  .cpytng-information .each-item__wrap {
    display: block;
  }
}

.cpytng-information .each-item__wrap.rev {
  flex-direction: row-reverse;
}

.cpytng-information .each-item__wrap.rev .text-info {
  padding: 0 0 0 20px;
}

@media screen and (max-width: 768px) {
  .cpytng-information .each-item__wrap.rev .text-info {
    padding: 0 0 20px 0;
  }
}

.cpytng-information .each-item__wrap .text-info {
  width: calc(100% - 500px);
  padding-right: 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .cpytng-information .each-item__wrap .text-info {
    width: 100%;
    padding: 0 0 20px 0;
  }
}

.cpytng-information .each-item__wrap .text-info .heading {
  position: relative;
  padding: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  background: #0099ff;
  line-height: 1.25;
  margin-bottom: 50px;
}

@media screen and (max-width: 999px) {
  .cpytng-information .each-item__wrap .text-info .heading {
    font-size: 18px;
  }
}

.cpytng-information .each-item__wrap .text-info .heading::after {
  content: url("../images/company_training/hukudashi.png");
  font-size: 0px;
  line-height: 1;
  position: absolute;
  right: 0;
  bottom: -24px;
}

.cpytng-information .each-item__wrap .text-info .list ul li {
  display: block;
  padding: 10px 15px;
  border-radius: 60px;
  background: #e5e5e5;
  color: #171c61;
  line-height: 1.25;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  .cpytng-information .each-item__wrap .text-info .list ul li {
    font-size: 16px;
  }
}

.cpytng-information .each-item__wrap .text-info .list2 ul li {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 60px;
  background: #e5e5e5;
  color: #333333;
  line-height: 1.25;
  font-size: 16px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  .cpytng-information .each-item__wrap .text-info .list2 ul li {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .cpytng-information .each-item__wrap .text-info .list2 ul li {
    width: 100%;
    display: block;
  }
}

.cpytng-information .each-item__wrap .text-info .list2 ul li span {
  display: inline-block;
  width: 180px;
  color: #171c61;
  font-size: 20px;
  font-weight: bold;
}

.cpytng-information .each-item__wrap .text-info .list2 ul li span.w100 {
  width: 100%;
}

@media screen and (max-width: 999px) {
  .cpytng-information .each-item__wrap .text-info .list2 ul li span {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .cpytng-information .each-item__wrap .text-info .list2 ul li span {
    width: 100%;
    display: block;
  }
}

.cpytng-information .each-item__wrap .text-info .bank p {
  line-height: 1.5;
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .cpytng-information .each-item__wrap .text-info .bank p {
    font-size: 14px;
  }
}

.cpytng-information .each-item__wrap .text-info .bank p img {
  max-width: 100%;
}

.cpytng-information .each-item__wrap .thumb {
  width: 500px;
}

@media screen and (max-width: 768px) {
  .cpytng-information .each-item__wrap .thumb {
    width: 100%;
  }
}

.cpytng-information .each-item__wrap .thumb img {
  width: 100%;
}

.cpytng-example .sub-title {
  display: flex;
  margin-bottom: 20px;
}

.cpytng-example .sub-title .t-inner {
  max-width: 550px;
  line-height: 1.5;
}

.cpytng-example .sub-title .t-inner h2 {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.1;
  padding-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .cpytng-example .sub-title .t-inner h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .cpytng-example .sub-title .t-inner h2 {
    color: #333333;
  }
}

.cpytng-example .sub-title .t-inner p {
  font-size: 16px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .cpytng-example .sub-title .t-inner p {
    color: #333333;
    font-size: 14px;
  }
}

.cpytng-example .text-bar {
  padding: 15px 10px;
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  background: #0066cc;
  margin-bottom: 50px;
}

@media screen and (max-width: 999px) {
  .cpytng-example .text-bar {
    font-size: 20px;
  }
}

.cpytng-example .works-tbl {
  padding-top: 30px;
}

.cpytng-example .works-tbl h6 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .cpytng-example .works-tbl h6 {
    font-size: 18px;
  }
}

.cpytng-example .works-tbl h6 span {
  color: #0066cc;
}

.cpytng-example .works-tbl .tbl {
  overflow-x: auto;
}

.cpytng-example .works-tbl .tbl img {
  width: 100%;
  min-width: 600px;
}

.cpytng-example .example-list {
  margin-bottom: 30px;
}

.cpytng-example .example-list .row {
  padding: 15px 0;
  display: flex;
}

@media screen and (max-width: 768px) {
  .cpytng-example .example-list .row {
    display: block;
  }
}

.cpytng-example .example-list .row .culm01 {
  width: 360px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  border: 2px solid #04265b;
  box-sizing: border-box;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .cpytng-example .example-list .row .culm01 {
    width: 100%;
    padding: 10px;
  }
}

.cpytng-example .example-list .row .culm01.type02 {
  border: 2px solid #1443ca;
}

.cpytng-example .example-list .row .culm01.type03 {
  border: 2px solid #148dc3;
}

.cpytng-example .example-list .row .culm01 ul li {
  line-height: 1.5;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .cpytng-example .example-list .row .culm01 ul li {
    font-size: 14px;
  }
}

.cpytng-example .example-list .row .culm01 ul li span {
  color: #cc0000;
}

.cpytng-example .example-list .row .culm02 {
  width: calc(100% - 360px);
  padding-left: 86px;
  box-sizing: border-box;
  display: flex;
  position: relative;
}

@media screen and (max-width: 768px) {
  .cpytng-example .example-list .row .culm02 {
    width: 100%;
    padding: 0;
  }

  .cpytng-example .example-list .row .culm02::after {
    display: none;
  }
}

.cpytng-example .example-list .row .culm02::after {
  content: url("../images/company_training/arrow.png");
  position: absolute;
  left: 30px;
  top: 50%;
  margin-top: -30px;
}

.cpytng-example .example-list .row .culm02.type02::after {
  content: url("../images/company_training/arrow2.png");
}

.cpytng-example .example-list .row .culm02.type03::after {
  content: url("../images/company_training/arrow3.png");
}

.cpytng-example .example-list .row .culm02 .inner {
  width: 100%;
  display: flex;
  border: 2px solid #04265b;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .cpytng-example .example-list .row .culm02 .inner {
    display: block;
  }
}

.cpytng-example .example-list .row .culm02 .inner.type02 {
  border: 2px solid #1443ca;
}

.cpytng-example .example-list .row .culm02 .inner.type03 {
  border: 2px solid #148dc3;
}

.cpytng-example .example-list .row .culm02 .inner .tl {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.5;
  width: 240px;
  padding: 15px 10px;
  box-sizing: border-box;
  background: #04265b;
}

@media screen and (max-width: 999px) {
  .cpytng-example .example-list .row .culm02 .inner .tl {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .cpytng-example .example-list .row .culm02 .inner .tl {
    width: 100%;
    padding: 7px;
  }

  .cpytng-example .example-list .row .culm02 .inner .tl br {
    display: none;
  }
}

.cpytng-example .example-list .row .culm02 .inner .tl.type02 {
  background: #1443ca;
}

.cpytng-example .example-list .row .culm02 .inner .tl.type03 {
  background: #148dc3;
}

.cpytng-example .example-list .row .culm02 .inner .text {
  width: calc(100% - 240px);
  padding: 15px 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .cpytng-example .example-list .row .culm02 .inner .text {
    width: 100%;
    padding: 7px;
  }
}

.cpytng-example .example-list .row .culm02 .inner .text ul.type02 li span {
  color: #1443ca;
}

.cpytng-example .example-list .row .culm02 .inner .text ul.type03 li span {
  color: #148dc3;
}

.cpytng-example .example-list .row .culm02 .inner .text ul li {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 999px) {
  .cpytng-example .example-list .row .culm02 .inner .text ul li {
    font-size: 14px;
  }
}

.cpytng-example .example-list .row .culm02 .inner .text ul li span {
  color: #04265b;
}

.comp-training-works__list {
  margin-top: 20px;
}

.comp-training-works__list dl {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .comp-training-works__list dl {
    display: block;
  }
}

.comp-training-works__list dl dt {
  width: 160px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.4;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  box-sizing: border-box;
  background: #0066cc;
  border-radius: 80px;
}

@media screen and (max-width: 768px) {
  .comp-training-works__list dl dt {
    display: block;
    width: 100%;
    height: auto;
    font-size: 14px;
    padding: 5px;
    margin-bottom: 15px;
    border-radius: 0px;
  }
}

.comp-training-works__list dl dd {
  width: calc(100% - 160px);
  padding: 0 0 0 20px;
  box-sizing: border-box;
  line-height: 1.5;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .comp-training-works__list dl dd {
    display: block;
    width: 100%;
    padding: 0;
    font-size: 14px;
  }
}

.cpytng-faq__wrap dl {
  display: block;
  margin-bottom: 30px;
}

.cpytng-faq__wrap dl dt {
  display: block;
  padding: 10px 10px;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  background: #000000;
  margin-bottom: 15px;
}

@media screen and (max-width: 999px) {
  .cpytng-faq__wrap dl dt {
    font-size: 16px;
  }
}

.cpytng-faq__wrap dl dd {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .cpytng-faq__wrap dl dd {
    font-size: 14px;
  }
}

.cpytng-bottom-message .text {
  text-align: center;
  line-height: 1.25;
  font-size: 36px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #0000cc;
  margin-bottom: 35px;
}

@media screen and (max-width: 999px) {
  .cpytng-bottom-message .text {
    font-size: 18px;
  }
}

.cpytng-user-voice {
  display: flex;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .cpytng-user-voice {
    display: block;
  }
}

.cpytng-user-voice .thumb {
  width: 350px;
}

@media screen and (max-width: 768px) {
  .cpytng-user-voice .thumb {
    width: 100%;
    padding: 0 0 25px 0;
  }
}

.cpytng-user-voice .thumb img {
  width: 100%;
}

.cpytng-user-voice .information {
  width: calc(100% - 350px);
  padding-left: 30px;
  box-sizing: border-box;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .cpytng-user-voice .information {
    width: 100%;
    padding: 0;
  }
}

.cpytng-user-voice .information .tl-box {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 25px;
}

.cpytng-user-voice .information .tl-box .heading {
  font-size: 20px;
  color: #005da3;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 999px) {
  .cpytng-user-voice .information .tl-box .heading {
    font-size: 18px;
  }
}

.cpytng-user-voice .information .tl-box p {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .cpytng-user-voice .information .tl-box p {
    font-size: 14px;
  }
}

.cpytng-user-voice .information .read-text {
  font-size: 16px;
  margin-bottom: 40px;
}

@media screen and (max-width: 999px) {
  .cpytng-user-voice .information .read-text {
    font-size: 14px;
  }
}

.cpytng-user-voice .information .btn-basic-type01 {
  text-align: right;
}

.cpytng-user-voice .information .btn-basic-type01 a {
  text-align: center;
}

.page-type__fivestep .five-row {
  padding: 60px 20px;
}

.page-type__fivestep .five-row.no-pdg {
  padding: 0;
}

.page-type__fivestep .five-row.bg-blue {
  background: #0066cc;
}

.page-type__fivestep .five-row.bg-triangle01 {
  background: url("../images/fivestep/triangle01_bg.png") no-repeat left top;
  background-size: 100% auto;
}

.page-type__fivestep .five-row.bg-triangle02 {
  background: url("../images/fivestep/triangle02_bg.png") no-repeat right top;
  background-size: 100% auto;
}

.page-type__fivestep .five-row .title-type__bar_img {
  padding: 20px 20px;
  text-align: center;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
}

.page-type__fivestep .five-row .title-type__bar_img.bg-faq {
  background: #e5e5e5;
}

.page-type__fivestep .five-row .title-type__bar_img .heading {
  font-size: 26px;
  margin-bottom: 7px;
  color: #003399;
}

@media screen and (max-width: 999px) {
  .page-type__fivestep .five-row .title-type__bar_img .heading {
    font-size: 20px;
  }
}

.page-type__fivestep .five-row .title-type__bar_img p {
  font-size: 18px;
}

@media screen and (max-width: 999px) {
  .page-type__fivestep .five-row .title-type__bar_img p {
    font-size: 14px;
  }
}

.page-type__fivestep .five-row .title-type__bar {
  background: #005da3;
  padding: 15px 20px;
  text-align: center;
  line-height: 1.2;
  color: #ffffff;
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__fivestep .five-row .title-type__bar {
    font-size: 16px;
  }
}

.page-type__fivestep .five-row .title-type__bar span {
  font-size: 32px;
}

@media screen and (max-width: 999px) {
  .page-type__fivestep .five-row .title-type__bar span {
    font-size: 20px;
  }
}

@media screen and (min-width: 1000px) {
  .page-type__fivestep .five-row .title-type__bar br {
    display: none;
  }
}

.page-type__fivestep .five-row .inner__block {
  max-width: 1100px;
  margin: 0 auto;
}

.page-type__fivestep .five-row .inner__block.pd-type {
  padding: 60px 20px;
}

.fs-pre-message {
  line-height: 1.5;
}

.fs-pre-message .heading {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 30px;
  color: #ffffff;
}

@media screen and (max-width: 999px) {
  .fs-pre-message .heading {
    font-size: 20px;
  }
}

.fs-pre-message .list ul {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 999px) {
  .fs-pre-message .list ul {
    display: block;
  }
}

.fs-pre-message .list ul li {
  position: relative;
  width: 48%;
  margin: 1%;
  padding: 15px 15px 15px 45px;
  background: #ffffff;
  box-sizing: border-box;
  border-radius: 100px;
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .fs-pre-message .list ul li {
    width: 100%;
    font-size: 16px;
    margin: 0 0 10px 0;
  }
}

.fs-pre-message .list ul li::before {
  content: "";
  width: 18px;
  height: 26px;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -13px;
  background: url("../images/fivestep/icon_check.png") no-repeat;
  background-size: 100% auto;
}

.fs-btm__bg {
  background: url("../images/fivestep/message_bg.jpg") no-repeat center center #d8dada;
  background-size: auto 100%;
  height: 300px;
}

@media screen and (max-width: 999px) {
  .fs-btm__bg {
    height: 100px;
  }
}

.fs-movie-block-list {
  display: flex;
  gap: 20px;
}

.fs-movie-block-list-item {
  flex: 0 0 calc((100% - 40px)/3);
}

@media screen and (max-width: 999px) {
  .fs-movie-block-list {
    display: block;
  }

  .fs-movie-block-list-item {
    margin-bottom: 20px;
  }

  .fs-movie-block-list-item :before {
    margin-bottom: 0;
  }
}

.fs-movie-block .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.fs-movie-block .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.fs-reason__wrap .sub-title {
  display: flex;
  margin-bottom: 20px;
}

.fs-reason__wrap .sub-title .t-inner {
  max-width: 550px;
  line-height: 1.5;
}

.fs-reason__wrap .sub-title .t-inner .heading {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.1;
  padding-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .fs-reason__wrap .sub-title .t-inner .heading {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .fs-reason__wrap .sub-title .t-inner .heading {
    color: #333333;
  }
}

.fs-reason__wrap .sub-title .t-inner p {
  font-size: 16px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .fs-reason__wrap .sub-title .t-inner p {
    color: #333333;
  }
}

.fs-reason__wrap .reason-list .row {
  display: flex;
  margin-bottom: 20px;
  border: 2px solid #003399;
  background: #ffffff;
  line-height: 1.5;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .fs-reason__wrap .reason-list .row {
    display: block;
  }
}

.fs-reason__wrap .reason-list .row .num {
  width: 95px;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0037cd+0,00acf4+100 */
  background: #0037cd;
  /* Old browsers */
  background: -moz-linear-gradient(left, #0037cd 0%, #00acf4 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0037cd 0%, #00acf4 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0037cd 0%, #00acf4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0037cd', endColorstr='#00acf4', GradientType=1);
  /* IE6-9 */
}

@media screen and (max-width: 999px) {
  .fs-reason__wrap .reason-list .row .num {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .fs-reason__wrap .reason-list .row .num {
    width: 100%;
  }
}

.fs-reason__wrap .reason-list .row .information {
  width: calc(100% - 95px);
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 999px) {
  .fs-reason__wrap .reason-list .row .information {
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .fs-reason__wrap .reason-list .row .information {
    width: 100%;
  }
}

.fs-reason__wrap .reason-list .row .information .thumb {
  width: 240px;
  font-size: 0px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .fs-reason__wrap .reason-list .row .information .thumb {
    width: 80px;
  }
}

.fs-reason__wrap .reason-list .row .information .thumb img {
  width: 100%;
}

.fs-reason__wrap .reason-list .row .information .text-block {
  width: calc(100% - 240px);
  padding: 0 0 0 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .fs-reason__wrap .reason-list .row .information .text-block {
    width: calc(100% - 80px);
    padding: 0 0 0 10px;
  }
}

.fs-reason__wrap .reason-list .row .information .text-block .heading {
  font-size: 28px;
  color: #2e5fb8;
  margin-bottom: 15px;
}

@media screen and (max-width: 999px) {
  .fs-reason__wrap .reason-list .row .information .text-block .heading {
    font-size: 16px;
  }
}

.fs-reason__wrap .reason-list .row .information .text-block p {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .fs-reason__wrap .reason-list .row .information .text-block p {
    font-size: 14px;
  }
}

.fs-merit__wrap .sub-title {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.fs-merit__wrap .sub-title .t-inner {
  max-width: 550px;
  line-height: 1.5;
}

.fs-merit__wrap .sub-title .t-inner .heading {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.1;
  padding-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .fs-merit__wrap .sub-title .t-inner .heading {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .fs-merit__wrap .sub-title .t-inner .heading {
    color: #333333;
  }
}

.fs-merit__wrap .sub-title .t-inner p {
  font-size: 16px;
  color: #ffffff;
}

@media screen and (max-width: 999px) {
  .fs-merit__wrap .sub-title .t-inner p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .fs-merit__wrap .sub-title .t-inner p {
    color: #333333;
  }
}

.fs-merit__wrap .merit-whole-block {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .fs-merit__wrap .merit-whole-block {
    display: block;
  }
}

.fs-merit__wrap .merit-whole-block .list {
  width: calc(100% - 400px);
  padding-right: 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .fs-merit__wrap .merit-whole-block .list {
    width: 100%;
    padding: 0;
  }
}

.fs-merit__wrap .merit-whole-block .list ul li {
  display: block;
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 1px solid #666666;
}

@media screen and (max-width: 999px) {
  .fs-merit__wrap .merit-whole-block .list ul li {
    font-size: 16px;
  }
}

.fs-merit__wrap .merit-whole-block .list ul li span {
  color: #ff6600;
}

.fs-merit__wrap .merit-whole-block .thumb {
  width: 400px;
}

@media screen and (max-width: 768px) {
  .fs-merit__wrap .merit-whole-block .thumb {
    width: 100%;
    padding: 0 0 15px 0;
  }
}

.fs-merit__wrap .merit-whole-block .thumb img {
  width: 100%;
}

.fs-flow__wrap .l-swicher {
  border-bottom: 2px solid #0035cc;
  margin-bottom: 30px;
}

.fs-flow__wrap .l-swicher .inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
}

@media screen and (max-width: 768px) {
  .fs-flow__wrap .l-swicher .inner {
    display: block;
  }
}

.fs-flow__wrap .l-swicher .inner .btn {
  width: 50%;
  padding: 15px 10px;
  text-align: center;
  line-height: 1.25;
  background: #a0a0a0;
  color: #ffffff;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .fs-flow__wrap .l-swicher .inner .btn {
    width: 100%;
  }
}

.fs-flow__wrap .l-swicher .inner .btn:hover {
  opacity: 0.7;
}

.fs-flow__wrap .l-swicher .inner .btn.active {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00acf4+36,0037cd+100 */
  background: #00acf4;
  /* Old browsers */
  background: -moz-linear-gradient(top, #00acf4 36%, #0037cd 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #00acf4 36%, #0037cd 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #00acf4 36%, #0037cd 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00acf4', endColorstr='#0037cd', GradientType=0);
  /* IE6-9 */
}

.fs-flow__wrap .l-swicher .inner .btn p {
  font-weight: bold;
  font-size: 14px;
}

@media screen and (max-width: 999px) {
  .fs-flow__wrap .l-swicher .inner .btn p {
    font-size: 12px;
  }
}

.fs-flow__wrap .l-swicher .inner .btn p.tl {
  font-size: 22px;
}

@media screen and (max-width: 999px) {
  .fs-flow__wrap .l-swicher .inner .btn p.tl {
    font-size: 16px;
  }
}

.fs-flow__wrap .fs-flow-list.list_02 {
  display: none;
}

.fs-flow__wrap .fs-flow-list .row {
  padding: 20px 0;
  margin-bottom: 50px;
  border-bottom: 1px solid #cccccc;
  position: relative;
}

.fs-flow__wrap .fs-flow-list .row::after {
  content: url("../images/fivestep/arrow_flow.png");
  position: absolute;
  left: 50%;
  bottom: -27px;
  font-size: 0px;
  line-height: 1;
  margin-left: -25px;
}

.fs-flow__wrap .fs-flow-list .row:last-of-type::after {
  display: none;
}

.fs-flow__wrap .fs-flow-list .row .tl {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.fs-flow__wrap .fs-flow-list .row .tl .num {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  border-radius: 50%;
  background: #0066cc;
  width: 50px;
  height: 50px;
}

.fs-flow__wrap .fs-flow-list .row .tl .text {
  width: calc(100% - 50px);
  padding-left: 15px;
  box-sizing: border-box;
  line-height: 1.2;
  font-size: 30px;
  color: #ff6600;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .fs-flow__wrap .fs-flow-list .row .tl .text {
    font-size: 18px;
  }
}

.fs-flow__wrap .fs-flow-list .row .read p {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .fs-flow__wrap .fs-flow-list .row .read p {
    font-size: 14px;
  }
}

.fs-faq__wrap dl {
  display: block;
  margin-bottom: 30px;
}

.fs-faq__wrap dl dt {
  display: block;
  padding: 10px 10px;
  color: #005da3;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
  border: 2px solid #005da3;
}

@media screen and (max-width: 999px) {
  .fs-faq__wrap dl dt {
    font-size: 16px;
  }
}

.fs-faq__wrap dl dd {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .fs-faq__wrap dl dd {
    font-size: 14px;
  }
}

.fs-bottom-message .text {
  text-align: center;
  line-height: 1.25;
  font-size: 36px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #0000cc;
  margin-bottom: 35px;
}

@media screen and (max-width: 999px) {
  .fs-bottom-message .text {
    font-size: 18px;
  }
}

.fs-user-voice {
  display: flex;
}

@media screen and (max-width: 768px) {
  .fs-user-voice {
    display: block;
  }
}

.fs-user-voice .thumb {
  width: 350px;
}

@media screen and (max-width: 768px) {
  .fs-user-voice .thumb {
    width: 100%;
    padding: 0 0 25px 0;
  }
}

.fs-user-voice .thumb img {
  width: 100%;
}

.fs-user-voice .information {
  width: calc(100% - 350px);
  padding-left: 30px;
  box-sizing: border-box;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .fs-user-voice .information {
    width: 100%;
    padding: 0;
  }
}

.fs-user-voice .information .tl-box {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 25px;
}

.fs-user-voice .information .tl-box h6 {
  font-size: 20px;
  color: #005da3;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 999px) {
  .fs-user-voice .information .tl-box h6 {
    font-size: 18px;
  }
}

.fs-user-voice .information .tl-box p {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .fs-user-voice .information .tl-box p {
    font-size: 14px;
  }
}

.fs-user-voice .information .read-text {
  font-size: 16px;
  margin-bottom: 40px;
}

@media screen and (max-width: 999px) {
  .fs-user-voice .information .read-text {
    font-size: 14px;
  }
}

.fs-user-voice .information .btn-basic-type01 {
  text-align: right;
}

.fs-user-voice .information .btn-basic-type01 a {
  text-align: center;
}

.fivestep-single__info .post-content {
  line-height: 1.5;
  margin-bottom: 100px;
}

.fivestep-single__info .post-content dl {
  display: block;
  margin-bottom: 40px;
}

.fivestep-single__info .post-content dl dt {
  display: block;
  border-radius: 40px;
  color: #0033cc;
  background: #d2d2d2;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 999px) {
  .fivestep-single__info .post-content dl dt {
    font-size: 16px;
  }
}

.fivestep-single__info .post-content dl dd {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}

@media screen and (max-width: 999px) {
  .fivestep-single__info .post-content dl dd {
    font-size: 14px;
  }
}

.fivestep-single__info .post-content dl dd.read-text {
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 999px) {
  .fivestep-single__info .post-content dl dd.read-text {
    font-size: 14px;
  }
}

.fivestep-single__info .post-content dl dd p {
  margin-bottom: 1.5em;
}

.fivestep-single__info .post-content dl dd .basic-info-tbl table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.5;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .fivestep-single__info .post-content dl dd .basic-info-tbl table {
    display: block;
    width: 100%;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .fivestep-single__info .post-content dl dd .basic-info-tbl table tbody {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .fivestep-single__info .post-content dl dd .basic-info-tbl table tbody tr {
    display: block;
  }
}

.fivestep-single__info .post-content dl dd .basic-info-tbl table tbody tr th {
  text-align: left;
  padding: 10px;
  background: #0085B2;
  color: #ffffff;
  border: 1px solid #206e88;
  width: 180px;
}

@media screen and (max-width: 768px) {
  .fivestep-single__info .post-content dl dd .basic-info-tbl table tbody tr th {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: none;
  }
}

.fivestep-single__info .post-content dl dd .basic-info-tbl table tbody tr td {
  text-align: left;
  padding: 10px;
  border: 1px solid #cadce2;
}

@media screen and (max-width: 768px) {
  .fivestep-single__info .post-content dl dd .basic-info-tbl table tbody tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: none;
  }
}

@media screen and (max-width: 768px) {
  .fivestep-single__info .post-content dl dd .sch-table {
    width: 100%;
    overflow: auto;
  }
}

.fivestep-single__info .post-content dl dd .sch-table table {
  width: 100%;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .fivestep-single__info .post-content dl dd .sch-table table {
    width: 600px;
    font-size: 14px;
  }
}

.fivestep-single__info .post-content dl dd .sch-table table tbody tr th {
  padding: 10px;
  text-align: center;
  background: #0085B2;
  color: #fff;
  font-weight: normal;
  border: 1px solid #206e88;
}

.fivestep-single__info .post-content dl dd .sch-table table tbody tr td {
  padding: 10px;
  text-align: center;
  border: 1px solid #cadce2;
}

.apply-school-jump {
  padding: 0 0 40px 0;
}

.page-type__fivestepplus .fiveplus-row {
  padding: 60px 20px;
}

.page-type__fivestepplus .fiveplus-row.no-pdg {
  padding: 0;
}

.page-type__fivestepplus .fiveplus-row.bg-blue {
  background: #00a0e9;
}

.page-type__fivestepplus .fiveplus-row.bg-black {
  background: #000000;
}

.page-type__fivestepplus .fiveplus-row.bg-triangle01 {
  background: url("../images/fivestepplus/triangle01_bg.png") no-repeat left top;
  background-size: 100% auto;
}

.page-type__fivestepplus .fiveplus-row.bg-triangle02 {
  background: url("../images/fivestepplus/triangle02_bg.png") no-repeat right top;
  background-size: 100% auto;
}

.page-type__fivestepplus .fiveplus-row .title-type__bar_img {
  padding: 20px 20px;
  text-align: center;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
}

.page-type__fivestepplus .fiveplus-row .title-type__bar_img.bg-faq {
  background: #e5e5e5;
}

.page-type__fivestepplus .fiveplus-row .title-type__bar_img .heading {
  font-size: 26px;
  margin-bottom: 7px;
  color: #003399;
}

@media screen and (max-width: 999px) {
  .page-type__fivestepplus .fiveplus-row .title-type__bar_img .heading {
    font-size: 20px;
  }
}

.page-type__fivestepplus .fiveplus-row .title-type__bar_img p {
  font-size: 18px;
}

@media screen and (max-width: 999px) {
  .page-type__fivestepplus .fiveplus-row .title-type__bar_img p {
    font-size: 14px;
  }
}

.page-type__fivestepplus .fiveplus-row .title-type__bar {
  background: #043a70;
  padding: 15px 20px;
  text-align: center;
  line-height: 1.2;
  color: #ffffff;
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__fivestepplus .fiveplus-row .title-type__bar {
    font-size: 16px;
  }
}

.page-type__fivestepplus .fiveplus-row .title-type__bar span {
  font-size: 32px;
}

@media screen and (max-width: 999px) {
  .page-type__fivestepplus .fiveplus-row .title-type__bar span {
    font-size: 20px;
  }
}

@media screen and (min-width: 1000px) {
  .page-type__fivestepplus .fiveplus-row .title-type__bar br {
    display: none;
  }
}

.page-type__fivestepplus .fiveplus-row .inner__block {
  max-width: 1100px;
  margin: 0 auto;
}

.page-type__fivestepplus .fiveplus-row .inner__block.pd-type {
  padding: 60px 20px;
}

.fsplus-pre-message {
  line-height: 1.5;
}

.fsplus-pre-message h4 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 30px;
  color: #ffffff;
}

@media screen and (max-width: 999px) {
  .fsplus-pre-message h4 {
    font-size: 20px;
  }
}

.fsplus-pre-message .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (max-width: 999px) {
  .fsplus-pre-message .list ul {
    display: block;
  }
}

.fsplus-pre-message .list ul li {
  position: relative;
  width: 48%;
  margin: 1%;
  padding: 15px 15px 15px 45px;
  background: #ffffff;
  box-sizing: border-box;
  border-radius: 100px;
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .fsplus-pre-message .list ul li {
    width: 100%;
    font-size: 16px;
    margin: 0 0 10px 0;
  }
}

.fsplus-pre-message .list ul li::before {
  content: "";
  width: 18px;
  height: 26px;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -13px;
  background: url("../images/fivestep/icon_check.png") no-repeat;
  background-size: 100% auto;
}

.fsplus-movie-block .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.fsplus-movie-block .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.fsplus-plusimage {
  padding: 40px 0 0 0;
}

.fsplus-plusimage .heading {
  font-size: 24px;
  line-height: 1.5;
  padding: 10px;
  color: #ffffff;
  text-align: center;
  border-radius: 50px;
  background: #043a70;
  margin-bottom: 25px;
}

.fsplus-plusimage .visual {
  text-align: center;
}

.fsplus-plusimage .visual img {
  max-width: 100%;
}

.fsplus-reason__wrap .sub-title {
  display: flex;
  margin-bottom: 20px;
}

.fsplus-reason__wrap .sub-title .t-inner {
  max-width: 550px;
  line-height: 1.5;
}

.fsplus-reason__wrap .sub-title .t-inner .heading {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.1;
  padding-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .fsplus-reason__wrap .sub-title .t-inner .heading {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .fsplus-reason__wrap .sub-title .t-inner .heading {
    color: #333333;
  }
}

.fsplus-reason__wrap .sub-title .t-inner p {
  font-size: 16px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .fsplus-reason__wrap .sub-title .t-inner p {
    color: #333333;
  }
}

.fsplus-reason__wrap .reason-list .row {
  display: flex;
  margin-bottom: 20px;
  border: 2px solid #003399;
  background: #ffffff;
  line-height: 1.5;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .fsplus-reason__wrap .reason-list .row {
    display: block;
  }
}

.fsplus-reason__wrap .reason-list .row .num {
  width: 95px;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#04275f+0,113fb9+100 */
  background: #04275f;
  /* Old browsers */
  background: -moz-linear-gradient(left, #04275f 0%, #113fb9 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #04275f 0%, #113fb9 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #04275f 0%, #113fb9 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#04275f', endColorstr='#113fb9', GradientType=1);
  /* IE6-9 */
}

@media screen and (max-width: 999px) {
  .fsplus-reason__wrap .reason-list .row .num {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .fsplus-reason__wrap .reason-list .row .num {
    width: 100%;
  }
}

.fsplus-reason__wrap .reason-list .row .information {
  width: calc(100% - 95px);
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 999px) {
  .fsplus-reason__wrap .reason-list .row .information {
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .fsplus-reason__wrap .reason-list .row .information {
    width: 100%;
  }
}

.fsplus-reason__wrap .reason-list .row .information .thumb {
  width: 240px;
  font-size: 0px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .fsplus-reason__wrap .reason-list .row .information .thumb {
    width: 80px;
  }
}

.fsplus-reason__wrap .reason-list .row .information .thumb img {
  width: 100%;
}

.fsplus-reason__wrap .reason-list .row .information .text-block {
  width: calc(100% - 240px);
  padding: 0 0 0 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .fsplus-reason__wrap .reason-list .row .information .text-block {
    width: calc(100% - 80px);
    padding: 0 0 0 10px;
  }
}

.fsplus-reason__wrap .reason-list .row .information .text-block .heading {
  font-size: 28px;
  color: #000099;
  margin-bottom: 15px;
}

@media screen and (max-width: 999px) {
  .fsplus-reason__wrap .reason-list .row .information .text-block .heading {
    font-size: 16px;
  }
}

.fsplus-reason__wrap .reason-list .row .information .text-block p {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .fsplus-reason__wrap .reason-list .row .information .text-block p {
    font-size: 14px;
  }
}

.fsplus-merit__wrap .sub-title {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.fsplus-merit__wrap .sub-title .t-inner {
  max-width: 550px;
  line-height: 1.5;
}

.fsplus-merit__wrap .sub-title .t-inner .heading {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.1;
  padding-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .fsplus-merit__wrap .sub-title .t-inner .heading {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .fsplus-merit__wrap .sub-title .t-inner .heading {
    color: #333333;
  }
}

.fsplus-merit__wrap .sub-title .t-inner p {
  font-size: 16px;
  color: #ffffff;
}

@media screen and (max-width: 999px) {
  .fsplus-merit__wrap .sub-title .t-inner p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .fsplus-merit__wrap .sub-title .t-inner p {
    color: #333333;
  }
}

.fsplus-merit__wrap .merit-whole-block {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .fsplus-merit__wrap .merit-whole-block {
    display: block;
  }
}

.fsplus-merit__wrap .merit-whole-block .list {
  width: calc(100% - 400px);
  padding-right: 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .fsplus-merit__wrap .merit-whole-block .list {
    width: 100%;
    padding: 0;
  }
}

.fsplus-merit__wrap .merit-whole-block .list ul li {
  display: block;
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 1px solid #666666;
}

@media screen and (max-width: 999px) {
  .fsplus-merit__wrap .merit-whole-block .list ul li {
    font-size: 16px;
  }
}

.fsplus-merit__wrap .merit-whole-block .list ul li span {
  color: #cc0000;
}

.fsplus-merit__wrap .merit-whole-block .thumb {
  width: 400px;
}

@media screen and (max-width: 768px) {
  .fsplus-merit__wrap .merit-whole-block .thumb {
    width: 100%;
    padding: 0 0 15px 0;
  }
}

.fsplus-merit__wrap .merit-whole-block .thumb img {
  width: 100%;
}

.fsplus-advantage__wrap table.chigaTbl {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.5;
}

.fsplus-advantage__wrap table.chigaTbl tbody tr th {
  padding: 10px 20px;
  text-align: center;
}

.fsplus-advantage__wrap table.chigaTbl tbody tr th.fTr {
  background: #148dc3;
  color: #fff;
  font-size: 20px;
  border: 2px solid #148dc3;
}

@media screen and (max-width: 999px) {
  .fsplus-advantage__wrap table.chigaTbl tbody tr th.fTr {
    font-size: 16px;
  }
}

.fsplus-advantage__wrap table.chigaTbl tbody tr th.fPl {
  background: #04265b;
  color: #fff;
  font-size: 20px;
  border: 2px solid #04265b;
  border-left: 4px solid #04265b;
  border-right: 4px solid #04265b;
}

@media screen and (max-width: 999px) {
  .fsplus-advantage__wrap table.chigaTbl tbody tr th.fPl {
    font-size: 16px;
  }
}

@media screen and (min-width: 1000px) {
  .fsplus-advantage__wrap table.chigaTbl tbody tr th br {
    display: none;
  }
}

.fsplus-advantage__wrap table.chigaTbl tbody tr td {
  padding: 10px 20px;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .fsplus-advantage__wrap table.chigaTbl tbody tr td br {
    display: none;
  }
}

.fsplus-advantage__wrap table.chigaTbl tbody tr td.fTr {
  background: #fff;
  color: #148dc3;
  font-size: 20px;
  border-left: 1px solid #148dc3;
  border-right: 1px solid #148dc3;
  border-bottom: 1px solid #148dc3;
  border-top: 1px solid #148dc3;
}

@media screen and (max-width: 999px) {
  .fsplus-advantage__wrap table.chigaTbl tbody tr td.fTr {
    font-size: 14px;
  }
}

.fsplus-advantage__wrap table.chigaTbl tbody tr td.fPl {
  background: #fff;
  color: #04265b;
  font-size: 20px;
  border-left: 4px solid #04265b;
  border-right: 4px solid #04265b;
  border-bottom: 4px solid #04265b;
  border-top: 4px solid #04265b;
}

@media screen and (max-width: 999px) {
  .fsplus-advantage__wrap table.chigaTbl tbody tr td.fPl {
    font-size: 14px;
  }
}

.fsplus-advantage__wrap table.chigaTbl tbody tr td.chigaTd {
  background: #f4f4f4;
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .fsplus-advantage__wrap table.chigaTbl tbody tr td.chigaTd {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .fsplus-explain__wrap {
    overflow: auto;
  }
}

.fsplus-explain__wrap .plusTbl {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .fsplus-explain__wrap .plusTbl {
    width: 600px;
  }
}

.fsplus-explain__wrap .plusTbl tbody tr th {
  padding: 10px 20px;
}

@media screen and (max-width: 999px) {
  .fsplus-explain__wrap .plusTbl tbody tr th {
    padding: 7px;
    font-size: 14px;
  }
}

.fsplus-explain__wrap .plusTbl tbody tr th.ship {
  background: #526497;
  color: #fff;
  text-align: center;
  width: 42.5%;
  border-bottom: 1px solid #fff;
  padding: 20px;
  font-size: 18px;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 999px) {
  .fsplus-explain__wrap .plusTbl tbody tr th.ship {
    padding: 7px;
    font-size: 14px;
  }
}

.fsplus-explain__wrap .plusTbl tbody tr th.tech {
  background: #258AB0;
  color: #fff;
  text-align: center;
  width: 42.5%;
  border-bottom: 1px solid #fff;
  padding: 20px;
  font-size: 18px;
}

@media screen and (max-width: 999px) {
  .fsplus-explain__wrap .plusTbl tbody tr th.tech {
    padding: 7px;
    font-size: 14px;
  }
}

.fsplus-explain__wrap .plusTbl tbody tr th.plusStep {
  background: #04265b;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px dotted #fff;
  vertical-align: middle;
  border-right: 1px dotted #000;
  width: 15%;
  font-size: 18px;
}

@media screen and (max-width: 999px) {
  .fsplus-explain__wrap .plusTbl tbody tr th.plusStep {
    width: 25%;
    padding: 7px;
    font-size: 14px;
  }
}

.fsplus-explain__wrap .plusTbl tbody tr th.special {
  background: #04265b;
  color: #FFFD00;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px dotted #fff;
  vertical-align: middle;
  border-right: 1px dotted #FFFD00;
  padding: 10px;
  font-size: 18px;
}

@media screen and (max-width: 999px) {
  .fsplus-explain__wrap .plusTbl tbody tr th.special {
    padding: 7px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1000px) {
  .fsplus-explain__wrap .plusTbl tbody tr th br.sp {
    display: none;
  }
}

.fsplus-explain__wrap .plusTbl tbody tr td {
  padding: 10px 20px;
  font-size: 18px;
}

@media screen and (max-width: 999px) {
  .fsplus-explain__wrap .plusTbl tbody tr td {
    padding: 7px;
    font-size: 14px;
  }
}

.fsplus-explain__wrap .plusTbl tbody tr td.ship {
  border-bottom: 1px dotted #000;
  border-right: 1px dotted #000;
  vertical-align: middle;
  color: #526497;
}

.fsplus-explain__wrap .plusTbl tbody tr td.tech {
  border-bottom: 1px dotted #000;
  border-right: 1px dotted #000;
  vertical-align: middle;
  color: #258AB0;
}

@media screen and (min-width: 1000px) {
  .fsplus-explain__wrap .plusTbl tbody tr td br.sp {
    display: none;
  }
}

.fsplus-schedule__wrap .howto-fee {
  margin-bottom: 40px;
}

.fsplus-schedule__wrap .howto-fee .heading {
  padding: 10px;
  line-height: 1.5;
  color: #ffffff;
  background: #04265b;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .fsplus-schedule__wrap .howto-fee .heading {
    font-size: 18px;
  }
}

.fsplus-schedule__wrap .howto-fee .information .tbl {
  padding-bottom: 10px;
}

.fsplus-schedule__wrap .howto-fee .information .tbl table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.5;
  font-size: 16px;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .fsplus-schedule__wrap .howto-fee .information .tbl table {
    font-size: 13px;
  }
}

.fsplus-schedule__wrap .howto-fee .information .tbl table tbody tr th {
  padding: 10px;
  width: calc(100% / 3);
  border: 1px solid #ffffff;
  box-sizing: border-box;
  background: #04265b;
  color: #ffffff;
}

.fsplus-schedule__wrap .howto-fee .information .tbl table tbody tr td {
  padding: 10px;
  width: calc(100% / 3);
  border: 1px solid #04265b;
  box-sizing: border-box;
  vertical-align: middle;
}

.fsplus-schedule__wrap .howto-fee .information .text {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .fsplus-schedule__wrap .howto-fee .information .text {
    font-size: 14px;
  }
}

.fsplus-schedule__wrap .howto-flowchart {
  margin-bottom: 40px;
}

.fsplus-schedule__wrap .howto-flowchart .heading {
  padding: 10px;
  line-height: 1.5;
  color: #ffffff;
  background: #04265b;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .fsplus-schedule__wrap .howto-flowchart .heading {
    font-size: 18px;
  }
}

.fsplus-schedule__wrap .howto-flowchart .information .chart {
  text-align: center;
  margin-bottom: 10px;
}

.fsplus-schedule__wrap .howto-flowchart .information .chart img {
  width: 100%;
}

.fsplus-schedule__wrap .howto-flowchart .information .text {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .fsplus-schedule__wrap .howto-flowchart .information .text {
    font-size: 14px;
  }
}

.fsplus-schedule__wrap .howto-use {
  margin-bottom: 40px;
}

.fsplus-schedule__wrap .howto-use .chart {
  margin-bottom: 20px;
}

.fsplus-schedule__wrap .howto-use .chart img {
  width: 100%;
}

.fsplus-schedule__wrap .howto-use .information dl {
  display: flex;
  border: 1px solid #04265b;
  margin-bottom: 15px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .fsplus-schedule__wrap .howto-use .information dl {
    display: block;
  }
}

.fsplus-schedule__wrap .howto-use .information dl dt {
  width: 300px;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  background: #04265b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  .fsplus-schedule__wrap .howto-use .information dl dt {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .fsplus-schedule__wrap .howto-use .information dl dt {
    display: block;
    width: 100%;
  }
}

.fsplus-schedule__wrap .howto-use .information dl dd {
  width: calc(100% - 300px);
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #04265b;
  box-sizing: border-box;
  padding: 10px;
}

@media screen and (max-width: 999px) {
  .fsplus-schedule__wrap .howto-use .information dl dd {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .fsplus-schedule__wrap .howto-use .information dl dd {
    display: block;
    width: 100%;
  }
}

.fsplus-schedule__wrap .web-theminor__wrap {
  padding: 20px;
  background: #f3f3f3;
  margin-bottom: 30px;
}

.fsplus-schedule__wrap .web-theminor__wrap .heading {
  text-align: center;
  line-height: 1.5;
  font-size: 22px;
  font-weight: bold;
  color: #04265b;
  margin-bottom: 25px;
}

@media screen and (max-width: 999px) {
  .fsplus-schedule__wrap .web-theminor__wrap .heading {
    font-size: 20px;
  }
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each {
  margin-bottom: 15px;
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .tl-bar {
  position: relative;
  padding: 10px 40px 10px 10px;
  line-height: 1.5;
  font-size: 20px;
  background: #04265b;
  color: #ffffff;
  cursor: pointer;
}

@media screen and (max-width: 999px) {
  .fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .tl-bar {
    font-size: 16px;
  }
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .tl-bar::after {
  content: "+";
  line-height: 1;
  font-size: 26px;
  font-weight: bold;
  position: absolute;
  color: #ffffff;
  right: 10px;
  top: 50%;
  margin-top: -13px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .tl-bar.active::after {
  transform: rotate(45deg);
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .sh-cont {
  display: none;
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__sp {
  padding: 10px 0;
  display: none;
}

@media screen and (max-width: 999px) {
  .fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__sp {
    display: block;
  }
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__sp .row .tl {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background: #053c92;
  padding: 5px;
  text-align: center;
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__sp .row .tbl table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.5;
  text-align: center;
  font-size: 14px;
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__sp .row .tbl table tbody tr th {
  width: 50%;
  background: #ffffff;
  padding: 7px;
  box-sizing: border-box;
  border: 1px solid #053c92;
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__sp .row .tbl table tbody tr td {
  width: 50%;
  background: #ffffff;
  padding: 7px;
  box-sizing: border-box;
  border: 1px solid #053c92;
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__pc {
  padding: 10px 0;
}

@media screen and (max-width: 999px) {
  .fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__pc {
    display: none;
  }
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__pc table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.5;
  text-align: center;
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__pc table tbody tr th {
  border: 1px solid #053c92;
  padding: 10px;
  box-sizing: border-box;
  color: #ffffff;
  background: #053c92;
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__pc table tbody tr th.type01 {
  width: 40%;
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__pc table tbody tr th.type02 {
  width: 30%;
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__pc table tbody tr th.type03 {
  width: 30%;
}

.fsplus-schedule__wrap .web-theminor__wrap .plus-theminor__each .seminor-tbl__pc table tbody tr td {
  border: 1px solid #053c92;
  padding: 10px;
  box-sizing: border-box;
  color: #333333;
  background: #ffffff;
}

.fsplus-faq__wrap dl {
  display: block;
  margin-bottom: 30px;
}

.fsplus-faq__wrap dl dt {
  display: block;
  padding: 10px 10px;
  color: #005da3;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
  border: 2px solid #005da3;
}

@media screen and (max-width: 999px) {
  .fsplus-faq__wrap dl dt {
    font-size: 16px;
  }
}

.fsplus-faq__wrap dl dd {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .fsplus-faq__wrap dl dd {
    font-size: 14px;
  }
}

.fsplus-bottom-message .text {
  text-align: center;
  line-height: 1.25;
  font-size: 36px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #04265b;
  margin-bottom: 35px;
}

@media screen and (max-width: 999px) {
  .fsplus-bottom-message .text {
    font-size: 18px;
  }
}

.fsplus-bottom-message .btn-notes {
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding-top: 15px;
}

@media screen and (max-width: 999px) {
  .fsplus-bottom-message .btn-notes {
    font-size: 14px;
  }
}

.fsplus-user-voice {
  display: flex;
}

@media screen and (max-width: 768px) {
  .fsplus-user-voice {
    display: block;
  }
}

.fsplus-user-voice .thumb {
  width: 350px;
}

@media screen and (max-width: 768px) {
  .fsplus-user-voice .thumb {
    width: 100%;
    padding: 0 0 25px 0;
  }
}

.fsplus-user-voice .thumb img {
  width: 100%;
}

.fsplus-user-voice .information {
  width: calc(100% - 350px);
  padding-left: 30px;
  box-sizing: border-box;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .fsplus-user-voice .information {
    width: 100%;
    padding: 0;
  }
}

.fsplus-user-voice .information .tl-box {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 25px;
}

.fsplus-user-voice .information .tl-box h6 {
  font-size: 20px;
  color: #005da3;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 999px) {
  .fsplus-user-voice .information .tl-box h6 {
    font-size: 18px;
  }
}

.fsplus-user-voice .information .tl-box p {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .fsplus-user-voice .information .tl-box p {
    font-size: 14px;
  }
}

.fsplus-user-voice .information .read-text {
  font-size: 16px;
  margin-bottom: 40px;
}

@media screen and (max-width: 999px) {
  .fsplus-user-voice .information .read-text {
    font-size: 14px;
  }
}

.fsplus-user-voice .information .btn-basic-type01 {
  text-align: right;
}

.fsplus-user-voice .information .btn-basic-type01 a {
  text-align: center;
}

.page-type__schedule .schedule-single article.post-row {
  display: block;
  margin-bottom: 100px;
}

.page-type__schedule .schedule-single article.post-row header.post-head {
  padding: 30px 20px;
  border: 1px solid #495db4;
  margin-bottom: 45px;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single article.post-row header.post-head {
    padding: 15px 10px;
  }
}

.page-type__schedule .schedule-single article.post-row header.post-head .post-cat {
  text-align: center;
  margin-bottom: 20px;
}

.page-type__schedule .schedule-single article.post-row header.post-head .post-cat span {
  display: inline-block;
  padding: 5px 20px;
  font-size: 16px;
  line-height: 1.5;
  background: #000000;
  color: #ffffff;
  font-weight: bold;
  border-radius: 50px;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single article.post-row header.post-head .post-cat span {
    font-size: 12px;
  }
}

.page-type__schedule .schedule-single article.post-row header.post-head h4 {
  font-size: 28px;
  font-weight: bold;
  color: #0d2bc9;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single article.post-row header.post-head h4 {
    font-size: 18px;
  }
}

.page-type__schedule .schedule-single article.post-row .post-visual {
  margin-bottom: 45px;
  text-align: center;
}

.page-type__schedule .schedule-single article.post-row .post-visual img {
  max-width: 100%;
}

.page-type__schedule .schedule-single article.post-row .post-content {
  line-height: 1.5;
  margin-bottom: 100px;
}

.page-type__schedule .schedule-single article.post-row .post-content dl {
  display: block;
  margin-bottom: 40px;
}

.page-type__schedule .schedule-single article.post-row .post-content dl dt {
  display: block;
  border-radius: 40px;
  color: #0033cc;
  background: #d2d2d2;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single article.post-row .post-content dl dt {
    font-size: 16px;
  }
}

.page-type__schedule .schedule-single article.post-row .post-content dl dd {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single article.post-row .post-content dl dd {
    font-size: 14px;
  }
}

.page-type__schedule .schedule-single article.post-row .post-content dl dd.read-text {
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single article.post-row .post-content dl dd.read-text {
    font-size: 14px;
  }
}

.page-type__schedule .schedule-single article.post-row .post-content dl dd.read-text p {
  margin-bottom: 1.5em;
}

.page-type__schedule .schedule-single article.post-row .post-content dl dd.read-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single article.post-row .post-content dl dd.read-text h2 {
    font-size: 20px;
  }
}

.page-type__schedule .schedule-single article.post-row .post-content dl dd.read-text h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single article.post-row .post-content dl dd.read-text h3 {
    font-size: 18px;
  }
}

.page-type__schedule .schedule-single article.post-row .post-content dl dd.read-text h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single article.post-row .post-content dl dd.read-text h4 {
    font-size: 16px;
  }
}

.page-type__schedule .schedule-single article.post-row .post-content dl dd.read-text ul {
  padding-left: 1em;
}

.page-type__schedule .schedule-single article.post-row .post-content dl dd.read-text ul li {
  list-style: disc;
  list-style-type: disc;
}

.page-type__schedule .schedule-single article.post-row .post-content dl dd p {
  margin-bottom: 1.5em;
}

.page-type__schedule .schedule-single article.post-row .apply-btn {
  text-align: center;
}

.page-type__schedule .schedule-single article.post-row .apply-btn a {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  box-sizing: border-box;
  line-height: 1.5;
  color: #ffffff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2985e1+0,0d41c2+100 */
  background: #2985e1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2985e1 0%, #0d41c2 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2985e1', endColorstr='#0d41c2', GradientType=0);
  /* IE6-9 */
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single article.post-row .apply-btn a {
    font-size: 16px;
  }
}

.page-type__schedule .schedule-single article.post-row .apply-btn a:hover {
  opacity: 0.7;
}

.page-type__schedule .schedule-single .back-list-btn {
  text-align: center;
}

.page-type__schedule .schedule-single .back-list-btn a {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  padding: 10px 20px;
  box-sizing: border-box;
  line-height: 1.5;
  border-radius: 10px;
  color: #2b32be;
  border: 1px solid #2b32be;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-type__schedule .schedule-single .back-list-btn a:hover {
  background: #2b32be;
  color: #ffffff;
}

.page-type__schedule .schedule-single__dir2 article.post-row {
  display: block;
  margin-bottom: 100px;
}

.page-type__schedule .schedule-single__dir2 article.post-row header.post-head {
  padding: 30px 20px;
  border: 1px solid #495db4;
  margin-bottom: 45px;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single__dir2 article.post-row header.post-head {
    padding: 15px 10px;
  }
}

.page-type__schedule .schedule-single__dir2 article.post-row header.post-head .post-cat {
  text-align: center;
  margin-bottom: 20px;
}

.page-type__schedule .schedule-single__dir2 article.post-row header.post-head .post-cat span {
  display: inline-block;
  padding: 5px 20px;
  font-size: 16px;
  line-height: 1.5;
  background: #000000;
  color: #ffffff;
  font-weight: bold;
  border-radius: 50px;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single__dir2 article.post-row header.post-head .post-cat span {
    font-size: 12px;
  }
}

.page-type__schedule .schedule-single__dir2 article.post-row header.post-head h4 {
  font-size: 28px;
  font-weight: bold;
  color: #0d2bc9;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single__dir2 article.post-row header.post-head h4 {
    font-size: 18px;
  }
}

.page-type__schedule .schedule-single__dir2 article.post-row .post-visual {
  margin-bottom: 45px;
  text-align: center;
}

.page-type__schedule .schedule-single__dir2 article.post-row .post-visual img {
  max-width: 100%;
}

.page-type__schedule .schedule-single__dir2 article.post-row .post-content {
  line-height: 1.5;
  margin-bottom: 100px;
}

.page-type__schedule .schedule-single__dir2 article.post-row .post-content dl {
  display: block;
  margin-bottom: 40px;
}

.page-type__schedule .schedule-single__dir2 article.post-row .post-content dl dt {
  display: block;
  border-radius: 40px;
  color: #0033cc;
  background: #d2d2d2;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single__dir2 article.post-row .post-content dl dt {
    font-size: 16px;
  }
}

.page-type__schedule .schedule-single__dir2 article.post-row .post-content dl dd {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single__dir2 article.post-row .post-content dl dd {
    font-size: 14px;
  }
}

.page-type__schedule .schedule-single__dir2 article.post-row .post-content dl dd.read-text {
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single__dir2 article.post-row .post-content dl dd.read-text {
    font-size: 14px;
  }
}

.page-type__schedule .schedule-single__dir2 article.post-row .post-content dl dd p {
  margin-bottom: 1.5em;
}

@media screen and (max-width: 768px) {
  .page-type__schedule .schedule-single__dir2 article.post-row .post-content dl dd .sch-table {
    width: 100%;
    overflow: auto;
  }
}

.page-type__schedule .schedule-single__dir2 article.post-row .post-content dl dd .sch-table table {
  width: 100%;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .page-type__schedule .schedule-single__dir2 article.post-row .post-content dl dd .sch-table table {
    width: 600px;
    font-size: 14px;
  }
}

.page-type__schedule .schedule-single__dir2 article.post-row .post-content dl dd .sch-table table tbody tr th {
  padding: 10px;
  text-align: center;
  background: #0085B2;
  color: #fff;
  font-weight: normal;
  border: 1px solid #206e88;
}

.page-type__schedule .schedule-single__dir2 article.post-row .post-content dl dd .sch-table table tbody tr td {
  padding: 10px;
  text-align: center;
  border: 1px solid #cadce2;
}

.page-type__schedule .schedule-single__dir2 article.post-row .apply-btn {
  text-align: center;
}

.page-type__schedule .schedule-single__dir2 article.post-row .apply-btn a {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  box-sizing: border-box;
  line-height: 1.5;
  color: #ffffff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2985e1+0,0d41c2+100 */
  background: #2985e1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2985e1 0%, #0d41c2 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2985e1', endColorstr='#0d41c2', GradientType=0);
  /* IE6-9 */
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-single__dir2 article.post-row .apply-btn a {
    font-size: 16px;
  }
}

.page-type__schedule .schedule-single__dir2 article.post-row .apply-btn a:hover {
  opacity: 0.7;
}

.page-type__schedule .schedule-single__dir2 .back-list-btn {
  text-align: center;
}

.page-type__schedule .schedule-single__dir2 .back-list-btn a {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  padding: 10px 20px;
  box-sizing: border-box;
  line-height: 1.5;
  border-radius: 10px;
  color: #2b32be;
  border: 1px solid #2b32be;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-type__schedule .schedule-single__dir2 .back-list-btn a:hover {
  background: #2b32be;
  color: #ffffff;
}

.page-type__school .schedule-single article.post-row {
  display: block;
  margin-bottom: 100px;
}

.page-type__school .schedule-single article.post-row header.post-head {
  padding: 30px 20px;
  border: 1px solid #495db4;
  margin-bottom: 45px;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single article.post-row header.post-head {
    padding: 15px 10px;
  }
}

.page-type__school .schedule-single article.post-row header.post-head .post-cat {
  text-align: center;
  margin-bottom: 20px;
}

.page-type__school .schedule-single article.post-row header.post-head .post-cat span {
  display: inline-block;
  padding: 5px 20px;
  font-size: 16px;
  line-height: 1.5;
  background: #000000;
  color: #ffffff;
  font-weight: bold;
  border-radius: 50px;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single article.post-row header.post-head .post-cat span {
    font-size: 12px;
  }
}

.page-type__school .schedule-single article.post-row header.post-head h4 {
  font-size: 28px;
  font-weight: bold;
  color: #0d2bc9;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single article.post-row header.post-head h4 {
    font-size: 18px;
  }
}

.page-type__school .schedule-single article.post-row .post-visual {
  margin-bottom: 45px;
  text-align: center;
}

.page-type__school .schedule-single article.post-row .post-visual img {
  max-width: 100%;
}

.page-type__school .schedule-single article.post-row .post-content {
  line-height: 1.5;
  margin-bottom: 100px;
}

.page-type__school .schedule-single article.post-row .post-content dl {
  display: block;
  margin-bottom: 40px;
}

.page-type__school .schedule-single article.post-row .post-content dl dt {
  display: block;
  border-radius: 40px;
  color: #0033cc;
  background: #d2d2d2;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single article.post-row .post-content dl dt {
    font-size: 16px;
  }
}

.page-type__school .schedule-single article.post-row .post-content dl dd {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single article.post-row .post-content dl dd {
    font-size: 14px;
  }
}

.page-type__school .schedule-single article.post-row .post-content dl dd.read-text {
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single article.post-row .post-content dl dd.read-text {
    font-size: 14px;
  }
}

.page-type__school .schedule-single article.post-row .post-content dl dd p {
  margin-bottom: 1.5em;
}

.page-type__school .schedule-single article.post-row .post-content dl dd .web-attention ul li {
  font-size: 16px;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
  padding: 12px;
  border-bottom: 1px solid #dddddd;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single article.post-row .post-content dl dd .web-attention ul li {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .page-type__school .schedule-single article.post-row .post-content dl dd .sch-table {
    width: 100%;
    overflow: auto;
  }
}

.page-type__school .schedule-single article.post-row .post-content dl dd .sch-table table {
  width: 100%;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .page-type__school .schedule-single article.post-row .post-content dl dd .sch-table table {
    width: 600px;
    font-size: 14px;
  }
}

.page-type__school .schedule-single article.post-row .post-content dl dd .sch-table table tbody tr th {
  padding: 10px;
  text-align: center;
  background: #0085B2;
  color: #fff;
  font-weight: normal;
  border: 1px solid #206e88;
}

.page-type__school .schedule-single article.post-row .post-content dl dd .sch-table table tbody tr td {
  padding: 10px;
  text-align: center;
  border: 1px solid #cadce2;
}

.page-type__school .schedule-single article.post-row .apply-btn {
  text-align: center;
}

.page-type__school .schedule-single article.post-row .apply-btn a {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  box-sizing: border-box;
  line-height: 1.5;
  color: #ffffff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2985e1+0,0d41c2+100 */
  background: #2985e1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2985e1 0%, #0d41c2 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2985e1', endColorstr='#0d41c2', GradientType=0);
  /* IE6-9 */
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single article.post-row .apply-btn a {
    font-size: 16px;
  }
}

.page-type__school .schedule-single article.post-row .apply-btn a:hover {
  opacity: 0.7;
}

.page-type__school .schedule-single .back-list-btn {
  text-align: center;
}

.page-type__school .schedule-single .back-list-btn a {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  padding: 10px 20px;
  box-sizing: border-box;
  line-height: 1.5;
  border-radius: 10px;
  color: #2b32be;
  border: 1px solid #2b32be;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-type__school .schedule-single .back-list-btn a:hover {
  background: #2b32be;
  color: #ffffff;
}

.page-type__school .schedule-single__dir2 article.post-row {
  display: block;
  margin-bottom: 100px;
}

.page-type__school .schedule-single__dir2 article.post-row header.post-head {
  padding: 30px 20px;
  border: 1px solid #495db4;
  margin-bottom: 45px;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single__dir2 article.post-row header.post-head {
    padding: 15px 10px;
  }
}

.page-type__school .schedule-single__dir2 article.post-row header.post-head .post-cat {
  text-align: center;
  margin-bottom: 20px;
}

.page-type__school .schedule-single__dir2 article.post-row header.post-head .post-cat span {
  display: inline-block;
  padding: 5px 20px;
  font-size: 16px;
  line-height: 1.5;
  background: #000000;
  color: #ffffff;
  font-weight: bold;
  border-radius: 50px;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single__dir2 article.post-row header.post-head .post-cat span {
    font-size: 12px;
  }
}

.page-type__school .schedule-single__dir2 article.post-row header.post-head h4 {
  font-size: 28px;
  font-weight: bold;
  color: #0d2bc9;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single__dir2 article.post-row header.post-head h4 {
    font-size: 18px;
  }
}

.page-type__school .schedule-single__dir2 article.post-row .post-visual {
  margin-bottom: 45px;
  text-align: center;
}

.page-type__school .schedule-single__dir2 article.post-row .post-visual img {
  max-width: 100%;
}

.page-type__school .schedule-single__dir2 article.post-row .post-content {
  line-height: 1.5;
  margin-bottom: 100px;
}

.page-type__school .schedule-single__dir2 article.post-row .post-content dl {
  display: block;
  margin-bottom: 40px;
}

.page-type__school .schedule-single__dir2 article.post-row .post-content dl dt {
  display: block;
  border-radius: 40px;
  color: #0033cc;
  background: #d2d2d2;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single__dir2 article.post-row .post-content dl dt {
    font-size: 16px;
  }
}

.page-type__school .schedule-single__dir2 article.post-row .post-content dl dd {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single__dir2 article.post-row .post-content dl dd {
    font-size: 14px;
  }
}

.page-type__school .schedule-single__dir2 article.post-row .post-content dl dd.read-text {
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single__dir2 article.post-row .post-content dl dd.read-text {
    font-size: 14px;
  }
}

.page-type__school .schedule-single__dir2 article.post-row .post-content dl dd p {
  margin-bottom: 1.5em;
}

@media screen and (max-width: 768px) {
  .page-type__school .schedule-single__dir2 article.post-row .post-content dl dd .sch-table {
    width: 100%;
    overflow: auto;
  }
}

.page-type__school .schedule-single__dir2 article.post-row .post-content dl dd .sch-table table {
  width: 100%;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .page-type__school .schedule-single__dir2 article.post-row .post-content dl dd .sch-table table {
    width: 600px;
    font-size: 14px;
  }
}

.page-type__school .schedule-single__dir2 article.post-row .post-content dl dd .sch-table table tbody tr th {
  padding: 10px;
  text-align: center;
  background: #0085B2;
  color: #fff;
  font-weight: normal;
  border: 1px solid #206e88;
}

.page-type__school .schedule-single__dir2 article.post-row .post-content dl dd .sch-table table tbody tr td {
  padding: 10px;
  text-align: center;
  border: 1px solid #cadce2;
}

.page-type__school .schedule-single__dir2 article.post-row .apply-btn {
  text-align: center;
}

.page-type__school .schedule-single__dir2 article.post-row .apply-btn a {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  box-sizing: border-box;
  line-height: 1.5;
  color: #ffffff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2985e1+0,0d41c2+100 */
  background: #2985e1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2985e1 0%, #0d41c2 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2985e1', endColorstr='#0d41c2', GradientType=0);
  /* IE6-9 */
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .page-type__school .schedule-single__dir2 article.post-row .apply-btn a {
    font-size: 16px;
  }
}

.page-type__school .schedule-single__dir2 article.post-row .apply-btn a:hover {
  opacity: 0.7;
}

.page-type__school .schedule-single__dir2 .back-list-btn {
  text-align: center;
}

.page-type__school .schedule-single__dir2 .back-list-btn a {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  padding: 10px 20px;
  box-sizing: border-box;
  line-height: 1.5;
  border-radius: 10px;
  color: #2b32be;
  border: 1px solid #2b32be;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-type__school .schedule-single__dir2 .back-list-btn a:hover {
  background: #2b32be;
  color: #ffffff;
}

.page-type__news .news-post-list {
  margin-bottom: 50px;
}

.page-type__news .news-post-list article.row {
  display: block;
  padding: 15px 0;
  line-height: 1.5;
  border-bottom: 1px solid #cccccc;
}

.page-type__news .news-post-list article.row time.post-date {
  font-size: 14px;
  font-weight: bold;
  color: #999999;
  margin-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .page-type__news .news-post-list article.row time.post-date {
    font-size: 12px;
  }
}

.page-type__news .news-post-list article.row h5.post-title {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__news .news-post-list article.row h5.post-title {
    font-size: 14px;
  }
}

.page-type__news .news-post-list article.row h5.post-title a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-type__news .news-post-list article.row h5.post-title a:hover {
  opacity: 0.7;
}

.page-type__news .news-single article.post-row {
  display: block;
  margin-bottom: 100px;
}

.page-type__news .news-single article.post-row header.post-head {
  padding: 30px 20px;
  border: 1px solid #495db4;
  margin-bottom: 45px;
}

@media screen and (max-width: 999px) {
  .page-type__news .news-single article.post-row header.post-head {
    padding: 20px 10px;
  }
}

.page-type__news .news-single article.post-row header.post-head .post-title {
  font-size: 22px;
  font-weight: bold;
  color: #0d2bc9;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 999px) {
  .page-type__news .news-single article.post-row header.post-head .post-title {
    font-size: 18px;
  }
}

.page-type__news .news-single article.post-row header.post-head .post-title::after {
  content: "";
  width: 30px;
  height: 3px;
  background: #cccccc;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -15px;
}

.page-type__news .news-single article.post-row header.post-head time.post-date {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #999999;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .page-type__news .news-single article.post-row header.post-head time.post-date {
    font-size: 12px;
  }
}

.page-type__news .news-single article.post-row .post-content {
  line-height: 1.65;
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__news .news-single article.post-row .post-content {
    font-size: 14px;
  }
}

.page-type__news .news-single article.post-row .post-content img {
  max-width: 100%;
}

.page-type__news .news-single article.post-row .post-content p {
  margin-bottom: 1.5em;
}

.page-type__book .book-cat__wrap {
  padding: 0 0 45px 0;
  margin-bottom: 45px;
  border-bottom: 1px solid #cccccc;
}

.page-type__book .book-cat__wrap>h5 {
  margin-bottom: 20px;
}

.page-type__book .book-cat__wrap>h5 span {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  background: #000000;
  border-radius: 30px;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  padding: 5px 20px;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .page-type__book .book-cat__wrap>h5 span {
    font-size: 14px;
    max-width: 200px;
  }
}

.page-type__book .book-cat__wrap>h6 {
  line-height: 1.5;
  color: #214cc5;
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 25px;
}

@media screen and (max-width: 999px) {
  .page-type__book .book-cat__wrap>h6 {
    font-size: 18px;
  }
}

.page-type__book .book-cat__wrap .book-post-list .row {
  display: flex;
  padding: 0 0 30px 0;
  margin-bottom: 30px;
  border-bottom: 1px dashed #cccccc;
  background: url("../images/c-ptn_bg.png") no-repeat right top;
  background-size: 130px auto;
}

@media screen and (max-width: 768px) {
  .page-type__book .book-cat__wrap .book-post-list .row {
    padding: 30px 0 30px 0;
    background-size: 50px auto;
  }
}

.page-type__book .book-cat__wrap .book-post-list .row:last-of-type {
  padding: 0;
  margin: 0;
  border: none;
}

@media screen and (max-width: 768px) {
  .page-type__book .book-cat__wrap .book-post-list .row:last-of-type {
    padding: 30px 0 0 0;
  }
}

.page-type__book .book-cat__wrap .book-post-list .row .book-thumb {
  width: 260px;
}

@media screen and (max-width: 768px) {
  .page-type__book .book-cat__wrap .book-post-list .row .book-thumb {
    width: 100px;
  }
}

.page-type__book .book-cat__wrap .book-post-list .row .book-thumb img {
  width: 100%;
}

.page-type__book .book-cat__wrap .book-post-list .row .book-info {
  width: calc(100% - 260px);
  padding: 0 0 0 30px;
  box-sizing: border-box;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .page-type__book .book-cat__wrap .book-post-list .row .book-info {
    width: calc(100% - 100px);
  }
}

.page-type__book .book-cat__wrap .book-post-list .row .book-info .b-title {
  margin-bottom: 20px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}

.page-type__book .book-cat__wrap .book-post-list .row .book-info .b-title p {
  font-size: 24px;
}

@media screen and (max-width: 999px) {
  .page-type__book .book-cat__wrap .book-post-list .row .book-info .b-title p {
    font-size: 18px;
  }
}

.page-type__book .book-cat__wrap .book-post-list .row .book-info .b-title p.fs-b {
  font-size: 40px;
}

@media screen and (max-width: 999px) {
  .page-type__book .book-cat__wrap .book-post-list .row .book-info .b-title p.fs-b {
    font-size: 22px;
  }
}

.page-type__book .book-cat__wrap .book-post-list .row .book-info .read-text {
  margin-bottom: 20px;
}

.page-type__book .book-cat__wrap .book-post-list .row .book-info .read-text p {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__book .book-cat__wrap .book-post-list .row .book-info .read-text p {
    font-size: 14px;
  }
}

.page-type__book .book-cat__wrap .book-post-list .row .book-info .read-text p.tl {
  font-size: 25px;
  font-weight: bold;
  color: #214cc5;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .page-type__book .book-cat__wrap .book-post-list .row .book-info .read-text p.tl {
    font-size: 16px;
  }
}

.page-type__book .book-cat__wrap .book-post-list .row .book-info .buy-btn {
  margin-bottom: 30px;
}

.page-type__book .book-cat__wrap .book-post-list .row .book-info .buy-btn a {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background: #000000;
  color: #ffffff;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .page-type__book .book-cat__wrap .book-post-list .row .book-info .buy-btn a {
    font-size: 16px;
    padding: 10px;
  }
}

.page-type__book .book-cat__wrap .book-post-list .row .book-info .buy-btn a:hover {
  opacity: 0.7;
}

.page-type__book .book-cat__wrap .book-post-list .row .book-info .prize-btn a {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0021b3+0,2882df+100 */
  background: #0021b3;
  /* Old browsers */
  background: -moz-linear-gradient(left, #0021b3 0%, #2882df 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0021b3 0%, #2882df 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0021b3 0%, #2882df 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0021b3', endColorstr='#2882df', GradientType=1);
  /* IE6-9 */
  color: #ffffff;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .page-type__book .book-cat__wrap .book-post-list .row .book-info .prize-btn a {
    font-size: 16px;
    padding: 10px;
  }
}

.page-type__book .book-cat__wrap .book-post-list .row .book-info .prize-btn a:hover {
  opacity: 0.7;
}

.page-type__trainer .trainer-list .row {
  display: flex;
  padding: 0 0 50px 0;
  background: url("../images/c-ptn_bg.png") no-repeat right top;
  background-size: 130px auto;
}

@media screen and (max-width: 768px) {
  .page-type__trainer .trainer-list .row {
    background-size: 50px auto;
  }
}

.page-type__trainer .trainer-list .row .p-thumb {
  width: 260px;
}

@media screen and (max-width: 768px) {
  .page-type__trainer .trainer-list .row .p-thumb {
    width: 100px;
  }
}

.page-type__trainer .trainer-list .row .p-thumb img {
  width: 100%;
}

.page-type__trainer .trainer-list .row .information {
  width: calc(100% - 260px);
  padding: 0 0 0 40px;
  box-sizing: border-box;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .page-type__trainer .trainer-list .row .information {
    width: calc(100% - 100px);
    padding-left: 15px;
  }
}

.page-type__trainer .trainer-list .row .information .name {
  border-bottom: 2px solid #cccccc;
  padding: 0 0 5px 0;
  margin-bottom: 15px;
}

.page-type__trainer .trainer-list .row .information .name .devision {
  font-size: 16px;
  color: #000099;
}

@media screen and (max-width: 999px) {
  .page-type__trainer .trainer-list .row .information .name .devision {
    font-size: 12px;
  }
}

.page-type__trainer .trainer-list .row .information .name .heading {
  font-weight: bold;
  font-size: 20px;
  color: #99ccff;
}

@media screen and (max-width: 999px) {
  .page-type__trainer .trainer-list .row .information .name .heading {
    font-size: 12px;
  }
}

.page-type__trainer .trainer-list .row .information .name .heading span {
  font-size: 50px;
  color: #333333;
  margin-right: 10px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__trainer .trainer-list .row .information .name .heading span {
    font-size: 20px;
  }
}

@media screen and (max-width: 999px) {
  .page-type__trainer .trainer-list .row .information .name .heading span {
    display: block;
    margin: 0;
  }
}

.page-type__trainer .trainer-list .row .information .read-text p {
  font-size: 16px;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 999px) {
  .page-type__trainer .trainer-list .row .information .read-text p {
    font-size: 14px;
  }
}

.page-type__company section.company-row {
  margin-bottom: 60px;
}

.page-type__company section.company-row>h2 {
  margin-bottom: 20px;
}

.page-type__company section.company-row>h2 span {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  background: #000000;
  border-radius: 30px;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  padding: 5px 20px;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .page-type__company section.company-row>h2 span {
    font-size: 14px;
    max-width: 200px;
  }
}

.page-type__company section.company-row .company-inner__block {
  background: url("../images/c-ptn_bg.png") no-repeat right top;
  background-size: 130px auto;
}

@media screen and (max-width: 768px) {
  .page-type__company section.company-row .company-inner__block {
    background-size: 50px auto;
    padding-top: 30px;
  }
}

.page-type__company section.company-row .company-inner__block .c-access .read-text {
  margin-bottom: 30px;
}

.page-type__company section.company-row .company-inner__block .c-access .read-text p {
  font-size: 18px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .page-type__company section.company-row .company-inner__block .c-access .read-text p {
    font-size: 14px;
  }
}

.page-type__company section.company-row .company-inner__block .c-access .map {
  width: 100%;
}

.page-type__company section.company-row .company-inner__block .c-theme dl {
  display: flex;
  margin-bottom: 10px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .page-type__company section.company-row .company-inner__block .c-theme dl {
    display: block;
  }
}

.page-type__company section.company-row .company-inner__block .c-theme dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  padding: 15px 10px;
  box-sizing: border-box;
  background: #cceafb;
}

@media screen and (max-width: 768px) {
  .page-type__company section.company-row .company-inner__block .c-theme dl dt {
    display: block;
    width: 100%;
    padding: 10px;
  }
}

.page-type__company section.company-row .company-inner__block .c-theme dl dt span {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .page-type__company section.company-row .company-inner__block .c-theme dl dt span {
    font-size: 16px;
  }
}

.page-type__company section.company-row .company-inner__block .c-theme dl dd {
  width: calc(100% - 250px);
  padding: 15px 0 15px 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .page-type__company section.company-row .company-inner__block .c-theme dl dd {
    display: block;
    width: 100%;
    padding: 10px 0px;
  }
}

.page-type__company section.company-row .company-inner__block .c-theme dl dd .text {
  margin-bottom: 1.5em;
}

.page-type__company section.company-row .company-inner__block .c-theme dl dd .text:last-of-type {
  margin-bottom: 0;
}

.page-type__company section.company-row .company-inner__block .c-theme dl dd .text p {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__company section.company-row .company-inner__block .c-theme dl dd .text p {
    font-size: 14px;
  }
}

.page-type__company section.company-row .company-inner__block .c-theme dl dd .text p.tl {
  font-weight: bold;
}

.page-type__company section.company-row .company-inner__block .c-theme dl dd .text p.tl a {
  color: #214cc5;
}

.page-type__company section.company-row .company-inner__block .c-ceo .profile {
  margin-bottom: 30px;
}

.page-type__company section.company-row .company-inner__block .c-ceo .profile .row {
  display: flex;
}

.page-type__company section.company-row .company-inner__block .c-ceo .profile .row .p-thumb {
  width: 260px;
}

@media screen and (max-width: 768px) {
  .page-type__company section.company-row .company-inner__block .c-ceo .profile .row .p-thumb {
    width: 100px;
  }
}

.page-type__company section.company-row .company-inner__block .c-ceo .profile .row .p-thumb img {
  width: 100%;
}

.page-type__company section.company-row .company-inner__block .c-ceo .profile .row .information {
  width: calc(100% - 260px);
  padding: 0 0 0 40px;
  box-sizing: border-box;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .page-type__company section.company-row .company-inner__block .c-ceo .profile .row .information {
    width: calc(100% - 100px);
    padding-left: 15px;
  }
}

.page-type__company section.company-row .company-inner__block .c-ceo .profile .row .information .name {
  border-bottom: 2px solid #cccccc;
  padding: 0 0 5px 0;
  margin-bottom: 15px;
}

.page-type__company section.company-row .company-inner__block .c-ceo .profile .row .information .name .devision {
  font-size: 16px;
  color: #000099;
}

@media screen and (max-width: 999px) {
  .page-type__company section.company-row .company-inner__block .c-ceo .profile .row .information .name .devision {
    font-size: 12px;
  }
}

.page-type__company section.company-row .company-inner__block .c-ceo .profile .row .information .name h6 {
  font-weight: bold;
  font-size: 20px;
  color: #99ccff;
}

@media screen and (max-width: 999px) {
  .page-type__company section.company-row .company-inner__block .c-ceo .profile .row .information .name h6 {
    font-size: 12px;
  }
}

.page-type__company section.company-row .company-inner__block .c-ceo .profile .row .information .name h6 span {
  font-size: 50px;
  color: #333333;
  margin-right: 10px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__company section.company-row .company-inner__block .c-ceo .profile .row .information .name h6 span {
    font-size: 20px;
  }
}

@media screen and (max-width: 999px) {
  .page-type__company section.company-row .company-inner__block .c-ceo .profile .row .information .name h6 span {
    display: block;
    margin: 0;
  }
}

.page-type__company section.company-row .company-inner__block .c-ceo .profile .row .information .read-text p {
  font-size: 16px;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 999px) {
  .page-type__company section.company-row .company-inner__block .c-ceo .profile .row .information .read-text p {
    font-size: 14px;
  }
}

.page-type__company section.company-row .company-inner__block .c-ceo .youtube-block {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .page-type__company section.company-row .company-inner__block .c-ceo .youtube-block {
    display: block;
  }
}

.page-type__company section.company-row .company-inner__block .c-ceo .youtube-block .row {
  width: 50%;
  padding: 15px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .page-type__company section.company-row .company-inner__block .c-ceo .youtube-block .row {
    width: 100%;
    padding: 10px 0;
  }
}

.page-type__company section.company-row .company-inner__block .c-ceo .youtube-block .row .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.page-type__company section.company-row .company-inner__block .c-ceo .youtube-block .row .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.page-type__company section.company-row .company-inner__block .c-message .read-text {
  line-height: 1.75;
  margin-bottom: 30px;
}

.page-type__company section.company-row .company-inner__block .c-message .read-text>h3 {
  font-size: 30px;
  color: #214cc5;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__company section.company-row .company-inner__block .c-message .read-text>h3 {
    font-size: 18px;
  }
}

.page-type__company section.company-row .company-inner__block .c-message .read-text p {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__company section.company-row .company-inner__block .c-message .read-text p {
    font-size: 14px;
  }
}

.page-type__company section.company-row .company-inner__block .c-message .photo img {
  width: 100%;
}

.page-type__blog .blog-post-list {
  margin-bottom: 70px;
}

.page-type__blog .blog-post-list article.row>a {
  display: flex;
  width: 100%;
  padding: 15px 0;
  box-sizing: border-box;
  text-decoration: none;
  border-bottom: 1px solid #cccccc;
  color: #333333;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-type__blog .blog-post-list article.row>a:hover {
  opacity: 0.7;
}

.page-type__blog .blog-post-list article.row>a .thumbnail {
  width: 150px;
}

@media screen and (max-width: 999px) {
  .page-type__blog .blog-post-list article.row>a .thumbnail {
    width: 70px;
  }
}

.page-type__blog .blog-post-list article.row>a .thumbnail img {
  width: 100%;
}

.page-type__blog .blog-post-list article.row>a .post-meta {
  width: calc(100% - 150px);
  padding: 0 0 0 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  .page-type__blog .blog-post-list article.row>a .post-meta {
    width: calc(100% - 70px);
  }
}

.page-type__blog .blog-post-list article.row>a .post-meta .set {
  display: flex;
  align-items: center;
  line-height: 1.2;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .page-type__blog .blog-post-list article.row>a .post-meta .set {
    display: block;
  }
}

.page-type__blog .blog-post-list article.row>a .post-meta .set time.post-date {
  display: inline-block;
  font-size: 14px;
}

.page-type__blog .blog-post-list article.row>a .post-meta .set .post-cat {
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .page-type__blog .blog-post-list article.row>a .post-meta .set .post-cat {
    margin: 10px 0 0 0;
  }
}

.page-type__blog .blog-post-list article.row>a .post-meta .set .post-cat span {
  display: inline-block;
  padding: 3px 10px;
  background: #000000;
  color: #ffffff;
  border-radius: 5px;
  font-size: 12px;
}

.page-type__blog .blog-post-list article.row>a .post-meta h5.post-title {
  font-size: 18px;
  line-height: 1.3;
}

@media screen and (max-width: 999px) {
  .page-type__blog .blog-post-list article.row>a .post-meta h5.post-title {
    font-size: 16px;
  }
}

.page-type__blog .blog-single article.post-row {
  display: block;
  margin-bottom: 100px;
}

.page-type__blog .blog-single article.post-row header.post-head {
  padding: 30px 20px;
  border: 1px solid #495db4;
  margin-bottom: 45px;
}

@media screen and (max-width: 999px) {
  .page-type__blog .blog-single article.post-row header.post-head {
    padding: 20px 10px;
  }
}

.page-type__blog .blog-single article.post-row header.post-head .post-title {
  font-size: 22px;
  font-weight: bold;
  color: #0d2bc9;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 999px) {
  .page-type__blog .blog-single article.post-row header.post-head .post-title {
    font-size: 18px;
  }
}

.page-type__blog .blog-single article.post-row header.post-head .post-title::after {
  content: "";
  width: 30px;
  height: 3px;
  background: #cccccc;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -15px;
}

.page-type__blog .blog-single article.post-row header.post-head time.post-date {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #999999;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 999px) {
  .page-type__blog .blog-single article.post-row header.post-head time.post-date {
    font-size: 12px;
  }
}

.page-type__blog .blog-single article.post-row header.post-head .post-cat {
  text-align: center;
}

.page-type__blog .blog-single article.post-row header.post-head .post-cat span {
  display: inline-block;
  padding: 3px 10px;
  background: #000000;
  color: #ffffff;
  border-radius: 5px;
  font-size: 12px;
}

.page-type__blog .blog-single article.post-row .post-content {
  line-height: 1.65;
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__blog .blog-single article.post-row .post-content {
    font-size: 14px;
  }
}

.page-type__blog .blog-single article.post-row .post-content img {
  max-width: 100%;
}

.page-type__blog .blog-single article.post-row .post-content p {
  margin-bottom: 1.5em;
}

.page-type__blog .blog-single article.post-row .post-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__blog .blog-single article.post-row .post-content h2 {
    font-size: 20px;
  }
}

.page-type__blog .blog-single article.post-row .post-content ul {
  padding-left: 1em;
}

.page-type__blog .blog-single article.post-row .post-content ul li {
  list-style: disc;
  list-style-type: disc;
}

.page-type__privacy .privacy-set {
  margin-bottom: 60px;
  line-height: 1.5;
}

.page-type__privacy .privacy-set h4 {
  padding: 10px;
  background: #000000;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 25px;
}

@media screen and (max-width: 999px) {
  .page-type__privacy .privacy-set h4 {
    font-size: 16px;
  }
}

.page-type__privacy .privacy-set .pre-read {
  margin-bottom: 30px;
}

.page-type__privacy .privacy-set .pre-read p {
  font-size: 16px;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 999px) {
  .page-type__privacy .privacy-set .pre-read p {
    font-size: 14px;
  }
}

.page-type__privacy .privacy-set .list {
  margin-bottom: 30px;
}

.page-type__privacy .privacy-set .list li {
  font-size: 16px;
  text-indent: -1em;
  padding: 5px 0 5px 1em;
}

@media screen and (max-width: 999px) {
  .page-type__privacy .privacy-set .list li {
    font-size: 14px;
  }
}

.page-type__privacy .privacy-set .each-read {
  line-height: 1.5;
  margin-bottom: 40px;
}

.page-type__privacy .privacy-set .each-read .tl {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 20px;
  padding: 5px 0;
}

@media screen and (max-width: 999px) {
  .page-type__privacy .privacy-set .each-read .tl {
    font-size: 16px;
  }
}

.page-type__privacy .privacy-set .each-read .p-cont {
  line-height: 1.75;
}

.page-type__privacy .privacy-set .each-read .p-cont p {
  margin-bottom: 1.5em;
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__privacy .privacy-set .each-read .p-cont p {
    font-size: 14px;
  }
}

.page-type__privacy .privacy-set .each-read .p-cont .table {
  margin-bottom: 20px;
}

.page-type__privacy .privacy-set .each-read .p-cont .table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__privacy .privacy-set .each-read .p-cont .table table {
    font-size: 14px;
  }
}

.page-type__privacy .privacy-set .each-read .p-cont .table table tbody th {
  padding: 10px;
  border: 1px solid #cccccc;
}

@media screen and (max-width: 768px) {
  .page-type__privacy .privacy-set .each-read .p-cont .table table tbody th {
    width: 50%;
    box-sizing: border-box;
  }
}

.page-type__privacy .privacy-set .each-read .p-cont .table table tbody td {
  padding: 10px;
  border: 1px solid #cccccc;
}

.contact-line__wrap {
  padding: 50px 20px;
}

.contact-line__wrap .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-line__wrap .inner h6 {
  font-size: 20px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .contact-line__wrap .inner h6 {
    font-size: 18px;
  }
}

.contact-line__wrap .inner .information {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .contact-line__wrap .inner .information {
    display: block;
  }
}

.contact-line__wrap .inner .information .text {
  width: calc(100% - 150px);
  padding: 0 30px 0 0;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .contact-line__wrap .inner .information .text {
    width: 100%;
    padding: 0 0 20px 0;
  }
}

.contact-line__wrap .inner .information .text p {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
}

@media screen and (max-width: 999px) {
  .contact-line__wrap .inner .information .text p {
    font-size: 14px;
  }
}

.contact-line__wrap .inner .information .thumb {
  width: 150px;
}

@media screen and (max-width: 768px) {
  .contact-line__wrap .inner .information .thumb {
    width: 100%;
    text-align: center;
  }
}

.contact-line__wrap .inner .information .thumb img {
  max-width: 100%;
}

.page-type__contact .form-text {
  line-height: 1.5;
  text-align: center;
  margin-bottom: 35px;
}

.page-type__contact .form-text h6 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media screen and (max-width: 999px) {
  .page-type__contact .form-text h6 {
    font-size: 18px;
  }
}

.page-type__contact .form-text p {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__contact .form-text p {
    font-size: 14px;
  }
}

.page-type__contact .form-text p.notes {
  padding-top: 1em;
  font-size: 14px;
}

@media screen and (max-width: 999px) {
  .page-type__contact .form-text p.notes {
    font-size: 12px;
  }
}

.page-type__contact .form-text p.notes span {
  color: #ff0000;
}

.page-type__contact .form__wrap .submit-btn {
  text-align: center;
}

.page-type__contact .form__wrap .submit-btn input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  max-width: 330px;
  padding: 16px 20px;
  line-height: 1.5;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  text-decoration: none;
  color: #000000;
  background: #ffffff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 40px;
  border: 2px solid #000000;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-type__contact .form__wrap .submit-btn input:hover {
  background: #000000;
  color: #ffffff;
}

.page-type__contact .form__wrap .agreement {
  text-align: center;
  line-height: 1.2;
  font-size: 16px;
  margin-bottom: 50px;
}

@media screen and (max-width: 999px) {
  .page-type__contact .form__wrap .agreement {
    font-size: 14px;
  }
}

.page-type__contact .form__wrap .agreement a {
  color: #333333;
}

.page-type__contact .form__wrap .agreement span {
  color: #ff0000;
}

.page-type__contact .form__wrap .term-block {
  margin-bottom: 30px;
}

.page-type__contact .form__wrap .term-block .term-row {
  display: flex;
  align-items: center;
  padding: 15px 0;
}

@media screen and (max-width: 768px) {
  .page-type__contact .form__wrap .term-block .term-row {
    display: block;
    border-bottom: 1px solid #dddddd;
  }
}

.page-type__contact .form__wrap .term-block .term-row .term-name {
  width: 220px;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .page-type__contact .form__wrap .term-block .term-row .term-name {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .page-type__contact .form__wrap .term-block .term-row .term-name {
    width: 100%;
    font-weight: bold;
    margin-bottom: 8px;
  }
}

.page-type__contact .form__wrap .term-block .term-row .term-name span {
  color: #ff0000;
}

.page-type__contact .form__wrap .term-block .term-row .term-field {
  width: calc(100% - 220px);
  padding: 0 0 0 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .page-type__contact .form__wrap .term-block .term-row .term-field {
    width: 100%;
    padding: 0;
  }
}

.page-type__contact .form__wrap .term-block .term-row .term-field dl {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

@media screen and (max-width: 768px) {
  .page-type__contact .form__wrap .term-block .term-row .term-field dl {
    display: block;
  }
}

.page-type__contact .form__wrap .term-block .term-row .term-field dl dt {
  width: 100px;
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__contact .form__wrap .term-block .term-row .term-field dl dt {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .page-type__contact .form__wrap .term-block .term-row .term-field dl dt {
    width: 100%;
    margin-bottom: 8px;
  }
}

.page-type__contact .form__wrap .term-block .term-row .term-field dl dd {
  width: calc(100% - 100px);
}

@media screen and (max-width: 768px) {
  .page-type__contact .form__wrap .term-block .term-row .term-field dl dd {
    width: 100%;
  }
}

.page-type__contact .form__wrap .term-block .term-row .term-field .term-checkbox {
  display: flex;
  flex-wrap: wrap;
}

.page-type__contact .form__wrap .term-block .term-row .term-field .term-checkbox>span {
  display: block;
  padding: 10px 0;
  box-sizing: border-box;
  margin: 0;
}

.page-type__contact .form__wrap .term-block .term-row .term-field .term-radio>span {
  display: block;
  padding: 10px 0;
  box-sizing: border-box;
  margin: 0;
}

.page-type__contact .form__wrap .term-block .term-row .term-field .term-input.cl2 {
  padding-bottom: 7px;
}

.page-type__contact .form__wrap .term-block .term-row .term-field .term-input select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 15px 10px;
  line-height: 1.5;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #999999;
}

.page-type__contact .form__wrap .term-block .term-row .term-field .term-input input[type="text"] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 15px 10px;
  line-height: 1.5;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #999999;
}

.page-type__contact .form__wrap .term-block .term-row .term-field .term-input textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 15px 10px;
  line-height: 1.5;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #999999;
}

.page-type__voice .voice-category-list {
  margin-bottom: 50px;
}

.page-type__voice .voice-category-list .heading {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media screen and (max-width: 999px) {
  .page-type__voice .voice-category-list .heading {
    font-size: 16px;
  }
}

.page-type__voice .voice-category-list nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.page-type__voice .voice-category-list nav ul li {
  display: flex;
  width: 25%;
  padding: 7px;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  .page-type__voice .voice-category-list nav ul li {
    width: 50%;
    padding: 5px;
  }
}

.page-type__voice .voice-category-list nav ul li a {
  display: block;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  background: #c9c9c9;
  border-radius: 5px;
  line-height: 1.5;
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .page-type__voice .voice-category-list nav ul li a {
    font-size: 14px;
  }
}

.page-type__voice .voice-category-list nav ul li a:hover {
  opacity: 0.7;
}

.page-type__voice .voice_whole__wrap .voice-each__wrap {
  margin-bottom: 70px;
}

.page-type__voice .voice_whole__wrap .voice-each__wrap>.heading {
  font-size: 26px;
  line-height: 1.5;
  padding: 10px;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  background: #000099;
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 999px) {
  .page-type__voice .voice_whole__wrap .voice-each__wrap>.heading {
    font-size: 18px;
  }
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row {
  display: block;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #cccccc;
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row header.post-head {
  display: flex;
  margin-bottom: 30px;
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row header.post-head .thumbnail {
  width: 120px;
}

@media screen and (max-width: 999px) {
  .page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row header.post-head .thumbnail {
    width: 60px;
  }
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row header.post-head .thumbnail img {
  width: 100%;
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row header.post-head .post-meta {
  width: calc(100% - 120px);
  padding: 0 0 0 20px;
  box-sizing: border-box;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row header.post-head .post-meta {
    width: calc(100% - 60px);
    padding: 0 0 0 10px;
  }
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row header.post-head .post-meta h1.post-title {
  font-size: 22px;
  font-weight: bold;
  color: #214cc5;
  margin-bottom: 20px;
}

@media screen and (max-width: 999px) {
  .page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row header.post-head .post-meta h1.post-title {
    font-size: 16px;
  }
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row header.post-head .post-meta p {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row header.post-head .post-meta p {
    font-size: 14px;
  }
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .youtube-block {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 35px;
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .youtube-block .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .youtube-block .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .faq-block {
  margin-bottom: 35px;
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .faq-block dl {
  display: block;
  line-height: 1.5;
  padding-bottom: 35px;
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .faq-block dl dt {
  display: block;
  color: #ffffff;
  font-size: 20px;
  border-radius: 60px;
  background: #3399cc;
  padding: 7px 20px;
  font-weight: bold;
  margin-bottom: 25px;
}

@media screen and (max-width: 999px) {
  .page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .faq-block dl dt {
    font-size: 14px;
    padding: 5px 15px;
  }
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .faq-block dl dt span {
  display: inline-block;
  font-size: 28px;
  margin-right: 10px;
}

@media screen and (max-width: 999px) {
  .page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .faq-block dl dt span {
    font-size: 18px;
  }
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .faq-block dl dd {
  display: block;
  font-size: 16px;
  padding: 0 20px;
}

@media screen and (max-width: 999px) {
  .page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .faq-block dl dd {
    font-size: 14px;
    padding: 0;
  }
}

.page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .read-text {
  line-height: 1.5;
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__voice .voice_whole__wrap .voice-each__wrap .voice-post-list article.row .read-text {
    font-size: 14px;
  }
}

.page-type__schedule .schedule-type-set__wrap {
  margin-bottom: 50px;
}

.page-type__schedule .schedule-type-set__wrap .theminor-post-list .no-post {
  line-height: 1.5;
  padding: 10px 0;
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-type-set__wrap .theminor-post-list .no-post {
    font-size: 14px;
  }
}

.page-type__schedule .schedule-type-set__wrap .theminor-post-list .row {
  display: flex;
  align-items: center;
  line-height: 1.5;
  padding: 15px 0;
  border-bottom: 1px dashed #cccccc;
}

@media screen and (max-width: 768px) {
  .page-type__schedule .schedule-type-set__wrap .theminor-post-list .row {
    display: block;
  }
}

.page-type__schedule .schedule-type-set__wrap .theminor-post-list .row .post-meta {
  width: calc(100% - 33%);
}

@media screen and (max-width: 768px) {
  .page-type__schedule .schedule-type-set__wrap .theminor-post-list .row .post-meta {
    width: 100%;
    padding: 0 0 10px 0;
  }
}

.page-type__schedule .schedule-type-set__wrap .theminor-post-list .row .post-meta time.post-date {
  display: block;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-type-set__wrap .theminor-post-list .row .post-meta time.post-date {
    font-size: 12px;
  }
}

.page-type__schedule .schedule-type-set__wrap .theminor-post-list .row .post-meta h6 {
  font-size: 16px;
  font-weight: bold;
  color: #003399;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-type-set__wrap .theminor-post-list .row .post-meta h6 {
    font-size: 14px;
  }
}

.page-type__schedule .schedule-type-set__wrap .theminor-post-list .row .post-place {
  width: 20%;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .page-type__schedule .schedule-type-set__wrap .theminor-post-list .row .post-place {
    width: 100%;
    padding: 0 0 10px 0;
    text-align: left;
  }
}

.page-type__schedule .schedule-type-set__wrap .theminor-post-list .row .detail-btn {
  width: 13%;
  padding: 0 5px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .page-type__schedule .schedule-type-set__wrap .theminor-post-list .row .detail-btn {
    width: 100%;
  }
}

.page-type__schedule .schedule-type-set__wrap .theminor-post-list .row .detail-btn a {
  border: #F90 1px solid;
  background: #F90;
  color: #fff;
  text-align: center;
  padding: 4px 0px;
  display: block;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

.page-type__schedule .schedule-cat-anchor {
  margin-bottom: 50px;
}

.page-type__schedule .schedule-cat-anchor ul {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .page-type__schedule .schedule-cat-anchor ul {
    display: block;
  }
}

.page-type__schedule .schedule-cat-anchor ul li {
  width: calc(100% / 3);
  padding: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .page-type__schedule .schedule-cat-anchor ul li {
    width: 100%;
    padding: 0 0 5px 0;
  }
}

.page-type__schedule .schedule-cat-anchor ul li a {
  display: block;
  width: 100%;
  padding: 10px 15px;
  box-sizing: border-box;
  text-align: center;
  color: #eeeeee;
  background: #000000;
  line-height: 1.5;
  border-radius: 80px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .page-type__schedule .schedule-cat-anchor ul li a {
    font-size: 12px;
    padding: 7px 10px;
  }
}

.page-type__schedule .schedule-cat-anchor ul li a:hover {
  opacity: 0.7;
}

.page-type__schedule .schedule-cat-anchor ul li a span {
  color: #ff0000;
}

.page-type__schedule .schedule-list__wrap {
  margin-bottom: 60px;
}

.page-type__schedule .schedule-list__wrap .schedule-swicher {
  margin-bottom: 40px;
}

.page-type__schedule .schedule-list__wrap .schedule-swicher ul {
  display: flex;
}

.page-type__schedule .schedule-list__wrap .schedule-swicher ul li {
  display: block;
  width: 48%;
  margin: 1%;
  box-sizing: border-box;
  padding: 10px;
  border: 3px solid #dcdcdc;
  text-align: center;
  color: #0046d3;
  line-height: 1.5;
  font-size: 16px;
  cursor: pointer;
  border-radius: 100px;
}

@media screen and (max-width: 999px) {
  .page-type__schedule .schedule-list__wrap .schedule-swicher ul li {
    font-size: 14px;
  }
}

.page-type__schedule .schedule-list__wrap .schedule-swicher ul li.active {
  background: #dc3337;
  border: 3px solid #dc3337;
  color: #ffffff;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each.list-info_2 {
  display: none;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area {
  margin-bottom: 40px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .liveTtl {
  padding: 10px 0;
  text-align: center;
  background: #00b9ef;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .kantoTtl {
  padding: 10px 0;
  text-align: center;
  background: #00b9ef;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .chubuTtl {
  padding: 10px 0;
  text-align: center;
  background: #00b9ef;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .kinkiTtl {
  padding: 10px 0;
  text-align: center;
  background: #00b9ef;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .chugokuTtl {
  padding: 10px 0;
  text-align: center;
  background: #00b9ef;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .kyushuTtl {
  padding: 10px 0;
  text-align: center;
  background: #00b9ef;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .live_dt {
  background: #00b9ef;
  color: #fff;
  text-align: center;
  padding: 2px 10px;
  margin: 0 2% 5px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .kanto_dt {
  background: #00b9ef;
  color: #fff;
  text-align: center;
  padding: 2px 10px;
  margin: 0 2% 5px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .chubu_dt {
  background: #00b9ef;
  color: #fff;
  text-align: center;
  padding: 2px 10px;
  margin: 0 2% 5px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .kinki_dt {
  background: #00b9ef;
  color: #fff;
  text-align: center;
  padding: 2px 10px;
  margin: 0 2% 5px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .chugoku_dt {
  background: #00b9ef;
  color: #fff;
  text-align: center;
  padding: 2px 10px;
  margin: 0 2% 5px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .kyushu_dt {
  background: #00b9ef;
  color: #fff;
  text-align: center;
  padding: 2px 10px;
  margin: 0 2% 5px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 {
  width: 100%;
  margin: 0 auto 20px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 th {
  padding: 10px;
  text-align: center;
  color: #fff;
  font-weight: normal;
  background: #0085B2;
  border: 1px solid #206e88;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 th {
    width: 20%;
    vertical-align: middle;
    background: #0085B2;
    border: 1px solid #206e88;
    color: #fff;
    font-size: 14px;
  }
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 td {
  text-align: center;
  padding: 10px 5px;
  background: #fff;
  border: 1px solid #cadce2;
  font-weight: normal;
  font-size: 14px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 td {
    width: 40%;
    text-align: left;
    font-size: 13px;
    vertical-align: middle;
    background: #fff;
    border: 1px solid #cadce2;
    font-size: 14px;
  }
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 td:nth-child(1) {
  color: #fff;
  width: 25%;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 td:nth-child(1) a {
  color: #ffffff;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 td:nth-child(1) a i {
  margin-left: 5px;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 td.detail {
  background: #ffffff;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 td.detail a {
  border: #ccc 1px solid;
  color: #354597;
  text-align: center;
  padding: 2px 0px;
  margin: 0 2px;
  display: block;
  font-size: 13px;
  background: #fff;
  line-height: 1.5;
  text-decoration: none;
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 td.t_form {
  background: #ffffff;
  width: 13%;
}

@media screen and (max-width: 768px) {
  .page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 td.t_form {
    width: auto;
  }
}

.page-type__schedule .schedule-list__wrap .schedule-list__each .five-area .tblAca02 td.t_form a {
  border: #F90 1px solid;
  background: #F90;
  color: #fff;
  text-align: center;
  padding: 2px 0px;
  margin: 0 2px;
  display: block;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .five-area .pc {
    display: none;
  }
}

.five-area .sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .five-area .sp {
    display: block;
  }
}

.five-area table.liveTbl.pc tbody tr td:nth-of-type(1) {
  background: #00b9ef !important;
}

.five-area table.kantoTbl.pc tbody tr td:nth-of-type(1) {
  background: #00b9ef !important;
}

.five-area table.chubuTbl.pc tbody tr td:nth-of-type(1) {
  background: #00b9ef !important;
}

.five-area table.kinkiTbl.pc tbody tr td:nth-of-type(1) {
  background: #00b9ef !important;
}

.five-area table.chugokuTbl.pc tbody tr td:nth-of-type(1) {
  background: #00b9ef !important;
}

.five-area table.kyushuTbl.pc tbody tr td:nth-of-type(1) {
  background: #00b9ef !important;
}

.suchedule-title-bar {
  line-height: 1.5;
  margin-bottom: 30px;
}

.suchedule-title-bar p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .suchedule-title-bar p {
    font-size: 14px;
  }
}

.suchedule-title-bar h5 {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  padding: 10px 20px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0034cd+0,00bffa+100 */
  background: #0034cd;
  /* Old browsers */
  background: -moz-linear-gradient(left, #0034cd 0%, #00bffa 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0034cd 0%, #00bffa 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0034cd 0%, #00bffa 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0034cd', endColorstr='#00bffa', GradientType=1);
  /* IE6-9 */
}

@media screen and (max-width: 999px) {
  .suchedule-title-bar h5 {
    font-size: 18px;
  }
}

.page-type__line .line-whole {
  display: flex;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #cccccc;
}

@media screen and (max-width: 768px) {
  .page-type__line .line-whole {
    display: block;
  }
}

.page-type__line .line-whole .line-thumb {
  width: 280px;
}

@media screen and (max-width: 768px) {
  .page-type__line .line-whole .line-thumb {
    width: 100%;
  }
}

.page-type__line .line-whole .line-thumb img {
  width: 100%;
}

.page-type__line .line-whole .line-information {
  width: calc(100% - 280px);
  padding: 0 30px 0 0;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .page-type__line .line-whole .line-information {
    width: 100%;
    padding: 0 0 30px 0;
  }
}

.page-type__line .line-whole .line-information>h4 {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 999px) {
  .page-type__line .line-whole .line-information>h4 {
    font-size: 18px;
  }
}

.page-type__line .line-whole .line-information .main-read {
  line-height: 1.5;
  margin-bottom: 40px;
}

.page-type__line .line-whole .line-information .main-read h5 {
  padding: 10px 15px;
  font-size: 26px;
  color: #ffffff;
  background: #000099;
  margin-bottom: 20px;
}

@media screen and (max-width: 999px) {
  .page-type__line .line-whole .line-information .main-read h5 {
    font-size: 18px;
  }
}

.page-type__line .line-whole .line-information .main-read p {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__line .line-whole .line-information .main-read p {
    font-size: 14px;
  }
}

.page-type__line .line-whole .line-information .main-read .btn {
  margin-top: 35px;
}

.page-type__line .line-whole .line-information .main-read .btn a {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.5;
  color: #ffffff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2985e1+0,0d41c2+100 */
  background: #2985e1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2985e1 0%, #0d41c2 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2985e1', endColorstr='#0d41c2', GradientType=0);
  /* IE6-9 */
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .page-type__line .line-whole .line-information .main-read .btn a {
    font-size: 16px;
  }
}

.page-type__line .line-whole .line-information .main-read .btn a:hover {
  opacity: 0.7;
}

.page-type__line .line-whole .line-information .read-set {
  line-height: 1.5;
  margin-bottom: 40px;
}

.page-type__line .line-whole .line-information .read-set h6 {
  display: block;
  color: #ffffff;
  font-size: 20px;
  border-radius: 60px;
  background: #3399cc;
  padding: 7px 20px;
  font-weight: bold;
  margin-bottom: 25px;
}

@media screen and (max-width: 999px) {
  .page-type__line .line-whole .line-information .read-set h6 {
    font-size: 14px;
    padding: 5px 15px;
  }
}

.page-type__line .line-whole .line-information .read-set p {
  font-size: 16px;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 999px) {
  .page-type__line .line-whole .line-information .read-set p {
    font-size: 14px;
  }
}

.page-type__line .line-whole .line-information .read-set p img {
  max-width: 100%;
}

.page-type__training .training-each__wrap {
  margin-bottom: 80px;
}

.page-type__training .training-each__wrap .sub-title-block {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #0064dc;
  padding: 0 0 5px 0;
  margin-bottom: 20px;
}

.page-type__training .training-each__wrap .sub-title-block .thumb {
  width: 80px;
}

@media screen and (max-width: 999px) {
  .page-type__training .training-each__wrap .sub-title-block .thumb {
    width: 50px;
  }
}

.page-type__training .training-each__wrap .sub-title-block .thumb img {
  width: 100%;
}

.page-type__training .training-each__wrap .sub-title-block .text {
  width: calc(100% - 80px);
  padding: 0 0 0 20px;
  line-height: 1.25;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  .page-type__training .training-each__wrap .sub-title-block .text {
    width: calc(100% - 50px);
    padding: 0 0 0 10px;
  }
}

.page-type__training .training-each__wrap .sub-title-block .text p {
  font-size: 18px;
  margin-bottom: 2px;
}

@media screen and (max-width: 999px) {
  .page-type__training .training-each__wrap .sub-title-block .text p {
    font-size: 12px;
  }
}

.page-type__training .training-each__wrap .sub-title-block .text h4 {
  font-size: 32px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #0045d2;
}

@media screen and (max-width: 999px) {
  .page-type__training .training-each__wrap .sub-title-block .text h4 {
    font-size: 18px;
  }
}

.page-type__training .training-each__wrap .tr-movie {
  margin-bottom: 30px;
}

.page-type__training .training-each__wrap .tr-movie h6 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.page-type__training .training-each__wrap .tr-movie .movie_wrap .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.page-type__training .training-each__wrap .tr-movie .movie_wrap .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.page-type__training .training-each__wrap .tr-explain {
  display: flex;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .page-type__training .training-each__wrap .tr-explain {
    display: block;
  }
}

.page-type__training .training-each__wrap .tr-explain .thumb {
  width: 450px;
}

@media screen and (max-width: 768px) {
  .page-type__training .training-each__wrap .tr-explain .thumb {
    width: 100%;
    padding: 0 0 15px 0;
  }
}

.page-type__training .training-each__wrap .tr-explain .thumb img {
  width: 100%;
}

.page-type__training .training-each__wrap .tr-explain .text {
  width: calc(100% - 450px);
  padding: 0 0 0 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .page-type__training .training-each__wrap .tr-explain .text {
    width: 100%;
    padding: 0;
  }
}

.page-type__training .training-each__wrap .tr-explain .text h5 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  color: #ff6600;
}

.page-type__training .training-each__wrap .tr-explain .text h5.fc-g {
  color: #26aa48;
}

@media screen and (max-width: 999px) {
  .page-type__training .training-each__wrap .tr-explain .text h5 {
    font-size: 18px;
  }
}

.page-type__training .training-each__wrap .tr-explain .text p {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .page-type__training .training-each__wrap .tr-explain .text p {
    font-size: 14px;
  }
}

.page-type__training .training-each__wrap .tr-explain .text p.tl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 999px) {
  .page-type__training .training-each__wrap .tr-explain .text p.tl {
    font-size: 16px;
  }
}

.page-type__training .training-each__wrap .tr-explain .text .btn {
  margin-top: 30px;
  text-align: right;
}

.page-type__training .training-each__wrap .tr-explain .text .btn a {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.5;
  color: #ffffff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2985e1+0,0d41c2+100 */
  background: #2985e1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #2985e1 0%, #0d41c2 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2985e1 0%, #0d41c2 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2985e1', endColorstr='#0d41c2', GradientType=0);
  /* IE6-9 */
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .page-type__training .training-each__wrap .tr-explain .text .btn a {
    font-size: 16px;
  }
}

.page-type__training .training-each__wrap .tr-explain .text .btn a:hover {
  opacity: 0.7;
}

.page-type__training .training-each__wrap .tr-post-wrap h5 {
  font-size: 18px;
  text-align: center;
  padding: 3px 10px;
  background: #dddddd;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media screen and (max-width: 999px) {
  .page-type__training .training-each__wrap .tr-post-wrap h5 {
    font-size: 16px;
  }
}

.page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .no-post {
  line-height: 1.5;
  padding: 10px 0;
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .no-post {
    font-size: 14px;
  }
}

.page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row {
  display: flex;
  align-items: center;
  line-height: 1.5;
  padding: 15px 0;
  border-bottom: 1px dashed #cccccc;
}

@media screen and (max-width: 768px) {
  .page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row {
    display: block;
  }
}

.page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row .post-meta {
  width: calc(100% - 33%);
}

@media screen and (max-width: 768px) {
  .page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row .post-meta {
    width: 100%;
    padding: 0 0 10px 0;
  }
}

.page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row .post-meta time.post-date {
  display: block;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row .post-meta time.post-date {
    font-size: 12px;
  }
}

.page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row .post-meta h6 {
  font-size: 16px;
  font-weight: bold;
  color: #003399;
}

@media screen and (max-width: 999px) {
  .page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row .post-meta h6 {
    font-size: 14px;
  }
}

.page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row .post-place {
  width: 20%;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row .post-place {
    width: 100%;
    padding: 0 0 10px 0;
    text-align: left;
  }
}

.page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row .detail-btn {
  width: 13%;
  padding: 0 5px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row .detail-btn {
    width: 100%;
  }
}

.page-type__training .training-each__wrap .tr-post-wrap .tr-post-list .row .detail-btn a {
  border: #F90 1px solid;
  background: #F90;
  color: #fff;
  text-align: center;
  padding: 4px 0px;
  display: block;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

.cm-btn-list__wrap {
  margin-top: 30px;
}

.cm-btn-list__wrap ul {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .cm-btn-list__wrap ul {
    display: block;
  }
}

.cm-btn-list__wrap ul li {
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .cm-btn-list__wrap ul li {
    width: 100%;
    padding: 10px 0;
  }
}

/*# sourceMappingURL=style.css.map */

/* --------------------------------------------
 * 　add oceans speakertng-flow
 * -------------------------------------------- */

.speakertng-box-wrapper {
  display: flex;
}

.speakertng-box {
  flex: 1 1 50%;
  margin-bottom: 80px;
}

.speakertng-box:first-child {
  margin-right: 20px;
}

.speakertng-box .course {}

.speakertng-box .bubble {
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  padding: 20px 0 16px;
}

.speakertng-box .bubble-triangle {
  width: 0;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}

.speakertng-card {
  padding: 10px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 20px;
}

.speakertng-box .heading {
  text-align: center;
  padding: 35px 0 40px;
  color: #fff;
}

.speakertng-box .heading .main {
  font-size: 39px;
  font-family: "Noto Serif JP", serif;
}

.speakertng-box .heading .sub {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
}

.speakertng-box .content {
  padding: 35px;
  line-height: 1.8;
}

.speakertng-box .content .desc {
  font-size: 21px;
  border-bottom: 1px dotted #000;
  padding-bottom: 40px;
  margin-bottom: 26px;
  color: #333;
}

.speakertng-box .content .term {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
}

.speakertng-box .content .arrow-bottom {
  width: 0;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 25px;

}

.speakertng-box .content .result {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}

.speakertng-box .content .result_text {
  display: inline-block;
  line-height: 1.4;
}

.speakertng-box .content .term span {
  font-size: 47px;
}

.speakertng-box .course .note {
  font-size: 0.75rem;
}

/* スピーカー養成コース */
.speakertng-box .course__speaker .bubble {
  background: #D9E1EA;
  color: #005dc1;
}

.speakertng-box .course__speaker .bubble-triangle {
  border-top: 30px solid #d9e1ea;
  border-right: 30px solid #fff;
  border-left: 30px solid #fff;
}

.speakertng-box .course__speaker .heading {
  background: linear-gradient(#004088 0, #003062 100%);
}

.speakertng-box .course__speaker .content {
  border: 1px solid #005DC1;
  border-top: none;
  color: #005dc1;
}

.speakertng-box .course__speaker .content .arrow-bottom {
  border-top: 20px solid #d9e1ea;
  border-right: 30px solid #fff;
  border-left: 30px solid #fff;
}

.speakertng-box .course__speaker .result_text {
  background: linear-gradient(transparent 70%, #D3E6FB 70%);
}

/* トレーナー育成コース */
.speakertng-box .course_trainer .bubble {
  background: #F2DADA;
  color: #A30012;
}

.speakertng-box .course_trainer .heading {
  background: linear-gradient(#B0050C 0, #841212 100%);
}

.speakertng-box .course_trainer .bubble-triangle {
  border-top: 30px solid #F2DADA;
  border-right: 30px solid #fff;
  border-left: 30px solid #fff;
}

.speakertng-box .course_trainer .content {
  border: 1px solid #AF050C;
  border-top: none;
  color: #A30012;
}

.speakertng-box .course_trainer .content .arrow-bottom {
  border-top: 20px solid #F2DADA;
  border-right: 30px solid #fff;
  border-left: 30px solid #fff;
}

.speakertng-box .course_trainer .result_text {
  background: linear-gradient(transparent 70%, #F6E3E4 70%);
}

/* セクション見出し（アローボトム） */
.speaker-training-row .title-type__arrow {
  text-align: center;
  font-size: 38px;
  font-family: "Noto Serif JP", serif;
  background: #1466CC;
  color: #fff;
  padding: 3vw 0 0;
  margin-bottom: 30px;
}

.speaker-training-row .title-type__arrow .arrow-bottom {
  border-top: 5vw solid #1466CC;
  border-right: 50vw solid #fff;
  border-left: 50vw solid #fff;
}

/* スピーカートレーニングの流れ：sp対応 */
@media screen and (max-width: 999px) {
  .speakertng-box .bubble {
    font-size: 28px;
  }

  .speakertng-box .heading .main {
    font-size: 30px;
  }

  .speakertng-box .content .desc {
    font-size: 20px;
  }

  .speakertng-box .content .result {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .speaker-training-row .title-type__arrow {
    font-size: 22px;
  }

  .speakertng-box .bubble-triangle {
    margin-bottom: 10px;
  }

  .speakertng-box-wrapper {
    padding: 0 20px !important;
  }

  .speakertng-box-wrapper {
    display: block;
  }

  .speakertng-box:first-child {
    margin-right: 0;
  }

  .speakertng-box .bubble {
    height: 50px;
    font-size: 20px;
  }

  .speakertng-box .heading .main {
    font-size: 26px;
  }

  .speakertng-box .content .desc {
    font-size: 16px;
  }

  .speakertng-box .content .term {
    margin-bottom: 0;
    font-size: 22px;
  }

  .speakertng-box:first-child {
    margin-bottom: 30px;
  }
}

/* --------------------------------------------
 * 　スピーカートレーニング：YouTube参加者の声
 * -------------------------------------------- */
.yt-frame {
  width: 100%;
  position: relative;
}

iframe {
  width: 100%;
}

.yt-frame:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.yt-frame-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------
 * 　スピーカートレーニング：参加者手書きインタビュー
 * -------------------------------------------- */
.interview-wrapper {
  display: flex;
}

@media screen and (max-width: 768px) {
  .interview-wrapper {
    display: block;
  }
}

.interview-block {
  flex: 1 1 32%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 3px solid #ddd;
  margin-right: 2%;
  color: #333;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .interview-block {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .interview-block :last-child {
    margin-bottom: 0;
  }
}

.interview-block:hover .interview-button {
  background: #fff;
  color: #0066cc;
}

.interview-block:last-child {
  margin-right: 0;
}

.interview-name {
  font-size: 17px;
  margin-bottom: 12px;
}

.interview-industry {
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}

.interview-industry span {
  margin-right: 10px;
  font-size: 15px;
  padding: 2px 6px 3px;
  background: #4994e0;
  color: #fff;
  border-radius: 2px;
}

.interview-title {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.interview-img {
  max-width: 100%;
  margin-bottom: auto;
}

.interview-button {
  margin-top: 15px;
  background: #0066cc;
  border: 1px solid #0066cc;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 10px;
  transition: all ease .2s;
}

/* --------------------------------------------
 * 　add oceans 特定商取引法
 * -------------------------------------------- */
.tableDefault {
  line-height: 1.6;
}

.tableDefault ul {
  list-style: disc;
  margin-left: 25px;
}

.tableDefault ul li {
  list-style: unset;
}

.tableDefault .header {
  width: 25%;
  background: #e8e8e8;
  text-align: left;
  padding: 12px;
  font-weight: normal;
  border: 1px solid #eee;
}

.tableDefault .data {
  width: 75%;
  text-align: left;
  padding: 12px;
  border: 1px solid #eee;
}

@media screen and (max-width: 768px) {
  .tableDefault .header {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 15px 3px 0;
    font-weight: bold;
  }

  .tableDefault .header br {
    display: none;
  }

  .tableDefault .data {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 0 0 15px;
  }
}