@charset "UTF-8";

/*
========================================
  home.css
  トップページ専用スタイル
========================================
*/


/* ============================================
   sec_mv：MVエリア全体（濃紺グラデ背景）
============================================ */
.sec_mv {
	background-image: url(../images/home_mv_bg.jpg);
	background-repeat: no-repeat;
	background-position: right top; /* ★ 横位置 縦位置（px・%・left/center/right等で調整） */
	background-size: 180% auto;     /* ★ 横幅 縦幅（100%固定で縦をautoにすると縦横比を保ちながら幅に合わせる） */
}


/* ============================================
   mv_body：左テキスト＋右スライダー
============================================ */
.sec_mv_body {
	position: relative;
}

.sec_mv_inner {
	display: flex;
	align-items: stretch;
	height: 564px;
}


/* 左：テキストエリア */
.sec_mv_text_area {
	flex: 0 0 57%;
	padding: 140px 60px 60px calc((100vw - 1200px) / 2 + 20px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.sec_mv_sub {
	font-size: 1.25rem;
	font-weight: 500;
	color: #7ecfff;
	letter-spacing: 0.2em;
	margin-bottom: 20px;
}

.sec_mv_title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.50;
	margin-top: 8px;
	margin-bottom: 40px;
	letter-spacing: 0.02em;
}

.sec_mv_lead {
	font-size: 1.25rem;
	color: rgba(255,255,255,0.85);
	line-height: 1.9;
	flex: 1;
}

/* ボタン：角丸・青ドット・矢印画像 */
.sec_mv_btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	border: 1px solid rgba(255,255,255,0.7);
	border-radius: 50px;
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	padding: 18px 36px;
	letter-spacing: 0.05em;
	transition: background 0.3s, border-color 0.3s;
	align-self: flex-start;
	margin-top: 170px;
}

/* 左：青ドット */
.sec_mv_btn::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #56ace1;
	flex-shrink: 0;
}

/* 右：矢印画像 */
.sec_mv_btn::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/home_mv_btn_arrow.png) no-repeat center center;
	background-size: contain;
	flex-shrink: 0;
}

.sec_mv_btn:hover {
	background: rgba(255,255,255,0.1);
	border-color: #fff;
	color: #fff;
}


/* 右：スライダーエリア */
.sec_mv_slider_area {
	flex: 0 0 43%;
	position: relative;
	overflow: hidden;
	margin-bottom: -140px;
	z-index: 1;
}

.sec_mv_slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.mv_slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1s ease;
}

.mv_slide.is-active {
	opacity: 1;
}

.sec_mv_slide_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* スライダードット */
.sec_mv_dots {
	position: absolute;
	bottom: 28px;
	left: 32px;
	display: flex;
	gap: 10px;
	z-index: 1;
}

.mv_dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.3s;
}

.mv_dot.is-active {
	background: #56ace1;
}

/* 創業バッジ */
.sec_mv_badge {
	position: absolute;
	bottom: 24px;
	right: 24px;
	z-index: 1;
}

.sec_mv_badge img {
	width: 160px;
	height: 160px;
}


/* ============================================
   mv_strengths：OUR STRENGTHSエリア（濃紺ベタ）
============================================ */
.sec_mv_strengths {
	background: linear-gradient(to bottom right, #263b63, #171e42);
	position: relative;
	z-index: 0;
}

.sec_mv_strengths_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 220px 20px 100px;
}

/* 見出し＋3カラムをまとめた白背景ボックス */
.sec_strengths_box {
	background: #fff;
	border-radius: 40px;
	padding: 60px 48px 64px;
}

/* 見出しエリア */
.sec_strengths_head {
	text-align: center;
	margin-bottom: 56px;
}

.sec_strengths_en {
	font-size: 1.25rem;
	font-weight: 500;
	color: #56ace1;
	letter-spacing: 0.25em;
	margin-bottom: 14px;
}

.sec_strengths_title {
	font-size: 2rem;
	font-weight: 400;
	color: #0d1f3c;
	letter-spacing: 0.1em;
}

/* 3カラム */
.sec_strengths_cols {
	display: flex;
	gap: 0;
}

/* 各アイテム */
.sec_strengths_column {
	flex: 1;
	padding: 0 48px;
	text-align: center;
}

/* 縦線セパレーター */
.sec_strengths_column + .sec_strengths_column {
	border-left: 1px solid #e0e0e0;
}

/* アイコン */
.sec_strengths_icon {
	margin-bottom: 28px;
}

.sec_strengths_icon img {
	height: 150px;
	width: auto;
}

/* 名前 */
.sec_strengths_name {
	font-size: 1.375rem;
	font-weight: 500;
	color: #56ace1;
	margin-bottom: 20px;
	letter-spacing: 0.05em;
}

