@charset "UTF-8";

/* profile */
.profile__detail {
    background-color: var(--mainColor-gray);
    border-radius: 4vw;
    padding: var(--contentPadding);
    border: var(--mainColor-black) solid 1px;
}

.profile__detail img {
    display: block;
    width: 66.66vw;
    height: 82.4vw;
    border-radius: 2.66vw;
    border: var(--mainColor-black) solid 1.3px;
    margin: 0 auto;
}

.profile__topic {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    line-height: 1.7;
    font-weight: 500;
    gap: 12.266vw;
    margin-top: 30px;
    position: relative;
}

.profile__topic::after {
    content: '';
    width: 9.6vw;
    height: 1px;
    background-color: var(--mainColor-black);
    position: absolute;
    top: 50%;
    left: 39px;
    transform: translateY(-50%);
}

.profile__topic .font {
    display: block;
    font-weight: 500;
}

.profile__txt {
    font-size: 1.2rem;
    margin-top: 15px;
}

/* profile pc */
@media screen and (min-width:821px) {
    .profile__detail {
        margin: 50lvh 0 0 50vw;
        border-radius: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 var(--contentPadding-pc);
        width: 50vw;
        height: max(71.11vw,100lvh);
    }
    
    .profile__detail img {
        width: 26.38vw;
        height: 32.63vw;
        border-radius: 20px;
    }
    
    .profile__topic {
        font-size: 2rem;
        gap: 3.88vw;
        margin-top: 4.16vw;
    }
    
    .profile__topic::after {
        width: 2.5vw;
        left: 53px;
    }

    .profile__txt {
        margin-top: 30px;
    }
}
/* profile pc */
/* profile */

/* story */
.story__list {
    background-color: var(--mainColor-gray);
    border-radius: 4vw;
    padding: var(--contentPadding);
    border: var(--mainColor-black) solid 1px;
}

.story__item {
    margin-top: 8vw;
    position: relative;
}

.story__item:first-of-type {
    margin-top: 0;
}

.story__topic {
    font-size: 1.6rem;
    font-weight: 500;
}

.story__topic span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
}

.story__txt {
    font-size: 1.2rem;
    padding: 20px 0 12.26vw;
}

.story__item:last-of-type .story__txt {
    padding-bottom: 0;
}

