.course > img {
  width: 100%;
}
.course-ttl {
  padding: 0 0 86px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.course-ttl .ttl {
  width: 350px;
  margin: auto;
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.8);
}
.course-ttl .ttl h1:after {
  display: none;
}
.course-ttl h2 {
  color: #fff;
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: 1px;
  margin-bottom: 27px;
}
.course-ttl p {
  font-size: 1.4rem;
  line-height: 2;
  color: #fff;
  text-align: center;
}
.course-ttl p + p {
  margin-top: 3rem;
}
.course-first {
  margin: 47px auto 27px;
  text-align: center;
}
.course-first h3 {
  font-size: 2.5rem;
  letter-spacing: 1.5px;
  margin-bottom: 21px;
}
.course-first p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 60px;
}
.course-first ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 10px;
}
.course-first ul li {
  flex: 1;
}
.course-first ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  color: #fff;
  background: #7c7c7c;
  font-size: 2.2rem;
  line-height: 1.2;
  padding: 42px 0 35px;
  background-image: url("../img/shadow.svg");
  background-size: cover;
  transition: 0.3s;
  height: 100px;
}
.course-first ul li a:hover {
  background-image: url("../img/shadow-on.svg");
  transition: 0.3s;
}
.course-link {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  color: #fff;
}
.course-link.plus {
  cursor: pointer;
}
.course-link.plus:before, .course-link.plus:after {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
}
.course-link.plus:before {
  transform: rotate(0);
  transition: 0.5s;
}
.course-link.plus:after {
  transform: rotate(90deg);
  transition: 0.5s;
}
.course-link.plus:hover:before {
  transform: rotate(90deg);
  transition: 0.5s;
}
.course-link.plus:hover:after {
  transform: rotate(180deg);
  transition: 0.5s;
}
.course-link.plus.active:after {
  transform: rotate(540deg);
  transition: 0.5s;
}
.course-link.plus.active:before {
  transform: rotate(180deg);
  transition: 0.5s;
}
.course-link.mt80 {
  margin-top: 80px;
}
.course-link.mt10 {
  margin-top: 10px;
}
.course-link h4 {
  font-size: 2.5rem;
  letter-spacing: 1.5px;
  margin-right: 39px;
  white-space: nowrap;
}
.course-link p {
  font-size: 1.4rem;
  line-height: 2;
}
.course-link a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.course-link a:after {
  content: "";
  display: block;
  width: 25px;
  height: 20px;
  background: url(../img/arrow.svg) no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 27px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
.course-link a:hover:after {
  right: 12px;
  transition: 0.3s;
}
.course-content {
  border-bottom: 1px solid #b0b0b0;
}
.course-content__ttl {
  padding: 20px 24px;
  cursor: pointer;
  position: relative;
}
.course-content__ttl:before, .course-content__ttl:after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #7c7c7c;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
}
.course-content__ttl:before {
  transform: rotate(0);
  transition: 0.5s;
}
.course-content__ttl:after {
  transform: rotate(90deg);
  transition: 0.5s;
}
.course-content__ttl:hover:before {
  transform: rotate(90deg);
  transition: 0.5s;
}
.course-content__ttl:hover:after {
  transform: rotate(180deg);
  transition: 0.5s;
}
.course-content__ttl.active:after {
  transform: rotate(540deg);
  transition: 0.5s;
}
.course-content__ttl.active:before {
  transform: rotate(180deg);
  transition: 0.5s;
}
.course-content__ttl p {
  font-size: 2.5rem;
  letter-spacing: 1.5px;
  padding-right: 46px;
}
.course-content__inner {
  display: none;
  padding: 0 60px 28px;
  font-size: 1.4rem;
  line-height: 2;
}
.course-content__inner h3 {
  font-size: 1.8rem;
  color: #0055a0;
  margin-bottom: 0.5rem;
}
.course-content__inner p + p,
.course-content__inner p + h3 {
  margin-top: 2rem;
}
.course-content.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  margin-bottom: 40px;
}
.course-content.flex + p {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 100px;
}
.course-content.flex h5 {
  font-size: 2rem;
  margin-bottom: 17px;
}
.course-content__left {
  width: 56%;
  margin-right: 4%;
}
.course-toggle {
  display: none;
  padding-bottom: 80px;
}

