@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300..900&family=Roboto:wght@300..800&family=Poppins:wght@400;600&display=swap');

:root {
    --mainW: 1300px; /* メインエリア幅 */
    --bgGray: #F2F2F2;
    --colGreen: #5BB795;
    --fontPop: "Poppins", "Roboto", "Noto Sans JP", sans-serif;
    --fontNormal: "Roboto","Noto Sans JP", sans-serif;
}
body {
    font-family: "Roboto","Noto Sans JP", sans-serif;
    font-weight: 400;
}
.sp_only {
    display: none;
}

@media screen and (max-width: 1380px) {

    /* tablet,small pc */
    :root {
        --mainW: calc(100vw - 80px);
    }
}

@media screen and (max-width: 640px) {

    /* smartphone */
    :root {
        --mainW: 88vw;
    }

    .sp_hide {
        display: none;
    }

    .sp_only {
        display: block;
    }
}


/* --------
    パーツ
---------- */
.userIcon {
    width: 52px;
    height: 52px;
    border-radius: 100%;
}
.icon_fav .icon_fav-inner {
    opacity: 0;
    transition: 0.3s ease;
}
.icon_fav.on .icon_fav-inner {
    opacity: 1;
}

#layouts_app_container .btn {
    border: 2px solid var(--colGreen);
    border-radius: 50vh;
    font-size: inherit;
    font-weight: normal;
    padding: 0 0.8em;
    height: 2.5em;
    min-height: 2.5em;
    transition: 0.2s ease;
    text-transform: none;
}

#layouts_app_container .btn.btn-white {
    background: #FFF;
    color: var(--colGreen);
}
#layouts_app_container .btn.btn-white:hover {
    border: 2px solid var(--colGreen);
    background: var(--colGreen);
    color: #FFF;
}

#layouts_app_container .btn.btn-green {
    background: var(--colGreen);
    color: #FFF;
}
#layouts_app_container .btn.btn-green:hover {
    border: 2px solid var(--colGreen);
    background: #FFF;
    color: var(--colGreen);
}

#layouts_app_container .btn.btn-gray {
    background: #FFF;
    color: #000;
    border: 2px solid #D8D8D8;
}
#layouts_app_container .btn.btn-gray:hover {
    background: #D8D8D8;
    border: 2px solid #D8D8D8;
}



/* 新着 */
ul li.new:before {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--colGreen);
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-200%, -50%);
}

@media screen and (max-width: 640px) {
    ul li.new:before {
        width: 2.5vw;
        height: 2.5vw;

    }
}

/* ----------
     共通
------------ */
.mainW {
    width: var(--mainW);
    margin-left: auto;
    margin-right: auto;
}

.hasAside {
    display: flex;
    justify-content: space-between;
    gap: 3%;
    margin-top: 60px;
}
@media screen and (max-width: 640px) {
    .hasAside { margin-top: 0; padding-top: 2rem; }
}


/* #app_layout_container { */

/* .app-hero-home {
    background-image: url('/assets/images/hero-background.png');
    background-position: 0 0;
    background-size: cover;
    background-repeat: no-repeat;
} */

/* #app_navbar  */
#app_navbar {
    position: relative;
    z-index: 10;
    background: #272727;
    height: 80px;
}

#app_navbar > .mainW {
    height: 100%;
}

#app_navbar .logo {
    width: 138px;
}

#spMenu {
    width: 100%;
    background: #FFF;
    padding: 5vw 0;
    transition: 0.3s ease;
    position: absolute;
    z-index: 8;
    opacity: 0;
    pointer-events: none;
    top: -50vw;
}

#spMenu .input-search {
    width: 90%;
    margin: 0 auto;
}

#spMenu ul {
    padding: 2vw 10vw;
}

#spMenu ul + ul {
    border-top: 1px dashed #D0D0D0;
}

#spMenu ul li {
    position: relative;
}

#spMenu ul li a {
    display: flex;
    padding: 2.5vw 0;
}

#spMenu ul li a > span {
    display: block;
    width: 5vw;
    height: 5vw;
    margin-right: 2vw;
}

@media screen and (max-width: 640px) {
    #app_navbar {
        height: 13.9vw;
    }

    #app_navbar .logo {
        width: 29vw;
    }

    #app_navbar .spMenu-icon {
        display: flex;
        align-items: center;
        height: 5vw;
        color: #FFF;
        font-size: 3.2vw;
        position: relative;
    }

    #app_navbar .spMenu-icon img {
        height: 100%;
        width: auto;
    }

    #app_navbar .spMenu-cart span {
        position: absolute;
        bottom: -1vw;
        right: -1.25vw;
        width: 3.2vw;
        height: 3.2vw;
        border-radius: 100%;
        background: #25BA92;
        font-size: 2.75vw;
        line-height: 3.2vw;
        font-weight: bold;
        text-align: center;
    }

    #app_navbar #hamburger {
        width: 6.9vw;
        height: 6.9vw;
    }

    #app_navbar #hamburger button {
        width: 100%;
        color: #FFF;
    }

    #spMenu.open {
        display: block;
        box-shadow: 0 0 3vw rgba(0, 0, 0, 0.2);
        pointer-events: visible;
        opacity: 1;
        top: 13.9vw;
    }

}

#app_navbar button {
    background-color: rgba(31, 41, 55, 0.0);
}

