@charset "UTF-8";

/* =========================================================
   p-visitor.css
   訪問者別まとめカテゴリ専用スタイル

   方針:
   - モバイルファースト
   - PC切り替えは 900px 以上に統一
   - common.css / component.css にある共通UIは基本的にそちらを利用
========================================================= */

:root {
    --visitor-blue: #427BBF;
    --visitor-cyan: #71C7D1;
    --visitor-yellow: #DFFF4F;
    --visitor-light-yellow: #F4FFC2;
    --visitor-text-gray: #666666;
    --visitor-dark: #333333;
}

/* =========================================================
   Common layout in visitor pages
========================================================= */

.portal-container {
    padding-bottom: 80px;
}

.portal-header {
    margin-top: 50px;
}

.portal-title,
.section-desc {
    text-align: center;
}

.portal-section,
.download-section {
    width: 100%;
    box-sizing: border-box;
    padding: 40px 20px;
}

.section-body {
    padding-left: 0;
}

.text-content {
    line-height: 1.8;
    color: var(--visitor-dark);
    margin-bottom: 30px;
}

.section-heading,
.target-title,
.work-subtitle {
    color: var(--visitor-blue);
    border-left: 6px solid var(--visitor-dark);
    padding: 5px 15px;
    margin-bottom: 25px;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 700;
}

.work-subtitle {
    margin-top: 40px;
}

/* =========================================================
   Intro
========================================================= */

.visitor-intro {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.intro-container {
    width: 90%;
    margin: 0 auto;
    display: block;
}

.intro-text {
    width: 100%;
}

.catch-phrase {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--visitor-blue);
}