.chukoikkanko .course-ttl {
  background-image: -webkit-image-set(url("../img/chukoikkanko/bg.jpg") 1x, url("../img/chukoikkanko/bg@2x.jpg") 2x);
  background-image: image-set(url("../img/chukoikkanko/bg.jpg") 1x, url("../img/chukoikkanko/bg@2x.jpg") 2x);
}
.chukoikkanko1,
.chukoikkanko .course-first ul li:nth-child(1) a {
  background-color: #f0af00;
  margin-bottom: 20px;
}
.chukoikkanko2,
.chukoikkanko .course-first ul li:nth-child(2) a {
  background-color: #e78824;
}
.chukoikkanko3,
.chukoikkanko .course-first ul li:nth-child(3) a {
  background-color: #d76500;
}
.chukoikkanko4,
.chukoikkanko .course-first ul li:nth-child(4) a {
  background-color: #ca5800;
}
.chukoikkanko5,
.chukoikkanko .course-first ul li:nth-child(5) a {
  background-color: #ca5800;
}
.chukoikkanko6,
.chukoikkanko .course-first ul li:nth-child(6) a {
  background-color: #ca5800;
}
.chukoikkanko .course-content__ttl:before,
.chukoikkanko .course-content__ttl:after {
  background-color: #e78824;
}

.chugakujuken .course-ttl {
  background-image: -webkit-image-set(url("../img/chugakujuken/bg.jpg") 1x, url("../img/chugakujuken/bg@2x.jpg") 2x);
  background-image: image-set(url("../img/chugakujuken/bg.jpg") 1x, url("../img/chugakujuken/bg@2x.jpg") 2x);
}
.chugakujuken .course-first ul li {
  flex: calc(50% - 10px);
  max-width: 50%;
}
.chugakujuken1,
.chugakujuken .course-first ul li:nth-child(1) a {
  background-color: #99cc33;
  margin-bottom: 30px;
}
.chugakujuken2,
.chugakujuken .course-first ul li:nth-child(2) a {
  background-color: #64be1e;
}
.chugakujuken2 + .course-content {
  padding: 30px 20px;
  border: none;
}
.chugakujuken2 + .course-content p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 52px;
}
.chugakujuken2 + .course-content ul {
  font-size: 1.7rem;
  line-height: 2.4;
  list-style: none;
  border-left: 8px solid #99cc33;
  padding-left: 18px;
}
.chugakujuken3,
.chugakujuken .course-first ul li:nth-child(3) a {
  background-color: #46a000;
}
.chugakujuken4,
.chugakujuken .course-first ul li:nth-child(4) a {
  background-color: #328200;
}
.chugakujuken5,
.chugakujuken .course-first ul li:nth-child(5) a {
  background-color: #1e6400;
}
.chugakujuken6,
.chugakujuken .course-first ul li:nth-child(6) a {
  background-color: #1e6400;
}
.chugakujuken .course-content__ttl:before,
.chugakujuken .course-content__ttl:after {
  background-color: #99cc33;
}

.shingakukobetsujuku .course-ttl {
  background-image: -webkit-image-set(url("../img/shingakukobetsujuku/bg.jpg") 1x, url("../img/shingakukobetsujuku/bg@2x.jpg") 2x);
  background-image: image-set(url("../img/shingakukobetsujuku/bg.jpg") 1x, url("../img/shingakukobetsujuku/bg@2x.jpg") 2x);
}
.shingakukobetsujuku .course-first ul li {
  flex: calc(33% - 10px);
  max-width: calc(33% - 7px);
}
.shingakukobetsujuku1,
.shingakukobetsujuku .course-first ul li:nth-child(1) a {
  background-color: #00326e;
}
.shingakukobetsujuku2,
.shingakukobetsujuku .course-first ul li:nth-child(2) a {
  background-color: #00468c;
}
.shingakukobetsujuku3,
.shingakukobetsujuku .course-first ul li:nth-child(3) a {
  background-color: #0064a5;
}
.shingakukobetsujuku4,
.shingakukobetsujuku .course-first ul li:nth-child(4) a {
  background-color: #007daf;
}
.shingakukobetsujuku5,
.shingakukobetsujuku .course-first ul li:nth-child(5) a {
  background-color: #0091b4;
}
.shingakukobetsujuku6,
.shingakukobetsujuku .course-first ul li:nth-child(6) a {
  background-color: #00a5c8;
}
.shingakukobetsujuku7,
.shingakukobetsujuku .course-first ul li:nth-child(7) a {
  background-color: #00b9d7;
}
.shingakukobetsujuku8,
.shingakukobetsujuku .course-first ul li:nth-child(8) a {
  background-color: #12bbd4;
}
.shingakukobetsujuku9,
.shingakukobetsujuku .course-first ul li:nth-child(9) a {
  background-color: #12bbd4;
}
.shingakukobetsujuku10,
.shingakukobetsujuku .course-first ul li:nth-child(10) a {
  background-color: #12bbd4;
}
.shingakukobetsujuku .course-content__ttl:before,
.shingakukobetsujuku .course-content__ttl:after {
  background-color: #0055a0;
}

