@charset "UTF-8";


body {
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: .06em;
}

.Lato {
    font-family: "Lato", sans-serif;
}

img {
    max-width: 100%;
}

.top_page_header {
    height: 893px;
    background: url(../images/top_cover_photo.jpg) no-repeat center/cover;
}


header img {
    width: 60px;
    height: 60px;
    margin: 15px;
}

.header_Nav {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}


header nav ul {
    display: flex;
    height: 91px;
    align-items: center;
    flex-shrink: 0;

}

header nav ul li {
    padding: 15px 30px 20px 30px;
}

header nav ul li a:hover {
    text-decoration: underline;
}

header h3 {
    font-size: 40px;
    color: #ffffff;
}

header h1 {
    font-size: 96px;
    color: #ffffff;
}

.myname_box {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 450px;
    padding-right: 50px;
}

/* じわっと出現 */
.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}

.blurTrigger {
    opacity: 0;
}



/* じわっと出現 */
.MsgArea {
    margin-bottom: 200px;
}


.MsgArea h3 {
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.916%;
    /* 46.373px */
    letter-spacing: 2.56px;
    margin-bottom: 37px;
}

.MsgArea_message {
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.4;
    letter-spacing: 1.6px;
}

.MsgArea_box {
    /* padding: 200px 100px; */
    margin: 200px 170px 100px;
    text-align: left;
}

.view_more_button {
    /* width: 262px;
    height: 74px; */
    border-radius: 50px;
    background: #C2B3B2;
    color: #ffffff;
    font-family: Lato;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.72px;
    margin-right: 100px;
    padding: 23px 65px;
    width: 280px;
}

/*== 影がついて浮き上がる */

/*ボタンの形状*/
.float1 {
    /* border: 1px solid #ccc; */
    color: #ffffff;
    padding: 23px 65px;
    display: inline-block;
    text-decoration: none;
    outline: none;
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverをしたらボックスに影がつく*/
.float1:hover {
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

.button_space {
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
}

.heading {
    color: #636161;
    font-family: Lato;
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.92px;

}

#profileArea {
    background-color: #FDF8F4;
    padding-bottom: 100px;
    padding-top: 91px;
    margin-top: -91px;
}

.profile_photo img {
    width: 468px;
    flex-shrink: 0;
    padding-top: 80px;
}

.profileArea {
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.profile_box1 h4 {
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.56px;
}

.profile_box1 span {
    color: #636161;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.6px;
    padding-left: 21px;
}

.profile_box1 p {
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.0;
    letter-spacing: 1.28px;
    padding-top: 30px;
}

.profile_box1 {
    padding-left: 50px;
    width: 560px;
}

.profileArea_h2_img_p {
    padding: 100px 100px 0px;
    position: relative;
}

.profileArea_h2_img_p::after {
    position: absolute;
    background-image: url(../images/illust_top.png);
    content: "";
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-size: 80%;
    top: 30px;
    right: 50px;
}

.works_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}


.works_list li {
    flex-basis: 42%;
    margin-bottom: 100px;
}

#worksArea {
    padding: 100px 50px;
    position: relative;
    margin-top: -91px;
    padding-top: 91px;

}



/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box {
    opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fadeUp_1 {
    animation-name: fadeUpAnime;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}







#worksArea h2 {
    margin-bottom: 100px;
    margin-left: 50px;
    margin-top: 100px;
}

.works_list .category_button {
    border-radius: 30px;
    background: #C2B3B2;
    color: #ffffff;
    font-family: Lato;
    font-size: 13px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    width: 160px;
    text-align: center;
    padding: 5px 17px;
    margin: 20px 0;
}

