@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 62.5%;
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1010px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.test {
  font-size: 12.5px;
  font-size: 1.25rem;
  background-color: #333;
  color: #fff;
}

/*===================================================
フォーム
===================================================*/
.form-section {
  background-image: url(../images/form-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 5%;
}

.form__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

textarea {
  border: 1px solid #ccc;
  background-color: #f5f5f5;
  border-radius: 8px;
}

input {
  border: 1px solid #ccc;
  background-color: #f5f5f5;
  height: 56px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  input {
    height: 48px;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  display: inline-block;
  margin-top: 12px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px !important;
}

.name {
  max-width: 312px;
}

.submit {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #006adf;
  color: #fff;
}

input[type=radio]:checked {
  background-color: #666;
}

/* label {
  display: block;
} */
input[type=radio] {
  display: none;
}

.mwform-radio-field-text {
  display: inline-block;
  position: relative;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .mwform-radio-field-text {
    padding-left: 32px;
  }
}

.mwform-radio-field-text:before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 2;
  top: -3px;
  left: 0px;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  background-clip: content-box;
}

.mwform-radio-field-text::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: -3px;
  left: 0;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 50%;
  background-color: #f5f5f5;
}

input[type=radio]:not(:checked) + .mwform-radio-field-text:before {
  border-color: #ccc;
  background-color: #f5f5f5;
}

input[type=radio]:checked + .mwform-radio-field-text:before {
  background-color: #666;
  border-color: #ccc;
  padding: 6px;
}

.radio__wrapper {
  padding-top: 24px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .radio__wrapper {
    padding-top: 16px;
  }
}

.radio__wrapper span:nth-child(1) {
  margin-left: 10px !important;
}

.form__inner {
  max-width: 960px;
  padding: 140px 160px 64px 160px;
  margin-top: -190px;
  background-color: #fff;
}

.form__flex div:nth-child(1) {
  margin-right: 16px;
}

.form__flex div:nth-child(1) {
  margin-right: 16px;
}

input[type=submit] {
  border-radius: inherit !important;
}

.req {
  color: #e50000;
  display: inline-block;
  padding-left: 8px;
  font-size: 14px;
  font-size: 1.4rem;
}

.yakushoku-txt {
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
}

.yakushoku {
  margin-bottom: 8px !important;
}

.radio7-txt {
  height: 160px;
}

.renraku {
  height: 320px;
}

.form-pb {
  padding-top: 24px;
}

.renraku {
  margin-bottom: 24px;
}

.mw_wp_form .error {
  color: #e50000 !important;
  font-size: 16px !important;
  font-size: 1.6rem !important;
  font-weight: bold;
  display: inline-block;
  margin-top: 8px;
}

.page-contact {
  background-color: #f2f2f2;
}

.page-contact .page-mv__txt:first-child {
  padding-bottom: 16px;
}

