@charset "UTF-8";

/* メインビジュアル */
/* メインビジュアルの全体 */
/* スライダーのスタイル */
.slider {
	display: flex;
	width: 100%;
	height: 800px;
	/* 高さは必要に応じて調整 */
	position: relative;
	transition: transform 1s ease;
}

/* スライド全体 */
.slide {
	flex: 0 0 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	/* 相対位置に設定 */
}

.slide img.slide-image {
	width: 100%;
	height: 800px;
	object-fit: cover;
	/* 画像を絶対配置 */
	top: 0;
	left: 0;
	z-index: 1;
}

/* デフォルトはPC画像を表示 */
.slide-image.mobile-image {
	display: none;
}

/* ノートパソコン向け */
@media (min-width: 1024px) and (max-width: 1440px) {
	.slider {
		height: 600px !important;
	}

	img.slide-image {
		height: 600px !important;
	}
}

/* 画像レイヤー（背景画像） */
/* 文字画像レイヤー（テキスト画像） */
.slide-text-layer {
	position: absolute;
	/* 文字画像も絶対配置 */
}

/* 各スライドのテキストレイヤーの位置調整 */
.text-layer-1 {
	top: 5%;
	left: 50%;
	width: 60%;
	transform: translateX(-50%);
	z-index: -1;
	/* 中央揃え */
}

.text-layer-2,
.text-layer-3 {
	top: 60%;
	left: 50%;
	width: 60%;
	transform: translateX(-50%);
	/* 中央揃え */
	z-index: 2;
}

/* セクション共通設定 */
/* セクションの基本設定 */
.section-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 100px;
	/* 背景色 */
	overflow-x: hidden;
	/* 横スクロールを防ぐ */
	position: relative;
	height: 500px;
	box-sizing: content-box;
	position: relative;
	z-index: 6;
}

.section-content:nth-child(odd) {
	background-color: #fff;
	/* 白色 */
}

.section-content:nth-child(even) {
	background-color: #FAFAFB;
	/* グレー */
}

.section-content h2 {
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
}

.section-content p {
	text-align: left;
	margin-bottom: 20px;
}

/* 奇数セクション（1, 3, 5...）の背景色 */
/* 偶数セクション（2, 4, 6...）の背景色 */
/* 2カラムレイアウト */
.two-column {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.two-column .text-column {
	flex: 1;
	padding: 20px;
}

.two-column .image-column {
	flex: 1;
	text-align: center;
}

.two-column img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.section-link a {
	font-size: 1.6rem;
	color: #1F9884;
	text-decoration: none;
	position: absolute;
	bottom: 0px;
	z-index: 10;
}

/* セクション1 */
#section1 {
	background-image: url("../images/rainbow.jpg");
	background-repeat: no-repeat;
	width: 746px;
	margin: 5% auto;
	padding: 5%;
}

#section1 p {
	text-align: center;
}

#section1 .bigtxt {
	text-align: center;
}

.bigtxt {
	font-size: 3.5rem !important;
	font-weight: 800;
	margin-bottom: 1rem;
}

/* section2 の設定 */
.bigtxt2 {
	font-size: 3rem !important;
	font-weight: 800;
}

.hitomono {
	font-size: 24px;
	font-weight: 800;
	color: #1F9884;
}

#section2 {
	position: relative;
	background-image: url("../images/what_m.png");
	/* セクションの背景画像 */
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 150px 0;
	/* 上下の余白 */
	height: 784px;
}

/* セクション内のコンテンツ */
.section2-content {
	background-color: white;
	/* コンテンツの幅を設定 */
	margin: 0 auto;
	/* コンテンツを中央に配置 */
	padding: 40px;
	border: 3px solid #1F9884;
	text-align: center;
}

.section2-content h2 {
	font-size: 30px;
	margin-bottom: 20px;
}

.section2-content p {
	font-size: 18px;
	margin-bottom: 30px;
}

/* 見出しのスタイル */
/* テキストのスタイル */
/* ロゴのコンテナ */
.logo-container {
	display: grid;
	grid-template-columns: 1fr;
	/* 1列目にロゴを配置 */
	gap: 20px;
	width: 60%;
	margin: 0 auto;
	justify-items: center;
	/* 横方向にセンター配置 */
	align-items: center;
	/* 縦方向にセンター配置 */
}

.logo-container .logo-single {
	grid-column: span 1;
	/* 1列にロゴを配置 */
	justify-self: center;
}

.logo-container img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

/* 1行目のロゴ設定（1列） */
/* ロゴを4行2列に配置 */
@media (min-width: 768px) {
	.logo-container {
		grid-template-columns: 1fr 1fr;
		/* 2列に分ける */
		grid-template-rows: repeat(4, auto);
		/* 4行に分ける */
	}

	.logo-container .logo-single {
		grid-column: span 2;
		/* 1行目のロゴは2列分の幅を取る */
		justify-self: center;
	}
}

