/* assets.css */

/* リセット */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    color : inherit;
    text-decoration : none;
    background-color: transparent;
    cursor: pointer;
}

ul,ol,dd,dt {
    margin: 0;
    padding: 0;
    text-align: initial;
}

body, p, h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    background: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    margin: 0;
}

/* 変数 */
:root {
    /* カラー */
    --base: #FFFFFF;
}

/* 共通 */
* {
    box-sizing: border-box;
}

img {
    width: 100%;
    height: auto;
}

a:hover {
    opacity: 0.5;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
}

.container {
    text-align: center;
    max-width: 1366px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.pc_view {
    display: block;
}
.sp_view {
    display: none;
}

@media (max-width: 768px) {
    .pc_view {
        display: none;
    }
    .sp_view {
        display: block;
    }
}


.headerpc_view {
    display: none;
}


@media (min-width: 768px) {
    .headerpc_view {
        display: flex;
        align-items: center;
    }
    .headerpc_view > a {
        display: block;
        margin-right: 14px;
    }

    .headerpc_view .instagram {
        display: block;
        height: 41px;
    }
}

/* font */
@font-face {
    font-family: 'HomemadeApple';
    src: url('./font/HomemadeApple.ttf') format('truetype')
}

@font-face {
    font-family: 'Inconsolata';
    src: url('./font/Inconsolata_ExtraExpanded-Black.ttf') format('truetype')
}