@charset "UTF-8";
.wrap {
  width: 1200px;
  margin: 0 auto;
}

.sectionTitle {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}

.sectionTitle::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 30%;
  height: 4px;
  content: "";
  border-top: 4px solid #325784;
}

.sectionTitle::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 30%;
  height: 4px;
  content: "";
  border-top: 4px solid #325784;
}

.sectionTitle__box {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 60px;
}

.sectionTitle__title {
  font-size: 51px;
  color: #325784;
  line-height: 1.25;
  font-weight: bold;
}

.sectionTitle__smallText {
  font-size: 38px;
}

.document {
  background-color: #fff;
  padding: 80px 0;
  background-image: url("../images/document_back.png");
}

.document__overview {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 60px;
}

.document__text, .document__item {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
}

.document__text, .document__list {
  margin-top: 20px;
}

.document__item {
  list-style-type: decimal;
  list-style-position: inside;
}

.document__contents {
  margin-top: 60px;
}

.document__flexBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.document__descriptionBox, .document__imagesBox {
  width: 48%;
}

.document__descriptionTitleBox {
  display: flex;
  align-items: center;
}

.document__descriptionNumberBox {
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #325784;
  border-radius: 100%;
  margin-right: 20px;
}

.document__descriptionNumberText {
  font-size: 16px;
  color: #fff;
}

.document__descriptionNumber {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin-top: 5px;
}

.document__descriptionTitle {
  font-size: 30px;
  font-weight: 700;
}

.document__descriptionText {
  font-size: 30px;
  line-height: 1.5;
  margin-top: 30px;
}

.document__imageBox {
  border: 1px solid #325784;
}

.document__imageBox:not(:first-of-type) {
  margin-top: 20px;
}

.document__imageBox > img {
  width: 100%;
  display: block;
}

.course-exist {
  display: grid;
  grid-template-columns: repeat(auto-fit, min(100%, 250px));
  justify-content: center;
  gap: 30px;
  padding: 30px 20px 10px;
}

.course-exist__link {
  font-size: 20px;
  font-weight: bold;
  color: #325784;
  background: #fff;
  border-bottom: 5px solid #325784;
  padding: 20px 10px;
  display: grid;
  place-items: center;
  position: relative;
}

.course-exist__link--recommend {
  color: #ea7114;
  border-color: #ea7114;
}

.course-exist__speech-bubble {
  display: inline;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: bottom left;
  translate: -10px -50%;
  rotate: -5deg;
  padding: 5px 10px;
  background-color: #325784;
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: bold;
  color: #fff;
}

.course-exist__link--recommend .course-exist__speech-bubble {
  background-color: #ea7114;
}

.cource-box {
  display: grid;
  justify-items: center;
  padding: 60px 20px;
}

.cource-txts {
  width: min(100%, 960px);
}

.cource-txts__speech-bubble {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transform-origin: bottom left;
  translate: -10px 0;
  rotate: -5deg;
  padding: 7px 10px;
  background-color: #325784;
  font-size: 14px;
  letter-spacing: 0.15em;
  font-weight: bold;
  color: #fff;
}

.cource-txts--recommend .cource-txts__speech-bubble {
  background-color: #ea7114;
}

.cource-txts__ttl {
  font-size: 50px;
  font-weight: bold;
  border-bottom: 10px solid #325784;
  display: inline-block;
  padding-bottom: 5px;
}

.cource-txts__ttl--small {
  font-size: 30px;
}

.cource-txts--recommend .cource-txts__ttl {
  border-color: #ea7114;
}

.cource-txts__h3-ttl {
  font-size: 24px;
  font-weight: bold;
  color: #325784;
  margin-top: 30px;
}

.cource-txts--recommend .cource-txts__h3-ttl {
  color: #ea7114;
}

.cource-txts__h3-txt {
  font-size: 20px;
  margin-top: 10px;
  line-height: 1.75;
}

.cource-txts__h3-txt--highlight {
  color: #1370db;
  font-weight: bold;
}

.cource-txts--recommend .cource-txts__h3-txt--highlight {
  color: #ea7114;
}

.cource-txts__h3-txt--underline {
  text-decoration: underline;
  font-weight: 700;
}

.cource-txts__list {
  margin-top: 10px;
}

.cource-txts__item {
  font-size: 20px;
  line-height: 1.75;
  padding-left: 1.2em;
  position: relative;
}

.cource-txts__item--bold {
  font-weight: bold;
}

.cource-txts__item--attention {
  color: red;
  font-weight: bold;
}

.cource-txts__item--highlight {
  color: #1370db;
  font-weight: bold;
}

.cource-txts__item::before {
  content: "●";
  font-size: 20px;
  color: #000;
  position: absolute;
  left: 0;
}

.cource-txts__item a {
  color: #325784;
  text-decoration: underline;
}

.cource-txts__charge {
  margin-top: 30px;
  font-size: 60px;
  font-weight: bold;
}

.cource-txts__charge--attention {
  color: red;
  font-size: 24px;
}

.cource-txts__charge--remarks {
  font-size: 16px;
  font-weight: 400;
}

.cource-txts__chargeAfter {
  font-size: 30px;
}

.cource-txts__chargeAnnotation {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 16px;
}

.cource-txts__discountBefore {
  position: relative;
  font-size: 35px;
}

.cource-txts__discountBefore::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  width: 120%;
  height: 2px;
  background-color: red;
}

.cource-txts__discountAfter {
  padding-top: 40px;
  color: red;
  display: inline-block;
  position: relative;
}

.cource-txts__discountAfter::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #000;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.cource-txts__waribiki-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 37px;
  transition: opacity 0.3s;
}

.cource-txts__waribiki-image {
  height: auto;
  max-width: 100%;
}

.cource-imgs {
  width: 50%;
  text-align: center;
  align-self: flex-start;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding-left: 50px;
}

.cource-imgs__point-box {
  width: 100%;
}

.cource-imgs__point-box--half {
  width: 50%;
  margin-top: 50px;
}

.cource-imgs__point-txt {
  font-size: 24px;
  font-weight: bold;
  color: #325784;
  margin-top: 20px;
}

.cource-imgs__txt {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  width: 100%;
  line-height: 1.5;
  background: #325784;
  border-radius: 100%;
  padding: 45px 30px;
  margin-top: 50px;
}

.cource-imgs__bannerImage {
  width: 300px;
  height: auto;
  width: min(calc(100% - 40px), 300px);
  display: block;
  margin: 0 auto;
}

.cource-hikaku {
  margin-top: 60px;
  overflow: scroll;
  box-shadow: 0 3px 15px 1px rgba(0, 0, 0, 0.16);
}

.cource-hikaku__table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

.cource-hikaku__tr {
  border-bottom: 1px solid #325784;
}

.cource-hikaku__tr:last-of-type {
  border-bottom: none;
}

.cource-hikaku__head-th {
  padding: 20px;
  background: #325784;
  color: #fff;
  vertical-align: middle;
}

.cource-hikaku__head-th:not(:last-of-type) {
  border-right: 1px solid #fff;
}

.cource-hikaku__body-th, .cource-hikaku__body-td {
  padding: 20px 10px;
  background: #fff;
  vertical-align: middle;
  border-right: 1px solid #325784;
  box-sizing: border-box;
  font-size: 16px;
  min-width: 150px;
}

.cource-hikaku__body-th {
  font-weight: bold;
  background: #d1e6ff;
}

.cource-hikaku__body-td:last-of-type {
  border-right: none;
}

.cource-hikaku__body-td--attention {
  color: red;
  font-size: 12px;
}

.cource-hikaku__body-td--remarks {
  font-size: 12px;
  font-weight: 400;
}

.cource-hikaku__have-kakomon {
  color: red;
  font-size: 12px;
}

.cource-hikaku__charge {
  font-weight: bold;
}

.cource-hikaku__can-scroll {
  color: red;
  margin-top: 10px;
  display: none;
}

.cource-free {
  text-align: center;
  padding-top: 80px;
}

.cource-free ul > li {
  display: block;
  margin-top: 35px;
}

.cource-free ul > li a {
  color: #fff;
  font-size: 31px;
  padding: 22px 85px;
  display: inline-block;
  background-color: #325784;
  border-radius: 37px;
}

.cource-free ul > li a:hover {
  box-shadow: none;
  opacity: 0.75;
}

.cource-free__link-txt--attention {
  font-size: 16px;
  margin-top: 20px !important;
  color: red;
}

.goukaku {
  background: #cddaea;
  padding: 80px 0;
}

.goukaku__saishin {
  padding: 15px 20px;
  background-color: #ff5100;
  color: #fff;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
}

.goukaku__ttl-box {
  text-align: center;
}

.goukaku__content-box {
  background: #fff;
  padding: 60px 30px 40px;
}

.goukaku__content-box:not(:first-of-type) {
  margin-bottom: 60px;
}

.goukaku__data-box {
  background-color: #325784;
  padding: 20px 30px 20px 30px;
  transform: translateX(calc(-30px - 20px));
  position: relative;
}

.goukaku__data-box::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 15px 0;
  border-color: transparent #1f3755 transparent transparent;
}

