@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
	box-sizing: border-box; /* 1 */
	background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
	vertical-align: inherit; /* 2 */
	text-decoration: inherit; /* 1 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
	-webkit-tap-highlight-color: transparent; /* 5 */
	-webkit-text-size-adjust: 100%; /* 6 */
	cursor: default; /* 1 */
	line-height: 1.5; /* 2 */
	overflow-wrap: break-word; /* 3 */
	-moz-tab-size: 4; /* 4 */
	-o-tab-size: 4;
	tab-size: 4; /* 4 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
	margin: 0.67em 0;
	font-size: 2em;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
	margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
	height: 0; /* 2 */
	color: inherit; /* 1 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
	padding: 0;
	list-style-type: none;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
	float: left;
	content: '​';
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
	overflow: auto; /* 3 */
	font-size: 1em; /* 2 */
	font-family: monospace, monospace; /* 1 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
	font-size: 1em; /* 2 */
	font-family: monospace, monospace; /* 1 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
	font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
	vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
	border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
	fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
	border-color: inherit; /* 2 */
	border-collapse: collapse; /* 1 */
	text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
	margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type='button' i], [type='reset' i], [type='submit' i]) {
	-webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
	border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
	vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
	margin: 0; /* 1 */
	resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type='search' i]) {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
	opacity: 0.54;
	color: inherit;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	border: solid;
	background-color: white;
	padding: 1em;
	width: -moz-fit-content;
	width: fit-content;
	height: -moz-fit-content;
	height: fit-content;
	color: black;
}

:where(dialog:not([open])) {
	display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
	display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy='true' i]) {
	cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
	cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled='true' i], [disabled]) {
	cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden='false' i][hidden]) {
	display: initial;
}

:where([aria-hidden='false' i][hidden]:not(:focus)) {
	clip: rect(0, 0, 0, 0);
	position: absolute;
}

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */
:where(iframe, img, input, video, select, textarea) {
	max-width: 100%;
	height: auto;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
	border: 1px solid WindowFrame; /* 1 */
	background-color: transparent; /* 1 */
	padding: 0.25em 0.375em; /* 1 */
	color: inherit; /* 1 */
	font: inherit; /* 2 */
	letter-spacing: inherit; /* 2 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E")
		no-repeat right center/1em;
	padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
	background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type='color' i], [type='range' i]) {
	border-width: 0;
	padding: 0;
}

@keyframes loop-slide {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}
@keyframes fade-in1 {
	0% {
		transform: translateY(30px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes fade-in2 {
	0% {
		transform: translateY(16px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
* {
	margin: 0;
	padding: 0;
}

html {
	-webkit-tap-highlight-color: revert;
	cursor: revert;
	min-width: 375px;
	font-size: 62.5%;
	font-family: 'Noto Sans JP', sans-serif;
	line-break: normal;
}

body {
	font-size: 1.6rem;
}

li {
	list-style-type: none;
}

th {
	font-weight: inherit;
}

address {
	font-style: inherit;
}

fieldset {
	border: 0;
	min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

h1 {
	margin: 0;
}

cite,
dfn,
em,
i,
var {
	font-style: inherit;
}

small {
	font-size: inherit;
}

a {
	color: currentColor;
	text-decoration: none;
}

button,
input,
select,
textarea {
	border: 0;
	padding: 0;
}
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
	cursor: not-allowed;
}

button {
	touch-action: manipulation;
}
button:not(:disabled, [aria-disabled='true']) {
	cursor: pointer;
}

[hidden][hidden] {
	display: none !important;
}

img {
	width: 100%;
	height: auto;
}

.c-disclosure__details {
	transition: height 0.5s;
	overflow: hidden;
}

.c-disclosure__details[aria-hidden='true'] {
	visibility: hidden;
	transition: height 0.5s, visibility 0.5s 0.5s;
	height: 0;
}

.c-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	padding: 33px 0;
}
@media (max-width: 48em) {
	.c-footer {
		padding: 23px 0;
	}
}

.c-footer__copyright {
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.04em;
}
@media (max-width: 48em) {
	.c-footer__copyright {
		font-size: 1.1rem;
	}
}

.c-header {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	padding: 15px 0;
}
@media (max-width: 48em) {
	.c-header {
		padding: 9px 0;
	}
}

.c-header__logo {
	width: 180px;
}
@media not all and (max-width: 48em) {
	.c-header__logo {
		transition: opacity 0.3s;
	}
	.c-header__logo:hover {
		opacity: 0.7;
	}
}
@media (max-width: 48em) {
	.c-header__logo {
		width: 144px;
	}
}

.u-d-none {
	display: none !important;
}

.u-d-inline {
	display: inline !important;
}

.u-d-inline-block {
	display: inline-block !important;
}

.u-d-block {
	display: block !important;
}

.u-d-grid {
	display: grid !important;
}

.u-d-table {
	display: table !important;
}

.u-d-table-row {
	display: table-row !important;
}

.u-d-table-cell {
	display: table-cell !important;
}

.u-d-flex {
	display: flex !important;
}

.u-d-inline-flex {
	display: inline-flex !important;
}

@media (max-width: 48em) {
	.u-d-md-none {
		display: none !important;
	}
	.u-d-md-inline {
		display: inline !important;
	}
	.u-d-md-inline-block {
		display: inline-block !important;
	}
	.u-d-md-block {
		display: block !important;
	}
	.u-d-md-grid {
		display: grid !important;
	}
	.u-d-md-table {
		display: table !important;
	}
	.u-d-md-table-row {
		display: table-row !important;
	}
	.u-d-md-table-cell {
		display: table-cell !important;
	}
	.u-d-md-flex {
		display: flex !important;
	}
	.u-d-md-inline-flex {
		display: inline-flex !important;
	}
}
.u-visually-hidden-focusable:not(:focus, :focus-within) {
	display: block !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	visibility: visible !important;
	opacity: 0% !important;
	margin: 0 !important;
	border: 0 !important;
	padding: 0 !important;
	width: 4px !important;
	height: 4px !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

.u-visually-hidden {
	display: block !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	visibility: visible !important;
	opacity: 0% !important;
	margin: 0 !important;
	border: 0 !important;
	padding: 0 !important;
	width: 4px !important;
	height: 4px !important;
	overflow: hidden !important;
	pointer-events: none !important;
}