.works_list_title {
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.works_list_title_en {
    color: #636161;
    font-family: Lato;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.works_list_title_en_1 {
    letter-spacing: .01em;
    color: #636161;
    font-family: Lato;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.works_list_title_1 {

    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*　画像の拡大　*/

.zoomIn img {
    transform: scale(1);
    transition: .3s ease-in-out;
    /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn a:hover img {
    /*hoverした時の変化*/
    transform: scale(1.1);
    /*拡大の値を変更したい場合はこの数値を変更*/
}

/*　画像のマスク　*/

.mask {
    display: block;
    line-height: 0;
    /*行の高さを0にする*/
    overflow: hidden;
    /*拡大してはみ出る要素を隠す*/
}


footer {
    height: 345px;
    background: url(../images/footer.jpg) no-repeat center/cover;
}

footer img {
    width: 60px;
    height: 60px;
    margin: 15px;
}

footer h4 {
    color: #ffffff;
    font-family: Lato;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.96px;
}

footer nav ul li {
    color: #ffffff;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.48px;
}

small {
    color: #ffffff;
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.42px;
    width: 175px;
    margin: 0 auto;
    display: block;
}

.footer_items {
    display: flex;
    flex-direction: row;
    align-content: stretch;
    justify-content: space-evenly;
    align-items: center;
    padding: 30px;
}

footer nav ul {
    display: flex;
    height: 91px;
    align-items: center;
    flex-shrink: 0;
    justify-content: space-evenly;
}

footer nav ul li {
    font-weight: 500;
    padding: 0 10px;
}

footer h4 {
    flex-basis: 70%;
    padding-left: 30px;
}

footer nav {
    flex-basis: 30%;
}

small {
    margin-top: 150px;
}

/* about.html */
.subPage_header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 91px;
    background: url(../images/header_bg.jpg) no-repeat center/cover;
}

.subPage header nav ul {
    color: #ffffff;
}

.about_me {
    background-color: #FDF8F4;
    padding: 100px 100px;
    padding-top: 50px;
    padding-bottom: 150px;
}

.about_me h2 {
    color: #636161;
    font-family: Lato;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.92px;
    padding-top: 100px;
}

.about_me img {
    width: 746px;
    height: 450px;
    flex-shrink: 0;
    flex-basis: 60%;
    object-fit: contain;
}

.about_me_box {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 80px;
}

.about_heading {
    color: #636161;
    font-family: "Lato", "Noto Sans JP";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3.84px;
}

.allow_scale {
    width: 63px;
    height: 63px;
    flex-shrink: 0;
}

.about_me_name {
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.56px;
    padding-bottom: 20px;
}

.about_me_name span {
    color: #636161;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.6px;
}

.about_me_box_message p {
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1.6px;
    padding-bottom: 15px;
}

.skills {
    padding: 100px 100px;
    padding-top: 50px;
    padding-bottom: 150px;
}

.skill_illust img {
    width: 300px;
    margin-top: 50px;
    display: block;
    margin: 0 auto;
}

.skill_illust {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 160px;
}

.skill_coding img {
    width: 360px;
    display: block;
    margin: 0 auto;
}

.design_phra {
    width: 80%;
    margin: 0 auto;
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.28px;

}

.skill_design p {
    margin-top: 40px;
}

.skill_design {
    flex-basis: 50%;
}

.skill_coding {
    flex-basis: 50%;
}

.skill_coding p {
    margin-bottom: 20px;
}

.career {
    padding: 100px 100px;
    padding-top: 50px;
    padding-bottom: 150px;
}

.career h3 {
    padding-bottom: 150px;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px 0;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-date {
    flex: 0 0 80px;
    text-align: right;
    color: #636161;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.6px;
}

.timeline-content {
    background-color: #fff;
    padding: 10px 120px;
    border-radius: 5px;
    flex-grow: 1;
    position: relative;
    color: #636161;
    font-weight: 400;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 140px;
    /* タイムラインの線の位置 */
    top: -40px;
    bottom: -40px;
    /* タイムラインの線の長さ */
    width: 1px;
    background-color: #999;
    z-index: 100;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 136px;
    /* 丸の位置 */
    top: 13px;
    width: 10px;
    height: 10px;
    background-color: #999;
    border-radius: 50%;
}

.about_heading {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}

.grid_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    max-width: 1250px;
    margin: 50px auto;
    padding: 0 10px;
}

.grid_item {
    position: relative;
    overflow: hidden;

}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid_item:hover .overlay {
    opacity: 1;
}

.overlay p {
    margin: 0 20px;
    text-align: left;
    font-family: "Noto Sans JP";
    line-height: normal;
    letter-spacing: 1.6px;
    font-weight: 300;
}

.photos_sec {
    background: #FDF8F4;
    padding: 150px 100px;
}

.photos_sec h3 {
    letter-spacing: 1.44px;
}

/* work01ページ */

.category_button {
    border-radius: 30px;
    background: #C2B3B2;
    color: #ffffff;
    font-family: Lato;
    font-size: 13px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    width: 160px;
    text-align: center;
    padding: 7px 17px;
    margin: 20px 0;
}

.category_button_lips {
    border-radius: 30px;
    border: #C2B3B2 solid 2px;
    background: #ffffff;
    color: #C2B3B2;
    font-family: Lato;
    font-size: 13px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1.6px;
    width: 160px;
    text-align: center;
    padding: 5px 17px;
    margin: 20px 0;
    margin-left: 20px;
}

.button {
    display: flex;
}

.work_title {
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.56px;
    text-align: center;
}

.top_view_space {
    background: url(../images/work01_top_view.jpg)no-repeat center center/cover;
    height: 484px;
    width: 771px;
}

.top_view {
    margin: 200px auto;
    width: 771px;
    height: 484px;
}

.overview {
    margin: 100px auto;
    width: 750px;
    color: #636161;
    font-family: "Noto Sans JP", "Lato";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1.92px;
    padding-top: 50px;
}

.small_allow_scale {
    width: 4%;
}

.overview_heading {
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.92px;
    padding-bottom: 20px;
}

.overview_box {
    width: 800px;
    margin: 100px auto;
}

.overview_box p {
    padding-left: 10px;
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.0;
    letter-spacing: 1.28px;
}

.overview_box .design_explain {
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.0;
    letter-spacing: 1.6px;
    padding-left: 10px;
    padding-bottom: 30px;
}

.design_box {
    display: flex;
    width: 750px;
    margin: 150px auto;
}

.design_box img {
    width: 80%;
}

.all_works_button {
    border-radius: 50px;
    background: #C2B3B2;
    color: #ffffff;
    font-family: Lato;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.72px;
    margin-right: 100px;
    padding: 23px 100px;
    width: 345px;
    margin: 0 auto;
}

.list_button {
    margin-bottom: 150px;
    text-align: center;
}

/* work02ページ */
.top_view_space02 {
    background: url(../images/work02_top_view.jpg)no-repeat center center/cover;
    height: 484px;
    width: 771px;
}

/* work03ページ */
.top_view_space03 {
    background: url(../images/work03_top_view.jpg)no-repeat center center/cover;
    height: 484px;
    width: 771px;
}

.work_title03 {
    color: rgba(99, 97, 97, 0.82);
    font-family: Lato;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.96px;
}

/* work04ページ */
.top_view_space04 {
    background: url(../images/work04_top_view.jpg)no-repeat center center/cover;
    height: 484px;
    width: 771px;
}

.design_box_work04 {
    display: flex;
    width: 30%;
    margin: 150px auto;
    justify-content: center;
}

/* work05ページ */
.top_view_space05 {
    background: url(../images/work05_top_view.jpg)no-repeat center center/cover;
    height: 484px;
    width: 771px;
}

.category_button_box_work05 {
    width: 580px;
    margin: 0 auto;
}

.overview_05 {
    margin: 100px auto;
    width: 650px;
    color: #636161;
    font-family: "Noto Sans JP", "Lato";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1.92px;
    padding-top: 50px;
}

.overview_box_05 {
    width: 700px;
    margin: 100px auto;
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.28px;
}

.design_explain_05 {
    padding-bottom: 30px;
    color: #636161;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.28px;
    padding-left: 10px;
}

.list_button_05 {
    margin-bottom: 150px;
    margin-top: 200px;
}

.overview_box_05 p {
    line-height: 1.9;
}

.overview_box_05 p {
    padding-left: 10px;
    font-weight: 400;
}

/* work06ページ */
.top_view_space06 {
    background: url(../images/work06_top_view.jpg)no-repeat center center/cover;
    height: 484px;
    width: 771px;
}

.category_button_box_work06 {
    width: 440px;
    margin: 0 auto;
}

/* work07ページ */
.top_view_space07 {
    background: url(../images/work07_top_view.jpg)no-repeat center center/cover;
    height: 484px;
    width: 771px;
}

.category_button_box_work07 {
    width: 560px;
    margin: 0 auto;
}

/* work08ページ */
.top_view_space08 {
    background: url(../images/work08_top_view.jpg)no-repeat center center/cover;
    height: 484px;
    width: 771px;
}

footer h4 .only_sp {
    display: none;
}

@media screen and (max-width: 920px) {

    /*  sp用 */


    /* ハンバーガーメニュー */

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 9999;
        /*ナビのスタート位置と形状*/
        top: -120%;
        left: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: #C2B3B2;
        /*動き*/
        transition: all 0.6s;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        top: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #333;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: normal;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #666;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }


    /* ハンバーガーメニュー */

    /* index.html */

    .header_Nav {
        display: block;
    }

    .myname_box {
        display: block;
    }

    header nav ul {
        display: block;
        width: 100%;
    }

    footer nav ul {
        display: block;
    }

    .button_space {
        display: block;
    }

    .profileArea {
        display: block;
    }

    .works_list {
        display: block;
    }

    .footer_items {
        display: block;
    }

    .profile_box1 {
        width: 100%;
    }

    .header_Nav {
        display: block;
        width: 100%;
        position: fixed;
    }

    header nav ul {
        display: block;
        width: 100%;
    }

    header h1 {
        font-size: 60px;
    }

    header img {
        width: 30px;
        height: auto;
    }

    .profileArea_h2_img_p::after {
        width: 10%;
    }

    body {
        font-size: 13px;
    }

    .top_page_header {
        height: 120vh;
        background: url(../images/top_cover_photo.jpg)no-repeat center top/cover;
    }

    .myname_box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-top: 230px;
        padding-right: 10px;
    }

    header h3 {
        font-size: 22px;
    }

    header h1 {
        font-size: 36px;
    }

    .MsgArea h3 {
        font-size: 20px;
        font-weight: 500;
    }

    .MsgArea_box {
        margin: 90px 35px 30px;
    }

    .MsgArea_message {
        font-size: 13px;
    }

    .view_more_button {
        width: 100px;
        height: 30px;
        font-size: 12px;
        padding: 7px 12px;
        margin-right: 30px;
    }

    small {
        margin: 0 auto;
        font-size: 12px;
        text-align: center;
    }

    .button_space {
        display: flex;
        justify-content: flex-end;
        margin-top: 0px;
    }

    .heading {
        font-size: 32px;
        font-weight: 500;
    }

    #profileArea {
        padding-top: 0px;
        padding-bottom: 80px;
    }

    .profileArea_h2_img_p {
        padding: 50px 30px;
        position: relative;
        padding-bottom: 20px;
    }

    .MsgArea {
        margin-bottom: 150px;
    }

    .profile_photo img {
        padding-top: 0px;
    }

    .profileArea {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        /* align-content: stretch; */
        flex-direction: column;
    }

    .profile_box1 {
        padding-left: 0px;
    }

    .profileArea_h2_img_p::after {
        width: 15%;
        top: 460px;
    }

    .profile_box1 h4 {
        font-size: 20px;
    }

    .profile_box1 span {
        font-size: 12px;
        padding-left: 10px;
    }

    .profile_box1 p {
        font-size: 13px;
    }

    .onlyPC {
        display: none;
    }

    #worksArea h2 {
        margin-left: 0px;
        margin-bottom: 30px;
        margin-top: 80px;
    }

    #worksArea {
        padding-left: 35px;
        padding-right: 35px;
        padding-bottom: 30px;
    }

    .works_list_title {
        font-size: 15px;
        /* padding-left: 10px; */
    }

    .works_list_title_1 {
        padding-left: 10px;
        font-size: 15px;

    }



    .works_list_title_en_1 {
        font-size: 16px;
    }

    .works_list_title_en {
        font-size: 17px;
        padding-left: 15px;
    }

    .work05_08 {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
    }

    .works_list li {
        margin-bottom: 60px;
    }

    footer img {
        margin: 0;
        height: auto;
        margin-bottom: 100px;
        width: 40px;

    }

    footer h4 {
        font-size: 24px;
        width: 100px;
        padding-left: 0px;
    }

    .Lato_footer {
        font-family: "Lato", sans-serif;
        float: right;
        margin-top: -85px;
    }

    .Lato_footer_name br {
        display: block;
        font-family: "Lato", sans-serif;
    }

    .Lato_footer li {
        padding-bottom: 10px;
    }

    .Lato_footer li {
        font-weight: 400;
    }

    footer {
        height: 340px;
    }

    .footer_items {
        padding: 20px 20px 60px;

    }

    /* index.html　ここまで */



    /* about.html  */

    .about_me {
        padding: 0px;
    }

    .skills {
        padding: 0px;
    }

    .photos_sec {
        padding: 0;
        padding-top: 50px;
    }

    .photos_sec h3 {
        color: #636161;
        font-family: Lato;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.6px;
    }

    .grid_container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: 375px;
        margin: 30px auto 0;
        padding: 0 20px 50px;
        padding-bottom: 100px;
    }

    .career {
        padding: 0px;
    }

    .timeline-content {
        padding: 10px 10px;
        margin-left: 60px;
        font-weight: 400;
    }

    .timeline-item::before {
        left: 110px;
    }

    .timeline-item::after {
        left: 106px;
    }

    .timeline-date {
        color: #636161;
        font-family: Lato;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.42px;
    }

    .timeline-item {
        margin-bottom: 30px;
    }

    .subPage_header {
        height: 60px;
    }

    .about_me_box {
        display: flex;
        flex-direction: column;
        margin-bottom: 80px;
        align-content: center;
        justify-content: space-between;
        align-items: center;
        padding: 30px;
        margin-bottom: 0;
    }

    .skill_illust {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-top: 160px;
        flex-direction: column;
        margin: 90px 30px;
    }

    .about_me h2 {
        color: #636161;
        font-family: Lato;
        font-size: 32px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.96px;
        padding-left: 10%;
    }

    .about_me_name {
        color: #636161;
        font-family: "Noto Sans JP";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.6px;
        padding: 5px 30px;
    }

    .about_me_name span {
        color: #636161;
        font-family: Lato;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.39px;
    }

    .about_me_box_message p {
        color: #636161;
        font-family: "Noto Sans JP";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 144.887%;
        /* 18.835px */
        letter-spacing: 1.04px;
    }

    .about_me_box_message {
        padding: 10px 30px 70px;
    }

    .allow_scale {
        width: 35px;
        height: auto;
    }

    .about_heading {
        color: #636161;
        font-family: "Noto Sans JP";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.92px;
        /* padding: 20px 20px 20px;
        padding-top: 50px; */
        padding-bottom: 0;
        padding-left: 20px;
    }

    .career h3 {
        padding-bottom: 80px;
    }

    .timeline {
        padding: 10px 30px 80px;
    }

    .allow {
        display: flex;
        padding-top: 30px;
    }

    .skill_illust img {
        width: 50%;
    }

    .skill_coding img {
        width: 60%;
    }

    .skill_design p {
        color: #636161;
        font-family: "Noto Sans JP";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.04px;
        margin-top: 20px;
    }

    .skill_coding p {
        color: #636161;
        font-family: "Noto Sans JP";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.04px;
    }

    .skill_design {
        padding-bottom: 80px;
    }


    /* about.html ここまで*/


    /* work01.html */

    .top_view_space,
    .top_view_space02,
    .top_view_space03,
    .top_view_space04,
    .top_view_space05,
    .top_view_space06,
    .top_view_space07,
    .top_view_space08 {
        width: 100%;
    }

    .top_view_space {
        background: url(../images/work01_top_view.jpg) no-repeat center center / contain;
        height: 484px;
    }

    .overview,
    .overview_05 {
        width: 100%;
    }

    .design_box {
        display: block;
        width: 100%;
        margin-top: 20px;
        text-align: center;
        margin-bottom: 80px;
    }

    .list_button {
        margin-bottom: 90px;
    }

    .sp_design {
        display: none;
    }

    /* .top_view {
        width: 100%;
        margin: 100px auto 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        align-content: stretch;
        justify-content: space-evenly;
        
        padding: 0px 30px;

        
    } */

    .top_view {
        width: 100%;
        margin: 100px auto 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: stretch;
        justify-content: flex-start;
        /* margin: 30% auto 0; */
        padding: 0px 30px;
        height: 300px;
    }

    .overview_05 {
        margin: 0;
    }

    .overview_box,
    .overview_box_05 {
        width: 100%;
        margin: 0;
    }

    .overview,
    .overview_05 {
        margin: 0px auto;
        padding: 30px;
        font-size: 13px;
        margin-bottom: 50px;
    }

    .work_title {
        color: #636161;
        font-family: "Noto Sans JP";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.28px;
    }

    .all_works_button {
        width: 130px;
        height: 45px;
        padding: 14px 20px;
        font-size: 14px;
    }

    /* work01.html ここまで*/


    /* work03 */
    .work_title03 {
        font-size: 20px;
    }

    /* work03 ここまで*/
    .design_box_work04 {
        width: 60%;
        margin: 40px auto 80px;
    }

    /* work05.html */
    .top_view_space05 {
        /* height: 200px; */
        background: url(../images/work05_top_view.jpg) no-repeat center center /contain;
        height: 484px;
    }

    .category_button_box_work05 {
        width: 100%;
    }

    /* work05.html ここまで*/


    /* work06.html */
    .top_view_space06 {
        background: url(../images/work06_top_view.jpg) no-repeat center center / contain;
        height: 484px;
    }

    .category_button_box_work06 {
        width: 100%;
    }

    /* work06.html ここまで*/


    /* work07.html */
    .top_view_space07 {
        background: url(../images/work07_top_view.jpg) no-repeat center center / contain;
        height: 484px;
    }

    .category_button_box_work07 {
        width: 100%;
    }

    .overview_heading {
        font-size: 16px;
        padding: 0 25px;
        font-weight: 400;
    }

    .overview_box p,
    .overview_box_05 p,
    .design_explain_05 {
        font-size: 13px;
        padding: 20px 30px 80px;
    }

    .design_explain_05 {
        padding-bottom: 50px;
    }

    .design_box img {
        width: 60%;
    }

    .overview_box .design_explain {
        font-size: 14px;
        padding: 20px 29px 30px;
    }

    .small_allow_scale {
        width: 19px;
    }

    /* work07.html ここまで*/
}