.goukaku__data-box::after {
  background-color: #325784;
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 50px;
  height: 100%;
  background-image: url("/images/goukaku_bg_triangle.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.goukaku__data-ttl {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  position: relative;
}

.goukaku__data-ttl--small {
  font-size: 24px;
  margin-top: 10px;
  display: block;
}

.goukaku__honbun-list {
  margin-top: 60px;
}

.goukaku__honbun-item {
  margin-top: 30px;
}

.goukaku__honbun-ttl {
  font-size: 30px;
  font-weight: bold;
  color: #325784;
}

.goukaku__honbun-txt {
  font-size: 20px;
  margin-top: 15px;
  line-height: 1.5;
}

.campaignBanner {
  padding: 80px 0;
  background-color: #cddaea;
}

.campaignBanner__link {
  width: min(calc(100% - 40px), 300px);
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s;
}

.campaignBanner__image {
  width: 100%;
  height: auto;
  display: block;
}

body:has(.fixed-cta) #footer {
  padding-bottom: calc(100px + 20px + 20px);
}

body:has(.fixed-cta) #fixedTop {
  bottom: calc(100px + 10px);
}

body:has(.fixed-cta) #bottom-fixedTop {
  bottom: calc(252px + 10px);
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(50, 87, 132, 0.95);
  height: 100px;
  display: grid;
  justify-items: center;
  align-content: center;
  row-gap: 10px;
  z-index: 2;
}

.fixed-cta__text {
  font-size: 14px;
  color: #fff;
}

.fixed-cta__text::before {
  content: "＼";
}

.fixed-cta__text::after {
  content: "／";
}

.fixed-cta__box {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.fixed-cta__link {
  --_background: #ea7114;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 44px;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  background-color: color-mix(in sRGB, var(--_background) var(--_opacity, 100%), transparent);
  border-radius: 4px;
  transition: opacity 0.3s;
}

.fixed-cta__link--line {
  --_background: #06c755;
}

.blockText {
  display: inline-block;
}

body {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  background-color: #f0f0f0;
}

body .wrap {
  width: 1200px;
  margin: 0 auto;
}

body .contents-title {
  text-align: center;
  font-size: 48px;
  padding: 21px 100px;
  border: 4px solid #325784;
  color: #325784;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 50px;
}

body .contents-title + p {
  text-align: center;
  font-size: 31px;
  color: #325784;
}

body #header {
  background-image: url(../images/header__img_bgi.jpg);
  height: 1080px;
  height: 56.25vw;
  background-position: center 100%;
  background-repeat: no-repeat;
  padding: 50px 40px;
  overflow: hidden;
  position: relative;
}

body #header .header-wrap {
  border: 2px solid #fff;
  height: 100%;
  position: relative;
}

body #header .header-wrap .header-logo {
  position: absolute;
  top: 5%;
  left: 2.5%;
  width: 20%;
}

body #header .header-wrap nav {
  position: absolute;
  top: 5%;
  right: 2.5%;
}

body #header .header-wrap nav ul li {
  display: inline-block;
  padding: 0 40px;
  padding: 0 2.08333vw;
}

body #header .header-wrap nav ul li a {
  color: #fff;
  font-size: 25px;
  font-size: 1.30208vw;
}

body #header .header-wrap nav ul li:first-of-type {
  padding-left: 0;
}

body #header .header-wrap nav ul li:last-of-type {
  padding-right: 0;
}

body #header .header-wrap .header-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  width: calc(870 / 1920 * 100%);
}

body #header .header-wrap .header-taiken {
  position: absolute;
  bottom: 5%;
  left: 2.5%;
  width: 15%;
}

body #header .header-wrap .header-taiken :where(img) {
  display: block;
  width: 100%;
}

body #header .header-wrap .header-hand {
  position: absolute;
  top: 25%;
  right: -14%;
  width: 40%;
}

body #header .header-since-2019 {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 93px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

body #sp-header {
  display: none;
  background-image: url(../images/header__img_bgi_sp.jpg);
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

body #sp-header .sp-header-top {
  background-color: #fff;
}

body #sp-header .sp-header-top .sp-header-logos {
  padding-top: 20px;
}

body #sp-header .sp-header-top .sp-header-logos::after {
  clear: both;
  display: block;
  content: "";
}

body #sp-header .sp-header-top .sp-header-logos img {
  float: left;
  width: 50%;
}

body #sp-header .sp-header-top .sp-header-logos a {
  float: right;
  font-size: 14px;
  display: block;
  padding: 10px 30px;
  background-color: #325784;
  color: #fff;
  border-radius: 12px;
}

body #sp-header .sp-header-top nav {
  padding: 15px 0;
}

body #sp-header .sp-header-top nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

body #sp-header .sp-header-top nav ul li {
  font-size: 12px;
}

body #sp-header .sp-header-top nav ul li a {
  color: #325784;
}

body #sp-header .sp-header-firstview {
  height: 383px;
  position: relative;
}

body #sp-header .sp-header-firstview :where(img) {
  display: block;
}

body #sp-header .sp-header-firstview .sp-header-copy {
  position: absolute;
  top: 73px;
  width: calc(279 / 375 * 100%);
}

body #sp-header .sp-header-firstview .sp-header-taiken {
  position: absolute;
  bottom: 43.4px;
}

body #sp-header .sp-header-firstview .sp-header-hand {
  position: absolute;
  bottom: -65px;
  left: 150px;
}

body #sp-header .sp-header-firstview .sp-header-since-2019 {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 56px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

body #about {
  padding: 80px 0;
  background-color: #fff;
}

body #about .about-title {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}

body #about .about-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 4px;
  content: "";
  border-top: 4px solid #325784;
}

body #about .about-title .about-titleholder {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 60px;
  background-color: #fff;
}

body #about .about-title .about-titleholder h1 {
  font-size: 51px;
  color: #325784;
  line-height: 1.25;
  font-weight: bold;
}

body #about .about-title .about-titleholder h1 small {
  font-size: 38px;
}

body #about .about1 {
  border-bottom: 1px solid #325784;
  padding: 0 100px 40px;
}

body #about .about1::after {
  clear: both;
  display: block;
  content: "";
}

body #about .about1 h2 {
  font-size: 35px;
  color: #325784;
  float: left;
  display: block;
  width: 65%;
  padding: 120px 20px 40px 0;
  background-image: url(../images/about__img_1.png);
  background-repeat: no-repeat;
  background-position: top 0 left 10px;
  letter-spacing: 4px;
}

body #about .about1 img {
  float: right;
  width: 35%;
  padding: 120px 0 0 60px;
}

body #about .about1 p {
  font-size: 20px;
  line-height: 1.5;
  float: left;
  display: block;
  width: 65%;
  padding: 20px 30px 0 0;
}

body #about .about2 {
  padding: 40px 100px;
}

body #about .about2::after {
  clear: both;
  display: block;
  content: "";
}

body #about .about2 h2 {
  font-size: 35px;
  color: #325784;
  float: right;
  display: block;
  width: 65%;
  padding: 60px 0 40px 30px;
  background-image: url(../images/about__img_2.png);
  background-repeat: no-repeat;
  background-position: top 0 right 10px;
  line-height: 1.5;
  letter-spacing: 3px;
}

body #about .about2 img {
  float: left;
  width: 35%;
  padding: 60px 60px 0 0;
}

body #about .about2 p {
  font-size: 20px;
  line-height: 1.5;
  float: right;
  display: block;
  width: 65%;
  padding: 20px 0 0 30px;
}

body #about .sarani {
  border-bottom: 1px solid #325784;
  padding: 40px 100px;
}

body #about .sarani::after {
  clear: both;
  display: block;
  content: "";
}

body #about .sarani .sarani-yoko {
  width: 69%;
  float: left;
}

body #about .sarani .sarani-yoko div {
  background-color: #325784;
  color: #fff;
  display: inline-block;
  letter-spacing: 5px;
  font-size: 35px;
  padding: 10px 20px;
  margin-bottom: 10px;
}

body #about .sarani h2 {
  font-size: 30px;
  font-weight: bold;
  background-image: none;
  width: 69%;
  display: block;
  padding-right: 35px;
  float: left;
  line-height: 1.5;
  color: #325784;
}

body #about .sarani img {
  width: 25%;
  float: right;
}

body #about .sarani p {
  width: 69%;
  display: block;
  padding: 20px 35px 0 0;
  float: left;
  font-size: 20px;
  line-height: 1.5;
}

body #about .sarani a {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, #325784 50%);
  background-position: 0 0;
  background-size: 200% auto;
  float: right;
  padding: 15px 13px 15px 18px;
  border: 2px solid #325784;
  font-size: 25px;
  letter-spacing: 3px;
  margin-top: 30px;
  color: #325784;
  transition: 0.3s;
}

body #about .sarani a:hover {
  background-position: -100.1% 0;
  color: #fff;
}

body #about .about3 {
  border-bottom: 1px solid #325784;
  padding: 40px 100px;
}

body #about .about3::after {
  clear: both;
  display: block;
  content: "";
}

