@charset "UTF-8";
/*
Theme Name:   Open Guidoor
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 {
    --main-color: #23c4b7;
    --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: 48px;
}

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

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

#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;
    }
}

/**
 * カスタマイズ用のスタイルは以下に追加
 */
.customize-support .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .customize-support .header {
    top: 46px;
  }
}