#app_navbar .navLink {
    display: inline-flex;
    align-items: center;
    padding: 4px 4px 0;
    border-bottom: 3px solid rgba(0, 0, 0, 0);
    line-height: 1.25rem;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    transition: 0.2s ease-in-out;
    outline: none;
}

#app_navbar .navLink.active,
#app_navbar .navLink:hover {
    border-bottom: 3px solid #d1d5db;
    color: #d1d5db;
    fill: #d1d5db;
}

#app_navbar .hasHover {
    position: relative;
}

#app_navbar .nav-cart a {
    position: relative;
}

#app_navbar .nav-cart a span {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background: #25BA92;
    text-align: center;
    line-height: 18px;
    font-size: 14px;
    font-weight: bold;
    right: -0.5em;
    top: 55%;
}
#app_navbar .loginBtn {
    display: block;
    width: 130px;
    height: 35px;
    border: 1px solid #FFF;
    border-radius: 50vh;
    color: #FFF;
    text-align: center;
    line-height: 33px;
    transition: 0.3s ease;
}
#app_navbar .loginBtn:hover {
    background: #FFF;
    color: #000;
}

.navDropMenu {
    position: absolute;
    width: 285px;
    background: #FFF;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -20px);
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
}

#app_navbar .hasHover:hover .navDropMenu {
    opacity: 1;
    pointer-events: visible;
}

.navDropMenu .navDropMenu-ttl {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    line-height: 64px;
    border-bottom: 1px solid #D0D0D0;
}

#navDropMenu-acount .navDropMenu-ttl {
    display: flex;
    align-items: center;
    padding: 0 34px;
}

#navDropMenu-acount .profIcon {
    width: 3rem;
    text-align: center;
}

#navDropMenu-acount .profIcon img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

#navDropMenu-acount ul {
    padding: 0.5em 34px 1em;
}

#navDropMenu-acount ul li {
    margin-top: 1em;
    position: relative;
}

/* #navDropMenu-acount ul li.new:before {
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--colGreen);
    top: 50%;
    left: -1rem;
    transform: translateY(-50%);
    border-radius: 50%;
} */
#navDropMenu-acount ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#navDropMenu-acount ul li a span {
    width: 2rem;
    text-align: center;
}

#navDropMenu-acount ul li a img {
    max-height: 25px;
    margin: 0 auto;
}


#navDropMenu-talent .input-search {
    margin: 1em auto 0;
}

#navDropMenu-talent ul {
    padding: 0.5em 15% 1em;
}

#navDropMenu-talent ul li {
    margin-top: 1em;
}

#navDropMenu-talent ul li a {
    position: relative;
    display: inline-block;
    width: 100%;
}

#navDropMenu-talent ul li a:after {
    position: absolute;
    content: "";
    width: 0.75em;
    height: 0.75em;
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
    top: 50%;
    right: 0.25em;
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 1560px) {
    #navDropMenu-acount.navDropMenu {
        left: auto;
        right: -20px;
        transform: translate(0, -20px);
    }
}

/* @media screen and (max-width: 640px) {
    #layouts_app_main {
        margin-top: 13.9vw;
    }
}
 */

/* aside.sidenav */
aside.sidenav {
    width: 27%;
    max-width: 340px;
    min-width: 200px;
    padding-left: 24px;
}
.hasAside .mainArea {
    flex-grow: 1;
}
.hasAside aside ul li {
    margin-bottom: 1em;
    position: relative;
}

.hasAside aside ul li a {
    transition: 0.3s ease-in-out;
}

.hasAside aside ul li a:hover {
    opacity: 0.6;
}

.hasAside aside ul li.active a {
    text-decoration: underline;
    font-weight: bold;
}


/* search box */
.input-search {
    position: relative;
    width: 16rem;
    max-width: 90%;
}

.input-search input {
    line-height: 1.5em;
    padding: 0.5em 1.5em 0.5em 2.5em;
    border: 1px solid #D8D8D8;
    border-radius: 100vh;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.input-search:before {
    content: "";
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    top: 50%;
    left: 0.75em;
    transform: translateY(-50%);
    background: url("/assets/images/icons/icon_search.svg") no-repeat;
    background-size: contain;
    z-index: 1;
}

/*
#layouts_app_header.app-layout-header-home {
    background-color: rgba(31, 41, 55, 0.7);
}
*/

#hero_info_box {
    background-color: rgba(0, 0, 0, 0.7);
}

img.index-icon {
    height: 75px;
}

/* img.bg-white-circle-offset {}

img.bg-gray-circle-offset {} */


div.talent_categories {
    display: block;
}

div.talent_categories > span.talent-category {
    padding: 2px;
    background: #eee;
}


/* sm (640px) */
@media (min-width: 640px) {
    /* #layouts_app_hero { height: 450px; }
    .app-hero-home { background-position: 0 -100px; } */
}

/* md (768px) */
@media (min-width: 768px) {
    /* #layouts_app_hero { height: 500px; } */
    /* .app-hero-home { background-position: 0 -150px; } */
}

/* lg (1024px) */
@media (min-width: 1024px) {
    /* #layouts_app_hero { height: 550px; } */
    /* .app-hero-home { background-position: 0 -250px; } */
}

/* xl (1280px) */
@media (min-width: 1280px) {
    /* #layouts_app_hero { height: 600px; } */
    /* .app-hero-home { background-position: 0 -400px; } */
}

