/* スライダーコンテナ */
.slider_container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* 各スライド */
.main_section {
    max-width: 100%;
    background-image: url(../image/top_image/backgraund_blue.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mv {
    margin-top: 25px;
    display: flex;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: auto;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-position: center;
    background-size: cover;
}

.sp_mv {
    display: none;
}

/* モバイル用メディアクエリ */
@media (max-width: 767px) {
    .pc_mv {
        display: none;
    }

    .slider_container {
        position: relative;
        width: 100%;
        height: 800px;
        overflow: hidden;
    }

    .sp_mv {
        display: block;
        width: 100%;
        height: 30%;
    }

    .main_section {
        max-width: 100%;
        background-image: url(../image/top_image/sp_mv_back.png);
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        position: relative;
    }
}

/* 画像を綺麗にフィット */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 最初のスライドを表示 */
.slide.active {
    opacity: 1;
}

/* ✨キランエフェクト✨ */
.shine {
    position: absolute;
    top: 0;
    object-fit: cover;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
}

/* アクティブなスライドの時にキランエフェクトを発動 */
.slide.active .shine {
    animation: shineEffect 1.5s ease-in-out;
}

/* キランエフェクトのアニメーション */
@keyframes shineEffect {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ここからイベントセクション */
.event_section {
    margin-top: 160px;
    color: #fff;
}

.event_section {
    background-image: url(../image/top_image/event_back.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    height: 860px;
    width: 100%;
    margin-top: 90px;
}

.white_title {
    text-align: center;
    margin: 0 auto;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    padding-top: 60px;
}

.event_title {
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
}

.event_subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-top: -10px;
}

.event_item {
    display: flex;
    align-items: start;
    margin-top: 70px;
    gap: 100px;
    justify-content: center;
    max-width: 100%;
}

.event_item_title {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    align-items: flex-start;
    padding-left: 0;
    margin-top: 25px;
}

.event_item_text {
    display: inline-block;
    max-width: 580px;
    line-height: 170%;
    font-size: 16px;
    margin-top: 15px;
}

@media (max-width: 767px) {
    .event_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
        width: 100%;
    }

    .event_item_title,
    .event_item_text,
    .event_item img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        line-height: 170%;
    }

    .event_item_title {
        font-size: 20px;
        margin-top: 20px;
    }

    .event_item_text {
        font-size: 14px;
        line-height: 170%;
    }

    .event_section {
        background-image: url(../image/top_image/event_sp_back.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        height: 900px;
        width: 100%;
        margin-top: -70px;
        align-items: center;
        text-align: center;
    }

    .white_title {
        text-align: center;
        margin: 0 auto;
        font-size: 32px;
        font-weight: bold;
        color: #fff;
        padding-top: 40px;
    }

    .event_subtitle {
        font-size: 12px;
        font-weight: bold;
        margin-top: -10px;
    }
}

/* ここまでイベントセクション */
/* ここからabout us */
.aboutus_section {
    margin-top: -40px;
}

.aboutus_title {
    margin-top: 64px;
    text-align: center;
    margin-bottom: 10px;
}

.aboutus_subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-top: -20px;
}

.aboutus_imgcontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
}

@media (max-width: 767px) {
    .aboutus_section {
        margin-top: -20px;
    }

    .aboutus_imgcontainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }

    .aboutus_imgcontainer img {
        width: 120%;
        height: 100%;
    }

    .row {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }

    .aboutus_subtitle {
        font-size: 12px;
        font-weight: bold;
        margin-top: -10px;
    }
}

.row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.aboutus_button_container {
    text-align: center;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-size: 22px;
    font-weight: bold;
    margin-top: 30px;
}

.aboutus_button {
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    margin-left: 10px;
}

/* アイコンホバー */
.aboutus_button:hover {
    animation: bounce 0.4s ease-in-out;
}

/* ここまでabout us */
/* ここからコース */

.couse {
    margin-top: 145px;
}

.couse_content {
    margin-top: 80px;
}

.couse_item01,
.couse_item02,
.couse_item03 {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: block;
    overflow: hidden;
}

/* 画像 */
.couse_item01_img,
.couse_item02_img,
.couse_item03_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease-in-out;
}

