/*----Font setting----*/

@font-face {
	font-family: "Local Noto Sans JP";
	src: local("Noto Sans JP");
}

body {
	font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
	font-feature-settings: "palt" 1;
	font-size: 16px;
	font-feature-settings: "palt 1";
	font-kerning: normal;
	text-spacing-trim: space-all;
	text-box-trim: trim-both;
}

.material-symbols-outlined {
	display: inline-flex;
	vertical-align: bottom;
	opacity: 0.7;

}

.material-symbols-outlined:hover {
	opacity: 1;
}

/*----Font setting----*/

/*----CSS Variables----*/
[data-theme="light"] {
	--bg: #ffffff;
	--text: #2b2a2a;
	--link: #2b2a2a;
	--link-hover: #d47171;
}

[data-theme="dark"] {
	--bg: #000000;
	--text: #ffffff;
	--link: #ffffff;
	--link-hover: #d47171;
}

/*----CSS Variables----*/

/*----Link setting----*/
a:link {
	color: var(--link);
	text-decoration: none;
}

a:visited {
	color: var(--link);
	text-decoration: none;
}

a:hover {
	color: var(--link-hover);
	text-decoration: none;
}

a:active {
	color: var(--link-hover);
	text-decoration: none;
}

/*----Basic tags----*/
hr {
	margin: 0;
	padding: 0;
	height: 0px;
	border: none;
}

hr {
	border: 1px inset #666;
	padding-block: 0.01rem;
	margin-block: 1rem;
}

main h3 {
	border-bottom: 1px solid #ccc;
	padding-bottom: 0.5rem;
	font-size: 1.2rem;
}

h2 {
	position: relative;
	font-family: Arial;
	font-size: 3rem;
	letter-spacing: -4px;
	border-top: 1px solid #f00;
	padding-bottom: 0;
	color: #afafaf;
	margin-block: 4.2rem;
}

h2:after {
	position: absolute;
	top: -1.6rem;
	left: -1px;
	letter-spacing: 0px;
	display: inline-block;
	content: attr(data-word);
	pointer-events: none;
	font-size: 1rem;
	color: #fff;
	background-color: #f00;
	padding: 0.2rem;
	;
}

h3 {
	font-size: 1.4rem;
	margin-bottom: 2rem;
}

/*----Basic tags----*/

/*----headder----*/
.navbar {
	position: sticky !important;
	top: 0;
	z-index: 1050;
}

/*----footer----*/
.footer {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #fff;
}

.supported {
	font-size: 0.65rem;
}

.copyright {
	font-size: 0.65rem;
}

/*----News page----*/
#news-list article {
	border-bottom: 1px solid #ccc;
	padding-block: 4rem;
}

#news-list article .news-date {
	font-size: 0.8rem;
	color: orangered;
}

/*---- index----*/
.hero-area {

	display: flex;
	align-items: center;
	min-height: 100dvh;
	background-image: url('../images/hero.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #ffffff;
	text-align: center;
	padding: 100px 0;
	background-image: url('../images/visual1.webp');
	background-size: 60vw auto;
	background-position: top left;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

#introduction h1 {
	font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho Pro", sans-serif;
	color: #2c2828;
	padding-inline: 2rem;
	text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.4), 1px 1px 2px rgba(255, 255, 255, 0.4), -1px -1px 2px rgba(255, 255, 255, 0.4);
}


/*----about page----*/
.company-profile .col-md-6 {

	padding: 0.6rem;
}

.company-profile ul {
	margin: 0;
	padding: 0;
}

.company-profile ul li {
	list-style: none;
	padding-bottom: 0.4rem
}

.timeline {
	list-style: none;
}

.timeline>li {
	margin-bottom: 60px;
}


/* --- conatct --- */
form .badge {
	margin-left: 0.2rem;
}

/* --- service --- */
.service section {
	padding-block: 1.5rem
}



/* for Desktop */
@media (min-width : 640px) {
	.timeline>li {
		overflow: hidden;
		margin: 0;
		position: relative;
	}

	.timeline-date {
		width: 110px;
		float: left;
		margin-top: 20px;
		font-size: 1.1rem;
	}

	.timeline-content {
		width: 75%;
		float: left;

		border-bottom: 1px dashed #e7e7e7;
		padding-block: 0.6rem;
		padding-left: 30px;
		min-height: 4rem;
	}

	.timeline-content:before {
		content: '';
		width: 12px;
		height: 12px;
		background: #c16f6f;
		position: absolute;
		left: 106px;
		top: 24px;
		border-radius: 100%;
	}
}