/* 2xl (1536px) */
@media (min-width: 1536px) {
    /* #layouts_app_hero { height: 700px; } */
    /* .app-hero-home { background-position: 0 -450px; } */
}

/* CUSTOM (2000px) */
@media (min-width: 2000px) {
    /* #layouts_app_hero { height: 700px; } */
    /* .app-hero-home { background-position: 0 -700px; } */
}

/* パンくず */
.breadcrumb {
    display: flex;
}

.breadcrumb li {
    position: relative;
    padding-right: 1em;
}

.breadcrumb li a {
    display: inline-block;
    height: 100%;
    position: relative;
    transition: 0.2s ease;
    color: #B2B2B2;
    fill: #B2B2B2;
}

.breadcrumb li .icon_home {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.breadcrumb li a:hover {
    color: #000;
    fill: #000;
}

.breadcrumb li + li {
    padding-left: 1.5em;
}

.breadcrumb li + li:before {
    content: "/";
    position: absolute;
    left: 0;
    color: #B2B2B2;
}

.breadcrumb li.active {
    color: #000;
}

@media screen and (max-width: 640px) {
    .breadcrumb { display: none;}
    .breadcrumb li {
        padding-right: 2.5vw;
    }

    .breadcrumb li + li {
        padding-left: 3vw;
    }
}

/* TopBanner */
#TopBanner {
    height: 660px;
    position: relative;
    --topBannerCnt: 0;
}

#TopBanner li {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 0.5s;
    /* animation: TopBannerfade 5s infinite alternate; */
}

#TopBanner li.on {
    opacity: 1;
}

@media screen and (max-width: 1380px) {
    #TopBanner {
        width: 100%;
        height: auto;
        aspect-ratio: 80/33;
    }
}
#newsletter {
    background: #D8D8D8;
    padding: 72px 7.69%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
}
#newsletter .text {
    font-size: 30px;
    width: calc(var(--mainW) * 0.469);
}
#newsletter input[type="email"] {
    background: #FFF;
    width: calc(var(--mainW) * 0.243);
    height: 48px;
    line-height: 38px;
    border: 0;
    border-radius: 50vh;
    font-size: 13px;
    padding-left: 2em;
}
#newsletter input[type="email"]::placeholder {
    color:rgba(128,128,128,0.37);
}
#newsletter input.submitBtn {
    background: #c1c1c1;
    border-radius: 50vh;
    font-size: 13px;
    height: 48px;
    line-height: 38px;
    padding: 0 2em;
    margin-left: 1em;
    cursor: pointer;
    transition: 0.3s ease;
}
#newsletter input.submitBtn:hover {
    background: #999;
}
@media screen and (max-width: 640px) {
    #newsletter {
        display: none;
    }
}

