/* ブラウザスタイル初期化 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a {
    color: #000000;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.sp {
    display: none;
}

html {
	scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
}
/* ブラウザスタイル初期化ここまで */

/* ヘッダー */
header {
    width: 100%;
    height: 80px;
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #ffffff;
}

#logo {
    width: 200px;
}

#logo img {
    width: 100%;
}

nav.pc > ul {
    display: flex;
    justify-content: space-between;
}

nav.pc > ul > li {
    margin: 0 20px;
}

nav > ul > li > a {
    transition: all ease 0.3s;
    color: #F6AC19;
    font-weight: bold;
}

nav > ul > li > a:hover {
    color: #009EB9;
}
/* ヘッダーここまで */

/* フッター */
footer {
    width: 100%;
    padding: 40px;
    background-color: #F4F5F6;
}

footer > small {
    display: block;
    text-align: center;
    color: #BABABA;
}
/* フッターここまで */

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    
    .sp {
        display: block;
    }

    /* ヘッダー */
    header {
        justify-content: space-between;
        padding: 0 20px;
    }

    /* ハンバーガーメニュー */
    .hamburger {
        width: 30px;
        position: relative;
        z-index: 1002;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 1px;
        margin: 5px 0;
        background-color: #000000;
        transition: all ease 0.3s;
    }

    .hamburger.open_menu span:first-child {
        position: absolute;
        top: 0;
        transform: rotate(40deg);
    }

    .hamburger.open_menu span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open_menu span:last-child {
        position: absolute;
        top: 0;
        transform: rotate(-40deg);
    }
    /* ハンバーガーメニューここまで */

    /* メニュー */
    .sp_menu_list {
        transform: translateX(200%);
        width: 80%;
        height: 100vh;
        margin-left: 20%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1001;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        transition: all ease 1s;
    }

    .sp_menu_list.open {
        transform: translateX(0);
    }

    .sp_menu_list > ul > li > a {
        color: #ffffff;
    }
    /* メニューここまで */

    
    /* ヘッダーここまで */

}
/* レスポンシブここまで */
