@charset "UTF-8";

/*=====================================
    ホクショー辻茂株式会社 2020.
	top用CSS
=====================================*/
#h_con {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 20;
	background-color: rgba(255, 255, 255, 0.5);
	color: #ffffff;

	background-color: rgba(255, 255, 255, 0) !important;
	border-bottom: solid 1px !important;
	color: white;
}

#h_con nav ul li a {
	color: #ffffff;
}

@media only screen and (max-width: 1259px) {
	#h_con {
		border-bottom: none !important;
	}
}

/*-------------------------------------
	contents 01　ファーストビュー  
-------------------------------------*/
.visually-hidden {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* スライダー */
/* メインボックス共通 */
.mainvisual_box {
	position: relative;
	width: 100%;
	/* height: calc(100vh - 120px); */
	height: 100dvh;
	overflow: hidden;
}

/* スライダーテキスト */
.slide-text {
	position: absolute;
	top: calc((100dvh - 80px) / 2 + 80px);
	left: 50%;
	z-index: 10;
	transform: translate(-50%, -50%);
	text-align: center;
}

/* スライダーテキストの画像 */
.slide-text img {
	opacity: 0;
	transition: opacity 2s ease-in-out;
	max-height: 40vh;
}

/**スマホ用*/
@media screen and (max-width: 429px),
only screen and (-webkit-min-device-pixel-ratio: 3) {
	.slide-text img {
		width: 80vw;
	}
}

.slide-text img.visible {
	opacity: 1;
}

.container_03 {
	position: absolute;
	bottom: 5vh;
	left: 50%;
	z-index: 10;
	transform: translate(-50%, -50%);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mouse_03 {
	width: 20px;
	height: 30px;
	border: 1px solid #fff;
	border-radius: 10px;
	transform: translate(-50%, -50%);
}

.mouse_03::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 50%;
	width: 1px;
	height: 6px;
	background-color: #fff;
	transform: translateX(-50%);
	animation: scroll_03 2s infinite;
}

@keyframes scroll_03 {
	0% {
		top: 5px;
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	100% {
		top: 15px;
		opacity: 0;
	}
}

/* スライダー共通 */
.slider {
	position: relative;
	width: 100%;
	height: 100dvh;
	overflow: hidden;
}

.slick-img {
	position: relative;
	width: 100%;
	height: 100dvh;
	overflow: hidden;
}

.slick-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* スライド共通 */

@keyframes zoomOut {
	0% {
		transform: scale(1.4);
	}

	100% {
		transform: scale(1);
	}
}

/**スマホ用*/
@media screen and (max-width: 429px),
only screen and (-webkit-min-device-pixel-ratio: 3) {
	@keyframes zoomOut {
		0% {
			transform: scale(1.4);
		}

		100% {
			transform: scale(1);
		}
	}
}

.add-animation {
	animation: zoomOut 10s linear 0s normal both;
}

/* スライドの中心 */
.slider_01 {
	object-position: 30% center;
}

.slider_02 {
	object-position: 60% 60%;
}

.slider_03 {
	object-position: 60% center;
}

.slider_04 {
	object-position: 40% center;
}

/**スマホ用*/
@media screen and (max-width: 429px),
only screen and (-webkit-min-device-pixel-ratio: 3) {
	.slider_01 {
		object-position: center bottom;
	}

	.slider_02 {
		object-position: center bottom;
	}

	.slider_03 {
		object-position: right center;
	}

	.slider_04 {
		object-position: right bottom;
	}
}






/* アイコンエリア */
#about_company {
	padding-top: 100px;
	margin: auto;
	text-align: center;
	font-family: var(--font-main);
}

#about_company h2 {
	margin-bottom: 20px;
	font-size: 32px;
}

.text_bl {
	color: #3B77E2;
}

#about_company .con_text2 {
	max-width: 1200px;
	width: 100%;
}

.container_box {
	display: flex;
	justify-content: space-between;
	padding: 20px;
	margin-top: 100px;
}

.link-box {
	text-align: center;
	text-decoration: none;
	color: black;
	width: 18%;
	max-width: 208px;
}

.link-box_img {
	overflow: hidden;
}

.link-box_img img {
	display: block;
	transition: .3s;
	height: 100%;
	object-fit: cover;
}

.link-box:hover .link-box_img img {
	transform: scale(1.05);
}

.link-box p {
	font-weight: bold;
}

/**スマホ用*/
@media only screen and (max-width: 429px),
only screen and (-webkit-min-device-pixel-ratio: 3) {
	#about_company h2 {
		font-size: 20px;
	}

	.container_box {
		flex-wrap: wrap;
		gap: 10px;
	}

	.link-box {
		width: calc(50% - 10px);
	}

	.link-box img {
		height: auto;
	}

	.con_text2 .container_box p {
		padding-bottom: 10px;
		margin-top: 0;
	}
}