/* splash */
#splashHero {
    position: relative;
}
#splashHero .heroBox {
    position: absolute;
    width: 340px;
    color: #FFF;
    padding: 22px 25px;
    background: rgba(0,0,0,0.75);
    border-radius: 20px;
    top: 50%;
    right: calc(50% - (var(--mainW)/2));
    transform: translateY(-50%);
}
#splashHero .heroBox h2 {
    font-size: 29px;
}
#splashHero .heroBox .btns {
    display: flex;
    justify-content: space-between;
    margin-top: 42px;
}
#splashHero .heroBox .btns a {
    display: block;
    width: 130px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    font-size: 14px;
    background: #FFF;
    color: #000;
    border-radius: 50vh;
    transition: 0.3s ease;
}
#splashHero .heroBox .btns a:hover {
    opacity: 0.7;
}
@media screen and (max-width: 640px) {
    #splashHero .heroBox {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
        transform: none;
        margin: 0 auto;
        border-radius: 0;
        padding: 1em 6vw;
    }
    #splashHero .heroBox h2 {
        font-size: 5vw;
    }
    #splashHero .heroBox h2 br {
        display: none;
    }
    #splashHero .heroBox .text {
        font-size: 3.5vw;
    }
    #splashHero .heroBox .btns {
        margin-top: 1em;
    }
    #splashHero .heroBox .btns a {
        width: 47.5%;
        height: 2em;
        font-size: 3.6vw;
        line-height: 2em;
        font-weight: 500;
    }
}
.app-layout-main-splash #featured {
    overflow: hidden;
    margin-top: 4rem;
}
.app-layout-main-splash #featured h2 {
    width: var(--mainW);
    font-size: 29px;
    font-weight: bold;
    margin-bottom: 42px;
}
@media screen and (max-width: 640px) {
    .app-layout-main-splash #featured {
        margin-top: 2rem;
    }
    .app-layout-main-splash #featured h2 {
        font-size: 6vw;
        margin-bottom: 4vw;
    }
}
#splashMain {
    width: var(--mainW);
    margin: 100px auto 0;
}
#splashMain h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}
#splashMain #mainBox1 {
    background: var(--bgGray);
    padding: 40px 35px 40px 0;
}
#splashMain #mainBox1 .wrap {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
}
#splashMain #mainBox1 .wrap .icon {
    width: 17.7%;
    min-width: 230px;
    text-align: center;
}
#splashMain #mainBox1 .wrap .icon img {
    display: inline;
    width: 100px;
    height: auto;
}
#splashMain #mainBox2 {
    margin-top: 96px;
}
#splashMain #mainBox2 ol {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    counter-reset: step;
}
#splashMain #mainBox2 ol li {
    counter-increment: step;
    width: 50%;
    position: relative;
    padding: 55px 7% 30px;
}
#splashMain #mainBox2 ol li:nth-child(4n+2),
#splashMain #mainBox2 ol li:nth-child(4n+3) {
    background: var(--bgGray);
}
#splashMain #mainBox2 ol li:before {
    content: "STEP" counter(step);
    position: absolute;
    top: 28px;
    font-size: 22px;
    font-weight: 700;
}
#splashMain #mainBox2 ol li .icon {
    text-align: center;
}
#splashMain #mainBox2 ol li .icon img {
    display: inline-block;
    height: 78px;
    width: auto;
}
#splashMain #mainBox2 ol li .icon img + img {
    margin-left: 1em;
}
#splashMain #mainBox2 ol li h3 {
    font-size: 16px;
    text-align: center;
    margin-top: 2em;
    margin-bottom: 0.5em;
}
#splashMain #mainBox2 ol li .text {
    font-size: 14px;
    color: #808080;
}
#splashMain #mainBox3 {
    margin-top: 96px;
}
#splashMain #mainBox3 ul {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    gap: 6.4%;
}
#splashMain #mainBox3 ul li {
    flex: 1;
    text-align: center;
}
#splashMain #mainBox3 ul li .icon img {
    height: 95px;
    width: auto;
    display: inline;
}
#splashMain #mainBox3 ul li h3 {
    font-size: 16px;
    margin-bottom: 0.5em;
    margin-top: 1.5em;
}
#splashMain #mainBox3 ul li .text {
    font-size: 14px;
    color: #808080;
}
@media screen and (max-width: 640px) {
    #splashMain {
        width: 100%;
        margin-top: 2rem;
    }
    #splashMain h2 {
        font-size: 6vw;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }
    #splashMain #mainBox1 {
        padding: 1.5em 6vw;
    }
    #splashMain #mainBox1 .wrap {
        margin-top: 0;
        display: block;
    }
    #splashMain #mainBox1 .wrap .icon {
        width: 20vw;
        min-width: 0;
        text-align: center;
        margin: 0 auto 6vw;
    }

    #splashMain #mainBox2 {
        width: var(--mainW);
        margin: 3rem auto 0;
    }
    #splashMain #mainBox2 ol {
        margin-top: 1em;
    }
    #splashMain #mainBox2 ol li {
        width: 100%;
        padding: 3em 4vw 1em;
    }
    #splashMain #mainBox2 ol li:nth-child(4n+3) {
        background: #FFF;
    }
    #splashMain #mainBox2 ol li:nth-child(4n+4) {
        background: var(--bgGray);
    }
    #splashMain #mainBox2 ol li:before {
        content: "STEP" counter(step);
        position: absolute;
        top: 28px;
        font-size: 22px;
        font-weight: 700;
    }
    #splashMain #mainBox2 ol li .icon img {
        height: 13.4vw;
    }
    #splashMain #mainBox2 ol li .icon img.sp_hide {
        display: none;
    }
    #splashMain #mainBox2 ol li h3 {
        margin-top: 3vw;
    }

    #splashMain #mainBox3 {
        margin-top: 3rem;
    }
    #splashMain #mainBox3 ul {
        width: var(--mainW);
        margin: 1em auto 0;
        flex-wrap: wrap;
        gap: 6vw 6%;

    }
    #splashMain #mainBox3 ul li {
        flex: auto;
        width: 47%;
        text-align: center;
    }
    #splashMain #mainBox3 ul li .icon img {
        height: 95px;
        width: auto;
        display: inline;
    }
    #splashMain #mainBox3 ul li h3 {
        font-size: 16px;
        margin-bottom: 0.5em;
        margin-top: 1.5em;
    }
    #splashMain #mainBox3 ul li .text {
        font-size: 14px;
        color: #808080;
    }
}


/* logged Top */
#loggedTopMain {
    margin-top: 60px;
}

#loggedTopMain h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

#loggedTopMain .slideArea {
    margin-bottom: 4rem;
}


/* talent.index */
#talent_list {
    margin-top: 50px;
}

#talent_list #talents {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 5%;
}

@media (max-width: 1023px) {
    #talent_list #talents {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (max-width: 640px) {
    #talent_list #talents {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* talent.show */

#talent_profile {
    position: relative;
    z-index: 0;
    background: none;
    display: flex;
}
#talent_profile:before {
    content: "";
    width: 50vw;
    height: calc(100% + 56px);
    position: absolute;
    background: #F4F4F4;
    top: -56px;
    left: 50%;
    z-index: -1;
}
#talent_profile > .image {
    width: 50%;
    padding-right: calc(var(--mainW) * 0.043);
}
#talent_profile .profileBox {
    width: 50%;
    padding: 1em 6.15%;
}
#talent_profile .profileBox .nameArea {
    position: relative;
    padding-right: 150px;
}
#talent_profile .profileBox .nameArea .btn_icon {
    width: 56px;
    height: 50px;
    padding: 13px 14px 11px;
    border: 1px solid #D8D8D8;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: 0.3s ease;
}
#talent_profile .profileBox .nameArea .btn_icon:hover {
    background: #D8D8D8;
}
#talent_profile .profileBox .nameArea .btn_icon.share {
    right: 80px;
}
#talent_profile .profileBox .nameArea .btn_icon.share svg {
    width: 22px;
    height: 28px;
}
#talent_profile .profileBox .nameArea .btn_icon.fav svg {
    width: 26px;
    height: 23px;
}

