@charset "UTF-8";
/* Scss Document */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  list-style: none;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote before, blockquote after,
q before, q after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
  /* change border color to suit your needs */
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", yugothic, "Yu Gothic", "メイリオ", meiryo, sans-serif;
  font-size: 1.6rem;
  color: #111C38;
}
body .body_wrapper {
  margin-top: 80px;
}
body .body_wrapper .main_wrapper {
  position: relative;
  min-height: calc(100vh - 160px);
}
body .body_wrapper .error_alert {
  text-align: center;
  margin-bottom: 20px;
}
body .body_wrapper .error_message {
  color: red;
  font-size: 14px;
}
body .body_wrapper .error_messages {
  padding-bottom: 30px;
  color: red;
  font-weight: bold;
}
body .body_wrapper .danger {
  padding: 5px;
  display: inline-block;
  color: red;
  font-weight: bold;
}
body .body_wrapper .alert {
  padding: 1.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
body .body_wrapper .alert.fade-out {
  opacity: 0;
}
body .body_wrapper .alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
body .body_wrapper .alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

a {
  color: #111C38;
}

img {
  width: 100%;
}

br.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  br.sp {
    display: block;
  }
}

br.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  br.pc {
    display: none;
  }
}

img.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  img.pc {
    display: none;
  }
}

img.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  img.sp {
    display: block;
  }
}

.back_btn {
  margin-top: 20px;
  text-align: center;
  font-size: 1.2rem;
  color: #111C38;
}

.back_btn:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.common_btn {
  width: 180px;
  height: 45px;
  font-size: 1.5rem;
  line-height: 0em;
  font-weight: bold;
  color: #325FBA;
  background-color: #FFF64D;
  border: solid 2px #325FBA;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-inline: auto;
  margin-top: 30px;
  cursor: pointer;
}

header {
  position: fixed;
  width: 100%;
  height: 80px;
  background-color: #111C38;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
}
header .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 100px);

  margin-inline: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .inner .header_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
