@charset "utf-8";

/*
 index.css
*/
body {}

@media print,
screen and (min-width: 768px) {

	/* PC */
	body {}
}

/* @media */
@media print,
screen and (min-width: 1500px) {

	/* widePC */
	body {
		background-position: 50% 0;
	}
}

/* @media */
/* -----------------------------------------------
= kv
----------------------------------------------- */
.kv {
	position: relative;
	margin-bottom: -20.5rem;
	padding: 7rem 0 47.5rem;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	text-align: center;
}

.kv img {
	width: 7.8rem;
}

.kv h2 span {
	display: block;
}

.kv h2 .jp {
	margin: 5rem 0 3rem;
	padding-left: .2em;
	color: #13195d;
	font-size: 4.4rem;
	letter-spacing: .2em;
}

.kv h2 .en {
	padding-left: .3em;
	color: #595959;
	font-size: 2.6rem;
	letter-spacing: .3em;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.kv {
		padding: 6rem 0 39rem;
	}

	.kv img {
		width: 6rem;
	}

	.kv h2 span {
		padding-left: .2em;
		letter-spacing: .2em;
	}

	.kv h2 .jp {
		margin: 4rem 0;
		font-size: 4rem;
	}

	.kv h2 .en {
		font-size: 1.8rem;
	}
}

/*swiper_phone*/
.myHeroSwiper .swiper-slide::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 5;
}

.swiper-slide img {
	width: 100%;
	height: 100rem;
	aspect-ratio: 16 / 9;
	/* 常に16:9の比率を保つ */
	object-fit: cover;
	position: relative;
}

.slide-content {
	position: absolute;
	top: 50%;
	/* 上から50%の位置 */
	left: 50%;
	/* 左から50%の位置 */
	transform: translate(-50%, -40%);
	z-index: 10;
	width: 90%;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.slide-content h1 {
	font-size: 5rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

.slide-content p {
	opacity: 0;
}


@media print,
screen and (min-width:768px) {

	/*pc*/
	/*swiper*/
	.myHeroSwiper {
		width: 100%;
		height: 100vh;
		overflow: hidden;
	}

	.myHeroSwiper .swiper-pagination {
		bottom: 80px !important;
		z-index: 10;
	}

	.myHeroSwiper .swiper-slide {
		width: 100%;
		height: 100vh;
		position: relative;
		overflow: hidden;
	}

	.myHeroSwiper .swiper-slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transform: scale(1);
		/* 【重要】ここがポイント：戻る時も「ゆっくり」戻るように設定する */
		transition: transform 3s ease;
	}


	.myHeroSwiper .swiper-slide::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.3);
		z-index: 5;
	}

	.myHeroSwiper .swiper-slide-active img,
	.myHeroSwiper .swiper-slide-prev img,
	.myHeroSwiper .swiper-slide-duplicate-prev img {
		animation: zoomUp 10.5s linear forwards;
	}

	@keyframes zoomUp {
		0% {
			transform: scale(1);
		}

		100% {
			transform: scale(1.1);
			/* 1.1倍までじわじわ大きく */
		}
	}

	.slide-content {
		position: absolute;
		top: 60%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 10;
		color: #fff;
		text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
		width: 80%;
		max-width: 1540px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 20px;

	}

	.slide-content h1,
	.slide-content p,
	.slide-content a {
		position: static;
		transform: none;
		margin: 0;
	}

	.slide-content h1 {
		font-size: 5.5rem;
		font-weight: 700;
	}

	.slide-content p {
		font-size: 2rem;
		line-height: 1.5;
		text-align: center;
		opacity: 1;
	}

	.slide-sustainability h1 span {
		color: #27ae60;
	}
}

/*product slider*/
.product-slider-wrap {
	overflow-x: auto;
	/* 横スクロールを許可 */
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	/* iOSで滑らかに動かす */
	scroll-snap-type: x mandatory;
	/* スナップ機能を追加 */
	padding: 20px 0;
}

.product-slider {
	display: flex;
	width: max-content;
	animation: none;
	/* 自動アニメーションを停止 */
}

.product-list {
	display: flex;
	padding-left: 5%;
	/* 最初のアイテムの左側に少し余白 */
}

