@charset "utf-8";

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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, font,
img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
	margin: 0;
	padding: 0;
	font-size: 1em;
	border: 0;
	background: transparent;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

@media all and (max-width: 389px) {
	html {
		font-size: calc(1000vw / 390);
	}
}

body,
table,
input,
textarea,
select,
option {
	font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

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

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

address {
	font-style: normal;
}

a,
a:link,
a:visited,
a:hover,
a:active {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.75;
}

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

button {
	padding: 0;
	color: inherit;
	border: 0;
	background: none;
	cursor: pointer;
}

:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

chrome_annotation {
	border: none !important;
}

/*------------------------------------------------------------
  Utility
------------------------------------------------------------*/
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}

.flex,
.flexA,
.flexB,
.flexC {
	display: flex;
	flex-wrap: wrap;
}

.flexA {
	justify-content: space-around;
}

.flexB {
	justify-content: space-between;
}

.flexC {
	justify-content: center;
}

.pc {
	display: block;
}

.sp {
	display: none !important;
}

/*------------------------------------------------------------
  Effects / Animation
------------------------------------------------------------*/
.zoomHover {
	overflow: hidden;
}

.zoomHover img {
	transform: scale(1);
	transition: transform 1.2s ease;
}

.zoomHover:hover img {
	transform: scale(1.08);
}

.fadeInUp {
	opacity: 0;
	transform: translate3d(0, 20px, 0);
}

.fadeInUp.is-in {
	animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
	}
}

/*------------------------------------------------------------
  Layout
------------------------------------------------------------*/
body {
	min-width: 1200px;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.8;
	color: var(--brown);
	background: #f4ddaa;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

body.is-menuOpen {
	overflow: hidden;
}

#container {
	position: relative;
	overflow: hidden;
	text-align: left;
}

#main {
	position: relative;
}

.inner {
	width: min(1120px, calc(100% - 8rem));
	margin-right: auto;
	margin-left: auto;
}

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

@media all and (max-width: 896px) {
	body {
		min-width: auto;
		font-size: 1.4rem;
	}

	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}

	.inner {
		width: calc(100% - 4rem);
	}

	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}

	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
}
