body {
    font-family: "Noto Sans JP", sans-serif;
}

.no-scroll {
    overflow: hidden;
}

html {
    font-size: 62.5%;
}

* {
    font-size: 1.6rem;
    color: #595959;
    line-height: 2;
}

#works {
    scroll-margin-top: 70px;
    /* ハンバーガーメニューの高さに合わせる */
}

/* 全体終わり */




/* ヘッダー */
.header {
    position: sticky;
    top: 0;
    z-index: 20;
}

.header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    /* 背景をぼかす */
    clip-path: inset(0 0 0 0);
    /* 背景をヘッダーの全範囲に合わせる */
    z-index: -1;
    /* ヘッダーの下に配置 */
    pointer-events: none;
    /* クリックイベントを防ぐ */
}

.header__wrapper {
    padding: 24px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.header__logo {
    width: 15%;
    display: block;
}

.header__nav__menu {
    display: flex;
    flex-direction: row;

}

.header__sp--nav {
    display: none;
}

.header__sp--nav__menu {
    display: block;
}


.header__nav__hamburger--menu {
    display: flex;
    flex-direction: row;
}

.hamburger--menu {
    position: fixed;
    z-index: 9999;
    top: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    right: 24px;
    /* background-color: chartreuse; */
    display: none;
}

.hamburger--menu span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    height: 1px;
    border-radius: 2px;
    background-color: #595959;
    width: 32px;
}

.hamburger--menu span:nth-of-type(1) {
    top: 1px;
}

.hamburger--menu span:nth-of-type(2) {
    top: 9px;
}

.hamburger--menu span:nth-of-type(3) {
    top: 18px;
}

.hamburger--menu.is-open span:nth-of-type(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 8px;
}

.hamburger--menu.is-open span:nth-of-type(2) {
    opacity: 0;
}

.hamburger--menu.is-open span:nth-of-type(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 8px;
}



.hamburger__menu--text {
    font-size: 0.7rem;
    position: absolute;
    bottom: 0;
    text-align: center;
    left: 0;
    right: 0;
}


.nav__menu--text {
    margin-left: 24px;
}

.nav__menu--text.header__sp--nav {
    margin: 8px 0;
}


.nav__menu--text--link {
    font-size: 1.4rem;
}

.nav__menu--text--link.header__sp--nav {
    font-size: 2.4rem;
    display: inline-block;
}


/* ヘッダータブレット */
@media screen and (max-width:960px) {

    /*画面サイズが960pxからはここを読み込む*/
    .header__wrapper {
        padding: 35px 80px;
    }

    .header__wrapper.is-open {
        padding: 64px 48px;
        background: #fff;
        height: 100vh;
        flex-direction: row;
        justify-content: flex-start;
    }

    .header__nav {
        display: none;

    }

    .header__sp--nav.is-open {
        display: block;
        ;
    }

    .logo {
        position: absolute;
        z-index: 9999;
        top: 24px;
        cursor: pointer;
        left: 24px;
        display: block;

    }

    .header__logo {
        width: 32px;
        height: 32px;
    }


    .hamburger--menu {
        display: block;
    }

}




/* .header__nav__menu {
    display: block;
}

.hamburger--menu {
    display: none;
} */



.mv__title {
    font-size: 3.2rem;
}




/* ヘッダー終わり */



/* ワークス */
.works__wrapper {
    margin: 0 80px;
    padding: 64px 0;
}

.works__container {
    max-width: 1440px;
    margin: 0 auto;
}


.works__header.en {
    font-size: 3.2rem;
}

.works__header.jp {
    font-size: 1.2rem;
    margin-left: 8px;
}

.works--header__wrapper {
    display: flex;
    align-items: baseline;
    margin-bottom: 64px;
}


.works--items {
    width: calc((100% - 48px) / 2);
    margin-bottom: 64px;
}

.works--items:nth-child(7) {
    margin-bottom: 0;
}

.works--items:nth-child(8) {
    margin-bottom: 0;
}


.works--items__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.works--items__img {
    line-height: 0;
    background-color: rgba(217, 217, 217, 0.2);
    transition: background-color 0.5s ease;
    overflow: hidden;
}

.works--items__img img {
    transition: transform 0.5s ease;
}

.works--items__img:hover {
    background-color: rgba(217, 217, 217, 1);
}

.works--items__img img:hover {
    transform: scale(1.05);
}

.works--items__img.is-hover {
    background-color: rgba(217, 217, 217, 1);
}

.works--items__img img.is-hover {
    transform: scale(1.05);
}

.works--items__header {
    margin: 16px 0 4px;
}

.works--items__category {
    font-size: 1.2rem;
}





/* タブレット */
@media screen and (max-width:960px) {

    /*画面サイズが960pxからはここを読み込む*/
    .works__wrapper {
        margin: 0 24px;
        padding: 48px 0;
    }

    .works--items {
        width: calc((100% - 8px) / 2);
        margin-bottom: 48px;
    }

    .works--header__wrapper {
        margin-bottom: 32px;
    }

    .works--items__header {
        font-size: 1.4rem;
    }

    .works--items__category {
        font-size: 1rem;
    }
}

/* タブレット */
@media screen and (max-width:540px) {
    .works--items {
        width: 100%;
        margin-bottom: 48px;
    }

    .works--items:nth-child(7) {
        margin-bottom: 48px;
    }

}

/* ワークス終わり */



/* フッター */
.footer {
    background-color: #595959;
}

.footer__wrapper {
    margin: 0 80px;
    padding: 32px 0 0;
}

.footer__title {
    font-size: 3.2rem;
    margin-bottom: 80px;
    color: #fff;
    line-height: 1;
}

.footer__title--span {
    font-size: 1.6rem;
    color: #fff;
}

.footer__nav__menu {
    display: flex;
    justify-content: end;
}


.nav__menu--text.footer {
    margin: 0;
    padding-top: 16px;
    padding-left: 24px;
    border-top: 1px solid #fff;
}

.nav__menu--text.footer:first-child {
    padding-left: 160px;
}

.nav__menu--text--link.footer {
    color: #fff;
}


/* コピーライト */
.copyright {
    padding: 16px 0 8px;
    text-align: center;
}

.copyright__text {
    color: #D9D9D9;
    font-size: 1.2rem;
    font-weight: lighter;
}

/* コピーライト終わり */

/* タブレット */
@media screen and (max-width:960px) {

    /*画面サイズが960pxからはここを読み込む*/
    .footer__wrapper {
        margin: 0 24px;
        padding: 32px 0 16px;
    }

    .footer__nav__menu {
        justify-content: center;
        border-top: 1px solid #fff;
    }

    .nav__menu--text.footer:first-child {
        padding-left: 0;
    }

    .nav__menu--text.footer {
        border: none;
    }

    .copyright__text {
        font-size: 1rem;
    }

}



/* フッター終わり */