@charset "utf-8";

/* common */
section {
    padding: 150px 0;
}
section:not(#mv) .inner {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
section span {
    color: var(--point-color);
}
section h1 {
    text-align: center;
}
br.br_on {
    display: none;
}
i.i_on {
    display: none;
}

.btn {
    display: inline-block;
    background-color: var(--main-color);
    border: 3px solid var(--main-color);
    border-radius: 50px;
    padding: 20px 80px;
    transition: all 0.5s linear;
}
.btn:hover {
    background-color: var(--sub-color);
    border-radius: 50px;
}
.btn a {
    color: var(--sub-color);
    font-family: var(--bold-font);
}
.btn:hover a {
    color: var(--main-color);
}
.btn:hover a i.fas {
    color: var(--main-color) !important;
}

@media screen and (max-width:1024px) {
    section {
        padding: 50px 0;
    }
    section:not(#mv) .inner {
        gap: 50px;
    }
    .btn {
        border: 1px solid var(--main-color);
        border-radius: 50px;
        padding: 10px 40px;
    }
    .btn a {
        font-size: 20px;
    }
}
@media screen and (max-width:480px) {
    section {
        padding: 30px 0;
    }
    section:not(#mv) .inner {
        gap: 30px;
    }
    .btn a {
        font-size: 14px;
    }

    br.br_on {
        display: block;
    }
    i.i_on {
        display: block;
    }
    br.br_off {
        display: none;
    }
    i.i_off {
        display: none;
    }
}

/* #header */
#header {
    z-index: 99;
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--sub-color);
    width: 100%;
    padding: 15px 0;
}
#header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header .logo {
    width: auto;
    height: 20px;
}
#header .logo img {
    display: block;
    width: 100%;
    height: 100%;
}
#header .header_btn {
    background-color: var(--point-color);
    border: none;
    border-radius: 30px;
    padding: 5px 40px;
}
#header .btn {
    background-color: var(--point-color);
    border: none;
    border-radius: 30px;
    padding: 5px 40px;
}
#header .btn a {
    color: var(--main-color);
    font-family: var(--bold-font);
    display: flex;
    justify-content: center;
    align-items: center;
}
#header .inner div {
    display: flex;
    gap: 10px;
}
#header .rang_btn {
    background-color: rgba(254, 99, 98, 0.8);
    border-radius: 30px;
    padding: 0 15px;
}
#header .rang_btn a {
    color: var(--main-color);
    font-family: var(--bold-font);
    font-size: 14px;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:480px) {
    #header .logo {
        height: 16px;
    }
    #header .inner div {
        gap: 10px;
    }
    #header .btn {
        border-radius: 30px;
        padding: 5px 20px;
    }
    #header .rang_btn {
        background-color: rgba(253, 98, 97, 0.5);
        padding: 0 10px 1px;
    }
}

/* #mv */
#mv .inner {
    display: flex;
    align-items: center;
}

#mv #master-container {
    width: 100%;
    height: 100vh;
    min-height: 0;
    max-height: 100%;
    color: var(--main-color);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: center;
    justify-content: flex-start;
    height: auto;
    margin-left: inherit;
    margin-right: inherit;
}

#mv .title {
    display: flex;
    font-size: 70px;
    font-optical-sizing: auto;
    -webkit-font-smoothing: inherit;
    text-align: left;
}

#mv .title .txt_fix {
    margin: 0 20px;
}

#mv .title .txt_blue {
    color: var(--point-color);
}

#mv .title .mv_ani {
    height: 115px;
    overflow: hidden;
    position: relative;
}
#mv .title .mv_ani .mv_ani_item {
    display: block;
    -webkit-animation: txt_ani 7s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
    animation: txt_ani 7s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}
#mv .title .mv_ani_item p {
    height: 115px;
    text-align: center;
}
#mv .title .mv_ani_item p span {
    color: var(--point-color);
}

#mv .mv_btn {
    margin-top: 50px;
}

