@charset "UTF-8";

body {
    font-family: "Inter", sans-serif;
    background-color: #F5F5F5;
    color: #333;
}

html,
body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #333;
}

li {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.wrapper {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 4%;
}

.container {
    max-width: 1050px;
    margin: 0 auto;
}

.section-title {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 8px;
    margin-top: 100px;
    margin-bottom: 60px;
    color: #557bcf;
    font-size: 40px;
    font-weight: 700;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2f66ff 0%, #48cf5d 50%, #ffd000 100%)
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    /*下に少しずらす*/
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
    /*元の位置へ*/
}


/*-------------------------------------------
header
------------------------------------------ */
header {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 20px;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    z-index: 50;
    opacity: 0.8;
}

header .logo {
    width: 180px;
}

header .menu {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.hover-line {
    display: inline-block;
    position: relative;
    padding-bottom: 3px;
}

.hover-line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #333;
    transition: width 0.3s ease;
}

.hover-line:hover::after {
    width: 100%;
}



/*--------------------------------------------
hamburger 
---------------------------------------------*/
.hamburger {
    display: none;
}

#mask {
    display: none;
}

/*--------------------------------------------- 
main-visual 
----------------------------------------------*/
.main-visual {
    display: flex;
    position: relative;
    align-items: center;
    color: #fff;
}

.main-visual img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* 1行ずつアニメ対象にする */
.main-visual .mv-line {
    display: inline-block;
    opacity: 0;
}

/* 覚悟の行：左から */
.main-visual .mv-line1 {
    transform: translateX(-50px);
}

/* 未来の行：右から */
.main-visual .mv-line2 {
    transform: translateX(50px);
}

/* コピー行：下から */
.main-visual .mv-copy.mv-line {
    display: block;
    transform: translateY(30px);
    margin-top: 24px;
    opacity: 0;
}

.main-visual .mv-content {
    position: absolute;
    content: "";
    top: 50%;
    left: 100px;
    z-index: 40;
    transform: translateY(-60%);
}

/* 覚悟の一歩が：左→右にスライドしながらフェードイン */
.main-visual .mv-content.is-show .mv-line1 {
    animation: mv-slide-left 0.8s ease-out forwards;
}

/* 未来を変える：右→左（少し遅らせて） */
.main-visual .mv-content.is-show .mv-line2 {
    animation: mv-slide-right 0.8s ease-out 0.15s forwards;
}

/* プログラミング〜：下から（さらに遅らせて） */
.main-visual .mv-content.is-show .mv-line3 {
    animation: mv-slide-up 0.8s ease-out 0.3s forwards;
}

@keyframes mv-slide-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mv-slide-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mv-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-visual .mv-content {
    content: "";
    position: absolute;
    top: 50%;
    left: 100px;
    z-index: 40;
    transform: translateY(-60%);
}

.main-visual .mv-content h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 15px;
}

.main-visual .underline::after {
    content: "";
    position: absolute;
    left: -10px;
    bottom: -20px;
    z-index: -1;
    width: 150%;
    height: 60px;
    background-image: url("../img/8.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main-visual .spacing {
    margin-left: 160px;
}

.main-visual .underline {
    position: relative;
    z-index: 45;
    font-size: 100px;
}

/* キャッチコピー */
.mv-copy {
    margin-top: 20px;
    color: #333;
    font-size: 30px;
    font-weight: 900;
}

.mv-copy span {
    margin-left: 20px;
    margin-right: 10px;
    color: #3E5D9E;
    font-size: 30px;
}

/* 実績バッジ */

.badges {
    display: flex;
    position: absolute;
    left: 100px;
    bottom: 15px;
    gap: 40px;
    align-items: flex-end;
}

.badges img {
    width: 180px;
    height: 180px;
}

/* カウンセリングボタン */

.mv-btn {
    display: inline-block;
    position: fixed;
    right: 50px;
    bottom: 56px;
    z-index: 30;
    margin: 0 auto;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 18px;
    background: linear-gradient(90deg, #00aaff, #00dd55, #FFEF00);
    color: #fff;
    font-weight: bold;
    text-align: center;
    transition: .3s;
}

.mv-btn:hover {
    background-position: right center;
    background-size: 200% auto;
    color: #fff;
    animation: ripple 1.5s infinite;
    -webkit-animation: pulse 2s infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 #1B85FB;
    }

    70% {
        box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);
    }
}


