@charset "UTF-8";



/* ================================
main
===================================*/

/* article header */

.article_visual {
    position: relative;
}

.mainVisual {
    max-width: 100%;
    height: auto;
    z-index: 0;
}

.main__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.main_title {
    text-align: center;
    color: var(--maincolorBlue);
    width: 90%;
    padding-bottom: 8%;
}

.main_titleSub
{
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.main_titleTxt {
    color: var(--maincolorTxt, #222);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.7px;
    margin: 16px auto 0; 
    background-color: rgba(245, 245, 245, 0.5);
    background-size: contain;
    max-width: 90%;
}

.main_titleTxt span {
    display: block;
}

.main_titleSub span
{
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.ctr__btn {
    max-width: 230px;
    width: 80%;
    height: auto;
    margin: 24px auto 0;
    padding: 11px 56px;
    border-radius: 10px;
    background: #FFAA32;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ctr_txt{
    color: #FFF;
    text-align: center;
    font-family: "Inter",sans-serif;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.8px;
}

.ctr__btn:hover {
    background: #F7DB6C;
    box-shadow: 0px 4px 8px 0px rgba(245, 245, 245, 0.50);
}

/* article header PC */
@media screen and (min-width: 769px) {

    .main_titleTxt {
        width: 50%;
        height: auto;
        margin: 4% auto 0; /* center on larger screens */
    }

    .ctr__btn {
        margin: auto 0;
    }

    .ctr_list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap:32px;
    }

    .ctr_txt{
        color: #FFF;
        text-align: center;
        font-family: "Chalkboard SE" ,sans-serif;
        font-size: 2.2rem;
        letter-spacing: 1.1px;
    }
}

.section {
    max-width: 100%;
    height:auto;
    margin: 8% 0 16% 0;
}

/* about */

.section_title {
    text-align: left;
    margin: 8% 0 16% 0;
}

.about_wrap {
    max-width:90%;
    text-align: center;
    margin: 0 auto;

}

.about_name {
    color:var(--maincolorBlack, #1C2B39);
    font-family: 'Montserrat' ,sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1;
    margin-top: 10%;
}

.about_nameSub {
    color: var(--maincolorBlack, #1C2B39);
    font-family: 'Montserrat' ,sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.about_nameDetail {
    color: var(--maincolorBlack, #1C2B39);
    font-family: 'Montserrat' , sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.7px;
    margin: 2% 0 5% 0;
}

.about_profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}


.about_img {
    width: 72%;
    height: auto;
    border-radius: 10px;
}

.about_txt {
    background-repeat: no-repeat;
    width: 90%;
    height: auto;
    color: var(--maincolorTxt, #222);
    letter-spacing: 0.8px;
    text-align: left;
    padding: 32px  5%;
    margin: 0 auto;
    font-size: 1.4rem;
}

/* about PC */
@media screen and (min-width: 769px) {
    .about_wrap {
        width: 100%;
        height: auto;
        margin: 64px auto;
        text-align: center;
    }
    
    .about_name,
    .about_nameSub {
        font-size: 2.2rem;
    }

    .about_nameDetail {
        margin: 2% 0 2% 0;
    }

    .about_profile {
        flex-direction: row;
    }

    .about_img {
        width: 50%;
        height: auto;
    }

    .about_txt {
        text-align: left;
        font-size: 1.6rem;
    }

}

/* skills */

.skills_wrap {
    text-align: center;
}

.skills_item {
    width:80%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 8% 32px;
    padding: 16px 6% 32px 6%;
    align-items: center;
    border-radius: 10px;
    border: 4px solid #1C2B39;
    background: #FFF;
    align-items: stretch;
}


.skills_name {
    color: var(--maincolorBlack, #1C2B39);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700; 
    letter-spacing: 0.9px;
}

.skills_img {
    width: 80%;
    height: auto;
    padding: 56px 4% 0 4%;
    aspect-ratio: 15/13;
}

.skills_txt {
    color: var(--maincolorBlue);
    font-size: 1.8rem;
    font-weight:bold;
    padding-bottom: 4%;
}

.skills_txtSub {
    text-align: left;
    padding-top: 56px;
    font-size: 1.4rem
}

.skills_time {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.skills_timeTtl {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 177px;
}

.skills_timeTxt {
    font-size: 1.6rem;
}

/* skills PC */
@media screen and (min-width: 769px) {
    .skills_wrap {
        padding: 5%;        
    }

    .skills_list {
        display: grid;
        grid-template-columns: repeat(4, 2fr);
        gap: 24px;
    }

    .skills_item {
        width:80%;
        min-height: 400px;
        display: grid;
        grid-template-columns: 1fr;
        margin: 0 8% 16px;
        padding: 16px 6% 16px 6%;
        align-items: center;
    }

    .skills_timeTtl {
        margin-top: 20px;
    }
}

/* work */

.work_list {
    max-width: 100%;
    height: auto;
    margin: 16% auto 6%;
}

.work__txtWrap {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
}


.work_itemFirst,    
.work_itemSecond img {
    width: 50%;
    height: auto;
}

.work_itemFirst {
    margin: 0 auto;
}




.work_ttlSub {
    color: var(--maincolorBlue, #00A8CC);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.7px;
    margin: 32px 0;
    text-align: center;
}

.work_ttl {
    color: var(--maincolorBlue);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 24px 0;
    order: -1;
}

.work_ttl span {
    display: block;
}


.work__skill {
    margin-bottom: 16px;
}

.work__skill span {
    display:block;
}

.work__url {
    text-decoration: underline;
    margin-bottom: 16px;
}

.work_txt {
    width: 90%;
    max-width: 264px;
    height: auto;
    color: var(--maincolorTxt, #222);
    text-align: left;
    margin: 8px auto 0;
}

.work_btn {
    width: 90%;
    max-width: 264px;
    height: auto;
    display:flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    color: var(--maincolorBlue);
    position: relative;
}

.work_btn::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-image: url(..//images/viewmore.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 32px;
    top: 52%;
    transform: translateY(-35%);
}


.work_more {
    color: var(--maincolorBlue, #00A8CC);
    text-align: center;
    font-size: 1.8rem;
    margin-top: 96px;
    position: relative;
}

.work_more::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 16px;
    margin-right: 5%;
    background-image: url(..//images/viewmore.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 30%;
    top: 50%;
    transform: translateY(-35%);
}

.work_more::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 16px;
    margin-right: 5%;
    background-image: url(..//images/viewmore.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 28%;
    top: 50%;
    transform: translateY(-35%);
}


/* work PC */

@media screen and (min-width: 769px) {
    .work_list{
        max-width: 1200px;
        margin: 0 auto;
    }

    .work_itemFirst,    
    .work_itemSecond { 
        width: 100%;
        height: auto;   
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin: 0 auto;
        justify-content: center;
    }

    .work_itemSecond picture{
        order: 2;
   } 

    .work__txtWrap {
        width: 412px;
        text-align: left;
        margin: 0 auto;
    }


    .work_ttl {
        font-size: 2.2rem;
        text-align: left;
    }


    .work_ttl span {
        display: inline-block;
    } 

    .work_txt {
        font-size: 1.8rem;
        width: 412px;
        height: auto;
    }

    .work_btn {
        width: 350px;
        height: auto;
        justify-content: right;
    }

    .work_btn::before {
        right: -16px;
    }


    .work_more::before {
        right: 41%;
    }

    .work_more::after {
        right: 40%;
    }
}

/* contact */
.section_titleContact {
    color: var(--maincolorBlack,#1C2B39);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 180%;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    margin-top: 80px;
    padding: 0 8%;
    position: relative;
}

.section_titleContact::before,
.section_titleContact::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24%;
    height: 1px;
    background-color: var(--maincolorBlack, #1C2B39);
    box-shadow:  0px 2px 2px 0px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%);
}

.section_titleContact::before {
    left: 0;
}

.section_titleContact::after {
    right: 0;
}

.contact_btn {
    margin: 0 auto;
    width: 72%;
    height: auto;
    border-radius: 10px;
    background: var(--maincolorBlue);
    padding: 11px 8px;
    margin-top: 80px;
    position: relative;
    transition: 0.4s;
}

.contact_btnTxt {
    display: block;
    text-align: center;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding-right: 12px;
}

.contact_btn::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(..//images/contact_right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
}


.contact_btn:hover{
    cursor: pointer;
    background: rgba(0, 168, 204, 0.50);
    box-shadow: 0px 4px 8px 0px rgba(245, 245, 245, 0.50);
}

.contact_txt {
    color: var(--maincolorTxt, #222);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.9px;      
    margin-top: 80px;
    padding: 0 14% 12px 14%; 
}

.contact_txt span {
    display: inline-block;
}

@media screen and (min-width: 769px) {
    .contact_btn {
        width: 320px;
        height: auto;
    }

    .contact_btn::after {
        right: 56px;
    }

    .contact_txt {
        font-size: 1.8rem;
        padding: 0 10% 12px 10%; 
    }

}

/* fadeIn */
.fadeIn {
    transform: translate(0 ,50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0 , 0);
    opacity: 1;
}