.story__item::after {
    content: '';
    width: 84vw;
    height: 6.933vw;
    background-image: url(../images/story-arrow_sp.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
}

.story__item:last-of-type::after {
    display: none;
}

/* story pc */
@media screen and (min-width:821px) {
    .section--story {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .section--story .section__topic {
        text-align: right;
    }

    .story__list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 30px;
        padding: 8.33vw var(--contentPadding-pc);
        width: 50vw;
    }

    .story__item {
        margin-top: 48px;
    }

    .story__topic {
        font-size: 2rem;
    }

    .story__topic span {
        font-size: 1.2rem;
    }

    .story__txt {
        font-size: 1.4rem;
        padding: 60px 0 5.27vw;
    }

    .story__item::after {
        width: 41.66vw;
        height: 1.111vw;
        background-image: url(../images/story-arrow_pc.jpg);
    }
}
/* story pc */
/* story */

/* strength */
.strength__list {
    background-color: var(--mainColor-gray);
    border-radius: 4vw;
    padding: var(--contentPadding);
    border: var(--mainColor-black) solid 1px;
}

.strengthTopic__list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.strength__topic {
    height: 32vw;
    text-align: center;
    border: var(--mainColor-black) solid 1px;
    border-radius: 2.66vw;
    position: relative;
    transition: all 0.4s;
    cursor: pointer;
}

.strength__topic p {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.strength__topic p span {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 3px;
    letter-spacing: 0.12em;
}


.strength__topic:hover {
    background-image: url(../images/gradation.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #FFF;
}

.strength__topic:hover::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 15px;
    height: 12px;
    background-image: url(../images/strength-arrow_open.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50%);
}

.strengthDetail__list {
    position: relative;
    border: var(--mainColor-black) solid 1px;
    background-color: var(--mainColor-gray);
    width: 84vw;
    height: 300px;
    border-radius: 2.66vw;
    margin-top: 10px;
    overflow: hidden;
}

.strengthDetail__list::before {
    content: '';
    width: min(4vw,15px);
    height: min(4.26vw,16px);
    position: absolute;
    top: 50%;
    left: 50%;
    background-image: url(../images/strength-arrow_BK.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(max(-10.93vw,-41px),-50%);
    opacity: 0.5;
}

.strengthDetail__list::after {
    content: 'CLICK !';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-28%,-50%);
    font-family: neue-haas-grotesk-text, sans-serif;
    font-size: min(1.6rem,4.26vw);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    opacity: 0.5;
}

.strength__txt {
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.4s;
    padding: 4.8vw;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: var(--mainColor-gray);
}

.strength__topic.on {
    background-image: url(../images/gradation.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #FFF;
}

.strength__topic.on:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 15px;
    height: 12px;
    background-image: url(../images/strength-arrow_open.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50%);
}

.strength__txt.on {
    opacity: 1;
    z-index: 100;
}

@media screen and (min-width:768px) {
    .strengthTopic__list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .strength__topic p span {
        width: 129px;
    }
}

@media screen and (min-width:768px) and (max-width:820px) {
    .strength__topic {
        width: max(208px,27.08vw);
        height: max(208px,27.08vw);
    }
}

/* strength pc */
@media screen and (min-width:821px) {
    .section--strength {
        display: flex;
        justify-content: space-between;
    }
    
    .strength__list {
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 30px;
        padding: 8.33vw var(--contentPadding-pc);
        width: 50vw;
        height: max(71.11vw,100lvh);
    }
    
    .strengthTopic__list {
        gap: 0.621vw;
    }
    
    .strength__topic {
        width: 13.4vw;
        height: 13.4vw;
        border-radius: 20px;
    }

    .strength__topic p {
        font-size: min(2rem,1.38vw);
    }
    
    .strength__topic p span {
        font-size: min(1.2rem,0.83vw);
    }
    
    .strengthDetail__list {
        width: 41.66vw;
        height: 350px;
        border-radius: 20px;
        margin-top: 0.69vw;
    }
    
    .strengthDetail__list::before {
        width: 1.04vw;
        height: 1.33vw;
        transform: translate(-3.26vw,-50%);
    }
    
    .strengthDetail__list::after {
        transform: translate(-32%,-50%);
        font-size: 1.38vw;
    }

    .strength__txt {
        font-size: 1.4rem;
        padding: 2.08vw;
        overflow: scroll;
    }
}
/* strength pc */
/* strength */

/* love */
.section--love {
    border-radius: 4vw;
    background-color: var(--mainColor-gray);
    padding: 16vw 8vw 8vw;
    border: var(--mainColor-black) solid 1px;
    margin-top: 0;
}

.section--love .section__name, .section--love .section__subTopic {
    color: var(--mainColor-black);
}

.loveCategory__list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 3.46vw;
}

.loveCategory__item {
    width: 40vw;
    height: 40vw;
    font-size: 1.2rem;
    border: var(--mainColor-black) solid 1px;
    border-radius: 2.66vw;
    padding: 3.2vw;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.1s;
}

.loveCategory__item:hover {
    border-width: 3px;
}

.loveCategory__item--music {
    background-image: url(../images/music.jpg);
}

.loveCategory__item--fashion {
    background-image: url(../images/fashion.jpg);
}

.loveCategory__item--drawing {
    background-image: url(../images/illustration.jpg);
}

.loveCategory__item--knitting {
    background-image: url(../images/knitting.jpg);
}

.loveCategory__item--book {
    background-image: url(../images/book.jpg);
}

.loveCategory__item--dog {
    background-image: url(../images/dog.jpg);
}

.loveDetail__list::before {
    content: '';
    background-color: var(--mainColor-black);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    opacity: 0;
    width: 100vw;
    padding: 0 4vw;
}

.loveDetail__item {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: -100;
    opacity: 0;
    transition: 1s;
    width: 92vw;
    height: 0;
    border-radius: 4vw;
    border: var(--mainColor-black) solid 1px;
    overflow: hidden;
    background-color: var(--mainColor-gray);
}

.loveDetail__btnClose {
    position: fixed;
    top: 50%;
    right: 9.333vw;
    z-index: -1000;
    opacity: 0;
    transform: translateY(-37.33vw);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--mainColor-black);
    transition: all 1s;
}

.loveDetail__btnClose span {
    display: inline-block;
    position: absolute;
    height: 2px;
    left: 50%;
    border-radius: 1px;
    width: 9px;
    background-color: var(--mainColor-gray);
}

.loveDetail__btnClose span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}

.loveDetail__btnClose span:nth-of-type(2) {
    bottom: 50%;
    transform: translate(-50%,50%) rotate(45deg);
}

@media screen and (max-width:820px) {
    .loveCategory__item.open {
        border: var(--mainColor-black) solid 2px;
    }

    .loveDetail__item.open {
        z-index: 50;
        opacity: 1;
        height: 85.33vw;
        pointer-events: auto;
        overflow: hidden;
    }
    
    .loveDetail__list.open::before {
        height: 100lvh;
        z-index: 10;
        opacity: 0.5;
    }
    
    .loveDetail__btnClose.open {
        z-index: 100;
        opacity: 1;
    }
}

.love__topic {
    margin: var(--contentPadding) var(--contentPadding) 0;
    font-size: 1rem;
    font-weight: 400;
}