/*-------------------------------------------
trouble 
-------------------------------------------*/
.trouble-section {
    text-align: center;
    margin-top: 100px;
    padding: 20px 20px;
}

.trouble-wrap .item-column {
    margin-top: 100px;
}

.trouble-section span {
    margin: 0 20px;
    color: #3E5D9E;
}

.trouble-section h2 {
    font-size: 40px;
}

.trouble-section .blur-text {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    padding: 20px 200px;
}

.blur-text::before {
    position: absolute;
    content: "";
    z-index: -1;
    background: rgba(159, 229, 248, 0.9);
    border-radius: 20px;
    filter: blur(25px);
    inset: 0;
}

.trouble-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
    column-gap: 40px;
}

.item-column {
    width: 220px;
    text-align: center;
}

.top-content img {
    display: inline-block;
    width: 100%;
    max-width: 160px;
    margin: 0 auto 15px auto;
}

.top-content li {
    margin-top: 10px;
    font-weight: 700;
    font-size: 20px;
}

.bottom-content {
    margin-top: 20px;
}

.bottom-content li img {
    display: inline-block;
    width: 100px;
    margin: 0 auto;
}

.bottom-content .answer {
    padding: 30px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
    font-weight: bold;
    font-size: 20px;
    text-align: left;
    line-height: 1.6;
}

.trouble-wrap {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.bottom-content .pc-arrow img {
    width: 180px;
}

.pronavi-support {
    position: absolute;
    top: 50%;
    left: 13%;
    transform: translateY(20%);
    padding: 20px 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    color: #557BCF;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.sp-arrow {
    display: none;
}

.dream-visual {
    width: 100%;
    margin-top: 100px;
}

.dream-visual img {
    width: 100%;
}


/*-------------------------------------------
point
-------------------------------------------*/

.point-items {
    background-color: #fff;
}

.point-item {
    display: flex;
    align-items: center;
    padding-top: 60px;
    column-gap: 28px;
}

.point-text {
    width: 55%;
}

.point-pic {
    width: 45%;
}

.point-text h3 {
    display: inline-block;
    position: relative;
    align-items: center;
    color: #3E5D9E;
    font-weight: bold;
    font-size: 32px;
}

.point-text p {
    padding-top: 20px;
}

.point-text h3 span {
    position: relative;
    padding-left: 8px;
    color: #fff;
    font-size: 56px;
    -webkit-text-stroke: 1px #3E5D9E;
}

.point-text h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 105%;
    height: 2px;
    border-radius: 2px;
    background: #3E5D9E;
}

.point-title,
.point-subtitle {
    font-weight: bold;
    font-size: 24px;
}

.point-subtitle {
    font-weight: bold;
    font-size: 18px;
}

.point-text-main {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 1px;
}

.point-item {
    position: relative;
}

.point04-pic1,
.point04-pic2 {
    width: 35%;
    position: absolute;
}

.point04-pic1 {
    top: 20%;
    right: 58%;
}

.point04-pic2 {
    left: 0;
    bottom: 0;
}

.catch-copy {
    padding: 60px 0;
    text-align: center;
    font-size: 40px;
    text-shadow: 1px 1px 4px;
}

.catch-copy span {
    color: #3E5D9E;
}


/*-------------------------------------------
slide-animation
-------------------------------------------*/
.line_a img,
.line_b img {
    object-fit: cover;
    height: 140px;
}

.line_a::after,
.line_b::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 140%;
    height: 100%;
    background: #ffffff;
    opacity: 0.4;
}

.line_a {
    display: flex;
    transform: rotate(-18deg);
    transform-origin: center;
    overflow-x: hidden;
    width: 120%;
    margin-top: 60px;
    margin-left: -60px;
}

.line_b {
    display: flex;
    transform: rotate(12deg);
    transform-origin: center;
    overflow-x: hidden;
    width: 120%;
    margin-top: -60px;
    margin-left: -30px;
}

.slick-items img {
    display: block;
    object-fit: cover;
    height: 160px;
    box-shadow:
        0 0 20px rgba(255, 255, 255, 1),
        inset 0 0 10px rgba(255, 255, 255, 1),
}

.slick-items {
    overflow: visible !important;
    margin-top: -140px;
}