body #about .about3 h2 {
  font-size: 35px;
  color: #325784;
  float: left;
  display: block;
  width: 65%;
  padding: 120px 20px 40px 0;
  background-image: url(../images/about__img_3.png);
  background-repeat: no-repeat;
  background-position: top 0 left 10px;
  letter-spacing: 4px;
}

body #about .about3 img {
  float: right;
  width: 35%;
  padding: 120px 0 0 60px;
}

body #about .about3 p {
  font-size: 20px;
  line-height: 1.5;
  float: left;
  display: block;
  width: 65%;
  padding: 20px 30px 0 0;
}

body #about .about-smalls::after {
  clear: both;
  display: block;
  content: "";
}

body #about .about4 {
  width: 50%;
  margin: 50px 0;
  text-align: center;
  float: left;
  border-right: 1px solid #325784;
  padding: 0 50px 0 100px;
}

body #about .about4 h2 {
  font-size: 35px;
  color: #325784;
  display: block;
  padding: 80px 0 40px 40px;
  background-image: url(../images/about__img_4.png);
  background-repeat: no-repeat;
  background-position: top 0 left 0;
  letter-spacing: 4px;
  text-align: left;
}

body #about .about4 img {
  height: 170px;
  width: auto;
}

body #about .about4 p {
  font-size: 20px;
  line-height: 1.5;
  display: block;
  padding: 20px 0 0;
  text-align: left;
}

body #about .about5 {
  width: 50%;
  margin: 50px 0;
  text-align: center;
  float: right;
  padding: 0 100px 0 50px;
}

body #about .about5 h2 {
  font-size: 35px;
  color: #325784;
  display: block;
  padding: 80px 40px 40px 0;
  background-image: url(../images/about__img_5.png);
  background-repeat: no-repeat;
  background-position: top 0 right 0;
  letter-spacing: 4px;
  text-align: right;
}

body #about .about5 img {
  height: 170px;
  width: auto;
}

body #about .about5 p {
  font-size: 20px;
  line-height: 1.5;
  display: block;
  padding: 20px 0 0;
  text-align: left;
}

body #about .about6 {
  width: 50%;
  margin: 50px 0;
  text-align: center;
  float: left;
  border-right: 1px solid #325784;
  padding: 0 50px 0 100px;
}

body #about .about6 h2 {
  font-size: 35px;
  color: #325784;
  display: block;
  padding: 80px 0 40px 40px;
  background-image: url(../images/about__img_6.png);
  background-repeat: no-repeat;
  background-position: top 0 left 0;
  letter-spacing: 4px;
  text-align: left;
}

body #about .about6 img {
  height: 170px;
  width: auto;
}

body #about .about6 p {
  font-size: 20px;
  line-height: 1.5;
  display: block;
  padding: 20px 0 0;
  text-align: left;
}

body #about .about6 h2 {
  line-height: 1.25;
  padding-top: 60px;
}

body #about .about7 {
  width: 50%;
  margin: 50px 0;
  text-align: center;
  float: right;
  padding: 0 100px 0 50px;
}

body #about .about7 h2 {
  font-size: 35px;
  color: #325784;
  display: block;
  padding: 80px 40px 40px 0;
  background-image: url(../images/about__img_7.png);
  background-repeat: no-repeat;
  background-position: top 0 right 0;
  letter-spacing: 4px;
  text-align: right;
}

body #about .about7 img {
  height: 170px;
  width: auto;
}

body #about .about7 p {
  font-size: 20px;
  line-height: 1.5;
  display: block;
  padding: 20px 0 0;
  text-align: left;
}

body #about .about7 h2 {
  padding-bottom: 70px;
}

body #about .about-border {
  border-bottom: 1px solid #325784;
  width: 100%;
  float: left;
}

body #taishou {
  display: none;
  background-color: #fff;
  padding-bottom: 80px;
}

body #taishou .taishou-title {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}

body #taishou .taishou-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 4px;
  content: "";
  border-top: 4px solid #325784;
}

body #taishou .taishou-title .taishou-titleholder {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 60px;
  background-color: #fff;
}

body #taishou .taishou-title .taishou-titleholder h1 {
  font-size: 51px;
  color: #325784;
  line-height: 1.25;
  font-weight: bold;
}

body #taishou .taishou-title .taishou-titleholder h1 small {
  font-size: 38px;
}

body #taishou ul {
  padding-top: 40px;
  width: 63%;
  margin: 0 auto;
}

body #taishou ul li {
  font-size: 30px;
  text-align: left;
  line-height: 1.5;
  font-weight: bold;
}

body #taishou .taishou-p {
  width: 67.5%;
  margin: 50px auto 0;
}

body #taishou .taishou-p p {
  font-size: 30px;
  line-height: 1.5;
  font-weight: bold;
}

body #cource {
  padding: 80px 0;
}

body #cource .cource-title {
  text-align: center;
}

body #cource .cource-detail {
  /*.sokushuu {
                padding: 60px 20px;
                border-bottom: 1px solid $thick-blue;
                @include clear-fix;
                @include media(sp) {
                    padding: 30px 0;
                }
                .sokushuu-title {
                    float: right;
                    width: 42%;
                    @include media(tab) {
                        width: 100%;
                        float: none;
                        text-align: center;
                        padding-bottom: 5px;
                        border-bottom: 10px solid $thick-blue;
                    }
                    h2 {
                        font-size: 49px;
                        font-weight: bold;
                        display: inline-block;
                        border-bottom: 10px solid $thick-blue;
                        @include media(pc) {
                            font-size: 40px;
                        }
                        @include media(tab) {
                            border-bottom: none;
                        }
                        @include media(sp) {
                            font-size: 26px;
                        }
                        span {
                            font-size: 30px;
                            @include media(pc) {
                                font-size: 25px;
                            }
                            @include media(sp) {
                                font-size: 18px;
                            }
                        }
                    }
                }
                .shokushuu-point {
                    float: left;
                    width: 58%;
                    @include media(tab) {
                        float: none;
                        width: 100%;
                        height: 200px;
                        text-align: center;
                        position: relative;
                        margin-top: 30px;
                    }
                    @include media(sp) {
                        height: 150px;
                    }
                    img {
                        position: relative;
                        @include media(tab) {
                            position: absolute;
                        }
                        &:first-of-type {
                            top: 50px;
                            @include media(pc) {
                                width: 25%;
                            }
                            @include media(tab) {
                                top: auto;
                                bottom: 30px;
                                left: 0;
                                width: 20%;
                            }
                            @include media(sp) {
                                height: 75px;
                                width: auto;
                                bottom: 40px;
                            }
                        }
                        &:last-of-type {
                            left: 100px;
                            @include media(pc) {
                                left: 30px;
                            }
                            @include media(tab) {
                                left: auto;
                                right: 0;
                                height: 200px;
                            }
                            @include media(sp) {
                                height: 150px;
                            }
                        }
                    }
                    p {
                        position: relative;
                        font-size: 30px;
                        color: $thick-blue;
                        top: 30px;
                        left: 170px;
                        font-weight: bold;
                        @include media(pc) {
                            left: 140px;
                            font-size: 25px;
                        }
                        @include media(tab) {
                            position: absolute;
                            top: auto;
                            bottom: 0;
                            left: 15%;
                            width: 55%;
                            text-align: left;
                        }
                        @include media(sp) {
                            font-size: 18px;
                            left: 5%;
                        }
                    }
                }
                ul {
                    float: right;
                    width: 42%;
                    padding-top: 40px;
                    @include media(tab) {
                        width: 100%;
                    }
                    li {
                        font-size: 20px;
                        line-height: 1.75;
                        @include media(pc) {
                            font-size: 18px;
                        }
                        @include media(sp) {
                            font-size: 16px;
                        }
                    }
                }
                .sokushuu-pay {
                    float: right;
                    padding-top: 40px;
                    width: 42%;
                    text-align: right;
                    @include media(tab) {
                        padding-top: 20px;
                        width: 100%;
                    }
                    p {
                        font-size: 35px;
                        font-weight: bold;
                        @include media(pc) {
                            font-size: 30px;
                        }
                        @include media(sp) {
                            font-size: 20px;
                        }
                    }
                }
            }*/
  /*.rensei {
                padding: 60px 20px;
                @include clear-fix;
                @include media(tab) {
                    padding-bottom: 20px;
                }
                @include media(sp) {
                    padding: 30px 0 20px;
                }
                .rensei-title {
                    float: left;
                    width: 42%;
                    @include media(tab) {
                        width: 100%;
                        float: none;
                        text-align: center;
                        padding-bottom: 5px;
                        border-bottom: 10px solid $thick-blue;
                    }
                    h2 {
                        font-size: 49px;
                        font-weight: bold;
                        display: inline-block;
                        border-bottom: 10px solid $thick-blue;
                        @include media(pc) {
                            font-size: 40px;
                        }
                        @include media(tab) {
                            border-bottom: none;
                        }
                        @include media(sp) {
                            font-size: 26px;
                        }
                        span {
                            font-size: 30px;
                            @include media(pc) {
                                font-size: 25px;
                            }
                            @include media(sp) {
                                font-size: 18px;
                            }
                        }
                    }
                }
                .rensei-points {
                    float: right;
                    width: 58%;
                    padding-left: 40px;
                    @include media(pc) {
                        padding-left: 30px;
                        padding-left: 0;
                    }
                    @include media(tab) {
                        width: 100%;
                    }
                    .rensei-pointstitle {
                        position: relative;
                        @include media(tab) {
                            margin-top: 30px;
                        }
                        p {
                            font-size: 30px;
                            color: $thick-blue;
                            width: 75%;
                            display: inline-block;
                            padding-top: 20px;
                            line-height: 1.5;
                            font-weight: bold;
                            @include media(pc) {
                                width: 80%;
                                font-size: 25px;
                                padding-top: 50px;
                            }
                            @include media(tab) {
                                width: 100%;
                                padding-top: 80px;
                                padding-left: 23%;
                                text-align: left;
                            }
                            @include media(sp) {
                                font-size: 18px;
                                padding-left: 15%;
                                br {
                                    display: none;
                                }
                            }
                        }
                        img {
                            position: absolute;
                            &:first-of-type {
                                top: 10px;
                                right: 0;
                                @include media(pc) {
                                    top: -20px;
                                    width: 30%;
                                }
                                @include media(tab) {
                                    display: none;
                                }
                            }
                            &:last-of-type {
                                display: none;
                                @include media(tab) {
                                    display: block;
                                    top: 0;
                                    width: 20%;
                                }
                                @include media(sp) {
                                    height: 75px;
                                    width: auto;
                                    bottom: 40px;
                                }
                            }
                        }
                    }
                    .rensei-point {
                        text-align: center;
                        &:nth-of-type(2) {
                            width: 100%;
                            padding-top: 50px;
                            @include media(sp) {
                                padding-top: 30px;
                            }
                            img {
                                @include media(pc) {
                                    width: 35%;
                                }
                            }
                        }
                        &:nth-of-type(n+3) {
                            width: 49%;
                            display: inline-block;
                            padding-top: 50px;
                            @include media(sp) {
                                padding-top: 30px;
                            }
                            img {
                                @include media(pc) {
                                    width: 60%;
                                }
                            }
                        }
                        p {
                            font-size: 25px;
                            color: $thick-blue;
                            font-weight: bold;
                            padding-top: 20px;
                            @include media(pc) {
                                font-size: 20px;
                            }
                            @include media(sp) {
                                font-size: 12px;
                            }
                        }
                    }
                }
                ul {
                    float: left;
                    width: 40%;
                    padding-top: 40px;
                    @include media(tab) {
                        width: 100%;
                    }
                    li {
                        font-size: 20px;
                        line-height: 1.75;
                        @include media(pc) {
                            font-size: 18px;
                        }
                        @include media(sp) {
                            font-size: 16px;
                        }
                        &:nth-of-type(n+4) {
                            font-weight: bold;
                        }
                    }
                }
                .rensei-pay {
                    float: left;
                    padding-top: 40px;
                    width: 40%;
                    text-align: right;
                    @include media(tab) {
                        float: right;
                        padding-top: 20px;
                        width: 100%;
                    }
                    p {
                        font-size: 35px;
                        font-weight: bold;
                        @include media(pc) {
                            font-size: 30px;
                        }
                        @include media(sp) {
                            font-size: 20px;
                        }
                    }
                }
            }*/
}