/* section3 の設定 */
.container-content-base {
	max-width: 1363px;
	width: 100%;
	display: flex;
	margin: 0 auto;
	height: 100%;
}

.background {
	position: absolute;
	/* 背景色用要素を絶対位置に配置 */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #CCE5E1;
	clip-path: polygon(0 0, 20% 0%, 48% 40%, 0% 90%);
	/* 背景にクリップパス */
	z-index: -1;
	/* コンテンツの背面に配置 */
	overflow-x: hidden;
	box-sizing: border-box;
	z-index: 1;
}

.section-base .text-area {
	width: 40%;
	position: relative;
	z-index: 2;
	/* 文字エリアを前面に */
}

.section-base .text-area .heading-image {
	width: auto;
	max-width: 500px;
	height: 120px;
	/* アスペクト比を保持 */
}

.section-base .text-area p {
	color: #333;
	margin: 40px 0;
	margin-left: 25%;
	text-align: left;
}

.section-base .buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-left: 25%;
}

.section-base .buttons a {
	font-size: 1rem;
	padding: 10px 20px;
	border: 1px solid #000;
	background: #fff;
	color: #000;
	cursor: pointer;
	text-align: center;
	transition: background 0.3s ease;
}

.section-base .buttons a:hover {
	background: #f0f0f0;
}

.section-base .image-area {
	width: 100%;
	position: relative;
}

.section-base .image-area img {
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.section-base {
		flex-direction: column;
	}

	.section-base .text-area {
		margin-right: 0;
		text-align: center;
	}

	.section-base .buttons button {
		width: 100%;
	}
}

.image-layer-container {
	position: relative;
	width: 60%;
	/* 必要に応じて調整 */
}

.background-layer-company-a {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/company-background.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	/* 最背面 */
}

.person-layer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/* 中央に配置 */
	z-index: 2;
	/* 背景画像より前面 */
	width: 40vw;

}

.person-layer img {
	/* 画像のサイズを調整 */
	height: auto;
	width: 100%;
}


.decoration-layer {
	position: absolute;
	top: 10%;
	left: 74%;
	transform: translateX(-50%);
	z-index: 3;
	/* 人物の前面 */
}

.decoration-layer-2 {
	position: absolute;
	top: 60%;
	left: 20%;
	transform: translateX(-50%);
	z-index: 3;
	/* 人物の前面 */
}

.decoration-text-layer {
	position: absolute;
	top: 50%;
	left: 70%;
	transform: translateX(-50%);
	z-index: 4;
}

/* section4 の設定 */
.background-layer-members {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/members-background.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	/* 最背面 */
}

.member-slider {
	overflow: hidden;
	/* スライダー領域の外側を隠す */
	margin: 0 auto;
	position: relative;
	z-index: 1;
	height: 100%;
	width: 80%;
}

.member-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
	will-change: transform;
	height: 100%;
}

.member-slide {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 25%;
	max-width: 25%;
	min-width: 0;
	/* Safari対策 */
	box-sizing: border-box;
	text-align: center;
	position: relative;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
}

.member-slide img {
	height: 100%;
}

.member-slide:hover img {
	opacity: 0;
}

/* ナビゲーションの矢印をスライダーの右下にまとめる */
.member-navigation {
	position: absolute;
	bottom: 10px;
	right: 10px;
	display: flex;
	gap: 10px;
	z-index: 2;
}

.member-navigation button {
	background: none;
	border: none;
	color: #2e9886;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.member-navigation button:hover {
	color: #1F9884;
}

.member-prev i,
.member-next i {
	font-size: 2rem;
}

/* section5 の設定 */
.background-layer-work {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/work-background.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	/* 最背面 */
}

/* section6 の設定 */
.background-layer-environment {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/environment-background.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	/* 最背面 */
}

/* section7 の設定 */
.background-layer-special {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/special-background.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	/* 最背面 */
}

.person-layer-special {
	position: absolute;
	top: 50%;
	left: 60%;
	transform: translate(-50%, -50%);
	/* 中央に配置 */
	z-index: 2;
	/* 背景画像より前面 */
}

/* section8 の設定 */
.background-layer-recruitinfo {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/recruitinfo-background.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	/* 最背面 */
}

/* section9 の設定 */
#section9 {
	text-align: center;
	display: flex;
	justify-content: center;
	padding: 6vh;
	/* 背景色 */
	overflow-x: hidden;
	/* 横スクロールを防ぐ */
	position: relative;
	box-sizing: content-box;
}

#section9 img {
	width: 60%;
}

