/* *************************
aboutのページ内ナビ
************************* */

.works_nav ul br {
    display: none;
}

.works_nav {
    display: flex;
    gap: 20px;
    justify-content: center;
}


@media screen and (max-width:800px) {
    .works_nav {
        flex-direction: column;
        gap: 10px;
    }

    .works_nav ul {
        gap: 10px;
    }

    .works_nav ul br {
        display: block;
    }

    .works_navList {
        padding: 5px 30px 2px;
        line-height: normal;
        width: 150px;
    }

}


.about_contentInner {
    margin: 100px auto 120px;
    max-width: 800px;
}

.about_text {
    margin: 0 auto;
    width: 100%;
}

.about_innercontentWrap {
    flex-wrap: wrap;
    gap: 58px;
    margin-top: 60px;
}

.myFace_image {
    width: 227px;
    height: 227px;
}


.about_innerCircle {
    background: linear-gradient(45deg, #96C5CB, #a9d0ea);
    width: 228px;
    height: 228px;
    border-radius: 50%;
    color: #FFF;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

.about_innerCircle span {
    background-image: url(/image/common/gaibuopen_iconWhite.svg);
    width: 15px;
    height: 15px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    fill: #FFF;
    margin-left: 10px;
    transition: .3s ease-in;
}

.about_innerCircle:hover span {
    transform: translateX(10px);
}

.about_innerCircle:nth-of-type(2) {
    position: relative;
}

.about_innerCircle:nth-of-type(2)::after {
    content: "";
    background-image: url(/image/about/buncho04.png);
    display: inline-block;
    width: 107px;
    height: 72px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 0;
}

.buncho05 {
    position: relative;
}

.buncho05::after {
    content: "";
    background-image: url(/image/about/buncho05.png);
    display: inline-block;
    width: 85px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -25px;
    left: -10px;
}


@media screen and (max-width:900px) {
    .about_innercontentWrap {
        justify-content: center;
    }

}


/* **********************************
デザイン＝つながる
********************************** */

.about_contentTitle {
    font-size: clamp(1.25rem, 1.179rem + 0.36vw, 1.5rem);
    font-weight: bold;
    color: #4e4e4e;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.about_contentTitle span {
    display: inline-block;
    background: linear-gradient(to right, #96C5CB, #a9d0ea);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 16px;
    vertical-align: middle;
}

.tunagaru_inner {
    margin: 60px auto;
}

.tunagaru_introText {
    text-align: center;
}

.tunagaru_innerSection {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.tunagaru_innerSection:nth-of-type(2) {
    text-align: end;
}


.tunagaru_headline {
    font-weight: bold;
    font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
    color: #4e4e4e;
    margin-bottom: 24px;
}


.tunagaru_image {
    box-shadow: 2px 2px 10px 0px rgba(78, 78, 78, 0.2);

}

@media screen and (max-width:900px) {
    .tunagaru_introText {
        text-align: start;
    }
}

@media screen and (max-width:700px) {

    .tunagaru_inner {
        width: 90%;
        margin: 0 auto;
    }

    .tunagaru_innerSection {

        flex-direction: column;
    }

    .tunagaru_innerSection:nth-of-type(2) {
        flex-direction: column-reverse;
        text-align: start;
    }

    .tunagaru_image {
        width: 100%;
    }
}

/* **********************************
すきなモノ・コト
 ********************************** */

.favorite_card {
    width: 300px;
}

.favorite_title {
    font-size: 20px;
    font-weight: bold;
    color: #4e4e4e;
    text-align: center;
    padding: 16px 0;
}

.favorite_cardWrap {
    flex-wrap: wrap;
    justify-content: space-between;
}

.favorite_card {
    margin-bottom: 58px;
}

@media screen and (max-width:1050px) {
    .favorite_cardWrap {
        justify-content: center;
        gap: 60px;
    }

    .favorite_card {
        margin-bottom: 0;
    }
}

@media screen and (max-width:500px) {
    .favorite_title {
        font-size: clamp(1rem, 0.556rem + 2.22vw, 1.25rem);
    }

}

/* **********************************
My story
 ********************************** */

.story_cardWrap {
    border-left: #96C5CB solid 5px;
}

.story_card {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    margin-bottom: 60px;
}

.story_title {
    font-size: 20px;
    font-weight: bold;
    color: #4e4e4e;
    border-bottom: solid 3px #96C5CB;
    align-self: center;
    padding-bottom: 10px;
    position: relative;
    margin-left: 48px;
}

.story_title::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #96C5CB;
    transform: rotate(30deg);
    position: absolute;
    right: 0;
    bottom: 6px;

}

.story_text {
    background-color: #EEF5F5;
    padding: 45px 60px;
}

@media screen and (max-width:1150px) {
    .story_card {
        grid-template-columns: 1fr;
        gap: 48px;
        margin-bottom: 60px;
    }

    .story_text {
        margin-left: 48px;
    }
}

@media screen and (max-width:500px) {
    .story_title {
        margin-left: 20px;
        font-size: clamp(1rem, 0.556rem + 2.22vw, 1.25rem);
    }

    .story_text {
        padding: 45px 30px;
        margin-left: 20px;
    }

    .story_card {
        gap: 32px;
    }
}


/* **********************************
使用ツール/言語
 ********************************** */
.tool_cardContainer {
    display: flex;
    gap: 60px;
    margin-bottom: 120px;
}

.tool_cardWrap {
    display: grid;
    grid-template-rows: 40px 120px 120px 120px;
    gap: 60px;
    width: 50%;
}


.tool_title {
    font-size: 20px;
    font-weight: bold;
    color: #4e4e4e;
    text-align: center;
}

.tool_card {
    gap: 32px;
}


.tool_cardIcon {
    border-radius: 5px;
    width: 83px;
    height: 83px;
}

.tool_other {
    text-align: center;
    text-transform: capitalize;
}

@media screen and (max-width:900px) {
    .tool_cardContainer {
        flex-direction: column;
    }

    .tool_cardWrap {
        grid-template-rows: auto auto auto auto;
        gap: 48px;
        width: 60%;
        margin: 0 auto;
    }

    .tool_card {
        flex-direction: column;
    }

    .tool_cardIcon {
        margin: 0 auto;
    }

    .tool_other {
        text-align: start;
    }
}

@media screen and (max-width:600px) {
    .tool_cardWrap {
        width: 90%;
    }

    .tool_other {
        text-align: start;
        width: 90%;
        margin: 0 auto;
    }
}