.couse_item01_img:hover,
.couse_item02_img:hover,
.couse_item03_img:hover {
    transform: scale(1.1);
}

/* グラデーション */
.couse_item01::after,
.couse_item02::after,
.couse_item03::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

/* 各アイテムのグラデーション */
.couse_item01::after {
    background-image: url(../image/top_image/gradation-blue.png);
}

.couse_item02::after {
    background-image: url(../image/top_image/gradation-yellow.png);
}

.couse_item03::after {
    background-image: url(../image/top_image/gradation-orange.png);
}

/* 画像のリンク */
.couse_item01 a,
.couse_item02 a,
.couse_item03 a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    /* 画像のリンクがテキストの下にならないように */
}

/* 画像 */
.couse_item01_img,
.couse_item02_img,
.couse_item03_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.couse_text_overlay {
    position: absolute;
    top: 65px;
    left: 70px;
    color: #333;
    z-index: 3;
    max-width: 609px;
}

/* タイトル */
.couse_title {
    display: inline-block;
    font-size: 50px;
    font-weight: lighter;
}

/* 説明文 */
.couse_text {
    display: inline-block;
    line-height: 170%;
    font-size: 16px;
    margin-top: 5px;
}

/* ボタン */
.couse_button {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .couse {
        margin-top: -10px;
    }

    .couse_content {
        margin-top: 40px;
    }

    .couse_item01,
    .couse_item02,
    .couse_item03 {
        height: auto;
    }

    .couse_item01_img,
    .couse_item02_img,
    .couse_item03_img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .couse_text_overlay {
        top: 2px;
        left: 20px;
        max-width: 60%;
    }

    .couse_title {
        font-size: 20px;
    }

    .couse_text {
        font-size: 10px;
        margin-top: 5px;
        line-height: 170%;
    }

    .couse_button img {
        width: 20px;
        margin-top: 0px;
        height: auto;
    }

    .couse_button {
        margin-top: 3px;
    }
}

/* ここまでコース */
/* ここから実績紹介 */
.achievement_section {
    margin-top: 150px;
}