@media screen and (max-width:1440px) {
    #mv {
        padding: 100px 0;
    }
    #mv .title {
        font-size: 70px;
    }
    #mv .title .mv_ani {
        height: 80px;
    }
}

@media screen and (max-width:1024px) {
    #mv {
        padding: 100px 0;
    }
    #mv .inner {
        flex-direction: column;
        justify-content: center;
    }
    #mv .title {
        font-size: 60px;
    }
    #mv #master-container {
        width: 100%;
        height: auto;
        margin-bottom: 50px;
    }
    #mv .title .txt_fix {
        margin: 0 10px;
    }
    #mv #master-container .mv_btn {
        margin-top: 10px;
    }
}

@media screen and (max-width:480px) {
    #mv {
        padding: 100px 0 50px;
    }
    #mv .inner {
        gap: 30px;
    }
    #mv .title {
        font-size: var(--big-size);
    }
    #mv #master-container {
        margin-bottom: 30px;
    }
    #mv .title .mv_ani {
        height: 40px;
    }
    #mv #master-container .mv_btn {
        font-size: var(--txt-size);
    }
}

#mv .video_container {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
}

#mv .video_box {
    width: 100%;
    height: 655px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

#mv .video_box video {
    height: 100%;
}

@media screen and (max-width:1024px) {
    #mv .video_container {
        width: 100%;
        height: auto;
    }
    #mv .video_box {
        height: 500px;
    }
    #mv .video_box {
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    #mv .video_box {
        height: 350px;
        aspect-ratio: 328 / 360;
        border-radius: 15px;
    }
}

/* #flow */
#flow h2 {
    display: none;
}
#flow {
    overflow: hidden;
    white-space: nowrap;
}
#flow img {
    animation: flowAni 30s linear infinite;
}

@media screen and (max-width:1024px) {
    #flow img {
        width: auto;
        height: 80px;
    }
}
@media screen and (max-width:480px) {
    #flow img {
        width: auto;
        height: 50px;
    }
}

@keyframes flowAni {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* #work */
#work .work_box {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
}
#work .work_box ul {
    background-color: var(--box-color);
    border-radius: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 50px 30px;
    width: calc((100% - 100px) / 3);
    height: 600px;
}
#work .work_box ul li i {
    font-size: 80px;
}
#work .work_box ul li span {
    font-family: var(--bold-font);
}
#work .work_box ul li {
    color: var(--sub-color);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}
#work .work_box ul li em {
    color: var(--sub-color);
    font-size: 8px;
    margin: 12px 10px 0;
}

@media screen and (max-width:1024px) {
    #work .work_box {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    #work .work_box ul {
        gap: 10px;
        width: calc(100% - 100px);
        height: 450px;
    }
}
@media screen and (max-width:480px) {
    #work .work_box {
        gap: 30px;
    }
    #work .work_box ul {
        width: 100%;
        height: 380px;
        padding: 30px;
        gap: 10px;
    }
    #work .work_box ul li {
        font-size: var(--txt-size);
    }
    #work .work_box ul li i {
        font-size: 60px;
    }
    #work .work_box ul li em {
        font-size: 8px;
        margin: 8px 4px 0;
    }
}

/* #intro */
#intro .intro_box {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
#intro .intro_box .intro_img {
    width: 980px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}
#intro .intro_box .intro_img img {
    width: 100%;
    height: 100%;
}
#intro .intro_box > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#intro .intro_box .intro_box2 {
    flex-direction: row-reverse;
}
#intro .intro_box .intro_txt {
    width: 560px;
}
#intro .intro_box .intro_txt ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#intro .intro_box .intro_txt ul li i {
    font-family: var(--bold-font);
    font-style: normal;
    background-color: var(--main-color);
    color: var(--sub-color);
    padding: 0 5px;
    border-radius: 10px;
}
@media screen and (max-width:1440px) {
    #intro .intro_box .intro_img {
        width: 780px;
    }
}
@media screen and (max-width:1024px) {
    #intro .intro_box {
        gap: 50px;
    }
    #intro .intro_box .intro_img {
        width: 100%;
    }
    #intro .intro_box > div {
        flex-direction: column;
        gap: 30px;
    }
    #intro .intro_box .intro_box2 {
        flex-direction: column;
    }
    #intro .intro_box .intro_txt {
        width: 100%;
    }
    #intro .intro_box .intro_txt ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