body #cource .cource-detail .cource-min-title {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 40px;
}

body #cource .cource-detail .cource-min-title::before {
  position: absolute;
  top: 67%;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 4px;
  content: "";
  border-top: 4px solid #325784;
}

body #cource .cource-detail .cource-min-title .cource-min-titleholder {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 60px;
  background-color: #f0f0f0;
}

body #cource .cource-detail .cource-min-title .cource-min-titleholder h1 {
  font-size: 51px;
  color: #325784;
  line-height: 1.25;
  font-weight: bold;
  display: inline-block;
}

body #cource .cource-detail .gakushuu {
  padding: 20px 0 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

body #cource .cource-detail .gakushuu .gakushuu-box {
  box-shadow: 0 3px 15px 1px rgba(0, 0, 0, 0.16);
  width: 30%;
  background-color: #fff;
  margin-top: 40px;
}

body #cource .cource-detail .gakushuu .gakushuu-box > img:first-of-type {
  width: 100%;
}

body #cource .cource-detail .gakushuu .gakushuu-box > img:nth-of-type(2) {
  margin-top: -57px;
}

body #cource .cource-detail .gakushuu .gakushuu-box > h2 {
  font-size: 28px;
  font-weight: bold;
  color: #325784;
}

body #cource .cource-detail .gakushuu .gakushuu-box .rensei-only {
  padding: 20px 20px 0;
}

body #cource .cource-detail .gakushuu .gakushuu-box .rensei-only img {
  width: 10.5%;
  position: relative;
  top: -10px;
}

body #cource .cource-detail .gakushuu .gakushuu-box .rensei-only p {
  font-size: 20px;
  width: 88%;
  display: inline-block;
  text-align: left;
  font-weight: bold;
  line-height: 1.5;
}

body #cource .cource-detail .gakushuu .gakushuu-box > p {
  font-size: 18px;
  padding: 20px 20px;
  text-align: left;
  line-height: 1.5;
}

body #cource .cource-detail .gakushuu .gakushuu-box:last-of-type h2 {
  font-size: 38px;
  padding-top: 90px;
}

body #cource .cource-detail .gakushuu .gakushuu-box:last-of-type p {
  text-align: center;
}

body #cource .cource-detail .cource-hikaku {
  /*padding: 60px 0 0;
                @include media(sp) {
                    padding-top: 20px;
                }*/
}

body #cource .cource-detail .cource-hikaku table {
  /*border-collapse: collapse;
                    box-shadow: 0 3px 15px 1px rgba(0,0,0,0.16);
                    width: 100%;
                    text-align: center;*/
}

body #cource .cource-detail .cource-hikaku table tr th {
  /*width: 25%;
                            vertical-align: middle;
                            background-color: $thin-blue;
                            border-bottom: 3px solid $white;
                            font-size: 25px;
                            font-weight: bold;
                            color: $thin-black;
                            @include media(pc) {
                                font-size: 22px;
                            }
                            @include media(sp) {
                                font-size: 12px;
                                border-width: 1px;
                            }*/
}

body #cource .cource-detail .cource-hikaku table tr td {
  /*width: 37.5%;
                            vertical-align: middle;
                            background-color: $white;
                            font-size: 28px;
                            font-weight: bold;
                            padding: 25px 10px;
                            line-height: 1.25;
                            color: $thin-black;
                            border: {
                                bottom: 3px solid $thick-gray;
                                left: 3px solid $thick-gray;
                            }
                            @include media(pc) {
                                font-size: 24px;
                            }
                            @include media(sp) {
                                font-size: 12px;
                                border-width: 1px;
                            }
                            &:first-of-type {
                                border-left: none;
                            }
                            img {
                                @include media(pc) {
                                    height: 30px;
                                }
                            }*/
}

body #cource .cource-detail .cource-hikaku table tr small {
  /*font-size: 20px;
                            color: #707070;
                            font-weight: normal;
                            @include media(pc) {
                                font-size: 16px;
                            }
                            @include media(sp) {
                                font-size: 10px;
                            }*/
}

body #cource .cource-detail .cource-hikaku .cource-free {
  text-align: center;
  padding-top: 120px;
}

body #cource .cource-detail .cource-hikaku .cource-free ul > li {
  display: inline-block;
  margin-top: 35px;
}

body #cource .cource-detail .cource-hikaku .cource-free ul > li a {
  color: #fff;
  font-size: 31px;
  padding: 22px 85px;
  display: block;
  background-color: #325784;
  border-radius: 37px;
}

body #cource .cource-detail .cource-hikaku .cource-free ul > li a:hover {
  box-shadow: none;
  opacity: 0.75;
}

body .cource-pay__attention {
  color: red;
  font-size: 24px;
}

body .rensei__list--attention {
  font-size: 16px;
}

body #teacher {
  background-color: #fff;
  padding: 80px 0;
}

body #teacher .teacher-title {
  text-align: center;
}

body #teacher .teacher-min-title {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 60px;
}

body #teacher .teacher-min-title::before {
  position: absolute;
  top: 67%;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 4px;
  content: "";
  border-top: 4px solid #325784;
}

body #teacher .teacher-min-title .teacher-min-titleholder {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 60px;
  background-color: #fff;
}

body #teacher .teacher-min-title .teacher-min-titleholder h1 {
  font-size: 51px;
  color: #325784;
  line-height: 1.25;
  font-weight: bold;
  display: inline-block;
}

body #teacher .about-teacher {
  font-family: “Times New Roman”, “游明朝”, YuMincho, “ヒラギノ明朝 ProN W3”, “Hiragino Mincho ProN”, “HG明朝E”, “メイリオ”, Meiryo, serif;
}

body #teacher .about-teacher h2 {
  font-size: 35px;
  color: #325784;
  border-left: 10px solid #325784;
  padding-left: 25px;
}

body #teacher .about-teacher__img {
  width: 300px;
  padding-top: 30px;
}