/* 各デバイス幅 index.html */

@media screen and (max-width: 769px) {
    .button {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 710px) {
    .footer_items {
        padding: 30px 10px 20px;
    }

    .top_view_space {
        background: url(../images/work01_top_view.jpg) no-repeat center center / cover;
        height: 484px;
    }
}

@media screen and (max-width: 500px) {
    .profileArea_h2_img_p::after {
        width: 15%;
        top: 480px;
    }
}

@media screen and (max-width: 480px) {
    .profileArea_h2_img_p::after {
        width: 15%;
        top: 450px;
    }

    .photos_sec h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 450px) {
    .profileArea_h2_img_p::after {
        width: 15%;
        top: 400px;
    }

    .work_title03 {
        font-size: 15px;
        letter-spacing: normal;
    }

    .footer_items {
        padding: 30px 10px 40px;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 390px) {
    .profileArea_h2_img_p::after {
        width: 15%;
        top: 370px;
    }

    .footer_items {
        padding: 30px 10px 45px;
    }
    /* .button_space {
        padding-top: 30px;
    } */

}

@media screen and (max-width: 380px) {
    .top_view_space05 {
        height: 200px;
    }

    .category_button {
        flex-basis: 50%;
        width: 140px;
        font-size: 12px;
    }

    .category_button_lips {
        font-size: 12px;
        width: 150px;
    }
}