:root {
  --green: #39a935;
  --blue: #1f61ad;
  --pink: #e6007e;
  --yellow: #f6c900;
  --red: #e60012;
  --dark: #111;
  --light-gray: #f2f2f2;
}

* {
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  color: var(--dark);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.v-pc {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .v-pc {
    display: none !important;
  }
}

.v-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .v-sp {
    display: block !important;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

a:hover {
  opacity: 0.7;
}

p {
  font-feature-settings: "palt";
}

.mv-block {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/assets/2026/img/digital-course/mv-bg.webp") no-repeat top center;
  background-size: cover;
}
.mv-block .mv {
  width: 100%;
  max-width: 1080px;
}
@media only screen and (max-width: 768px) {
  .mv-block .mv {
    max-width: 100%;
  }
}

.page-wrap {
  padding: 24px 16px 40px;
}
@media only screen and (max-width: 768px) {
  .page-wrap {
    padding: 16px 12px 32px;
  }
}
.page-wrap .flyer {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer {
    border-radius: 18px;
    margin-top: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }
}
.page-wrap .flyer .section-body {
  padding: 20px 24px 28px;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body {
    padding: 18px 14px 24px;
  }
}
.page-wrap .flyer .section-body .course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .course-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.page-wrap .flyer .section-body .course-grid .lesson-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 3px solid var(--card-color);
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .course-grid .lesson-card {
    border-radius: 16px;
  }
}
.page-wrap .flyer .section-body .course-grid .lesson-card.illust {
  --card-color: var(--green);
}
.page-wrap .flyer .section-body .course-grid .lesson-card.programming {
  --card-color: var(--blue);
}
.page-wrap .flyer .section-body .course-grid .lesson-card .lesson-header {
  background: var(--card-color);
  color: #fff;
  padding: 10px 16px;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.35;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .course-grid .lesson-card .lesson-header {
    padding: 10px 14px;
    font-size: 1.05rem;
    line-height: 1.45;
  }
}
.page-wrap .flyer .section-body .course-grid .lesson-card .lesson-header small {
  display: inline-block;
  background: #fff;
  color: var(--card-color);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.72rem;
  margin-left: 4px;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .course-grid .lesson-card .lesson-header small {
    font-size: 0.68rem;
    padding: 2px 8px;
  }
}
.page-wrap .flyer .section-body .course-grid .lesson-card .lesson-body {
  padding: 14px 16px 16px;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .course-grid .lesson-card .lesson-body {
    padding: 14px;
  }
}
.page-wrap .flyer .section-body .course-grid .lesson-card .lesson-body .recommend {
  display: inline-block;
  background: var(--card-color);
  color: #fff;
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 0.86rem;
  font-weight: 900;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .course-grid .lesson-card .lesson-body .recommend {
    font-size: 0.82rem;
  }
}
.page-wrap .flyer .section-body .course-grid .lesson-card .lesson-body .lesson-text {
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 12px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .course-grid .lesson-card .lesson-body .lesson-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}
.page-wrap .flyer .section-body .course-grid .lesson-card .lesson-body .lesson-time {
  background: #f8fbff;
  border-radius: 12px;
  padding: 10px 12px;
  border: 2px dashed rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .course-grid .lesson-card .lesson-body .lesson-time {
    padding: 10px;
  }
}
.page-wrap .flyer .section-body .course-grid .lesson-card .lesson-body .lesson-time .lesson-time-title {
  color: var(--card-color);
  font-weight: 900;
  margin-bottom: 4px;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .course-grid .lesson-card .lesson-body .lesson-time .lesson-time-title {
    font-size: 0.95rem;
  }
}
.page-wrap .flyer .section-body .course-grid .lesson-card .lesson-body .lesson-time ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .course-grid .lesson-card .lesson-body .lesson-time ul {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
.page-wrap .flyer .section-body .bottom-info {
  display: grid;
  gap: 22px;
  margin-top: 22px;
  align-items: stretch;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .bottom-info {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }
}
.page-wrap .flyer .section-body .bottom-info .deadline-place {
  display: grid;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .bottom-info .deadline-place {
    gap: 10px;
  }
}
.page-wrap .flyer .section-body .bottom-info .deadline-place .info-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .bottom-info .deadline-place .info-row {
    grid-template-columns: 58px 1fr;
    gap: 8px;
  }
}
.page-wrap .flyer .section-body .bottom-info .deadline-place .info-row .circle-label {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #21a8df;
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
  font-size: 0.9rem;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .bottom-info .deadline-place .info-row .circle-label {
    width: 52px;
    height: 52px;
    font-size: 0.78rem;
  }
}
.page-wrap .flyer .section-body .bottom-info .deadline-place .info-row .big-info {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .bottom-info .deadline-place .info-row .big-info {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
.page-wrap .flyer .section-body .bottom-info .notice-box {
  background: #f3fbff;
  border-radius: 18px;
  padding: 16px 18px;
  border: 3px solid #21a8df;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .bottom-info .notice-box {
    border-radius: 14px;
    padding: 14px;
  }
}
.page-wrap .flyer .section-body .bottom-info .notice-box .notice-title {
  color: #0068b7;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .bottom-info .notice-box .notice-title {
    font-size: 1.15rem;
    line-height: 1.4;
  }
}
.page-wrap .flyer .section-body .bottom-info .notice-box .notice-list {
  margin-bottom: 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .bottom-info .notice-box .notice-list {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}
.page-wrap .flyer .section-body .line-section {
  background: linear-gradient(135deg, #06C755 0%, #00B900 100%);
  padding: 40px 20px;
  margin: 40px 0;
  border-radius: 15px;
  text-align: center;
  color: #FFF;
}
.page-wrap .flyer .section-body .line-section .line-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}
.page-wrap .flyer .section-body .line-section .line-text {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
}
.page-wrap .flyer .section-body .line-section .line-button {
  display: inline-block;
  background: white;
  color: #06C755;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.page-wrap .flyer .section-body .line-section .line-button:hover {
  transform: translateY(3px);
  background: #f0f0f0;
}
.page-wrap .flyer .section-body .line-section .line-notice {
  color: white;
  font-size: 14px;
  margin-top: 20px;
  opacity: 0.9;
}
.page-wrap .flyer .section-body .entry-link {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .entry-link {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .entry-link .entry-title {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.page-wrap .flyer .section-body .entry-link .link a {
  color: #FFF;
  background-color: var(--blue);
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .entry-link .link a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.page-wrap .flyer .section-body .contact {
  margin-top: 18px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
}
@media only screen and (max-width: 768px) {
  .page-wrap .flyer .section-body .contact {
    font-size: 0.85rem;
    line-height: 1.7;
  }
}

.date-main small {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  vertical-align: middle;
  margin-left: 4px;
}
@media only screen and (max-width: 768px) {
  .date-main small {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}

.time-pill {
  display: inline-block;
  background: #d81b60;
  color: #fff;
  border-radius: 999px;
  padding: 4px 18px;
  font-size: 0.95rem;
  font-weight: 900;
}
@media only screen and (max-width: 768px) {
  .time-pill {
    padding: 4px 14px;
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=digital-course.css.map */
