@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    color: #121212;
    font-size: 0.9rem;
    line-height: 1.7;
    font-family: "Zen Kaku Gothic New", "Roboto", "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

a {
    color: #121212;
    text-decoration: none;
}

img {
    max-width: 100%;
}

li {
    list-style: none;
}

.site-title {
    line-height: 1px;
}

.site-title img {
    width: 300px;
}

.site-title a {
    display: block;
}

.sec-title {
    font-size: 2.25rem;
    margin-bottom: 30px;
    text-align: center;
}

/*
フェード表示させる要素に使用するためのクラス
*/
.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb90 {
    margin-bottom: 90px;
}

.mb100 {
    margin-bottom: 100px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb50 {
    padding-bottom: 50px;
}

.pb60 {
    padding-bottom: 60px;
}

.pb70 {
    padding-bottom: 70px;
}

.pb80 {
    padding-bottom: 80px;
}

.pb90 {
    padding-bottom: 90px;
}

.pb100 {
    padding-bottom: 100px;
}


/*-------------------------------------------
Zen Kaku Gothic New: CSS classes
-------------------------------------------*/

.zen-kaku-gothic-new-light {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.zen-kaku-gothic-new-regular {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.zen-kaku-gothic-new-medium {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.zen-kaku-gothic-new-bold {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.zen-kaku-gothic-new-black {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-style: normal;
}

/*-------------------------------------------
Zen Maru Gothic: CSS classes
-------------------------------------------*/

.zen-maru-gothic-light {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.zen-maru-gothic-regular {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.zen-maru-gothic-medium {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.zen-maru-gothic-bold {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.zen-maru-gothic-black {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 900;
    font-style: normal;
}



/*-------------------------------------------
ヘッダー
-------------------------------------------*/
/*
「position: fixed;」でヘッダーを固定し、「z-index: 10;」で前面に表示
※他のコンテンツでpositionをrelative、absolute、fixedのいずれかに
設定している場合は、z-indexの数値が大きい方が前面に表示される
*/
#header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    position: fixed;
    z-index: 10;
    /* background-color: #FFEC49; */
}

/*
ハンバーガーメニュー
解説は、「中級編：ストアサイト（インテリア）」のCSS参照
*/
#navi {
    display: block;
    position: fixed;
    top: 0;
    right: -300px;
    bottom: 0;
    width: 300px;
    color: #fff;
    padding: 80px 25px;
    background-color: #19B9C9;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 20;
    opacity: 0;
}

#navi a {
    color: #fff;
}

.open #navi {
    right: 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 #fff;
}

#navi ul.nav-sns li {
    padding: 5px 0;
}

.toggle_btn {
    display: block;
    position: fixed;
    top: 25px;
    right: 45px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 20;
}

.toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #000000;
    border-radius: 4px;
    transition: all .5s;
}

.toggle_btn span:nth-child(1) {
    top: 4px;
}

.toggle_btn span:nth-child(2) {
    top: 14px;
}

.toggle_btn span:nth-child(3) {
    bottom: 4px;
}

.open .toggle_btn span {
    background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
}

#mask {
    display: none;
    transition: all .5s;
}

.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 10;
    cursor: pointer;
}

/*-------------------------------------------
Main
-------------------------------------------*/
#main {
    background-color: #F6F6F6;
    padding-bottom: 60px;
}

#main img {
    /* padding-top: 80px; */
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto;
    height: auto;
}

#top,
#message,
#achievements,
#feature,
#flow,
#contact,
#flow {
    scroll-margin-top: 120px !important;
}


#form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    scroll-margin-top: 30px;
}

@media (max-width: 1023px) {
    #form {
        max-width: 700px;
    }
}

/* スマホ（〜767px） */
@media (max-width: 767px) {
    #form {
        border-radius: 0px;
        max-width: 500px;
    }
}

.section-wrapper {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
}


.ttl1 {
    font-size: 2rem;
    padding-top: 100px;
    margin-bottom: 20px;
    text-align: center;
}

.ttl1_pb60 {
    padding-bottom: 60px;
}

@media (max-width: 767px) {
    .ttl1_pb60 {
        padding-bottom: 10px;
    }
}

/* PC（1025px〜） */
.pc {
    display: block !important;
}

.tab {
    display: none !important;
}

.sp {
    display: none !important;
}

/* タブレット（768〜1023px） */
@media (max-width: 1023px) {
    .pc {
        display: none !important;
    }

    .tab {
        display: block !important;
    }

    .sp {
        display: none !important;
    }
}