/* セクション10: 最新ニュース */
#news {}

.news-section {
	text-align: center;
	color: white;
	margin: 0 auto;
	width: 100%;
	/* 背景色 */
	overflow-x: hidden;
	/* 横スクロールを防ぐ */
	position: relative;
	box-sizing: content-box;
	overflow: hidden;
}

.news-left {
	display: flex;
	align-items: flex-end;
	gap: 20px;
	margin-bottom: 20px;
}

.news-left h2 {
	color: #331107;
	font-weight: 900;
	font-size: 3.6rem;
	text-align: left;
	margin: 0;
}

.news-left p {
	color: #331107;
	font-weight: 200;
	text-align: left;
}

.news-list {
	list-style: none outside;
	margin: 0;
	padding: 0;
}

.news-list .item a {
	display: flex;
	flex-wrap: wrap;
	flex-wrap: nowrap;
	text-decoration: none;
	color: #333;
	border-bottom: 1px solid #CCC;
	padding: 20px 20px;
}

.news-list .item:first-child a {
	border-top: 1px solid #CCC;
}

.news-list .item .date {
	margin: 0;
	min-width: 140px;
	font-size: 16px;
	color: #999;
	padding: 0 20px 0 0;
}

.news-list .item .category {
	margin: 0;
	min-width: 140px;
	padding: 0 20px 0 0;
}



.news-list .item .category span {
	color: #FFF;
	text-align: center;
	display: inline-block;
	padding: 5px 20px;
	font-size: 12px;
	line-height: 1;
}

.cate-news span {
	background-color: #007bff;
}

.cate-new span {
	background-color: #1F9884;
}

.cate-new2026 span {
	background-color: #FF5733;
	/* 2026年の色 */
}

.cate-new2027 span {
	background-color: #33A1FF;
	/* 2027年の色 */
}

.cate-new2028 span {
	background-color: #FFC300;
	/* 2028年の色 */
}

.cate-new2029 span {
	background-color: #900C3F;
	/* 2029年の色 */
}

.cate-new2030 span {
	background-color: #581845;
	/* 2030年の色 */
}


.cate-career span {
	background-color: #629BAD;
}

.news-list .item .title {
	margin: 0;
	width: 100%;
	font-weight: 600;
}

.news-list .item a:hover .title {
	color: #00F;
}

@media screen and (max-width: 767px) {
	.news-list .item a {
		flex-wrap: wrap;
	}

	.news-list .item .date {
		min-width: 100px;
	}

	.news-list .item .title {
		margin-top: 10px;
	}
}

.more-news {
	text-align: center;
	margin-top: 20px;
}

.more-news-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #007BFF;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.more-news-button:hover {
	background-color: #0056b3;
}


/* 会社を知るセクション */
.section-company {
	background-color: #f9f9f9;
	padding: 40px 20px;
	text-align: center;
}

.section-company h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #333;
}

.section-company p {
	font-size: 1.2rem;
	color: #666;
	line-height: 1.6;
}

.section-company .message {
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin: 20px 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
	.section-company h2 {
		font-size: 2rem;
	}

	.section-company p {
		font-size: 1rem;
	}
}

/* ボタンのスタイル */
.button-primary {
	background-color: #1F9884;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 1.2rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.button-primary:hover {
	background-color: #17a396;
}

/* セクションの視覚的な区切り */
.section-divider {
	height: 2px;
	background-color: #e0e0e0;
	margin: 40px 0;
}



.decoration-text-layer-mem {
	position: absolute;
	margin-top: -100px;
	right: 0px;
	z-index: 6;
}


.slider .slick-arrow {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	border: none;
	outline: none;
	font-size: 0;
	position: absolute;
	z-index: 1;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
	margin: 0 20px;
}

.slider .slick-arrow::before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	border: 1px solid #09000d;
	border-width: 3px 3px 0 0;
	position: absolute;
	top: 24px;
	transform: rotate(45deg);
	opacity: 100;
}



.slider .slick-next {
	right: 0;
}

.slider .slick-prev {
	left: 0;
}

.slider .slick-next::before {
	left: 20px;
}

.slider .slick-prev::before {
	border-width: 0 0 3px 3px;
	right: 22px;
}


.dots-2 {
	position: relative;
}

.dots-2 .slick-dots li {
	display: inline-block;
}

.dots-2 .slick-dots button {
	display: block;
	width: 10px;
	height: 10px;
	margin: 6px;
	font-size: 0;
	padding: 0;
	border: 0;
	outline: none;
	cursor: pointer;
	background: #bcbcbc;
	border-radius: 50%;
}

.slick-dots li button:before {
	font-size: 0px !important;
}

.dots-2 .slick-dots .slick-active button {
	background: #0a467d;
}