@charset 'utf-8';

@font-face {
	font-family: 'Noto Serif JP';
	src: url('fonts/NotoSerifJP-Regular.off') format("off");
	font-display: swap;
}

/* ---------------------------------
	0. Reset
--------------------------------- */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, a, blockquote,
pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small,
strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label,
input, select, textarea, button, legend, table, caption, tbody, tfoot, thead,
tr, th, td, article, aside, canvas, details, figcaption, figure, footer,
header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: inherit;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

body {
	font-size: 16px;
	line-height: 1;
}

article, aside, details, figcaption, figure, picture,
footer, header, hgroup, menu, nav, section {
	display: block;
}

ul, ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, button, textarea, select {
	font-family: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

label, button {
	cursor: pointer;
	user-select: none;
}

/* ---------------------------------
	1. Common CSS
--------------------------------- */
:root {

	--color-main: #5a9bce;
	--color-light: #b0cfe1;
	--color-accent: #d06b5b;
	--color-background: #eff5f8;
	--color-text: #132746;
	--font-mincho: 'Noto Serif JP', serif;
}

body {
	color: var(--color-text);
	font-family: var(--font-mincho), serif;
	background: #f7f7f7;
}

a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	opacity: 0.6;
}

p {
	line-height: 1.5;
}

::placeholder {
	color: #d3d3d3;
}

img {
	width: 100%;
	margin: 0 auto;
	display: block;
}

@media (max-width: 640px) {

	body {
		font-size: 14px;
	}

}

/* ---------------------------------
	2. Parts CSS
--------------------------------- */

.main-contents {
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
	box-shadow: 0 3px 6px rgba(0,0,0,0.18);
}

/*** header ***/