.product-item {
	width: 75vw;
	/* 画面幅の75%にして、次のスライドをチラ見せ */
	margin: 0 10px;
	scroll-snap-align: center;
	/* スクロールが止まるときに中央にピタッとくる */
	flex-shrink: 0;
}

.product-item a {
	display: flex;
	flex-direction: column;
	/* これで画像の下に文字が来ます */
	align-items: center;
	/* 中央揃え */
	text-align: center;
}

/* 2. 画像のサイズを親（.product-item）いっぱいに */
.product-img {
	width: 100%;
	margin-right: 0;
	/* もし横の余白があればリセット */
	margin-bottom: 15px;
	/* 画像と製品名の間の隙間 */
}

.product-name {
	width: 100%;
	font-size: 2.6rem;
	/* スマホで見やすいサイズ */
	justify-content: center;
	/* 矢印との並びを中央に */
	white-space: normal;
}

.product-list[aria-hidden="true"] {
	display: none;
}

@media print,
screen and (min-width:768px) {

	/*pc*/
	.product-slider-wrap {
		overflow: hidden;
		width: 100%;
		padding: 40px 0;
	}

	.product-slider {
		display: flex;
		width: max-content;
		animation: infinite-slide 60s linear infinite;
	}

	.product-slider:hover {
		animation-play-state: paused;
		/* ホバー時にアニメーションを停止 */
	}

	.product-list {
		display: flex;
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.product-list[aria-hidden="true"] {
        display: flex; /* スマホ版の display: none を打ち消して表示させる */
    }
	.product-item {
		width: 320px;
		margin: 0 20px;
		transition: transform 0.3s ease;
	}

	.product-item a {
		text-decoration: none;
		color: inherit;
		display: block;
	}

	.product-img {
		width: 100%;
		aspect-ratio: 3/2;
		margin-bottom: 15px;
		border: 2px solid transparent;
		transition: border-color 0.3s;
	}

	.product-item:hover .product-img {
		border-color: #13195d;
	}

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

	/* 製品名と赤い矢印 */
	.product-name {
		font-weight: bold;
		font-size: 3rem;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		text-align: center;
	}

	.product-name .arrow {
		color: #ff0000;
		/* デザイン通りの赤い矢印 */
		font-weight: normal;
	}

	@keyframes infinite-slide {
		0% {
			transform: translateX(0);
		}

		100% {
			transform: translateX(-50%);
		}
	}
}

/* @media */
/*media*/
/*top about*/
.about {
	padding: 50px 0;
	/* 上下の余白を少し詰める */
	overflow: hidden;
}

.container {
	display: block;
	/* 横並びを解除して縦に並べる */
	width: 100%;
	/* 帯を端まで伸ばすために一旦100%に */
	margin: 0 auto;
}

.visual-box {
	position: relative;
	width: 85%;
	/* 画像エリアを少し右に寄せるために幅を制限 */
	margin-left: auto;
	/* これで画像が右側に寄る */
	margin-bottom: 40px;
	margin-right: 5%;
	z-index: 2;
}

/* 黄色の帯：画像の左側にちょろっと出す設定 */
.visual-box::before {
	content: '';
	position: absolute;
	top: -20px;
	/* 画像より少し上に出す */
	right: 20%;
	/* 画像の左側20%くらいの位置から左へ伸ばす */
	width: 110%;
	/* 画面左端を突き抜ける長さ */
	height: calc(100% + 40px);
	background-color: #e0c800;
	z-index: -1;
}

.front-image {
	width: 100%;
	height: auto;
	display: block;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);

}

.content-box {
	display: block;
	/* 縦並び */
	width: 90%;
	/* 文字は読みやすいように少し内側に */
	margin: 0 auto;
	gap: 0;
	/* Flexの隙間をリセット */
}

.main-copy {
	font-size: 5rem;
	/* スマホ用にサイズ調整 */
	margin-top: 0;
	/* ズレ防止にリセット */
	margin-bottom: 20px;
	color: #e0c800;
	line-height: 1.2;
	text-align: center
}

.right-group {
	width: 100%;
}

.description {
	font-size: 2.6rem;
	line-height: 1.6;
	margin-bottom: 25px;
}