#talent_profile .profileBox .name {
    font-size: 40px;
}
#talent_profile .profileBox .tags {
    margin-top: 1em;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1em;
}
#talent_profile .profileBox .tags a {
    display: inline-block;
    border: 1px solid #D8D8D8;
    font-size: 16px;
    line-height: 30px;
    padding: 0 1.5em;
    border-radius: 10vh;
    transition: 0.3s ease;
}
#talent_profile .profileBox .tags a:hover {
    background: #D8D8D8;
}

#talent_profile .profileBox .labels {
    margin-top: 1.5em;
    font-size: 17px;
    margin-bottom: 1.5em;
}
#talent_profile .profileBox .labels > * {
    display: inline-block;
    margin-right: 1em;
    color: #B5B5B5;
}
#talent_profile .profileBox .labels .mainPlace {
    color: #000;
}
#talent_profile .profileBox .labels .icon_fav {
    display: inline-block;
    width: 17px;
    height: 15px;
    fill: #bfbfbf;
}
#talent_profile .profileBox .labels .tags {
    color: #000;
}
#talent_profile .profileBox .snsIcons {
    display: flex;
    justify-content: left;
    gap: 1em;
    margin-top: 40px;
}

@media screen and (max-width: 640px) {
    #talent_profile {
        display: block;
        width: 100%;
    }
    #talent_profile:before {
        display: none;
    }
    #talent_profile > .image {
    width: 100%;
    padding-right: 0;
    }
    #talent_profile .profileBox {
        width: 100%;
        padding: 0 0 1em;
    }
    #talent_profile .profileBox .nameArea {
        display: flex;
        padding: 0;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.5em 0;
    }
    #talent_profile .profileBox .name {
        width: 100%;
        font-size: 6.95vw;
        background: #272727;
        color: #FFF;
        padding: 0.25em 3.82vw;
    }
    #talent_profile .profileBox .nameArea .btn_icon {
        position: relative;
        width: 6.75vw;
        height: 6.75vw;
        border: 0;
        padding: 0;
        right: auto !important;
        margin-right: 3.82vw;
    }
    #talent_profile .profileBox .tags {
        margin-top: 1em;
        gap: 0.5em;
        padding: 0 3.82vw;
    }
    #talent_profile .profileBox .tags a {
        font-size: 3.2vw;
        line-height: 1.75em;
        padding: 0 1em;
    }
    #talent_profile .profileBox .labels {
        font-size: 3.2vw;
        padding: 0 3.82vw;
    }
    #talent_profile .profileBox .text {
        padding: 0 3.82vw;
    }
    #talent_profile .profileBox .snsIcons {
        margin-top: 1.5em;
        padding: 0 3.82vw;
        justify-content: center;
    }
}

#shopArea h3 {
    font-size: 30px;
    text-align: center;
    margin-top: 96px;
    margin-bottom: 48px;
}


#shopArea .shop-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px; */
}

#shopArea .shop-grid .shop-item {
    width: calc((100% - 60px)/3);
    background: #F4F4F4;
    border-radius: 20px;
    overflow: hidden;
}
@media (max-width: 1079px) {
    #shopArea .shop-grid .shop-item {
        width: calc((100% - 30px)/2);
    }
}

#shopArea .shop-grid .shop-header {
    background: #272727;
    color: #fff;
    padding: 12px 30px;
    font-size: 30px;
}

#shopArea .shop-grid .shop-body {
    padding: 16px 30px 24px 70px;
    position: relative;
}

#shopArea .shop-grid .userIcon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 21px;
    left: 31px;
}

#shopArea .shop-grid .shop-description {
    font-size: 14px;
    color: #000;
    background: #FFF;
    padding: 1em 16px;
    height: 80px;
    border-radius: 1em;
}

#shopArea .shop-grid .shop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px dashed #000;
    font-size: 13px;
}
#shopArea .shop-grid .shop-footer .price {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
#shopArea .shop-grid .shop-footer .price .icon_coin {
    width: 17px;
    height: 17px;
}
#shopArea .shop-grid .shop-footer .btn {
    padding: 8px 16px;
    font-size: 14px;
    width: 40%;
}

#shopArea .shop-grid .shop-footer .btn:hover {
    background: var(--colGreen);
    color: #FFF;
    opacity: 0.6;
}
@media screen and (max-width: 640px) {
    #shopArea h3 {
        font-size: 5vw;
        margin-top: 2em;
        margin-bottom: 1em;
    }
    #shopArea .shop-grid {
        gap: 1em;
    }
    #shopArea .shop-grid .shop-item {
        width: 100%;
        border-radius: 0.75em;
    }
    #shopArea .shop-grid .shop-header {
        font-size: 4.2vw;
        padding: 0.5em 1em;
    }
    #shopArea .shop-grid .shop-body {
        padding: 3vw 3vw 3vw 9.5vw;
    }
    #shopArea .shop-grid .userIcon {
        width: 9vw;
        height: 9vw;
        top: 3.2vw;
        left: 3vw;
    }
    #shopArea .shop-grid .shop-description {
        font-size: 3.2vw;
        height: auto;
        padding: 0.75em 1.5em;
    }
    #shopArea .shop-grid .shop-footer {
        padding: 2.5vw 3vw 3vw;
        font-size: 3vw;
        flex-wrap: wrap;
        gap: 3vw;
        justify-content: center;
    }
    #shopArea .shop-grid .shop-footer .price {
        width: calc(50% - 3vw);
    }
    #shopArea .shop-grid .shop-footer button {
        font-size: 3.5vw;
        padding: 0.25em 1em;
        width: 60%;
    }
}
#shopArea #closedArea,
#shopArea #noLoginArea {
    background: var(--bgGray);
    height: 320px;
    display: none;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
    align-items: center;
}
#shopArea.closed #openArea {
    display: none;
}
#shopArea.closed #closedArea {
    display: flex;
}
#shopArea #noLoginArea {
    display: flex;
}
#shopArea #closedArea img {
    width: 96px;
}
#shopArea #noLoginArea img {
    width: 86px;
}

