@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;
}
address {
	font-style: normal;
}
img,
picture {
	max-width: 100%;
	display: block;
	object-fit: cover;
}
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;
	&:focus-visible {
		outline: 2px solid var(--cc-black-A);
	}
}
button,select,input[type="submit"] {
	cursor: pointer;
	text-transform: none;
}


/* =============================================================================

Base CSS

・サイト用htmlベースCSS

上記はここに記述する

============================================================================= */

/* Box Sizing
----------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

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(100vw / 37.5);
	}
	@media (orientation: landscape) {
		margin-inline-start: env(safe-area-inset-left);
	}

	opacity: 0;
	transition: opacity 0.1s ease-out;
	&.js-loaded {
		opacity: 1;
	}
}
body {
	font-family: var(--ff-default);
	letter-spacing: 0;
	font-weight: 300;
	font-style: normal;
	color: var(--cc-black-B);
	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;
}

/* Screen Reader Only
----------------------------------------------------------------------------- */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}


/* spanにあてる改行代わりのdisplay:block class
----------------------------------------------------------------------------- */
.u-break {
	display: block;
}
/* spでは改行してpcでは開業しない新しいクラス */
.u-break_sp {
	@media (width <= 767px) {/* SP */
		display: block;
	}
}
/* pcでは改行してspでは開業しない新しいクラス */
.u-break_pc {
	@media (width > 767px) {/* PC */
		display: block;
	}
}

/* 行数制限 */
._line-clamp, .line_clamp {
	display: -webkit-inline-box;
	-webkit-box-orient: vertical;
	text-align:left;
	overflow: hidden;

	&._line1 {
		-webkit-line-clamp: 1;
	}
	&._line2 {
		-webkit-line-clamp: 2;
	}
	&._line3 {
		-webkit-line-clamp: 3;
	}
	&._line4 {
		-webkit-line-clamp: 4;
	}
	&._line5 {
		-webkit-line-clamp: 5;
	}
	&._line6 {
		-webkit-line-clamp: 6;
	}
	@media (width <= 767px) {/* SP */
		&._sp-line1 {
			-webkit-line-clamp: 1;
		}
		&._sp-line2 {
			-webkit-line-clamp: 2;
		}
		&._sp-line3 {
			-webkit-line-clamp: 3;
		}
		&._sp-line4 {
			-webkit-line-clamp: 4;
		}
		&._sp-line5 {
			-webkit-line-clamp: 5;
		}
		&._sp-line6 {
			-webkit-line-clamp: 6;
		}
	}
}