@charset "utf-8";

:root {
    --maincolor: #fff;
    --lightblue: #2bb0ff;
    --blue: #4c83bc;
    --textpink: #ef96ac;
    --pink: #fb6499;
    --textyellow: #ffc300;
    --green: #06c655;
}

body {
    background: var(--maincolor);
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    position: relative;
}

img {
    width: 100%;
}

.inner {
    width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ttl {
    width: 100%;
    font-size: 3em;
    font-weight: 800;
    font-family: "Nunito";
    text-align: center;
}

.line__wrap {
    padding: 4px 5px 4px 65px;
    position: relative;
    z-index: 800;
}

.line__text {
    color: var(--green);
    font-size: 1.25em;
    font-weight: 700;
    position: relative;
}

.line__text::before {
    content: "";
    background: url(../img/LINE_icon_01.png) no-repeat center center / cover;
    width: 40px;
    height: 40px;
    position: absolute;
    top: -38%;
    left: -60px;
}

a {
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.6;
}

button {
    transition: opacity 0.3s;
}

button:hover {
    opacity: 0.6;
}

.header {
    width: 100%;
    height: 132px;
    background: var(--maincolor);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    @media screen and (max-width: 767px) {
        height: 80px;
    }
}

.header__inner {
    width: calc(100% - 160px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    @media screen and (max-width: 767px) {
        width: calc(100% - 38px);
        height: 80px;
        justify-content: start;
        gap: 19px;
    }
}

.Hmenu__btn {
    display: flex;
    flex-direction: column;
    gap: 7px;
    @media screen and (min-width: 768px) {
        display: none;
    }
}

.Hmenu__btnBorder {
    background-color: #2bb0ff;
    width: 32px;
    height: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.Hmenu__btnBorder--01.active {
    position: relative;
    transform: translateY(9px) rotate(45deg);
}

.Hmenu__btnBorder--02.active {
    opacity: 0;
}

.Hmenu__btnBorder--03.active {
    position: relative;
    transform: translateY(-9px) rotate(-45deg);
}

.header__logo {
    width: 288px;
    height: 44px;
    margin-top: 28px;
    position: relative;
    @media screen and (max-width: 767px) {
        width: 198px;
        height: 30px;
        margin-bottom: 7px;
    }
}

.header__logo::before {
    content: "中高生向け映像制作・音楽制作スクール";
    color: var(--blue);
    width: 288px;
    height: 23px;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    top: -26px;
    left: 0;
    @media screen and (max-width: 767px) {
        font-size: 11px;
        top: -19px;
    }
}

.header__logoImg {
    max-width: 211px;
    height: 100%;
    @media screen and (max-width: 767px) {
        max-width: 145px;
    }
}

.header__LINEWrap {
    @media screen and (max-width: 767px) {
        display: none;
    }
}

.page__inner {
    width: 100%;
    display: flex;
    gap: 0;
    position: relative;
}

.nav {
    width: 228px;
    height: 100vh;
    position: relative;
    z-index: 1000;
    @media screen and (max-width: 767px) {
        width: 0;
    }
}

.nav__inner {
    background: var(--lightblue);
    width: 228px;
    height: calc(100% - 132px);
    display: flex;
    justify-content: center;
    position: fixed;
    top: 132px;
    left: 0;
    transition: transform 0.3s;
    z-index: 1000;
    @media screen and (max-width: 767px) {
        height: calc(100% - 80px);
        top: 80px;
        transform: translateX(-100%);
    }
}

.nav__inner.nav__inner--active {
    transform: translateX(0);
}

.nav__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 74px;
}

.nav__text {
    color: var(--maincolor);
    font-size: 1.5em;
    font-weight: 700;
    position: relative;
    z-index: 1000;
}

.nav__shapeRed {
    width: 105px;
    height: 103px;
    position: absolute;
    top: -25px;
    left: 0;
    z-index: 200;
}

.nav_shapeYellow {
    width: 85px;
    height: 190px;
    position: absolute;
    top: 213px;
    right: 0;
    z-index: 200;
}

.nav_shapeBlue {
    width: 228px;
    height: 81px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 200;
}

.main {
    width: calc(100% - 228px);
    margin-top: 132px;
    position: relative;
    z-index: 500;
    @media screen and (max-width: 767px) {
        width: 100%;
        margin-top: 80px;
    }
}

.mv__img {
    background: url(../img/mv_01.jpg) no-repeat center center / cover;
    height: 824px;
    display: flex;
    justify-content: start;
    align-items: end;
    position: relative;
    z-index: 300;
}

.mv__text {
    color: var(--maincolor);
    font-size: 3em;
    font-weight: 700;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    bottom: 46px;
    left: calc(120 / 1212 * 100%);
    @media screen and (max-width: 767px) {
        font-size: 2em;
    }
}

.mv__word {
    display: inline-block;
}

.feature {
    position: relative;
    z-index: 200;
    padding-top: 132px;
    margin-top: -132px;
    @media screen and (max-width: 767px) {
        padding-top: 80px;
        margin-top: -80px;
    }
}

.feature__ttlWrap {
    display: block;
    width: 100%;
    position: relative;
    z-index: 200;
    margin-top: 94px;
}

.feature__ttlWrap::before {
    content: "スクールの特徴";
    color: var(--textpink);
    font-size: 20px;
    font-weight: 700;
    font-family: "Zen Maru Gothic";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.feature__contents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 53px;
    @media screen and (max-width: 1240px) {
        grid-template-columns: repeat(1, 1fr);
    }
}

.feature__card {
    width: 300px;
    height: 365px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.card__ttl--feature {
    color: var(--textpink);
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.card__contents {
    width: 100%;
    height: 192px;
    position: relative;
}

.card__text {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    position: absolute;
    top: 80px;
    left: 0px;
}

.card__imgFrame {
    width: 260px;
    height: 146px;
    border-radius: 10px;
    aspect-ratio: 260 / 146;
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.card__img {
    height: 100%;
    border-radius: 10px;
}

.line__wrap--feature {
    margin-top: 40px;
    margin-bottom: 60px;
}

.feature__shape {
    width: 184px;
    height: 180px;
    position: absolute;
    top: 132px;
    left: 0;
    z-index: 100;
    @media screen and (max-width: 767px) {
        top: 0;
        left: -40px;
    }
}

.course {
    padding-top: 132px;
    margin-top: -132px;
    @media screen and (max-width: 767px) {
        padding-top: 80px;
        margin-top: -80px;
    }
}

.course__ttlWrap {
    display: block;
    width: 100%;
    margin-top: 89px;
    position: relative;
}

.course__ttlWrap::before {
    content: "コース紹介";
    color: var(--lightblue);
    font-size: 20px;
    font-weight: 700;
    font-family: "Zen Maru Gothic";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.course__chage {
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: end;
    margin-top: 48px;
}

.chage__movie {
    background: var(--lightblue);
    color: #fff;
    font-size: 1.25em;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    @media screen and (max-width: 767px) {
        font-size: 1em;
    }
}

.chage__movie.active {
    font-size: 1.5em;
    @media screen and (max-width: 767px) {
        font-size: 1.25em;
    }
}

.chage__music {
    background: var(--pink);
    color: #fff;
    font-size: 1.25em;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    @media screen and (max-width: 767px) {
        font-size: 1em;
    }
}

.chage__music.active {
    font-size: 1.5em;
    @media screen and (max-width: 767px) {
        font-size: 1.25em;
    }
}

.course__contents {
    height: 611px;
    background: #777;
    position: relative;
    @media screen and (max-width: 1240px) {
        height: 1153px;
    }
}

.course__movie {
    width: 100%;
    background: var(--lightblue);
    color: #fff;
    padding-bottom: 60px;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
}

.course__movie.course__movie--noActive {
    opacity: 0;
}

.course__inner--movie {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.course__music {
    width: 100%;
    background: var(--pink);
    color: #fff;
    padding-bottom: 60px;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
}

.course__music.course__music--noActive {
    opacity: 0;
}

.course__inner--music {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.course__detail {
    font-size: 1.5em;
    font-weight: 500;
    margin-top: 48px;
    @media screen and (max-width: 767px) {
        font-size: 1.25em;
    }
}

.course__text {
    font-size: 1.25em;
    font-weight: 500;
}

.course__cardList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    gap: 36px;
    @media screen and (max-width: 1240px) {
        grid-template-columns: repeat(1, 1fr);
    }
}

.card {
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card__imgWrap {
    width: 300px;
    aspect-ratio: 300 / 182;
    object-fit: cover;
}

.card__ttl--movie {
    font-size: 1.25em;
    font-weight: 700;
    color: var(--lightblue);
    padding: 15px 0;
}

.card__ttl--music {
    font-size: 1.25em;
    font-weight: 700;
    color: var(--pink);
    padding: 15px 0;
}

.course__soft {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.course__softTtl {
    font-size: 1.25em;
    font-weight: 500;
}

.course__softTextWrap {
    display: flex;
    gap: 25px;
}

.course__softText {
    font-size: 1em;
    font-weight: 500;
}

.flow {
    position: relative;
    padding-bottom: 50px;
    padding-top: 132px;
    margin-top: -132px;
    @media screen and (max-width: 767px) {
        padding-top: 80px;
        margin-top: -80px;
    }
}

.flow__ttlWrap {
    display: block;
    width: 100%;
    margin-top: 69px;
    position: relative;
}

.flow__ttlWrap::before {
    content: "入塾までの流れ";
    color: var(--textyellow);
    font-size: 20px;
    font-weight: 700;
    font-family: "Zen Maru Gothic";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.flow__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    margin-top: 48px;
}

.flow__item {
    display: flex;
    justify-content: center;
    width: 100%;
}

.flow__card {
    width: 100%;
    max-width: 710px;
    background: #fff;
    color: #ffc300;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 15px 30px;
    border-radius: 15px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 200;
    @media screen and (max-width: 767px) {
        width: 100%;
    }
}

.flow__card--arrow::after {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/flow_arrow_01.svg) no-repeat center center / contain;
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
}

.flow__cardTtl {
    font-size: 1.5em;
    font-weight: 500;
}

.flow__cardText {
    font-size: 1.25em;
    text-align: center;
}

.line__wrap--flow {
    margin-top: 58px;
}

.flow__shape {
    width: 138px;
    height: 308px;
    position: absolute;
    top: 392px;
    right: 0;
    z-index: 100;
    @media screen and (max-width: 767px) {
        width: 85px;
        height: 190px;
    }
}

.teacher {
    position: relative;
    padding-top: 132px;
    margin-top: -132px;
    @media screen and (max-width: 767px) {
        padding-top: 80px;
        margin-top: -80px;
    }
}

.teacher__inner {
    max-width: 686px;
}

.teacher__ttlWrap {
    display: block;
    width: 100%;
    margin-top: 89px;
    position: relative;
}

.teacher__ttlWrap::before {
    content: "講師紹介";
    color: var(--lightblue);
    font-size: 20px;
    font-weight: 700;
    font-family: "Zen Maru Gothic";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.teacher__profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 20px;
    }
}

.teacher__introduction {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.teacher__imgwrap {
    width: 92px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.teacher__name {
    font-size: 1.5em;
    font-weight: 500;
    @media screen and (max-width: 767px) {
        font-size: 1.25em;
    }
}

.teacher__overview {
    width: calc(100% - 135px);
    font-size: 1em;
    line-height: 1.5;
    @media screen and (max-width: 767px) {
        width: 100%;
    }
}

.teacher__messageTtl {
    font-size: 1.5em;
    font-weight: 500;
    color: var(--lightblue);
    margin-top: 48px;
    text-align: center;
}

.teacher__messageTtlSpan {
    display: inline-block;
}

.teacher__message {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
    margin-bottom: 60px;
}

.teacher__messageText {
    font-size: 1em;
    line-height: 1.5;
    position: relative;
    z-index: 300;
}

.teacher__shape {
    width: 363px;
    aspect-ratio: 363 / 129;
    object-fit: cover;
    position: absolute;
    bottom: -27px;
    left: -12px;
    z-index: 100;
    @media screen and (max-width: 1300px) {
        width: 228px;
        left: -7px;
        bottom: -29px;
    }
}

.faq {
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 400;
    padding-top: 132px;
    margin-top: -132px;
    @media screen and (max-width: 767px) {
        padding-top: 80px;
        margin-top: -80px;
    }
}

.faq__contents {
    background: var(--blue);
}

.faq__ttlWrap {
    display: block;
    width: 100%;
    margin-top: 40px;
}

.faq__accordion {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.accordion__list {
    width: 605px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    @media screen and (max-width: 767px) {
        gap: 16px;
    }
}

.accordion__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion__ttlWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 10px 10px 29px;
}

.accordion__ttl {
    font-size: 1em;
    font-weight: 500;
    position: relative;
}

.accordion__ttl::before {
    content: "Q.";
    width: 16px;
    height: 23px;
    font-size: 1em;
    font-weight: 500;
    position: absolute;
    top: 0px;
    left: -20px;
}

.accordion__ttl--faq {
    color: #000;
}

.accordion__btn {
    width: 20px;
    height: 20px;
    position: relative;
}

.accordion__btnClose {
    width: 20px;
    height: 2px;
    background: #000;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.accordion__btnOpen {
    width: 20px;
    height: 2px;
    background: #000;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.accordion__btnOpen.open {
    transform: translateY(-50%) rotate(90deg);
}

.accordion__textWrap {
    display: none;
}

.accordion__text {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.5;
    padding-left: 29px;
    position: relative;
}

.accordion__text::before {
    content: "A.";
    width: 15px;
    height: 23px;
    font-size: 1em;
    font-weight: 500;
    position: absolute;
    top: 0px;
    left: 10px;
}

.accordion__textList {
    display: flex;
    gap: 10px;
    @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 5px;
    }
}

.accordion__text--regular {
    font-weight: 400;
}

.accordion__text.accordion__text--regular::before {
    content: "";
}

.faq__LINEWrap {
    background: #fff;
    display: flex;
    align-items: center;
    height: 50px;
    border-radius: 10px;
    margin: 24px auto 60px;
}

.access {
    padding-top: 132px;
    margin-top: -132px;
    @media screen and (max-width: 767px) {
        padding-top: 80px;
        margin-top: -80px;
    }
}

.access__ttlWrap {
    display: block;
    width: 100%;
    margin-top: 69px;
    position: relative;
}

.access__ttlWrap::before {
    content: "アクセス";
    color: var(--blue);
    font-size: 20px;
    font-weight: 700;
    font-family: "Zen Maru Gothic";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.access__contents {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 40px;
    @media screen and (max-width: 900px) {
        flex-direction: column;
    }
}

.access__map {
    width: 335px;
    height: 220px;
}

.access__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.access__address {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.access__post {
    font-size: 1em;
    font-weight: 400;
}

.access__housenumber {
    font-size: 1em;
    font-weight: 400;
}

.access__traffic {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.access__trafficText {
    font-size: 1em;
    font-weight: 400;
}

.access__active {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.access__openList {
    display: flex;
    gap: 20px;
}

.access__openDt {
    font-size: 1em;
    font-weight: 400;
}

.access__openDd {
    font-size: 1em;
    font-weight: 400;
}

.access__holiday {
    display: flex;
    gap: 20px;
}

.access__holidayDt {
    font-size: 1em;
    font-weight: 400;
}

.access__holidayDd {
    font-size: 1em;
    font-weight: 400;
}

.footer {
    background: var(--blue);
    padding: 40px 0;
    position: relative;
    z-index: 1100;
    @media screen and (max-width: 767px) {
        padding: 20px 0;
    }
}

.footer__copy {
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 14px;
    text-align: center;
}