#shopArea .reviews {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#shopArea .reviews .review {
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

#shopArea .reviews .review .reviewer {
    display: flex;
    justify-content: flex-start;
    gap: 0.75em;
    align-items: center;
    font-size: 18px;
    margin-bottom: 0.5em;
}
#shopArea .reviews .review .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}


#shopArea .reviews .review .review-stars {
    color: #B5B5B5;
    font-size: 20px;
    letter-spacing: 0.25em;
    line-height: 1em;
    margin-bottom: 0.5em;
}

#shopArea .reviews .review .review-title {
    font-size: 18px;
    margin-bottom: 0.5em;
}

#shopArea .reviews .review .review-text {
    font-size: 14px;
    color: #717171;
    line-height: 1.6;
}
@media screen and (max-width: 640px) {
    #shopArea .reviews {
        gap: 1em;
    }
    #shopArea .reviews .review .reviewer {
        font-size: 3.5vw;
        gap: 0.5em;
    }
    #shopArea .reviews .review .review-avatar {
        width: 9vw;
        height: 9vw;
    }
    #shopArea .reviews .review .review-stars {
        font-size: 4vw;
    }
    #shopArea .reviews .review .review-title {
        font-size: 3.75vw;
    }
    #shopArea .reviews .review .review-text {
        font-size: 3vw;
    }
}

/* offer */
#offerWrap .sidenav {
    height: fit-content;
    padding: 1.5em 2.5%;
    border: 1px solid #707070;
    border-radius: 20px;
    text-align: center;
}
#offerWrap .sidenav h2 {
    font-family: var(--fontPop);
    font-size: 23px;
    font-weight: 600;
}
#offerWrap .sidenav h2 img {
    width: 42px;
    height: auto;
    margin: 0 auto 0.25em;
}
#offerWrap .sidenav .coins {
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#offerWrap .sidenav .coins .icon_coin {
    width: 45px;
    aspect-ratio: 1;
    margin-right: 5px;
}
#offerWrap .sidenav .coins strong {
    font-size: 52px;
    display: inline-block;
    margin-right: 5px;
}
#offerWrap .sidenav .text {
    font-size: 14px;
    border-top: 1px solid #D0D0D0;
    padding-top: 0.8em;
    margin-bottom: 0.8em;
}
#offerWrap .sidenav .btn {
    width: 90%;
}

#offerWrap .mainArea .roundBox {
    padding-left: 0;
    padding-right: 0;
}
#offerWrap .mainArea h2 {
    font-size: 30px;
    padding: 0 2.5rem;
}
#offerWrap .c_steps {
    width: 180px;
    margin-left: auto;
    margin-right: 2.5rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}
#offerWrap .c_steps:before {
    content: "";
    display: block;
    position: absolute;
    width: 70px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    background: #eee;
}
#offerWrap .c_steps .step {
    display: flex;
    width: 42px;
    height: 42px;
    background: #FFF;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    fill: #B2B2B2;
}
#offerWrap .c_steps .icon_memo {
    width: 27px;
    height: 27px;
}
#offerWrap .c_steps .icon_coins {
    width: 27px;
    height: 26px;
}
#offerWrap .step-edit .c_steps .step-edit {
    fill: #FFF;
    background: var(--colGreen);
}

#offerWrap .offerList .icon_coin {
    width: 15px;
    height: 15px;
    display: inline;
}
#offerWrap .offerList .offer {
    padding: 30px 2.5rem 1em;
    border-bottom: 1px solid #D0D0D0;
}
#offerWrap .offerList .offer .offer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    background: var(--bgGray);
    border-radius: 20px;;
    padding: 0 20px 0 100px;
    font-size: 14px;
    margin-top: 3em;
}
#offerWrap .offerList .offer .offer-head > div:not(.del) {
    height: 100%;
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
#offerWrap .offerList .offer .offer-head > div dt {
    color: #c1c1c1;
    position: absolute;
    top: -2em;
    /* left: 50%; */
}
#offerWrap .offerList .offer .offer-head .seller {
    position: relative;
}
#offerWrap .offerList .offer .offer-head .seller .profileIcon {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50vh;
}
#offerWrap .offerList .offer .offer-head .del {
    padding: 0 30px;
}
#offerWrap .offerList .offer .offer-head .del dt {
    display: none;
}

