@charset "utf-8";
/*
Block Editor Style
*/
:root {
    --primary-font: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", "YuGothic", sans-serif;
    --secondary-font: Helvetica, Arial, sans-serif;
    --text-primary: #000;
    --text-secondary: #777;
    --primary-color: #f57712;
    --secondary-color: #ffbd44;
    --tertiary-color: #fff0d2;
}

:root :where(.is-layout-flex) {
    gap: 2rem;
}

h2.wp-block-heading {
    margin-bottom: 1em;
}

h3.wp-block-heading {
    margin-bottom: 1em;
}

h4.wp-block-heading {
    color: var(--text-light);
    font-weight: normal;
    margin-top: 2em;
    margin-bottom: 1em;
}

p+.wp-block-heading {
    margin-top: 2rem;
}

.wp-block-image :where(figcaption) {
    color: var(--text-light);
}

.wp-block-image.alignfull img {
    width: 100vw;
    max-width: initial;
}

.alignfull,
.is-style-wide {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    clear: both;
}

.alignfull.wp-block-pullquote {
    margin-left: -50vw;
    margin-right: -50vw;
}

.alignwide {
    position: relative;
    width: calc(100% + 100px);
    max-width: calc(100% + 100px);
    left: -50px;
    clear: both;
}

.editor-styles-wrapper .alignwide {
    left: 0;
}

.is-cropped img {
    height: 100% !important;
}

.rounded-circle img {
    border-radius: 50% !important;
}

.rounded img {
    border-radius: .25rem !important;
}

.wp-block-gallery figcaption a {
    color: #fff !important;
}

.wp-block-table thead {
    border-bottom: 0 none;
}

.wp-block-table table th,
.wp-block-table table td {
    border: 1px solid var(--border-color);
}

.wp-block-table table th,
.wp-block-table table td {
    padding: 20px !important;
}

.wp-block-table table th {
    background-color: var(--text-primary);
    color: #fff !important;
    text-align: center;
}

.wp-block-list {
    padding-left: 1.5rem;
    margin-left: 0;
    line-height: 1.6;
}

.wp-block-pullquote {
    border-bottom: 4px solid #0000000d;
    border-top: 4px solid #0000000d;
    padding: 4rem 0;
    text-align: center;
}

.wp-block-pullquote.is-style-solid-color {
    border: 0 none;
}

.wp-block-pullquote blockquote {
    border: 0 none;
}

.wp-block-pullquote blockquote:before {
    display: none;
}

.wp-block-pullquote blockquote p {
    margin-bottom: 1rem !important;
}

.wp-block-pullquote blockquote cite {
    font-style: normal;
}

.wp-block-quote__citation,
.wp-block-quote cite,
.wp-block-quote footer {
    color: #00000080;
    font-size: small;
    margin-top: 1em;
    position: relative;
    font-style: normal;
}

.wp-block-button__width-25 {
    width: 25%
}

.wp-block-button__width-50 {
    width: 50%
}

.wp-block-button__width-75 {
    width: 75%
}

.wp-block-button__width-100 {
    width: 100%
}

/* ～768px（SP） */
@media (max-width: 768.98px) {
    :root :where(.is-layout-flex) {
        gap: 20px;
    }
}