@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Zen+Kaku+Gothic+Antique&display=swap');

/* ************************************************
 * ------------------------------------------------
 *  Primary Style
 * ------------------------------------------------
 * ************************************************ */
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    font-size: 1.4rem;
    font-family: 'Zen Kaku Gothic New', 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: #000;
    line-height: 1.9;
    text-align: center;
    background: url('') fixed;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    body {
        font-size: 1.6rem;
    }
}

body,
html {
    height: 100%;
}
img {
    display: block;
    width: 100%;
    height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

ul {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
}
dt {
    float: left;
    clear: left;
}

input,
textarea,
select,
button {
    font: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
}
textarea {
    resize: none;
}
input[type="checkbox"],
input[type="submit"],
button {
    cursor: pointer;
}
:disabled {
    opacity: .2;
    color: inherit;
    cursor: auto;
}
::placeholder {
    color: initial;
}

iframe {
    overflow: hidden;
    display: block;
    width: 100%;
    height: auto;
    border: none;
    pointer-events: none;
}

pre {
    white-space: nowrap;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
pre::-webkit-scrollbar {
    display: none;
}

address {
    font-style: normal;
}
strong {
    font-weight: normal;
}

.flexbox {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
}
.flexitem {
    order: 0;
    flex-basis: auto;
    flex-shrink: 1;
    flex-grow: 0;
    align-self: auto;
    justify-self: auto;
}
.gridlayout {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 2fr 1fr;
    grid-template-columns: 2fr minmax(180px, 1fr);
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}
.griditem {
    grid-row: 1 / span 3;
    grid-column: 1 / span 1;
}

.transform {
    transform: none;
    transform-origin: 50% 0%;
}
.transition {
    transition: all 1s ease 0;
}
.animation {
    animation-name: name;
    animation-duration: 10s;
    animation-timing-function: ease;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: both;
    animation-play-state: running;
}

@keyframes name {
    0%, 20%, 100% {
        opacity: 1;
    }
    25%, 95% {
        opacity: 0;
    }
}

.background {
    background: url('') no-repeat;
    background: url('') fixed;
    background-image: url('');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: inherit;
}

.object {
    width: 1em;
    height: 1em;
    border-radius: 50%;
    object-fit: cover;
}

.calc {
    width: calc(100% / 3);
}

.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

@media screen and (min-width: 320px) {
}
@media screen and (min-width: 480px) {
}
@media screen and (min-width: 768px) {
}
@media screen and (min-width: 1024px) {
}
@media screen and (min-width: 1366px) {
}

@media screen and (orientation: portrait) {
}
@media screen and (orientation: landscape) {
}

/* ************************************************
 * ------------------------------------------------
 *  Modules
 * ------------------------------------------------
 * ************************************************ */
:root {
    --global-padding: 2rem;
    --global-gap: 2rem;
    --inner-padding: 15vh 8vw;
    --outer-padding: 3vmax 6vmin;
    --inner-gap: 4rem;
    --outer-gap: 8vw;
    --background-color: rgba(0, 0, 0, .1);
    --border-color: rgba(0, 0, 0, .1);
}

a {
    transition: all .3s;
    opacity: 1;
}
a:hover {
    opacity: .7;
}

input,
textarea {
    transition: all .3s;
}

input[type="checkbox"] {
    position: relative;
    vertical-align: middle;
    margin-right: .5em;
}
input[type="checkbox"]:checked::after {
    content: '\eb7b';
    display: block;
    font-size: 1.4em;
    font-family: 'remixicon';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
input[type="submit"] {
    display: block;
    width: 100%;
    max-width: 18em;
    color: inherit;
    text-align: center;
    line-height: 1;
    letter-spacing: .1em;
    text-indent: .1em;
    text-transform: uppercase;
    border: 2px solid #000;
    border-radius: 100vh;
    margin: 0 auto;
    padding: 2em 0;
}
input[type="submit"]:hover,
input[type="submit"]:focus {
    opacity: .3;
}

header,
footer,
main,
nav,
aside,
section,
article,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    z-index: 1;
}
nav,
input[type="submit"],
button {
    text-transform: uppercase;
}

figure a {
    display: block;
}

h1,
h2,
h3 {
    font-weight: bold;
}

.wrap {
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    text-align: center;
    margin: 0 auto;
    padding: 15vmin var(--outer-gap);
}

.red-letter {
    color: #bb261a;
}
.marker {
    background: linear-gradient(transparent 50%, rgba(255, 255, 0, .8) 50%);
}
.part {
    border-bottom: 1px solid var(--border-color);
    padding: var(--global-padding);
}

/* ************************************************
 * ------------------------------------------------
 *  WordPress
 * ------------------------------------------------
 * ************************************************ */
.wp-site-blocks {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

@media screen and (min-width: 1024px) {
    .wp-site-blocks {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .wp-site-blocks > *:first-child,
    .wp-site-blocks > *:last-child {
        flex-basis: 100%;
    }
}

.wp-block-group,
.wp-block-query {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

/* ------------------------------------------------
 *  Global Navigation
 * ------------------------------------------------ */
.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content {
    gap: inherit;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    gap: 0;
}
.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open {
    background-color: inherit;
}
.wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open {
    color: inherit;
}
.has-modal-open .wp-block-navigation__responsive-close {
    padding: inherit;
}

.wp-block-navigation {
    font-size: inherit;
}
.wp-block-navigation a:where(:not(.wp-element-button)),
.wp-block-navigation a:where(:not(.wp-element-button)):hover,
.wp-block-navigation a:where(:not(.wp-element-button)):focus,
.wp-block-navigation a:where(:not(.wp-element-button)):active {
    text-decoration: inherit;
}

/* ------------------------------------------------
 *  Pagination
 * ------------------------------------------------ */
.wp-block-query-pagination {
    display: flex;
    justify-content: center;
}

/* ------------------------------------------------
 *  Contact Form 7
 * ------------------------------------------------ */
.wpcf7-list-item {
    margin-left: 0;
}

/* ************************************************
 * ------------------------------------------------
 *  Header
 * ------------------------------------------------
 * ************************************************ */
header {
    border-bottom: 1px solid var(--border-color);
    padding: var(--global-padding);
}

/* ************************************************
 * ------------------------------------------------
 *  Footer
 * ------------------------------------------------
 * ************************************************ */
footer {
    border-top: 1px solid var(--border-color);
    padding: var(--global-padding);
}

footer .wp-block-site-title::before {
    content: '\0a9 \0020 2014 \0020';
}

/* ************************************************
 * ------------------------------------------------
 *  Global Navigation
 * ------------------------------------------------
 * ************************************************ */
nav {
}

/* ************************************************
 * ------------------------------------------------
 *  Main Contents
 * ------------------------------------------------
 * ************************************************ */
main,
aside {
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    text-align: justify;
    margin: 0 auto;
    padding: 0;
}

@media screen and (min-width: 1024px) {
    main {
        width: calc(100% - 300px);
        max-width: 768px;
        margin: 0;
    }
    aside {
        width: 300px;
        margin: 0;
    }
}

main > * {
    padding: var(--global-padding);
}

/* ------------------------------------------------
 *  ***
 * ------------------------------------------------ */
dd {
    padding-left: 6em;
}

@media screen and (min-width: 768px) {
    #section4 dd {
        padding-left: 8em;
    }
}








/* ************************************************
 * ------------------------------------------------
 *  Entry Content
 * ------------------------------------------------
 * ************************************************ */
.entry-content h2,
.entry-content h3,
.entry-content ul,
.entry-content dl,
.entry-content p {
    margin: var(--inner-gap) 0;
}

.entry-content li::before {
    content: '・';
    display: inline-block;
}

.entry-content a {
    color: #0645ad;
}

/* ************************************************
 * ------------------------------------------------
 *  Single
 * ------------------------------------------------
 * ************************************************ */
body.single main h1 {
    font-size: 1.6em;
    line-height: 1.6;
}
body.single main h2 {
    font-size: 1.6em;
    border-bottom: 3px solid var(--border-color);
    padding-bottom: .5em;
}
body.single main h3 {
    font-size: 1.2em;
    border-left: 3px solid var(--border-color);
    padding-left: .5em;
}

body.single main .wp-block-group {
    gap: calc(var(--inner-gap) / 2);
}

body.single main figure {
    order: 1;
}
body.single main figure img {
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

body.single main .wp-block-post-date {
}

body.single main .wp-block-post-terms.taxonomy-category {
    order: -1;
}
body.single main .wp-block-post-terms a {
    display: inline-block;
    font-size: .8em;
    margin-right: .5em;
    padding: .4em 2em;
}
body.single main .wp-block-post-terms a:last-child {
    margin-right: 0;
}
body.single main .wp-block-post-terms.taxonomy-category a {
    background-color: var(--background-color);
}
body.single main .wp-block-post-terms.taxonomy-post_tag a {
    border: 1px solid var(--border-color);
    border-radius: 100vh;
}
body.single main .wp-block-post-terms__separator {
    display: none;
}

pre[class*=language-] {
    margin: var(--inner-gap) 0;
    padding: 1em;
}







.iframe-container_shrink,
.iframe-container_shrink iframe {
    aspect-ratio: 3 / 2;
}
.iframe-container_shrink {
    position: relative;
    width: 100%;
    margin: var(--inner-gap) 0;
}
.iframe-container_shrink iframe {
    position: absolute;
    top: 0;
    width: 200%;
    border: 1px solid var(--border-color);
    transform: scale(.5);
    transform-origin: 0 0;
}

/* ************************************************
 * ------------------------------------------------
 *  Page
 * ------------------------------------------------
 * ************************************************ */
body.page main h1 {
    font-size: 1.6em;
    line-height: 1.6;
}

input,
textarea {
    border: 1px solid var(--border-color);
    padding: .5em 1em;
}
input:focus,
textarea:focus {
    border-color: #000;
}
input[type="checkbox"] {
    padding: 1em;
}

/* ************************************************
 * ------------------------------------------------
 *  Sidebar
 * ------------------------------------------------
 * ************************************************ */