.catch-phrase span {
    background: linear-gradient(transparent 60%, #ffff66 60%);
    background-repeat: no-repeat;
    background-size: 0;
    animation: visitorUnderLine 1s ease 0.5s forwards;
}

@keyframes visitorUnderLine {
    100% {
        background-size: 100%;
    }
}

.sub-text {
    line-height: 1.9;
    color: var(--visitor-text-gray);
    text-align: justify;
}

.highlight {
    font-weight: 700;
    color: var(--visitor-dark);
}

.intro-illustration {
    width: min(80%, 360px);
    aspect-ratio: 1 / 1;
    margin: 40px auto 0;
    background: #f0f7ff;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    overflow: hidden;
}

.intro-illustration img {
    width: 100%;
    height: auto;
}

/* =========================================================
   Visitor link sections
========================================================= */

.visitor-section {
    width: 100%;
    margin: 80px 0;
}

.visitor-inner {
    width: 90%;
    margin: 0 auto;
    background-color: var(--visitor-dark);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.visitor-img,
.visitor-set {
    width: 100%;
}

.visitor-img img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.visitor-set {
    padding: 30px 20px;
    color: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
}

.visitor-title {
    margin-bottom: 10px;
}

.visitor-text {
    line-height: 1.6;
    margin-bottom: 30px;
}

/* =========================================================
   Department / Course cards
========================================================= */

.department-section {
    width: 100%;
    margin: 80px 0;
}

.department-set {
    width: 100%;
    margin: 0 auto;
}

.department-title,
.department-intro h3,
.department-intro p {
    text-align: center;
}

.department-title {
    margin-bottom: 20px;
}

.department-intro {
    margin-bottom: 30px;
}

.department-intro h3 {
    margin: 10px 0;
}

.course-bar {
    display: flex;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 700;
}

.course-bar-mobile {
    display: block;
    background-color: #D8F0F3;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 700;
    border: 1px solid #F0F9F9;
    box-sizing: border-box;
}

.bar-sys {
    background-color: #D9E4F2;
    width: 100%;
}

.bar-proc {
    display: none;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.course-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 80px 20px;
    color: #ffffff;
    box-sizing: border-box;
}

.course-header {
    margin-bottom: 20px;
    font-weight: 700;
}

.course-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-explanation {
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 3em;
}

.course-btn {
    position: absolute;
    right: 30px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--visitor-yellow);
    color: var(--visitor-dark);
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.card-01 {
    background-color: #6795CB;
}

.card-02 {
    background-color: #427BBF;
}

.card-03 {
    background-color: #65C2CD;
}

.card-04 {
    background-color: #3EB3C1;
}

.card-05 {
    background-color: #328F9A;
}

.course-label-new,
.advanced-label-new {
    position: absolute;
    display: inline-block;
    background-color: #FF6B6B;
    color: #ffffff;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    z-index: 10;
    white-space: nowrap;
}

.course-label-new {
    top: 5%;
}

.advanced-label-new {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

/* =========================================================
   Advanced
========================================================= */

.advanced-section {
    width: 100%;
}

.advanced-intro {
    text-align: center;
    margin: 40px 0;
}

.advanced-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #151F41;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 100px 20px;
    text-align: center;
}

.advanced-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 40px auto 30px;
}

.advanced-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advanced-card-body {
    width: 100%;
}

.advanced-card-body h4 {
    margin: 20px 0 30px;
}

.advanced-btn {
    position: absolute;
    right: 30px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--visitor-yellow);
    color: var(--visitor-dark);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* =========================================================
   Admissions / Exam cards
========================================================= */

.admissions-guide-section {
    width: 100%;
    margin: 80px 0;
}

.admissions-guide-inner {
    width: 90%;
    margin: 0 auto;
    background-color: var(--visitor-light-yellow);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.admissions-guide-img,
.admissions-guide-set {
    width: 100%;
}

.admissions-guide-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.admissions-guide-set {
    padding: 40px 20px;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
}

.admissions-guide-title {
    margin-bottom: 10px;
}

.admission-guide-text {
    line-height: 1.6;
    margin-bottom: 30px;
}

.exam-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin: 50px 0;
}

.exam-card {
    text-decoration: none;
    color: inherit;
    width: 45%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
}

.exam-card-inner {
    height: 100%;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
}

.exam-img img {
    width: 80px;
}

.exam-card:active {
    transform: translateY(2px);
    transition: transform 0.1s;
}

.exam-card:active .exam-card-inner {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   Company / Alumni content
========================================================= */

.info-list-simple {
    list-style: none;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-list-simple li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-list-simple li strong {
    color: var(--visitor-blue);
    display: inline-block;
    width: 100px;
}

.design04 {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1.3rem;
}

.design04 tr:nth-child(2n+1) {
    background: #e9faf9;
}

.design04 th {
    padding: 10px 20px;
    background: #778ca3;
    border-right: solid 1px #778ca3;
    border-bottom: solid 1px #ffffff;
    color: #ffffff;
}

.design04 td {
    padding: 10px;
    border-right: solid 1px #778ca3;
    border-bottom: solid 1px #999999;
}

.design04 th:last-child,
.design04 td:last-child {
    border-right: none;
}

.design04 th.last,
.design04 td.last {
    border-bottom: none;
}

.img-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.img-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.download-set {
    width: min(100%, 1000px);
    margin: 0 auto;
}

.download-group {
    margin-bottom: 40px;
}

.download-list li {
    line-height: 1.8;
    margin-bottom: 8px;
}

.admission-section p,
.admission-section li {
    line-height: 1.8;
}

.contact-section {
    background-color: #f4f7f9;
    padding: 30px 15px;
    margin: 40px 0;
    border-radius: 10px;
}

/* PDFボタン本体は component.css を利用。並びだけ補助 */
.download-section .pdf-link-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* =========================================================
   Career block
========================================================= */

.career-section {
    width: 100%;
    margin: 120px 0;
}

.career-inner {
    width: 90%;
    margin: 0 auto;
    background-color: var(--visitor-cyan);
    color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.career-img,
.career-set {
    width: 100%;
}

.career-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.career-set {
    padding: 40px 20px;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
}

.career-title {
    margin-bottom: 10px;
}

.career-text {
    margin-bottom: 30px;
}

/* =========================================================
   Current student page
========================================================= */

.btn-area {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.back-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    background-color: var(--visitor-yellow);
    color: var(--visitor-dark);
    text-decoration: none;
    text-align: center;
    padding: 20px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 0 #335d91;
    transition: all 0.2s;
}

.back-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #335d91;
}

.movie-section {
    padding: 40px 20px;
}

.movie-title {
    font-size: 1.4rem;
    color: var(--visitor-dark);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.movie-set {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   PC : 900px and up
========================================================= */

@media (min-width: 900px) {

    .portal-section {
        max-width: 1000px;
        margin: 100px auto;
        padding: 0 15px;
    }

    .download-section {
        max-width: 1000px;
        margin: 0 auto;
        padding: 80px 0;
    }

    .section-body {
        padding-left: 20px;
    }

    .section-heading,
    .target-title,
    .work-subtitle {
        font-size: 1.8rem;
    }

    .visitor-intro {
        margin-top: 50px;
    }

    .intro-container {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .intro-text {
        flex: 0 0 55%;
    }

    .catch-phrase {
        font-size: 2.5rem;
    }

    .sub-text {
        width: 80%;
        margin-top: 20px;
        font-size: 1.6rem;
    }

    .intro-illustration {
        flex: 0 0 40%;
        max-width: 500px;
        margin: 0;
        transform: translateX(20px);
    }

    .visitor-section {
        margin: 100px 0;
    }

    .visitor-inner {
        width: 85%;
        flex-direction: row;
        background-color: var(--visitor-dark);
    }

    .visitor-img,
    .visitor-set {
        width: 50%;
    }

    .visitor-content-left .visitor-inner {
        margin-left: 0;
        margin-right: auto;
        border-radius: 0 30px 30px 0;
    }

    .visitor-content-right .visitor-inner {
        margin-right: 0;
        margin-left: auto;
        flex-direction: row-reverse;
        border-radius: 30px 0 0 30px;
    }

    .course-bar-mobile {
        display: none;
    }

    .bar-proc {
        display: block;
        width: 60%;
        background-color: #D8F0F3;
    }

    .bar-sys {
        width: 40%;
    }

    .course-list {
        flex-direction: row;
        align-items: stretch;
    }

    .course-card {
        flex: 1;
        padding: 60px 10px;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .advanced-section {
        margin-top: 100px;
    }

    .advanced-card {
        display: block;
        padding: 0;
    }

    .advanced-inner {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        width: 100%;
        margin: 0;
    }

    .advanced-img {
        width: 50%;
        height: 500px;
        margin: 0;
        border-radius: 0;
    }

    .advanced-card-body {
        width: 50%;
        padding: 60px 8%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .advanced-btn {
        margin: 40px 0 20px 30px;
        font-weight: 700;
    }

    .admissions-guide-inner {
        width: 80%;
        margin-left: 0;
        margin-right: auto;
        min-height: 400px;
        flex-direction: row-reverse;
        border-radius: 0 30px 30px 0;
    }

    .admissions-guide-img,
    .admissions-guide-set {
        width: 50%;
    }

    .admissions-guide-img img {
        height: 100%;
    }

    .exam-card {
        max-width: 280px;
        flex-shrink: 0;
    }

    .design04 th {
        padding: 10px 40px;
    }

    .img-grid {
        flex-direction: row;
    }

    .img-grid img {
        flex: 1;
        height: 300px;
        object-fit: cover;
    }

    .download-section .pdf-link-area {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .download-section .pdf-button {
        flex: 1;
        min-width: 280px;
    }

    .career-section {
        margin: 200px 0;
    }

    .content-right,
    .career-inner {
        margin-right: 0;
        margin-left: auto;
        width: 85%;
    }

    .career-inner {
        flex-direction: row;
        min-height: 400px;
        width: 80%;
        border-radius: 30px 0 0 30px;
    }

    .career-img,
    .career-set {
        width: 50%;
    }

    .career-img img {
        height: 100%;
    }

    .movie-set {
        flex-direction: row;
        max-width: 1000px;
        margin: 0 auto;
    }

    .movie-item {
        flex: 1;
    }

    .back-btn {
        /* font-size: 1.2rem; */
        padding: 25px;
    }

    .back-btn:hover {
        background-color: #528cd1;
        transform: translateY(-2px);
        box-shadow: 0 6px 0 #335d91;
    }
}


/* =========================================================
   Grid Layout Utility
   2列・3列・4列の汎用グリッド
========================================================= */

.grid-layout {
    display: grid;
    gap: 16px;
}

@media (min-width: 900px) {

    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* =========================================================
   Job Offer Section
========================================================= */

.job-offer-card {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.job-offer-lead {
    line-height: 1.9;
    margin-bottom: 24px;
}

.job-download-box {
    padding: 20px;
    border-radius: 10px;
}

.job-download-title,
.job-method-title {
    color: #1A314C;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.job-file-links {
    margin: 0;
}

.job-file-links .word-button,
.job-file-links .pdf-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;

    text-align: left;
}

.job-file-links .file-info {
    margin-left: auto;

    display: inline-block;
    margin-top: 0;

    font-size: 1.2rem;
    white-space: nowrap;
}

.job-file-links .file-info {
    display: inline;
    margin-top: 0;
    white-space: nowrap;
}

.job-offer-contact {
    margin-top: 40px;
}

.job-method-list {
    display: grid;
    gap: 16px;
}

.job-method-card {
    position: relative;
    padding: 22px 20px 20px;
    background: #ffffff;
    border: 1px solid #e1e8f0;
    border-radius: 14px;
}

.job-method-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    margin-bottom: 10px;
    padding: 2px 10px;
    background: #427BBF;
    color: #ffffff;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.job-method-card h4 {
    color: #427BBF;
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.job-method-card p {
    line-height: 1.8;
}

.job-method-link {
    display: inline-block;
    margin-top: 8px;
    color: #2B579A;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.job-method-note {
    margin-top: 10px;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #666666;
}

.certificate-list {
    margin-top: 10px;
}

.certificate-list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 6px;
    line-height: 1.7;
}

.certificate-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #427BBF;
    font-weight: bold;
}

@media (min-width: 900px) {

    .job-offer-card {
        padding: 40px;
    }


    .job-method-card {
        min-height: 230px;
    }

    .job-file-links {
        max-width: none;
        flex-direction: row;
    }

    .job-file-links .word-button,
    .job-file-links .pdf-button {
        flex: 1;
    }
}

.postal-info-box {
    margin-top: 40px;
    padding: 28px;
    background: #f7fbff;
    border: 1px solid #d9e4f2;
    border-radius: 14px;
}

.postal-info-title {
    color: #1A314C;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.postal-info-lead {
    margin-bottom: 24px;
    line-height: 1.8;
}

.postal-info-grid {
    display: grid;
    gap: 20px;
}

.postal-info-card {
    background: #ffffff;
    border: 1px solid #e1e8f0;
    border-radius: 12px;
    padding: 20px;
}

.postal-info-card h5 {
    color: #427BBF;
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.postal-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.postal-info-table th,
.postal-info-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e1e8f0;
    vertical-align: top;
}

.postal-info-table th {
    width: 90px;
    color: #1A314C;
    font-weight: 700;
    background: transparent;
}

.postal-list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 8px;
    line-height: 1.7;
}

.postal-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #427BBF;
    font-weight: 700;
}

.postal-note {
    margin-top: 14px;
    color: #666666;
    font-size: 1.3rem;
    line-height: 1.7;
}

@media (min-width: 900px) {
    .postal-info-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* =========================================================
   Skill Up Seminar
========================================================= */

.skillup-section {
    margin-top: 24px;
}

.skillup-info-box {
    display: grid;
    gap: 14px;

    margin: 32px 0 48px;
    padding: 24px 20px;

    background: #f9f9f9;
    border-radius: 12px;
}

.skillup-info-item {
    display: grid;
    gap: 4px;
}

.skillup-info-label {
    color: #427BBF;
    font-weight: 700;
}

.skillup-info-item p {
    margin: 0;
    line-height: 1.7;
}

.skillup-course-block {
    margin-top: 56px;
}

.skillup-course-title {
    margin-bottom: 18px;
    padding-left: 14px;

    border-left: 5px solid #427BBF;

    color: #1A314C;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
}

.skillup-contact-tel {
    margin-top: 10px;

    color: #1A314C;
    font-size: 1.7rem;
    font-weight: 700;
}

.skillup-small-title {
    margin: 32px 0 14px;

    color: #427BBF;
    font-size: 1.6rem;
    font-weight: 700;
}

/* schedule table */
.skillup-table-scroll {
    width: 100%;
    overflow-x: auto;
    margin-top: 16px;
}

.skillup-schedule-table {
    min-width: 780px;
    width: 100%;

    border-collapse: collapse;
    font-size: 1.3rem;
}

.skillup-schedule-table th {
    padding: 12px 10px;

    background: #427BBF;
    color: #ffffff;

    border: 1px solid #d9e4f2;

    text-align: center;
    vertical-align: middle;
}

.skillup-schedule-table td {
    padding: 14px 12px;

    border: 1px solid #d9e4f2;

    line-height: 1.7;
    vertical-align: middle;
}

.skillup-schedule-table td:nth-child(1),
.skillup-schedule-table td:nth-child(4),
.skillup-schedule-table td:nth-child(5),
.skillup-schedule-table td:nth-child(6) {
    text-align: center;
    white-space: nowrap;
}

.skillup-schedule-table tr:nth-child(odd) td {
    background: #f7fbff;
}

.skillup-download-box {
    margin-top: 24px;
    padding: 20px;

    background: #f7fbff;
    border-radius: 12px;
}

.skillup-download-box .skillup-small-title {
    margin-top: 0;
}

/* flow */
.skillup-flow-list {
    display: grid;
    gap: 14px;

    margin-top: 16px;
}

.skillup-flow-list li {
    display: flex;
    gap: 14px;

    padding: 18px;

    background: #ffffff;

    border: 1px solid #d9e4f2;
    border-radius: 12px;
}

.skillup-flow-number {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    background: #427BBF;
    color: #ffffff;

    border-radius: 50%;

    font-weight: 700;
}

.skillup-flow-list h5 {
    margin-bottom: 4px;

    color: #1A314C;
    font-size: 1.5rem;
}

.skillup-flow-list p {
    margin: 0;

    line-height: 1.7;
}

/* PC */
@media (min-width: 900px) {

    .skillup-info-box {
        padding: 28px 36px;
    }

    .skillup-info-item {
        grid-template-columns: 120px 1fr;
        align-items: start;
    }

    .skillup-course-block {
        margin-top: 72px;
    }

    .skillup-flow-list li {
        position: relative;
        flex-direction: column;
    }

    .skillup-flow-list li:not(:last-child)::after {
        content: "→";

        position: absolute;
        top: 50%;
        right: -18px;

        color: #427BBF;
        font-size: 2rem;
        font-weight: 700;

        transform: translateY(-50%);
    }
}



.council-support-text {
    margin: 10px 15px 10px 20px;
    color: #333333;
    font-weight: 700;
    line-height: 1.8;
}