@media screen and (max-width:480px) {
    #intro .intro_box {
        gap: 30px;
    }
    #intro .intro_box .intro_img {
        width: 100%;
        height: 230px;
    }
    #intro .intro_box .intro_txt ul li {
        font-size: var(--txt-size);
    }
}

/* #growup */
#growup .growup_box {
    display: flex;
    justify-content: space-between;
}
#growup .growup_box .growup_left {
    width: calc(100% - 750px);
    display: flex;
    flex-direction: column;
    gap: 50px;
}
#growup .growup_box .growup_left .growup_img {
    display: flex;
    align-items: flex-end;
}
#growup .growup_box .growup_left .growup_logo {
    margin-right: -100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
#growup .growup_box .growup_left .growup_arrow {
    animation: upanddown infinite 2s linear;
}

#growup .growup_box .growup_left .growup_logo .growup_dot {
    width: 30px;
    height: 30px;
    border-radius: 50px;
}
#growup .growup_box .growup_left .growup_logo .growup_dot1 {
    background-color: #515151;
    animation: dot1 infinite 3s linear;
}
#growup .growup_box .growup_left .growup_logo .growup_dot2 {
    background-color: #888888;
    animation: dot2 infinite 3s linear;
}
#growup .growup_box .growup_left .growup_logo .growup_dot3 {
    background-color: #cccccc;
    animation: dot3 infinite 3s linear;
}
#growup .growup_box .growup_left .growup_graph {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
#growup .growup_box .growup_left .growup_graph p {
    font-family: var(--bold-font);
    font-size: var(--tit-size);
}
#growup .growup_box .growup_left .growup_graph > p {
    text-align: center;
}
#growup .growup_box .growup_left .growup_graph p.graph_cf {
    font-size: var(--txt-size);
}
#growup .growup_box .growup_left .growup_graph .graph_inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 50px;
}
#growup .growup_box .growup_left .growup_graph .graph_inner .graph_img {
    width: 50%;
}
#growup .growup_box .growup_left .growup_graph .graph_inner .graph_img img {
    width: 100%;
    height: 100%;
}
#growup .growup_box .growup_left .growup_graph .graph_inner .graph_txt {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media screen and (max-width:1440px) {
    #growup .growup_box .growup_left .growup_logo {
        margin-right: -220px;
    }
    #growup .growup_box .growup_left .growup_graph p {
        font-size: 18px;
    }
}

@media screen and (max-width:1024px) {
    #growup .growup_box {
        flex-direction: column;
        justify-content: center;
    }
    #growup .growup_box .growup_left {
        width: 100%;
        gap: 30px;
    }
    #growup .growup_box .growup_left .growup_img {
        justify-content: center;
    }
    #growup .growup_box .growup_left .growup_img img {
        width: auto;
        height: 80px;
    }
    #growup .growup_box .growup_left .growup_logo {
        margin-right: 0;
    }
    #growup .growup_box .growup_left .growup_arrow {
        display: none;
    }

    #growup .growup_box .growup_left .growup_graph {
        padding: 50px 0;
        gap: 0;
    }
    #growup .growup_box .growup_left .growup_graph .graph_inner {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    #growup .growup_box .growup_left .growup_graph .graph_inner .graph_img {
        width: 100%;
        text-align: center;
        padding: 30px 0 0;
    }
    #growup .growup_box .growup_left .growup_graph .graph_inner .graph_img img {
        width: 60%;
    }
    #growup .growup_box .growup_left .growup_graph .graph_inner .graph_txt {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}