/* テキスト */
.sec_strengths_text {
	font-size: 1rem;
	color: #333;
	line-height: 1.9;
	text-align: left;
}




/* ============================================
   sec_services：対応加工
============================================ */
.sec_services {
	position: relative;
	background: #fff;
}

/* 下半分に金属パターン画像を敷く */
.sec_services::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: url(../images/home_services_bg.jpg) no-repeat center center;
	background-size: cover;
	z-index: 0;
}

.sec_services_inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 90px 20px 110px;
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

/* 左：タイトルエリア */
.sec_services_title_area {
	flex: 0 0 180px;
	padding-top: 8px;
}

.sec_services_en {
	font-size: 1.25rem;
	font-weight: 500;
	color: #56ace1;
	letter-spacing: 0.25em;
	margin-bottom: 14px;
}

.sec_services_title {
	font-size: 2rem;
	font-weight: 400;
	color: #333;
	line-height: 1.4;
}

/* 右：カードエリア */
.sec_services_cards {
	flex: 1;
	display: flex;
	gap: 24px;
}

/* カード */
.sec_services_card {
	flex: 1;
	background: #fff;
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.3s;
}

.sec_services_card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.13);
	color: inherit;
}

.sec_services_card:hover .sec_services_card_link {
	color: #4aa3df;
}

