@charset "UTF-8";
/* profile */

body {
    background: #ffffff;
    color: #7c7c7c;
}

.profile {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.profile-background {
    display: flex;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
}

header {
    display: flex;
    width: 100%;
    height: auto;
    padding: 15vw 8vw;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    gap: 5vw;
}

header p:first-child {
    display: flex;
    font-size: 2rem;
    letter-spacing: 0.6vw;
    z-index: 1;
}

header p:last-child {
    display: flex;
    flex-direction: column;
    font-size: 2.5rem;
    letter-spacing: 0.3vw;
    z-index: 1;
}


@media screen and (min-width:769px) {

    header {
        position: absolute;
    }

    header p:last-child {
        font-size: 3.5rem;
    }

}
/* skill2 */

.profilemain {
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative; /* ツールチップの配置基準点 */
}

.profilemain svg {
    display: flex;
    width: 100%;
    height: auto;
    position: absolute;
    transform: rotate(90deg);
}

.hover-circle {
    transition: transform 0.3s ease, fill 0.3s ease;
    cursor: pointer;
}

.hover-circle:hover {
    fill: #007bff;
}
.hover-circle:nth-of-type(2):hover {
    fill: #ffbf00;
}
.hover-circle:nth-of-type(3):hover {
    fill: #f200ff;
}
.hover-circle:nth-of-type(4):hover {
    fill: #00e5ff;
}

.hover-circle-after {
    display: flex;
    width: 85%;
    padding: 5.5vw 2.5vw;
    flex-direction: column;
    align-items: center;
    position: absolute;
    background-color: #7a978df6;
    color: white;
    border-radius: 30px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility 3s ease;
}

.hover-circle-after.is-active {
    opacity: 1;
    visibility: visible;
}

.profile_list {
    display: flex;
    padding: 3vw;
    gap: 3vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile__maintitle {
    display: flex;
    height: auto;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
}

.profile__maintitle p {
    font-family: "Sawarabi Mincho";
    font-size: 1.4rem;
    line-height: 4.5rem;
    letter-spacing: 0.6rem;
}

.profile__subtitle {
    display: flex;
    height: auto;
    justify-content: center;
    align-items: center;
}

.profile__subtitle p {
    font-family:  "Sawarabi Mincho";
    font-size: 1.4rem;
    line-height: 4.5rem;
    letter-spacing: 0.4rem;
}

.profile__txt p {
    font-size: 1.4rem;
    line-height: 2.5rem;
    letter-spacing: 0.45rem;
}

.circle-group .hover-line,
.circle-group .hover-text {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-line {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
}

.hover-text {
    fill: black;
    font-size: 2.5rem;
    opacity: 0;
}

@media screen and (min-width:769px) {

    header {
        padding: 2vw 8vw;
        gap: 1vw;
    }

    .profilemain svg {
        width: 80%;
        transform: unset;
        position: unset;
    }

    .profile__maintitle p {
        font-size: 2.5rem;
        line-height: 4.5rem;
        letter-spacing: 1.2rem;
    }

    .profile__subtitle p {
        font-size: 2rem;
    }

    .profile__txt p {
        letter-spacing: 0.1rem;
    }

    .hover-text {
        font-size: 1.4rem;
    }
}


/* skills */

.skills {
    background-image: url(../images/profile/Vector.png);
    background-position: center;
    background-size: cover;
    display: flex;
    width: 100%;
    height: auto;
    padding: 8vw 15vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10vw;
    z-index: 1;
    background-color: #7a978d;
}

.boxtitle {
    display: flex;
    width: 100%;
    height: auto;
}

.boxtitle p {
    font-size: 1.5rem;
    line-height: 3rem;
    letter-spacing: 2vw;
    color: white;
}

.skills__box {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 10vw;
}


.accordion {
    display: flex;
    width: 100%;
    height: auto;
    position: relative;
    flex-direction: column;
}

.accordion-item {
    display: flex;
    width: 100%;
    height: auto;
    gap: 5vw;
    flex-direction: column;
}

.accordion-title {
    display: flex;
    width: 5vw;
    height: 5vw;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: solid 1px transparent;
    border-radius: 100px;
    transition: border-color 0.8s, border-width 0.8s;
}

.accordion-title:hover {
    border-color: white;
    border-width: 1px; 
}

.titletxt {
    font-size: 1.4rem;
    letter-spacing: 1.1rem;
    color: white;
}

.accordion-title::after {
    border-right: solid 1px #fff;
    border-top: solid 1px #fff;
    content: "";
    display: block;
    width: 1.5vw;
    height: 1.5vw;
    transform: rotate(135deg);
    transition: transform .5s ease-in-out, top .5s ease-in-out;
}

.accordion-title.open::after {
    transform: rotate(-45deg);
}

.accordionarea {
    display: none;
    justify-content: center;
}

.skills__list {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 15vw 3vw;
    gap: 10vw;
    align-items: center;
    background-color: #FFF;
    border-radius: 30px;
    justify-content: center;
}

.skills__list li {
    display: flex;
    width: 85%;
    height: auto;
    flex-direction: column;
    padding-bottom: 2vw;
    gap: 3vw;
    border-bottom: solid 2px #dddcdc;
}

.itemtitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.itemtitle img {
    display: flex;
    width: 5vw;
    height: 5vw;
}
.itemtitle p {
    color: #6ea0c5;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 4rem;
    letter-spacing: 0.5rem;
}

.itemtxt {
    color: #7c7c7c;
    font-size: 1.2rem;
    line-height: 3rem; 
}

@media screen and (min-width:769px) {
    .skills {
        gap: 7vw;
    }

    .boxtitle p {
        font-size: 2.3rem;
    }
    
    .skills__box {
        gap: 5vw;
    }

    .accordion-item {
        gap: 5vw;
    }

    .accordion-title {
        width: 3vw;
        height: 3vw;
    }

    .accordion-title::after {
        width: 0.8vw;
        height: 0.8vw;
    }

    .titletxt {
        font-size: 1.8rem;
        letter-spacing: 1.1rem;
    }

    .skills__list {
        width: 100%;
        gap: 5vw;
        padding: 7vw 0vw
    }

    .skills__list li{
        justify-content: space-evenly;
        flex-direction: row;
        gap: 3vw;
    }

    .itemtitle {
        width: 50%;
    }

    .itemtitle img {
        width: 3vw;
        height: 3vw;
    }

    .itemtitle p {
        font-size: 1.5rem;
        line-height: 3rem;
    }

    .itemtxt {
        width: 100%;
        font-size: 1.2rem;
        letter-spacing: 0.5rem;
    }
    
}

/* career */

.career {
    display: flex;
    width: 100%;
    height: auto;
    padding: 5vw 10vw;
    z-index: 1;
}

.careerbox {
    display: flex;
    width: 100%;
    height: auto;
    padding: 10vw 5vw;
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 5vw;
}

.careerabout {
    background-image: url(../images/profile/careerabout.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    width: 40%;
    height: 30vw;
    justify-content: space-evenly;
    align-items: center;
}

.careertxt {
    display: flex;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
}

.careertxt p {
    font-size: 1.3rem;
    letter-spacing: 0.3rem;
    font-weight: lighter;
    line-height: 5vw;
}

@media screen and (min-width:769px) {

    .careerabout {
        height: 60vh;
    }

    .careerbox {
        padding: 1vw;
        flex-direction: row;
        gap: 1.5vw;
        align-items: center;
    }

    .careertxt p {
        font-size: 1.6rem;
        letter-spacing: 0.3rem;
        line-height: 3.5vw;
    }
}





