@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;
}
svg {
	overflow: visible;
}
img,
picture {
	max-width: 100%;
	display: block;
}
img {
	border-style: none;
	height: auto;
}
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 {
	scroll-behavior: smooth;
	@media (width > 767px) {/* PC */
		font-size: clamp(var(--pc-min-size) / var(--base-size) * 1px, 1 / var(--variable-length), 1px);
	}
	@media (width <= 767px) {/* SP */
		font-size: calc(100vw / var(--sp-base-size));
		-webkit-text-size-adjust: 100%;
	}
	@media (orientation: landscape) {
		margin-inline-start: env(safe-area-inset-left);
	}
}
body {
	background-color: #FCFCFC;
	font-family: var(--ff-default);
	letter-spacing: 0;
	font-weight: 400;
	color: var(--cc-black-A);
	-webkit-font-smoothing: subpixel-antialiased;

	@media (width > 767px) {/* PC */
		min-width: 1024px;
		font-size: 16rem;
		line-height: calc(36/16);
	}
	@media (width <= 767px) {/* SP */
		font-size: 13rem;
		line-height: calc(30/13);
	}
}

/* Text Elements
----------------------------------------------------------------------------- */
:where(p, h1, h2, h3, h4, h5, h6, li, dt, dd, td, th, figcaption, blockquote, pre, address) {
	/* 約物の半角化（句読点などのスペース調整） */
	font-feature-settings: "palt";

	/* 長い英単語でのレイアウト突き抜けの防止 */
	overflow-wrap: anywhere;
	word-break: normal;

	/* 日本語の禁則処理（子音や」、。が行頭にこないように） */
	line-break: strict;
}

/* 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;
	}
}

/* 768px以上（PC）ではSP用要素を非表示 */
@media (width > 767px) {/* PC */
	._sp {
		display:none!important;
	}
}

/* 767px以下（SP）ではPC用要素を非表示 */
@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;
	}
}