@charset "utf-8";
/*----------------------
common parts
----------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 46px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 5%;
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
  background-color: #f9f9f9;
  border-bottom: 1px #eee solid;
}
.header-purple {
  background-color: #501ee0;
}
.header-inner {
  width: 100%;
  position: relative;
}
.header-title {
  padding: 0 0 14px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.header-purple  .header-title {
  color: #fff;
}
.header-back {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 13px;
  height: 22px;
  background-image: url("../icon/icon-back.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.main {
  background-color: #f6f8fd;
  padding: 46px 0 66px;
  padding-top: calc(constant(safe-area-inset-top) + 46px);
  padding-top: calc(env(safe-area-inset-top) + 46px);
  padding-bottom: calc(constant(safe-area-inset-top) + 66px);
  padding-bottom: calc(env(safe-area-inset-top) + 66px);
  min-height: 100vh;
}
.main:first-child {
  padding-top: 0;
}
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 46px;
  height: calc(constant(safe-area-inset-top) + 46px);
  height: calc(env(safe-area-inset-top) + 46px);
  background-color: #fff;
  font-size: 0;
  padding: 0 5%;
  border-top: 1px #ccc solid;
}
.footer-inner {
  margin: 0 auto;
  max-width: 480px;
}
.footer-menu {
  display: flex;
  justify-content: space-between;
}
.footer-item {
  width: 25%;
}
.footer-link {
  display: block;
  height: 46px;
  height: calc(constant(safe-area-inset-top) + 46px);
  height: calc(env(safe-area-inset-top) + 46px);
  padding: 28px 0 0;
  font-size: 10px;
  text-align: center;
  font-weight: 700;
  color: #a2a2a2;
  background-position: center top 5px;
  background-repeat: no-repeat;
  background-size: 22px;
}
.footer-link--active {
  color: #0312aa;
}
.footer-top {
  background-image: url("../icon/icon-top.svg");
}
.footer-lecture {
  background-image: url("../icon/icon-lecture.svg");
  background-position: center top 7px;
}
.footer-notice {
  background-image: url("../icon/icon-information.svg");
}
.footer-faq {
  background-image: url("../icon/icon-faq.svg");
}
.footer-link--active.footer-top {
  background-image: url("../icon/icon-top-current.svg");
}
.footer-link--active.footer-lecture {
  background-image: url("../icon/icon-lecture-current.svg");
}
.footer-link--active.footer-notice {
  background-image: url("../icon/icon-information-current.svg");
}
.footer-link--active.footer-faq {
  background-image: url("../icon/icon-faq-current.svg");
}
.view-load {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-load-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
[data-js-load] {
  opacity: 0;
  transition: opacity .4s;
}
.spinner-box {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%,-50%);
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.pulse-container {
  width: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pulse-bubble {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ccc;
}
.pulse-bubble-1 {
    animation: pulse .6s ease 0s infinite alternate;
}
.pulse-bubble-2 {
    animation: pulse .6s ease .3s infinite alternate;
}
.pulse-bubble-3 {
    animation: pulse .6s ease .6s infinite alternate;
}
@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: .25;
    transform: scale(.75);
  }
}
.connect-error {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.connect-error-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #f2f2f2;
  border: 1px #ccc solid;
  border-radius: 10px;
  width: 280px;
  padding: 30px;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}
.connect-error-mes {
  font-size: 14px;
  color: #0312aa;
  text-align: center;
}
.connect-error-btn {
  display: block;
  margin: 20px auto 0;
  width: 180px;
  height: 50px;
  border-radius: 25px;
  background-color: #aab7ff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #0312aa;
  padding: 15px 0;
  line-height: 20px;
  background-image: url("../icon/icon-right-white.svg");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 13px;
  cursor: pointer;
}

/*----------------------
common color
----------------------*/
.bg-media {
  background-color: #586ce7;
}
.bg-news {
  background-color: #a6b6f2;
}
.bg-event {
  background-color: #5ca7fc;
}

