@charset "UTF-8";
body {
  font-size: 16px;
  color: #1B224C;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

a {
  color: #1B224C;
  font-size: 16px;
  text-decoration: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ol {
  margin: 0;
}

dd {
  margin: 0;
}

h1, h2, h3, h4 {
  margin: 0;
}

p {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  display: block;
}

button {
  padding: 0;
}

figure {
  margin: 0;
}

blockquote {
  margin: 0;
}

.js-fadeIn {
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.js-fadeIn.is-inview {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.js-fadeUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.js-fadeUp.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.js-fadeDown {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.js-fadeDown.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.js-fadeToLeft {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.js-fadeToLeft.is-inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.js-fadeToRight {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.js-fadeToRight.is-inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  background-color: #fff;
}
.header .header__inner {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .btn--primary {
  margin-right: 10px;
  margin-left: 23px;
}
@media print, screen and (max-width: 1024px) {
  .header .btn--primary {
    margin-left: 15px;
    margin-right: 60px;
  }
}
@media print, screen and (max-width: 599px) {
  .header .btn--primary {
    display: none;
  }
}
@media print, screen and (max-width: 1024px) {
  .header .btn--contact {
    margin-right: 55px;
  }
}
@media print, screen and (max-width: 599px) {
  .header .btn--contact {
    display: none;
  }
}
.header .school__info {
  margin-left: auto;
}
@media print, screen and (max-width: 599px) {
  .header .school__info {
    display: none;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 135px;
}
@media print, screen and (max-width: 1024px) {
  .header__logo {
    margin-right: 15px;
  }
}
@media print, screen and (max-width: 599px) {
  .header__logo {
    height: 60px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 1024px) {
  .header__nav {
    position: fixed;
    width: 100%;
    top: 90px;
    left: 0;
    text-align: center;
    padding-bottom: 50px;
    background-color: rgba(0, 0, 0, .8);
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header__nav.--open {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (max-width: 1024px) {
  .header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header__list .header__item {
  margin-left: 30px;
}
@media print, screen and (max-width: 1024px) {
  .header__list .header__item {
    margin-left: 0;
    margin-top: 30px;
  }
}
.header__list .header__link {
  font-weight: bold;
  -webkit-transition: 0.2;
  transition: 0.2;
}
@media print, screen and (max-width: 1024px) {
  .header__list .header__link {
    font-size: 26px;
    color: #fff;
  }
}

.main {
  padding-top: 90px;
}

.container {
  max-width: 900px;
  width: 90%;
  margin: auto;
}

.footer {
  background-color: #060606;
}
.footer .footer__inner {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding-top: 35px;
  padding-bottom: 70px;
}
@media print, screen and (max-width: 1024px) {
  .footer .footer__inner {
    padding-bottom: 40px;
  }
}
.footer .school__info__tel {
  margin-top: 25px;
  margin-bottom: 10px;
}
@media print, screen and (max-width: 599px) {
  .footer .school__info__tel {
    margin-top: 15px;
  }
}

.footer__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (max-width: 599px) {
  .footer__cont {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.footer__nav {
  margin-top: 10px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (max-width: 599px) {
  .footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__item {
  font-weight: bold;
}
.footer__item:nth-child(n+2) {
  margin-left: 43px;
  position: relative;
}
@media print, screen and (max-width: 1024px) {
  .footer__item:nth-child(n+2) {
    margin-left: 30px;
  }
}
@media print, screen and (max-width: 599px) {
  .footer__item:nth-child(n+2) {
    margin-top: 20px;
    margin-left: 0;
  }
}
.footer__item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #fff;
}
@media print, screen and (max-width: 1024px) {
  .footer__item:nth-child(n+2)::before {
    left: -15px;
  }
}
@media print, screen and (max-width: 599px) {
  .footer__item:nth-child(n+2)::before {
    display: none;
  }
}

.footer__logo {
  background-color: #fff;
  width: 200px;
  padding: 14px 19px 13px 19px;
}
@media print, screen and (max-width: 1024px) {
  .footer__logo {
    width: 150px;
  }
}

.footer__copyright {
  background-color: #060606;
  text-align: right;
  font-size: 12px;
  padding: 12px 0;
  color: #fff;
}

.article-cont {
  margin-top: 60px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (max-width: 599px) {
  .article-cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.article {
  width: 65%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media print, screen and (max-width: 599px) {
  .article {
    width: 100%;
  }
}

.article-header .badge {
  padding: 10px 20px;
}
.article-header .article-header__title {
  font-size: 30px;
  margin-top: 30px;
}
.article-header .ariticle-header__info {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.article-header .addtoany_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: baseline;
}
.article-header .sns-btn + li {
  margin-left: 10px;
}
.article-header .article-header__date {
  margin-left: auto;
}
.article-header .article-header__image {
  margin-top: 20px;
}

.single-cont {
  padding-top: 40px;
  padding-bottom: 60px;
}
.single-cont p {
  padding-top: 30px;
  padding-bottom: 30px;
}
.single-cont h3 {
  padding-left: 10px;
  position: relative;
}
.single-cont h3::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 28px;
  background-color: #1B224C;
  display: block;
  top: 0;
  left: 0;
}
.single-cont blockquote {
  position: relative;
  padding: 10px 15px 10px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
}
.single-cont blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}
.single-cont blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
.single-cont blockquote:before {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 15px;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  color: #cfcfcf;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}
.single-cont figure {
  margin-top: 30px;
}
.single-cont ul {
  margin-top: 20px;
  margin-bottom: 40px;
}
.single-cont li {
  position: relative;
  padding-left: 1em;
}
.single-cont li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #f08300;
}
.single-cont a {
  text-decoration: underline;
  color: #f08300;
}

.article-footer__title {
  font-size: 26px;
  margin-bottom: 20px;
}

.reccomend-blog__item:nth-child(n+2) {
  margin-top: 30px;
}
.reccomend-blog__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media print, screen and (max-width: 1024px) {
  .reccomend-blog__item-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.reccomend-blog__item-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 10px;
}
.reccomend-blog__item-title {
  text-decoration: underline;
}
@media print, screen and (max-width: 1024px) {
  .reccomend-blog__item-date {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.reccomend-blog__item-image {
  aspect-ratio: 210/140;
}
.reccomend-blog__item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 210px;
}
@media print, screen and (max-width: 1024px) {
  .reccomend-blog__item-image img {
    width: 100%;
  }
}

.page-blog {
  padding-top: 60px;
}
.page-blog__top {
  background-image: url(../../assets/image/blog-top.jpg);
  height: 40vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.page-blog__top-title {
  font-size: 34px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: bold;
}
.page-blog__body {
  background-color: #1c1c24;
  padding-top: 60px;
  padding-bottom: 40px;
}
.page-blog__list {
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  -webkit-column-gap: 3%;
     -moz-column-gap: 3%;
          column-gap: 3%;
  row-gap: 3%;
}
.page-blog__item {
  border: 1px solid #C3C3C3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
.page-blog__item:hover {
  opacity: 0.5;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.page-blog__item-badge {
  background-color: #f08300;
  padding: 0.5em;
  position: absolute;
  top: 0;
  left: 0;
}
.page-blog__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  color: #fff;
}
.page-blog__item-cont {
  padding: 1em;
}
.page-blog__item-title {
  margin-top: 10px;
}
.page-blog__item-text {
  margin-top: 10px;
}
.page-blog__item-image {
  aspect-ratio: 300/200;
}
.page-blog__item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination li a, .pagination li span {
  border: 1px solid #f08300;
  color: #f08300;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination li:nth-child(n+2) {
  margin-left: 30px;
}
.pagination .current {
  background-color: #f08300;
  color: #fff;
}
.pagination .dots {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
}

aside {
  width: 30%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media print, screen and (max-width: 599px) {
  aside {
    width: 100%;
    margin-top: 70px;
  }
}
aside .related .aside-blog__list {
  margin-top: 30px;
  margin-bottom: 50px;
}
aside .related .aside-blog__list .blog__item + li {
  margin-top: 47px;
}
aside .related .aside-blog__list .blog__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-decoration: underline;
}
aside .related .aside-blog__list .blog__item__image img {
  width: 100px;
}
aside .category ul {
  margin-top: 30px;
}
@media print, screen and (max-width: 599px) {
  aside .category ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
aside .category li {
  font-weight: bold;
  padding-left: 1em;
  position: relative;
}
@media print, screen and (max-width: 599px) {
  aside .category li {
    width: 50%;
  }
}
aside .category li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 1%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #1B224C;
}
aside .category li + li {
  margin-top: 15px;
}
@media print, screen and (max-width: 599px) {
  aside .category li + li {
    margin-top: 0;
  }
}

.page-news {
  padding-top: 50px;
}
.page-news__top {
  background-image: url(../../assets/image/news-top.webp);
  height: 40vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-news__top::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .3);
}
.page-news__body {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: #060606;
}
.page-news__title {
  font-size: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: bold;
}
.page-news__list {
  padding-top: 50px;
  padding-bottom: 40px;
}
.page-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #C3C3C3;
}
.page-news__item:first-child {
  border-top: 1px solid #C3C3C3;
}
@media print, screen and (max-width: 599px) {
  .page-news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page-news__item-date {
  color: #fff;
  margin-right: 50px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 599px) {
  .page-news__item-date {
    margin-bottom: 20px;
  }
}
.page-news__item-link {
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-decoration: underline;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.page-news__item-link:hover {
  letter-spacing: 0.03em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.news-single-cont .article {
  width: 100%;
}
.news-single-cont .article-header__title {
  font-size: 28px;
  margin-top: 60px;
}
.news-single-cont .article-header__date {
  margin-top: 35px;
  text-align: right;
}

.btn {
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  padding: 18px 10px;
}

.btn--md {
  width: 140px;
  border-radius: 5px;
}
@media print, screen and (max-width: 1024px) {
  .btn--md {
    width: 110px;
  }
}

.btn--primary {
  background-color: #f08300;
}

.btn--contact {
  background-color: #1B224C;
}

.btn--rounded {
  border-radius: 31px;
}

.btn--submit {
  background-color: #f08300;
  border-radius: 5px;
  width: 200px;
  border: none;
  cursor: pointer;
}

.--l {
  width: 260px;
}

.--xl {
  width: 280px;
}

.cta-area__btn--rounded {
  border: 1px solid #fff;
  width: 200px;
  border-radius: 30px;
  padding: 15px 10px;
  background-color: #fff;
  color: #1B224C;
}

.hg-btn {
  display: none;
}
@media print, screen and (max-width: 1024px) {
  .hg-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40px;
    height: 30px;
    padding: 0;
    position: fixed;
    top: 30px;
    right: 15px;
    background: transparent;
    border: none;
  }
  .hg-btn:hover {
    cursor: pointer;
  }
  .hg-btn.--open {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .hg-btn .hg-line {
    display: block;
    height: 4px;
    width: 100%;
    background-color: #1B224C;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
  }
  .hg-btn .hg-line.--open {
    background-color: transparent;
  }
  .hg-btn .hg-line:first-child {
    position: absolute;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  .hg-btn .hg-line:first-child.--open {
    background-color: #1B224C;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .hg-btn .hg-line:last-child {
    position: absolute;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  .hg-btn .hg-line:last-child.--open {
    background-color: #1B224C;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
}

.section__title {
  font-size: 36px;
  padding-top: 60px;
  text-align: center;
}
@media print, screen and (max-width: 1024px) {
  .section__title {
    font-size: 26px;
  }
}
@media print, screen and (max-width: 599px) {
  .section__title {
    padding-top: 40px;
  }
}
.section__title--white {
  color: #fff;
}
.section__title--md {
  font-size: 32px;
}
@media print, screen and (max-width: 1024px) {
  .section__title--md {
    text-align: center;
    font-size: 26px;
  }
}

.sub-main .section__title--md {
  text-align: center;
}

.aside__title {
  font-size: 21px;
  text-align: center;
  padding: 18px 10px;
}

.school__info {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.school__info .school__info__open {
  font-size: 12px;
}
.school__info .school__info__tel__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-weight: bold;
}
.school__info .school__info__tel__link img {
  width: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 5px;
}

.breadcrumbs {
  background-color: #F8F8F8;
  padding: 20px 0;
}
.breadcrumbs a {
  text-decoration: underline;
  margin-right: 6px;
}
.breadcrumbs span {
  font-size: 12px;
}
.breadcrumbs span + span {
  margin-left: 6px;
}

.top01 {
  height: 80vh;
  background-image: url(../../assets/image/top.jpg);
  background-size: cover;
  background-position: 30%;
  position: relative;
}

.top01__desc {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.top01__desc .top01__title {
  font-size: 48px;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, .1607843137);
}
@media print, screen and (max-width: 1024px) {
  .top01__desc .top01__title {
    font-size: 36px;
  }
}
.top01__desc .top01__text {
  font-size: 18px;
  line-height: 1.7222222222;
  margin-top: 30px;
}
.top01__desc .btn {
  margin: auto;
  margin-top: 50px;
  margin-bottom: 22px;
}
.top01__desc .contact__link {
  text-decoration: underline;
}

.top02 {
  padding-top: 63px;
  padding-bottom: 55px;
  background-color: #060606;
}

.top02__desc {
  text-align: center;
}
.top02__desc .top02__title {
  font-size: 36px;
}
@media print, screen and (max-width: 1024px) {
  .top02__desc .top02__title {
    font-size: 28px;
  }
}
.top02__desc .top02__text {
  margin-top: 65px;
  margin-bottom: 80px;
  font-size: 18px;
  line-height: 2.1666666667;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media print, screen and (max-width: 599px) {
  .top02__desc .top02__text {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.7857142857;
  }
}
.top02__desc .top02__text p:nth-child(n+2) {
  margin-left: 40px;
}
@media print, screen and (max-width: 1024px) {
  .top02__desc .top02__text p:nth-child(n+2) {
    margin-left: 20px;
  }
}

.top02__box {
  background-color: #fff;
  padding: 10px 15px;
}

.top02__box__inner {
  border: 5px solid #1B224C;
  text-align: center;
  padding: 15px;
}
.top02__box__inner .top02__box__title {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.3888888889;
}
@media print, screen and (max-width: 1024px) {
  .top02__box__inner .top02__box__title {
    font-size: 28px;
    line-height: 1.4285714286;
  }
}
.top02__box__inner .top02__box__title .underline-yelow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #f08300));
  background: linear-gradient(transparent 70%, #f08300 70%);
}
.top02__box__inner .top02__box__text {
  font-size: 18px;
  line-height: 1.7222222222;
  margin-top: 25px;
}
@media print, screen and (max-width: 1024px) {
  .top02__box__inner .top02__box__text {
    font-size: 16px;
    line-height: 1.75;
  }
}

.feature {
  background-color: #1c1c24;
  padding-bottom: 60px;
}
@media print, screen and (max-width: 599px) {
  .feature .container {
    width: 100%;
  }
}
.feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  color: #fff;
}
.feature__item:nth-child(odd) .feature__image {
  margin-left: 50px;
}
@media print, screen and (max-width: 1024px) {
  .feature__item:nth-child(odd) .feature__image {
    margin-left: 20px;
  }
}
@media print, screen and (max-width: 599px) {
  .feature__item:nth-child(odd) .feature__image {
    margin-left: 0;
  }
}
.feature__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.feature__item:nth-child(even) .feature__image {
  margin-right: 50px;
}
@media print, screen and (max-width: 1024px) {
  .feature__item:nth-child(even) .feature__image {
    margin-right: 20px;
  }
}
@media print, screen and (max-width: 599px) {
  .feature__item:nth-child(even) .feature__image {
    margin-right: 0;
  }
}
@media print, screen and (max-width: 599px) {
  .feature__item {
    margin-top: 40px;
    position: relative;
  }
  .feature__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
  }
}
.feature__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feature__image img {
  width: 350px;
  display: block;
}
@media print, screen and (max-width: 1024px) {
  .feature__image img {
    width: 250px;
  }
}
@media print, screen and (max-width: 599px) {
  .feature__image img {
    width: 100%;
    height: 300px;
  }
}
@media print, screen and (max-width: 599px) {
  .feature__image {
    width: 100%;
  }
}

@media print, screen and (max-width: 599px) {
  .feature-item__desc {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #fff;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.feature-item__label-primary {
  font: 12px;
  background-color: #f08300;
  width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 20px;
}
@media print, screen and (max-width: 1024px) {
  .feature-item__label-primary {
    font-size: 14px;
    width: 60px;
    padding: 5px 8px;
  }
}
.feature-item__title {
  font-size: 32px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 1024px) {
  .feature-item__title {
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.feature-item__text {
  font-size: 16px;
  line-height: 1.6875;
}

.cta-area {
  background-image: url(../../assets/image/price.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 3em 1em;
  margin-top: 75px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 599px) {
  .cta-area {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.cta-area .cta-area__title {
  font-size: 26px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media print, screen and (max-width: 599px) {
  .cta-area .cta-area__title {
    font-size: 28px;
  }
}
.cta-area .btn {
  margin-top: 30px;
}

.success {
  background-color: #1c1c24;
}
@media print, screen and (max-width: 599px) {
  .success .container {
    width: 100%;
  }
}

.success__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 60px;
}
@media print, screen and (max-width: 1024px) {
  .success__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 20px;
  }
}
@media print, screen and (max-width: 599px) {
  .success__list {
    padding-top: 0;
  }
}

.success__item {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media print, screen and (max-width: 1024px) {
  .success__item {
    width: 100%;
    margin: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media print, screen and (max-width: 599px) {
  .success__item {
    position: relative;
  }
}
.success__item .comment {
  font-size: 16px;
  line-height: 1.8125;
  font-weight: bold;
  color: #fff;
}
@media print, screen and (max-width: 1024px) {
  .success__item .comment {
    width: 90%;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.success__item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
  margin-bottom: 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media print, screen and (max-width: 1024px) {
  .success__item .icon {
    margin: 0;
  }
}
@media print, screen and (max-width: 599px) {
  .success__item .icon {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.success__item .icon img {
  width: 135px;
}
@media print, screen and (max-width: 1024px) {
  .success__item .icon img {
    width: 200px;
  }
}
@media print, screen and (max-width: 1024px) {
  .success__item .success__item__info {
    margin-left: 30px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media print, screen and (max-width: 599px) {
  .success__item .success__item__info {
    position: absolute;
    top: 50%;
    left: 40%;
  }
}
.success__item .success__item__info .attr {
  display: inline-block;
  background-color: #fff;
  width: 36%;
  margin-right: 5px;
  padding: 5px 10px;
}
@media print, screen and (max-width: 599px) {
  .success__item .success__item__info .attr {
    width: auto;
  }
}
.success__item .success__item__info .name {
  display: inline-block;
  background-color: #fff;
  width: 60%;
  padding: 5px 15px;
}
@media print, screen and (max-width: 599px) {
  .success__item .success__item__info .name {
    width: auto;
    margin-top: 10px;
  }
}
.success__item .success__item__info .result {
  background-color: #fff;
  margin-top: 10px;
  padding: 5px 15px;
}

.flow {
  padding-bottom: 60px;
  background-color: #060606;
}
.flow__list {
  border: 4px solid #f08300;
  margin-top: 55px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 50px;
}
@media print, screen and (max-width: 599px) {
  .flow__list {
    margin-top: 30px;
  }
}

.flow-item {
  position: relative;
}
.flow-item:not(:last-of-type) {
  border-bottom: 4px solid #f08300;
}
.flow-item:not(:last-of-type)::before, .flow-item:not(:last-of-type)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 15%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media print, screen and (max-width: 599px) {
  .flow-item:not(:last-of-type)::before, .flow-item:not(:last-of-type)::after {
    left: 50%;
  }
}
.flow-item:not(:last-of-type)::before {
  border-width: 23px;
  border-top-color: #f08300;
}
.flow-item:not(:last-of-type)::after {
  border-width: 17px;
  border-top-color: #F8F8F8;
}
.flow-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2em 1.5em;
  background-color: #F8F8F8;
}
@media print, screen and (max-width: 599px) {
  .flow-item__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow-item__num {
  background-color: #f08300;
  padding: 0.5em;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}
.flow-item__title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
.flow-item__text {
  font-size: 18px;
  padding-left: 20px;
}
@media print, screen and (max-width: 599px) {
  .flow-item__text {
    padding-left: 0;
    margin-top: 15px;
    text-align: center;
  }
}

.faq {
  background-color: #060606;
  padding-bottom: 40px;
}
.faq__list {
  width: 100%;
  border-bottom: 1px solid #1B224C;
  margin-top: 32px;
  margin-bottom: 90px;
  background-color: #fff;
}

.question {
  border-top: 1px solid #C3C3C3;
  position: relative;
  padding-top: 20px;
  padding-right: 50px;
  padding-bottom: 20px;
  padding-left: 1em;
  display: block;
  width: 100%;
  cursor: pointer;
  text-align: left;
  background: transparent;
  font-size: 16px;
  color: #1B224C;
}
.question::before {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background-color: #f08300;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.question::after {
  content: "";
  position: absolute;
  display: block;
  width: 3px;
  height: 25px;
  background-color: #f08300;
  right: 31px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.--active::after {
  top: 30%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.answer {
  background-color: #F8F8F8;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 2em;
  display: none;
}

.posts {
  background-color: #1c1c24;
  padding-top: 40px;
}

.post-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 120px;
}
@media print, screen and (max-width: 1024px) {
  .post-cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 60px;
  }
}

.post-blog {
  width: 50%;
}
@media print, screen and (max-width: 1024px) {
  .post-blog {
    width: 80%;
    margin: auto;
  }
}
@media print, screen and (max-width: 599px) {
  .post-blog {
    width: 100%;
  }
}

.blog__list .blog__item:nth-child(n+2) {
  margin-top: 30px;
}

.blog-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
}
.blog-item__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}
.blog-item__title {
  text-decoration: underline;
}
.blog-item__date {
  font-size: 12px;
}
.blog-item__image {
  position: relative;
  margin-right: 20px;
  aspect-ratio: 150/100;
  max-width: 150px;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.blog-item__image .badge {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  background-color: #f08300;
  padding: 5px 10px;
}
.news {
  width: 50%;
  margin-left: 67px;
}
@media print, screen and (max-width: 1024px) {
  .news {
    width: 100%;
    margin-top: 60px;
    margin-left: 0;
    text-align: center;
  }
}
.news__item {
  margin-bottom: 30px;
}

.news-item__date {
  font-size: 12px;
  margin-bottom: 15px;
  color: #fff;
}
.news-item__link {
  text-decoration: underline;
  color: #fff;
}

.request {
  background-image: url(../../assets/image/contact.jpg);
  text-align: center;
  background-size: cover;
  background-position: center;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.request .btn {
  margin: auto;
}
.request .contact__link {
  text-decoration: underline;
  display: block;
  margin-top: 22px;
}

.tel-contact {
  padding-top: 20px;
  padding-bottom: 20px;
}
.tel-contact .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media print, screen and (max-width: 1024px) {
  .tel-contact .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.tel-contact .container p {
  font-weight: bold;
  padding-bottom: 5px;
}
@media print, screen and (max-width: 1024px) {
  .tel-contact .container p {
    padding-bottom: 0;
  }
}
.tel-contact .container .tel {
  font-size: 36px;
  font-weight: bold;
  vertical-align: bottom;
  margin-right: 20px;
  margin-left: 20px;
}
@media print, screen and (max-width: 1024px) {
  .tel-contact .container .tel {
    margin-right: 0;
    margin-left: 0;
  }
}
.tel-contact .container span {
  padding-bottom: 5px;
}
@media print, screen and (max-width: 1024px) {
  .tel-contact .container span {
    padding-bottom: 0;
  }
}

.price__top {
  background-image: url(../../assets/image/price-top.jpg);
  height: 50vh;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.price__top::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .3);
}
.price__title {
  font-size: 32px;
  width: 95%;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.price-info {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #060606;
}
@media print, screen and (max-width: 599px) {
  .price-info {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.price-info__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 60px;
  padding-bottom: 45px;
}
@media print, screen and (max-width: 599px) {
  .price-info__desc {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.price-info__item {
  position: relative;
  background-color: #f08300;
  width: 280px;
  padding: 35px 20px;
  font-size: 22px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 599px) {
  .price-info__item {
    font-size: 18px;
  }
}
.price-info__item:first-child {
  margin-right: 100px;
}
.price-info__item:first-child::before {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  right: -50px;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.price-info__item:first-child::after {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: 25px;
  background-color: #fff;
  right: -51px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.price-info__text {
  font-size: 16px;
  line-height: 1.6875;
  color: #fff;
  text-align: center;
}

.plan {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #1c1c24;
}
@media print, screen and (max-width: 1024px) {
  .plan .container {
    width: 100%;
  }
}
.plan__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 900px;
  padding-top: 106px;
  overflow-x: auto;
}
.plan__item {
  width: calc(25% - 21px);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.plan__item-title {
  font-weight: bold;
  padding: 20px;
}
.plan__item-title span {
  display: block;
  margin-bottom: 20px;
}
.plan__item-inner {
  border-right: 0.5px solid #C3C3C3;
  border-bottom: 0.5px solid #C3C3C3;
  border-left: 0.5px solid #C3C3C3;
  background-color: #f2f2f3;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.plan__item-price {
  font-size: 25px;
  font-weight: bold;
  padding-top: 30px;
  padding-right: 10px;
  padding-bottom: 14px;
  padding-left: 10px;
}
.plan__item-cont {
  padding-top: 50px;
  padding-right: 20px;
  padding-bottom: 100px;
  padding-left: 30px;
}
.plan__item-desc {
  -moz-text-align-last: left;
       text-align-last: left;
  position: relative;
}
.plan__item-desc + li {
  margin-top: 20px;
}
.plan__item-desc::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -15px;
  width: 10px;
  height: 5px;
  border-left: 3px solid #1B224C;
  border-bottom: 2px solid #1B224C;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.plan__item-text {
  position: relative;
}
.plan__item-text::before {
  content: "*";
  position: absolute;
  top: 3px;
  left: -5px;
}

.plan__item:nth-child(n+2) {
  margin-left: 7px;
}

.-recommend {
  margin-top: -44px;
}

.contact__top {
  background-image: url(../../assets/image/contact-top.jpg);
  height: 40vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.contact__top::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .3);
}
.contact__title {
  font-size: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: bold;
}

.form {
  padding-top: 58px;
  padding-bottom: 80px;
  background-color: #1c1c24;
}
.form .container {
  max-width: 700px;
  color: #fff;
}
.form .container > p {
  font-size: 16px;
  line-height: 1.6875;
}

form {
  margin-top: 40px;
}

label {
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=tel] {
  display: block;
  width: 100%;
  padding: 20px;
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: 12px;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder {
  color: #B4B4B4;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder {
  color: #B4B4B4;
}
input[type=text]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder {
  color: #B4B4B4;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
  color: #B4B4B4;
}

.textarea-label {
  margin-top: 25px;
  display: block;
}

textarea {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 20px;
}
textarea::-webkit-input-placeholder {
  color: #B4B4B4;
}
textarea::-moz-placeholder {
  color: #B4B4B4;
}
textarea::-ms-input-placeholder {
  color: #B4B4B4;
}
textarea::placeholder {
  color: #B4B4B4;
}

.radio__desc span {
  font-weight: bold;
}

.radio-label {
  margin-top: 20px;
  display: block;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.mwform-radio-field-text {
  position: relative;
  padding-left: 40px;
}
.mwform-radio-field-text::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #f08300;
  background-clip: content-box;
}

input[type=radio]:focus + .mwform-radio-field-text::before,
input[type=checkbox]:focus + .mwform-checkbox-field-text::before {
  -webkit-box-shadow: 0 0 4px #1B224C;
          box-shadow: 0 0 4px #1B224C;
}

input[type=radio]:checked + .mwform-radio-field-text::after {
  position: absolute;
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #f08300;
}

.privacypolicy {
  margin-top: 30px;
  text-align: center;
}
.privacypolicy a {
  text-decoration: underline;
}

.privacypolicy-label {
  display: block;
  text-align: center;
  margin-top: 33px;
  margin-bottom: 48px;
}
.privacypolicy-label input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.privacypolicy-label .mwform-checkbox-field-text {
  position: relative;
}
.privacypolicy-label .mwform-checkbox-field-text::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-top: -4px;
  margin-top: -0.25rem;
  margin-right: 15px;
  border: 1px solid #f08300;
}
.privacypolicy-label input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  position: absolute;
  top: 0;
  left: 3px;
  content: "";
  width: 15px;
  height: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-bottom: 2px solid #f08300;
  border-left: 2px solid #f08300;
}

.submit-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.complete {
  margin-top: 80px;
  margin-bottom: 80px;
}
.complete .complete__text {
  text-align: center;
  font-size: 16px;
  line-height: 1.6875;
}
.complete .complete__link {
  text-align: center;
  margin-top: 83px;
}
.complete a {
  text-decoration: underline;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb30 {
  margin-bottom: 30px;
}

.mt25 {
  margin-top: 25px;
}

.mt70 {
  margin-top: 70px;
}

.pt12 {
  padding-top: 12px;
}

.pt35 {
  padding-top: 35px;
}

.pt70 {
  padding-top: 70px;
}

.pb12 {
  padding-bottom: 12px;
}

.pb70 {
  padding-bottom: 70px;
}

@media print, screen and (max-width: 1024px) {
  .v-pc {
    display: none;
  }
}

.v-tab {
  display: none;
}
@media print, screen and (max-width: 1024px) {
  .v-tab {
    display: block;
  }
}
@media print, screen and (max-width: 1024px) and (max-width: 599px) {
  .v-tab {
    display: none;
  }
}

.v-sp {
  display: none;
}
@media print, screen and (max-width: 599px) {
  .v-sp {
    display: block;
  }
}

@media print, screen and (max-width: 1024px) {
  .v-pctab {
    display: block;
  }
}
@media print, screen and (max-width: 1024px) and (max-width: 599px) {
  .v-pctab {
    display: none;
  }
}

.-white {
  color: #fff;
}

.-yelow {
  color: #f08300;
}

.-bg-naby {
  background-color: #1B224C;
}

.-bg-yelow {
  background-color: #f08300;
}