form div,
span,
p {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 1080px) {
  .form-section {
    padding-right: 8px;
    padding-left: 8px;
  }

  .form__inner {
    padding-bottom: 40px;
  }

  .mwform-radio-field-text:before {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    top: -1px;
  }

  .mwform-radio-field-text::after {
    width: 24px;
    height: 24px;
    top: 1px;
  }

  input[type=radio]:checked + .mwform-radio-field-text:before {
    padding: 4px;
  }

  form div,
span,
p {
    font-size: 1.4rem;
  }

  .mwform-radio-field-text::after {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .form__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .radio7-txt {
    height: 48px;
  }

  .renraku {
    height: 160px;
  }

  .mw_wp_form .error {
    font-size: 1.4rem !important;
  }
}
.radio__wrapper span {
  margin-bottom: 15px;
}

.top-radio__wrapper .mwform-radio-field-text {
  margin-bottom: 10px;
}

.form-pb10 {
  padding-top: 9px;
}

.note {
  color: #666;
  padding-top: 9px;
}

body .page-footer__bg {
  background-color: #006ADF;
  -webkit-clip-path: polygon(0 58%, 100% 18%, 100% 100%, 0 100%);
          clip-path: polygon(0 58%, 100% 18%, 100% 100%, 0 100%);
}
body.red .page-footer__bg {
  background-color: #e50000;
}

.page-footer {
  background-color: #f2f2f2;
}

.page-footer__inner {
  padding-top: 100px;
  padding-bottom: 24px;
  text-align: center;
}

.page-footer__copylight {
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .page-footer__copylight {
    font-size: 1rem;
  }
}

.btn__wrapper {
  padding-top: 20px;
  padding-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .btn__wrapper {
    padding-top: 8px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1080px) {
  .top-page-header {
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
  .top-page-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px 16px;
  }
}
.top-page-header .header__txt {
  display: none;
}
@media screen and (max-width: 1080px) {
  .top-page-header .header__txt {
    display: block;
    color: #1c2c55;
    font-size: 1rem;
    line-height: 1.2;
  }
  .top-page-header .header__txt span {
    font-size: 0.8rem;
    display: block;
  }
}

.logo {
  width: 200px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1080px) {
  .logo {
    position: inherit;
    margin-right: 16px;
    max-width: 180px;
  }
}

.mv__bg {
  /* background-image: url(../images/mv-bg.png); */
  /* height: 100vh; */
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1080px) {
  .mv__bg {
    background-position: center 50%;
  }
}

.mv__inner {
  max-width: 1194px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1080px) {
  .mv__inner {
    display: block;
  }
}

.mv__item {
  width: 31.4410480349%;
  height: 225px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  position: relative;
  z-index: 2;
  text-decoration: none;
  --anchor-color: #00A0E6;
}
.mix-blend{
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--anchor-color) url(../images/top_anchor_1.png) center/cover no-repeat;
  background-blend-mode: screen;
}
.mv__item--blue{
  --anchor-color: #00A0E6;
}
.mv__item--blue .mix-blend{
  background-image: url(../images/top_anchor_2.png);
}
.mv__item--red{
  --anchor-color: #E60000;
}
.mv__item--gray{
  --anchor-color: #E0E0E0;
}
.mix-blend::after{
  content: "";
  display: block;
  position:absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  mix-blend-mode: multiply;
  background-color: var(--anchor-color);
}
@media screen and (max-width: 1080px) {
  .mv__item {
    width: 80%;
    min-width: 300px;
    max-width: 500px;
    margin: 0 auto;
    height: 104px;
    margin-bottom: 16px;
  }
}
.mv__item::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 40px;
  width: 80px;
  height: 4px;
  background-color: #fff;
}
.mv__item--gray .arrow::before {
  background: #e0e0e0 !important;
}
.mv__item--gray .arrow::after {
  border-top: 2px solid #e0e0e0 !important;
  border-right: 2px solid #e0e0e0 !important;
}
.mv__item .arrow {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background-color: #fff;
}
.mv__item .arrow::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 14px;
  z-index: 2;
  width: 28px;
  height: 2px;
  background: #333;
}
.mv__item .arrow::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 14px;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.link__ttl {
  padding-left: 40px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.45;
  padding-right: 60px;
}
@media screen and (max-width: 1080px) {
  .link__ttl {
    font-size: 1.8rem;
  }
}

.schedule {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  margin-top: 12px;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  .schedule {
    font-size: 1.2rem;
    margin-top: 4px;
  }
}

.footer {
  text-align: center;
  padding-bottom: 41px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  /* position: absolute; */
  /* bottom: 0; */
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer {
    font-size: 1rem;
  }
}

.page-agree__inner {
  max-width: 960px;
  padding-right: 25px;
  padding-left: 25px;
  margin: 0 auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .page-agree__inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.plicy__note, .policy__content {
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .plicy__note, .policy__content {
    font-size: 1.4rem;
  }
}

.policy__content {
  max-width: 100%;
  height: 200px;
  overflow-y: scroll;
  margin: 0 auto;
  margin-top: 25px;
  margin-bottom: 25px;
  border: 1px solid #ccc;
  background-color: #fff;
}
.policy__content a {
  font-size: 16px;
  font-size: 1.6rem;
}

.checkbox__container button {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  padding: 22px 0;
  width: 100%;
  
  font-size: 18px !important;
  font-size: 1.8rem !important;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .checkbox__container button {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 1.6rem !important;
  }
}

#regist {
  margin-top: 30px;
}

.regist-on {
  background: #006ADF;
  color: #fff;
  pointer-events: visible;
}

.regist-off {
  background: gray;
  pointer-events: none;
}

.checkbox__container p input {
  position: relative;
  top: 18px;
}

.page-mv__bg {
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 0 83%);
          clip-path: polygon(0 0, 100% 0, 100% 70%, 0 83%);
}

