
/* --------------------------------------------------- */
/* --------------------------------------------------- */
#mainvisual {
	margin-bottom: 100px;
	width: 100%;
}
#mainvisual .slider {
	width: 100%;
}
#mainvisual .slider > div {
	width: 100%;
}
#mainvisual img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}
#mainvisual img.pc {
	display: block !important;
}
#mainvisual img.mobile {
	display: none !important;
}
@media (max-width: 992px) {
	#mainvisual {
		margin-bottom: 80px;
	}
}
@media (max-width: 768px) {
	#mainvisual {
        margin-bottom: 50px;
    }
	#mainvisual .slider > div img.pc,
	#mainvisual .slider img.pc,
	#mainvisual > div img.pc,
	#mainvisual img.pc {
		display: none !important;
    }
    #mainvisual .slider > div img.mobile,
	#mainvisual .slider img.mobile,
	#mainvisual > div img.mobile,
	#mainvisual img.mobile {
        display: block !important;
    }
}
@media screen and (max-width: 768px) {
	#mainvisual .slider > div img.pc,
	#mainvisual .slider img.pc,
	#mainvisual > div img.pc,
	#mainvisual img.pc {
		display: none !important;
    }
    #mainvisual .slider > div img.mobile,
	#mainvisual .slider img.mobile,
	#mainvisual > div img.mobile,
	#mainvisual img.mobile {
        display: block !important;
    }
}
@media (max-width: 480px) {
	#mainvisual {
		margin-bottom: 40px;
	}
}
/* --------------------------------------------------- */
#sec01 {
	max-width: 1350px;
	width: 90%;
	margin: 0 auto 150px;
	padding-left: 350px;
	position: relative;
}
#sec01 .ttl-style01 {
	position: absolute;
	top: 0;
	left: 0;
	width: 330px;
}
#sec01 dl {
	background-color: #F8F8F8;
	padding: 15px;
	margin-bottom: 5px;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