.achievement {
    background-image: url(../image/top_image/orange_triangle.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.achievement_title {
    margin-top: 64px;
    text-align: center;
    margin-bottom: 10px;
}

.achievement_subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-top: -10px;
    margin-bottom: 7px;
}

.achievement_content_title {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 85px;
    font-weight: bold;
    font-size: 24px;
    line-height: 130%;
}

.achievement_content_title_icon {
    color: #2EBBD3;
    font-size: 34px;
}

.achievement_content_item {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

/* 縦並びの画像 */
.achievement_content_column {
    max-width: 500px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .achievement_section {
        margin-top: 80px;
    }

    .achievement_subtitle {
        font-size: 12px;
        font-weight: bold;
        margin-top: -10px;
        margin-bottom: 7px;
    }

    .achievement_content_title {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-top: 40px;
        font-weight: bold;
        font-size: 20px;
        line-height: 130%;
    }

    .achievement_content_item {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        margin-top: 1px;
    }

    .achievement {
        background-image: url(../image/top_image/orange_triangle.png);
        background-repeat: no-repeat;
        background-position: center 20%;
        background-size: 100%;
    }

    .achievement_image {
        width: 100%;
        text-align: left;
        font-size: 14px;
        line-height: 1.5;
    }

    .achievement_image_title {
        font-size: 14px;
        margin-top: 8px;
    }

    .achievement_image_text {
        font-size: 13px;
        margin-top: 4px;
    }


    .achievement_content_column {
        height: auto;
        gap: 30px;
    }

    .achievement_content_item01_slide {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}

/* ヘアアレンジスライダーのコンテナ */
.achievement_content_item01_slide {
    position: relative;
    width: 500px;
    height: 700px;
    overflow: hidden;
}

.achievement_03 {
    position: relative;
    width: 500px;
    height: 250px;
    overflow: hidden;
}

/* 各スライド */
.achievement_content_item01_slide_img,
.achievement_03_img {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* アクティブなスライド */
.achievement_content_item01_slide_img.active,
.achievement_03_img.active {
    opacity: 1;
}

/* ページネーション（○ボタン） */
.pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.pagination button {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.pagination button.active {
    background: #DBF12F;
}

/* 画像サイズ調整 */
.achievement_content_item01 img {
    height: auto;
    width: 100%;
}

/* 写真下部のコメント */
.achievement_image,
.achievement_content_item02 {
    margin-top: 30px;
    line-height: 170%;
}

.achievement_content_item01,
.achievement_content_item02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.chievement_content_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.achievement_image_text {
    font-weight: bold;
    align-items: flex-start;
}


/* 実績スライダー */
.swiper-container {
    width: 100%;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* 上下の間隔 */
}

.swiper {
    width: 100%;
}

.swiper-slide img {
    width: 90%;
    height: auto;
}

.voice_text {
    max-width: 100%;
    display: flex;
    gap: 50px;
}

@media (max-width: 767px) {

    /* スライダーのコンテナサイズ調整 */
    .achievement_content_item01_slide {
        width: 320px;
        height: 448px;
    }

    .achievement_03 {
        width: 320px;
        height: 160px;
    }

    /* スライド内の画像 */
    .achievement_content_item01_slide_img,
    .achievement_03_img {
        width: 100%;
        height: 100%;
    }

    /* ページネーション */
    .pagination {
        bottom: 6px;
        gap: 6px;
    }

    .pagination button {
        width: 8px;
        height: 8px;
    }

    /* テキストエリア調整 */
    .achievement_image,
    .achievement_content_item02 {
        margin-top: 16px;
        padding: 0 12px;
        line-height: 1.6;
    }

    .achievement_image_text {
        font-size: 13px;
        line-height: 1.4;
    }

    .achievement_image_title {
        font-size: 14px;
    }

    /* レイアウト全体の調整 */
    .achievement_content_item01,
    .achievement_content_item02 {
        width: 100%;
        max-width: 320px;
    }

    .swiper-container {
        margin-top: 19px;
        gap: 16px;
    }

    .voice_text {
        flex-direction: column;
        gap: 24px;
    }

}

/* ここまで実績スライダー */
.table {
    margin-top: 60px;
    text-align: center;
    align-items: center;
    display: flex;
    position: relative;
}

.table_sp_image {
    display: none;
}

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

    .table_sp_image {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .table_button {
        right: 15px;
        margin-top: 680px;
        width: 30px;
        height: 30px;
    }

}

/* ここまで実績紹介 */
/* ここからクリエイターズボイス */
.voice_section {
    margin-top: 150px;
}

.voice_title {
    margin-top: 64px;
    text-align: center;
    margin-bottom: 80px;
}

.voice_subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-top: -15px;
}

.voice_content {
    margin-top: 80px;
    display: flex;
    position: relative;
}

.voice_content_item img,
.voice_box img {
    transition: transform 0.5s ease;
}

.voice_content_item img:hover,
.voice_box img:hover {
    transform: scale(1.02);
}

.voice_content_item,
.voice_text {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-around;
    position: relative;
}

.school {
    margin-top: 172px;
    display: flex;
}

/* 初期状態：SP画像非表示 */
.voice_sp_image {
    display: none;
}

.arrow {
    display: none;
}

@media (max-width: 767px) {
    .voice_section {
        margin-top: 80px;
    }

    .voice_subtitle {
        font-size: 12px;
        font-weight: bold;
        margin-top: -15px;
    }

    .voice_pc_image {
        display: none;
    }

    .voice_sp_image {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .voice_content01 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .voice_text {
        display: none;
    }

    /* 前への矢印 */
    .voice_swiper-button-prev {
        left: -30px;
    }

    /* 次への矢印 */
    .voice_swiper-button-next {
        right: -30px;
    }

    .swiper-slide img {
        height: auto;
        width: 100%;
        position: relative;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: -25px;
    }

    .voice_container {
        margin-left: auto;
        margin-right: auto;
        max-width: 350px;
        position: relative;
        margin-top: 30px;
        justify-content: center;
    }

    .voice_swiper {
        max-width: 320px;
    }

    .voice_content_item img,
    .voice_box img {
        transition: transform 0.5s ease;
    }

    .voice_content_item img:hover,
    .voice_box img:hover {
        transform: scale(1.02);
    }
}

@media (min-width: 768px) {
    .voice_container {
        display: none;
    }

    /* ページ矢印を非表示 */
    .voice_swiper-pagination,
    .voice_swiper-button-prev,
    .voice_swiper-button-next {
        display: none;
    }
}

@media (max-width: 767px) {
    .school {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 115px;
    }

    .school a img {
        width: 100%;
        height: auto;
    }
}

/* ここまでクリエイターズボイス */
/* ここからよくある質問 */
.question_button {
    background-color: #DBF12F;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 58px 401px;
    font-size: 34px;
    line-height: 130%;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    border-radius: 16px;
    transition: background-color 0.3s ease;
}

.question_button::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 30px;
    width: 60px;
    height: 60px;
    background-image: url(../image/top_image/button_black.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.question_button:hover {
    background-color: #f5ff6a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.question_button_container {
    margin-top: 80px;
    text-align: center;
}

@media (max-width: 767px) {
    .question_button {
        background-color: #DBF12F;
        display: inline-flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 58px 401px;
        font-size: 34px;
        line-height: 130%;
        text-align: center;
        font-weight: bold;
        cursor: pointer;
        position: relative;
        transition: background-color 0.3s ease;
    }

    .question_button {
        width: 80%;
        height: 53px;
        padding: 0 40px;
        font-size: 20px;
        line-height: 53px;
        position: relative;
    }

    .question_button:hover {
        background-color: #f5ff6a;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .question_button::after {
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background-image: url(../image/top_image/button_black.png);
    }
}

/* ここまでよくある質問 */
/* ここからニュース */
.news_section {
    margin-top: 150px;
}

.news_title {
    margin-top: 64px;
    text-align: center;
    margin-bottom: 10px;
}

.news_subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

/* 全体ニュースコンテナ */
.news_container {
    width: 80%;
    margin: 0 auto;
}

/* 各ニュースアイテム */
.news_item {
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: start;
    margin-top: 70px;
    position: relative;
    padding-bottom: 40px;
}

.news_item_inner {
    display: flex;
}

.news-date {
    text-align: left;
    align-items: flex-start;
    margin-left: 30px;
}

.info_icon {
    margin-left: 30px;
}

.news_info_title {
    max-width: 100%;
    margin-left: 30px;
}

.news a:hover {
    animation: bounce 0.4s ease-in-out;
}

.news_button {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 40px;
    height: 40px;
}


@media (max-width: 767px) {
    .news_section {
        margin-top: 80px;
    }

    .news_container {
        width: 100%;
        gap: 5px;
    }

    .news_item {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
    }

    .news_item_inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .info_icon {
        margin: 0 0 8px 0;
        width: 100px;
        height: auto;
    }

    .news-date {
        font-size: 14px;
        margin-left: 10px;
        white-space: nowrap;
        display: flex;
    }

    .sp_news {
        display: flex;
        width: 100%;
        gap: 30px;
    }

    .news_info_title {
        font-size: 14px;
        line-height: 170%;
        max-width: 100%;
        margin-left: 20px;
    }

    .news_item a img {
        width: 24px;
        height: 24px;
    }

    .news_item {
        padding-bottom: 10px;
        border-bottom: 1px solid #333;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-top: 30px;
    }

    .news a:hover {
        animation: bounce 0.4s ease-in-out;
    }

    .news_button {
        position: absolute;
        bottom: -5px;
        right: 0;
        width: 40px;
        height: 40px;
    }

}

/* ここまでニュース */
/* ここからアクセス */
.access_section {
    margin-top: 50px;
}

.access_title {
    margin-top: 64px;
    text-align: center;
    margin-bottom: 10px;
}

.access_subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

.access_item {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.access_item_text {
    padding: 61px 90px;
    display: inline-block;
    line-height: 170%;
    text-align: left;
    align-items: flex-start;
}

.access_item_text_title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 8px;
}

.access_item_text_item {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .access_item {
        display: flex;
        flex-direction: column;
    }

    .access_item_map iframe {
        width: 322px;
        height: 235px;
        max-width: 100%;
    }

    .access_item_text {
        width: 100%;
    }

    .access_item_text_title {
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 1px;
    }

    .access_item_text_item {
        font-size: 14px;
        margin-bottom: 4px;
    }
}