.page-mv__inner {
  position: relative;
}
.page-mv__inner::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 8px;
  display: inline-block;
  background-color: #fff;
  top: 0;
  left: 25px;
}
@media screen and (max-width: 768px) {
  .page-mv__inner::before {
    width: 120px;
  }
}

.ttl__wrapper {
  padding-top: 136px;
  padding-bottom: 262px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .ttl__wrapper {
    padding-top: 88px;
    padding-bottom: 144px;
    margin-bottom: 30px;
  }
}

.page-mv__txt {
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .page-mv__txt {
    font-size: 1.6rem;
  }
}
.page-mv__txt:nth-child(2) {
  padding-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .page-mv__txt:nth-child(2) {
    padding-bottom: 4px;
  }
}

.page-mv__txt--course {
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page-mv__txt--course {
    padding-bottom: 8px;
  }
}

.page-mv__ttl {
  font-weight: bold;
  font-size: 40px;
  font-size: 4rem;
  padding-top: 23px;
}
@media screen and (max-width: 768px) {
  .page-mv__ttl {
    font-size: 2.2rem;
    padding-top: 8px;
  }
}

body {
  color: #333;
}

.bg--gray {
  background-color: #f2f2f2;
}

/*===================================================
メイン背景
===================================================*/
body .page-mv__bg {
  background-image: url(../images/deta-mv-blue.png);
}
body.red .page-mv__bg {
  background-image: url(../images/deta-mv-red.png);
}

/*===================================================
aタグとヘッダー下の線とテーブルヘッダーの背景
===================================================*/
body a {
  color: #006ADF;
}
body .heading::after {
  background-color: #006ADF;
}
body th {
  background: #006ADF;
}
body.red a {
  color: #e50000;
}
body.red .heading::after {
  background-color: #e50000;
}
body.red th {
  background: #e50000;
}

.heading {
  font-size: 24px;
  font-size: 2.4rem;
  padding-top: 40px;
  padding-bottom: 7px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 24px;
  position: relative;
}
.heading::after {
  content: "";
  width: 240px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .heading::after {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .heading {
    font-size: 1.8rem;
    padding-top: 24px;
    margin-bottom: 16px;
  }
}

a {
  font-size: 18px;
  font-size: 1.8rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  a {
    font-size: 1.6rem;
  }
}

.txt--red {
  color: #e50000;
  padding-top: 8px;
}
@media screen and (max-width: 768px) {
  .txt--red {
    font-size: 1.3rem;
  }
}

/*===================================================
ボタン
===================================================*/
body .btn {
  background-color: #006ADF;
}
body.red .btn {
  background-color: #e50000;
}

.btn {
  padding: 27px 178px 27px 24px;
  background-color: #006ADF;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 16px 0;
    padding-left: 27px;
    width: 100%;
    max-width: 358px;
    display: inline-block;
    font-size: 1.6rem;
  }
}
.btn::before, .btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 28px;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.btn::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background: #fff;
}
.btn::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contact .font--gray {
  color: #666;
}

.page-message__txt {
  line-height: 2;
  margin-top: -64px;
}

table, td, th {
  border: 1px solid #ccc;
  border-collapse: collapse;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  table, td, th {
    font-size: 1.2rem;
  }
}

td {
  vertical-align: top;
  background-color: #fff;
}

td, th {
  padding: 16px;
  width: 30px;
  height: 25px;
}

th {
  color: #fff;
  text-align: left;
  font-weight: normal;
}

th:first-child {
  width: 96px;
}

th:nth-child(2) {
  width: 160px;
}

th:nth-child(3) {
  width: 200px;
}

th:nth-child(4) {
  width: 504px;
}

@media screen and (max-width: 1080px) {
  table {
    width: 960px;
  }

  .curriculum__content {
    overflow-x: scroll;
  }
}


@media screen and (min-width: 1081px) {
  .mv__inner{
    flex-wrap: wrap;
  }

  .mv__item{
    margin-bottom: 17px;
    margin-top: 17px;
  }

}

body{
  display: flex;
  flex-direction: column;
}

.mv__bg{
  padding: 200px 0 100px;
  flex-grow: 1;
  height: unset;
}
@media (max-width: 1080px) {
  .mv__bg{
    padding: 150px 0 50px;
  } 
}

body{
  background-image: url(../images/mv-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1080px){
  .link__ttl{
    font-size: 1.7rem;
  }
}