@charset "UTF-8";

/* =============================================================================

Reset CSS

上記はここに記述する

============================================================================= */
body,h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ol,ul,li,td,th,figure {
	margin:0;
}
dl,dt,dd {
	padding: 0;
}
ol,ul,li {
	padding: 0;
	list-style: none;
}
img,
picture {
	max-width: 100%;
	display: block;
}
img {
	border-style: none;
}
a {
	text-decoration:none;
	color: inherit;
	text-decoration-skip-ink: auto;
}
input,select,button,optgroup,textarea {
	font-family: inherit;
	appearance: none;
	background: none;
	border: none;
	outline: 0;
	margin: 0;
	padding: 0;
	border-radius: 0;
}
button,select,input[type="submit"] {
	cursor: pointer;
	text-transform: none;
}


/* =============================================================================

Base CSS

・サイト用htmlベースCSS

上記はここに記述する

============================================================================= */
html {
	font-size: 100px;
	font-feature-settings : "palt";
	-webkit-font-smoothing: subpixel-antialiased;
	scroll-behavior: smooth;
	@media (width > 767px) {/* PC */
		font-size: clamp(var(--pc-min-size) / var(--base-size) * 10px,10 / var(--variable-length),10px);
	}
	@media (width <= 767px) {/* SP */
		-webkit-text-size-adjust: 100%;
		/* font-size: calc(10 / var(--variable-length)); */
		font-size: calc(100vw / 37.5);
	}
	@media (orientation: landscape) {
		margin-inline-start: env(safe-area-inset-left);
	}
}
body {
	font-family: var(--ff-default);
	letter-spacing: 0;
	font-weight: 400;
	color: var(--cc-black-A);
	overflow-wrap: break-word;
	@media (width > 767px) {/* PC */
		min-width: 1024px;
		font-size: 1.6rem;
		line-height: calc(36/16);
	}
	@media (width <= 767px) {/* SP */
		font-size: 1.3rem;
		line-height: calc(30/13);
	}
}

/* Scroll Margin
----------------------------------------------------------------------------- */
:where([id]:target, input, textarea, select, button) {
	scroll-margin-top:calc(var(--scroll-margin-top) * .1rem);
}

/* media pointer
----------------------------------------------------------------------------- */
@media (pointer: fine), (hover: hover) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}
@media not (pointer) {
	* {
		-webkit-tap-highlight-color: transparent;
	}
}

/* 721px以上は消す */
@media (width > 767px) {/* PC */
	._sp {
		display:none!important;
	}
}

/* 720px以下は消す */
@media (width <= 767px) {/* SP */
	._pc {
		display:none!important;
	}
}

/* hover basics
----------------------------------------------------------------------------- */
@media(hover) {
	:where(a[href]:not([class],[href^="tel:"])) {
		transition: opacity .5s;
	}
	:where(a[href]:not([class],[href^="tel:"])):hover {
		opacity: .6;
	}
}

/* IMG Auto Size
----------------------------------------------------------------------------- */
:where(img) {
	display: block;
	max-width: 100%;
	height: auto;
}

html:not(.wf-active) body {
	opacity: 0;
}