@charset "utf-8";
/* =============
pageTitle
============== */
.pageTitle {
    padding: 200px var(--content-padding) 0;
}

h2 {
    font-size: 6rem;
    font-family: Inter;
    font-weight: 300;
    line-height: 1;
}

h2 span {
    display: block;
    font-size: 1.2rem;
    font-family: "Zen Kaku Gothic New";
    font-weight: 400;
    margin-top: 8px;
}

.page__txt {
    position: relative;
    font-size: 1.4rem;
    width: 73.1%;
    margin: 80px 0 0 auto;
}

.page__txt::before {
    position: absolute;
    content: "";
    top: 14px;
    left: -90px;
    width: 60px;
    height: 1px;
    background-color: var(--primary-black);
}

/* pageTitle pc */
@media screen and (min-width: 1024px) {
    .pageTitle {
        padding: 280px var(--content-padding) 0;
    }

    .page__content {
        max-width: 1200px;
        margin: 0 auto;
    }

    h2 {
        font-size: 11rem;
    }

    h2 span {
        font-size: 2rem;
        line-height: 1;
    }

    .page__txt {
        width: 58.3%;
        font-size: 1.8rem;
    }

    .page__txt::before {
        top: 18px;
        left: -118px;
        width: 80px;
    }
}

/* =============
profile
============== */
.profile {
    padding: 120px var(--content-padding) 0;
}

h3 {
    position: relative;
    font-size: 3.8rem;
    font-family: Inter;
    font-weight: 300;
    line-height: 1;
    padding-left: 12px;
}

h3::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-black);
}

.pro__item {
    margin-top: 22px;
    padding-top: 26px;
    border-top: 1px solid var(--primary-gray);
}

.pro__name {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

h4 {
    font-size: 3.2rem;
    font-family: Inter;
    font-weight: 300;
    line-height: 1.1; 
    margin-top: 32px;
}

.name__en {
    display: block;
}

.name__jp {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 18px;
}

.pro__txt--pc {
    display: none;
}

.pro__img {
    width: 35.8%;
}

.pro__txt--sp {
    font-size: 1.4rem;
    margin-top: 24px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--primary-gray);
}

/* profile pad */
@media screen and (min-width: 768px) {
    h4 {
        margin-top: 40px;
    }
    
    .pro__item {
        padding-bottom: 40px;
        border-bottom: 1px solid var(--primary-gray);
    }

    .name__en {
        display: inline-block;
        margin-left: 10px;
    }

    .pro__detail {
        width: 64%;
    }

    .pro__txt--pc {
        display: block;
        font-size: 1.4rem;
        margin-top: 30px;
    }
    
    .pro__img {
        width: 30%;
    }

    .pro__txt--sp {
        display: none;
    }
}


/* profile pc */
@media screen and (min-width: 1024px) {
    .profile {
        padding: 230px var(--content-padding) 0;
    }

    .pro__content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
    }

    h3 {
        font-size: 5rem;
        padding-left: 20px;
    }

    .pro__title {
        flex-shrink: 1;
        margin-top: 59px;
    }

    h3::before {
        width: 8px;
        height: 8px;
    }

    .pro__item {
        width: 68.1%;
        margin-top: 0;
        padding-top: 60px;
        padding-bottom: 85px;
        border-bottom: 1px solid var(--primary-gray);
    }

    h4 {
        font-size: 3.4rem;
        margin-top: 5px;
    }
    
    .pro__detail {
        width: 73.3%;
    }

    .name__jp {
        font-size: 1.8rem;
        margin-top: 14px;
    }

    .pro__txt--pc {
        font-size: 1.6rem;
    }

    .pro__img {
        width: 23.2%;
    }
}



/* =============
biography
============== */
.bio {
    background-color: var(--primary-black);
    margin-top: 80px;
    padding: 100px 5.3% 0;
    overflow: hidden;
}

.bio__title {
    color: var(--primary-white);
}

.bio__title::before {
    background-color: var(--primary-white);
}

.side-scroll-list-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
}
  
.side-scroll-list {
    position: absolute;
    top: 128px;
    display: flex;
    gap: 0 80px;
}

.bio__item {
    width: 250px;
}

.year {
    color: rgba(120, 120, 120, 0.60);
    font-size: 4rem;
    font-family: Inter;
    line-height: 1;
}

.bio__dot {
    position: relative;
    display: block;
    background-color: var(--primary-white);
    width: 8px;
    height: 8px;
    margin-top: 26px;
}

.bio__dot::before {
    content: "";
    position: absolute;
    top: 4px;
    width: 340px;
    height: 1px;
    background-color: var(--primary-white);
}

.bio__topic {
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 22px;
}

.bio__txt {
    color: var(--primary-white);
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 14px;
}



/* biography pc */
@media screen and (min-width: 1024px) {
    .bio {
        height: 100vh;
        margin-top: 120px;
        padding: 120px 5.3% 0;
    }

    .bio__content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .side-scroll-list {
        top: 160px;
        gap: 0 140px;
    }

    .bio__item {
        width: 424px;
    }

    .bio__dot {
        width: 10px;
        height: 10px;
        margin-top: 30px;
    }

    .bio__dot::before {
        top: 5px;
        width: 900px;
    }

    .year {
        font-size: 6rem;
    }

    .bio__topic {
        font-size: 2rem;
        margin-top: 28px;
    }

    .bio__txt {
        font-size: 1.6rem;
        margin-top: 16px;
    }

}

/* biography pc */
@media screen and (min-width: 1366px) {
    .bio {
        padding: 180px 5.3% 0;
    }

    .side-scroll-list {
        top: 200px;
    }
}

/* =============
skills
============== */
.skill {
    padding: 80px var(--content-padding) 0;
}

