@charset "UTF-8";
/*
Theme Name:   Sakunet
Description:  THE SONICカスタマイズ用子テーマ
Template:     thesonic
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
    -webkit-appearance: none;
    appearance: none;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    text-decoration: none;
}

p {
    margin: unset;
    padding: unset;
}

:root { interpolate-size: allow-keywords; }
:root {
    --main-color: #07a50b;
    --sub-color: #9dc4c1;
    --accent-color: #f4be30;
    --bg-color: #f3f7f8;
    --bg-color-hover: #e3ecef;
    --shadow-color: #c7dade;
    --text-color: #162524;
    --link-color: #0f1818;
    --title-color: #464647;
    --title-size: 24px;
    --inline-padding-base: 16px;
    --block-padding-base: 24px;
    --header-height: 50px;
}

@media screen and (min-width: 768px) {
    :root {
        --inline-padding-base: 24px;
        --block-padding-base: 32px;
        --title-size: 32px;
    }
}

@media screen and (min-width: 901px) {
    :root {
        --inline-padding-base: 32px;
        --block-padding-base: 48px;
        --header-height: 80px;
    }
}

html {
    font-size: 62.5%;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

#body {
    background-color: #fff;
}

.header {
    width: 100%;
    height: var(--header-height);
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.main {
    width: 100%;
    margin-top: var(--header-height);
}

.footer {
    background: var(--bg-color);
}

.sp {
    display: block;
}

.pc {
    display: none;
}

@media screen and (min-width: 768px) {
    .sp {
        display: none;
    }

    .pc {
        display: block;
    }
}

/**
 * カスタマイズ用のスタイルは以下に追加
 */
