@charset "utf-8";

/* ====================
about-common
==================== */
.skill__list, .strength__list, .biography__list, .interest__list {
    width: 100%;
    padding: 0 var(--contentPadding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(30px, 3.47vw, 50px);
}

/* ====================
about-top
==================== */
.profile-wrapper {
    margin: 0 auto;
    padding: 0 var(--contentPadding);
}

.profile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(15px, 2.08vw, 30px);
    background-image: var(--bg-main);
    padding: 20px;
    aspect-ratio: var(--aspectRatio-vertical);
    max-width: 315px;
    box-shadow: var(--dropShadow);
    position: relative;
}

.profile__mainImg {
    max-height: 234px;
    object-fit: contain;
    align-self: stretch;
}

.profile__about {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2.08vw, 30px);
}

.profile__name {
    display: flex;
    align-items: flex-end;
    font-size: clamp(2.0rem, 1.66vw, 2.4rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: 0.2em;
    white-space: nowrap;
}

.profile__txt {
    color: var(--darkGray);
    font-size: clamp(1.3rem, 0.97vw, 1.4rem);
    line-height: 2.0;
}

.rotation-name {
    display: block;
    width: clamp(120px, 32vw, 150px);
    height: clamp(120px, 32vw, 150px);
    position: absolute;
    top: 20px;
    right: calc(var(--contentPadding) + 20px);
    right: 20px;
    transform: translate(50%, -50%);
}

.rotation-name img {
    animation: rotation 20s linear infinite;
}

/* about-top pc */
@media screen and (min-width: 1024px) {
    .profile {
        flex-direction: row;
        align-items: center;
        aspect-ratio: var(--aspectRatio-horizontal);
        width: clamp(343px, 64.7vw, 933px);
        max-width: 933px;
    }

    .profile__mainImg {
        max-width: 47.8%;
        max-height: none;
    }
}/* pc 1024px */

/* keyframes */
@keyframes rotation {
    0% {
        transform:rotate(0);
    }
    100% { 
        transform:rotate(360deg);
    }
}

/* ====================
skills
==================== */
.skill__item {
    background-image: var(--bg-main);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(30px, 2.77vw, 40px);
    padding: clamp(20px, 2.08vw, 30px);
    box-shadow: var(--dropShadow);
}

.skill__item img {
    max-width: 200px;
    max-height: 150px;
    object-fit: contain;
}

.skill__about {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill__topic {
    font-size: clamp(2.0rem, 1.66vw, 2.4rem);
    font-weight: 500;
}

.skill__txt {
    color: var(--darkGray);
    font-size: clamp(1.3rem, 0.97vw, 1.4rem);
    line-height: 2.0;
}

.skill__tool {
    font-family: var(--sub-font);
    font-size: clamp(1.3rem, 0.97vw, 1.4rem);
    font-weight: 300;
    line-height: 1.5;
}

/* skills pc */
@media screen and (min-width: 769px) {
    .skill__item {
        width: 55.6vw;
        max-width: 800px;
    }

    .skill__about {
        width: clamp(300px, 62.5%, 500px);
    }
}/* pc 769px */

/* ====================
strength
==================== */
.strength__item {
    background-image: var(--bg-main);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(30px, 2.77vw, 40px);
    padding: clamp(20px, 2.08vw, 30px);
    box-shadow: var(--dropShadow);
}

.strength__keyword {
    padding: 0 10px;
    width: 200px;
    aspect-ratio: 1;
    color: var(--blue);
    font-family: var(--sub-font);
    font-size: 2.0rem;
    font-weight: 400;
    line-height: 200px;
    text-align: center;
    border: 1px solid var(--blue);
    border-radius: 100%;
}

.keyword {
    width: 200px;
    aspect-ratio: 1;
    position: relative;
}

.keyword__circle {
    fill: transparent;
    stroke: var(--blue);
    stroke-width: 1;
    stroke-dasharray: 628;
    stroke-dashoffset: 628;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 1.0s ease, fill 1.0s ease-out 1.0s;
}

.keyword__circle.style-changed {
    stroke-dashoffset: 0;
    fill: var(--blue);
}

.keyword__topic {
    color: var(--blue);
    font-family: var(--sub-font);
    font-size: 2.0rem;
    font-weight: 400;
    line-height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: color 1.0s ease-out 0.6s;
}

.keyword__topic.style-changed {
    color: var(--white);
}

.strength__about {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.strength__topic {
    font-size: clamp(2.0rem, 1.66vw, 2.4rem);
    font-weight: 500;
}

.strength__txt {
    color: var(--darkGray);
    font-size: clamp(1.3rem, 0.97vw, 1.4rem);
    line-height: 2.0;
}

/* strength pc */
@media screen and (min-width: 769px) {
    .strength__item {
        width: 55.6vw;
        max-width: 800px;
    }

    .strength__about {
        width: clamp(300px, 62.5%, 500px);
    }    
}/* pc 769px */

/* ====================
biography
==================== */
.section--biography {
    background-color: var(--blue);
}

.section__topic--biography {
    color: var(--white);
}

.section__topic--biography span {
    color: var(--blue);
    text-shadow: 0.5px 0 0 var(--lightGray), 0 0.5px 0 var(--lightGray), -0.5px 0 0 var(--lightGray), 0 -0.5px 0 var(--lightGray);
}

.biography__list {
    gap: 0;
}

.biography__item {
    padding: 0 0 50px clamp(50px, 6.94vw, 100px);
    border-left: 1px solid var(--white);
    position: relative;
}

.biography__item::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: var(--white);
    position: absolute;
    top: 0;
    left: -10px;
}

.biography__topic {
    color: var(--white);
    font-family: var(--sub-font);
    font-size: clamp(1.4rem, 1.11vw, 1.6rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.biography__topic span {
    display: block;
    font-family: var(--main-font);
    font-size: clamp(2.0rem, 1.66vw, 2.4rem);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0;
}

.biography__about {
    margin-top: 10px;
    color: var(--lightGray);
    font-size: clamp(1.3rem, 0.97vw, 1.4rem);
    line-height: 2.0;
}

/* biography pc */
@media screen and (min-width: 769px) {
    .biography__item {
        width: 55.6vw;
        max-width: 800px;
    }
}/* pc 769px */


/* ====================
interest
==================== */
.section--interest {
    position: relative;
}

.interest__item {
    background-image: var(--bg-main);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(30px, 3.47vw, 50px);
    padding: clamp(20px, 2.08vw, 30px);
    box-shadow: var(--dropShadow);
}

.interest__item dt {
    width: 100%;
}

.interest__item img {
    display: block;
    margin: 0 auto;
    width: 73.3vw;
    max-width: 390px;
    height: clamp(200px, 15.2vw, 220px);
    object-fit: cover;
}

.interest__about {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.interest__topic {
    font-size: clamp(2.0rem, 1.66vw, 2.4rem);
    font-weight: 500;
}

.interest__txt {
    color: var(--darkGray);
    font-size: clamp(1.3rem, 0.97vw, 1.4rem);
    line-height: 2.0;
}

.line-market {
    font-size: clamp(1.3rem, 0.97vw, 1.4rem);
    text-decoration: underline;
}

.pageTop--about {
    color: var(--black);
    border: 1px solid var(--black);
    position: absolute;
    bottom: clamp(15px, 2.08vw, 30px);
    right: clamp(15px, 2.08vw, 30px);
}

/* interest pc */
@media screen and (min-width: 769px) {
    .interest__item {
        width: 55.6vw;
        max-width: 800px;
    }

    .interest__item dt {
        width: auto;
    }

    .spBr {
        display: none;
    }
}/* pc 769px */

/* ====================
last
==================== */
.last {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--black);
    width: 100%;
    padding: clamp(30px, 3.47vw, 50px) var(--contentPadding);
    position: relative;
    z-index: 100;
}

.last__txt {
    color: var(--white);
    font-size: clamp(1.2rem, 1.11vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.15em;
}

/* last pc */
@media screen and (min-width: 769px) {
    .last {
        justify-content: center;
    }

    .last__txt {
        text-align: center;
    }

    .spBr {
        display: none;
    }

    .pageTop {
        position: absolute;
        top: 50%;
        right: var(--contentPadding);
        transform: translateY(-50%);
    }
}/* pc 769px */

/* ====================
lastVisual
==================== */
.lastVisual-wrapper {
    margin: 0 auto;
    /* overflow: hidden; */
    padding: 0 0 clamp(50px, 6.94vw, 100px);
    position: relative;
    opacity: 0;
    transform: translate(0, -30%);
    transition: opacity 1.0s ease-out, transform 1.0s ease-out;
    z-index: 10;
}

.lastVisual-wrapper.is-received {
    opacity: 1;
    transform: translate(0, 0);
}

.lastVisual-wrapper::before {
    content: url(../images/common/fig-hand-black.svg);
    display: block;
    width: clamp(552px, 62.5vw, 900px);
    position: absolute;
    top: 30px;
    left: 50%;
    transform: scale(1, -1) translate(-50%, 0);
    z-index: -1;
}

.lastVisual {
    background-image: var(--bg-main);
    display: flex;
    flex-direction: column;
    gap: clamp(50px, 6.94vw, 100px);
    margin: 0 auto;
    padding: clamp(50px, 6.94vw, 100px) 0 20px;
    width: clamp(240px, 27.7vw, 400px);
    box-shadow: var(--dropShadow);
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(15px, 2.08vw, 30px);
}

.contact__topic {
    font-size: clamp(2.0rem, 1.66vw, 2.4rem);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: 0.15rem;
    text-align: center;
}

.contact__topic span {
    display: block;
    margin-top: 10px;
    font-family: var(--sub-font);
    font-size: clamp(1.4rem, 1.11vw, 1.6rem);
    letter-spacing: 0.15em;
}

.contact__mail {
    padding: clamp(5px, 0.69vw, 10px) clamp(15px, 2.08vw, 30px);
    font-family: var(--sub-font);
    font-size: clamp(1.4rem, 1.38vw, 2.0rem);
    font-weight: 300;
    line-height: 1.5;
    border: 1px solid var(--darkGray);
    border-radius: 30px;
    transition: all 0.4s;
}

.contact__mail.hover {
    background-color: var(--black);
    border: 1px solid var(--black);
    color: var(--white);
}

.lastVisual__copy {
    color: var(--darkGray);
    font-family: var(--sub-font);
    font-size: clamp(1.0rem, 0.83vw, 1.2rem);
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
}