@media print,
screen and (min-width: 768px) {
	.about {
		position: relative;
		overflow: hidden;
		/* 画面外に伸びる黄色い帯をカット */
		padding: 100px 0;
	}

	.container {
		display: flex;
		align-items: center;
		/* 上下中央揃えで崩れを防止 */
		justify-content: space-between;
		max-width: 1540px;
		width: 80%;
		/* 少し広めにして余裕を持たせる */
		margin: 100px auto;
		gap: 5vw;
		align-items: center;
	}

	.visual-box {
		position: relative;
		width: fit-content;
		/* 75%だと小さすぎるので、少し広げてバランスを取る */
		margin-left: auto;
		margin-right: 0;
		/* 右端にピタッと寄せるか、3%程度の微調整にする */
		margin-bottom: 40px;
		z-index: 2;
	}

	.visual-box::before {
		content: '';
		position: absolute;
		top: -50px;
		/* 画像より少し上に出す */
		right: 50%;
		/* 画像の真ん中を起点にする */
		width: 200vw;
		/* 画面左端を突き抜ける十分な長さ */
		height: calc(100% + 100px);
		/* 画像の高さ＋上下の飛び出し */
		background-color: #e0c800;
		z-index: -1;
		/* 画像（.front-image）の後ろに配置 */
	}

	.front-image {
		display: block;
		width: 100%;
		max-width: 450px;
		/* 大きくなりすぎないように */
		height: auto;
		box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
	}

	.content-box {
		display: flex;
		align-items: center;
		flex: 1;
		gap: 5rem;
	}

	.main-copy {
		font-size: clamp(40px, 4vw, 56px);
		/* 画面幅に合わせて文字サイズも変化 */
		font-weight: 800;
		color: #e0c800;
		line-height: 1.1;
		white-space: normal;
		word-break: keep-all;
		/* 単語の途中で切らない（日本語/英語のバランス用） */
		text-align: center;
	}

	.right-group {
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.description {
		font-size: 2rem;
		line-height: 1.8;
		text-align: left;
	}
}

/* @media */
/* -----------------------------------------------
= title
----------------------------------------------- */
.top_title {
	margin-bottom: 5rem;
	text-align: center;
}

.top_title span {
	font-weight: 700;
	letter-spacing: .04em;
}

.top_title .jp {
	display: inline-block;
	position: relative;
	width: 18rem;
	margin-bottom: 2rem;
	padding: 0 0 2.5rem;
	color: #13195d;
	font-size: 3.4rem;
}

.top_title .jp::before,
.top_title .jp::after {
	content: '';
	position: absolute;
	bottom: 0;
	height: .5rem;
}

.top_title .jp::before {
	left: 0;
	width: 1.4rem;
	background: #e0c800;
}

.top_title .jp::after {
	right: 0;
	width: calc(100% - 1.6rem);
	background: #20287e;
}

.top_title .en {
	display: block;
	color: #000000;
	font-size: 3.5rem;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.top_title {
		margin-bottom: 4rem;
	}

	.top_title .jp {
		width: 14rem;
		margin-bottom: 1.6rem;
		padding: 0 0 1.6rem;
		font-size: 2.4rem;
	}

	.top_title .jp::before,
	.top_title .jp::after {
		height: .3rem;
	}

	.top_title .jp::before {
		width: 1rem;
	}

	.top_title .jp::after {
		width: calc(100% - 1.1rem);
	}

	.top_title .en {
		font-size: 3.5rem;
		letter-spacing: -0.01em;
		border-bottom: #595959 1px solid;
		display: inline-block;

	}
}

/* @media */
/* -----------------------------------------------
= product
----------------------------------------------- */
.product {
	position: relative;
	padding: 0 3.5rem 10rem;
}

.product li a {
	display: flex;
}

.product li .img {
	width: 35.6rem;
	margin-right: 2rem;
	margin-bottom: 6.4rem;
}

.product li dl {
	flex: 1;
	border-top: 1px dotted #ccc;
	line-height: 1.3;
	letter-spacing: .04em;
}

.product li dt {
	position: relative;
	padding: 2rem 0 2rem 5rem;
	color: #13195d;
	font-size: 3.2rem;
	font-weight: 700;
}

.product li dt::before {
	content: '';
	position: absolute;
	top: 3rem;
	left: 1rem;
	width: 2.2rem;
	height: 1.6rem;
	background: url(../img/shared/icon_arrow.svg) no-repeat 50% / cover;
	filter: invert(11%) sepia(52%) saturate(5032%) hue-rotate(234deg) brightness(91%) contrast(94%);
}

.product li dd {
	padding-left: 1rem;
}

.product li dd ul li {
	margin-bottom: 1rem;
	margin-left: 1em;
	text-indent: -1em;
	font-size: 2.6rem;
}

.product li dd ul li::before {
	content: '・';
}

.product .btn {
	width: 54rem;
	margin-left: auto;
	margin-right: auto;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.product {
		width: 80%;
		max-width: 1540px;
		margin: 0 auto;
		padding: 0 0 8.5rem;
	}

	.product>ul {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -2rem;
	}

	.product>ul>li {
		width: calc(1 / 3 * 100% - 4rem);
		margin: 0 2rem 4rem;
	}

	.product li a {
		display: block;
	}

	.product li .img {
		width: auto;
		margin-right: 0;
		margin-bottom: 0;
		overflow: hidden;
	}

	.product li a .img img {
		transition: transform .3s;
	}

	.product li a:hover .img img {
		transform: scale(1.1);
	}

	.product li dl {
		border-top: none;
	}

	.product li dt {
		padding-left: 3.8rem;
		font-size: 2rem;
	}

	.product li a dt {
		transition: color .3s;
	}

	.product li a:hover dt {
		color: #434cab;
	}

	.product li a:hover dt::before {
		filter: invert(24%) sepia(71%) saturate(1615%) hue-rotate(218deg) brightness(91%) contrast(85%);
	}

	.product li dt::before {
		top: 2.5rem;
		width: 1.7rem;
		height: 1.3rem;
	}

	.product li dd {
		border-top: 1px dotted #ccc;
		padding: 1.5rem 1rem 0;
	}

	.product li dd ul li {
		display: inline-block;
		margin-bottom: 0;
		font-size: 1.5rem;
		line-height: 2.6rem;
	}

	.product li dd ul li::before {
		content: '';
	}

	.product li dd ul li::after {
		content: '/';
		color: #ccc;
		margin: 0 .4rem 0 1rem;
	}

	.product li dd ul li:last-child::after {
		content: '';
	}

	.product .btn {
		width: 34rem;
	}

	.product .btn a {
		padding-top: 2.6rem;
		padding-bottom: 2.6rem;
	}
}

/* @media */
/* -----------------------------------------------
= purpose
----------------------------------------------- */
.purpose {
	padding: 5rem 3.5rem;
	margin-bottom: 15rem;
}

.purpose .img {
	margin-bottom: 3rem;
}

.purpose .tab_cont {
	display: none;
}

.purpose .tab_cont.is-active {
	display: block;
}

.purpose h3 {
	margin-bottom: 1.5rem;
	color: #000000;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .04em;
}

.purpose .description {
	margin-bottom: 6rem;
	font-size: 2.6rem;
	line-height: 4.6rem;
	letter-spacing: .04em;
}

.purpose .tab_btn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -1.6rem;
}

