@charset "utf-8";

html,
body {
  background: #fff none;
  color: #000000;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック",
    YuGothic, "メイリオ", Meiryo, sans-serif;
  /*font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;*/
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 100px;
}

/*** スマホ 320px ~ 767px***/
@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: 0.833vw;
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  overflow: auto;
}

* {
  box-sizing: border-box;
}
a:hover img {
  
}

a,
a:hover {
}

a[href^="tel:"] {
  pointer-events: none;
}

.sp {
  display: none;
}
.pc {
  display: inherit;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

.cl-over {
  clear: both;
  overflow: hidden;
}

.fl-left {
  float: left;
}
.fl-right {
  float: right;
}

.di-fl {
  display: flex;
}

.ju-sb {
  justify-content: space-between;
}
.ju-cn {
  justify-content: center;
}
.ju-fe {
  justify-content: flex-end;
}

.inner {
  box-sizing: border-box;
  max-width: 985px;
  width: 90%;
  margin: 0 auto;
}

.inner-930 {
  box-sizing: border-box;
  max-width: 930px;
  width: 90%;
  margin: 0 auto;
}

.inner-950 {
  box-sizing: border-box;
  max-width: 950px;
  width: 90%;
  margin: 0 auto;
}

.font-mi {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体",
    "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
}
.italic {
  font-style: italic;
}
.font-w8 {
  font-family: "Hiragino Sans";
  font-weight: 800;
}

.zen {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
}
.pop {
  font-family: "Poppins", sans-serif;
}
.lato {
  font-family: "Lato", sans-serif;
}
.rob {
  font-family: "Roboto Condensed";
}

.mb0 {
  margin-bottom: 0px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.link-btn a {
  display: flex;
  width: fit-content;
  border-radius: 10px;
  background: #ff7c00;
  color: #fff;
  font-weight: bold;
  align-items: center;
  gap: 5px;
  padding: 0.7rem 2rem;
  font-size: 1.6rem;
  margin-top: 2rem;
  transition: unset;
}
.link-btn > a:hover {
  background: #eb4100;
  transition: unset;
}
/*-----------------------------

sp-nav

------------------------------*/

#nav-toggle {
  position: fixed;
  top: 25px;
  right: 25px;
  height: 32px;
  cursor: pointer;
}
#nav-toggle > div {
  position: relative;
  width: 36px;
}
#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #333;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 14px;
}
#nav-toggle span:nth-child(3) {
  top: 28px;
}
.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}
#nav-toggle {
  z-index: 1000;
}
#container {
  z-index: 900;
}
#gloval-nav {
  background: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 29px;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.6s ease;
}
#gloval-nav a:hover {
  color: #666;
}
#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.6s ease, opacity 0.2s ease;
}
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

/*-----------------------------

header

------------------------------*/

header {
  padding: 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

header.scroll {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

header .di-fl {
  align-items: center;
}

/*-----------------------------

main

------------------------------*/
#main-fv {
  background: url("../img/page/top/main-bg.webp") no-repeat center;
  background-size: cover;
  padding: 15rem 0 10rem;
  text-align: center;
}

#main-fv .main-txt {
  margin-bottom: 2rem;
}
#main-fv .main-txt01 {
  margin: 2rem 0 1rem;
}
#main-fv .main-img {
  position: relative;
  z-index: 10;
  margin-top: 4rem;
}

/*-----------------------------

top-contact

------------------------------*/
.main-top {
  text-align: center;
}

#main-contents > .top-contact {
  padding: 10rem 0;
}
.top-contact > div:nth-child(1) {
  width: 70%;
  margin: auto;
}


.top-contact .di-fl {
  align-items: baseline;
}
.top-contact{
  position: relative;
}
.reservation_confirmation{
  position:relative;
  z-index: 1;
}
.top-contact .tel,
.top-contact .tel02{
  margin-top: 2rem;
  position:relative;
  z-index: 1;
}
.top-contact .reservation_confirmation img,
.top-contact .tel img,
.top-contact .tel02 img{
 width: 70%;
 margin: 1rem auto;
 display: block;
}