/*-------------------------------------------
voice
-------------------------------------------*/

.card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    position: relative;
    column-gap: 2%;
}

.card {
    position: relative;
    transition: max-height 0.4s ease;
    overflow: hidden;
    max-height: 310px;
    cursor: pointer;
}

.card .face {
    max-width: 300px;
    transition: 0.5s;
}

.card .face.face1 {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(50px);
    box-shadow: 0 4px 4px rgba(51, 51, 51, 0.1);
    background: #fff;
    text-align: center;
}

.card:hover {
    max-height: 670px;
}

.card:hover .face.face1 {
    transform: translateY(0);
    box-shadow: none;
}

.card .face.face1 .content h3 {
    position: relative;
    margin: 10px 0 0;
    padding: 0;
    color: #333;
    text-align: center;
    font-size: 16px;
}

.card .face.face1 .content h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 90%;
    height: 2px;
    border-radius: 2px;
    background: #557BCF;
}

.card .face.face1 .content a {
    display: inline-block;
    margin: 15px 0 12px;
    padding: 5px;
    color: #333;
    border: 1px solid #333;
    font-weight: 900;
    pointer-events: none;
}

.card .face.face2 {
    display: flex;
    justify-content: center;
    position: relative;
    transform: translateY(-150px);
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
    opacity: 0;
}

.card:hover .face.face2 {
    transform: translateY(0);
    opacity: 1;
}

.card .face.face2 .content p {
    margin: 0;
    padding: 0;
}

/* ボタン */
.voice-btn {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    transition-duration: .4s;
}

.voice-btn a {
    display: inline-flex;
    align-items: center;
    padding: 20px 60px;
    color: #557bcf;
    border: 2px solid #656565;
    border-radius: 100px;
    background-color: #FFFBF7;
    font-weight: bold;
    font-size: 24px;
    column-gap: 28px;
}

.voice-btn img {
    width: 28px;
}

.voice-btn:hover {
    transform: scale(1.05);
}



/*-------------------------------------------
graduates
-------------------------------------------*/
#graduates {
    padding: 80px 0;
}

.graduates-card-slider {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    perspective: 2000px;
}

.graduates-cards {
    position: relative;
    height: 260px;
}

.graduates-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.6s opacity 0.3s ease, box-shadow 0.6s ease-in-out;
}

.graduates-card.is-center {
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
}

/*-------------------------------------------
course
-------------------------------------------*/
.course-steps {
    display: grid;
    margin-top: 32px;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.course-step {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    width: 200px;
    height: 460px;
    min-height: 260px;
    padding: 56px 20px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
    text-align: left;
}

.course-step::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 14px solid #2600ff;
    border-bottom: 10px solid transparent;
}

.course-step:last-child::after {
    display: none;
}

.course-step-icon img {
    width: 90px;
    height: 90px;
    margin: 0 auto 12px;
}

.course-step-num {
    position: absolute;
    top: -18px;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    width: 75px;
    height: 30px;
    padding: 0 26px 0 22px;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background: linear-gradient(90deg, #2600ff 0%, #baaeff 100%);
    clip-path: polygon(0 0,
            75% 0,
            100% 100%,
            80% 100%,
            0 100%);
}

.course-step-title {
    margin: 30px 0;
    color: #3e5d9e;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

.course-step-desc {
    color: #444;
    font-size: 16px;
    text-align: left;
    line-height: 1.6;
}


/*-------------------------------------------
price
-------------------------------------------*/
#price {
    margin-top: 100px;
    padding: 60px 0;
    background-color: #fff;
}

#price .section-title {
    margin-top: 0;
}

.items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 90%;
    margin: 0 auto;
    padding: 24px;
    border: solid 5px #557BCF;
    border-radius: 16px;
    row-gap: 20px;
}

.item {
    display: flex;
}

.check {
    width: 30px;
}

.item img {
    width: 100%;
}

.item p {
    font-size: 24px;
    font-weight: bold;
    padding-left: 10px;
}

.price-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 32px solid #557BCF;
    margin: 20px auto;
}

#price h3,
.support,
.prices {
    text-align: center;
}

#price h3,
.support {
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 36px;
}

.prices {
    font-size: 28px;
    font-weight: bold;
}

.prices span {
    font-size: 20px;
    padding-top: 35px;
}