body #teacher .about-teacher p {
  font-size: 20px;
  padding-top: 30px;
  line-height: 1.5;
  color: #3c3c3c;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

body #teacher .teacher-kotoba {
  font-family: “Times New Roman”, “游明朝”, YuMincho, “ヒラギノ明朝 ProN W3”, “Hiragino Mincho ProN”, “HG明朝E”, “メイリオ”, Meiryo, serif;
}

body #teacher .teacher-kotoba h2 {
  font-size: 50px;
  letter-spacing: 10px;
  padding-top: 80px;
  padding-bottom: 20px;
  font-weight: 700;
}

body #teacher .teacher-kotoba p {
  font-size: 20px;
  line-height: 1.5;
  padding-top: 20px;
  color: #3c3c3c;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

body #teacher .teacher-kotoba .underLine {
  text-decoration: underline;
}

body #teacher .teacher-kotoba strong {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  border-bottom: 7px solid #325784;
}

body #teacher .teacher-blog {
  text-align: left !important;
  margin-top: 40px;
}

body #teacher .teacher-blog ul li {
  background-color: #ebebeb;
  margin: 20px 0;
}

body #teacher .teacher-blog ul li a {
  padding: 20px;
  display: block;
}

body #teacher .teacher-blog ul li a::after {
  clear: both;
  display: block;
  content: "";
}

body #teacher .teacher-blog ul li a .eye_chatch {
  float: left;
  overflow: hidden;
  width: 25%;
  height: 200px;
}

body #teacher .teacher-blog ul li a .eye_chatch img {
  width: 100%;
  height: 100%;
}

body #teacher .teacher-blog ul li a .article {
  float: left;
  width: 75%;
  padding-left: 30px;
}

body #teacher .teacher-blog ul li a .article h2 {
  padding: 0 !important;
  font-size: 36px !important;
  font-weight: bold;
}

body #teacher .teacher-blog ul li a .article p {
  margin-top: 20px;
  font-size: 20px;
  color: #325784;
}

body #teacher .teacher-blog ul li a .article p:last-of-type {
  font-size: 16px;
}

body #teacher .teacher-sns {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  overflow: auto;
}

body #pay {
  background-color: #dbdbdb;
  padding: 80px 0;
}

body #pay .pay-title {
  text-align: center;
}

body #pay .about-pay {
  width: 80%;
  background-color: #fff;
  padding: 60px 80px;
  margin: 0 auto;
}

body #pay .about-pay p {
  font-size: 20px;
  line-height: 1.5;
}

body #pay .about-pay p small {
  font-size: 16px;
}

body #pay .about-pay ul {
  padding-top: 20px;
}

body #pay .about-pay ul li {
  font-size: 20px;
  font-weight: bold;
  padding-top: 20px;
}

body #form {
  padding: 80px 0;
}

body #form .form-titles {
  text-align: center;
}

body #form .form-titles img {
  margin: 50px 0;
  width: 95%;
}

body #form form table {
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 3px 15px 1px rgba(0, 0, 0, 0.16);
}

body #form form table tr:last-child th,
body #form form table tr:last-child td {
  border: none;
}

body #form form table tr th {
  padding-left: 26px;
  border-bottom: solid 1px #363636;
  font-size: 20px;
  color: #363636;
  font-weight: bold;
  background-color: #c6cbd5;
  text-align: left;
  width: 21%;
  vertical-align: middle;
}

body #form form table tr td {
  padding: 15px 0;
  padding-left: 25px;
  border-bottom: 1px solid #363636;
  font-size: 20px;
  color: #363636;
  background-color: #fff;
  width: 69%;
  vertical-align: middle;
}

body #form form table tr td input[type="radio"] {
  vertical-align: 25%;
}

body #form form table tr td input[type="text"] {
  height: 43px;
  font-size: 18px;
  padding-left: 5px;
}

body #form form table tr td input[type="date"] {
  width: min(200px, 100%);
  height: 43px;
  font-size: 18px;
  padding-left: 5px;
}

body #form form table tr.kibou-cource td {
  padding-top: 25px;
  padding-bottom: 25px;
}

body #form form table tr.kibou-cource td label {
  width: 100%;
  display: inline-block;
}

body #form form table tr.kibou-cource td label:not(:last-of-type) {
  margin-bottom: 10px;
}

body #form form table tr.kibou-cource td label input {
  margin-right: 15px;
}

body #form form table tr.shiboukou td label {
  display: block;
  margin-top: 10px;
}

body #form form table tr.shiboukou td input[name="shiboukou"] {
  margin-right: 30px;
  width: 300px;
}

body #form form table tr.shiboukou td input[name="gakubu"] {
  margin-left: 13px;
  width: 300px;
}

body #form form table tr.shiboukou td input[name="nyuushi-way"] {
  margin-left: 13px;
  width: 300px;
}

body #form form table tr.kakomon td {
  padding-top: 25px;
  padding-bottom: 25px;
}

body #form form table tr.kakomon td label {
  margin-right: 72px;
}

body #form form table tr.kakomon td label input {
  margin-right: 15px;
}

body #form form table tr.kibou-media td label {
  padding-right: 33px;
}

body #form form table tr.kibou-media td label input {
  margin-right: 15px;
}

body #form form table tr.kibou-media td input[type="text"] {
  margin-left: -20px;
  width: 200px;
}

body #form form table tr.questions td {
  padding-top: 25px;
  padding-bottom: 25px;
}

body #form form table tr.questions td textarea {
  width: 800px;
  height: 200px;
  font-size: 18px;
  padding-top: 3px;
  padding-left: 5px;
  padding-right: 5px;
  box-sizing: border-box;
}

body #form form .form-nextbutton {
  text-align: center;
  margin: 80px 0;
}

body #form form .form-nextbutton input[type="submit"] {
  padding: 15px 100px;
  font-size: 30px;
  color: #fff;
  background-color: #325784;
  border: none;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 3px 10px 3px rgba(0, 0, 0, 0.16);
}

body #form form .form-nextbutton input[type="submit"]:hover {
  box-shadow: none;
  opacity: 0.75;
}

body #form .theother-contact {
  text-align: center;
  padding: 50px 35px;
  border: 3px solid #325784;
}

body #form .theother-contact > p {
  font-size: 25px;
  line-height: 1.75;
  color: #325784;
  padding-bottom: 50px;
}

body #form .theother-contact .contact-way div {
  padding-right: 0;
}

body #form .theother-contact .contact-way div:not(:first-of-type) {
  margin-top: 40px;
}

body #form .theother-contact .contact-way div:nth-of-type(1) a::before {
  content: "";
  display: inline-block;
  height: 47px;
  width: 62px;
  margin-right: 10px;
  background: url(../images/form__img_mail.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

body #form .theother-contact .contact-way div a {
  color: #325784;
  font-size: 35px;
  font-weight: bold;
  text-decoration: underline;
  position: relative;
  word-break: break-all;
}

body #form .theother-contact .contact-way div a:first-of-type {
  padding-left: 76.88679px;
}

body #form .theother-contact .contact-way div a:last-of-type {
  padding-left: 74.08511px;
}

body #form .theother-contact .contact-way div img {
  max-width: 100%;
  width: 200px;
  height: auto;
}

body #footer {
  background-color: #325784;
  padding: 20px 0;
}

body #footer ul::after {
  clear: both;
  display: block;
  content: "";
}

body #footer ul li {
  font-size: 16px;
  color: #fff;
}

body #footer ul li:first-of-type {
  float: left;
}

body #footer ul li:first-of-type img {
  height: 30px;
}

body #footer ul li:last-of-type {
  float: right;
  margin-top: 18px;
}

body #footer ul li:last-of-type a {
  color: #fff;
  font-size: 12px;
  padding: 0 10px;
}

body #footer ul li:last-of-type a:first-of-type {
  padding-left: 0;
}

body #footer ul li:last-of-type a:last-of-type {
  display: none;
  border-left: 1px solid #fff;
  padding-right: 0;
}

body #footer .copyright {
  text-align: center;
  padding-top: 10px;
}

body #footer .copyright small {
  font-size: 9px;
  margin-top: 30px;
  color: #fff;
}

body #footer .since {
  font-size: 12px;
  text-align: center;
  color: #fff;
  font-family: “Times New Roman”, “游明朝”, YuMincho, “ヒラギノ明朝 ProN W3”, “Hiragino Mincho ProN”, “HG明朝E”, “メイリオ”, Meiryo, serif;
  margin-top: 20px;
}

body #fixedTop {
  right: 10px;
  bottom: 10px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  font-size: 19px;
  text-align: center;
  display: none;
  background: #325784;
  position: fixed;
  z-index: 9999;
  border-radius: 5px;
  transform: translateZ(0);
}

body #fixedTop:hover {
  color: white;
  background-color: #7089a9;
}

body #bottom-fixedTop {
  right: 10px;
  bottom: 110px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  font-size: 19px;
  text-align: center;
  display: none;
  background: #325784;
  position: fixed;
  z-index: 9999;
  border-radius: 5px;
  transform: translateZ(0);
}

body #bottom-fixedTop:hover {
  color: white;
  background-color: #7089a9;
}