.ishinkobetsu .course-ttl {
  background-image: -webkit-image-set(url("../img/ishinkobetsu/bg.jpg") 1x, url("../img/ishinkobetsu/bg@2x.jpg") 2x);
  background-image: image-set(url("../img/ishinkobetsu/bg.jpg") 1x, url("../img/ishinkobetsu/bg@2x.jpg") 2x);
}
.ishinkobetsu1,
.ishinkobetsu .course-first ul li:nth-child(1) a {
  background-color: #ae002c;
}
.ishinkobetsu2,
.ishinkobetsu .course-first ul li:nth-child(2) a {
  background-color: #8c0000;
}
.ishinkobetsu3,
.ishinkobetsu .course-first ul li:nth-child(3) a {
  background-color: #690000;
}
.ishinkobetsu .course-content__ttl:before,
.ishinkobetsu .course-content__ttl:after {
  background-color: #ae002c;
}
.ishinkobetsu4 {
  padding: 54px 0;
  border-bottom: 1px solid #808080;
}
.ishinkobetsu4:last-child {
  margin-bottom: 200px;
  border-bottom: none;
}
.ishinkobetsu4 h2 {
  font-size: 2.5rem;
  margin-bottom: 28px;
  text-align: center;
}
.ishinkobetsu4 h3 {
  font-size: 2.5rem;
  color: #c36e73;
  text-align: center;
  margin-bottom: 24px;
}
.ishinkobetsu4 img {
  margin-bottom: 50px;
}
.ishinkobetsu4 p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2;
}
.ishinkobetsu4 p + p {
  margin-top: 2rem;
}
.ishinkobetsu4__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.ishinkobetsu4__item {
  flex: 1;
}
.ishinkobetsu4__item img {
  margin-bottom: 8px;
}
.ishinkobetsu4__item h4 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.ishinkobetsu4__item p {
  text-align: left;
  font-size: 1.4rem;
}
.ishinkobetsu4__item iframe + p {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 7px;
}
.ishinkobetsu4__item table {
  font-size: 1.4rem;
  text-align: center;
  width: 100%;
  table-layout: fixed;
}
.ishinkobetsu4__item table th,
.ishinkobetsu4__item table td {
  border: 1px solid #bfbfbf;
  padding: 10px 4px;
}
.ishinkobetsu4__item table th {
  background: #f2f2f2;
}
.ishinkobetsu4__item table tr:nth-of-type(2n + 1) {
  background: none;
}