.table-title {
    margin-top: 56px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.price-table {
    margin: 0 auto;
    padding: 20px 0;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    text-align: center;
    padding: 20px 100px;
    font-size: 16px;
}

.price-table td {
    border-top: solid 1px #333;
}

.notes {
    text-align: right;
    font-size: 16px;
    padding-right: 40px;
}

/*-------------------------------------------
Q&A
-------------------------------------------*/
.accordion-area li {
    margin-bottom: 20px;
    border-radius: 30px;
    overflow: hidden;
}

.qa-title {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 16px 64px 16px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #557bcf 50%, #baaeff 100%);
}

.qa-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: rgba(255, 255, 255, 0.25);
    background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-position: center center, center center;
    background-size: 16px 2px, 2px 16px;
}

.qa-title.close::before {
    background-size: 16px 2px, 0 0;
}

.qa-q {
    font-size: 20px;
    padding-right: 10px;
}

.qa-box {
    position: relative;
    display: none;
    background: #fff;
    padding: 24px 24px 24px 60px;
    line-height: 1.7;
}

.qa-a {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #777;
}

/*-------------------------------------------
お問い合わせ
-------------------------------------------*/
.sp-contact-btn {
    display: none;
}

.contact-msg {
    margin-top: -60px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #557BCF;
}

.profile-card {
    position: relative;
    width: 100%;
    height: 550px;
    background: url(/img/contact.png) center/cover no-repeat;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
}

.overlay::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50%;
    transform: translateY(50%);
    width: 1px;
    height: 200px;
    border-radius: 2px;
    background-color: #333;
}

.profile {
    width: 45%;
    display: flex;
    column-gap: 10px;
}

.profile-text h2 {
    font-size: 20px;
}

.insta-icon {
    display: flex;
    gap: 10px;
    align-items: center;
}

.insta-icon img {
    width: 36px;
    height: auto;
}

.profile-text ul li {
    padding-top: 10px;
    font-size: 14px;
}

.iruka {
    flex-direction: row-reverse;
}

.profile-pic img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-btn {
    display: inline-block;
    font-size: 14px;
    padding: 12px 30px;
    margin-top: 20px;
    border-radius: 30px;
    border: 2px solid #333;
    cursor: pointer;
    background: #fff;
    color: #333;
    position: relative;
    text-align: center;
}

.contact-btn::before {
    bottom: 0;
    content: "♦";
    margin: auto;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-40%);
}