/* スマホ（〜767px） */
@media (max-width: 767px) {
    .pc {
        display: none !important;
    }

    .tab {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .ttl1 {
        font-size: 1.4rem;
        margin-top: 20px;
        padding-top: 0;
    }
}

.button-41 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    margin: 0 auto;
    margin-bottom: 60px;
    padding: .9em 2em;
    border: none;
    border-radius: 45px;
    background-color: #ffffff;
    color: #000000;
    font-weight: 600;
    font-size: 1.4em;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
}

/* スマホ（〜767px） */
@media (max-width: 767px) {
    .button-41 {
        width: 300px;
        font-size: 1em;
    }
}

.dli-mail {
    display: inline-block;
    vertical-align: middle;
    color: #19B9C9;
    line-height: 1;
    position: relative;
    width: 1.06667em;
    height: 0.8em;
    border: 0.2em solid currentColor;
    border-radius: 0.2em;
    box-sizing: content-box;
    overflow: hidden;
    margin-right: 10px;
}

.dli-mail::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 0.75425em;
    height: 0.75425em;
    border: 0.2em solid currentColor;
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 0 0 0 0.2em;
    box-sizing: content-box;
    transform: translate(-50%, -50%) rotate(-45deg) skew(10deg, 10deg);
}

.button-41:hover {
    animation: anima-button-41 2s linear infinite;
}

@keyframes anima-button-41 {
    7% {
        transform: translateY(-15px);
    }

    15% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-7px);
    }

    25% {
        transform: translateY(0);
    }
}

.slider {
    visibility: hidden;
}

.slider.slick-initialized {
    visibility: visible;
}


/*-------------------------------------------
top
-------------------------------------------*/
#top {
    background-color: #F9E622;
}

.planePath {
    stroke: #D9DADA;
    stroke-width: .1%;
    stroke-width: .5%;
    stroke-dasharray: 1% 2%;
    stroke-linecap: round;
    fill: none;
}

.fil1 {
    fill: #D9DADA;
}

.fil2 {
    fill: #C5C6C6;
}

.fil4 {
    fill: #9D9E9E;
}

.fil3 {
    fill: #AEAFB0;
}


#particles-js {
    position: absolute;
    /* ← fixedだと高さが追従しない */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* wrapperの高さと同じになる */
    z-index: 1;
}

#wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    /* mv の高さで決まる */
}

.mv img {
    width: 100%;
    height: auto;
    display: block;
}

/* PCはpc画像、タブレットはtab画像、スマホはsp画像だけ表示 */
.pc {
    display: block;
}

.tab {
    display: none;
}

.sp {
    display: none;
}

@media (max-width: 1023px) {
    .pc {
        display: none;
    }

    .tab {
        display: block;
    }

    .sp {
        display: none;
    }
}

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

    .tab {
        display: none;
    }

    .sp {
        display: block;
    }
}

/*-------------------------------------------
message
-------------------------------------------*/
.message {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
    padding-top: 100px;
}

.message p {
    font-style: normal;
    font-weight: 505;
    font-size: 15px;
    line-height: 60px;
    padding-left: 8px;
}

.message .message_img {
    width: 80%;
    max-width: 450px;
    height: auto;
}

.slider3 {
    margin-top: 100px;
}

.talent_button a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    max-width: 250px;
    padding: 10px 25px;
    color: #333;
    text-decoration: none;
    color: #333;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    background: #ffffff;
    border-radius: 9999px;
    border-bottom: 2px solid #999;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
    margin-top: 20px;
    margin-bottom: 40px;
}

.talent_button a:hover {
    color: #fff;
    background: #999;
    border-bottom: 2px solid #fff;
    transform: translateY(3px);
}

.group {
    background-color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 40px;
    padding-top: 20px;
    border-radius: 15px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
}

.group h5 {
    font-size: 24px;
    padding-bottom: 10px;
    color: #323232;
    text-align: center;
}

.group .group_flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

#main .group .group_flex img {
    max-width: 300px;
}

@media (max-width: 1023px) {

    .message {
        padding: 10px;
        max-width: 730px;
        margin: 0 auto;
        gap: 10px;
        padding-top: 50px;
    }

    .message p {
        font-size: 12px;
        line-height: 40px;
        padding-left: 8px;
    }

    .message .message_img {
        max-width: 300px;
        height: auto;
    }

    .slider3 {
        margin-top: 60px;
    }

    .group h5 {
        font-size: 16px;
        padding-bottom: 10px;
    }

}

@media (max-width: 767px) {

    .message {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding-top: 10px;
    }

    .message p {
        font-size: 10px;
        line-height: 30px;
        padding-left: 8px;
        text-align: center;
    }

    .talent_button a {
        max-width: 200px;
        padding: 5px 25px;
        font-size: 10px;
    }

    .slider3 {
        margin-top: 30px;
    }

    .group .group_flex {
        display: flex;
        flex-direction: column;
    }

    #main .group .group_flex img {
        max-width: 200px;
    }

    .group h5 {
        font-size: 18px;
        padding-bottom: 20px;
    }

}