@media screen and (max-width: 1279px) {
  .wrap {
    width: 960px;
  }
  .sectionTitle__checkIcon {
    height: 40px;
  }
  .sectionTitle__title {
    font-size: 45px;
  }
  .sectionTitle__smallText {
    font-size: 30px;
  }
  .cource-imgs__point-box--half {
    width: 100%;
  }
  .cource-hikaku__can-scroll {
    display: block;
  }
  .cource-free {
    padding-top: 60px;
  }
  .cource-free ul > li a {
    font-size: 25px;
    padding-left: 60px;
    padding-right: 60px;
  }
  body .wrap {
    width: 960px;
  }
  body .contents-title {
    font-size: 40px;
    padding: 15px 70px;
  }
  body #about .about-title .about-titleholder img {
    height: 40px;
  }
  body #about .about-title .about-titleholder h1 {
    font-size: 45px;
  }
  body #about .about-title .about-titleholder h1 small {
    font-size: 30px;
  }
  body #about .about1 h2 {
    font-size: 25px;
    background-size: 15%;
    padding-top: 60px;
    padding-bottom: 30px;
  }
  body #about .about1 p {
    font-size: 18px;
  }
  body #about .about2 h2 {
    font-size: 25px;
    background-size: 30%;
    padding-top: 40px;
    padding-bottom: 15px;
  }
  body #about .about2 p {
    font-size: 18px;
  }
  body #about .sarani .sarani-yoko div {
    font-size: 25px;
    padding-left: 15px;
    padding-right: 5px;
  }
  body #about .sarani h2 {
    font-size: 25px;
  }
  body #about .sarani p {
    font-size: 18px;
    padding-top: 10px;
  }
  body #about .sarani a {
    font-size: 22px;
  }
  body #about .about3 h2 {
    font-size: 25px;
    background-size: 15%;
    padding-top: 60px;
    padding-bottom: 35px;
  }
  body #about .about3 p {
    font-size: 18px;
  }
  body #about .about4 h2 {
    font-size: 25px;
    background-size: 20%;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  body #about .about4 p {
    font-size: 18px;
  }
  body #about .about5 h2 {
    font-size: 25px;
    background-size: 20%;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  body #about .about5 p {
    font-size: 18px;
  }
  body #about .about6 h2 {
    font-size: 25px;
    background-size: 20%;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  body #about .about6 p {
    font-size: 18px;
  }
  body #about .about6 h2 {
    padding-top: 30px;
  }
  body #about .about7 h2 {
    font-size: 25px;
    background-size: 20%;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  body #about .about7 p {
    font-size: 18px;
  }
  body #taishou .taishou-title .taishou-titleholder img {
    width: 17%;
  }
  body #taishou .taishou-title .taishou-titleholder h1 {
    font-size: 45px;
  }
  body #taishou .taishou-title .taishou-titleholder h1 small {
    font-size: 30px;
  }
  body #taishou ul {
    width: 66%;
  }
  body #taishou ul li {
    font-size: 25px;
  }
  body #taishou .taishou-p {
    width: 68%;
  }
  body #taishou .taishou-p p {
    font-size: 25px;
  }
  body #cource .cource-detail .cource-min-title::before {
    top: 72%;
  }
  body #cource .cource-detail .cource-min-title .cource-min-titleholder {
    padding: 0 30px;
  }
  body #cource .cource-detail .cource-min-title .cource-min-titleholder img {
    height: 30px;
  }
  body #cource .cource-detail .cource-min-title .cource-min-titleholder h1 {
    font-size: 35px;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box > img:nth-of-type(2) {
    margin-top: -40px;
    width: 30%;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box > h2 {
    font-size: 23px;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box .rensei-only img {
    top: 0;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box .rensei-only p {
    font-size: 18px;
    width: 87%;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box > p {
    font-size: 16px;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box:last-of-type h2 {
    font-size: 34px;
  }
  body #cource .cource-detail .cource-hikaku .cource-free {
    padding-top: 80px;
  }
  body #cource .cource-detail .cource-hikaku .cource-free ul > li a {
    font-size: 25px;
    padding-left: 60px;
    padding-right: 60px;
  }
  body #teacher .teacher-min-title::before {
    top: 76%;
  }
  body #teacher .teacher-min-title .teacher-min-titleholder {
    padding: 0 30px;
  }
  body #teacher .teacher-min-title .teacher-min-titleholder img {
    height: 30px;
  }
  body #teacher .teacher-min-title .teacher-min-titleholder h1 {
    font-size: 35px;
  }
  body #teacher .about-teacher h2 {
    font-size: 30px;
  }
  body #teacher .about-teacher p {
    padding-top: 15px;
    font-size: 16px;
  }
  body #teacher .teacher-kotoba h2 {
    font-size: 40px;
    padding-top: 50px;
    padding-bottom: 10px;
  }
  body #teacher .teacher-kotoba p {
    font-size: 16px;
  }
  body #teacher .teacher-kotoba strong {
    font-size: 20px;
    border-width: 5px;
  }
  body #teacher .teacher-blog {
    margin-top: 40px;
  }
  body #teacher .teacher-blog ul li a .eye_chatch {
    height: 150px;
  }
  body #teacher .teacher-blog ul li a .article h2 {
    font-size: 30px !important;
  }
  body #teacher .teacher-blog ul li a .article p {
    font-size: 16px;
  }
  body #teacher .teacher-blog ul li a .article p:last-of-type {
    font-size: 12px;
  }
  body #pay .about-pay p {
    font-size: 16px;
  }
  body #pay .about-pay p small {
    font-size: 13px;
  }
  body #pay .about-pay ul li {
    font-size: 16px;
  }
  body #form form table tr th {
    width: 23%;
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }
  body #form form table tr td {
    width: 77%;
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }
  body #form form table tr td input[type="text"] {
    height: 30px;
    font-size: 15px;
  }
  body #form form table tr td input[type="date"] {
    height: 30px;
    font-size: 15px;
  }
  body #form form table tr.kibou-cource td {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  body #form form table tr.kibou-cource td label input {
    margin-right: 10px;
  }
  body #form form table tr.shiboukou td input[name="shiboukou"] {
    margin-right: 20px;
    width: 35%;
  }
  body #form form table tr.shiboukou td input[name="gakubu"] {
    margin-left: 8px;
    width: 35%;
  }
  body #form form table tr.shiboukou td input[name="nyuushi-way"] {
    margin-left: 8px;
    width: 35%;
  }
  body #form form table tr.kakomon td {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  body #form form table tr.kakomon td label {
    margin-right: 40px;
  }
  body #form form table tr.kakomon td label input {
    margin-right: 10px;
  }
  body #form form table tr.kibou-media td label {
    padding-right: 25px;
  }
  body #form form table tr.kibou-media td label input {
    margin-right: 10px;
  }
  body #form form table tr.kibou-media td input[type="text"] {
    width: 25%;
  }
  body #form form table tr.questions td {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  body #form form table tr.questions td textarea {
    width: 100%;
    height: 150px;
  }
  body #form form .form-nextbutton input[type="submit"] {
    padding: 10px 80px;
    font-size: 26px;
  }
  body #form .theother-contact > p {
    font-size: 20px;
  }
  body #form .theother-contact .contact-way div {
    padding-right: 0;
  }
  body #form .theother-contact .contact-way div:nth-of-type(1) a::before {
    height: 41px;
    width: 54.08511px;
  }
  body #form .theother-contact .contact-way div a {
    font-size: 28px;
  }
}