#offerWrap .offer-body {
    padding: 2em;
}
#offerWrap .offer-body > dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 7.6%;
}
#offerWrap .offer-body > dl > .noteArea {
    grid-column: span 2 / span 2;
}
#offerWrap .offer-body dt {
    position: relative;
    margin-bottom: 0.5em;
    padding-right: 40px;
}
#offerWrap .offer-body dt .btn_help {
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
    transition: 0.3s ease;
}
#offerWrap .offer-body dt .btn_help:hover {
    opacity: 0.6;
}
#offerWrap .offer-body dt .helpText {
    position: absolute;
    top: -1.7em;
    right: 36px;
    background: #333;
    color: #FFF;
    font-size: 0.9em;
    width: fit-content;
    padding: 2px 1em;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s ease;
}
#offerWrap .offer-body dt .helpText:before {
    content: "";
    position: absolute;
    width: 1em;
    height: 0.6em;
    background: #333;
    clip-path: polygon(0 0, 80% 0%, 100% 100%);
    top: 100%;
    right: -3px;
}
#offerWrap .offer-body dt .btn_help:hover + .helpText {
    opacity: 1;
}

#offerWrap .offer-body input[type="text"] {
    width: 100%;
    border: 1px solid #000;
    border-radius: 50vh;
    font-size: 13px;
    padding: 0.5em 1em;
}
#offerWrap .offer-body .inputFile {
    display: flex;
    height: 39px;
    background: var(--bgGray);
    border-radius: 50vh;
    justify-content: flex-start;
    align-items: center;
    font-size: 13px;
    gap: 0.75em;
}
#offerWrap .offer-body input[type="file"] {
    display: none;
}
#offerWrap .offer-body .inputFile .uploadBtn {
    display: inline-flex;
    width: 38%;
    min-width: 30px;
    height: 100%;
    background: var(--colGreen);
    border: 2px solid var(--colGreen);
    border-radius: 50vh;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    fill: #FFF;
    transition: 0.3s ease;
}
#offerWrap .offer-body .inputFile .uploadBtn:hover {
    background: #FFF;
    fill: var(--colGreen);
}
#offerWrap .offer-body .inputFile .icon_upload {
    width: 24px;
    height: 27px;
}
#offerWrap .offer-body .inputFile:after {
    content: attr(data-fileName);
}
/* #offerWrap .offer-body input[type="file"]::file-selector-button {
    background: var(--colGreen);
    border: 0;
    border-radius: 50vh;
} */
#offerWrap .offer-body select {
    width: 100%;
    border: 1px solid #000;
    border-radius: 50vh;
    font-size: 13px;
    padding: 0.5 1em;
}
#offerWrap .offer-body textarea {
    width: 100%;
    border: 1px solid #000;
    border-radius: 20px;
    height: 6em;
    font-size: 13px;
    padding: 0.8em 1em;
}

#offerWrap #offerListBottom {
    padding: 2em;
}
#offerWrap #offerListBottom .text {
    text-align: right;
    font-size: 18px;
    line-height: 1em;
}
#offerWrap #offerListBottom .icon_coin {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 0.25em;
}
#offerWrap #offerListBottom .btns {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    margin-top: 2em;
}
#offerWrap #offerListBottom .btns .btn {
    flex: 1;
    height: 48px;
    min-width: fit-content;
}



/* acount */


@media screen and (max-width: 640px) {
   /*  #acountWrap {
        margin-top: 0;
    } */

    /* #acountWrap aside {
        display: none;
    } */
}



.mainArea .roundBox {
    width: 100%;
    padding: 2rem 2.5rem;
    border: 1px solid #707070;
    border-radius: 20px;
}

#acountWrap .mainArea #notificationList strong {
    color: #25BA92;
}

#acountWrap .mainArea #notificationList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    position: relative;
}

#acountWrap .mainArea #notificationList li + li {
    margin-top: 1.5em;
}

#acountWrap .mainArea #notificationList li .dateTime {
    min-width: fit-content;
    width: 150px;
    color: #808080;

}

#acountWrap .mainArea #notificationList li .dateTime br {
    display: none;
}

#acountWrap .mainArea #notificationList li .text {
    flex-grow: 1;
    text-align: left;
}

/* #acountWrap .mainArea #notificationList .btn {
    text-transform: none;
    background: #FFF;
    color: var(--colGreen);
    border: 1px solid var(--colGreen);
    border-radius: 50vh;
    font-size: inherit;
    font-weight: normal;
    padding: 0 0.8em;
    height: 2.5em;
    min-height: 2.5em;
}

#acountWrap .mainArea #notificationList .btn:hover {
    background: var(--colGreen);
    color: #FFF;
} */

#acountWrap .mainArea .btn.showMore {
    display: flex;
    width: fit-content;
    font-size: 14px;
    color: #000;
    border: 1px solid #D8D8D8;
    background: #FFF;
    border-radius: 50vh;
    font-weight: normal;
    margin: 2em auto 0;
}

#acountWrap .mainArea .btn.showMore:hover {
    background: #D8D8D8;
}

@media screen and (max-width: 980px) {
    #acountWrap .mainArea #notificationList li:has(.btn) .text {
        padding-bottom: 2em;
    }

    #acountWrap .mainArea #notificationList .btn {
        height: 1.5em;
        min-height: 1.5em;
        position: absolute;
        bottom: 0;
        left: 72px;
    }

    #acountWrap .mainArea #notificationList li .dateTime {
        width: 80px;
    }

    #acountWrap .mainArea #notificationList li .dateTime br {
        display: block;
    }
}