@media screen and (max-width:480px) {
    #growup .growup_box .growup_left .growup_graph {
        padding: 0 0 50px;
        gap: 0;
    }
    #growup .growup_box .growup_left .growup_logo {
        margin-right: 0;
        gap: 10px;
    }
    #growup .growup_box .growup_left .growup_img img {
        height: 50px;
    }
    #growup .growup_box .growup_left .growup_txt h1 {
        font-size: var(--tit-size);
    }
    #growup .growup_box .growup_left .growup_graph .graph_inner {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    #growup .growup_box .growup_left .growup_graph p {
        font-size: var(--txt-size);
    }
    #growup .growup_box .growup_left .growup_graph .graph_inner .graph_img img {
        width: 80%;
    }
    #growup .growup_box .growup_left .growup_graph .graph_inner .graph_txt p {
        font-size: 14px;
    }
    #growup .growup_box .growup_left .growup_graph p.graph_cf {
        font-size: var(--txt-size);
    }
}

@keyframes upanddown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes dot1 {
    0%,
    25% {
        background-color: #515151;
    }
    26%,
    50% {
        background-color: #888888;
    }
    51%,
    75% {
        background-color: #cccccc;
    }
    100%,
    76% {
        background-color: #515151;
    }
}

@keyframes dot2 {
    0%,
    25% {
        background-color: #cccccc;
    }
    26%,
    50% {
        background-color: #515151;
    }
    51%,
    75% {
        background-color: #888888;
    }
    100%,
    76% {
        background-color: #cccccc;
    }
}

@keyframes dot3 {
    0%,
    25% {
        background-color: #888888;
    }
    26%,
    50% {
        background-color: #cccccc;
    }
    51%,
    75% {
        background-color: #515151;
    }
    100%,
    76% {
        background-color: #888888;
    }
}
/* .growup_left end */

#growup .growup_box .growup_right ul {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}
#growup .growup_box .growup_right ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    text-align: center;
    align-items: center;
    width: 600px;
    height: 600px;
    border: solid 3px var(--box-color);
    border-radius: 50px;
}
#growup .growup_box .growup_right ul li p span {
    font-size: var(--tit-size);
    font-family: var(--bold-font);
}

@media screen and (max-width:1024px) {
    #growup .growup_box .growup_right ul {
        flex-direction: row;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    #growup .growup_box .growup_right ul img {
        width: 80px;
    }
    #growup .growup_box .growup_right ul li {
        gap: 30px;
        width: 300px;
        height: 300px;
        font-size: 20px;
        border: solid 1px var(--box-color);
    }
    #growup .growup_box .growup_right ul li p span {
        font-size: 18px;
    }
}

/* #effect */
#effect .effect_box {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
#effect .effect_box ul {
    background-color: var(--box-color);
    border-radius: 30px;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: calc((100% / 2) - 25px);
    padding: 50px;
}
#effect .effect_box ul li {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
#effect .effect_box ul li p:not(span) {
    color: var(--sub-color);
}
#effect .effect_box ul li p span {
    font-family: var(--bold-font);
}
#effect .effect_box ul li p {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    text-align: left;
}
#effect .effect_box ul li p em {
    color: var(--sub-color);
    font-size: 8px;
    margin: 12px 10px 0;
}

@media screen and (max-width:1440px) {
    #effect .effect_box ul li img {
        height: 320px;
    }
}

@media screen and (max-width:1024px) {
    #effect .inner {
        align-items: center;
    }
    #effect .effect_box {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 30px;
    }
    #effect .effect_box ul {
        width: 100%;
        padding: 50px;
    }
    #effect .effect_box ul li {
        width: 100%;
        gap: 10px;
    }
    #effect .effect_box ul li img {
        object-fit: cover;
    }
}
@media screen and (max-width:480px) {
    #effect .effect_box ul {
        padding: 30px;
    }
    #effect .effect_box ul li p {
        font-size: var(--txt-size);
        text-align: center;
    }
    #effect .effect_box ul li img {
        height: 200px;
    }
    #effect .effect_box ul li p em {
        font-size: 8px;
        margin: 8px 4px 0;
    }
}