/* カード内：画像エリア */
.sec_services_card_img {
	text-align: center;
	margin-bottom: 20px;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sec_services_card_img img {
	width: auto;
	max-width: 100%;
}

/* カード内：テキストエリア */
.sec_services_card_body {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.sec_services_card_name {
	font-size: 1.125rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 12px;
}

.sec_services_card_hr {
	border: none;
	border-top: 1px solid #ccc;
	margin-bottom: 14px;
	width: 100%;
}

.sec_services_card_label {
	font-size: 0.875rem;
	color: #666;
	margin-bottom: 4px;
	line-height: 1.4;
}

.sec_services_card_spec {
	font-size: 1.125rem;
	font-weight: 600;
	color: #4aa3df;
	margin-bottom: 20px;
	line-height: 1.4;
}

/* 詳しく見る */
.sec_services_card_link {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	font-size: 0.875rem;
	color: #333;
	margin-top: auto;
	text-decoration: none;
}

.sec_services_card_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #f0f0f0;
	flex-shrink: 0;
}

.sec_services_card_btn img {
	width: 12px;
	height: auto;
}


/* ============================================
   sec_services SP
============================================ */
@media screen and (max-width: 768px) {

	.sec_services::after {
		height: 100%;
		width: 50%;
		left: auto;
		right: 0;
		bottom: 0;
		top: 0;
		transform: none;
		background: url(../images/home_services_bg_sp.jpg) no-repeat center center;
		background-size: cover;
	}

	.sec_services_inner {
		flex-direction: column;
		padding: 60px 5% 70px;
		gap: 32px;
	}

	.sec_services_title_area {
		flex: none;
		width: 100%;
		padding-top: 0;
	}

	.sec_services_en {
		font-size: 3vw;
	}

	.sec_services_title {
		font-size: 6vw;
	}

	.sec_services_cards {
		flex-direction: column;
		gap: 20px;
		width: 100%;
	}

	.sec_services_card {
		width: 100%;
		box-sizing: border-box;
	}

	.sec_services_card_img {
		height: 120px;
	}

	.sec_services_card_img img {
		max-height: 120px;
	}

	.sec_services_card_name {
		font-size: 4.5vw;
	}

	.sec_services_card_label {
		font-size: 3.5vw;
	}

	.sec_services_card_spec {
		font-size: 4.5vw;
	}

	.sec_services_card_link {
		font-size: 3.5vw;
	}
}
@media screen and (max-width: 768px) {

	.sec_mv {
		background-size: 400% auto;
		background-position: right 40% top;
	}

	.sec_mv_inner {
		flex-direction: column;
		height: auto;
	}

	/* テキストエリア */
	.sec_mv_text_area {
		flex: none;
		padding: 90px 5% 40px;
	}

	.sec_mv_sub {
		font-size: 3vw;
		margin-bottom: 16px;
	}

	.sec_mv_title {
		font-size: 6.5vw;
		margin-top: 0;
		margin-bottom: 20px;
	}

	.sec_mv_lead {
		font-size: 3.8vw;
		margin-bottom: 32px;
		flex: none;
	}

	.sec_mv_btn {
		font-size: 3.8vw;
		padding: 14px 24px;
		align-self: flex-start;
		margin-top: 0;
	}

	.sec_mv_btn::after {
		width: 16px;
		height: 16px;
	}

	/* スライダー */
	.sec_mv_slider_area {
		flex: none;
		height: 56vw;
		margin-bottom: 0;
	}

	/* 創業バッジ */
	.sec_mv_badge img {
		width: 120px;
		height: 120px;
	}

	/* OUR STRENGTHS */
	.sec_mv_strengths_inner {
		padding: 50px 5% 60px;
	}

	.sec_strengths_box {
		padding: 40px 24px 48px;
		border-radius: 16px;
	}

	.sec_strengths_head {
		margin-bottom: 36px;
	}

	.sec_strengths_en {
		font-size: 3.8vw;
	}

	.sec_strengths_title {
		font-size: 5.5vw;
	}

	.sec_strengths_cols {
		flex-direction: column;
		gap: 0;
	}

	.sec_strengths_column {
		padding: 0 0 36px;
	}

	.sec_strengths_column:first-child {
		padding-top: 0;
	}

	.sec_strengths_column + .sec_strengths_column {
		border-left: none;
		border-top: 1px solid #e0e0e0;
		padding-top: 36px;
	}

	.sec_strengths_icon img {
		height: 72px;
	}

	.sec_strengths_name {
		font-size: 5vw;
		margin-bottom: 14px;
	}

	.sec_strengths_text {
		font-size: 3.8vw;
	}
}

/* ============================================
   sec_flow：ご依頼の流れ
============================================ */
.sec_flow {
	background: url(../images/home_flow_bg.jpg) no-repeat center center;
	background-size: cover;
}

.sec_flow_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 90px 20px 110px;
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

/* 左：タイトルエリア */
.sec_flow_title_area {
	flex: 0 0 200px;
	padding-top: 8px;
}

.sec_flow_en {
	font-size: 1.25rem;
	font-weight: 500;
	color: #56ace1;
	letter-spacing: 0.25em;
	margin-bottom: 14px;
}

.sec_flow_title {
	font-size: 2rem;
	font-weight: 400;
	color: #0d1f3c;
	line-height: 1.4;
}

/* 右：ステップエリア */
.sec_flow_steps {
	flex: 1;
}

/* 各ステップ */
.sec_flow_step {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 32px;
}

.sec_flow_step:last-child {
	margin-bottom: 0;
}

/* 左：アイコン＋縦ライン */
.sec_flow_step_left {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	position: relative;
	align-self: stretch;
}

/* 丸アイコン */
.sec_flow_icon {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: #56ace1;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	margin: auto 0;
}

/* 縦ライン：最後のステップ以外に表示 */
.sec_flow_step:not(:last-child) .sec_flow_step_left::after {
	content: '';
	position: absolute;
	top: 65px;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	background: #56ace1;
	height: calc(100% + 32px);
}

/* 右：白ボックス */
.sec_flow_box {
	flex: 1;
	background: #fff;
	border-radius: 20px;
	padding: 40px;
	display: flex;
	align-items: center;
	gap: 0;
	min-height: 65px;
}

/* 見出し */
.sec_flow_box_title {
	font-size: 1.5rem;
	font-weight: 400;
	color: #0d1f3c;
	flex: 0 0 160px;
	white-space: nowrap;
}

/* 区切り線 */
.sec_flow_box_divider {
	width: 2px;
	height: 40px;
	background: #8d91a9;
	margin: 0 40px;
	flex-shrink: 0;
}

/* テキスト */
.sec_flow_box_text {
	font-size: 1rem;
	color: #333;
	line-height: 1.8;
	flex: 1;
}


/* ============================================
   sec_flow SP
============================================ */
@media screen and (max-width: 768px) {

	.sec_flow_inner {
		flex-direction: column;
		padding: 60px 5% 70px;
		gap: 32px;
	}

	.sec_flow_title_area {
		flex: none;
		width: 100%;
		padding-top: 0;
	}

	.sec_flow_en {
		font-size: 3.8vw;
	}

	.sec_flow_title {
		font-size: 6vw;
	}

	.sec_flow_step {
		gap: 16px;
		margin-bottom: 20px;
		align-items: stretch;
	}

	.sec_flow_step_left {
		flex: 0 0 50px;
		padding-top: 0;
	}

	.sec_flow_icon {
		width: 50px;
		height: 50px;
		font-size: 5vw;
		margin: auto 0;
		position: relative;
		z-index: 1;
	}

	.sec_flow_step:not(:last-child) .sec_flow_step_left::after {
		top: calc(50% - 25px);
		height: calc(100% + 20px + 25px);
	}

	.sec_flow_box {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px;
		gap: 12px;
		border-radius: 16px;
	}

	.sec_flow_box_title {
		font-size: 5vw;
		flex: none;
	}

	.sec_flow_box_divider {
		width: 40px;
		height: 2px;
		margin: 0;
	}

	.sec_flow_box_text {
		font-size: 3.8vw;
		flex: none;
	}
}

/* ============================================
   sec_news：お知らせ
============================================ */
.sec_news {
	background: #fff;
}

.sec_news_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 90px 20px 110px;
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

/* 左：タイトル＋ボタン */
.sec_news_title_area {
	flex: 0 0 200px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.sec_news_en {
	font-size: 1.25rem;
	font-weight: 500;
	color: #56ace1;
	letter-spacing: 0.25em;
	margin-bottom: 14px;
}

.sec_news_title {
	font-size: 2rem;
	font-weight: 400;
	color: #0d1f3c;
	line-height: 1.4;
	margin-bottom: 48px;
}

/* 一覧を見るボタン */
.sec_news_btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	border: 1px solid #0d1f3c;
	border-radius: 50px;
	background: #fff;
	color: #0d1f3c;
	font-size: 1rem;
	font-weight: 500;
	padding: 16px 28px;
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: background 0.3s, color 0.3s;
}

.sec_news_btn:hover {
	background: #0d1f3c;
	color: #fff;
}

.sec_news_btn:hover .sec_news_btn_arrow img {
	filter: invert(1) brightness(10);
}

/* ボタン左：青ドット */
.sec_news_btn_dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #56ace1;
	flex-shrink: 0;
}