/*-------------------------------------------
コラボ実績
-------------------------------------------*/

.zoom-box {
    display: inline-block;
    overflow: hidden;
    border-radius: 30px;
}

.c-bnr.zoom {
    display: block;
    transition-duration: .5s;
}

.c-bnr.zoom:hover {
    transform: scale(1.2);
}

.achievement_button a {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    max-width: 400px;
    background: #F9E622;
    margin: auto;
    padding: 7px 30px;
    text-align: center;
    line-height: 1.8;
    text-decoration: none;
    font-weight: 500;
    outline: none;
    color: #3c3c3c;
    transition: ease .2s;
}

.achievement_button a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
}

.achievement_button a:hover::before {
    animation: shine 0.7s;
}

.achievement_button2 a {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    max-width: 400px;
    background: #F9E622;
    margin: auto;
    padding: 7px 30px;
    text-align: center;
    line-height: 1.8;
    text-decoration: none;
    font-weight: 500;
    outline: none;
    color: #3c3c3c;
    transition: ease .2s;
}

.achievement_button2 a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
}

.achievement_button2 a:hover::before {
    animation: shine 0.7s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.achievement_button2 a {
    color: #000;
    background-color: #fff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
}

.achievement_boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 2列 */
    gap: 20px;
    /* 隙間 */
    max-width: 1000px;
    margin: 0 auto;
}

.achievement_box {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 400px;
    padding-top: 60px;
}

.achievement_box>.achievement_button {
    margin-top: auto;
    /* これだけで下に配置される */
}

.btn-text::after {
    content: "オーディションサイトはこちら";
}

.achievements_text h4 {
    font-size: 14px;
}

@media (max-width: 1023px) {
    .btn-text::after {
        content: "サイトはこちら";
    }

    .btn-text {
        font-size: 12px;
    }

    .achievement_button a {
        padding: 5px 30px;
        line-height: 1.6;
    }

    .achievement_button2 a {
        padding: 5px 30px;
        line-height: 1.6;
    }

    .achievements_text h4 {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .btn-text::after {
        content: "サイトはこちら";
    }

    .btn-text {
        font-size: 10px;
    }

    .achievement_button a {
        padding: 5px 10px;
        line-height: 1.2;
        font-size: 12px;
    }

    .achievement_button2 a {
        padding: 5px 10px;
        line-height: 1.2;
        font-size: 12px;
    }

    .achievement_boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2列 */
        gap: 10px;
        /* 隙間 */
    }

    .achievement_box {
        max-width: 400px;
        padding-top: 20px;
    }

    .achievements_text h4 {
        font-size: 10px;
    }
}


/*-------------------------------------------
できること
-------------------------------------------*/

.count-size {
    font-size: 130px;
    font-family: "special-gothic-semicondensed", sans-serif;
    font-style: normal;
    font-weight: 700;
    color: #19B9C9;
}

.boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2列 */
    gap: 20px;
    /* 隙間 */
    max-width: 1000px;
    margin: 0 auto;
}

.boxes p {
    font-size: 18px;
    font-weight: bold;
}

.box {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    background: #fff;
    text-align: center;
    border-radius: 10px;
}

@media (max-width: 1023px) {
    .count-size {
        font-size: 90px;
    }

    .boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        /* 隙間 */
        max-width: 730px;
        margin: 0 auto;
    }

    .boxes p {
        font-size: 18px;
        font-weight: bold;
    }

    .box {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        padding-top: 20px;
        background: #fff;
        text-align: center;
        border-radius: 10px;
    }

}

@media (max-width: 767px) {
    .count-size {
        font-size: 90px;
    }

    .boxes {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        /* 隙間 */
        max-width: 730px;
        margin: 0 auto;
    }

    .boxes p {
        font-size: 18px;
        font-weight: bold;
    }

    .box {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        padding-top: 20px;
        background: #fff;
        text-align: center;
        border-radius: 10px;
    }
}

.arrow {
    width: 50px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

/*-------------------------------------------
できること2
-------------------------------------------*/

.feature2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
    padding-top: 100px;
}

.feature2 h3 {
    font-size: 100px;
    line-height: 100px;
    color: #F35A5A;
}

.feature2 h5 {
    font-size: 24px;
    padding-bottom: 10px;
    padding-top: 10px;
    color: #000;
}

.feature2 p {
    font-style: normal;
    font-weight: 505;
    font-size: 14px;
    line-height: 30px;
}

.feature2 .feature2_img {
    width: 100%;
    max-width: 550px;
    height: auto;
}

.feature2_mb60 {
    margin-bottom: 60px;
}