/* #global */
#global {
    text-align: center;
    overflow: hidden;
}
#global h2 {
    margin: 20px 0 200px;
}
#global .global_box {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px;
}
#global .global_box::before {
    z-index: 1;
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, hsla(0, 0%, 7%, 1) 0%, hsla(6, 64%, 41%, 1) 0%, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 1) 10%, hsla(0, 0%, 0%, 0) 50%, hsla(0, 0%, 0%, 1) 90%, hsla(0, 0%, 0%, 1) 100%);
}

#global .global_box ul {
    display: flex;
    gap: 30px;
    white-space: nowrap;
}
#global .global_box ul.global1 {
    animation: flowAnileft 80s linear infinite;
}
#global .global_box ul.global2 {
    animation: flowAniright 80s linear infinite;
}
#global .global_box ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    font-size: 16px;
    background: linear-gradient(90deg, hsla(0, 0%, 7%, 1) 0%, hsla(6, 64%, 41%, 1) 0%, hsla(0, 0%, 7%, 1) 0%, hsla(0, 0%, 7%, 1) 25%, hsla(0, 0%, 9%, 1) 50%, hsla(0, 0%, 7%, 1) 75%, hsla(0, 0%, 7%, 1) 100%);
}

@media screen and (max-width:1024px) {
    #global h2 {
        margin: 20px 0 100px;
    }
    #global .global_box {
        gap: 10px;
    }

    #global .global_box ul {
        gap: 10px;
    }
    #global .global_box ul li {
        width: 150px;
        height: 150px;
        font-size: 16px;
    }
}
@media screen and (max-width:480px) {
    #global h2 {
        margin: 10px 0 50px;
    }
    #global .global_box ul li {
        width: 100px;
        height: 100px;
        font-size: 12px;
        background: linear-gradient(90deg, hsla(0, 0%, 7%, 1) 0%, hsla(6, 64%, 41%, 1) 0%, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 0) 50%, hsla(0, 0%, 0%, 1) 100%, hsla(0, 0%, 0%, 1) 100%);
    }
}

@keyframes flowAnileft {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-60%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes flowAniright {
    0% {
        transform: translateX(-60%);
    }
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-60%);
    }
}

/* #case */
#case .case_box {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
#case .case_box .case_txt {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}
#case .case_box .case_txt1 {
    background: url("../img/case/01.png") center no-repeat;
    padding: 30px 300px;
}
#case .case_box .case_txt2 {
    background-color: #101866;
    display: flex;
    justify-content: center;
    gap: 100px;
}

#case .case_box .case_txt2 img {
    width: auto;
    height: 100%;
}
#case .case_box .case_txt3 {
    background: url("../img/case/03.png") center no-repeat;
    padding: 30px 300px;
}
#case .case_box .case_txt p i {
    font-family: var(--bold-font);
    font-size: var(--tit-size);
    line-height: 2;
}

@media screen and (max-width:1024px) {
    #case .case_box {
        gap: 30px;
    }
    #case .case_box .case_txt {
        width: 100%;
        height: 300px;
        padding: 30px;
    }
    #case .case_box .case_txt2 {
        gap: 50px;
    }
    #case .case_box .case_txt p {
        font-size: 20px;
    }
    #case .case_box .case_txt p i {
        font-size: var(--tit-size);
        line-height: 1.5;
    }
}
@media screen and (max-width:480px) {
    #case .case_box .case_txt {
        padding: 10px;
    }
    #case .case_box .case_txt2 {
        position: relative;
    }
    #case .case_box .case_txt2 img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    #case .case_box .case_txt2 p {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: var(--txt-size);
        z-index: 1;
        width: calc(100% - 20px);
    }
    #case .case_box .case_txt p {
        font-size: var(--txt-size);
    }
    #case .case_box .case_txt p i {
        font-size: var(--txt-size);
    }
}