.lp-header-inner {
	padding: 0.75rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lp-header-inner h1 {
	max-width: 8rem;
}

.lp-header-inner img {
	max-width: 100%;
}

.lp-header-button {
	max-width: 140px;
	width: 100%;
}

.lp-header-button a {
	width: 100%;
	padding: 1rem;
	position: relative;
	text-align: center;
	color: #fff;
	background: var(--color-accent);
}

@media (min-width: 768px) {

	.lp-header-inner h1 {
		max-width: 12rem;
	}

	.lp-header-button {
		max-width: 160px;
	}

}

/*** reserve-button ***/

.reserve-button {
	padding: 0 1rem;
	text-align: center;
}

.reserve-button a {
	width: 100%;
	margin-bottom: 0.75rem;
	padding: 1rem 2rem;
	position: relative;
	color: #fff;
	font-size: 1.25em;
	background: var(--color-accent);
}

.reserve-button span {
	margin-bottom: 0.75rem;
	display: block;
	font-size: 0.75em;
}

.reserve-button small {
	font-size: 12px;
	letter-spacing: -0.75px;
}

.first-inner {
	position: relative;
}

.first-inner .reserve-button {
	position: absolute;
	bottom: 2rem;
}

@media (min-width: 480px) {

	.reserve-button a {
		padding: 1.5rem 2rem;
	}

	.reserve-button small {
		font-size: 14px;
		letter-spacing: initial;
	}

	.first-inner .reserve-button {
		bottom: 5.5rem;
	}

}

/* form */

.lp-reserve {
	background: var(--color-background);
}

.lp-reserve-inner {
	padding: 0 1rem 5rem;
}

.contact-form {
	padding: 1rem 1rem 2.5rem;
	background: #fff;
}

.contact-form-list dt {
	padding: 1rem 0 0.5rem;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: repeat(2, max-content);
	align-items: center;
}

.contact-form-list dt::before {
	padding: 0.5rem;
	display: inline-block;
	color: #fff;
	font-size: 0.75em;
}

.contact-form-list dt.required::before {
	content: '必須';
	background: var(--color-accent);
}

.contact-form-list dt.any::before {
	content: '任意';
	background: #d5d5d5;
}

.contact-form-list dd {
	padding: 0.5rem 0 1rem;
}

.contact-form-list input,
.contact-form-list textarea,
.contact-form-list select {
	width: 100%;
	padding: 1rem 0.5rem;
	border: 1px solid #333;
}

.contact-form-list input,
.contact-form-list textarea {
	font-size: 16px;
}

.contact-form-list input:focus,
.contact-form-list textarea:focus,
.contact-form-list select:focus {
	background: #f7f7f7;
}

.contact-form-list input[type="checkbox"],
.contact-form-list input[type="radio"] {
	display: none;
}

.contact-form-list input[type="checkbox"] + span,
.contact-form-list input[type="radio"] + span {
	width: 100%;
	padding: 1rem 0.5rem;
	border: 1px solid #333;
	display: block;
	text-align: center;
}

.contact-form-list input[type="checkbox"]:checked + span,
.contact-form-list input[type="radio"]:checked + span {
	background: var(--color-background);
}

.contact-form-list input.contact-age {
	margin-right: 0.5rem;
	width: 7.5rem;
}

.contact-form-list textarea {
	height: 10rem;
}

.inquiry-category-columns {
	display: flex;
	gap: 0.5rem;
}

.inquiry-category-columns label {
	width: 50%;
}

.reserve-date {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.reserve-date:not(:last-child) {
	margin-bottom: 1rem;
}

.reserve-date input {
	width: 10rem;
}

.reserve-date select {
	width: 3rem;
}

.privacy-policy {
	margin-bottom: 1rem;
	padding: 2.5rem 1rem;
	font-size: 0.9em;
	background: var(--color-background);
}

.privacy-policy-contents {
	height: 12rem;
	padding: 1rem;
	box-shadow: 0 2px 5px rgba(0,0,0,.2) inset;
	overflow-y: scroll;
	background: #fff;
}

.privacy-policy > p {
	margin-bottom: 1rem;
}

.attention {
	font-weight: bold;
	text-align: center;
}

.privacy-policy-wrap {
	line-height: 1.4;
}

.privacy-policy-wrap h2 {
	margin-top: 0.5rem;
	font-weight: bold;
}

.privacy-policy-wrap li {
	margin: 0 0 0 1rem;
}

.privacy-policy-wrap ol li {
	list-style: decimal;
}

.text-link {
	color: #2ea7e0;
	text-decoration: underline;
}

.note {
	margin-bottom: 2.5rem;
	font-size: 0.9em;
}

.submit-button {
	text-align: center;
}

.submit-button button,
.submit-button a {
	max-width: 360px;
	width: 100%;
	padding: 1rem 2rem;
	box-shadow: 0 5px 0 0 #b17302;
	transition: 0.3s;
	color: #fff;
	text-align: center;
	font-weight: bold;
	background: var(--color-accent);
}

.submit-button button:hover,
.submit-button a:hover {
	box-shadow: none;
	transform: translateY(5px);
}

input[type="date"],
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
	-webkit-appearance: none;
	border-radius: 0;
}

@media (max-width: 640px) {

	.lp-reserve-inner {
		padding: 0 0.5rem 5rem;
	}

	.contact-form {
		padding: 1rem 0.5rem 2.5rem;
	}

	.reserve-date span:first-child {
		width: 100%;
	}

	.privacy-policy {
		padding: 2.5rem 0.5rem;
	}

}

/* fixed-button */

.fixed-cv-wrap {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 10;
}

.fixed-cv-button {
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
	box-shadow: 0px -4px 1px -4px rgba(0, 0, 0, 0.5);
}

.fixed-cv-button a {
	padding: 0.75rem 0.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	letter-spacing: 0.75px;
	font-size: 1rem;
}

.fixed-cv-button a span {
	width: 100%;
	margin-top: 0.25rem;
	display: block;
	text-align: center;
	font-size: 0.75rem;
}

.fixed-cv-button a:hover {
	opacity: 1;
}

.tel-button {
	color: #f9f9f9;
	background: var(--color-accent);
}

.mail-button {
	color: #f9f9f9;
	background: var(--color-accent);
}

.fixed-cv-button svg {
	width: 1.25rem;
	margin-right: 0.5rem;
	fill: none;
}

.mail-button svg {
	stroke: #f9f9f9;
}

/*** reserve-complete ***/

.reserve-complete {
	height: 100vh;
	background: var(--color-background);
}

.content-inner {
	padding: 5rem 1rem;
}

.content-inner h1 {
	margin-bottom: 1rem;
	font-size: 1.25em;
	font-weight: bold;
	text-align: center;
}

.content-inner h2 {
	margin-bottom: 2.5rem;
	font-size: 1.25em;
	font-weight: bold;
	text-align: center;
}

.content-inner p:not(:last-child) {
	margin-bottom: 1rem;
}

.content-inner .submit-button {
	margin-top: 2.5rem;
}