@charset "UTF-8";

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Serif JP", serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    width: 100%;
    max-width: 650px;
		margin-top: 40px;
    padding: 20px;
}
header {
	margin: 0;
	line-height: 1;
}
.logo {
}

.logo img {
    max-width: 380px;
    height: auto;
}

main {
}

section {
    margin-bottom: 40px;
}

.message-ja {
    padding-bottom: 40px;
    position: relative;
}

.message-ja::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    border-bottom: 1px solid #666;
}

p {
    margin-bottom: 1em;
    font-size: 15px;
}

a {
    color: #929292;
    text-decoration: underline;
    word-break: break-all;
}

a:hover {
    text-decoration: none;
    opacity: 0.8;
}

h1 {
    font-size: 20px;
    margin-bottom: 60px;
    font-weight: normal;
}

footer {
    margin-top: 180px;
    color: #999;
}

footer p {
    font-size: 11px;
}

@media (max-width: 600px) {
    .logo img {
        max-width: 240px;
    }

    p {
        font-size: 13px;
    }
}