#sec01 dl.js-news-card {
	cursor: pointer;
}
#sec01 dl.js-news-card:focus {
	outline: 2px solid #1E50A2;
	outline-offset: 2px;
}
#sec01 dl:hover {
	background-color: #EEF4FF;
	box-shadow: 0 2px 12px rgba(30, 80, 162, 0.08);
}
#sec01 dt {
	display: none;
}
#sec01 dd {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
#sec01 dd .news-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: left;
}
#sec01 dd .news-meta-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
#sec01 dd .news-tags-icon {
	font-size: 18px;
	color: #1E50A2;
	line-height: 1;
}
#sec01 dd .news-thumbnail {
	width: 150px;
	flex-shrink: 0;
}
#sec01 dd .news-thumbnail.is-fallback {
	height: 100px;
	background: #f2f4f7;
	border-radius: 3px;
	overflow: hidden;
}
#sec01 dd .news-thumbnail.is-fallback a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
#sec01 dd .news-thumbnail.is-fallback img {
	width: auto;
	height: auto;
	max-width: 70%;
	max-height: 70%;
	object-fit: contain;
	border-radius: 0;
}
#sec01 dd .news-thumbnail img {
	width: 100%;
	height: 100px;
	object-fit: cover;
	border-radius: 3px;
}
#sec01 dd .news-category {
	margin: 0;
}
#sec01 dd .news-category .category {
	display: inline-block;
	line-height: 130%;
	font-size: 12px;
	padding: 3px 8px;
	margin-right: 5px;
	border-radius: 3px;
	transition: all 0.3s ease;
}
#sec01 dd .news-category .category1 {
	border: #1E50A2 1px solid;
	color: #1E50A2;
	background: white;
}
#sec01 dd .news-category .category1:hover {
	background: #1E50A2;
	color: white;
}
#sec01 dd .news-category .category2 {
	border: #28a745 1px solid;
	color: #28a745;
	background: white;
}
#sec01 dd .news-category .category2:hover {
	background: #28a745;
	color: white;
}
#sec01 dd .news-category .category3 {
	border: #dc3545 1px solid;
	color: #dc3545;
	background: white;
}
#sec01 dd .news-category .category3:hover {
	background: #dc3545;
	color: white;
}
#sec01 dd p.day {
	color: #1E50A2;
	font-size: 10px;
	margin: 0;
}
#sec01 dd p.news-title {
	margin: 0;
}
#sec01 dd p.news-title a {
	color: #333;
	text-decoration: none;
}
#sec01 dd p.news-title a:hover {
	color: #1E50A2;
}
#sec01 dd p.news-excerpt {
	color: #666;
	line-height: 1.6;
	margin: 0;
}
#sec01 .btn-style01 {
	margin: 10px 0 0 auto;
}
@media (max-width: 992px) {
	#sec01 {
		padding-left: 250px;
		margin-bottom: 100px;
	}
}
@media (max-width: 768px) {
	#sec01 {
		padding-left: 0;
		margin-bottom: 60px;
	}
	#sec01 .ttl-style01 {
        position: static;
        width: auto;
    }
	#sec01 dd {
		flex-direction: column;
	}
	#sec01 dd .news-thumbnail {
		width: 100%;
	}
	#sec01 dd .news-thumbnail.is-fallback {
		height: 200px;
	}
	#sec01 dd .news-thumbnail img {
		height: 200px;
	}
	#sec01 dd .news-content {
		width: 100%;
	}
	#sec01 dd p.day {
		font-size: 9px;
	}
}
/* --------------------------------------------------- */
#sec02 {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto 150px;
}
#sec02 .ttl-style01 {
	margin-left: 5%;
}
#sec02 ul {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
#sec02 li {
	width: 24.8%;
	position: relative;
	height: 460px;
}
#sec02 li.btn1 {
	background: url("../images/top/ph01.jpg") no-repeat center;
	background-size: cover;
}
#sec02 li.btn2 {
	background: url("../images/top/ph02.jpg") no-repeat center;
	background-size: cover;
}
#sec02 li.btn3 {
	background: url("../images/top/ph03.jpg") no-repeat center;
	background-size: cover;
}
#sec02 li.btn4 {
	background: url("../images/top/ph04.jpg") no-repeat center;
	background-size: cover;
}
#sec02 li a {
	display: block;
	width: auto;
	position: absolute;
	top: 55%;
	left: 0;
	right: 0;
	bottom: 0;
	color: #fff;
	background-color: rgba(30,80,162,.8);
	padding: 25px;
	
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
#sec02 li a:hover {
	background-color: rgba(30,80,162,1);
}
#sec02 li h2 {
	font-size: 1.3em;
	font-weight: 600;
	line-height: 150%;
	min-height: 80px;
	position: relative;
	padding-left: 15px;
}
#sec02 li h2::before {
	content: "";
	font-family: 'Material Symbols Outlined';
    content: 'chevron_right';
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 12;
    vertical-align: middle;
	position: absolute;
	left: -10px;
	top: 2px;
}
#sec02 li p {
	font-size: 12px;
	line-height: 160%;
}
#sec02 .banner {
	max-width: 1300px;
	width: 95%;
	margin: 0 auto;
}
#sec02 .banner a {
	display: block;
	width: 100%;
	border: #ddd 2px solid;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
}
#sec02 .banner a:hover {
	border: #1E50A2 2px solid;
}
#sec02 .banner > a > img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: top;
}
#sec02 .banner .mobile {
	display: none;
}
/* English ACSEL banner - 左2:右3の横並び（banner01.jpg と同じ構成） */
#sec02 .banner .banner-en {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	min-height: 260px;
	background: #fff;
}
#sec02 .banner .banner-en__left {
	width: 38%;
	flex: 0 0 38%;
	min-width: 320px;
	padding: 20px 24px 20px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#sec02 .banner .banner-en__right {
	width: 62%;
	flex: 0 0 62%;
	min-width: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
}
#sec02 .banner .banner-en__right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
#sec02 .banner .banner-en__callout {
	display: inline-block;
	align-self: flex-start;
	background: #ffd54f;
	color: #000;
	font-size: 0.85em;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 8px;
	line-height: 1.4;
	margin-bottom: 10px;
	border: 2px solid #333;
	box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
#sec02 .banner .banner-en__callout strong {
	font-weight: 800;
}
#sec02 .banner .banner-en__subtitle {
	font-size: 0.7em;
	color: #555;
	margin: 0 0 4px;
	line-height: 1.4;
}
#sec02 .banner .banner-en__title {
	font-size: 2.2em;
	font-weight: 800;
	color: #1E50A2;
	line-height: 1.1;
	margin: 0 0 8px;
}
#sec02 .banner .banner-en__desc {
	font-size: 0.75em;
	color: #444;
	padding-bottom: 12px;
	margin: 0 0 14px;
	border-bottom: 2px solid #1E50A2;
	line-height: 1.5;
}
/* #sec02 ul / #sec02 li のスタイルを打ち消す（事業案内のul/liと区別） */
#sec02 .banner .banner-en__features {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(90px, 1fr));
	grid-template-rows: repeat(3, auto);
	grid-auto-rows: auto;
	align-items: start;
	gap: 6px 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
