body {
    font-family: "Zen Kaku Gothic New", 'Noto Sans JP', sans-serif;
    color: #fff;
    background: #000;
    border: 0;
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: "Homura Mincho";
    src: url("../font/04HomuraM-Medium.otf") format("truetype");
    font-display: swap;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#infocontents {
    width: 900px;
    margin: auto;
}

h1 {
    font-family: "Special Elite", serif;
    color: #fff;
    font-size: 70px;
    margin: 20px auto;
    padding: auto;
    width: 900px;
}

h2 {
    font-family: "Homura Mincho", serif;
    font-size: 50px;
    width: 900px;
    margin: 40px auto 20px auto;
    color: #d4831a;
}

h3 {
    font-family: "Homura Mincho", serif;
    color: #fff;
    font-size: 25px;
    width: 900px;
    margin: 40px auto auto auto;
}

a {
    text-decoration: none;
    color: #dca359;
}

a::before {
    content: "\2015\00a0"
}

a:hover {
    color: #d4831a;
}

button {
    font-family: "Zen Kaku Gothic New", sans-serif;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px auto;
    max-width: 200px;
    padding: 10px 25px;
    color: #fff;
    background-color: #24282e;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border: none;
}

button:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
}

button:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #d4831a;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}

button:hover {
    opacity: 0.7;
}

button:hover:after {
    transform: scale(1, 1);
}

label {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    line-height: 50px;
    width: 900px;
    color: #fff;
    padding: 20px;
}

#givenName {
    width: 70%;
    margin: auto;
    padding: 8px 10px;
    border: none;
    background-color: #24282e;
    color: #e5e5e5;
    font-size: 1em;
    line-height: 1.5;
    height: 50px;
    resize: none;
}

#givenName:focus {
    outline: 1px solid #fff;
}


#givenName::placeholder {
    color: rgba(255,255,255,.5);
}

p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    line-height: 50px;
    width: 900px;
    color: #fff;
    padding: 20px;
}