.contact-btn::after {
    bottom: 0;
    content: "♦";
    margin: auto;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-btn {
    transition-duration: .4s;
}

.contact-btn:hover {
    transform: scale(1.1);
}

footer {
    padding: 50px;
    font-size: 10px;
    text-align: center;
}

@media(max-width: 1032px) {

    /* ヘッダー */
    header {
        height: 55px;
    }

    header .logo {
        width: 140px;
    }

    header .menu {
        font-weight: 700;
        flex-direction: column;
        gap: 60px;
    }

    .hover-line::after {
        background: #fff;
    }

    /* ハンバーガーメニュー */
    nav ul {
        display: none;
    }

    #navi {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        bottom: 0;
        width: 100%;
        color: #333;
        padding: 60px 25px;
        background: linear-gradient(90deg, rgba(85, 123, 207, 1) 30%, rgba(255, 255, 255, 0.8));
        overflow-x: hidden;
        overflow-y: auto;
        transition: all 0.5s;
        z-index: 20;
    }

    #navi a {
        color: #fff;
    }

    .open #navi {
        left: 0;
        opacity: 1;
    }

    #navi ul {
        margin: 0;
        padding: 0;
    }

    #navi ul.nav-menu {
        margin-bottom: 60px;
        border-top: solid 1px #fff;
    }

    #navi ul.nav-menu li {
        position: relative;
        margin: 0;
        padding: 20px 0;
        border-bottom: solid 1px #333;
    }

    #navi ul.nav-sns li {
        padding: 5px 0;
    }

    .hamburger {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        position: relative;
        z-index: 20;
        cursor: pointer;
        transition: all 0.5s;
    }

    .hamburger span {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #333;
        background-color: #333;
        border-radius: 4px;
        transition: all 0.5s;
    }

    .hamburger span:nth-child(1) {
        top: 22%;
    }

    .hamburger span:nth-child(2) {
        top: 50%;
    }

    .hamburger span:nth-child(3) {
        top: 78%;
    }

    .open .hamburger span {
        background-color: #333;
    }

    .open .hamburger span:nth-child(1) {
        top: 50%;
        -webkit-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }

    .open .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .open .hamburger span:nth-child(3) {
        top: 50%;
        -webkit-transform: rotate(315deg);
        transform: rotate(315deg);
    }

    /* メインビジュアル */
    .main-visual img {
        height: 50vh;
    }

    .main-visual .mv-content h2 {
        font-size: 35px;
        font-weight: 700;
        letter-spacing: 5px;
        line-height: 1.1;
    }

    .main-visual .mv-content {
        position: absolute;
        top: 50%;
        left: 5%;
        transform: translateY(-55%);
        z-index: 40;
    }

    .main-visual .underline::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: -10px;
        width: 150%;
        height: 60px;
        background-image: url("../img/8.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .main-visual .spacing {
        margin-left: 100px;
    }

    .main-visual .underline {
        position: relative;
        font-size: 60px;
        z-index: 45;
    }

    .mv-copy {
        margin-top: 12px;
        font-size: 20px;
        font-weight: 900;
        color: #333;
    }

    .mv-copy span {
        font-size: 25px;
        margin-left: 10px;
        margin-right: 10px;
        color: #3E5D9E;
    }

    .badges {
        position: absolute;
        left: 50px;
        bottom: 20px;
        display: flex;
        gap: 40px;
        align-items: flex-end;
    }

    .badges img {
        width: 95px;
        height: 95px;
    }

    /* 悩みのところ */
    .trouble-section .blur-text {
        padding: 20px 40px;
    }

    .trouble-section h2 {
        white-space: nowrap;
        font-size: clamp(18px,3vw,28px);
    }

    .trouble-section {
        margin-top: 50px;
    }

    .trouble-wrap .item-column {
        margin-top: 30px;
    }

    .item-column {
        width: calc(50% - 10px);
        max-width: 900px;
        margin-top: 20px;
        padding: 20px 10px;
        box-sizing: border-box;
        border-radius: 20px;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    }

    .pc-arrow {
        display: none;
    }

    .sp-arrow {
        display: block;
        width: 100%;
    }

    .pronavi-support {
        display: none;
    }

    .trouble-wrap {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
        margin-top: 50px;
    }

    .top-content {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        gap: 20px;
    }

    .top-content img {
        width: 65%;
        margin-bottom: 0px;
    }

    .top-content li {
        font-size: 15px;
        font-weight: 600;
        width: 50%;
        line-height: 1.7;
        text-align: left;
        margin-top: 0px;
    }

    .bottom-content {
        display: flex;
        align-items: center;
        justify-content: space-between; 
        gap: 20px;
    }

    .bottom-content .sp-arrow img  {
        width: 100%;
        height: auto;
        display: inline-block;
    }

    .bottom-content li {
        width: 50%;
        line-height: 1.7;
        text-align: left;
    }

    .bottom-content .answer {
        width: 50%;
        background: none;
        padding: 0;
        box-shadow: none;
        font-size: 15px;
        line-height: 1.2;
    }

    .dream-visual{
        margin-top: 20px;
    }
    
    /* 特徴 */
    .point04-pic1 {
        margin-bottom: 14px;
    }

    .point04-pic1,
    .point04-pic2 {
        width: 100%;
        position: static;
    }

    .catch-copy {
        font-size: 32px;
    }

    /* 受講生の声 */
    .card .face.face1 .content a {
        pointer-events: auto;
    }

    /* 卒業生の作品 */
    .graduates-card-slider {
        max-width: 100%;
    }

    .graduates-cards {
        height: 150px;
    }

    .graduates-card {
        width: 210px;
    }


    /* 受講の流れ */
    .course-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 35px;
    }

    .course-step {
        width: calc(50% - 24px);
        height: 380px;
        max-width: 340px;
        margin: 0;
    }

    .course-step::after {
        right: -25px;
    }

    .course-step-title {
        text-align: center;
    }

    /* Q&A */
    .qa-title {
        padding: 12px 56px 12px 16px;
        font-size: 14px;
    }

    .qa-q {
        width: 32px;
        height: 32px;
        font-size: 18px;
        margin-right: 8px;
    }

    /* お問い合わせ */
    .profile-card {
        height: 800px;
    }

    .overlay {
        flex-direction: column;
    }

    .overlay::after {
        content: "";
        position: absolute;
        left: 2%;
        bottom: 45%;
        transform: translateY(50%);
        width: 60%;
        height: 1px;
        border-radius: 2px;
        background-color: #333;
    }

    .profile {
        width: 100%;
    }

    .kakashi {
        margin-bottom: 40px;
    }

}

