@charset "shift-jis";

/*-----------------------------------------------------------------------------------------
reset
----------------------------------------------------------------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:where([hidden]:not([hidden='until-found'])) {
    display: none !important
}

:where(html) {
    -webkit-text-size-adjust: none;
    color-scheme: dark light
}

@supports not (min-block-size:100dvb) {
    :where(html) {
        block-size: 100%
    }
}

@media (prefers-reduced-motion:no-preference) {
    :where(html:focus-within) {
        scroll-behavior: smooth
    }
}

:where(body) {
    block-size: 100%;
    block-size: 100dvb;
    line-height: 1.5;
    font-family: system-ui, sans-serif;
    -webkit-font-smoothing: antialiased
}

:where(input, button, textarea, select) {
    font: inherit;
    color: inherit
}

:where(textarea) {
    resize: vertical;
    resize: block
}

:where(button, label, select, summary, [role='button'], [role='option']) {
    cursor: pointer
}

:where(:disabled) {
    cursor: not-allowed
}

:where(label:has(>input:disabled), label:has(+input:disabled)) {
    cursor: not-allowed
}

:where(button) {
    border-style: solid
}

:where(a) {
    text-underline-offset: .2ex
}

:where(ul, ol) {
    list-style: none
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
    display: block
}

:where(img, picture, svg) {
    max-inline-size: 100%;
    block-size: auto
}

:where(p, h1, h2, h3, h4, h5, h6) {
    overflow-wrap: break-word
}

:where(h1, h2, h3) {
    line-height: calc(1em + 0.5rem)
}

:where(hr) {
    border: none;
    border-block-start: 1px solid;
    color: inherit;
    block-size: 0;
    overflow: visible
}

:where(:focus-visible) {
    outline: 2px solid var(--focus-color, Highlight);
    outline-offset: 2px
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
    clip-path: inset(50%) !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    white-space: nowrap !important;
    border: 0 !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #291818;
}

:hover {
    transition: 0.5s;
}

/*-----------------------------------------------------------------------------------------
important
----------------------------------------------------------------------------------------*/
.smp {
    display: none !important;
}

.hidden {
    display: none !important;
}


/*-----------------------------------------------------------------------------------------
base
----------------------------------------------------------------------------------------*/
:root {
    --border: #dedede;
    --white: #ffffff;
    --black: #424853;
    --btn: #ababab;
    --point: #f09e8d;
}


html,
body {
    color: var(--black);
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    line-height: 1.6;
    background-color: #fff;

}

.container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.container img {
    width: 100%;
}

.container ul {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin: 31px auto 0;
}

.pagetop {
    width: 70%;
    margin: 1.5em auto;
    background-color: #222;
    border-radius: 50px;
}

.pagetop a  {
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    padding: 0.5em 0;
    display: block;
}

/*================================================
PC�\��
================================================*/
@media screen and (min-width: 768px) {
/* ===============================================
��{
================================================== */

.smp_none {
    display: block !important;
}
.pc_none {
    display: none !important;
}


#container .wrapper {
    max-width: 1080px;
    margin: 0 auto;
}

#container section {
    padding:4px 0;
}

.container {
    width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.container img {
    width: 100%;
}

.container ul {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 13px;
    margin: 31px auto 0;
}

}