.purpose .tab_btn li {
	margin: 0 3rem 3rem;
	width: calc(1 / 3 * 100% - 6rem);
	text-align: center;
}

.purpose .tab_btn li .icon {
	display: grid;
	place-content: center;
	position: relative;
	width: 15.6rem;
	height: 15.6rem;
	margin: 0 auto 1.8rem;
	background: #fff;
	border-radius: 50%;
	box-sizing: border-box;
}

.purpose .tab_btn li .icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 14.8rem;
	height: 14.8rem;
	margin: .4rem;
	border: 1px solid #c2cee5;
	border-radius: 50%;
	box-sizing: border-box;
}

.purpose .tab_btn li button.is-active .icon {
	background: #20287e;
}

.purpose .tab_btn li button.is-active .icon::before {
	width: 15.6rem;
	height: 15.6rem;
	margin: 0;
	border: .4rem solid #fff;
}

.purpose .tab_btn li img {
	width: 6.9rem;
	filter: invert(11%) sepia(52%) saturate(5032%) hue-rotate(234deg) brightness(91%) contrast(94%);
}

.purpose .tab_btn li button.is-active img {
	filter: invert(100%) sepia(1%) saturate(0%) hue-rotate(200deg) brightness(103%) contrast(105%);
}

.purpose .tab_btn li:last-child img {
	width: 7.8rem;
}