@media(max-width: 640px) {
    .wrapper {
        max-width: 600px;
        margin: 0 auto;
        padding: 0 4%;
    }

    .container {
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title {
        padding-bottom: 6px;
        margin-top: 60px;
        margin-bottom: 30px;
        font-size: 24px;
    }

    img {
        width: 100%;
        height: auto;
    }

    .mv-btn {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        display: block;
        margin: 0 auto;
        width: 90%;
    }

    /* ヘッダー */
    header {
        height: 30px;
    }

    header .logo {
        width: 80px;
    }

    /* ハンバーガーメニュー */
    .hamburger {
        width: 25px;
        height: 25px;
        gap: 5px;
    }

    .hamburger span {
        height: 1px;
    }

    /* メインビジュアル */
    .main-visual img {
        object-position: 80% center;
    }

    .main-visual .mv-copy.mv-line {
        margin-top: 10px;
    }

    .main-visual .mv-content h2 {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 3px;
        line-height: 1.1;
    }

    .main-visual .mv-content {
        top: 45%;
        transform: translateY(-55%);
        left: 4%;
    }

    .main-visual .underline::after {
        bottom: -20px;
        left: -10px;
        width: 140%;
        height: 50px;
    }

    .main-visual .underline {
        font-size: 40px;
    }

    .mv-copy {
        font-size: 10px;
        font-weight: bold;
        color: #333;
    }

    .mv-copy span {
        font-size: 10px;
        margin-right: 2px;
        color: #3E5D9E;
    }

    .main-visual .spacing {
        margin-left: 50px;
    }

    .badges {
        left: 10px;
        bottom: 10px;
        gap: 2px;
    }

    .badges img {
        width: 80px;
        height: 80px;
    }

    /* 悩みのところ */
    .item-column {
        width: 100%;
    }

    .trouble-section .blur-text {
        padding: 20px 20px;
    }

    .trouble-section h2 {
        white-space: nowrap;
        font-size: clamp(18px,3vw,28px);
    }

    .trouble-section {
        margin-top: 15px;
    }

    .trouble-wrap .item-column {
        margin-top: 40px;
    }

    .top-content img {
        width: 85%;
    }

    /* 特徴 */
    .point-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        column-gap: 28px;
        padding-top: 60px;
    }

    .point-item:nth-child(even) {
        flex-direction: column-reverse;
    }

    .point-text {
        width: 100%;
    }

    .point-text h3 {
        font-size: 24px;
        align-items: center;
        position: relative;
        display: inline-block;
    }

    .point-text p {
        padding-top: 14px;
    }

    .point-text h3 span {
        font-size: 36px;
        padding-left: 4px;
    }

    .point-title,
    .point-subtitle {
        font-size: 18px;
        font-weight: bold;
    }

    .point-subtitle {
        font-size: 14px;
        font-weight: bold;
    }

    .point-text-main {
        font-size: 14px;
        line-height: 24px;
        letter-spacing: normal;
    }

    .point-pic {
        width: 80%;
        padding-top: 14px;
    }

    .point04-pic1 {
        margin-bottom: 14px;
    }

    .point04-pic1,
    .point04-pic2 {
        width: 100%;
        position: static;
    }

    .catch-copy {
        font-size: 20px;
        padding: 40px 0;
    }

    /* スライドショー */
    .line_a img,
    .line_b img {
        height: 60px;
    }

    .line_a {
        width: 120%;
        transform: rotate(-18deg);
        transform-origin: center;
        margin-top: 20px;
        margin-left: -60px;
        overflow-x: hidden;
    }

    .line_b {
        width: 120%;
        transform: rotate(18deg);
        transform-origin: center;
        margin-top: -10px;
        margin-left: -18px;
        overflow-x: hidden;
    }

    .slick-items img {
        height: 80px;
    }

    .slick-items {
        margin-top: -100px;
    }

    /* 受講生の声 */
    .card-wrapper {
        grid-template-columns: 1fr 1fr;
        row-gap: 12px;
    }

    .card {
        max-height: 300px;
    }

    .card .face.face1 {
        transform: translateY(40px);
    }

    .card .face.face1 .content h3 {
        font-size: 14px;
    }

    .card .face.face1 .content a {
        font-size: 14px;
        pointer-events: auto;
    }

    .card:hover .face.face2 {
        transform: translateY(0);
        opacity: 1;
    }

    .card .face.face2 .content p {
        font-size: 14px;
    }

    /* ボタン */
    .voice-btn {
        margin-top: 28px;
    }

    .voice-btn a {
        column-gap: 8px;
        font-size: 14px;
        padding: 10px 24px;
    }

    .voice-btn img {
        width: 20px;
    }

    /* 卒業生の作品 */
    .graduates-cards {
        height: 220px;
    }

    .graduates-card {
        width: 180px;
    }

    /* 受講の流れ */
    .course-steps {
        display: flex;
        flex-direction: column;
        gap: 45px;
    }

    .course-step {
        width: 100%;
        height: auto;
        max-width: 360px;
        margin: 0 auto;
        padding: 30px 20px 25px;
    }

    .course-step-inner {
        display: flex;
        align-items: start;
        height: auto;
    }

    .course-step-num {
        top: -18px;
        width: 72px;
        height: 32px;
        font-size: 18px;
        padding: 8px 16px 6px 22px;
    }

    .course-step-icon {
        flex: 0 0 110px;
        margin: auto 16px auto 0;
    }

    .course-step-icon img {
        width: 80px;
        height: 80px;
    }

    .course-step::after {
        top: auto;
        bottom: -22px;
        right: 50%;
        transform: translateX(50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #2600ff;
        border-bottom: 0;
    }

    .course-step:last-child::after {
        content: none;
    }

    .course-step-title {
        margin: 10px 0 20px;
        font-size: 17px;
        text-align: center;
        white-space: normal;
    }

    .course-step-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    /* 料金 */
    #price {
        margin-top: 60px;
        padding: 40px 0;
    }

    .items {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 20px;
        padding: 16px;
    }

    .item p {
        font-size: 16px;
        padding-left: 10px;
    }

    .check {
        width: 24px;
    }

    #price h3,
    .support {
        font-size: 17px;
        padding-bottom: 28px;
    }

    .prices {
        font-size: 17px;
        font-weight: bold;
    }

    .prices span {
        font-size: 14px;
        padding-top: 35px;
    }

    .table-title {
        margin-top: 30px;
        font-size: 16px;
    }

    .price-table {
        padding: 14px 0;
    }

    .price-table th,
    .price-table td {
        padding: 12px 40px;
        font-size: 14px;
    }

    .price-table td {
        border-top: solid 1px #333;
    }

    .notes {
        text-align: right;
        font-size: 10px;
        padding-right: 2px;
    }

    /* Q&A */
    .qa-title {
        font-size: 13px;
    }

    .qa-box {
        padding: 14px 14px 14px 52px;
    }

    /* お問い合わせ */
    .sp-contact-btn {
        display: none;
    }

    .overlay::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .profile-card {
        height: 900px;
    }

    .profile-card {
        object-fit: cover;
        object-position: right;
    }

    .contact-msg {
        margin-top: -10px;
        font-size: 16px;
    }

    .overlay {
        padding: 20px 20px;
    }

    .profile-pic img {
        max-width: 70px;
    }

    .profile-text h2 {
        font-size: 14px;
    }

    .insta-icon {
        gap: 4px;
    }

    .insta-icon img {
        width: 28px;
    }

    .contact-btn {
        display: none;
    }

    .sp-contact-btn {
        display: block;
    }


    .sp-contact-btn {
        display: inline-block;
        font-size: 14px;
        padding: 12px 20px;
        margin-top: 20px;
        border-radius: 30px;
        border: 2px solid #333;
        cursor: pointer;
        background: #fff;
        color: #333;
        position: relative;
        transition-duration: .4s;
        font-size: 12px;
    }

    .sp-contact-btn:hover {
        transform: scale(1.1);
    }

    .kakashi{
        margin-bottom: 80px;
    }

    .iruka {
        flex-direction: row;
    }

    footer {
        padding: 30px 0 120px;
    }

}