:root {
	/* ベースカラー */
	--color-base: #f7f6f4;
	/* アクセントカラー */
	--color-accent: #aa8b66;
	/* キーカラー */
	--color-key-red: #d46983;
	--color-key-blue: #88afc0;
	--color-key-green: #c1e195;
	--color-key-yellow: #d4b769;
	/* サーフェスカラー */
	--color-surface-light: #efede9;
	--color-surface-medium: #d8d1ca;
	--color-surface-dark: #41444a;
	/* ボーダーカラー */
	--color-border-light: #e2ded8;
	--color-border-medium: #bbae9e;
	/* テキストカラー */
	--color-text-main: #1b1b1b;
	--color-text-sub: #574f44;
	--color-text-disabled: #b5afa5;
	--color-text-link: #4e7285;
	/* システムカラー */
	--color-system-success: #7a9163;
	--color-system-error: #b2524d;
}

html {
	font-size: 16px;
}

@font-face {
	font-family: 'Zen Kaku Gothic New';
	src: url("../../../assets/fonts/ZenKakuGothicNew-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Zen Kaku Gothic New';
	src: url("../../../assets/fonts/ZenKakuGothicNew-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

body {
	background-color: var(--color-base);
	font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "YuGothic Medium", YuGothic, "Yu Gothic Medium", "Yu Gothic", "BIZ UDGothic", sans-serif;
	font-weight: 400;
	color: var(--color-text-main);
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	overflow-wrap: anywhere;
	line-break: strict;
}

a {
	color: var(--color-text-link);
	transition: all 0.3s;
}

@media (any-hover: hover) {
	a:hover {
		text-decoration: underline;
	}
}

a[href^="tel:"] {
	color: unset;
	pointer-events: none;
}

@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		color: var(--color-text-link);
		pointer-events: auto;
	}
}

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

iframe {
	max-width: 100%;
}

strong {
	font-weight: 700;
}

input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
textarea,
select {
	padding: 16px;
	background-color: #fff;
	border: 1px solid var(--color-border-medium);
	border-radius: 8px;
	line-height: 1;
}

textarea {
	resize: none;
}

input[type="checkbox"],
input[type="radio"] {
	accent-color: var(--color-accent);
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	width: fit-content;
	padding: 1em 2em;
	background-color: var(--color-accent);
	border: 2px solid var(--color-accent);
	border-radius: 2em;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
	transition: all 0.3s;
}

@media (any-hover: hover) {

	button:hover,
	[type="button"]:hover,
	[type="reset"]:hover,
	[type="submit"]:hover {
		background-color: #fff;
		color: var(--color-accent);
	}
}

::placeholder {
	color: var(--color-text-disabled);
}

button:disabled,
optgroup:disabled,
option:disabled,
select:disabled,
textarea:disabled,
input:disabled {
	background-color: var(--color-surface-light);
	border: 1px solid var(--color-border-medium);
	color: var(--color-text-disabled);
	cursor: not-allowed;
	opacity: 1.0;
}

@media (any-hover: hover) {

	button:disabled:hover,
	[type="button"]:disabled:hover,
	[type="reset"]:disabled:hover,
	[type="submit"]:disabled:hover {
		background-color: var(--color-surface-light);
		color: var(--color-text-disabled);
	}
}