.purpose .tab_btn li .icon+span {
	display: block;
	margin: 0;
	color: #13195d;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: .04em;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.purpose {
		padding: 6rem 0 .1rem;
		overflow: hidden;
	}

	.purpose .inner {
		width: 80%;
		max-width: 1540px;
		margin: 0 auto;
		overflow: visible;
		position: relative;

	}

	.purpose .tab_cont {
		position: relative;
	}

	.purpose .tab_cont .img {
		position: absolute;
		top: 15rem;
		left: 0;
		width: 52rem;
		margin-bottom: 9rem;
		box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
	}

	.purpose .tab_cont .set {
		margin-left: 58rem;
		padding: 6rem 0rem 0rem 6rem;
	}

	.purpose .tab_cont .set::before {
		content: '';
		position: absolute;
		top: 0;
		left: 30%;
		width: 300vw;
		height: 300%;
		background: #f4f4f4;
		z-index: -1;
	}

	.purpose h3 {
		font-size: 3rem;
		text-align: center;
	}

	.purpose .description {
		margin-bottom: 2.5rem;
		font-size: 2rem;
		line-height: 3rem;
		max-width: none !important;
	}

	.purpose .tab_btn {
		margin: 0 -1.4rem 4rem 56rem;
	}

	.purpose .tab_btn li {
		margin: 0 2rem 2rem;
		width: calc(1 / 4 * 100% - 4rem);
	}

	.purpose .tab_btn li .icon {
		width: 10rem;
		height: 10rem;
		margin: 0 auto 1.2rem;
	}

	.purpose .tab_btn li .icon::before {
		width: 9.4rem;
		height: 9.4rem;
		margin: .3rem;
		transition: background .3s;
	}

	.purpose .tab_btn li button.is-active .icon::before {
		width: 10rem;
		height: 10rem;
		border: .3rem solid #fff;
	}

	.purpose .tab_btn li button:hover .icon::before {
		background: #434cab;
	}

	.purpose .tab_btn li button:hover img {
		filter: invert(100%) sepia(1%) saturate(0%) hue-rotate(200deg) brightness(103%) contrast(105%);
	}

	.purpose .tab_btn li img {
		width: 4.5rem;
	}

	.purpose .tab_btn li:last-child img {
		width: 5rem;
	}

	.purpose .tab_btn li .icon+span {
		margin: 0 -2em;
		font-size: 1.5rem;
	}

	.purpose .tab_btn li button:hover .icon+span {
		color: #434cab;
	}
}

@media print,
screen and (max-width: 768px) {
	.purpose {
		background-color: #f4f4f4;
	}
}

/* @media */
/* -----------------------------------------------
= topics
----------------------------------------------- */
.topics {
	padding: 10rem 3.5rem;
}

.topics li {
	margin-bottom: 6rem;
	letter-spacing: .04em;
	overflow: hidden;
}

.topics li a {
	display: block;
}

.topics li .img {
	float: left;
	width: 27rem;
}

.topics li a time {
	display: block;
	margin-left: 31rem;
	margin-bottom: 2rem;
	color: #808080;
	font-size: 2.4rem;
}

.topics li a p {
	margin-left: 31rem;
	color: #31118c;
	font-size: 2.6rem;
	line-height: 4rem;
}

.topics .btn {
	width: 54rem;
	margin-left: auto;
	margin-right: auto;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.topics {
		max-width: 110rem;
		margin: 0 auto;
	}

	.topics ul {
		margin-bottom: 5rem;
	}

	.topics li {
		max-width: 25rem;
		margin: 0 1.7rem;
	}

	.topics li .img {
		float: none;
		width: auto;
		margin: 0 0 1.5rem;
		overflow: hidden;
	}

	.topics li a .img img {
		transition: transform .3s;
	}

	.topics li a:hover .img img {
		transform: scale(1.1);
	}

	.topics li a time {
		margin: 0 0 1rem;
		font-size: 1.4rem;
	}

	.topics li a p {
		margin: 0;
		font-size: 1.6rem;
		line-height: 2.6rem;
		transition: color .3s;
	}

	.topics li a:hover p {
		color: #434cab;
		text-decoration: underline;
	}

	.topics .slick-arrow {
		position: absolute;
		top: 7.7rem;
		width: 3rem;
		height: 2.2rem;
		color: transparent;
		background: url(../img/shared/icon_arrow.svg) no-repeat 50% / cover;
		overflow: hidden;
		filter: invert(11%) sepia(52%) saturate(5032%) hue-rotate(234deg) brightness(91%) contrast(94%);
	}

	.topics .slick-arrow:hover {
		filter: invert(24%) sepia(71%) saturate(1615%) hue-rotate(218deg) brightness(91%) contrast(85%);
	}

	.topics .slick-prev {
		left: -6rem;
		transform: rotate(180deg);
	}

	.topics .slick-next {
		right: -6rem;
	}

	.topics .btn {
		width: 34rem;
	}

	.topics .btn a {
		padding-top: 2.6rem;
		padding-bottom: 2.6rem;
	}
}