@media (max-width: 1023px) {

    .feature2 {
        padding: 10px;
        max-width: 730px;
        margin: 0 auto;
        gap: 10px;
        padding-top: 50px;
        max-width: 700px;
    }

    .feature2 p {
        font-size: 12px;
        line-height: 25px;
    }

    .feature2 h5 {
        font-size: 16px;
        padding-bottom: 10px;
        padding-top: 10px;
        color: #000;
    }

    .feature2 .feature2_img {
        max-width: 370px;
        height: auto;
    }

}

@media (max-width: 767px) {

    .feature2 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 10px;
        align-items: start;
    }

    .feature2 h5 {
        font-size: 15px;
    }

    .feature2 p {
        text-align: left;
        font-size: 10px;
        line-height: 20px;
        padding-left: 0;
    }

    .feature2_mb60 {
        margin-bottom: 0px;
    }

}

/*-------------------------------------------
流れ
-------------------------------------------*/

#flow h4 {
    text-align: center;
    line-height: 2;
    font-size: 16px;
}

#flow h5 {
    text-align: center;
    line-height: 2;
    font-size: 24px;
    margin-bottom: 100px;
}

span.marker {
    background: linear-gradient(transparent 50%, #F9E622 50%);
}

.flow_flex {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 100px;
    margin-top: 60px;
}

.parent {
    position: relative;
}

.child {
    position: absolute;
    width: 200px;
    top: 250px;
    right: 20px;
}


@media (max-width: 1023px) {


    .flow_flex {
        flex-direction: column;
        align-items: center;
        max-width: 400px;
        gap: 30px;
        margin: 0 auto;
        margin-bottom: 100px;
        margin-top: 60px;
    }

    .child {
        width: 250px;
        top: 310px;
        right: 20px;
    }
}

@media (max-width: 767px) {


    .flow_flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 300px;
        margin-bottom: 70px;
        margin-top: 30px;
    }

    .child {
        position: absolute;
        width: 180px;
        top: 235px;
        right: 20px;
    }


    #flow h4 {
        line-height: 2;
        font-size: 12px;
    }

    #flow h5 {
        text-align: center;
        line-height: 2;
        font-size: 16px;
        margin-bottom: 100px;
    }
}

/*-------------------------------------------
オーディション流れ
-------------------------------------------*/
.flow_imagine {
    background-color: #fff;
    border-radius: 15px;
    padding-top: 60px;
    padding-bottom: 10px;
    margin-bottom: 60px;
}

#flow .flow_imagine h5 {
    margin-bottom: 60px;
}

.flow_imagine_flex {
    display: flex;
    flex-direction: row;
    align-items: end;
    max-width: 950px;
    margin: 0 auto;
    margin-bottom: 100px;
    gap: 30px;
}

#flow .flow_imagine_right {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 10px;
}

#flow .flow_imagine_right img {
    max-width: 150px;
    width: auto;
    height: 100%;
    text-align: end;
}

#flow .flow_imagine_right video {
    max-width: 250px;
    width: auto;
    height: 100%;
}

@media (max-width: 1023px) {

    .flow_imagine_flex {
        display: flex;
        flex-direction: column;
        align-items: end;
        max-width: 500px;
        margin: 0 auto;
        margin-bottom: 60px;
        gap: 50px;
    }

    #flow .flow_imagine_right {
        display: flex;
        flex-direction: row;
        align-items: end;
        gap: 40px;
    }

    #flow .flow_imagine_right img {
        max-width: 100px;
    }

}

@media (max-width: 767px) {
    .flow_imagine_flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
        margin-bottom: 60px;
        gap: 50px;
    }

    #flow .flow_imagine_right {
        display: flex;
        flex-direction: row;
        align-items: end;
        gap: 40px;
    }

    #flow .flow_imagine_right video {
        max-width: 250px;
        width: auto;
        height: 100%;
        margin: 0 auto;
    }
}


/*-------------------------------------------
オーディション流れ
-------------------------------------------*/

#contact h4 {
    text-align: center;
    line-height: 2;
    font-size: 16px;
    padding-bottom: 60px;
}

/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
    color: #000000;
    background-color: #F9E622;
    text-align: center;
    padding: 10px;
    font-size: 0.75rem;
}

.copy {
    margin-top: 15px;
}

.copy>p {
    color: #000000;
    font-size: 0.7rem;
}

.fot01 img {
    width: 200px;
    margin-bottom: 10px;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 600px) {
    .sec-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .site-title img {
        width: 200px;
    }

    /*-------------------------------------------
  ヘッダー
  -------------------------------------------*/
    #header {
        padding: 26px 16px;
    }

    .toggle_btn {
        right: 20px;
    }
}