/* #influencer */
#influencer img {
    width: auto;
    height: 800px;
}

#influencer .influencer {
    padding: 50px 0;
}
#influencer .influencer_box {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px;
}
#influencer .influencer_box::before {
    z-index: 1;
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, hsla(0, 0%, 7%, 1) 0%, hsla(6, 64%, 41%, 1) 0%, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 1) 10%, hsla(0, 0%, 0%, 0) 50%, hsla(0, 0%, 0%, 1) 90%, hsla(0, 0%, 0%, 1) 100%);
}

#influencer .influencer_box ul {
    display: flex;
    gap: 30px;
    white-space: nowrap;
    background-color: #fff;
}
#influencer .influencer_box.influencer_box ul img {
    width: 100%;
    height: 100%;
}
#influencer .influencer_box ul.influencer1 {
    animation: flowAnileft 80s linear infinite alternate;
}
#influencer .influencer_box ul.influencer2 {
    animation: flowAniright 80s linear infinite alternate;
}
#influencer .influencer_box ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    font-size: 16px;
    background: linear-gradient(90deg, hsla(0, 0%, 7%, 1) 0%, hsla(6, 64%, 41%, 1) 0%, hsla(0, 0%, 7%, 1) 0%, hsla(0, 0%, 7%, 1) 25%, hsla(0, 0%, 9%, 1) 50%, hsla(0, 0%, 7%, 1) 75%, hsla(0, 0%, 7%, 1) 100%);
}

@media screen and (max-width:1024px) {
    #influencer img {
        height: 600px;
    }
}
@media screen and (max-width:768px) {
    #influencer img {
        height: 400px;
    }
}
@media screen and (max-width:480px) {
    #influencer img {
        height: 300px;
    }
    #influencer .influencer_box ul li {
        width: 100px;
        height: 100px;
        background: linear-gradient(90deg, hsla(0, 0%, 7%, 1) 0%, hsla(6, 64%, 41%, 1) 0%, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 0) 50%, hsla(0, 0%, 0%, 1) 100%, hsla(0, 0%, 0%, 1) 100%);
    }
}

/* #request */
#request {
    text-align: center;
}
#request .request_btn {
    background: var(--point-color);
    border: 5px solid var(--point-color);
    margin-top: 50px;
    padding: 5px 40px;
}
#request .request_btn a {
    color: var(--main-color);
}
#request .request_btn:hover {
    background: var(--main-color);
    border: 5px solid var(--point-color);
}
#request .request_btn:hover a {
    color: var(--point-color);
}
#request .request_btn:hover i {
    color: var(--point-color) !important;
}

#request h1 {
    padding-top: 50px;
}
#request h2 {
    padding-bottom: 50px;
}
#request .inner {
    gap: 50px !important;
    width: 700px;
    align-items: flex-start;
}
#request .inner span {
    font-family: var(--bold-font);
}
#request .inner #request_area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
#request .inner #request_area .request_span {
    margin-bottom: -30px;
    width: 100%;
    text-align: left;
}
#request .inner #request_area input[name="email"] {
    margin-right: auto;
}
#request .inner #request_area input[type="text"] {
    background: var(--sub-color);
    color: var(--main-color);
    border-bottom: 1px solid var(--box-color);
    width: calc((100% - 50px)/2);
    padding: 5px 10px;
    font-size: 16px;
}
#request .inner #request_area .request_box {
    width: 100%;
    text-align: left;
}
#request .inner #request_area textarea {
    background: transparent;
    border: 1px solid var(--box-color);
    color: var(--main-color);
    font-family: var(--main-font);
    font-size: 16px;
    width: 100%;
    height: 200px;
    padding: 20px;
    margin-top: 20px;
}
#request .inner #request_area button[type="submit"] {
    border-color: transparent;
    cursor: pointer;
    border-radius: 30px;
    transition: all .3s linear;
    font-family: var(--bold-font);
    font-size: var(--txt-size);
    background: var(--point-color);
    color: var(--main-color);
    padding: 10px 50px;
}
#request .inner #request_area button[type="submit"]:hover {
    background: var(--main-color);
    color: var(--sub-color);
}