.skill__info {
    margin-top: 40px;
}

.skill__item:last-of-type {
    margin-top: 60px;
}

h5 {
    font-size: 2.8rem;
    font-family: Inter;
    font-weight: 300;
    line-height: normal;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--primary-gray);
}

.skill__txt {
    font-size: 1.4rem;
    margin-top: 24px;
}

.tool {
    color: var(--primary-gray);
    font-size: 1.2rem;
    font-family: Inter;
    font-weight: 300;
    margin-top: 8px;
}

.skill__accordion {
    display: flex;
    align-items: center;
    margin-top: 28px;
    cursor: pointer;
    transition: all .5s ease;
}

.skill__btn {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-black);
    border-radius: 50px;
}

.skill__btn::before, 
.skill__btn::after {
    content:'';
    position: absolute;
    top: 50%;
    left: 8px;
    width: 13px;
    height: 1px;
    background-color: var(--primary-black);
    transition: all 0.2s ease;
}

.skill__btn::before {
    transform: rotate(0deg);
}

.skill__btn::after {
    transform: rotate(90deg);
}

.skill__accordion.close .skill__btn::before {
    transform: rotate(45deg);
}

.skill__accordion.close .skill__btn::after {
    transform: rotate(135deg);
}

.skill__btn--txt {
    font-size: 1.4rem;
    font-family: Inter;
    font-weight: 300;
    margin-left: 14px;
}

.skill__menu {
    display: none;
}

.skill__list {
    margin-top: 25px;
    border-top: 1px solid var(--primary-gray);
}

.menu__item {
    padding: 25px 0;
    border-bottom: 1px solid var(--primary-gray);
}

.menu__topic {
    color: var(--primary-gray);
    font-size: 1.3rem;
    font-family: Inter;
    font-weight: 300;
}

.menu__txt {
    font-size: 1.4rem;
}

/* skill pc */
@media screen and (min-width: 1024px) {
    .skill {
        padding: 120px var(--content-padding) 0;
    }

    .skill__content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
    }

    .skill__title {
        flex-shrink: 1;
    }

    .skill__info {
        width: 68.1%;
        margin-top: 16px;
    }

    .skill__item:last-of-type {
        margin-top: 80px;
    }

    h5 {
        font-size: 3.4rem;
    }

    .skill__txt {
        font-size: 1.6rem;
    }

    .tool {
        font-size: 1.4rem;
    }

    .skill__accordion {
        margin-top: 30px;
    }

    .skill__btn {
        width: 40px;
        height: 40px;
    }

    .skill__btn::before, 
    .skill__btn::after {
        left: 11px;
        width: 16px;
    }

    .skill__btn--txt {
        font-size: 1.6rem;
        margin-left: 16px;
    }

    .skill__list {
        margin-top: 32px;
    }

    .menu__item {
        padding: 30px 0;
    }

    .menu__topic {
        font-size: 1.4rem;
    }

    .menu__txt {
        font-size: 1.6rem;
    }
}

/* =============
strength
============== */
.strength {
    padding: 80px var(--content-padding) 120px;
}

.st__inner {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 40px;
}

.tab {
    margin-top: 50px;
}

.tab__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 0;
    border-bottom: 1px solid var(--primary-gray);
}

.tab__item:first-of-type {
    padding: 0 0 20px;
}

.tab__txt {
    font-size: 1.8rem;
    font-weight: normal;
}

.tab__txt span {
    margin-left: 24px;
}

.tab__btn {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid var(--primary-gray);
    border-radius: 50px;
}

.tab__btn::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-black);
    border-radius: 50px;
}

.tab__btn::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0,0);
    background-image: url(../img/arrow__blSp.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 34px;
    height: 34px;
    opacity: 0;
    transition: 0.4s;
}

.tab__item:hover .tab__btn::after {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1,1);
    transition: 0.4s;
}

.st__list {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--primary-gray);
}

.st__item {
    display: none;
}

.st__item.show {
    display: block;
}

.st__item.show .st__number {
    animation: fadeup 1s ease forwards;
}

.st__item.show .st__topic {
    animation: fadeup 1s ease 0.1s forwards;
}

.st__item.show .st__txt {
    animation: fadeup 1s ease 0.3s forwards;
}

@keyframes fadeup {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

.st__number, 
.st__topic {
    font-size: 2rem;
    line-height: normal;
    opacity: 0;
}

.st__topic {
    margin-top: 16px;
}

.st__txt {
    font-size: 1.4rem;
    margin-top: 24px;
    opacity: 0;
}

/* strength pad */
@media screen and (min-width: 1024px) {
    .strength {
        padding: 120px var(--content-padding) 200px;
    }

    .st__content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .st__inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: row;
        margin-top: 100px;
    }

    .tab {
        width: 35%;
        flex-shrink: 0;
        margin-top: 0;
        padding-right: 50px;
        border-right: 1px solid var(--primary-gray);
    }

    .tab__item {
        padding: 30px 0;
    }

    .tab__item:first-of-type {
        padding: 0 0 30px;
    }

    .tab__txt {
        font-size: 2.2rem;
    }

    .tab__txt span {
        margin-left: 30px;
    }

    .tab__btn::after {
        background-image: url(../img/arrow__bl.png);
    }

    .st__list {
        width: 60%;
        padding-bottom: 0;
        border-bottom: none;
    }

    .st__number, 
    .st__topic {
        font-size: 2.4rem;
    }

    .st__topic {
        margin-top: 20px;
    }

    .st__txt {
        font-size: 1.6rem;
        margin-top: 30px;
    }

}

/* strength pc */
@media screen and (min-width: 1280px) {
    .tab {
        width: 31.8%;
        padding-right: 72px;
    }

    .st__list {
        width: 61.9%;
    }

}