@media screen and (max-width: 1023px) {
  .wrap {
    width: 100%;
    padding: 0 20px;
  }
  .document {
    padding: 50px 0;
  }
  .document__overview {
    margin-top: 30px;
  }
  .document__text, .document__item {
    font-size: 20px;
  }
  .document__text, .document__list {
    margin-top: 15px;
  }
  .document__descriptionNumberBox {
    width: 90px;
    height: 90px;
  }
  .document__descriptionNumberText {
    font-size: 12px;
  }
  .document__descriptionNumber {
    font-size: 30px;
  }
  .document__descriptionTitle {
    font-size: 20px;
  }
  .document__descriptionText {
    font-size: 20px;
    margin-top: 20px;
  }
  .cource-txts__ttl {
    font-size: 30px;
  }
  .cource-txts__ttl--small {
    font-size: 24px;
  }
  .cource-txts__h3-ttl {
    font-size: 20px;
  }
  .cource-txts__h3-txt {
    font-size: 16px;
  }
  .cource-txts__item {
    font-size: 16px;
  }
  .cource-txts__item::before {
    font-size: 16px;
  }
  .cource-txts__charge {
    font-size: 40px;
  }
  .cource-txts__charge--attention {
    font-size: 16px;
  }
  .cource-txts__charge--remarks {
    font-size: 14px;
  }
  .cource-txts__chargeAfter {
    font-size: 20px;
  }
  .cource-txts__chargeAnnotation {
    font-size: 14px;
    margin-top: 8px;
  }
  .cource-txts__discountBefore {
    font-size: 24px;
  }
  .cource-txts__discountAfter {
    padding-top: 20px;
  }
  .cource-txts__discountAfter::before {
    top: 10px;
    left: 10px;
    width: 10px;
    height: 10px;
  }
  .cource-txts__waribiki-link {
    margin-top: 20px;
  }
  .cource-imgs__sokushuu-img {
    width: 60%;
  }
  .cource-imgs__point-txt {
    font-size: 16px;
  }
  .cource-imgs__txt {
    font-size: 16px;
  }
  .cource-free img {
    width: 70%;
  }
  body .wrap {
    width: 100%;
    padding: 0 20px;
  }
  body .contents-title {
    margin-bottom: 30px;
  }
  body #about {
    padding: 50px 0;
  }
  body #about .about1 {
    padding: 30px 50px;
  }
  body #about .about1 h2 {
    padding-right: 5px;
    font-size: 23px;
    background-size: 17%;
  }
  body #about .about1 img {
    padding: 0;
  }
  body #about .about1 p {
    width: 100%;
    padding-right: 0;
  }
  body #about .about2 {
    padding: 30px 50px 20px;
  }
  body #about .about2 h2 {
    padding-left: 5px;
    font-size: 23px;
    background-size: 36%;
  }
  body #about .about2 img {
    padding: 0;
  }
  body #about .about2 p {
    width: 100%;
    padding-left: 0;
  }
  body #about .sarani {
    padding: 20px 50px 30px;
  }
  body #about .sarani h2 {
    width: 65%;
    padding-right: 5px;
    font-size: 23px;
    background-size: 36%;
  }
  body #about .sarani img {
    width: 35%;
    padding: 0;
  }
  body #about .sarani p {
    width: 100%;
    padding-right: 0;
  }
  body #about .about3 {
    padding: 30px 50px;
  }
  body #about .about3 h2 {
    padding-right: 5px;
    font-size: 23px;
    background-size: 21%;
  }
  body #about .about3 img {
    padding: 0;
  }
  body #about .about3 p {
    width: 100%;
    padding-right: 0;
  }
  body #about .about4 {
    padding-left: 50px;
    padding-right: 25px;
  }
  body #about .about4 h2 {
    padding-right: 5px;
    font-size: 23px;
    background-size: 17%;
    padding-left: 20px;
    letter-spacing: 3px;
  }
  body #about .about5 {
    padding-left: 25px;
    padding-right: 50px;
  }
  body #about .about5 h2 {
    padding-right: 5px;
    font-size: 23px;
    background-size: 17%;
    padding-right: 20px;
    letter-spacing: 3px;
  }
  body #about .about6 {
    padding-left: 50px;
    padding-right: 25px;
  }
  body #about .about6 h2 {
    padding-right: 5px;
    font-size: 23px;
    background-size: 17%;
    padding-left: 20px;
    letter-spacing: 3px;
  }
  body #about .about7 {
    padding-left: 25px;
    padding-right: 50px;
  }
  body #about .about7 h2 {
    padding-right: 5px;
    font-size: 23px;
    background-size: 17%;
    padding-right: 20px;
    letter-spacing: 3px;
  }
  body #taishou {
    padding-bottom: 50px;
  }
  body #taishou ul {
    width: 86%;
  }
  body #taishou .taishou-p {
    width: 100%;
  }
  body #cource {
    padding: 50px 0;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box {
    width: 47.5%;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box .rensei-only img {
    top: -9px;
  }
  body #cource .cource-detail .cource-hikaku .cource-free img {
    width: 70%;
  }
  body #teacher {
    padding: 50px 0;
  }
  body #teacher .about-teacher__img {
    padding-top: 15px;
  }
  body #teacher .teacher-blog {
    margin-top: 40px;
  }
  body #teacher .teacher-blog ul li a .eye_chatch {
    height: 125px;
  }
  body #teacher .teacher-blog ul li a .article p {
    margin-top: 10px;
  }
  body #pay {
    padding: 50px 0;
  }
  body #form {
    padding: 50px 0;
  }
  body #form form table tr.kibou-cource td label input {
    margin-right: 5px;
  }
  body #form .theother-contact {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  body #form .theother-contact > p {
    padding-bottom: 25px;
  }
}