@media screen and (max-width:480px) {
    #request h1 {
        padding-top: 30px;
    }
    #request h2 {
        padding-bottom: 30px;
    }
    #request .inner {
        gap: 30px !important;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    #request .inner #request_area {
        flex-direction: column;
        gap: 30px;
    }
    #request .inner #request_area .request_span {
        margin-bottom: -20px;
    }
    #request .inner #request_area input[type="text"] {
        width: 100%;
    }
    #request .inner #request_area .request_box {
        width: 100%;
        text-align: left;
    }
    #request .inner #request_area textarea {
        height: 150px;
    }
    #request .inner #request_area button[type="submit"] {
        padding: 10px 40px;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #request .inner #request_area textarea::placeholder {
        font-size: 12px;
    }
}

/* #footer */
#footer .inner {
    padding: 80px;
}
#footer .footer_txt {
    font-size: 14px;
    color: #666;
}
#footer .logo {
    width: 140px;
    height: 16px;
}
#footer .logo img {
    display: block;
    width: 100%;
    height: 100%;
}
@media screen and (max-width:480px) {
    #footer .inner {
        padding: 30px 30px 60px;
    }
}

.gotop {
    display: none;
    position: fixed;
    z-index: 99;
    right: 50px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--main-color) url("../img/common/gotop.png") no-repeat center;
    cursor: pointer;
    filter: drop-shadow(rgb(0, 0, 0, 0.2) 3px 3px 2px);
}

.gotop.on {
    display: block;
}

@media screen and (max-width:480px) {
    .gotop {
        right: 30px;
        bottom: 60px;
        width: 30px;
        height: 30px;
        background: var(--main-color) url("../img/common/gotop_m.png") no-repeat center;
    }

}

/* #mv .title .txt_ani */
@-webkit-keyframes txt_ani {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    10% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    20% {
        -webkit-transform: translateY(-115px);
        transform: translateY(-115px);
    }
    30% {
        -webkit-transform: translateY(-115px);
        transform: translateY(-115px);
    }
    40% {
        -webkit-transform: translateY(-230px);
        transform: translateY(-230px);
    }
    50% {
        -webkit-transform: translateY(-230px);
        transform: translateY(-230px);
    }
    60% {
        -webkit-transform: translateY(-345px);
        transform: translateY(-345px);
    }
    70% {
        -webkit-transform: translateY(-345px);
        transform: translateY(-345px);
    }
    80% {
        -webkit-transform: translateY(-460px);
        transform: translateY(-460px);
    }
    90% {
        -webkit-transform: translateY(-460px);
        transform: translateY(-460px);
    }
    100% {
        -webkit-transform: translateY(-575px);
        transform: translateY(-575px);
    }
}

@keyframes txt_ani {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    10% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    20% {
        -webkit-transform: translateY(-115px);
        transform: translateY(-115px);
    }
    30% {
        -webkit-transform: translateY(-115px);
        transform: translateY(-115px);
    }
    40% {
        -webkit-transform: translateY(-230px);
        transform: translateY(-230px);
    }
    50% {
        -webkit-transform: translateY(-230px);
        transform: translateY(-230px);
    }
    60% {
        -webkit-transform: translateY(-345px);
        transform: translateY(-345px);
    }
    70% {
        -webkit-transform: translateY(-345px);
        transform: translateY(-345px);
    }
    80% {
        -webkit-transform: translateY(-460px);
        transform: translateY(-460px);
    }
    90% {
        -webkit-transform: translateY(-460px);
        transform: translateY(-460px);
    }
    100% {
        -webkit-transform: translateY(-575px);
        transform: translateY(-575px);
    }
}