/*topics_s*/
.topics_s {
	padding: 5rem 3.5rem;
	background-color: #f2f2f2;
}

.topics_s .inner {
	width: 90%;
	margin: 0 auto;
	padding: 0 1rem;
}

.topics-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	border-bottom: 1px solid #ccc;
	margin-bottom: 4rem;
}

.topics_s .topics-title {
	font-size: 3.2rem;
	font-weight: 700;
	color: #000000;
	line-height: 1.1;
}

.view-all {
	font-size: 2rem;
	color: #000000;
	text-decoration: none;
	font-weight: 700;
	display: flex;
	align-items: center;
}

.view-all::after {
	content: "→";
	margin-left: 0.5rem;
	font-size: 2rem;
}

.topics-list {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	/* カード間の隙間 */
	list-style: none;
	padding: 0;
}

.topics-item {
	flex: 1;
	background: #fff;
	/* カード自体は白 */
	display: flex;
	align-items: stretch;
}

.topics-item a {
	display: flex;
	flex-direction: row;
	/* ★ここで画像とテキストを横に並べる */
	align-items: flex-start;
	gap: 1.5rem;
	/* 画像とテキストの間の隙間 */
	border-bottom: 1px solid #ccc;
	/* リストの区切り線 */
}

/* 画像エリア */
.topics-img {
    width: 30%;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
    overflow: hidden;
}
.topics-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	display: block;
}

.topics-item:hover .topics-img img {
	transform: scale(1.08);
	/* ホバー時にゆっくり拡大 */
}

/* テキストエリア */
.topics-body {
	padding: 2.5rem 2.5rem 2rem;
	/* 余白を広めに */
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	/* 高さを揃えるため */
}

.topics-text {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: auto;
	/* 日付を一番下に押し下げる */
	padding-bottom: 0;
	color: #000;
}

.topics-date {
	font-size: 1.8rem;
	font-weight: 600;
	color: #333;
}

.topics-container {
	width: 70%;
	padding: 2rem;
	/* ★ 0から2remに変更：箱に内側の余白を作る */
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* ★追加：文字が少ない時、縦の中央に配置される */
}

@media print,
screen and (min-width: 767px) {

	/* pc */
	.topics_s {
		padding: 8rem 0;
		background-color: #f2f2f2;
	}

	.topics_s .inner {
		width: 80%;
		max-width: 1540px;
		margin: 0 auto;
		padding: 0 2rem;
	}

	.topics-header {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		border-bottom: 1px solid #ccc;
		margin-bottom: 4rem;
	}

	.topics_s .topics-title {
		font-size: 3.2rem;
		font-weight: 700;
		color: #000000;
		line-height: 1.1;
	}

	.view-all {
		font-size: 2rem;
		color: #000000;
		text-decoration: none;
		font-weight: 700;
		display: flex;
		align-items: center;
	}

	.view-all::after {
		content: "→";
		margin-left: 0.5rem;
		font-size: 2rem;
	}

	.topics-list {
		display: flex;
		gap: 2.5rem;
		/* カード間の隙間 */
		list-style: none;
		padding: 0;
		flex-direction: row;
	}

	.topics-item {
		flex: 1;
		background: #fff;
		/* カード自体は白 */
		display: flex;
	}

	.topics-item a {
		text-decoration: none;
		color: inherit;
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	/* 画像エリア */
	.topics-img {
		width: 100%;
		aspect-ratio: 340 / 225;
		/* デザイン画像の比率に合わせる */
		overflow: hidden;
	}

	.topics-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.4s ease;
	}

	.topics-item:hover .topics-img img {
		transform: scale(1.08);
		/* ホバー時にゆっくり拡大 */
	}

	/* テキストエリア */
	.topics-body {
		padding: 2.5rem 2.5rem 2rem;
		/* 余白を広めに */
		display: flex;
		flex-direction: column;
		flex-grow: 1;
		/* 高さを揃えるため */
	}

	.topics-text {
		font-size: 2rem;
		font-weight: 600;
		line-height: 1.5;
		margin-bottom: auto;
		/* 日付を一番下に押し下げる */
		padding-bottom: 2.5rem;
		color: #000;
	}

	.topics-date {
		font-size: 1.8rem;
		font-weight: 600;
		color: #333;
	}

	.topics-container {
		padding: 2rem;
		width: auto;
		margin-top: 0;
	}
}