/* ボタン右：矢印 */
.sec_news_btn_arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sec_news_btn_arrow img {
	width: 20px;
	height: auto;
}

/* 右：お知らせリスト */
.sec_news_list {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* 各アイテム */
.sec_news_item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border-radius: 20px;
	padding: 24px 28px;
	box-shadow: 0 3px 12px rgba(0,0,0,0.06);
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.3s;
}

.sec_news_item:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.1);
	color: inherit;
}

/* 日付＋ドットのまとまり */
.sec_news_item_meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

/* ドット */
.sec_news_item_dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #56ace1;
	flex-shrink: 0;
}

/* 日付 */
.sec_news_item_date {
	font-size: 1rem;
	color: #56ace1;
	font-weight: 500;
	white-space: nowrap;
	letter-spacing: 0.05em;
}

/* タイトル */
.sec_news_item_title {
	font-size: 1rem;
	color: #0d1f3c;
	flex: 1;
	line-height: 1.6;
}

/* 丸矢印アイコン */
.sec_news_item_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f0f2f8;
	flex-shrink: 0;
}

.sec_news_item_btn img {
	width: 12px;
	height: auto;
}


/* ============================================
   sec_news SP
============================================ */
@media screen and (max-width: 768px) {

	.sec_news_inner {
		flex-direction: column;
		padding: 60px 5% 70px;
		gap: 36px;
	}

	.sec_news_title_area {
		flex: none;
		width: 100%;
	}

	.sec_news_en {
		font-size: 3.8vw;
	}

	.sec_news_title {
		font-size: 6vw;
		margin-bottom: 32px;
	}

	.sec_news_btn {
		font-size: 3.8vw;
		padding: 14px 24px;
	}

	.sec_news_list {
		width: 100%;
		gap: 12px;
	}

	.sec_news_item {
		padding: 20px;
		border-radius: 16px;
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		gap: 6px 12px;
		align-items: center;
	}

	.sec_news_item_meta {
		grid-column: 1;
		grid-row: 1;
	}

	.sec_news_item_title {
		font-size: 3.8vw;
		grid-column: 1;
		grid-row: 2;
		padding-left: 0;
	}

	.sec_news_item_btn {
		grid-column: 2;
		grid-row: 1 / 3;
		align-self: center;
	}

	.sec_news_item_date {
		font-size: 3.5vw;
	}
}


/* ============================================
   sec_recruit：採用バナー（TOP限定・footer.php）
============================================ */
.sec_recruit {
	background: #f5f6f7;
	margin-top: 80px;
}

.sec_recruit + footer .footer_body {
	margin-top: 0;
}

.sec_recruit_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.sec_recruit_box {
	border: 1px solid #dddee1;
	border-radius: 12px;
	padding: 28px 36px;
	display: flex;
	align-items: center;
	gap: 32px;
	background: #fff;
}

.sec_recruit_body {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.sec_recruit_en {
	font-size: 0.75rem;
	color: #56ace1;
	letter-spacing: 0.2em;
}

.sec_recruit_title {
	font-size: 1.125rem;
	font-weight: 400;
	color: #0d1f3c;
	letter-spacing: 0.03em;
}

.sec_recruit_text {
	font-size: 0.875rem;
	color: #999;
	line-height: 1.6;
}

.sec_recruit_action {
	flex-shrink: 0;
}

/* ============================================
   sec_recruit SP
============================================ */
@media screen and (max-width: 768px) {
	.sec_recruit_inner {
		padding: 30px 5%;
	}

	.sec_recruit_box {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px 20px;
		gap: 20px;
	}

	.sec_recruit_body {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.sec_recruit_title {
		font-size: 4.2vw;
	}
}