.onlinekobetsu .course-ttl {
  background-image: -webkit-image-set(url("../img/onlinekobetsu/bg.jpg") 1x, url("../img/onlinekobetsu/bg@2x.jpg") 2x);
  background-image: image-set(url("../img/onlinekobetsu/bg.jpg") 1x, url("../img/onlinekobetsu/bg@2x.jpg") 2x);
}
.onlinekobetsu .course-link {
  justify-content: space-between;
}
.onlinekobetsu .course-link p {
  font-size: 1.4rem;
  background: #fff;
  padding: 0 20px;
}
.onlinekobetsu .course-first ul li {
  flex: calc(33% - 10px);
  max-width: 33%;
}
.onlinekobetsu .course-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 29px 0;
  border-bottom: none;
}
.onlinekobetsu .course-content__left, .onlinekobetsu .course-content__right {
  flex: 1;
}
.onlinekobetsu .course-content img {
  width: 100%;
}
.onlinekobetsu1,
.onlinekobetsu .course-first ul li:nth-child(1) a {
  background-color: #461e00;
}
.onlinekobetsu1 p {
  color: #461e00;
}
.onlinekobetsu2,
.onlinekobetsu .course-first ul li:nth-child(2) a {
  background-color: #5a3200;
}
.onlinekobetsu2 p {
  color: #5a3200;
}
.onlinekobetsu3,
.onlinekobetsu .course-first ul li:nth-child(3) a {
  background-color: #8b4a00;
}
.onlinekobetsu3 p {
  color: #8b4a00;
}
.onlinekobetsu4,
.onlinekobetsu .course-first ul li:nth-child(4) a {
  background-color: #af6e0a;
}
.onlinekobetsu4 p {
  color: #af6e0a;
}
.onlinekobetsu5,
.onlinekobetsu .course-first ul li:nth-child(5) a {
  background-color: #af7332;
}
.onlinekobetsu5 p {
  color: #af7332;
}
.onlinekobetsu6,
.onlinekobetsu .course-first ul li:nth-child(6) a {
  background-color: #c38c50;
}
.onlinekobetsu6 p {
  color: #c38c50;
}
.onlinekobetsu7 p {
  color: #c38c50;
}
.onlinekobetsu .course-content__ttl:before,
.onlinekobetsu .course-content__ttl:after {
  background-color: #e78824;
}
.onlinekobetsu-image {
  margin-top: 110px;
}
.onlinekobetsu-image h3 {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.37;
  letter-spacing: 0.5px;
  background: #60b864;
  text-align: center;
  padding: 6px 0;
}
.onlinekobetsu-image__content {
  padding: 52px 0 31px;
  margin-bottom: 20px;
  background-image: -webkit-image-set(url("../img/onlinekobetsu/image-bg.jpg") 1x, url("../img/onlinekobetsu/image-bg@2x.jpg") 2x);
  background-image: image-set(url("../img/onlinekobetsu/image-bg.jpg") 1x, url("../img/onlinekobetsu/image-bg@2x.jpg") 2x);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.onlinekobetsu-image__content p {
  font-size: 1.4rem;
  line-height: 2.21;
  margin-bottom: 84px;
}
.onlinekobetsu-image__border {
  padding: 33px 0 27px;
  text-align: center;
  border: 1px solid #000;
}
.onlinekobetsu-image__border p {
  font-size: 1.4rem;
  line-height: 2;
}
.onlinekobetsu-image__flex {
  margin: 92px auto 76px;
  border-top: 1px solid #808080;
  padding-top: 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 10px;
}
.onlinekobetsu-image__item h4 {
  text-align: center;
  font-size: 2.5rem;
  color: #c36e73;
  margin-bottom: 15px;
}
.onlinekobetsu-image__item h5 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}
.onlinekobetsu-image__item img {
  margin-bottom: 21px;
}
.onlinekobetsu-image__item p {
  font-size: 1.4rem;
  line-height: 2;
}

.roninsei .course-ttl {
  background-image: -webkit-image-set(url("../img/roninsei/bg.jpg") 1x, url("../img/roninsei/bg@2x.jpg") 2x);
  background-image: image-set(url("../img/roninsei/bg.jpg") 1x, url("../img/roninsei/bg@2x.jpg") 2x);
}
.roninsei .course-first ul li {
  flex: calc(33% - 10px);
  max-width: calc(33% - 7px);
}
.roninsei1,
.roninsei .course-first ul li:nth-child(1) a {
  background-color: #62d4e9;
}
.roninsei2,
.roninsei .course-first ul li:nth-child(2) a {
  background-color: #3cc3f5;
}
.roninsei3,
.roninsei .course-first ul li:nth-child(3) a {
  background-color: #4ba8f2;
}
.roninsei4,
.roninsei .course-first ul li:nth-child(4) a {
  background-color: #4b92e1;
}
.roninsei5,
.roninsei .course-first ul li:nth-child(5) a {
  background-color: #3c78d5;
}
.roninsei6,
.roninsei .course-first ul li:nth-child(6) a {
  background-color: #3a5ed5;
}
.roninsei7,
.roninsei .course-first ul li:nth-child(7) a {
  background-color: #2f4ac3;
}
.roninsei8,
.roninsei .course-first ul li:nth-child(8) a {
  background-color: #2f3bab;
}
.roninsei .course-content__ttl:before,
.roninsei .course-content__ttl:after {
  background-color: #3cc3f5;
}
.roninsei .footer-cta {
  margin-top: 170px;
}
.roninsei .course-toggle .course-content h1 {
  font-size: 1.6rem;
}