@media screen and (max-width: 640px) {
    #acountWrap .mainArea .roundBox {
        padding: 5vw 5vw 5vw 8.5vw;
    }

    #acountWrap .mainArea #notificationList li {
        display: block;
        padding-left: 10.4vw;

    }

    #acountWrap .mainArea #notificationList li:has(.btn) {
        padding-bottom: 2em;
    }

    #acountWrap .mainArea #notificationList li .userIcon {
        width: 8.6vw;
        height: 8.6vw;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    #acountWrap .mainArea #notificationList li:has(.btn) .text {
        padding-bottom: 0;
    }

    #acountWrap .mainArea #notificationList li .dateTime br {
        display: none;
    }

    #acountWrap .mainArea #notificationList li .dateTime {
        width: auto;
        font-size: 0.9em;
    }

    #acountWrap .mainArea #notificationList .btn {
        left: 50%;
        transform: translateX(-50%);
    }

}
#acountWrap .mainArea .btn.showMore {
    display: flex;
    width: fit-content;
    font-size: 14px;
    color: #000;
    border: 1px solid #D8D8D8;
    background: #FFF;
    border-radius: 50vh;
    font-weight: normal;
    margin: 2em auto 0;
}

#acountWrap .mainArea .btn.showMore:hover {
    background: #D8D8D8;
}

@media screen and (max-width: 980px) {
    #acountWrap .mainArea #notificationList li:has(.btn) .text {
        padding-bottom: 2em;
    }

    #acountWrap .mainArea #notificationList .btn {
        height: 1.5em;
        min-height: 1.5em;
        position: absolute;
        bottom: 0;
        left: 72px;
    }

    #acountWrap .mainArea #notificationList li .dateTime {
        width: 80px;
    }

    #acountWrap .mainArea #notificationList li .dateTime br {
        display: block;
    }
}

@media screen and (max-width: 640px) {
    #acountWrap .mainArea .roundBox {
        padding: 5vw 5vw 5vw 8.5vw;
    }

    #acountWrap .mainArea #notificationList li {
        display: block;
        padding-left: 10.4vw;

    }

    #acountWrap .mainArea #notificationList li:has(.btn) {
        padding-bottom: 2em;
    }

    #acountWrap .mainArea #notificationList li .userIcon {
        width: 8.6vw;
        height: 8.6vw;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    #acountWrap .mainArea #notificationList li:has(.btn) .text {
        padding-bottom: 0;
    }

    #acountWrap .mainArea #notificationList li .dateTime br {
        display: none;
    }

    #acountWrap .mainArea #notificationList li .dateTime {
        width: auto;
        font-size: 0.9em;
    }

    #acountWrap .mainArea #notificationList .btn {
        left: 50%;
        transform: translateX(-50%);
    }

    #acountWrap .mainArea .btn.showMore {
        font-size: 3vw;
        height: 8vw;
        min-height: 1em;
    }

}



/* recommendArea */
.recommendArea {
    margin-top: 80px;
    /* padding-bottom: 80px; */
    width: 100%;
    overflow: hidden;
}

.recommendArea .slideArea {
    margin-top: 50px;
    overflow: visible;
    position: relative;
}





/* slideArea */
.slideArea {
    --moveX: 0;
    --liWidth: calc(var(--mainW) * 0.1476923);
    --slideGap: calc(var(--mainW) * 0.036923);
    position: relative;
}

.slideArea .arw {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    opacity: 0.6;
    pointer-events: none;
    transition: 0.25s ease-in-out;
}

.slideArea .arw.active {
    opacity: 1;
    pointer-events: visible;
    cursor: pointer;

}

.slideArea .arw.active:hover {
    opacity: 0.6;
}

.slideArea .arw.active:active {
    zoom: 0.95;
    margin-left: 4px;
}

.slideArea.moving .arw.active {
    pointer-events: none;
}

.slideArea .arw-prev {
    left: -20px;
    transform: translate(-100%, -50%) rotate(180deg);
}

.slideArea .arw-next {
    right: -20px;
    transform: translate(100%, -50%);
}

@media screen and (max-width: 1380px) {
    .slideArea .arw {
        width: 36px;
        height: 36px;
    }

    .slideArea .arw-prev {
        left: -20px;
        transform: translate(0, -50%) rotate(180deg);
    }

    .slideArea .arw-next {
        right: -20px;
        transform: translate(0, -50%);
    }
}

.slideArea .slideList {
    width: fit-content;
    display: flex;
    gap: var(--slideGap);
    margin-left: calc((var(--liWidth) + var(--slideGap)) * var(--moveX) * (-1));
    transition: 0.3s ease-in-out;
}

.slideArea .slideList li {
    width: var(--liWidth);
}
.slideArea .slideList li a {
    display: block;
    position: relative;
    transition: 0.3s ease;
}
.slideArea .slideList li a:hover {
    opacity: 0.7;
}
.slideArea.top10 .slideList li a:before {

}
@media screen and (max-width: 640px) {
    .slideArea {
        --liWidth: calc(var(--mainW) * 0.45);
        --slideGap: calc(var(--mainW) * 0.04);
    }
}


/* footer */
#footer {
    margin-top: 100px;
}
#footer dl > dd + dd {
    margin-top: 0.3em;
}
#footer select {
    outline: none !important;
    border: 1px solid #000;
    border-radius: 50vh;
    width: 175px;
    text-align: center;
    cursor: pointer;
}
@media screen and (max-width: 640px) {
    #footer {
        margin-top: 13vw;
    }
    #footer select {
        width: 100%;
    }
}