@-webkit-keyframes txt_ani-mobile01 {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    10% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    20% {
        -webkit-transform: translateY(-81px);
        transform: translateY(-81px);
    }
    30% {
        -webkit-transform: translateY(-81px);
        transform: translateY(-81px);
    }
    40% {
        -webkit-transform: translateY(-162px);
        transform: translateY(-162px);
    }
    50% {
        -webkit-transform: translateY(-162px);
        transform: translateY(-162px);
    }
    60% {
        -webkit-transform: translateY(-243px);
        transform: translateY(-243px);
    }
    70% {
        -webkit-transform: translateY(-243px);
        transform: translateY(-243px);
    }
    80% {
        -webkit-transform: translateY(-324px);
        transform: translateY(-324px);
    }
    90% {
        -webkit-transform: translateY(-324px);
        transform: translateY(-324px);
    }
    100% {
        -webkit-transform: translateY(-405px);
        transform: translateY(-405px);
    }
}

@keyframes txt_ani-mobile01 {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    10% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    20% {
        -webkit-transform: translateY(-81px);
        transform: translateY(-81px);
    }
    30% {
        -webkit-transform: translateY(-81px);
        transform: translateY(-81px);
    }
    40% {
        -webkit-transform: translateY(-162px);
        transform: translateY(-162px);
    }
    50% {
        -webkit-transform: translateY(-162px);
        transform: translateY(-162px);
    }
    60% {
        -webkit-transform: translateY(-243px);
        transform: translateY(-243px);
    }
    70% {
        -webkit-transform: translateY(-243px);
        transform: translateY(-243px);
    }
    80% {
        -webkit-transform: translateY(-324px);
        transform: translateY(-324px);
    }
    90% {
        -webkit-transform: translateY(-324px);
        transform: translateY(-324px);
    }
    100% {
        -webkit-transform: translateY(-405px);
        transform: translateY(-405px);
    }
}

@-webkit-keyframes txt_ani-mobile02 {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    10% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    20% {
        -webkit-transform: translateY(-38px);
        transform: translateY(-38px);
    }
    30% {
        -webkit-transform: translateY(-38px);
        transform: translateY(-38px);
    }
    40% {
        -webkit-transform: translateY(-76px);
        transform: translateY(-76px);
    }
    50% {
        -webkit-transform: translateY(-76px);
        transform: translateY(-76px);
    }
    60% {
        -webkit-transform: translateY(-114px);
        transform: translateY(-114px);
    }
    70% {
        -webkit-transform: translateY(-114px);
        transform: translateY(-114px);
    }
    80% {
        -webkit-transform: translateY(-152px);
        transform: translateY(-152px);
    }
    90% {
        -webkit-transform: translateY(-152px);
        transform: translateY(-152px);
    }
    100% {
        -webkit-transform: translateY(-190px);
        transform: translateY(-190px);
    }
}

@keyframes txt_ani-mobile02 {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    10% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    20% {
        -webkit-transform: translateY(-38px);
        transform: translateY(-38px);
    }
    30% {
        -webkit-transform: translateY(-38px);
        transform: translateY(-38px);
    }
    40% {
        -webkit-transform: translateY(-76px);
        transform: translateY(-76px);
    }
    50% {
        -webkit-transform: translateY(-76px);
        transform: translateY(-76px);
    }
    60% {
        -webkit-transform: translateY(-114px);
        transform: translateY(-114px);
    }
    70% {
        -webkit-transform: translateY(-114px);
        transform: translateY(-114px);
    }
    80% {
        -webkit-transform: translateY(-152px);
        transform: translateY(-152px);
    }
    90% {
        -webkit-transform: translateY(-152px);
        transform: translateY(-152px);
    }
    100% {
        -webkit-transform: translateY(-190px);
        transform: translateY(-190px);
    }
}
