@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');
@import url('https://fonts.googleapis.com/css?family=Miriam+Libre:400,700');

/* ************************************************
 * ------------------------------------------------
 *  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.2rem;
    font-family: 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: #000;
    line-height: 1.9;
    text-align: center;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    body {
        font-size: 1.4rem;
    }
}

body,
html {
    height: 100%;
}
img {
    display: block;
    width: 100%;
}
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;
}

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;
}

.justify {
    text-align: justify;
    text-justify: inter-ideograph;
}

.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;
    }
}

.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 (orientation: portrait) {
}
@media screen and (orientation: landscape) {
}

/* ************************************************
 * ------------------------------------------------
 *  modules
 * ------------------------------------------------
 * ************************************************ */
:root {
    --outer-gap: 8vw;
}

header,
footer,
main,
nav,
aside,
section,
article,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    z-index: 1;
}
nav,
h1,
h2,
input[type="submit"],
button {
    text-transform: uppercase;
}

h1,
h2 {
    font-size: 3.2em;
    font-family: 'Miriam Libre', sans-serif;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    letter-spacing: .1em;
    text-indent: .1em;
}

a {
    transition: all .3s;
    opacity: 1;
}
a:hover {
    opacity: .7;
}

.flexbox {
    display: grid;
    gap: 5vmin;
}

.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);
}

/* ************************************************
 * ------------------------------------------------
 *  header
 * ------------------------------------------------
 * ************************************************ */
header {}

/* ************************************************
 * ------------------------------------------------
 *  footer
 * ------------------------------------------------
 * ************************************************ */
footer .wp-block-site-title {
    display: inline-block;
}

/* ************************************************
 * ------------------------------------------------
 *  nav
 * ------------------------------------------------
 * ************************************************ */
nav {}

/* ************************************************
 * ------------------------------------------------
 *  content
 * ------------------------------------------------
 * ************************************************ */

/* ------------------------------------------------
 *  ***
 * ------------------------------------------------ */
dd {
    padding-left: 6em;
}

@media screen and (min-width: 768px) {
    #section4 dd {
        padding-left: 8em;
    }
}












/* ------------------------------------------------
 *  renewal
 * ------------------------------------------------ */
header,
footer {
    padding: 25px 0;
}
header {
    font-size: 1.4em;
}
nav {
    display: none;
}
body.home main {
    line-height: 2.7;
    padding: 80px 0;
}
body.home main h1 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 35px;
}