@media screen and (max-width: 750px) {
  .wrap {
    width: 100%;
  }
  .sectionTitle::before {
    display: none;
  }
  .sectionTitle::after {
    display: none;
  }
  .sectionTitle__checkIcon {
    height: 26px;
  }
  .sectionTitle__title {
    font-size: 22px;
  }
  .sectionTitle__smallText {
    font-size: 18px;
  }
  .document__text, .document__item {
    font-size: 16px;
  }
  .document__contents {
    margin-top: 40px;
  }
  .document__descriptionBox, .document__imagesBox {
    width: 100%;
  }
  .document__descriptionText {
    font-size: 16px;
  }
  .document__imageBox {
    margin-top: 20px;
  }
  .cource-box {
    flex-direction: column;
    padding: 30px 0;
  }
  .cource-txts__ttl {
    border-bottom: 5px solid #325784;
    display: block;
  }
  .cource-imgs {
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
  }
  .cource-imgs__icon-image {
    width: 150px;
  }
  .cource-imgs__txt {
    font-size: 20px;
    margin: 30px 0 0;
  }
  .cource-hikaku {
    margin-top: 20px;
  }
  .cource-hikaku__body-th, .cource-hikaku__body-td {
    padding: 10px;
    font-size: 14px;
  }
  .cource-hikaku__body-td--attention {
    font-size: 10px;
  }
  .cource-hikaku__body-td--remarks {
    font-size: 10px;
  }
  .cource-hikaku__have-kakomon {
    font-size: 10px;
  }
  .cource-hikaku__can-scroll {
    font-size: 14px;
  }
  .cource-free {
    padding-top: 30px;
  }
  .cource-free img {
    width: 100%;
  }
  .cource-free ul > li a {
    font-size: 18px;
    padding: 20px 30px;
  }
  .cource-free__link-txt--attention {
    font-size: 12px;
    margin-top: 10px !important;
  }
  .goukaku {
    padding: 30px 0;
  }
  .goukaku__saishin {
    padding: 10px 15px;
    font-size: 16px;
  }
  .goukaku__content-box:not(:first-of-type) {
    margin-bottom: 30px;
  }
  .goukaku__content-box {
    padding: 15px 15px 40px;
  }
  .goukaku__data-box {
    padding: 10px 15px 10px 15px;
    transform: translateX(calc(-15px - 10px));
  }
  .goukaku__data-box::before {
    border-width: 0 10px 7.5px 0;
  }
  .goukaku__data-box::after {
    left: calc(100% - 5px);
    width: 40px;
  }
  .goukaku__data-ttl {
    font-size: 20px;
    line-height: 1.5;
  }
  .goukaku__data-ttl--small {
    font-size: 16px;
    margin-top: 5px;
  }
  .goukaku__honbun-list {
    margin-top: 20px;
  }
  .goukaku__honbun-ttl {
    font-size: 20px;
    line-height: 1.5;
  }
  .goukaku__honbun-txt {
    font-size: 14px;
    margin-top: 10px;
  }
  .campaignBanner {
    padding: 50px 0;
  }
  .fixed-cta {
    height: 84px;
  }
  .fixed-cta__text {
    font-size: 12px;
  }
  .fixed-cta__box {
    -moz-column-gap: 6px;
         column-gap: 6px;
  }
  .fixed-cta__link {
    width: auto;
    padding: 0 16px;
    font-size: 12px;
    height: 36px;
  }
  body .wrap {
    width: 100%;
  }
  body .contents-title {
    font-size: 22px;
    padding: 15px 30px;
  }
  body .contents-title + p {
    font-size: 20px;
  }
  body #header {
    display: none;
  }
  body #sp-header {
    display: block;
  }
  body #about .about-title::before {
    display: none;
  }
  body #about .about-title .about-titleholder img {
    height: 26px;
  }
  body #about .about-title .about-titleholder h1 {
    font-size: 22px;
  }
  body #about .about-title .about-titleholder h1 small {
    font-size: 18px;
  }
  body #about .about1 {
    padding: 30px 0;
  }
  body #about .about1 h2 {
    font-size: 20px;
    background-size: 47px;
    padding-top: 40px;
    padding-bottom: 20px;
    line-height: 1.5;
  }
  body #about .about1 p {
    font-size: 16px;
  }
  body #about .about2 {
    padding: 30px 0;
  }
  body #about .about2 h2 {
    font-size: 20px;
    background-size: 100px;
    padding-top: 30px;
    padding-bottom: 20px;
  }
  body #about .about2 h2 br {
    display: none;
  }
  body #about .about2 img {
    padding-top: 20px;
  }
  body #about .about2 p {
    font-size: 16px;
  }
  body #about .sarani {
    padding: 30px 0;
  }
  body #about .sarani h2 {
    font-size: 20px;
  }
  body #about .sarani h2 br {
    display: none;
  }
  body #about .sarani p {
    font-size: 16px;
  }
  body #about .sarani a {
    font-size: 20px;
    letter-spacing: 2px;
  }
  body #about .about3 {
    padding: 30px 0;
  }
  body #about .about3 h2 {
    font-size: 20px;
    background-size: 60px;
    padding-top: 40px;
    padding-bottom: 15px;
    line-height: 1.5;
  }
  body #about .about3 p {
    font-size: 16px;
  }
  body #about .about4 {
    padding-left: 0;
    padding-right: 10px;
  }
  body #about .about4 h2 {
    font-size: 20px;
    background-size: 47px;
    padding-top: 40px;
    padding-bottom: 15px;
    padding-left: 10px;
    line-height: 1.5;
  }
  body #about .about4 img {
    width: 100%;
    height: auto;
  }
  body #about .about4 p {
    font-size: 16px;
  }
  body #about .about5 {
    padding-left: 10px;
    padding-right: 0;
  }
  body #about .about5 h2 {
    font-size: 20px;
    background-size: 47px;
    padding-top: 40px;
    padding-bottom: 15px;
    padding-right: 10px;
    text-align: left;
    line-height: 1.5;
  }
  body #about .about5 img {
    width: 100%;
    height: auto;
  }
  body #about .about5 p {
    font-size: 16px;
  }
  body #about .about6 {
    padding-left: 0;
    padding-right: 10px;
  }
  body #about .about6 h2 {
    font-size: 20px;
    background-size: 47px;
    padding-top: 40px;
    padding-bottom: 15px;
    padding-left: 10px;
    line-height: 1.5;
  }
  body #about .about6 img {
    width: 100%;
    height: auto;
  }
  body #about .about6 p {
    font-size: 16px;
  }
  body #about .about6 {
    margin-bottom: 0;
  }
  body #about .about6 h2 br {
    display: none;
  }
  body #about .about7 {
    padding-left: 10px;
    padding-right: 0;
  }
  body #about .about7 h2 {
    font-size: 20px;
    background-size: 47px;
    padding-top: 40px;
    padding-bottom: 15px;
    padding-right: 10px;
    text-align: left;
    line-height: 1.5;
  }
  body #about .about7 img {
    width: 100%;
    height: auto;
  }
  body #about .about7 p {
    font-size: 16px;
  }
  body #about .about7 {
    margin-bottom: 0;
  }
  body #cource .cource-detail .cource-min-title {
    padding-top: 30px;
  }
  body #cource .cource-detail .cource-min-title:first-of-type {
    padding-top: 0;
  }
  body #cource .cource-detail .cource-min-title::before {
    display: none;
  }
  body #cource .cource-detail .cource-min-title .cource-min-titleholder {
    padding: 0 15px;
  }
  body #cource .cource-detail .cource-min-title .cource-min-titleholder img {
    height: 26px;
  }
  body #cource .cource-detail .cource-min-title .cource-min-titleholder h1 {
    font-size: 21px;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box {
    width: 100%;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box:first-of-type {
    margin-top: 0;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box > h2 {
    font-size: 18px;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box .rensei-only p {
    font-size: 16px;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box > p {
    font-size: 14px;
  }
  body #cource .cource-detail .gakushuu .gakushuu-box:last-of-type h2 {
    padding-top: 50px;
  }
  body #cource .cource-detail .cource-hikaku .cource-free {
    padding-top: 30px;
  }
  body #cource .cource-detail .cource-hikaku .cource-free img {
    width: 100%;
  }
  body #cource .cource-detail .cource-hikaku .cource-free ul > li a {
    font-size: 18px;
    padding: 20px 30px;
  }
  body .cource-pay__attention {
    font-size: 16px;
  }
  body .rensei__list--attention {
    font-size: 14px;
  }
  body #teacher .teacher-min-title {
    padding-top: 40px;
  }
  body #teacher .teacher-min-title::before {
    display: none;
  }
  body #teacher .teacher-min-title .teacher-min-titleholder {
    padding: 0 15px;
  }
  body #teacher .teacher-min-title .teacher-min-titleholder img {
    height: 26px;
  }
  body #teacher .teacher-min-title .teacher-min-titleholder h1 {
    font-size: 21px;
  }
  body #teacher .about-teacher h2 {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    border-width: 5px;
    font-size: 18px;
  }
  body #teacher .about-teacher__img {
    width: 100%;
  }
  body #teacher .about-teacher p {
    font-size: 14px;
  }
  body #teacher .teacher-kotoba h2 {
    font-size: 20px;
    letter-spacing: 3.9px;
    padding-top: 30px;
    padding-bottom: 0;
  }
  body #teacher .teacher-kotoba p {
    font-size: 14px;
    padding-top: 15px;
  }
  body #teacher .teacher-kotoba strong {
    font-size: 18px;
  }
  body #teacher .teacher-blog {
    margin-top: 10px;
  }
  body #teacher .teacher-blog ul li a .eye_chatch {
    float: none;
    width: 100%;
    height: auto;
  }
  body #teacher .teacher-blog ul li a .article {
    float: none;
    width: 100%;
    padding-left: 0;
  }
  body #teacher .teacher-blog ul li a .article h2 {
    font-size: 18px !important;
    margin-top: 20px;
  }
  body #teacher .teacher-blog ul li a .article p {
    font-size: 14px;
  }
  body #teacher .teacher-blog ul li a .article p:last-of-type {
    font-size: 9px;
  }
  body #teacher .teacher-sns {
    width: 100%;
    margin-top: 20px;
  }
  body #pay .about-pay {
    padding: 30px 20px;
    width: 100%;
  }
  body #pay .about-pay ul {
    padding-top: 10px;
  }
  body #pay .about-pay ul li {
    padding-top: 10px;
  }
  body #form .form-titles img {
    margin: 20px 0 30px;
    width: 100%;
  }
  body #form form table tr th {
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
    width: 30%;
  }
  body #form form table tr td {
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
    width: 70%;
  }
  body #form form table tr td input[type="radio"] {
    vertical-align: 10%;
  }
  body #form form table tr td input[type="text"] {
    height: 25px;
    font-size: 12px;
  }
  body #form form table tr td input[type="date"] {
    height: 25px;
    font-size: 12px;
  }
  body #form form table tr.kibou-cource td label {
    line-height: 1.25;
  }
  body #form form table tr.kibou-cource td label:not(:last-of-type) {
    margin-bottom: 5px;
  }
  body #form form table tr.shiboukou td label {
    margin-top: 0;
  }
  body #form form table tr.shiboukou td input[name="shiboukou"] {
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
  }
  body #form form table tr.shiboukou td input[name="gakubu"] {
    margin-top: 5px;
    width: 50%;
  }
  body #form form table tr.shiboukou td input[name="nyuushi-way"] {
    margin-top: 5px;
    width: 50%;
  }
  body #form form table tr.kakomon td label {
    margin-right: 10px;
  }
  body #form form table tr.kakomon td label input {
    margin-right: 5px;
  }
  body #form form table tr.kibou-media td label {
    display: inline-block;
    width: 100%;
  }
  body #form form table tr.kibou-media td label:nth-of-type(n + 2) {
    margin-top: 5px;
  }
  body #form form table tr.kibou-media td label:last-of-type {
    width: 100px;
  }
  body #form form table tr.kibou-media td input[type="text"] {
    width: 50%;
  }
  body #form form .form-nextbutton {
    margin: 40px 0 60px;
  }
  body #form form .form-nextbutton input[type="submit"] {
    padding: 8px 26px;
    font-size: 18px;
  }
  body #form .theother-contact {
    padding: 20px 10px;
  }
  body #form .theother-contact > p {
    font-size: 14px;
    padding-bottom: 10px;
  }
  body #form .theother-contact > p br {
    display: none;
  }
  body #form .theother-contact .contact-way div {
    padding-right: 0;
  }
  body #form .theother-contact .contact-way div:not(:first-of-type) {
    margin-top: 20px;
  }
  body #form .theother-contact .contact-way div:nth-of-type(1) a::before {
    height: 24px;
    width: 30.33962px;
    margin-right: 5px;
  }
  body #form .theother-contact .contact-way div a:first-of-type {
    padding-left: 40.33962px;
  }
  body #form .theother-contact .contact-way div a:last-of-type {
    padding-left: 40.33962px;
  }
  body #form .theother-contact .contact-way div a {
    font-size: 14px;
  }
  body #footer ul li:first-of-type {
    float: none;
    text-align: center;
  }
  body #footer ul li:first-of-type img {
    height: 25px;
  }
  body #footer ul li:last-of-type {
    float: none;
    text-align: center;
    margin: 10px 0;
  }
  body #footer ul li:last-of-type a {
    font-size: 11px;
  }
  body #footer .copyright {
    padding-top: 0;
  }
  body #bottom-fixedTop {
    bottom: 130px;
  }
}

@media (any-hover) {
  .course-exist__link:hover {
    opacity: 0.75;
  }
  .fixed-cta__link:hover {
    --_opacity: 80%;
  }
  body #header .header-wrap .header-taiken:hover {
    opacity: 0.75;
  }
}

@media (hover) {
  .cource-txts__waribiki-link:hover {
    opacity: 0.7;
  }
  .campaignBanner__link:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 1921px) {
  body #header {
    background-size: cover;
  }
}
/*# sourceMappingURL=../sourcemaps/style.css.map */