/* @media */
/* @media */
@media print,
screen and (max-width: 1260px) and (min-width: 768px) {

	/* TABLET */
	.topics .slick-prev {
		left: -3rem;
	}

	.topics .slick-next {
		right: -3rem;
	}
}

/* @media */
/* -----------------------------------------------
= news
----------------------------------------------- */
.news {
	padding: 5rem 3.5rem 7rem;
	background: #eff4f7;
}

.news ul {
	padding: 1rem 3rem 13rem;
	background: #fff;
}

.news li {
	border-bottom: 1px dotted #ccc;
}

.news li a {
	display: block;
	position: relative;
	padding: 3rem 6.5rem 3rem 1rem;
	letter-spacing: .04em;
}

.news li a::after {
	content: '';
	position: absolute;
	top: calc(50% - .95rem);
	right: 0;
	width: 2.6rem;
	height: 1.9rem;
	background: url(../img/shared/icon_arrow.svg) no-repeat 50% / cover;
	filter: invert(86%) sepia(0%) saturate(0%) hue-rotate(20deg) brightness(105%) contrast(88%);
}

.news li a time {
	display: block;
	margin-bottom: 2rem;
	color: #808080;
	font-size: 2.4rem;
}

.news li a p {
	color: #13195d;
	font-size: 2.6rem;
	line-height: 4rem;
}

.news .btn {
	width: 54rem;
	margin-top: -6rem;
	margin-left: auto;
	margin-right: auto;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.news {
		padding: 6rem 0 5rem;
	}

	.news ul {
		max-width: 102rem;
		margin: 0 auto;
		padding: 1rem 4rem 6.5rem;
	}

	.news li a {
		display: flex;
		padding: 2rem 4rem 2rem 1rem;
	}

	.news li a::after {
		top: calc(50% - .65rem);
		right: 1rem;
		width: 1.7rem;
		height: 1.3rem;
	}

	.news li a:hover::after {
		filter: invert(24%) sepia(71%) saturate(1615%) hue-rotate(218deg) brightness(91%) contrast(85%);
	}

	.news li a time {
		margin-bottom: 0;
		margin-right: 2rem;
		font-size: 1.4rem;
		line-height: 2.4rem;
	}

	.news li a p {
		flex: 1;
		font-size: 1.6rem;
		line-height: 2.4rem;
		transition: color .3s;
	}

	.news li a:hover p {
		color: #434cab;
		text-decoration: underline;
	}

	.news .btn {
		width: 34rem;
		margin-top: -4rem;
	}

	.news .btn a {
		padding-top: 2.6rem;
		padding-bottom: 2.6rem;
	}
}

/* @media */
/* -----------------------------------------------
= bnr
----------------------------------------------- */
.bnr {
	display: flex;
	flex-wrap: wrap;
	padding: 6rem 2rem 3rem;
}

.bnr li {
	width: calc(50% - 3.4rem);
	margin: 0 1.5rem 3rem;
	border: .1rem solid #d9d9d9;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.bnr {
		display: flex;
		flex-wrap: nowrap;
		max-width: 113.4rem;
		margin: 0 auto;
		padding: 6rem 0 9rem;
	}

	.bnr li {
		width: calc(25% - 3.4rem);
		margin: 0 1.7rem;
	}
}

/* @media */