@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;
    }
}


















#section5 input {
    vertical-align: middle;
}
.wpcf7 {
    width: 100%;
}
.wpcf7 textarea {
    height: 12em;
}
input::placeholder,
textarea::placeholder {
  color: #888;
}
.wpcf7-list-item {
    margin: 0;
}

/* ************************************************
 * ------------------------------------------------
 *  WordPress
 * ------------------------------------------------
 * ************************************************ */
header {
    z-index: 2;
}
header .wp-block-site-title {
    position: fixed;
    top: calc(var(--outer-gap) / 2);
    left: calc(var(--outer-gap) / 2);
}
header .wp-block-site-title a {
    overflow: hidden;
    display: block;
    width: 1em;
    height: 1em;
    font-size: 10vmin;
    font-family: 'Miriam Libre', sans-serif;
    font-weight: 700;
}
header .wp-block-site-title a::before {
    content: 'g';
    display: block;
    line-height: .9;
}

nav {
    display: none;
}

footer .wp-block-site-title {
    margin: 2em 0;
}

strong {
    font-family: 'Miriam Libre', sans-serif;
    font-weight: 400;
    vertical-align: bottom;
    margin: 0 .2em;
}

.wrap {
    min-height: auto;
}

#section1.wrap {
    min-height: 100vh;
    padding: 0;
}
#section1 h1 {
    order: 1;
    font-size: 10vmin;
    margin-top: 9vmin;
}

#section3 h3 {
    font-weight: bold;
}
#section3 article.flexbox {
    gap: 1em;
}

@media screen and (min-width: 768px) {
    #section3 section.flexbox {
        align-items: flex-start;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
    }
    #section3 h2 {
        grid-row: 1 / span 1;
        grid-column: 1 / span 2;
    }
}
@media screen and (min-width: 1024px) {
    #section3 section.flexbox {
        grid-template-columns: 1fr 1fr 1fr;
    }
    #section3 h2 {
        grid-column: 1 / span 3;
    }
}

#section3 figure {
    order: -1;
}
#section3 figure::after {
    display: block;
    font-size: 2.8em;
    font-family: 'Miriam Libre', sans-serif;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    letter-spacing: .05em;
    text-indent: .05em;
}
#section3 article:nth-of-type(1) figure::after {
    content: '01';
}
#section3 article:nth-of-type(2) figure::after {
    content: '02';
}
#section3 article:nth-of-type(3) figure::after {
    content: '03';
}
#section3 article:nth-of-type(4) figure::after {
    content: '04';
}
#section3 article:nth-of-type(5) figure::after {
    content: '05';
}
#section3 article:nth-of-type(6) figure::after {
    content: '06';
}
#section3 article:nth-of-type(7) figure::after {
    content: '07';
}
#section3 article:nth-of-type(8) figure::after {
    content: '08';
}
#section3 article:nth-of-type(9) figure::after {
    content: '09';
}
#section3 article:nth-of-type(7),
#section3 article:nth-of-type(8),
#section3 article:nth-of-type(9) {
    display: none;
}

#section4 dt:first-child,
#section4 dd {
    margin: 1em 0;
}
#section4 dt:nth-of-type(1),
#section4 dt:nth-of-type(3) {
    letter-spacing: 2em;
}
#section4 dt:nth-of-type(2) {
    letter-spacing: .5em;
}
#section4 dd {
    padding-left: 6em;
}

@media screen and (min-width: 768px) {
    #section4 dd {
        padding-left: 8em;
    }
}

#section5 {
    text-align: left;
}
#section5 .justify {
    width: calc(100vw - calc(var(--outer-gap) * 2));
    max-width: 43em;
}
#section5 input,
#section5 textarea {
    transition: all .3s;
    background-color: #f9f8f8;
    margin: .5em 0;
    padding: 1em;
}
#section5 input:focus,
#section5 textarea:focus {
    background-color: #ece9e9;
}
#section5 input[type="checkbox"] {
    position: relative;
    margin-right: .2em;
}
#section5 input[type="checkbox"]:checked::after {
    content: '\eab4';
    display: block;
    font-size: .5em;
    font-family: 'fontisto';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#section5 input[type="submit"] {
    font-size: 1.6em;
    font-family: 'Miriam Libre', sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    border: .12em solid #000;
    border-radius: 4em;
    margin: 1em 0;
    padding: .8em 3.8em;
}
#section5 input[type="submit"]:hover,
#section5 input[type="submit"]:focus {
    opacity: .1;
}

h1.wp-block-post-title,
#section6 h2 {
    display: none;
}
#section6 h3,
#section6 h4,
#section6 h5,
#section6 ul {
    margin: 1em 0;
}
#section6 h3,
#section6 h4 {
    font-weight: bold;
}
#section6 li::before {
    content: '・';
    display: inline-block;
}