header .inner .header_nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {

  header .inner {
    width: calc(100% - 40px);
  }

  header .inner .header_nav ul {
    display: none;
  }
}
header .inner .header_nav ul li a {
  color: #fff;
  display: block;
  margin-right: 20px;
}
header .inner .header_nav ul li + li {
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
}
header .inner .logo {
  width: 200px;
}
@media only screen and (max-width: 767px) {
  header .inner .logo {
    width: 140px;
  }
}
header .inner .icon_wrapper {
  position: relative;
}
header .inner .icon_wrapper .icon_area {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
}
header .inner .icon_wrapper .icon_area img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
header .inner .icon_wrapper .icon_area img:hover {
  opacity: 0.9;
}
header .inner .icon_wrapper .popup_profile {
  display: none;
  position: absolute;
  z-index: 10;
  background-color: #fff;
  top: 50px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  right: -37px;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #CFE1E8;
}
header .inner .icon_wrapper .popup_profile.active {
  display: block;
}
header .inner .icon_wrapper .popup_profile:before {
  content: "";
  position: absolute;
  top: -24px;
  right: 44px;
  margin-left: -15px;
  border: 12px solid transparent;
  border-bottom: 12px solid #FFF;
  z-index: 2;
}
header .inner .icon_wrapper .popup_profile:after {
  content: "";
  position: absolute;
  top: -28px;
  right: 42px;
  margin-left: -17px;
  border: 14px solid transparent;
  border-bottom: 14px solid #CFE1E8;
  z-index: 1;
}
header .inner .icon_wrapper .popup_profile .top_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
}
header .inner .icon_wrapper .popup_profile .top_area .img_area {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  overflow: hidden;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
header .inner .icon_wrapper .popup_profile .top_area .img_area img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
header .inner .icon_wrapper .popup_profile .top_area .info_area {
  margin-left: 10px;
}
header .inner .icon_wrapper .popup_profile .top_area .info_area .edit {
  display: inline-block;
  margin-top: 0.4em;
  font-size: 1.4rem;
  text-decoration: underline;
  cursor: pointer;
}
header .inner .icon_wrapper .popup_profile .top_area .info_area .edit:hover {
  opacity: 0.7;
}
header .inner .icon_wrapper .popup_profile .bottom_area {
  border-top: 1px solid #CFE1E8;
  padding-top: 10px;
  text-align: right;
  color: #111C38;
  cursor: pointer;
  font-size: 1.4rem;
  text-align: right;
}
header .inner .icon_wrapper .popup_profile .bottom_area a {
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: underline;
}
header .inner .icon_wrapper .popup_profile .bottom_area a:hover {
  opacity: 0.7;
}
header .inner .icon_wrapper .popup_profile .bottom_area .logout_btn {
  display: inline-block;
  font-weight: 700;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", yugothic, "Yu Gothic", "メイリオ", meiryo, sans-serif;
  color: #111C38;
  cursor: pointer;
}
header .inner .icon_wrapper .popup_profile .bottom_area .logout_btn:hover {
  opacity: 0.7;
}
header .inner .icon_wrapper .popup_profile .sp_header {
  display: none;
}
@media only screen and (max-width: 767px) {
  header .inner .icon_wrapper .popup_profile .sp_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #CFE1E8;
    padding-block: 10px;
    text-align: right;
    color: #111C38;
    font-size: 1.4rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  header .inner .icon_wrapper .popup_profile .sp_header a {
    display: none;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  header .inner .icon_wrapper .popup_profile .sp_header a {
    display: inline-block;
    margin-bottom: 12px;
    text-decoration: underline;
  }
}
@media only screen and (max-width: 767px) {
  header .inner .icon_wrapper .popup_profile .sp_header a:last-child {
    margin-bottom: 0;
  }
}
header .inner .icon_wrapper .profile_edit_wrapper {
  padding: 40px;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(34, 88, 138, 0.7411764706);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}
header .inner .icon_wrapper .profile_edit_wrapper.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  padding: 40px;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .close_icon {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .close_icon span {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background: #111C38;
  display: block;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .close_icon span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 45%;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .close_icon span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 45%;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .form_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .form_inner .profile_img_wrapper {
  position: relative;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .form_inner .profile_img_wrapper .profile_img {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 75px;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .form_inner .profile_img_wrapper .profile_img img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .form_inner .profile_img_wrapper .camera_icon_area {
  cursor: pointer;
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 26px;
  background-color: #FFF64D;
  border: solid 2px #325FBA;
  right: -8px;
  bottom: -8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .form_inner .profile_img_wrapper .camera_icon_area .camera_icon {
  position: absolute;
  right: 9px;
  bottom: 11px;
  width: 30px;
  height: 26px;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .form_inner .profile_img_wrapper .camera_icon_area .input_image {
  display: none;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .form_inner input[type=text] {
  margin-top: 16px;
  border: 1px solid #CFE1E8;
  padding: 0.7em;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .form_inner input[type=submit] {
  cursor: pointer;
  width: 164px;
  height: 45px;
  font-size: 2rem;
  line-height: 0em;
  font-weight: bold;
  color: #325FBA;
  background-color: #FFF64D;
  border: solid 2px #325FBA;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  margin-top: 16px;
}
header .inner .icon_wrapper .profile_edit_wrapper .profile_edit_area .form_inner .input_image {
  cursor: pointer;
  width: 52px;
  height: 52px;
  opacity: 0;
}

main {
  width: 100%;
}
main.back {
  background-image: url(../img/common/back.png);
  background-size: cover;
  display: flex;
}
main .fv_area {
  background-image: url(../img/user/fv_bk.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 180px;
}
main .fv_area h1 {
  color: #fff;
  font-size: 3.6rem;
  padding-block: 70px;
}
@media only screen and (max-width: 767px) {

  main .fv_area {
    height: 90px;
  }

  main .fv_area h1 {
    font-size: 2.4rem;
    padding-block: 35px;
  }
}
main .inner {
  width: min(100% - 20px, 1280px);
  margin-inline: auto;
  min-height: calc(100vh - 160px);
}
@media only screen and (max-width: 767px) {
  main .inner {
    width: min(100% - 40px, 1280px);
  }
}
main .inner section {
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
          margin-block-end: 40px;
}
main .inner section .text_area {
  text-align: center;
  margin-block: 60px 24px;
}
main .inner section .text_area .text {
  font-weight: bold;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  main .inner section .text_area .text {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
main .inner section .text_area .sub_text {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
}
@media only screen and (max-width: 767px) {
  main .inner section .text_area .sub_text {
    font-size: 1.4rem;
  }
}
main .inner section .add_text_area {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
  font-size: 2rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  main .inner section .add_text_area {
    font-size: 1.4rem;
  }
}
main .inner section .h2_wrapper {
  background-color: #50AAEB;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-items: center;
}
main .inner section .h2_wrapper h2 {
  background-color: #111C38;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 18px;
}
@media only screen and (max-width: 767px) {
  main .inner section .h2_wrapper h2 {
    font-size: 1.4rem;
    height: 50px;
    padding-inline: 10px;
  }
}
main .inner section .h2_wrapper h2 .beginner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
main .inner section .h2_wrapper h2 .beginner::before {
  display: inline-block;
  content: "";
  background-image: url(../img/user/beginner_icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 28px;
  margin-right: 9px;
  position: relative;
  bottom: 1px;
}
@media only screen and (max-width: 767px) {
  main .inner section .h2_wrapper h2 .beginner::before {
    width: 16px;
    height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  main .inner section .h2_wrapper .course_ttl {
    margin: auto;
    padding-inline: 8px;
    line-height: 1.5;
    text-align: left;
  }
}
main .inner section .h2_wrapper .course_time {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  main .inner section .h2_wrapper .course_time {
    display: none;
  }
}
main .inner section .h2_wrapper p {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  -webkit-margin-end: 18px;
          margin-inline-end: 18px;
}
@media only screen and (max-width: 767px) {
  main .inner section .h2_wrapper p {
    font-size: 1.4rem;
  }
}
main .inner section .h2_chapter {
  position: relative;
  padding: 25px 15px;
  background-color: #111C38;
  color: #fff;
}
main .inner section .h2_chapter .top .beginner_title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  main .inner section .h2_chapter .top .beginner_title {
    font-size: 1.8rem;
  }
}
main .inner section .h2_chapter .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
main .inner section .h2_chapter .bottom .time {
  margin-top: 1em;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  main .inner section .h2_chapter .bottom .time {
    font-size: 1.4rem;
  }
}
main .inner section .h2_chapter .completion {
  position: absolute;
  top: -21px;
  right: -18px;
  width: 80px;
}
@media only screen and (max-width: 767px) {
  main .inner section .h2_chapter .completion {
    top: 60px;
  }
}
main .inner section .curriculum_wapper {
  counter-reset: number 0;
}
main .inner section .curriculum_wapper .curriculum_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  counter-reset: number 0;
}
@media only screen and (max-width: 767px) {
  main .inner section .curriculum_wapper .curriculum_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
main .inner section .curriculum_wapper .curriculum_list .curriculum_item {
  width: calc(50% - 20px);
  -webkit-border-after: 1px solid #CFE1E8;
          border-block-end: 1px solid #CFE1E8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media only screen and (max-width: 767px) {
  main .inner section .curriculum_wapper .curriculum_list .curriculum_item {
    width: 100%;
  }
}
main .inner section .curriculum_wapper .curriculum_list .curriculum_item::before {
  position: absolute;
  display: inline-block;
  counter-increment: number 1;
  content: counter(number) " ";
  font-size: 1.9rem;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background-color: #EFF5F9;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  top: 0;
  bottom: 0;
  left: 8px;
  margin-block: auto;
}
@media only screen and (max-width: 767px) {
  main .inner section .curriculum_wapper .curriculum_list .curriculum_item::before {
    font-size: 1.8rem;
  }
}
main .inner section .curriculum_wapper .curriculum_list .curriculum_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 18px 8px 18px 50px;
}
@media only screen and (max-width: 767px) {
  main .inner section .curriculum_wapper .curriculum_list .curriculum_item a {
    font-size: 1.4rem;
  }
}
main .inner section .curriculum_wapper .curriculum_list .curriculum_item a input[type=checkbox] {
  cursor: pointer;
  padding-left: 30px;
  vertical-align: middle;
  position: relative;
  width: 36px;
  height: 36px;
}
@media only screen and (max-width: 767px) {
  main .inner section .curriculum_wapper .curriculum_list .curriculum_item a input[type=checkbox] {
    width: 32px;
    height: 32px;
  }
}
main .inner section .curriculum_wapper .curriculum_list .curriculum_item a input[type=checkbox]::before,
main .inner section .curriculum_wapper .curriculum_list .curriculum_item a input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
main .inner section .curriculum_wapper .curriculum_list .curriculum_item a input[type=checkbox]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 2px solid #CFE1E8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
main .inner section .curriculum_wapper .curriculum_list .curriculum_item a input[type=checkbox]::after {
  border-bottom: 6px solid #325FBA;
  border-left: 6px solid #325FBA;
  opacity: 0;
  height: 14px;
  width: 22px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 9px;
  left: 8px;
}
@media only screen and (max-width: 767px) {
  main .inner section .curriculum_wapper .curriculum_list .curriculum_item a input[type=checkbox]::after {
    top: 7px;
    left: 6px;
  }
}
main .inner section .curriculum_wapper .curriculum_list .curriculum_item a input[type=checkbox]:checked::after {
  opacity: 1;
}
main .inner section .curriculum_wapper .curriculum_list .curriculum_item .flex_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
main .inner section .curriculum_wapper .curriculum_list .curriculum_item .flex_box .title {
  margin-right: 3px;
  line-height: 1.3;
}
main .inner section .curriculum_wapper .curriculum_list .curriculum_item .flex_box .assignment_btn {
  width: 130px;
  height: 35px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #325FBA;
  background-color: #FFF64D;
  border: solid 2px #325FBA;
  border-radius: 30px;
  cursor: pointer;
  margin-right: 8px;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  main .inner section .curriculum_wapper .curriculum_list .curriculum_item .flex_box .assignment_btn {
    height: auto;
    padding: 3px;
  }
}
main .inner section .curriculum_wapper .curriculum_list .curriculum_item .flex_box .assignment_btn img {
  width: 17px;
  margin-left: 5px;
  margin-bottom: 3px;
}
main .inner section .chapter_wapper .chapter_list {
  counter-reset: number 0;
}
main .inner section .chapter_wapper .chapter_list .chapter_item {
  position: relative;
  -webkit-border-after: 1px solid #CFE1E8;
          border-block-end: 1px solid #CFE1E8;
}
main .inner section .chapter_wapper .chapter_list .chapter_item:before {
  position: absolute;
  display: inline-block;
  counter-increment: number 1;
  content: counter(number) " ";
  font-size: 1.9rem;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background-color: #EFF5F9;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  top: 0;
  bottom: 0;
  left: 8px;
  margin-block: auto;
}
main .inner section .chapter_wapper .chapter_list .chapter_item .assignment_btn {
  width: 160px;
  height: 45px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #325FBA;
  background-color: #FFF64D;
  border: solid 2px #325FBA;
  border-radius: 30px;
  cursor: pointer;
  margin-right: 8px;
}
@media only screen and (max-width: 767px) {
  main .inner section .chapter_wapper .chapter_list .chapter_item .assignment_btn {
    height: auto;
    padding: 3px;
  }
}
main .inner section .chapter_wapper .chapter_list .chapter_item .assignment_btn img {
  width: 17px;
  margin-left: 5px;
  margin-bottom: 3px;
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link {
  padding: 15px 10px 15px 60px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .flex_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .flex_box .sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .flex_box .sp {
    display: block;
  }
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .pr {
  padding-right: 220px;
}
@media only screen and (max-width: 767px) {
  main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .pr {
    padding-right: 45px;
  }
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .float_area {
  position: absolute;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .float_area .pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .float_area .pc {
    display: none;
  }
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .chapter_img {
  height: 115px;
  min-width: 230px;
  max-width: 230px;
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .chapter_img {
    display: none;
  }
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .title {
  font-size: 2rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .title {
    padding-bottom: 5px;
    font-size: 1.6rem;
  }
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .time {
  margin-top: 0.8em;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .time {
    margin-top: inherit;
    margin-right: 15px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
  }
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .btn input[type=checkbox] {
  cursor: pointer;
  padding-left: 30px;
  vertical-align: middle;
  position: relative;
  width: 36px;
  height: 36px;
}
@media only screen and (max-width: 767px) {
  main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .btn input[type=checkbox] {
    width: 32px;
    height: 32px;
  }
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .btn input[type=checkbox]::before,
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .btn input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .btn input[type=checkbox]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 2px solid #CFE1E8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .btn input[type=checkbox]::after {
  border-bottom: 6px solid #325FBA;
  border-left: 6px solid #325FBA;
  opacity: 0;
  height: 14px;
  width: 22px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 9px;
  left: 8px;
}
@media only screen and (max-width: 767px) {
  main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .btn input[type=checkbox]::after {
    top: 6px;
    left: 6px;
  }
}
main .inner section .chapter_wapper .chapter_list .chapter_item .chapter_link .btn input[type=checkbox]:checked::after {
  opacity: 1;
}
main .inner section .chapter_web_list {
  margin-block: 15px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 24px;
}
@media only screen and (max-width: 767px) {
  main .inner section .chapter_web_list {
    grid-template-columns: 1fr;
  }
}
main .inner section .chapter_web_list .web_list_item {
  position: relative;
  border: 1px solid #CFE1E8;
  padding: 15px;
}
main .inner section .chapter_web_list .web_list_item > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
main .inner section .chapter_web_list .web_list_item > a .web_list_img_area {
  position: relative;
  height: 200px;
}
main .inner section .chapter_web_list .web_list_item > a .web_list_img_area .thumbnail {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
main .inner section .chapter_web_list .web_list_item > a .web_list_img_area .tab_list {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  top: 8px;
  left: 8px;
}
main .inner section .chapter_web_list .web_list_item > a .web_list_img_area .tab_list li {
  background-color: #50AAEB;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.6em;
}
main .inner section .chapter_web_list .web_list_item > a .web_list_img_area .tab_list li + li {
  margin-left: 4px;
}
main .inner section .chapter_web_list .web_list_item > a .web_list_img_area .completion {
  position: absolute;
  width: 80px;
  right: -10px;
  bottom: -10px;
}
main .inner section .chapter_web_list .web_list_item > a .web_list_text_area {
  position: relative;
  margin-top: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
main .inner section .chapter_web_list .web_list_item > a .web_list_text_area .title {
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 10px;
}
main .inner section .chapter_web_list .web_list_item > a .web_list_text_area .time {
  margin-top: 1em;
  font-size: 1.4rem;
  text-align: right;
}
main .inner section .chapter_web_list .web_list_item .assignment_btn {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 160px;
  height: 32px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #325FBA;
  background-color: #FFF64D;
  border: solid 2px #325FBA;
  border-radius: 30px;
  cursor: pointer;
  margin-right: 8px;
}
@media only screen and (max-width: 767px) {
  main .inner section .chapter_web_list .web_list_item .assignment_btn {
    height: 25px;
  }
}
main .inner section .chapter_web_list .web_list_item .assignment_btn img {
  width: 17px;
  margin-left: 5px;
  margin-bottom: 3px;
}
main .inner section .chapter_web_list .web_list_item .assignment_btn:hover {
  opacity: 0.8;
}
main .inner section .curriculum_web_wapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 15px;
}
@media only screen and (max-width: 767px) {
  main .inner section .curriculum_web_wapper {
    grid-template-columns: 1fr;
  }
}
main .inner section .curriculum_web_wapper .web_item .title_wrapper {
  background-color: #50AAEB;
  color: #fff;
  padding: 14px;
}
main .inner section .curriculum_web_wapper .web_item .title_wrapper h3 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
}
main .inner section .curriculum_web_wapper .web_item .title_wrapper .time {
  margin-top: 0.5em;
  font-size: 1.3rem;
}
main .inner section .curriculum_web_wapper .web_item .curriculum_web_list {
  counter-reset: number 0;
}
main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item {
  -webkit-border-after: 1px solid #CFE1E8;
          border-block-end: 1px solid #CFE1E8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item::before {
  position: absolute;
  display: inline-block;
  counter-increment: number 1;
  content: counter(number) " ";
  font-size: 1.8rem;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 34px;
  height: 34px;
  border-radius: 17px;
  background-color: #FFF64D;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  top: 0;
  bottom: 0;
  left: 8px;
  margin-block: auto;
}
@media only screen and (max-width: 767px) {
  main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item::before {
    font-size: 1.8rem;
  }
}
main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-right: 6px;
}
main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item a .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 22px 8px 22px 50px;
}
main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item a .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item a .btn input[type=checkbox] {
  cursor: pointer;
  padding-left: 30px;
  vertical-align: middle;
  position: relative;
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 767px) {
  main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item a .btn input[type=checkbox] {
    width: 32px;
    height: 32px;
  }
}
main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item a .btn input[type=checkbox]::before,
main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item a .btn input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item a .btn input[type=checkbox]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 2px solid #CFE1E8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item a .btn input[type=checkbox]::after {
  border-bottom: 56px solid #325FBA;
  border-left: 5px solid #325FBA;
  opacity: 0;
  height: 12px;
  width: 20px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7px;
  left: 6px;
}
main .inner section .curriculum_web_wapper .web_item .curriculum_web_list .curriculum_web_item a .btn input[type=checkbox]:checked::after {
  opacity: 1;
}
main .inner .bk_course_btn {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
          margin-block-end: 30px;
  display: inline-block;
  font-weight: bold;
}
main .inner .bk_course_btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
main .inner .bk_course_btn a .img_area {
  width: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
main .inner .bk_course_btn a .text {
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
  font-size: 1.6rem;
}
main .accordion {
  display: none;
  padding: 1rem;
}
@media only screen and (max-width: 767px) {
  main .accordion {
    display: inherit;
  }
}
main .accordion-item {
  margin-bottom: 0.5rem;
}
main .accordion-check {
  display: none;
}
main .accordion-label {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  padding: 1.5rem;
  border-left: 40px solid #111C38;
  background-color: #efefef;
  color: #111C38;
  font-size: 1.5rem;
  line-height: 2.5;
  height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}
main .accordion-label::before {
  position: absolute;
  top: 50%;
  left: -40px;
  height: 100%;
  width: 40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  font-size: 2rem;
  content: "+";
}
main .accordion-box {
  height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
main .accordion-check:checked ~ .accordion-box {
  height: auto;
  opacity: 1;
  padding: 1rem;
}
main .accordion-check:checked + .accordion-label:before {
  content: "-";
}
main .accordion-box p {
  line-height: 1.5;
}

.main_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .main_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main_wrapper .main_inner {
  margin-inline: 20px;
}
@media only screen and (max-width: 767px) {
  .main_wrapper .main_inner {
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
  }
}
.main_wrapper .main_inner .video_wrapper {
  width: min(100%, 1200px);
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
  margin-inline: auto;
}
.main_wrapper .main_inner .video_wrapper .vtm-movie {
  position: relative;
  margin: 0 auto;
  padding-top: 60%;
}
.main_wrapper .main_inner .video_wrapper .vtm-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
@media only screen and (max-width: 767px) {
  .main_wrapper .main_inner .video_wrapper {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}
.main_wrapper .main_inner .video_wrapper video {
  width: 100%;
}
.main_wrapper .main_inner .video_wrapper .vtm-movie iframe {
  width: 100%;
}
.main_wrapper .main_inner .capture_name {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .main_wrapper .main_inner .capture_name {
    font-size: 1.4rem;
    padding-top: 10px;
    line-height: 1.2;
  }
}
.main_wrapper .main_inner .video_nav {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .main_wrapper .main_inner .video_nav {
    -webkit-margin-before: 5px;
            margin-block-start: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .main_wrapper .main_inner .video_nav a {
    padding-block: 12px;
  }
}
.main_wrapper .main_inner .video_nav .back {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 5%;
  max-width: 500px;
}
.main_wrapper .main_inner .video_nav .back .arrow {
  width: 28px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
.main_wrapper .main_inner .video_nav .back .text_area {
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
  font-weight: bold;
}
.main_wrapper .main_inner .video_nav .back .text_area .sub {
  font-size: 1.4rem;
  -webkit-margin-after: 0.8em;
          margin-block-end: 0.8em;
}
@media only screen and (max-width: 767px) {
  .main_wrapper .main_inner .video_nav .back .text_area .sub {
    -webkit-margin-after: inherit;
            margin-block-end: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .main_wrapper .main_inner .video_nav .back .text_area .title_pc {
    display: none;
  }
}
.main_wrapper .main_inner .video_nav .back + a .text_area {
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.main_wrapper .main_inner .video_nav .next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 5%;
  max-width: 500px;
}
.main_wrapper .main_inner .video_nav .next .arrow {
  width: 28px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
.main_wrapper .main_inner .video_nav .next .text_area {
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
  font-weight: bold;
  text-align: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.main_wrapper .main_inner .video_nav .next .text_area .sub {
  font-size: 1.4rem;
  -webkit-margin-after: 0.8em;
          margin-block-end: 0.8em;
}
@media only screen and (max-width: 767px) {
  .main_wrapper .main_inner .video_nav .next .text_area .sub {
    -webkit-margin-after: inherit;
            margin-block-end: inherit;
  }
}
.main_wrapper .main_inner .video_nav .next .text_area .title_pc {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .main_wrapper .main_inner .video_nav .next .text_area .title_pc {
    display: none;
  }
}
.main_wrapper .main_inner .video_nav .next + a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .main_wrapper .main_inner .video_nav .next + a {
    -webkit-border-before: 1px solid #CFE1E8;
            border-block-start: 1px solid #CFE1E8;
  }
}
.main_wrapper .main_inner .video_nav .next + a .text_area {
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.main_wrapper .main_inner .bk_text_area {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  display: inline-block;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .main_wrapper .main_inner .bk_text_area {
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
  }
}
.main_wrapper .main_inner .bk_text_area a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_wrapper .main_inner .bk_text_area a .img_area {
  width: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.main_wrapper .main_inner .bk_text_area a .text {
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
  font-size: 1.6rem;
}
.main_wrapper aside {
  width: 360px;
  background-color: #EFF5F9;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
@media only screen and (max-width: 767px) {
  .main_wrapper aside {
    width: 100%;
  }
}
.main_wrapper aside .assignment_btn {
  width: 100%;
  height: 45px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #325FBA;
  background-color: #FFF64D;
  border: solid 2px #325FBA;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease, font-size 0.2s ease;
  transition: opacity 0.2s ease, font-size 0.2s ease;
}
@media only screen and (max-width: 767px) {
  .main_wrapper aside .assignment_btn {
    max-width: 300px;
    margin-inline: auto;
  }
}
.main_wrapper aside .assignment_btn:hover {
  opacity: 0.9;
  font-size: 1.05em;
}
.main_wrapper aside .assignment_btn .assignment_icon {
  width: 17px;
  margin-left: 5px;
  margin-bottom: 3px;
}
.main_wrapper aside .aside_inner {
  margin-inline: 15px;
}
.main_wrapper aside .aside_inner .item {
  padding-block: 25px;
  border-bottom: solid 2px #CFE1E8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_wrapper aside .aside_inner .item .text {
  font-size: 1.4rem;
  line-height: 1.4;
}
.main_wrapper aside .aside_inner .item .btn {
  min-width: 148px;
  height: 40px;
  border-radius: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #50AAEB;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main_wrapper aside .aside_inner .item .btn.x-btn {
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  .main_wrapper aside .aside_inner .item .btn {
    font-size: 1.4rem;
    min-width: 140px;
  }
}
.main_wrapper aside .aside_inner .item .btn img {
  width: 16px;
  display: inline-block;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  margin-bottom: 3px;
}
.main_wrapper aside .aside_inner .item2 {
  padding-block: 25px;
  border-bottom: solid 2px #CFE1E8;
}
.main_wrapper aside .aside_inner .item2 .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_wrapper aside .aside_inner .item2 .text {
  font-size: 1.4rem;
  line-height: 1.4;
}
.main_wrapper aside .aside_inner .item2 .x-txt {
  margin: 15px 0;
}
.main_wrapper aside .aside_inner .item2 .x-txt span {
  color: #f00;
}
.main_wrapper aside .aside_inner .item2 #x-btn2 {
  background-color: #000;
  padding: 0 20px;
  cursor: pointer;
}
.main_wrapper aside .aside_inner .item2 .btn {
  min-width: 148px;
  height: 40px;
  border-radius: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #50AAEB;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main_wrapper aside .aside_inner .item2 .btn.x-btn {
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  .main_wrapper aside .aside_inner .item2 .btn {
    font-size: 1.4rem;
    min-width: 140px;
  }
}
.main_wrapper aside .aside_inner .item2 .btn img {
  width: 16px;
  display: inline-block;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  margin-bottom: 3px;
}
.main_wrapper aside .aside_inner .item3 {
  padding-block: 25px;
  border-bottom: solid 2px #CFE1E8;
}
.main_wrapper aside .aside_inner .item3 .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_wrapper aside .aside_inner .item3 .text {
  font-size: 1.4rem;
  line-height: 1.4;
}
.main_wrapper aside .aside_inner .item3 .add-txt {
  margin-top: 15px;
  font-size: 1.4rem;
  line-height: 1.4;
}
.main_wrapper aside .aside_inner .item3 .add-txt span {
  color: #f00;
}
.main_wrapper aside .aside_inner .item3 .btn {
  min-width: 148px;
  height: 40px;
  border-radius: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #50AAEB;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .main_wrapper aside .aside_inner .item3 .btn {
    font-size: 1.4rem;
    min-width: 140px;
  }
}
.main_wrapper aside .aside_inner .item3 .btn img {
  width: 16px;
  display: inline-block;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  margin-bottom: 3px;
}
.main_wrapper aside .aside_inner .chapter_area {
  overflow-y: scroll;
  height: auto;
  margin-right: -15px;
}
.main_wrapper aside .aside_inner .chapter_area .chapter_list {
  counter-reset: number 0;
  margin-right: 12px;
}
.main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item {
  -webkit-border-after: 1px solid #CFE1E8;
          border-block-end: 1px solid #CFE1E8;
  position: relative;
}
.main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item:before {
  position: absolute;
  display: inline-block;
  counter-increment: number 1;
  content: counter(number) " ";
  font-size: 1.8rem;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 18px;
  background-color: #FFF64D;
  color: #111C38;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  top: 0;
  bottom: 0;
  left: 0;
  margin-block: auto;
}
.main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 5px 14px 45px;
}
.main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item a .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item a .btn input[type=checkbox] {
  cursor: pointer;
  padding-left: 30px;
  vertical-align: middle;
  position: relative;
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 767px) {
  .main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item a .btn input[type=checkbox] {
    width: 30px;
    height: 30px;
  }
}
.main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item a .btn input[type=checkbox]::before,
.main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item a .btn input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
.main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item a .btn input[type=checkbox]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 2px solid #CFE1E8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
.main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item a .btn input[type=checkbox]::after {
  border-bottom: 6px solid #325FBA;
  border-left: 6px solid #325FBA;
  opacity: 0;
  height: 12px;
  width: 20px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7px;
  left: 7px;
}
.main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item a .btn input[type=checkbox]:checked::after {
  opacity: 1;
}
.main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item .text_area .chapter-title {
  font-size: 16px;
  line-height: 1.4;
}
.main_wrapper aside .aside_inner .chapter_area .chapter_list .chapter_item .text_area .chapter-time {
  font-size: 14px;
  margin-top: 0.6em;
}
.main_wrapper aside .course_name {
  padding: 32px 5px;
  background-color: #111C38;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

.login_area {
  max-width: 400px;
  margin-inline: auto;
  margin-top: calc((100vh - 460px) / 2);
  /* margin-bottom: calc((100vh - 460px) / 2); */
  background-color: #fff;
  border-radius: 10px;
  padding-block: 40px 20px;
  padding-inline: 24px;
}
.login_area .tite {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.login_area form .form_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.login_area form .form_inner input {
  border: 1px solid #CFE1E8;
  padding: 0.7em;
  margin-top: 16px;
}
.login_area form .form_inner input::-webkit-input-placeholder {
  color: rgba(34, 88, 138, 0.5254901961);
}
.login_area form .form_inner input::-moz-placeholder {
  color: rgba(34, 88, 138, 0.5254901961);
}
.login_area form .form_inner input:-ms-input-placeholder {
  color: rgba(34, 88, 138, 0.5254901961);
}
.login_area form .form_inner input::-ms-input-placeholder {
  color: rgba(34, 88, 138, 0.5254901961);
}
.login_area form .form_inner input::placeholder {
  color: rgba(34, 88, 138, 0.5254901961);
}
@media only screen and (max-width: 767px) {
  .login_area form .form_inner input {
    width: 100%;
  }
}
.login_area form .form_inner input[type=checkbox] {
  width: auto;
}
.login_area form .form_inner .text {
  margin-top: 1em;
  text-align: right;
  font-size: 1.4rem;
}
.login_area form .form_inner .login_btn {
  width: 180px;
  height: 45px;
  font-size: 2rem;
  line-height: 0em;
  font-weight: bold;
  color: #325FBA;
  background-color: #FFF64D;
  border: solid 2px #325FBA;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  margin-top: 30px;
  cursor: pointer;
}

.buy_course {
  margin-top: 45px;
  margin-bottom: 45px;
}
.buy_course .title {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 0.8em;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .buy_course .title {
    margin-left: 0px;
    font-size: 2rem;
  }
}
.buy_course .course_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 16px;
}
@media only screen and (max-width: 767px) {
  .buy_course .course_list {
    display: block;
  }
}
.buy_course .course_list .course_item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 20px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 240px;
}
@media only screen and (max-width: 767px) {
  .buy_course .course_list .course_item {
    padding: 20px 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .buy_course .course_list .course_item + .course_item {
    margin-top: 16px;
  }
}
.buy_course .course_list .course_item .text_area {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .buy_course .course_list .course_item .text_area {
    text-align: center;
  }
}
.buy_course .course_list .course_item .text_area .course_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .buy_course .course_list .course_item .text_area .course_title {
    font-size: 2rem;
  }
}
.buy_course .course_list .course_item .text_area .course_count {
  font-size: 16px;
  font-weight: bold;
}
.buy_course .course_list .course_item .text_area .btn {
  width: 196px;
  height: 39px;
  font-size: 2rem;
  line-height: 0em;
  font-weight: bold;
  color: #325FBA;
  background-color: #FFF64D;
  border: solid 2px #325FBA;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  margin-top: 10px;
}

.recommend_course {
  margin-top: 45px;
}
.recommend_course .title {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 0.8em;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .recommend_course .title {
    font-size: 2rem;
  }
}
.recommend_course .course_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 16px;
}
@media only screen and (max-width: 767px) {
  .recommend_course .course_list {
    display: block;
  }
}
.recommend_course .course_list .course_item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .recommend_course .course_list .course_item + .course_item {
    margin-top: 16px;
  }
}
.recommend_course .course_list .course_item .img_area {
  height: 210px;
  overflow: hidden;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .recommend_course .course_list .course_item .img_area {
    height: 200px;
  }
}
.recommend_course .course_list .course_item .img_area img {
  width: 82%;
}
.recommend_course .course_list .course_item .text_area {
  padding: 25px 25px 20px;
}
.recommend_course .course_list .course_item .text_area .text {
  margin-bottom: 0.8em;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .recommend_course .course_list .course_item .text_area .text {
    font-size: 1.4rem;
  }
}
.recommend_course .course_list .course_item .text_area .name {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .recommend_course .course_list .course_item .text_area .name {
    font-size: 1.8rem;
  }
}
.recommend_course .course_list .course_item .text_area .price {
  text-align: right;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .recommend_course .course_list .course_item .text_area .price {
    font-size: 1.8rem;
  }
}
.recommend_course .course_list .course_item .text_area .btn {
  width: 228px;
  height: 39px;
  font-size: 2rem;
  line-height: 0em;
  font-weight: bold;
  color: #325FBA;
  background-color: #FFF64D;
  border: solid 2px #325FBA;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  margin-top: 12px;
}
.recommend_course .course_list .course_item .text_area .link_text {
  text-align: right;
  margin-top: 1em;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .recommend_course .course_list .course_item .text_area .link_text {
    font-size: 1.4rem;
  }
}

footer {
  width: 100%;
  height: 80px;
  background-color: #111C38;
}
footer .footer_top_wrapper {
  background-color: #111C38;
}
footer .footer_top_wrapper .top_inner {
  width: min(100% - 20px, 1200px);
  margin-inline: auto;
  padding-block: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  footer .footer_top_wrapper .top_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: min(100% - 40px, 1200px);
    padding-bottom: 0;
  }
}
footer .footer_top_wrapper .top_inner .footer_section {
  width: 25%;
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  footer .footer_top_wrapper .top_inner .footer_section {
    width: 100%;
    padding-right: 0;
    margin-bottom: 45px;
  }
}
footer .footer_top_wrapper .top_inner .footer_section .logo_img {
  width: 170px;
  padding-bottom: 0.8em;
}
footer .footer_top_wrapper .top_inner .footer_section .title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.8em;
}
footer .footer_top_wrapper .top_inner .footer_section .footer_list .footer_list_item {
  font-size: 1.4rem;
  padding-top: 1.2em;
}
footer .footer_top_wrapper .top_inner .footer_section .footer_list .footer_list_item a {
  color: #fff;
}
footer .footer_top_wrapper .bottom_inner {
  width: calc(100% - 100px);
  margin-inline: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  footer .footer_top_wrapper .bottom_inner {
    width: calc(100% - 40px);
    flex-direction: column;
  }
}
footer .footer_top_wrapper .bottom_inner .footer_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  footer .footer_top_wrapper .bottom_inner .footer_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .footer_top_wrapper .bottom_inner .footer_list .footer_list_item {
  font-size: 1.4rem;
  color: #fff;
}
footer .footer_top_wrapper .bottom_inner .footer_list .footer_list_item a {
  color: #fff;
}
footer .footer_top_wrapper .bottom_inner .footer_list .footer_list_item + .footer_list_item {
  margin-left: 1.2em;
}
@media only screen and (min-width: 768px) {
  footer .footer_top_wrapper .bottom_inner .footer_list.sp_copyright  {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer_top_wrapper .bottom_inner .footer_list .footer_list_item + .footer_list_item {
    margin-left: 0;
    margin-top: 1.2em;
  }

  footer .footer_top_wrapper .bottom_inner .footer_list.pc_copyright  {
    display: none;
  }

  footer .footer_top_wrapper .bottom_inner .footer_list.sp_copyright  {
    margin-top: 1.2em;
  }
}
footer .footer_top_wrapper small {
  margin-top: 1.5em;
  text-align: center;
  display: block;
  font-size: 1.4rem;
  color: #ffffff;
}
footer .footer_bottom_wrapper {
  background-color: #1D4A74;
  padding-block: 25px;
}
footer .footer_bottom_wrapper .management_inner {
  width: min(100% - 20px, 1200px);
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  footer .footer_bottom_wrapper .management_inner {
    width: min(100% - 40px, 1200px);
  }
}
footer .footer_bottom_wrapper .management_inner .title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  footer .footer_bottom_wrapper .management_inner .title {
    text-align: left;
  }
}
footer .footer_bottom_wrapper .management_inner .footer_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  footer .footer_bottom_wrapper .management_inner .footer_list {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
footer .footer_bottom_wrapper .management_inner .footer_list .footer_list_item {
  padding-bottom: 1.2em;
}
footer .footer_bottom_wrapper .management_inner .footer_list .footer_list_item a {
  color: #fff;
  border-right: 1px solid #fff;
  font-size: 1.4rem;
  padding-inline: 0.6em;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  footer .footer_bottom_wrapper .management_inner .footer_list .footer_list_item a {
    border-right: none;
  }
}
footer .footer_bottom_wrapper small {
  margin-top: 1em;
  text-align: center;
  display: block;
  font-size: 1.4rem;
  color: #cacaca;
}

.modal {
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
}
.modal .modal-content {
  width: 440px;
  background-color: #fefefe;
  padding: 10px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 1em;
  text-align: center;
  margin-inline: 15px;
}
.modal .modal-content .close {
  color: #111C38;
  float: right;
  font-size: 32px;
}
.modal .modal-content .close:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal .modal-content .modal_inner {
  width: 270px;
  margin-inline: auto;
}
.modal .modal-content .modal_inner .modal_icon_box {
  position: relative;
  margin-top: 40px;
  margin-bottom: 7px;
}
.modal .modal-content .modal_inner .modal_icon_box .three_stars {
  position: absolute;
  width: 55px;
  top: -40%;
  right: 0;
  bottom: 0;
  left: 40%;
  margin: 0 auto;
}
.modal .modal-content .modal_inner .modal_icon_box .cracker {
  width: 80px;
  margin-inline: auto;
}
.modal .modal-content .modal_inner .big_text {
  font-size: 3rem;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}
.modal .modal-content .modal_inner .x_btn_area {
  padding-top: 10px;
  padding-bottom: 15px;
}
.modal .modal-content .modal_inner .x_btn_area .x_post_btn {
  width: 230px;
  margin-inline: auto;
  height: 45px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.modal .modal-content .modal_inner .x_btn_area .x_post_btn img {
  width: 16px;
  margin-left: 5px;
  margin-bottom: 5px;
}

.endmovie_modal {
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 50%;
  top: 50%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  -webkit-animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.endmovie_modal .modal-content {
  width: 440px;
  background-color: #fefefe;
  padding: 10px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .endmovie_modal .modal-content {
    width: 50vw;
    padding: 0;
  }
}
.endmovie_modal .modal-content .close {
  color: #111C38;
  float: right;
  font-size: 32px;
}
@media only screen and (max-width: 767px) {
  .endmovie_modal .modal-content .close {
    font-size: 20px;
    margin: 5px 5px 0 0;
  }
}
.endmovie_modal .modal-content .close:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.endmovie_modal .modal-content .modal_inner {
  width: 75%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .endmovie_modal .modal-content .modal_inner {
    width: auto;
  }
}
.endmovie_modal .modal-content .modal_inner .modal_icon_box {
  position: relative;
  margin-top: 40px;
  margin-bottom: 7px;
}
@media only screen and (max-width: 767px) {
  .endmovie_modal .modal-content .modal_inner .modal_icon_box {
    margin-top: 30px;
  }
}
.endmovie_modal .modal-content .modal_inner .modal_icon_box .three_stars {
  position: absolute;
  width: 55px;
  top: -40%;
  right: 0;
  bottom: 0;
  left: 40%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .endmovie_modal .modal-content .modal_inner .modal_icon_box .three_stars {
    width: 7vw;
    top: -38%;
    left: 31%;
  }
}
.endmovie_modal .modal-content .modal_inner .modal_icon_box .cracker {
  width: 80px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .endmovie_modal .modal-content .modal_inner .modal_icon_box .cracker {
    width: 10vw;
  }
}
.endmovie_modal .modal-content .modal_inner .big_text {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .endmovie_modal .modal-content .modal_inner .big_text {
    font-size: 1.4rem;
  }
}
.endmovie_modal .modal-content .modal_inner .x_btn_area {
  padding-top: 10px;
  padding-bottom: 15px;
}
.endmovie_modal .modal-content .modal_inner .x_btn_area .x_post_btn {
  width: 240px;
  margin-inline: auto;
  height: 45px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .endmovie_modal .modal-content .modal_inner .x_btn_area .x_post_btn {
    width: 80%;
    height: 35px;
    font-size: 1.2rem;
  }
}
.endmovie_modal .modal-content .modal_inner .x_btn_area .x_post_btn img {
  width: 16px;
  margin-left: 2px;
}

#x_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
}
#x_modal .modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #000;
  background-color: #ebebeb;
  padding: 15px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
}
#x_modal .modal-content .close {
  font-size: 32px;
  color: #999;
  font-weight: bold;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
#x_modal .modal-content .close:hover {
  color: #555;
  text-decoration: none;
}
#x_modal .modal-content .modal_inner {
  padding: 25px 0 20px;
}
#x_modal .modal-content .x_area_box {
  padding: 15px;
  background-color: #fff;
  line-height: 1.4;
  border-radius: 8px;
}
#x_modal .modal-content .x_area_txt {
  padding: 10px;
  line-height: 1.4;
}
#x_modal .modal-content .mrt1em {
  margin-top: 1em;
}
#x_modal .modal-content .x_link {
  color: #1D9BF0;
}
#x_modal .modal-content .x_red {
  color: #f00;
  font-weight: bold;
}
#x_modal .modal-content .rei {
  text-indent: -1em;
  background-color: #ffe9e9;
}
#x_modal .modal-content .x_btn_area .x_post_btn {
  width: 160px;
  margin-inline: auto;
  height: 45px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
#x_modal .modal-content .x_btn_area .x_post_btn img {
  width: 16px;
  margin-left: 2px;
}
@media only screen and (max-width: 767px) {
  #x_modal .modal-content .x_btn_area .x_post_btn {
    height: 35px;
    font-size: 1.4rem;
  }
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px) translateX(-50%);
            transform: translateY(30px) translateX(-50%);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px) translateX(-50%);
            transform: translateY(30px) translateX(-50%);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
  }
}
.error-message {
  color: red;
  font-size: 14px;
  margin-block: 5px;
}

.p-top__important_notice {
  text-align: center;
  width: 70%;
  margin: 30px auto -30px;
  padding: 2rem;
  background-color: #FFEEEE;
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .p-top__important_notice {
    text-align: left;
    width: calc(100% - 20px);
    margin: 20px auto -15px;
    padding: 2rem;
  }
}
.p-top__important_notice__tag {
  line-height: 1.5;
  padding-bottom: 0.5rem;
  font-weight: bold;
  color: #434343;
}

.p-top__important_notice_txt {
  line-height: 1.5;
  font-size: 1.4rem;
  color: #FF3030;
  line-height: 1.7;
}

.p-top__important_notice_txt.txt02 {
  color: #333333;
}

.p-top__important_notice_txt span {
  font-weight: bold;
  font-size: 1.9rem;
}

.p-top__important_notice .text-b {
  font-weight: bold;
  font-size: 1.4rem;
}

.mentoringFlow h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-block: 120px 50px;
}
@media only screen and (max-width: 767px) {
  .mentoringFlow h1 {
    font-size: 24px;
    margin-block: 110px 30px;
  }
}
.mentoringFlow .mentoringFlow__sec {
  padding: 80px 0;
  border-top: 6px solid #ededed;
}
@media only screen and (max-width: 767px) {
  .mentoringFlow .mentoringFlow__sec {
    padding-block: 40px 15px;
  }
}
.mentoringFlow .mentoringFlow__sec .mentoringFlow__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .mentoringFlow .mentoringFlow__sec .mentoringFlow__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__img {
  padding-inline: 5%;
}
@media only screen and (max-width: 767px) {
  .mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__img {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    padding: 0;
  }
}
.mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__img iframe {
  width: 600px;
  height: 425px;
}
@media only screen and (max-width: 767px) {
  .mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__img iframe {
    width: 88vw;
    height: auto;
  }
}
.mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__text {
  width: 100%;
  padding-inline: 50px;
}
@media only screen and (max-width: 767px) {
  .mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__text {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 80%;
    padding: 0;
    margin: 0 auto;
  }
}
.mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__text .mentoringFlow__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__text .mentoringFlow__title {
    font-size: 20px;
    margin-top: 16px;
    margin-bottom: 20px;
  }
}
.mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__text .check__title {
  font-size: 22px;
  margin-top: 5px;
  font-weight: bold;
  text-indent: -0.5em;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__text .check__title {
    font-size: 16px;
    margin-top: 16px;
  }
}
.mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__text .check__title .check {
  font-weight: bold;
  color: #d4121c;
  font-size: 28px;
}
.mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__text .check__title a:hover {
  opacity: 0.8;
}
.mentoringFlow .mentoringFlow__sec .mentoringFlow__list .mentoringFlow__text + p {
  font-size: 14px;
}
.mentoringFlow .mentoringFlow__footerNote {
  border-top: 6px solid #ededed;
  padding-top: 24px;
}
@media only screen and (max-width: 767px) {
  .mentoringFlow .mentoringFlow__footerNote {
    font-size: 12px;
  }
}
.mentoringFlow .btn {
  margin: 40px auto 0 auto;
  display: block;
  text-align: center;
  color: #fff;
  width: 70%;
  max-width: 300px;
  font-weight: bold;
  height: 45px;
  line-height: 45px;
  border-radius: 2px;
  font-size: 13px;
  cursor: pointer;
  background-color: #454652;
}
@media only screen and (max-width: 767px) {
  .mentoringFlow .btn {
    margin: 40px auto 0 auto;
    display: block;
    text-align: center;
    color: #fff;
    width: 70%;
    max-width: 300px;
    font-weight: bold;
    height: 45px;
    line-height: 45px;
    border-radius: 2px;
    font-size: 13px;
    cursor: pointer;
    background-color: #454652;
  }
}
@media only screen and (max-width: 767px) {
  .mentoringFlow .btn--left {
    margin: 40px auto 0;
  }
}

main .edit_inner {
  width: 60vw;
  margin: 4vw auto;
}
main .edit_inner .form_area {
  -webkit-border-before: 1px solid #CFE1E8;
          border-block-start: 1px solid #CFE1E8;
}
main .edit_inner .form_area .form-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-border-after: 1px solid #CFE1E8;
          border-block-end: 1px solid #CFE1E8;
}
main .edit_inner .form_area .form-group select {
  text-align: center;
  margin: 0 auto;
  padding: 1.4rem 1rem;
  width: 30vw;
}
main .edit_inner .form_area .form-group select option {
  padding: 1rem 1rem;
}
main .edit_inner .form_area .form-group label {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 22px;
  width: 310px;
  height: auto;
  text-align: center;
  background-color: #EFF5F9;
}
main .edit_inner .form_area .form-group label span {
  font-size: 1.4rem;
}
main .edit_inner .form_area .form-group input {
  margin: 0 auto;
  text-align: center;
}
main .edit_inner .form_area .form-group input[type=text] {
  padding: 1.4rem 1rem;
}
main .edit_inner .form_area .form-group .input_title {
  width: 30vw;
}
main .edit_inner .form_area .form-group .text_area {
  padding: 150px 0;
}
main .edit_inner .form_area .form-group textarea {
  padding: 1.4rem 1rem;
  margin: 0 auto;
  height: 290px;
  width: 30vw;
  font-size: 1.4rem;
}
main .edit_inner .form_area .update_btn {
  text-align: center;
  margin-top: 30px;
}
main .edit_inner .form_area .update_btn button {
  padding: 12px 74px;
  background-color: #FFF64D;
  border: solid 2px #325FBA;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
}
main .edit_inner .form_area .update_btn button:hover {
  opacity: 0.7;
}/*# sourceMappingURL=user.css.map */