@media screen and (max-width: 834px) {
  .course-ttl {
    padding-bottom: 25px;
  }
  .course-ttl .ttl {
    width: 300px;
  }
  .course-ttl h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
  }
  .course-ttl p {
    font-size: 1.4rem;
  }
  .course-first {
    margin: 19px auto 26px;
  }
  .course-first h3 {
    font-size: 1.8rem;
    letter-spacing: 0;
    margin-bottom: 11px;
  }
  .course-first p {
    font-size: 1.4rem;
    margin-bottom: 28px;
  }
  .course-first ul {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .course-first ul li {
    flex: 48%;
  }
  .course-first ul li a {
    height: 65px;
    font-size: 1.5rem;
    padding: 35px 0;
  }
  .course-first ul li a:hover {
    background: none;
  }
  .course-toggle {
    padding-bottom: 40px;
  }
  .course-link {
    padding: 17px 13px;
    display: block;
  }
  .course-link.plus:before, .course-link.plus:after {
    width: 28px;
    top: 30px;
    bottom: auto;
  }
  .course-link.mt80 {
    margin-top: 40px;
  }
  .course-link h4 {
    font-size: 1.8rem;
    margin-right: 0;
  }
  .course-link p {
    margin-top: 8px;
    font-size: 1.4rem;
  }
  .course-link a:after {
    width: 13px;
    height: 10px;
    right: 14px;
  }
  .course-content__ttl {
    padding: 15px;
  }
  .course-content__ttl:before, .course-content__ttl:after {
    width: 20px;
  }
  .course-content__ttl p {
    font-size: 1.6rem;
    padding-right: 30px;
  }
  .course-content__inner {
    padding: 10px 15px;
  }
  .course-content__inner h3 {
    font-size: 1.8rem;
  }
  .course-content__inner p {
    font-size: 1.4rem;
  }
  .course-content.flex {
    flex-direction: column-reverse;
    padding: 5px 0;
    border-bottom: none;
  }
  .course-content.flex img {
    margin-bottom: 18px;
  }
  .course-content.flex h5 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .course-content.flex p {
    font-size: 1.4rem;
  }
  .course-content.flex + p {
    font-size: 1.4rem;
  }
  .course-content__left, .course-content__right {
    width: 100%;
  }
  .chukoikkanko .course-ttl {
    background-image: -webkit-image-set(url("../img/chukoikkanko/bg-sp.jpg") 1x, url("../img/chukoikkanko/bg-sp@2x.jpg") 2x);
    background-image: image-set(url("../img/chukoikkanko/bg-sp.jpg") 1x, url("../img/chukoikkanko/bg-sp@2x.jpg") 2x);
  }
  .chugakujuken .course-ttl {
    background-image: -webkit-image-set(url("../img/chugakujuken/bg-sp.jpg") 1x, url("../img/chugakujuken/bg-sp@2x.jpg") 2x);
    background-image: image-set(url("../img/chugakujuken/bg-sp.jpg") 1x, url("../img/chugakujuken/bg-sp@2x.jpg") 2x);
  }
  .chugakujuken .course-first ul li {
    flex: calc(50% - 10px);
    max-width: calc(50% - 7px);
  }
  .chugakujuken2 + .course-content ul {
    font-size: 1.4rem;
  }
  .chugakujuken3 + .course-content {
    border-bottom: none;
    padding: 15px 0;
  }
  .chugakujuken3 + .course-content p {
    font-size: 1.4rem;
    margin-bottom: 33px;
  }
  .chugakujuken3 + .course-content ul {
    font-size: 1.4rem;
    border-left: 4px solid #99cc33;
    padding-left: 10px;
  }
  .shingakukobetsujuku .course-ttl {
    background-image: -webkit-image-set(url("../img/shingakukobetsujuku/bg-sp.jpg") 1x, url("../img/shingakukobetsujuku/bg-sp@2x.jpg") 2x);
    background-image: image-set(url("../img/shingakukobetsujuku/bg-sp.jpg") 1x, url("../img/shingakukobetsujuku/bg-sp@2x.jpg") 2x);
  }
  .shingakukobetsujuku .course-first ul li {
    flex: calc(50% - 10px);
    max-width: 50%;
  }
  .ishinkobetsu .course-ttl {
    background-image: -webkit-image-set(url("../img/ishinkobetsu/bg-sp.jpg") 1x, url("../img/ishinkobetsu/bg-sp@2x.jpg") 2x);
    background-image: image-set(url("../img/ishinkobetsu/bg-sp.jpg") 1x, url("../img/ishinkobetsu/bg-sp@2x.jpg") 2x);
  }
  .ishinkobetsu .course-first ul li {
    flex: calc(50% - 10px);
    max-width: 50%;
  }
  .ishinkobetsu .course-content.flex + p {
    margin-bottom: 50px;
  }
  .ishinkobetsu4 {
    padding: 30px 0 20px;
    border-bottom: 1px solid #808080;
  }
  .ishinkobetsu4:last-child {
    margin-bottom: 120px;
  }
  .ishinkobetsu4 h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
  .ishinkobetsu4 h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .ishinkobetsu4 img {
    margin-bottom: 20px;
  }
  .ishinkobetsu4 p {
    font-size: 1.4rem;
    text-align: left;
  }
  .ishinkobetsu4__flex {
    display: block;
  }
  .ishinkobetsu4__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .ishinkobetsu4__item.noflex {
    display: block;
  }
  .ishinkobetsu4__item.noflex p {
    margin-top: 0;
    font-size: 1.4rem;
  }
  .ishinkobetsu4__item.noflex iframe {
    max-height: 150px;
  }
  .ishinkobetsu4__item h4 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 2px;
  }
  .ishinkobetsu4__item p {
    font-size: 1.4rem;
  }
  .ishinkobetsu4__item img {
    max-width: 50%;
    margin-right: 10px;
  }
  .ishinkobetsu4__item.sp_only {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 5px;
  }
  .ishinkobetsu4__item table {
    font-size: 1.2rem;
  }
  .ishinkobetsu4__item table th,
