@charset "utf-8";

/* Reset */

*,
*::before,
*::after {
	box-sizing: border-box;
}

@supports not (min-height: 100vh) {
	html {
		height: 100%;
	}
}

html {
	font-family: sans-serif;
	line-height: 1.5;
	overflow-wrap: break-word;
	scroll-behavior: smooth;
	-moz-tab-size: 4;
	tab-size: 4;
	-webkit-tap-highlight-color: transparent;
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	min-height: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	text-rendering: optimizeSpeed;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ol,
ul,
dl,
figure {
	margin: 0;
}

ol[role="list"],
ul[role="list"] {
	list-style: none;
	padding: 0;
}

a:not([class]) {
	text-decoration-skip-ink: auto;
}

picture,
img,
iframe,
embed,
object,
video,
audio,
svg,
canvas {
	display: block;
}

picture,
img,
video,
svg {
	height: auto;
	max-width: 100%;
}

svg:not([fill]) {
	fill: currentColor;
}

input,
button,
select,
textarea {
	font: inherit;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-delay: -1ms !important;
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		background-attachment: initial !important;
		scroll-behavior: auto !important;
		transition-delay: 0s !important;
		transition-duration: 1ms !important;
	}
}

/* Content */

body {
	background-color: #fff;
	color: #222;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 1rem; /* 16px */
}

.site-header,
.site-main,
.site-footer {
	margin-left: auto;
	margin-right: auto;
	max-width: 600px;
}

.site-header {
	padding: 40px 0;
}

h1 {
	margin: 0 auto;
	width: 110px;
}

.site-main {
	padding: 0 0 24px;
}

.catch {
	margin: 0 auto;
	max-width: 400px;
}

.works {
	font-feature-settings: "kern";
	font-size: .875rem; /* 14px */
	line-break: strict;
	line-height: 1.75;
	max-width: 560px;
	margin: 20px auto 0;
}

.site-footer {
	border-top: 1px dotted #f08300;
	font-size: .875rem; /* 14px */
	padding: 24px 0;
	text-align: center;
}

.site-footer address {
	font-style: normal;
}

.site-footer address strong {
	font-size: 1rem; /* 16px */
}

.copyright {
	margin: 8px 0 0;
}

.copyright small {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: inherit;
}

@media screen and (max-width: 640px) {
	.site-header,
	.site-main,
	.site-footer {
		max-width: calc(100% - 40px);
	}
}

/* In view */

.fadein {
	opacity: .01;
	transition: opacity 1.2s ease-out .1s;
}

.fadein.inview {
	opacity: 1;
}

.fadein.moveleft,
.fadein.moveright {
	transition: opacity 1.2s ease-out .1s, transform 1.2s ease-out .1s;
}

.fadein.moveleft {
	transform: translateX(-30px);
}

.fadein.moveright {
	transform: translateX(30px);
}

.fadein.moveleft.inview,
.fadein.moveright.inview {
	transform: translateX(0);
}

@media screen and (max-width: 640px) {
	.fadein.moveleft {
		transform: translateX(-20px);
	}

	.fadein.moveright {
		transform: translateX(20px);
	}
}