.reservation-btn {

  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.top-contact > div:nth-child(1) {
  width: 70%;
}
.icon-01 {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 70%;
  max-width: 985px;
}


.top-reason .tel{
display: none;
}
#main-contents > .top-contact .tel02,
.top-lesson .tel02{
  display: none;
}
.top-reason .tel02
.top-reason .top-contact{
  padding: 0;
}

.top-about div.main-ttl {
  width: 86%;
  margin: auto;
}
.top-about div.main-ttl h2{
  margin: 0rem 0 2rem;
}
.top-about div.main-ttl p{
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

div.about-block {
  background: #ffffed;
  border: solid 5px #3743ad;
  border-radius: 10px;
  padding: 30px;

  position: relative;
  margin-bottom: 5rem;
  width: 86%;
  margin: 0 auto 5rem;
}

div.about-block h3:nth-child(1) > img:nth-child(1) {
  margin-bottom: 5rem;
}
div.about-block .about-cont {
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.about-cont img:nth-child(3) {
  position: absolute;
  right: -6%;
  bottom: 0;
  width: 20%;
}
div.about-block:nth-child(3)
  > div:nth-child(2)
  > img:nth-child(3) {
  position: absolute;
  right: none;
  left: -6%;
  bottom: -14px;
  width: 21%;
}

div.about-block:nth-child(4) > div:nth-child(2) > img:nth-child(3) {
  bottom: -31px;
  width: 25%;
}

.about-text p:nth-child(1) {
  font-size: 1.7rem;
  background: #000;
  color: #fff;
  width: fit-content;
  font-weight: bold;
  padding: 0 3rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.about-text p:nth-child(2) {
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
}

.about-text p:nth-child(2) > span {
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 70%,
    #ffda2a 70%
  );
}

/*-----------------------------

contents

------------------------------*/
#main-contents {
}

.top-about {
  margin: 10rem 0 ;
}
.top-about p {
  font-size: 1.4rem;
  line-height: 2;
}
.top-about-info h2 {
  margin-top: -100px;
}
.top-about-info {
  background: #ffffed;
  border: 6px solid #3743ad;
  padding: 5rem 4rem 5rem;
  margin-bottom: 2rem;
}

.top-about-info p {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 600;
  padding-top: 3rem;
  margin-bottom: 2rem;
}

.top-about-info .btn a {
  display: inline-block;
  font-size: 1.6rem;
  font-family: "Hiragino Sans W8" sans-serif;
  src: local(HiraginoSans-W8);
  font-weight: 800;
  background: #fff;
  border: 2px solid #ff9600;
  border-radius: 10px;
  height: 55px;
  line-height: 55px;
  padding: 0 5rem 0 3rem;
  position: relative;
}

.top-about-info .btn a:hover {
  background: #ffc200;
}
.top-about-info .btn a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 15%;
  right: 3%;
  background: url("../img/page/top/arrow.webp") no-repeat;
  background-size: contain;
  width: 35px;
  height: 35px;
  transition: all 0.3s;
}

.target-area {
  padding: 5rem 0;
  background: url("../img/page/top/bg_01.webp") no-repeat left center;
  background-size: 40%;
  margin-bottom: 2rem;
}
.target-area .target-info h2 {
  padding-top: 10rem;
}

ul.target-list {
  margin-bottom: 2rem;
}
ul.target-list li {
  width: 31%;
  max-width: 31%;
  background: #ffffed;
  border: 8px solid #3743ad;
  padding: 3.9rem 3rem;
  text-align: center;
}

ul.target-list li h3 {
  font-size: 1.5rem;
  height: 47px;
  line-height: 47px;
  font-weight: bold;
  background: #3c78c8;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

ul.target-list li p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
}

.top-reason {
  background: #acd7ff;
  position: relative;
  padding: 10rem 0 10rem;
  background: url("../img/page/top/bg_02.webp") no-repeat;
  background-size: 100% 100%;
}

/*.top-reason::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -240px;
  left: 0;
  background: url("../img/page/top/reason-bg.webp") no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 320px;
}*/

.top-reason .reason-ttl-area {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.top-reason h2.reason-ttl {
  position: relative;
  z-index: 10;
  margin-bottom: 8rem;
}
.top-reason .reason-img {
  position: absolute;
  top: -80px;
  right: 0;
}

.top-reason .point-ttl {
  width: 85%;
  margin: 0 auto;
  padding: 0 0 5rem;
}
.top-reason ol.features-list {
  margin-bottom: 10rem;
}
.top-reason ol.features-list li {
  background: url("../img/page/top/features-bg.webp") no-repeat center top 90px
    #acd7ff;
  background-size: cover;
  padding: 3rem;
  position: relative;
  padding-top: 0;
  margin-top: 5rem;
}
.features-list > p {
  font-size: 1.4rem;
  margin-top: 2rem;
  font-weight: bold;
  padding-left: 5rem;
}
.top-reason ol.features-list li + li {
  margin-top: 5rem;
}
.top-reason ol.features-list li .features-list-inner {
  background: #fff;
  padding: 5rem;
}

.top-reason ol.features-list li .features-list-inner .di-fl {
  align-items: center;
}
.top-reason ol.features-list li .features-info {
  width: 460px;
  max-width: 55%;
}

.top-reason ol.features-list li .features-info .features {
  margin-bottom: 3rem;
}
.top-reason ol.features-list li .features-info dl {
  align-items: center;
  margin-bottom: 1rem;
}

.top-reason ol.features-list li .features-info dl dt {
  width: 30%;
  max-width: 30%;
  padding-right: 2rem;
}

.top-reason ol.features-list li .features-info dl dd {
  width: 70%;
  max-width: 70%;
}
.top-reason ol.features-list li .features-info dl dd h3 {
  font-family: "Hiragino Sans W9" sans-serif;
  src: local(HiraginoSans-W9);
  font-weight: 900;
  font-size: 2.4rem;
}

.top-reason ol.features-list li .features-info p {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: bold;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-reason ol.features-list li .features-info p span {
  background: #3c78c8;
  color: #fff;
  padding: 0rem 2rem;
}

.top-reason ol.features-list li .features-img {
  width: 460px;
  max-width: 45%;
}

.top-reason .features-contact {
}
.top-reason .features-contact .tel {
  padding-right: 5rem;
}

.top-lesson {
  padding: 6rem 0 10rem;
  background: #3c78c8;
}

.lesson-area {
  align-items: center;
  width: 90%;
  margin: 0 auto 3rem;
}
.lesson-area .lesson-ttl {
  width: 58%;
  max-width: 58%;
}

.lesson-area .lesson-ttl h2 {
  margin-bottom: 3rem;
}
.lesson-area .lesson-ttl p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  line-height: 2;
}

.lesson-area .lesson-img {
  width: 40%;
  max-width: 40%;
}

.lesson-area01,
.lesson-area02 {
  margin-bottom: 2rem;
}
.lesson-area03 {
  margin-bottom: 8rem;
}

.lesson-area01 ul.lesson-list li {
  width: 49%;
  max-width: 49%;
}

ul.lesson-list li.list {
  background: #ffffed;
  border: 8px solid #3743ad;
  padding: 3.9rem 4rem 5rem;
  text-align: center;
}
.lesson-area03 ul.lesson-list li.list{
  padding: 3.9rem 7rem 5rem;

}
.lesson-area03.lesson-area04 ul.lesson-list li.list{
  padding: 3.9rem 3rem 5rem;

}

ul.lesson-list li dl {
  align-items: center;
}

ul.lesson-list li dl dt {
  width: 20%;
  max-width: 20%;
}

ul.lesson-list li dl dd {
  width: 70%;
  max-width: 70%;
  font-size: 2.4rem;
  font-weight: bold;
}

.lesson-area01 ul.lesson-list li:last-child dl dt {
  width: 21%;
  max-width: 21%;
  padding: 0 2rem 0 1rem;
}

.lesson-area01 ul.lesson-list li:last-child dl dd {
  width: 78%;
  max-width: 78%;
  text-align: right;
}

.lesson-area02 ul.lesson-list li dl {
  align-items: flex-start;
}
.lesson-area02 ul.lesson-list li dl dt {
  width: 8%;
  max-width: 8%;
}

.lesson-area02 ul.lesson-list li dl dd {
  width: 90%;
  max-width: 90%;
  text-align: left;
  padding-left: 2rem;
}

.lesson-area02 ul.lesson-list li dl dd ol {
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.lesson-area02 ul.lesson-list li dl dd ol li {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.lesson-area02 ul.lesson-list li dl dd p {
  font-size: 1.4rem;
  font-weight: normal;
}

.lesson-area03 .step {
}
.lesson-list li h3 {
  padding: 1rem;
  background: #3c78c8;
  color: #fff;
  border-radius: 15px;
  letter-spacing: 0;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: bold;
  width: 70%;
  margin: auto;
  margin-bottom: auto;
  justify-content: center;
  margin-bottom: 4rem;
}
ul.lesson-list li h3 span {
  background: #fff;
  font-size: 2rem;
  color: #3c78c8;
  padding: 3px 1rem;
}

.lesson-area03 .step-area + .step-area {
  margin-top: 3rem;
  position: relative;

}


.konnpuri-to {
  background: #ffcc00;
  color: #000;
  font-size: 1.8rem;
  position: absolute;
  padding: 2px 2rem;
  border-radius: 10px;
  bottom: -15px;
}



.lesson-area03 .step-area .step-no {
  width: 117px;
  height: 34px;
  line-height: 34px;
  max-width: 20%;
  padding: 0 2rem;
  color: #fff;
  background: #3c78c8;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.lesson-area03 .step-area .step-info {
  width:83%;
  max-width: 83%;
  text-align: left;
  padding: 0 0 3rem !important;
  border-bottom: solid 1px;
}

.lesson-area03 .step-area .step-info p.step-txt {
  font-size: 2.4rem;
  font-family: "Hiragino Sans W8" sans-serif;
  src: local(HiraginoSans-W8);
  font-weight: 800;
  line-height: 2;
  margin-top: -6px;
}

.lesson-area03 .step-area .step-info p.step-txt2 {
  font-size: 1.4rem;
  font-weight: bold;
  padding-top: 1rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lesson-area03 .step-area .step-info p.step-txt2 span:nth-child(1) {
  border: solid 1px;
  padding: 3px 2rem;
}

.lesson-area03 .step-area .step-info .step-contact {
  padding: 2rem 0;
  margin: 2rem 0 0;
}

.lesson-area03 .step-area .step-info .step-contact p {
  font-size: 1.8rem;
  font-weight: bold;
  width: 261px;
  height: 48px;
  line-height: 48px;
  background: #ffcc00;
  text-align: center;
  border-radius: 10px;
}

.lesson-area03 div.step-area:nth-child(5) .step-info p:nth-child(3) {
  margin-top: 1rem;
}

div.step-area:nth-child(3) .step-info div:has(.link-btn) {
  gap: 1rem;
  display: flex;
}

.lesson-area03 .list > p:nth-child(6) {
  text-align: left;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 3rem;
}

.lesson-area03.lesson-area04 h3{

  width: 45%;
  font-size: 3rem;
  margin-top: 5rem;
}


.catch_text {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 5rem;
}
.catch_text  span.box {
  display: block;
  font-size: 2.4rem;
  background: #fff;
  border: solid 1px;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
}
.catch_text  span.color{
  background: linear-gradient( 180deg, transparent 0%, transparent 50%, #ffda2a 50% );
}
div.price-box{
  margin: 5rem 0;
}
div.price-box > p:nth-child(2) {
  display: block;
  font-size: 2.2rem;
  background: #fff;
  border: solid 1px;
  width: 50%;
  margin: 3rem auto;
  padding: 8px 0rem;
  font-weight: bold;
  border-radius: 20px;
}



div.price-box .attention {

  text-align: left;
  margin-top: 5px;
  font-size: 1.4rem;
}


.required-area {
  color: #fff;
  margin-bottom: 10rem;
}
.required-area h3.required-ttl {
  font-size: 2.1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 3rem;
}

.required-area p {
  font-size: 1.2rem;
  line-height: 2;
}

.required-area p + p {
  margin-top: 3rem;
}

.lesson-area04 {
  margin-bottom: 10rem;
}
.lesson-area04 {
  background: #232e84;
  padding: 5rem 3rem 3rem;
  border-radius: 10px;
  position: relative;
}

.lesson-area04 .clip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
}

.lesson-area04 .lesson-area04-info {
  background: #ffffed;
  padding: 8rem 4rem 3rem;
  border-radius: 10px;
  position: relative;
}

.lesson-area04 .lesson-area04-img {
  width: 34%;
  position: absolute;
  top: 50px;
  right: 40px;
}

.lesson-area04-info ol {
  margin-bottom: 3rem;
}
.lesson-area04-info ol li {
  padding: 0.5rem 1.5rem 1.5rem;
  border-left: 1.5px solid #606060;
  border-bottom: 1.5px solid #606060;
}

.lesson-area04-info ol li + li {
  margin-top: 35px;
}
.lesson-area04-info ol li dl {
}

.lesson-area04-info ol li dl dt {
  font-size: 2.7rem;
  width: 33px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  color: #fff;
  background: #3c78c8;
}

.lesson-area04-info ol li dl dd {
  font-size: 2.2rem;
  font-weight: bold;
  padding-left: 1rem;
}

.lesson-area04-info p {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 5rem;
}




ul.lesson-list li  p:nth-child(7) {

  font-size: 1.6rem;
  text-align: justify;
  margin-top: 2rem;
  font-weight: bold;
}


.left {
  text-align: left !important;
}
th.ttl_01 {
  width: 200px;
  width: 30%;
}
th.ttl_02 {
  width: 300px;
  width: 38%;
}
th.ttl_03 {
  width: 230px;
  width: 32%;
}

.faq-teacher-area {
  background: url("../img/page/top/bg_03.webp") no-repeat top;
  background-size: cover;
  padding: 10rem 0;
}

.faq-area {
  margin-bottom: 2rem;
}
.faq-area .faq-ttl {
  width: 40%;
  max-width: 40%;
  padding-top: 8rem;
}

.faq-area .faq-ttl h2 {
  margin-bottom: 2rem;
}
.faq-area .faq-ttl p {
  font-size: 2rem;
  font-family: "Hiragino Sans W8" sans-serif;
  src: local(HiraginoSans-W8);
  font-weight: 800;
  line-height: 2;
  padding-left: 2rem;
}

.faq-area .faq-img {
  width: 52%;
  max-width: 52%;
}

ul.faq-list {
}
ul.faq-list li {
  background: #ffffef;
  border: 20px solid #3c78c8;
  padding: 4rem;
}

ul.faq-list li + li {
  margin-top: 5rem;
}
ul.faq-list li .faq-inner {
  align-items: center;
}
ul.faq-list li .faq-inner .faq-icon {
  width: 20%;
  max-width: 20%;
  text-align: center;
}

ul.faq-list li .faq-inner .faq-info {
  width: 78%;
  max-width: 78%;
  padding-left: 3rem;
}

ul.faq-list li .faq-inner .faq-info dl {
  align-items: center;
}
ul.faq-list li .faq-inner .faq-info dl dt {
  width: 8%;
  max-width: 8%;
}

ul.faq-list li .faq-inner .faq-info dl dd {
  width: 90%;
  max-width: 90%;
  font-size: 1.6rem;
  font-weight: bold;
}

ul.faq-list li .faq-inner .faq-info dl.faq_q {
  border-bottom: 1.5px solid #000;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
ul.faq-list li .faq-inner .faq-info dl.faq_a {
  align-items: flex-start;
}
ul.faq-list li .faq-inner .faq-info dl dd p.faq_a_txt {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
}

ul.faq-list li .faq-inner .faq-info dl dd p.faq_a_txt01 {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: normal;
  padding-top: 0.5rem;
}

.teacher-area {
  padding-top: 10rem;
  align-items: flex-end;
}
.teacher-area .teacher-info {
  width: 58%;
  max-width: 58%;
}

.teacher-area .teacher-info .teacher-name {
  padding: 3rem 0;
}

.teacher-area .teacher-info h3 {
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.teacher-area .teacher-info p {
  background: #faf9d2;
  padding: 2.4rem;
  font-size: 1.3rem;
  font-weight: bold;
}
.teacher-area .teacher-info p + p {
  margin-top: 1rem;
}

.teacher-area .teacher-img {
  width: 36%;
  max-width: 36%;
  text-align: right;
}

/*-----------------------------

footer

------------------------------*/

footer {
  background: url("../img/page/top/footer_bg.webp") no-repeat center;
  background-size: cover;
  padding: 10rem 0;
  text-align: center;
  color: #fff;
}

footer h3 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 10rem;
}

footer h3 span {
  padding: 1.5rem 3rem;
  border-top: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
}

footer dl {
  align-items: center;
  margin-bottom: 5rem;
}

footer dl dt {
  font-size: 2.2rem;
  font-weight: 600;
  width: 155px;
  height: 44px;
  background: #fff;
  text-align: center;
  line-height: 44px;
  color: #3c78c8;
}

footer dl dd {
  font-size: 2.8rem;
  font-weight: 600;
  padding-left: 2rem;
}

footer .footer-contact {
  margin-bottom: 4rem;
}
footer .footer-logo {
  margin-bottom: 4rem;
  margin-top: 10rem;
}
footer .tel,
.lesson-contact .tel {
  padding-right: 5rem;
}

footer p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
}
footer .top-contact{
  padding-top: 0;
}


.copyright {
  width: 100%;
  text-align: center;
  padding: 2rem 0;
  font-size: 1.2rem;
}

.lesson-list table {
  width: 100%;
  border-collapse: collapse;
  margin-left: 0px;
}
.lesson-list th,  .lesson-list td {
  border: 1px solid #251e1c;
  padding: 12px 5px;
  text-align: center;
  font-size: 1.4rem;
}
.lesson-list td{background: #fff;}
.lesson-list th {
  background-color: #e0e0e0;
}
.lesson-list .highlight td{
  background-color: #ffe082;
  font-weight: bold;
}
.lesson-list .table-header {
  background-color: #BBDEFB;
  font-weight: bold;
}
.lesson-list .blue-header th:not(:first-child) {
  background-color: #2196F3;
  color: white;
  font-size: 1.5rem;
  font-weight: normal;

}
.lesson-list .blue-header th:first-child {
  background-color: transparent;
  color: #000;
  font-size: 1.2rem;
  border-top: none;
  font-weight: bold;

  border-left: none;
  
}