/*----------------------
enter
----------------------*/
.enter-load {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.enter-load-inner {
}
.enter-load-icon {
  width: 157px;
}
.enter-load-logo {
  width: 240px;
  margin-top: 15px;
}
.enter-login {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0312aa;
}
.enter-login-inner {
  width: 90%;
  max-width: 480px;
}
.enter-login-icon {
  width: 157px;
}
.enter-login-logo {
  width: 240px;
  margin-top: 15px;
}
.enter-login-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 40px 0 0;
}
.enter-login-form {
  margin: 40px 0 0;
}
.enter-login-error {
  color: #e30000;
  text-align: center;
  margin: 0 0 30px;
}
.enter-login-input {
  background-color: #f3f3f3;
  padding: 15px;
  font-size: 14px;
  border-radius: 2px;
  width: 100%;
}
.enter-login-input + .enter-login-input {
  margin: 30px 0 0;
}
.enter-login-label {
  display: inline-block;
  margin: 30px 0 0;
}
.enter-login-checkbox {
  display: none;
}
.enter-login-text {
  padding: 0 0 0 30px;
  position: relative;
}
.enter-login-text:before {
  content: "";
  background-color: #f3f3f3;
  border: 1px #ccc solid;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  width: 20px;
  height: 20px;
}
.enter-login-checkbox:checked + .enter-login-text:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translateY(-50%);
  z-index: 2;
  width: 20px;
  height: 20px;
  background-image: url("../icon/check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}
.enter-login-submit {
  margin: 40px 0 0;
  display: block;
  height: 60px;
  background-color: #edf0fb;
  border-radius: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding: 20px;
  background-image: url("../icon/icon-right-blue.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 18px;
}
@media screen and (max-height:639px){
  .enter-login {
    position: relative;
    height: auto;
    padding: 60px 0;
  }
  .enter-login-icon {
    width: 104px;
  }
  .enter-login-logo {
    width: 158px;
    margin-top: 10px;
  }
  .enter-login-title {
    margin: 25px 0 0;
  }
  .enter-login-form {
    margin: 25px 0 0;
  }
  .enter-login-error {
    margin: 0 0 20px;
  }
  .enter-login-input + .enter-login-input {
    margin: 20px 0 0;
  }
  .enter-login-label {
    margin: 20px 0 0;
  }
  .enter-login-submit {
    margin: 30px 0 0;
  }
}
/*----------------------
recognition
----------------------*/
.recognition {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(.25turn, #501ee0, #3d09a8);
}
.recognition-inner {
  width: 80vw;
  height: 80vw;
  max-width: 500px;
  max-height: 500px;
  border: 4px #36b1ff solid;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}
.recognition-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 12px transparent solid;
  border-radius: 100%;
}
.recognition-camera {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  border-radius: 100%;
  z-index: 1;
}
.recognition-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 1;
  opacity: 0;
}
.recognition-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60%;
  height: 60%;
  background-image: url("../img/camera-frame.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.recognition-wait {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 3;
  color: #fff;
  font-size: 24px;
  display: none;
  white-space: nowrap;
}
.recognition--progress {
  animation: recognitionProgress1 4s infinite linear;
}
.recognition--progress .recognition-wait {
  display: block;
  animation: recognitionProgress2 5s infinite linear;
}

@keyframes recognitionProgress1 {
  0% {
    border-color: #36b1ff;
  }
  50% {
    border-color: #501ee0;
  }
  100% {
    border-color: #36b1ff;
  }
}
@keyframes recognitionProgress2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*----------------------
top
----------------------*/
.top-header {
  background-color: #501ee0;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 16px 5% 150px;
  padding-top: calc(constant(safe-area-inset-top) + 16px);
  padding-top: calc(env(safe-area-inset-top) + 16px);
}
.top-header-title {
  font-size: 17px;
}
.top-header-link {
  position: absolute;
  top: 16px;
  top: calc(constant(safe-area-inset-top) + 16px);
  top: calc(env(safe-area-inset-top) + 16px);
  right: 5%;
  width: 21px;
  height: 24px;
  background-image: url("../icon/user.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-header-name {
  font-size: 24px;
  margin: 25px 0 0;
}
.top-header-id {
  font-size: 11px;
  word-break: break-all;
  color: #b0d0ff;
  margin: 15px 0 0;
}
.top-main {
  position: relative;
  z-index: 2;
  margin: -125px 0 0;
  padding: 0 5%;
  color: #0312aa;
}
.top-01 {
  margin: 0 auto;
  max-width: 480px;
  background-color: #fff;
  border-radius: 10px;
  padding: 12px 12px 16px;
  display: flex;
  justify-content: space-between;
}
.top-01-left {
  width: 50%;
}
.top-01-left-title {
  font-size: 12px;
  font-weight: 700;
}
.top-01-left-box {
  margin: 20px 0 0;
  max-width: 144px;
}
.top-01-right {
  min-width: 40%;
  flex-shrink: 0;
  padding: 0 0 0 16px;
}
.top-01-right-title {
  font-size: 12px;
}
.top-01-right-total {
  margin: 10px 0 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  font-family: 'Ubuntu Condensed';
}
.top-01-right-total span {
  font-size: 42px;
}
.top-01-right-total i {
  font-size: 12px;
  padding: 0 0 0 5px;
}
.top-01-right-box {
  margin: 10px 0 0;
}
.top-01-right-item {
  position: relative;
  padding: 0 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-01-right-item + .top-01-right-item {
  margin: 5px 0 0;
}
.top-01-right-item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
}
.top-01-right-item:nth-child(1):before {
  background-color: #0312aa;
}
.top-01-right-item:nth-child(2):before {
  background-color: #36b1ff;
}
.top-01-right-item:nth-child(3):before {
  background-color: #eee;
}
.top-01-right-text {
  font-size: 12px;
  width: 60px;
}
.top-01-right-result {
  font-family: 'Ubuntu Condensed';
  font-size: 20px;
  font-weight: 700;
}
.top-01-right-result span {
  font-size: 16px;
}
.top-01-right-result i {
  font-size: 12px;
  padding: 0 0 0 5px;
}
.top-02 {
  margin: 12px auto 0;
  max-width: 480px;
  display: flex;
}
.top-02-item {
  width: calc(50% - 8px);
  background-color: #fff;
  padding: 12px;
  border-radius: 10px;
}
.top-02-item:first-child {
  margin: 0 6px 0 0;
}
.top-02-item:last-child {
  margin: 0 0 0 6px;
}
.top-02-title {
  font-size: 12px;
  font-weight: 700;
}
.top-02-box {
  margin: 10px 0 0;
  display: flex;
}
.top-02-child:first-child {
  width: 40%;
  padding: 0 8px 0 0;
}
@media screen and (min-width:376px) {
  .top-02-child:first-child {
    width: 100%;
    flex-shrink: 1;
  }
}
.top-02-child:last-child {
  width: 60%;
  border-left: 1px #ccc solid;
  padding: 0 0 0 8px;
}
@media screen and (min-width:376px) {
  .top-02-child:last-child {
    width: 50%;
    min-width: 82px;
    flex-shrink: 0;
  }
}
.top-02-text {
  font-size: 12px;
}
@media screen and (max-width:374px) {
  .top-02-text {
    font-size: 10px;
  }
}
.top-02-top {
  margin: 5px 0 0;
  font-family: 'Ubuntu Condensed';
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  width: 25px;
  text-align: center;
}
.top-02-bottom {
  font-family: 'Ubuntu Condensed';
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  line-height: 1;
}
.top-02-bottom span {
  font-size: 12px;
}
.top-02-per {
  margin: 5px 0 0;
  height: 40px;
  display: flex;
  align-items: flex-end;
  font-family: 'Ubuntu Condensed';
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width:374px) {
  .top-02-per {
    font-size: 20px;
  }
}
.top-02-per span {
  font-size: 15px;
  padding: 0 0 2px;
}
@media screen and (max-width:374px) {
  .top-02-per span {
    font-size: 12px;
    padding: 0 0 1px;
  }
}
.top-02-per i {
  font-size: 12px;
  padding: 0 0 2px 5px;
}
@media screen and (max-width:374px) {
  .top-02-per i {
    padding: 0 0 1px 5px;
  }
}
.top-03 {
  margin: 12px auto 0;
  max-width: 480px;
  display: flex;
  flex-wrap: wrap;
}
.top-03-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 12px 12px 18px;
}
.top-03-item:nth-child(1) {
  width: calc(50% - 6px);
  margin: 0 6px 0 0;
}
.top-03-item:nth-child(2) {
  width: calc(50% - 6px);
  margin: 0 0 0 6px;
}
.top-03-item:nth-child(3) {
  width: 100%;
  margin: 12px 0 0;
}
.top-03-title {
  font-size: 12px;
  font-weight: 700;
}
.top-03-text {
  font-size: 12px;
  text-align: center;
  margin: 8px 0 0;
}
/*----------------------
mypage
----------------------*/
.mypage-title {
  font-size: 12px;
  line-height: 25px;
  color: #a2a2a2;
  padding: 0 5%;
}
.mypage-list {
  background-color: #fff;
  border-bottom: 1px #ccc solid;
  padding: 0 5%;
}
.mypage-list + .mypage-list {
  margin: 30px 0 0;
}
.mypage-item {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mypage-item + .mypage-item {
  border-top: 1px #ccc solid;
}
.mypage-head {
  font-size: 14px;
  font-weight: 700;
  width: 75px;
  flex-shrink: 0;
}
.mypage-data {
  font-size: 13px;
  word-break: break-all;
}
.mypage-logout {
  display: flex;
  width: 100%;
  height: 55px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #36b1ff;
  margin: 30px 0 0;
  background-color: #fff;
}
/*----------------------
notice
----------------------*/
.notice-none {
  text-align: center;
  padding: 20px 0;
  color: #333;
  font-size: 14px;
}
.notice-list {
  background-color: #fff;
  border-bottom: 1px #ccc solid;
}
.notice-item + .notice-item {
  position: relative;
}
.notice-item + .notice-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  border-bottom: 1px #ccc solid;
}
.notice-link {
  display: block;
  padding: 25px 8% 25px 7%;
  background-image: url("../icon/icon-right-gray.svg");
  background-position: right 5% center;
  background-repeat: no-repeat;
  background-size: 6px;
  color: #0312aa;
}
.notice-item:first-child .notice-link {
  padding: 30px 8% 25px 7%;
}
.notice-data {
  display: flex;
  align-items: center;
}
.notice-category {
  width: 55px;
  height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  color: #fff;
  margin: 0 20px 0 0;
  padding: 0 0 1px;
  border-radius: 2px;
}
.notice-date {
  font-size: 12px;
}
.notice-title {
  font-size: 14px;
  margin: 15px 0 0;
  white-space: nowrap;
  overflow: hidden;
  height: 21px;
  text-overflow: ellipsis;
}
/*----------------------
notice-detail
----------------------*/
.notice-detail-header {
  background-color: #fff;
  padding: 30px 5% 25px;
  color: #0312aa;
}
.notice-detail-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notice-detail-category {
  width: 55px;
  height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  color: #fff;
  margin: 0 20px 0 0;
  padding: 0 0 1px;
  border-radius: 2px;
}
.notice-detail-date {
  font-size: 12px;
}
.notice-detail-title {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 0;
}
.notice-detail-inner {
  padding: 5px 5% 10px;
  font-size: 14px;
}
.notice-detail-inner p {
  margin: 30px 0 0;
}
.notice-detail-inner p + p {
  margin: 20px 0 0;
}
.notice-detail-inner img {
  margin: 30px 0 0;
}
/*----------------------
faq
----------------------*/
.faq-list {
  border-bottom: 1px #ccc solid;
  background-color: #fff;
}
.faq-item {
  position: relative;
}
.faq-item + .faq-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  border-bottom: 1px #ccc solid;
}
.faq-link {
  padding: 20px 9% 20px calc(5% + 40px);
  position: relative;
  display: block;
  background-image: url("../icon/icon-right-gray.svg");
  background-position: right 5% center;
  background-repeat: no-repeat;
  background-size: 6px;
}
.faq-num {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #0312aa;
  border-radius: 100%;
  color: #fff;
  font-family: 'Ubuntu Condensed';
  font-size: 15px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-title {
  font-size: 14px;
  color: #0312aa;
  font-weight: 700;
}
/*----------------------
sadf
----------------------*/
.faq-detail-hader {
  padding: 20px 5%;
  position: relative;
  background-color: #fff;
}
.faq-detail-q {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #0312aa;
  border-radius: 100%;
  color: #fff;
  font-family: 'Ubuntu Condensed';
  font-size: 15px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-detail-title {
  padding: 0 0 0 40px;
  font-size: 14px;
  color: #0312aa;
  font-weight: 700;
}
.faq-detail-inner {
  padding: 20px 5% 0;
  position: relative;
}
.faq-detail-a {
  position: absolute;
  top: 15px;
  left: 5%;
  width: 30px;
  height: 30px;
  background-color: #c6c9f7;
  border-radius: 100%;
  color: #fff;
  font-family: 'Ubuntu Condensed';
  font-size: 15px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-detail-text {
  padding: 0 0 0 40px;
  font-size: 13px;
}
/*----------------------
contact
----------------------*/
.contact-error {
  color: #e30000;
  text-align: center;
  padding: 20px 0 0;
  font-size: 13px;
}
.contact {
  display: block;
}
.contact-confirm {
  display: none;
}
.contact-complete {
  display: none;
}
.contact-header {
  background-color: #501ee0;
  padding: 20px 5%;
}
.contact-mes {
  color: #fff;
  font-size: 13px;
  text-align: center;
}
.contact-inner {
  padding: 20px 5%;
}
.contact-box {
  margin: 0 -8px;
  display: flex;
  flex-wrap: wrap;
}
.contact-box-confirm {
  margin: 0 -2.5%;
}
.contact-item {
  width: 100%;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
}
.contact-box-confirm .contact-item {
  padding: 0 -2.5%;
}
.contact-item:nth-child(1),
.contact-item:nth-child(2),
.contact-item:nth-child(4),
.contact-item:nth-child(5) {
  width: 50%;
}
.contact-item:nth-child(n+3) {
  margin: 16px 0 0;
}
.contact-box-confirm .contact-item:nth-child(n+3) {
  padding: 16px 2.5% 0;
  border-top: 1px #ccc solid;
}
.contact-title {
  font-size: 14px;
  font-weight: 700;
  color: #0312aa;
  flex-shrink: 0;
}
.contact-text {
  color: #0312aa;
  font-size: 13px;
  margin: 5px 0 0;
  word-break: break-all;
}
.contact-form {
  height: 100%;
  flex-shrink: 1;
  margin: 5px 0 0;
  padding: 10px 15px;
  background-color: #fff;
  border-radius: 2px;
  font-size: 13px;
  word-break: break-all;
}
.contact-textarea {
  height: 115px;
  margin: 5px 0 0;
  padding: 10px 15px;
  background-color: #fff;
  border-radius: 2px;
  font-size: 13px;
}
.contact-btn-box {
  margin: 30px auto 0;
  max-width: 480px;
}
.contact-submit {
  display: block;
  height: 46px;
  background-color: #36b1ff;
  border-radius: 23px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  padding: 15px;
  transition: background-color .4s;
}
.contact-submit--disable {
  pointer-events: none;
  opacity: 0.6;
  background-color: #999;
}
.contact-logo {
  height: 150px;
  background-image: url("../img/logo-all.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 172px;
}
/*----------------------
lecture
----------------------*/
.lecture-error {
  color: #e30000;
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
}
.lecture-comp {
  color: #0312aa;
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
}
.lecture-hader {
  height: 40px;
  display: flex;
}
.lecture-tab-head {
  width: 50%;
  border-bottom: 4px #b5b6bf solid;
  color: #b5b6bf;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  line-height: 16px;
  cursor: pointer;
}
.lecture-tab-head--active {
  border-bottom: 4px #0312aa solid;
  color: #0312aa;
  pointer-events: none;
}
.lecture-inner {
  padding: 0 5%;
}
.lecture-tab-item {
  display: none;
}
.lecture-tab-item--active {
  display: block;
}
.lecture-mes {
  text-align: center;
  font-size: 13px;
  color: #0312aa;
  margin: 25px 0 0;
}
.lecture-list {
  margin: 20px auto 0;
  max-width: 480px;
}
.lecture-none {
  text-align: center;
  padding: 20px 0;
  color: #333;
  font-size: 14px;

}
.lecture-item + .lecture-item {
  margin: 15px 0 0;
}
.lecture-link {
  display: flex;
  background-color: #fff;
  padding: 0 40px 0 0;
  background-image: url("../icon/icon-play-blue.svg");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 21px;
  position: relative;
}
.lecture-taken {
  background-image: url("../icon/icon-taken.svg");
}
.lecture-tag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50px;
  height: 16px;
  text-align: center;
  font-size: 10px;
  color: #fff;
  background-color: #36b1ff;
}
.lecture-image {
  width: 116px;
  height: 75px;
  flex-shrink: 0;
  flex-grow: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 12px 0 0;
}
.lecture-box {
  padding: 8px 0;
  flex-shrink: 1;
  flex-grow: 1;
}
.lecture-title {
  display: flex;
  align-items: center;
  color: #0312aa;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}
.lecture-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  background-color: #0312aa;
  border-radius: 4px;
  font-family: 'Ubuntu Condensed';
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin: 0 5px 0 0;
}
.lecture-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 5px 0 0;
  font-size: 12px;
}
/*----------------------
lecture-detail
----------------------*/
.lecture-detail-movie {
  position: relative;
  cursor: pointer;
}
.lecture-detail-movie:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 54px;
  height: 54px;
  background-image: url("../icon/icon-play-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lecture-detail-thumb {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}
.lecture-detail-header {
  padding: 0 5%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #501ee0;
  color: #fff;
}
.lecture-detail-title {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
}
.lecture-detail-num {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  color: #501ee0;
  background-color: #fff;
  display: flex;
  align-content: center;
  justify-content: center;
  font-family: 'Ubuntu Condensed';
  font-size: 17px;
  font-weight: 700;
  margin: 0 10px 0 0;
}
.lecture-detail-status {
  width: 60px;
  height: 20px;
  border: 1px #fff solid;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #0312aa;
}
.lecture-detail-taken {
  background-color: transparent;
  color: #fff;
  font-weight: 400;
}
.lecture-detail-wrap {
  padding: 0 5%;
  background-color: #fff;
}
.lecture-detail-text {
  padding: 10px 0;
  font-size: 13px;
}
.lecture-detail-text + .lecture-detail-text {
  border-top: 1px #ccc solid;
}
.lecture-detail-info {
  padding: 30px 2.5%;
  display: flex;
  flex-wrap: wrap;
  color: #0312aa;
}
.lecture-detail-item {
  width: 33.333333%;
  padding: 0 2.5%;
}
.lecture-detail-item:nth-child(n+4) {
  margin: 30px 0 0;
}
.lecture-detail-head {
  font-size: 13px;
  font-weight: 700;
}
.lecture-detail-data {
  font-size: 13px;
}
.lecture-detail-btn {
  border-radius: 4px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  font-size: 13px;
  font-weight: 700;
}
.lecture-detail-btn:before {
  content: "";
  width: 17px;
  height: 14px;
  margin: 0 5px 0 0;
  background-image: url("../icon/icon-mail.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lecture-detail-item--disable .lecture-detail-btn {
  display: none;
  pointer-events: none;
}
/*----------------------
modal-common
----------------------*/
.modal--active {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.modal-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  z-index: 101;
  display: none;
}
.modal-movie--error .modal-screen {
  z-index: 103;
}
.modal-btn {
  width: 180px;
  height: 50px;
  border-radius: 25px;
  background-color: #aab7ff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #0312aa;
  padding: 15px 0;
  line-height: 20px;
  background-image: url("../icon/icon-right-white.svg");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 13px;
}
/*----------------------
modal-movie
----------------------*/
.modal-movie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  z-index: 102;
  display: none;
}
.modal-movie-header {
  display: flex;
  justify-content: flex-end;
  padding: 20px 5%;
  margin: 0 auto;
  max-width: calc(480px + 10%);
  align-items: flex-end;
}
.modal-movie-close {
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-close.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.modal-movie-title {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  margin: 15px 0 0;
  text-align: center;
}
.modal-movie-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 480px;
}
.modal-movie-screen {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-movie--error .modal-movie-screen {
  pointer-events: none;
}
.modal-movie-item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.modal-movie-info {
  margin: 15px auto 0;
  padding: 0 5%;
  display: flex;
  align-items: center;
  max-width: calc(480px + 10%);
}
.modal-movie-current {
  color: #fff;
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
  flex-grow: 0;
  margin: 0 10px 0 0;
  width: 40px;
}
.modal-movie-time {
  color: #fff;
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
  flex-grow: 0;
  margin: 0 0 0 10px;
  width: 35px;
}
.modal-movie-bar {
  width: 100%;
  height: 5px;
  background-color: #7b7b7b;
  display: flex;
}
.modal-movie-bar > * {
  background-color: #36b1ff;
  display: inline-block;
  height: 5px;
}
.modal-movie-bar-0p {  width: 0%; }
.modal-movie-bar-1p {  width: 1%; }
.modal-movie-bar-2p {  width: 2%; }
.modal-movie-bar-3p {  width: 3%; }
.modal-movie-bar-4p {  width: 4%; }
.modal-movie-bar-5p {  width: 5%; }
.modal-movie-bar-6p {  width: 6%; }
.modal-movie-bar-7p {  width: 7%; }
.modal-movie-bar-8p {  width: 8%; }
.modal-movie-bar-9p {  width: 9%; }
.modal-movie-bar-10p {  width: 10%; }
.modal-movie-bar-11p {  width: 11%; }
.modal-movie-bar-12p {  width: 12%; }
.modal-movie-bar-13p {  width: 13%; }
.modal-movie-bar-14p {  width: 14%; }
.modal-movie-bar-15p {  width: 15%; }
.modal-movie-bar-16p {  width: 16%; }
.modal-movie-bar-17p {  width: 17%; }
.modal-movie-bar-18p {  width: 18%; }
.modal-movie-bar-19p {  width: 19%; }
.modal-movie-bar-20p {  width: 20%; }
.modal-movie-bar-21p {  width: 21%; }
.modal-movie-bar-22p {  width: 22%; }
.modal-movie-bar-23p {  width: 23%; }
.modal-movie-bar-24p {  width: 24%; }
.modal-movie-bar-25p {  width: 25%; }
.modal-movie-bar-26p {  width: 26%; }
.modal-movie-bar-27p {  width: 27%; }
.modal-movie-bar-28p {  width: 28%; }
.modal-movie-bar-29p {  width: 29%; }
.modal-movie-bar-30p {  width: 30%; }
.modal-movie-bar-31p {  width: 31%; }
.modal-movie-bar-32p {  width: 32%; }
.modal-movie-bar-33p {  width: 33%; }
.modal-movie-bar-34p {  width: 34%; }
.modal-movie-bar-35p {  width: 35%; }
.modal-movie-bar-36p {  width: 36%; }
.modal-movie-bar-37p {  width: 37%; }
.modal-movie-bar-38p {  width: 38%; }
.modal-movie-bar-39p {  width: 39%; }
.modal-movie-bar-40p {  width: 40%; }
.modal-movie-bar-41p {  width: 41%; }
.modal-movie-bar-42p {  width: 42%; }
.modal-movie-bar-43p {  width: 43%; }
.modal-movie-bar-44p {  width: 44%; }
.modal-movie-bar-45p {  width: 45%; }
.modal-movie-bar-46p {  width: 46%; }
.modal-movie-bar-47p {  width: 47%; }
.modal-movie-bar-48p {  width: 48%; }
.modal-movie-bar-49p {  width: 49%; }
.modal-movie-bar-50p {  width: 50%; }
.modal-movie-bar-51p {  width: 51%; }
.modal-movie-bar-52p {  width: 52%; }
.modal-movie-bar-53p {  width: 53%; }
.modal-movie-bar-54p {  width: 54%; }
.modal-movie-bar-55p {  width: 55%; }
.modal-movie-bar-56p {  width: 56%; }
.modal-movie-bar-57p {  width: 57%; }
.modal-movie-bar-58p {  width: 58%; }
.modal-movie-bar-59p {  width: 59%; }
.modal-movie-bar-60p {  width: 60%; }
.modal-movie-bar-61p {  width: 61%; }
.modal-movie-bar-62p {  width: 62%; }
.modal-movie-bar-63p {  width: 63%; }
.modal-movie-bar-64p {  width: 64%; }
.modal-movie-bar-65p {  width: 65%; }
.modal-movie-bar-66p {  width: 66%; }
.modal-movie-bar-67p {  width: 67%; }
.modal-movie-bar-68p {  width: 68%; }
.modal-movie-bar-69p {  width: 69%; }
.modal-movie-bar-70p {  width: 70%; }
.modal-movie-bar-71p {  width: 71%; }
.modal-movie-bar-72p {  width: 72%; }
.modal-movie-bar-73p {  width: 73%; }
.modal-movie-bar-74p {  width: 74%; }
.modal-movie-bar-75p {  width: 75%; }
.modal-movie-bar-76p {  width: 76%; }
.modal-movie-bar-77p {  width: 77%; }
.modal-movie-bar-78p {  width: 78%; }
.modal-movie-bar-79p {  width: 79%; }
.modal-movie-bar-80p {  width: 80%; }
.modal-movie-bar-81p {  width: 81%; }
.modal-movie-bar-82p {  width: 82%; }
.modal-movie-bar-83p {  width: 83%; }
.modal-movie-bar-84p {  width: 84%; }
.modal-movie-bar-85p {  width: 85%; }
.modal-movie-bar-86p {  width: 86%; }
.modal-movie-bar-87p {  width: 87%; }
.modal-movie-bar-88p {  width: 88%; }
.modal-movie-bar-89p {  width: 89%; }
.modal-movie-bar-90p {  width: 90%; }
.modal-movie-bar-91p {  width: 91%; }
.modal-movie-bar-92p {  width: 92%; }
.modal-movie-bar-93p {  width: 93%; }
.modal-movie-bar-94p {  width: 94%; }
.modal-movie-bar-95p {  width: 95%; }
.modal-movie-bar-96p {  width: 96%; }
.modal-movie-bar-97p {  width: 97%; }
.modal-movie-bar-98p {  width: 98%; }
.modal-movie-bar-99p {  width: 99%; }
.modal-movie-bar-100p {  width: 100%; }
/*----------------------
modal-camera
----------------------*/
.modal-camera {
  position: fixed;
  top: 20px;
  left: 100%;
  width: 70px;
  height: 70px;
  z-index: 100;
  background-color: #333;
}
.modal--active .modal-camera {
  left: 20px;
}
.modal-camera-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.modal-camera-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/*----------------------
modal-error
----------------------*/
.modal-error {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 110;
  padding: 120px 20px 30px;
  width: 280px;
  background-color: #fff;
  border-radius: 10px;
  background-image: url("../img/movie-error.png");
  background-position: center top 30px;
  background-repeat: no-repeat;
  background-size: 80px;
  text-align: center;
  display: none;
}
.modal-error-title {
  margin: 25px 0 0;
  font-weight: 600;
  font-size: 18px;
  color: #0312aa;
}
.modal-error-text {
  font-size: 13px;
  margin: 20px 0;
  color: #0312aa;
  text-align: left;
}

/*----------------------
modal-login
----------------------*/
.modal-login {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 110;
  padding: 100px 20px 30px;
  width: 280px;
  background-color: #fff;
  border-radius: 10px;
  background-image: url("../img/img-top-06.png");
  background-position: center top 30px;
  background-repeat: no-repeat;
  background-size: 70px;
  text-align: center;
  display: none;
}
.modal-login-title {
  margin: 20px 0 0;
  font-weight: 600;
  font-size: 18px;
  color: #0312aa;
}
.modal-login-text {
  font-size: 13px;
  margin: 15px 0;
  color: #0312aa;
}
.modal-login-input {
  font-size: 14px;
}
.modal-login-input {
  background-color: #f3f3f3;
  padding: 10px;
  font-size: 13px;
  border-radius: 2px;
  width: 100%;
  margin: 0 0 15px;
}
.modal-login-input + .modal-login-input {
  margin: 0 0 20px;
}