#sec02 .banner .banner-en__features li {
	width: auto !important;
	height: auto !important;
	position: static !important;
	border: 1px solid #999;
	color: #333;
	font-size: 0.7em;
	padding: 6px 8px;
	text-align: center;
	border-radius: 4px;
	line-height: 1.2;
	background: #fff;
	box-sizing: border-box;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media (max-width: 768px) {
	#sec02 .banner .banner-en {
		flex-direction: column;
		flex-wrap: wrap;
		min-height: 0;
	}
	#sec02 .banner .banner-en__left {
		width: 100%;
		flex: 1 1 auto;
		min-width: 0;
		padding: 16px;
	}
	#sec02 .banner .banner-en__features {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	#sec02 .banner .banner-en__right {
		width: 100%;
		flex: 1 1 auto;
		min-height: 220px;
	}
	#sec02 .banner .banner-en__right img {
		height: auto;
		object-fit: contain;
	}
	#sec02 .banner .banner-en__title {
		font-size: 1.8em;
	}
}
@media (max-width: 992px) {
	#sec02 {
		margin-bottom: 100px;
    }
	#sec02 li a {
		padding: 20px;
	}
	#sec02 li h2 {
		font-size: 1.2em;
		height: 80px;
	}
}
@media (max-width: 768px) {
	#sec02 {
		margin-bottom: 60px;
    }
	#sec02 ul {
		flex-wrap: wrap;
    }
    #sec02 li {
        width: 50%;
		border: #fff 2px solid;
    }
	#sec02 li a {
		top: 60%;
	}
}
@media (max-width: 580px) {
	#sec02 ul {
		display: block;
		width: 90%;
		margin: 0 auto 20px;
    }
    #sec02 li {
        width: 100%;
        height: 400px;
    }
	#sec02 li h2 {
		height: auto;
		margin-bottom: 15px;
	}
	#sec02 li a {
		top: auto;
	}
	#sec02 .banner {
		width: 90%;
	}
	#sec02 .banner .pc {
		display: none;
    }
    #sec02 .banner .mobile {
        display: block;
    }
}
/* --------------------------------------------------- */
#sec03 {
	max-width: 1500px;
	width: 100%;
	margin: 0 auto 100px;
}
#sec03 .ttl-style01 {
	margin-left: 5%;
}
#sec03 .inner {
	position: relative;
	padding: 50px 0 50px 5%;
}
#sec03 .ph {
	display: block;
	width: 65%;
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: url("../images/top/ph04.jpg") no-repeat right top;
	background-size: cover;
}
#sec03 ul {
	max-width: 500px;
	width: 70%;
}
#sec03 li {
	margin-bottom: 10px;
}
#sec03 li a {
	display: block;
	padding: 15px 10px 15px 30px;
	position: relative;
	font-weight: 500;
	border: #ddd 1px solid;
	background-color: #fff;
	line-height: 150%;
}
#sec03 li a::before {
	content: "";
	font-family: 'Material Symbols Outlined';
    content: 'chevron_right';
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 12;
    vertical-align: middle;
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translate(0%, -50%);
	transition: .3s;
	color: #ccc;
}
#sec03 li a:hover {
	border: #1E50A2 1px solid;
	color: #1E50A2;
}
#sec03 li a:hover::before {
	left: 10px;
	color: #1E50A2;
}

/* 画像 + テキスト（上下中央揃え） */
#sec03 li a.icon-text-link {
	display: flex;
	align-items: center;
	gap: 8px;
}
#sec03 li a.icon-text-link .icon-text-link__icon {
	width: 28px;
	max-width: 28px;
	height: auto;
	display: block;
	flex: 0 0 auto;
}
#sec03 li a.icon-text-link .icon-text-link__text {
	display: block;
	min-width: 0;
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
	#sec03 {
		margin: 0 auto 50px;
	}
	#sec03 .inner {
        position: relative;
        padding: 0px 5%;
    }
	#sec03 .ph {
		position: static;
		width: 100%;
		padding-top: 57%;
		margin-bottom: 10px;
	}
	#sec03 ul {
        max-width: none;
        width: 95%;
		margin: 0 auto;
    }
	#sec03 li {
		margin-bottom: 0;
	}
	#sec03 li a {
		border: none;
		border-bottom: #ddd 1px solid;
	}
	#sec03 li a:hover {
		border: none;
		border-bottom: #1E50A2 1px solid;
	}
}
/* --------------------------------------------------- */

/* --------------------------------------------------- */