.love__topic .font {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.love__topic--music::before {
    content: '';
    width: 92vw;
    height: 92vw;
    background-image: url(../images/music.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    position: absolute;
    top: 10.933vw;
    right: -13.86vw;
    z-index: -10;
}

.love__topic--fashion::before {
    content: '';
    width: 92vw;
    height: 92vw;
    background-image: url(../images/fashion.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    position: absolute;
    top: 10.933vw;
    right: -13.86vw;
    z-index: -10;
}

.love__topic--drawing::before {
    content: '';
    width: 92vw;
    height: 92vw;
    background-image: url(../images/illustration.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    position: absolute;
    top: 10.933vw;
    right: -13.86vw;
    z-index: -10;
}

.love__topic--knitting::before {
    content: '';
    width: 92vw;
    height: 92vw;
    background-image: url(../images/knitting.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    position: absolute;
    top: 10.933vw;
    right: -13.86vw;
    z-index: -10;
}

.love__topic--book::before {
    content: '';
    width: 92vw;
    height: 92vw;
    background-image: url(../images/book.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    position: absolute;
    top: 10.933vw;
    right: -13.86vw;
    z-index: -10;
}

.love__topic--dog::before {
    content: '';
    width: 92vw;
    height: 92vw;
    background-image: url(../images/dog.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    position: absolute;
    top: 10.933vw;
    right: -13.86vw;
    z-index: -10;
}

.love__txt {
    margin: 12px var(--contentPadding);
    font-size: 1.2rem;
}

/* love pc */
@media screen and (min-width:821px) {
    .section--love {
        position: relative;
        border-radius: 30px;
        padding: 6.25vw 0.69vw 6.25vw 6.25vw;
    }
    
    .love__detail {
        display: flex;
        gap: 0.69vw;
    }
    
    .loveCategory__list {
        margin-top: 100px;
        gap: 0.69vw;
        width: 43.05vw;
    }
    
    .loveCategory__item {
        width: 13.88vw;
        height: 13.88vw;
        border-radius: min(20px,1.38vw);
        padding: 1.04vw;
        font-size: min(1.4rem,0.97vw);
        transition: all 0.2s;
    }

    .loveCategory__item.on {
        border-width: 3px;
    }
    
    .loveDetail__list::before {
        content: '';
        width: 0.833vw;
        height: 1.04vw;
        background-color: transparent;
        position: absolute;
        top: 50%;
        left: 50%;
        background-image: url(../images/arrow-left.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        transform: translate(-3.19vw,-50%);
        z-index: auto;
        opacity: 1;
        padding: 0;
        opacity: 0.5;
    }

    .loveDetail__list::after {
        content: 'CLICK !';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-34%,-50%);
        font-family: neue-haas-grotesk-text, sans-serif;
        font-size: 1.38vw;
        font-weight: 700;
        letter-spacing: 0;
        text-align: center;
        opacity: 0.5;
    }
    
    .loveDetail__list {
        width: 43.75vw;
        height: 28.47vw;
        border-radius: min(20px,1.38vw);
        border: var(--mainColor-black) solid 1px;
        background-color: var(--mainColor-gray);
        margin-top: 100px;
        overflow: hidden;
        position: relative;
    }
    
    .loveDetail__item {
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(0);
        z-index: auto;
        opacity: 0;
        width: 43.75vw;
        height: 28.47vw;
        border-radius: 0;
        border: 0;
        transition: none;
        transition: all 0.4s;
    }
    
    .loveDetail__item.on {
        opacity: 1;
        z-index: 100;
    }
    
    .love__topic {
        font-size: min(1.2rem,0.83vw);
        margin: 2.77vw 2.77vw 0;
    }
   
    .love__topic .font {
        font-size: min(3.2rem,2.22vw);
    }

    .love__topic--music::before {
        width: 45.83vw;
        height: 45.83vw;
        top: -5.9vw;
        right: -8.75vw;
    }

    .love__topic--fashion::before {
        width: 45.83vw;
        height: 45.83vw;
        top: -5.9vw;
        right: -8.75vw;
    }

    .love__topic--drawing::before {
        width: 45.83vw;
        height: 45.83vw;
        top: -5.9vw;
        right: -8.75vw;
    }

    .love__topic--knitting::before {
        width: 45.83vw;
        height: 45.83vw;
        top: -5.9vw;
        right: -8.75vw;
    }

    .love__topic--book::before {
        width: 45.83vw;
        height: 45.83vw;
        top: -5.9vw;
        right: -8.75vw;
    }

    .love__topic--dog::before {
        width: 45.83vw;
        height: 45.83vw;
        top: -5.9vw;
        right: -8.75vw;
    }

    .love__txt {
        margin: 0 2.77vw;
        font-size: min(1.4rem,0.97vw);
        margin-top: 30px;
    }
}
/* love pc */
/* love */