.ishinkobetsu4__item table td {
    padding: 7px 2px;
  }
  .onlinekobetsu .course-first ul li {
    flex: calc(50% - 10px);
    max-width: 50%;
  }
  .onlinekobetsu .course-link p {
    position: absolute;
    padding: 2px 4px;
    right: 13px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 2rem;
    line-height: 1;
    font-size: 1.4rem;
  }
  .onlinekobetsu .course-content {
    display: block;
    font-size: 1.4rem;
    padding: 12px 0;
  }
  .onlinekobetsu .course-content__left {
    margin-right: 0;
  }
  .onlinekobetsu-image {
    margin-top: 24px;
  }
  .onlinekobetsu-image h3 {
    font-size: 1.8rem;
  }
  .onlinekobetsu-image__content {
    padding: 23px 0 19px;
    text-align: left;
  }
  .onlinekobetsu-image__content p {
    font-size: 1.4rem;
    margin-bottom: 43px;
  }
  .onlinekobetsu-image__border {
    padding: 17px 13px;
    text-align: left;
  }
  .onlinekobetsu-image__border p {
    font-size: 1.4rem;
  }
  .onlinekobetsu-image__flex {
    display: block;
    margin-top: 30px;
    padding-top: 25px;
  }
  .onlinekobetsu-image__item + .onlinekobetsu-image__item {
    margin-top: 46px;
  }
  .onlinekobetsu-image__item h4 {
    font-size: 1.9rem;
    margin-bottom: 13px;
  }
  .onlinekobetsu-image__item img {
    margin-bottom: 18px;
  }
  .onlinekobetsu-image__item h5 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .onlinekobetsu-image__item p {
    font-size: 1.4rem;
  }
  .roninsei .course-first ul li {
    flex: calc(50% - 10px);
    max-width: 50%;
  }
}/*# sourceMappingURL=hp_courses.css.map */