@charset "UTF-8";
/*----------
	main content
----------*/
.l-top-content {
	width: 100%;
	position: relative;
	overflow-x: hidden;
}
.l-top-content a figure {
	display: inline-block;
	overflow: hidden;
}
.l-top-content a figure img {
	display: block;
	transition-duration: 0.3s;
}
.l-top-content a:hover figure img {
	transform: scale(1.1);
}

/*----------
	icons
----------*/
@font-face {
	font-family: iconfont;
	src: url(/assets/fonts/iconfont.woff2) format("woff2"), url(/assets/fonts/iconfont.woff) format("woff"), url(/assets/fonts/iconfont.svg) format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
.icon, .icon-plus, .icon-minus, .icon-close {
	display: inline-block;
	font-family: iconfont !important;
	speak: never;
	font-style: normal !important;
	font-size: inherit;
	font-weight: normal !important;
	font-variant: normal !important;
	text-transform: none;
	line-height: 1;
	color: inherit;
}
.icon-close::before {
	content: "\ea01";
}
.icon-minus::before {
	content: "\ea02";
}
.icon-plus::before {
	content: "\ea03";
}

.icon-sns {
	display: inline-block;
	vertical-align: baseline;
	line-height: 1;
	width: 30px;
}

/*----------
	icon container
----------*/
.p-icon-container {
	font-size: 0;
}
.p-icon-container__item {
	display: inline-block;
}
.p-icon-container__item:not(:last-child) {
	margin-right: 15px;
}

/*----------
	button
----------*/
.btn {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 48px;
	flex-wrap: nowrap;
	align-items: center;
	position: relative;
	overflow: hidden;
	border: none;
	background-color: #FFFFFF;
	color: #2C456A;
	border-radius: 28px;
	cursor: pointer;
	padding: 0 50px 0 0;
}
.btn > span {
	padding: 8px 10px 8px 30px;
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
	line-height: var(--line-height-s);
}
.btn::before {
	content: "";
	display: block;
	width: 34px;
	height: 34px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 7px;
	line-height: 1;
	background: url(/assets/images/top/icon_button_arrow_right.svg) no-repeat center center/contain;
}
@media (min-width: 768px), print {
	.btn {
		max-width: 380px;
	}
	.btn > span, .btn::before {
		transition: opacity 0.3s;
	}
	.btn > span {
		padding: 12px 0 12px 40px;
		font-size: 1.25rem;
	}
	.btn::before {
		right: 10px;
	}
	.btn:hover {
		background-color: #fff;
		color: #2C456A;
	}
	.btn:hover > span, .btn:hover::before {
		opacity: 0.7;
	}
}
.btn.btn-secondary {
	background-color: #D0D0D0;
	color: #174193;
}
.btn.btn-secondary::before {
	background-image: url(/assets/images/top/icon_button_arrow_right_seco.svg);
}

/*----------
	image link
----------*/
.p-imagelink__inner {
	background-color: #fff;
	padding: 10px;
	border-radius: 10px;
	height: 100%;
	display: block;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}
@media (min-width: 768px), print {
	.p-imagelink__inner:hover .p-imagelink__title {
		opacity: 0.7;
	}
}
.p-imagelink__image {
	margin-bottom: 10px;
	border-radius: 5px;
	width: 100%;
	height: 0;
	padding-bottom: 65%;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.p-imagelink__image > img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}
.p-imagelink__title {
	position: relative;
	font-weight: bold;
	font-size: 1rem;
	color: #2C456A;
	padding: 0 60px 0 10px;
	margin-bottom: 6px;
	line-height: var(--line-height-s);
}
@media (min-width: 768px), print {
	.p-imagelink__title {
		transition: opacity 0.3s;
		font-size: 1.25rem;
	}
}
.p-imagelink__title::before {
	content: "";
	display: block;
	position: absolute;
	right: 10px;
	top: calc(50% - 4px);
	transform: translateY(-50%);
	width: 41px;
	height: 5px;
	background: url(/assets/images/top/icon_link_arrow_right.svg) no-repeat center center/contain;
}

.nav-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 1px;
}
@media (min-width: 768px), print {
	.nav-tabs {
		flex-wrap: nowrap;
		border-bottom: #194192 solid 2px;
	}
}
.nav-tabs .nav-item {
	color: var(--color-txt-caption);
	width: calc((100% - 1px) / 2);
	background: #EDEDED;
}
@media (min-width: 768px), print {
	.nav-tabs .nav-item {
		border-radius: 5px 5px 0 0;
		overflow: hidden;
		transition: color 0.2s, background-color 0.2s;
	}
	.nav-tabs .nav-item:hover {
		background: #DDDDDD;
		color: #174193;
	}
}
.nav-tabs .nav-link {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	line-height: var(--line-height-s);
	text-align: center;
	width: 100%;
	min-height: 40px;
	height: 100%;
	padding: 6px 10px;
	color: inherit;
	cursor: pointer;
}
.nav-tabs .nav-link.active {
	background: #DDDDDD;
	color: #174193;
	pointer-events: none;
	cursor: default;
}
@media (min-width: 768px), print {
	.nav-tabs .nav-link {
		min-height: 40px;
		padding: 10px 15px;
	}
}

/*----------
	news
----------*/
.p-news > a {
	position: relative;
	display: block;
	color: #333;
	padding-right: 60px;
}
.p-news > a::after {
	content: "";
	display: block;
	position: absolute;
	width: 23px;
	height: 23px;
	background: url(/assets/images/top/icon_news_arrow_right.svg) no-repeat center center/contain;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
}
.p-news__detail {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	padding: 16px 0;
}
.p-news__date {
	grid-column: 1;
	grid-row: 1;
	margin-right: 16px;
	font-size: 0.875rem;
	line-height: var(--line-height-m);
	vertical-align: middle;
	width: 75px;
}
.p-news__tag {
	grid-column: 2;
	grid-row: 1;
	display: inline-block;
	vertical-align: middle;
	color: #174193;
	width: 110px;
	margin-bottom: 0;
}
.p-news__tag > span {
	height: 20px;
	display: block;
	max-width: 100%;
	min-width: 80px;
	padding: 0 8px;
	background-color: #EDEDED;
	color: inherit;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 0.625rem;
	line-height: 18px;
}
.p-news__headline {
	grid-column: 1/3;
	grid-row: 2;
	font-size: 0.875rem;
	line-height: var(--line-height-m);
	margin-bottom: 0;
}
.p-news__title {
	margin-bottom: 0;
}
.p-news a.p-news__title {
	display: inline-block;
	padding-left: 1.2em;
	text-indent: -1.2em;
	margin-bottom: 0;
}
@media (max-width: 767px) {
	.p-news__date {
		margin-bottom: 8px;
	}
	.p-news__tag {
		margin-bottom: 8px;
		transform: translateY(2px);
	}
}
@media (min-width: 768px), print {
	.p-news > a {
		transition: opacity 0.3s;
	}
	.p-news > a:hover {
		opacity: 0.7;
	}
	.p-news__detail {
		grid-template-columns: auto auto 1fr;
		grid-template-rows: auto;
		padding-top: 24px;
		padding-bottom: 24px;
	}
	.p-news__date {
		grid-column: 1;
		grid-row: 1;
		margin-right: 48px;
	}
	.p-news__tag {
		grid-column: 2;
		grid-row: 1;
		margin-right: 40px;
	}
	.p-news__headline {
		grid-column: 3;
		grid-row: 1;
	}
}

/*----------
	news list
----------*/
.p-news-container__item {
	border-bottom: 1px solid #ccc;
}
.p-news-container__item:first-child {
	border-top: 1px solid #ccc;
}

/*----------
	slider
----------*/
/* アクセシビリティ用 */
.swiper-button-next,
.swiper-button-prev {
	content: "" !important;
}

/* 本設定 */
.p-slider {
	position: relative;
}
@media (min-width: 768px), print {
	.p-slider {
		padding: 0 20px;
	}
	.p-slider:not(.is-fade) .p-slider__item {
		opacity: 0.7;
		transition: opacity 0.3s ease 0.3s;
	}
	.p-slider:not(.is-fade) .p-slider__item.is-active {
		opacity: 1;
	}
}
.p-slider:not(.is-initialized) {
	padding: 0;
}
.p-slider:not(.is-initialized) .p-slider__wrapper {
	display: block;
}
.p-slider:not(.is-initialized) .p-slider__inner {
	max-width: none;
}
.p-slider:not(.is-initialized) .p-slider__item {
	height: 580px;
	opacity: 1;
	transition: none;
}
.p-slider:not(.is-initialized) .p-slider__image {
	height: 100%;
}
.p-slider:not(.is-initialized) .p-slider__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-slider__inner {
	position: relative;
	overflow: visible;
}
.p-slider__item {
	position: relative;
}
.p-slider__image {
	margin: 0;
}
.p-slider__prev {
	position: absolute;
	top: 50%;
	left: 20px;
	width: 30px;
	height: 30px;
	z-index: 2;
	transform: translate(0, -50%);
	cursor: pointer;
	transition: opacity 0.3s;
}
@media (min-width: 768px), print {
	.p-slider__prev {
		left: 40px;
		width: 42px;
		height: 42px;
	}
}
.p-slider__prev:hover {
	opacity: 0.7;
}
.p-slider__prev i {
	display: block;
	width: 100%;
	height: 100%;
	background: url(/assets/images/top/icon_slider_arrow_right.svg) no-repeat center center/contain;
	transform: rotate(180deg);
}
.p-slider__next {
	position: absolute;
	top: 50%;
	right: 20px;
	width: 30px;
	height: 30px;
	z-index: 2;
	transform: translate(0%, -50%);
	cursor: pointer;
	transition: opacity 0.3s;
}
@media (min-width: 768px), print {
	.p-slider__next {
		right: 40px;
		width: 42px;
		height: 42px;
	}
}
.p-slider__next:hover {
	opacity: 0.7;
}
.p-slider__next i {
	display: block;
	width: 100%;
	height: 100%;
	background: url(/assets/images/top/icon_slider_arrow_right.svg) no-repeat center center/contain;
}

.p-pcbr {
	display: none;
}
@media (min-width: 768px), print {
	.p-pcbr {
		display: inline;
	}
}

.p-spbr {
	display: none;
}
@media (max-width: 767px) {
	.p-spbr {
		display: inline;
	}
}

.p-container {
	opacity: 0;
	transition: opacity 0.5s ease-in 0s;
}
.p-container.is-inview {
	opacity: 1;
}

.p-heading-secondary {
	font-family: var(--font-poppins);
	line-height: 1;
	font-size: 2.5rem;
	font-weight: bold;
	margin: 0;
}
@media (min-width: 768px), print {
	.p-heading-secondary {
		font-size: 5rem;
	}
}

.p-cts-kv__slide-image {
	object-fit: cover;
	height: 400px;
}
@media (max-width: 767px) {
	.p-cts-kv__slide-image--no1 {
		object-position: 74% center;
	}
	.p-cts-kv__slide-image--no2 {
		object-position: 30% center;
	}
	.p-cts-kv__slide-image--no4 {
		object-position: 26% center;
	}
}
@media (min-width: 768px), print {
	.p-cts-kv__slide-image {
		height: calc(100svh - 50px - 41px);
	}
}
@media (min-width: 992px), print {
	.p-cts-kv__slide-image {
		height: calc(100svh - 50px - 49px);
	}
}
@media (min-width: 1200px), print {
	.p-cts-kv__slide-image {
		height: calc(100svh - 100px - 55px);
	}
}
.p-cts-kv__indicators {
	top: 20px;
	right: 20px;
	left: unset;
	z-index: 2;
	margin: 0;
}
.p-cts-kv__indicators button {
	position: relative;
	box-sizing: border-box !important;
	background-color: transparent !important;
	border: 1px solid #fff !important;
	opacity: 1 !important;
	width: 10px !important;
	height: 10px !important;
	border-radius: 50%;
}
.p-cts-kv__indicators button.active::before {
	content: "";
	display: block;
	position: absolute;
	width: 4px;
	height: 4px;
	background-color: #fff;
	top: 2px;
	left: 2px;
	border-radius: 50%;
}
.p-cts-kv__copy {
	transform: translateY(-20px);
	position: relative;
	z-index: 1;
	margin-bottom: 0;
}
.p-cts-kv__copy img {
	width: 345px;
}
@media (min-width: 768px), print {
	.p-cts-kv__copy {
		transform: translateY(-50%);
	}
	.p-cts-kv__copy img {
		width: auto;
		max-width: 100%;
	}
}
.p-cts-kv__scroll-down {
	position: absolute;
	top: 500px;
	right: -40px;
	font-size: 0.625rem;
	z-index: 1;
	transform: rotate(90deg);
	transform-origin: 0%;
	font-weight: bold;
	animation: arrowMoveSP 1s ease-in-out infinite;
}
@media (min-width: 768px), print {
	.p-cts-kv__scroll-down {
		color: #fff;
		top: 460px;
		animation: arrowMovePC 1s ease-in-out infinite;
	}
}
.p-cts-kv__scroll-down::before {
	content: "";
	display: block;
	position: absolute;
	width: 22px;
	height: 22px;
	background: url(/assets/images/top/kv_scroll_down_sp.svg) no-repeat center center/contain;
	top: -2px;
	right: -30px;
	transform: rotate(-90deg);
}
@media (min-width: 768px), print {
	.p-cts-kv__scroll-down::before {
		background-image: url(/assets/images/top/kv_scroll_down.svg);
	}
}

@keyframes arrowMoveSP {
	0% {
		top: 500px;
	}
	50% {
		top: 490px;
	}
	100% {
		top: 500px;
	}
}
@keyframes arrowMovePC {
	0% {
		top: 460px;
	}
	50% {
		top: 450px;
	}
	100% {
		top: 460px;
	}
}
.p-cts-message {
	margin-top: 160px;
}
@media (min-width: 992px), print {
	.p-cts-message {
		margin-top: 180px;
	}
}
@media (min-width: 992px), print {
	.p-cts-message__inner {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}
@media (min-width: 992px), print {
	.p-cts-message__title {
		display: flex;
		align-items: center;
	}
}
.p-cts-message__body {
	margin-top: 30px;
	font-size: 1.0625rem;
	font-weight: bold;
	letter-spacing: 0.1em;
}
@media (min-width: 768px), print {
	.p-cts-message__body {
		font-size: 1.5rem;
	}
}
@media (min-width: 992px), print {
	.p-cts-message__body {
		margin-top: 0;
	}
}
.p-cts-message__body > * + * {
	margin-top: 30px;
}
.p-cts-message__copy {
	margin-top: 60px;
}
.p-cts-message__copy img {
	width: 345px;
}
@media (min-width: 768px), print {
	.p-cts-message__copy {
		margin-top: 140px;
	}
	.p-cts-message__copy img {
		width: auto;
		max-width: 100%;
	}
}

.p-cts-topics {
	margin-top: 120px;
}
@media (min-width: 768px), print {
	.p-cts-topics {
		margin-top: 180px;
	}
}
@media (min-width: 992px), print {
	.p-cts-topics__heading {
		display: flex;
		align-items: center;
		gap: 34px;
	}
}
.p-cts-topics__description {
	font-size: 1rem;
	font-weight: 500;
	line-height: var(--line-height-s);
	margin-top: 10px;
	margin-bottom: 0;
}
@media (min-width: 768px), print {
	.p-cts-topics__description {
		font-size: 1.875rem;
	}
}
@media (min-width: 992px), print {
	.p-cts-topics__description {
		margin-top: 0;
	}
}
.p-cts-topics__slider {
	margin-top: 40px;
}

.p-cts-news {
	margin-top: 120px;
}
@media (min-width: 768px), print {
	.p-cts-news {
		margin-top: 180px;
	}
}
.p-cts-news__tab {
	margin-top: 40px;
}
.p-cts-news__button {
	margin-top: 40px;
}
@media (min-width: 768px), print {
	.p-cts-news__button {
		width: 380px;
		margin-inline: auto;
	}
}

.p-cts-company {
	margin-top: 120px;
	position: relative;
}
@media (min-width: 768px), print {
	.p-cts-company {
		margin-top: 100px;
	}
}
.p-cts-company::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	background: #D0CDC8 url(/assets/images/top/company_bg.png) no-repeat center 40%/contain;
	clip-path: polygon(0 36%, 100% 0%, 100% 64%, 0% 100%);
	top: 0;
	aspect-ratio: 1440/1200;
	max-height: 1200px;
}
.p-cts-company__inner {
	position: relative;
	z-index: 1;
}
@media (min-width: 768px), print {
	.p-cts-company__title {
		padding-top: 80px;
	}
}
.p-cts-company__description {
	margin-top: 20px;
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 0;
	text-shadow: 0px 0px 5px #fff;
}
@media (min-width: 768px), print {
	.p-cts-company__description {
		font-size: 1.875rem;
	}
}
.p-cts-company__buttons {
	margin-top: 50px;
}
@media (min-width: 992px), print {
	.p-cts-company__buttons {
		width: 380px;
		margin-top: -50px;
		margin-left: auto;
	}
}
.p-cts-company__buttons > * + * {
	margin-top: 15px;
}
.p-cts-company__grid {
	margin-top: 50px;
}
@media (min-width: 992px), print {
	.p-cts-company__grid {
		margin-top: 400px;
	}
}
.p-cts-company__copy {
	margin-top: 30px;
	text-align: right;
	position: relative;
	z-index: 1;
}
.p-cts-company__copy img {
	width: 275px;
}
@media (min-width: 768px), print {
	.p-cts-company__copy {
		margin-top: 50px;
	}
	.p-cts-company__copy img {
		width: auto;
		max-width: 100%;
	}
}

.p-cts-solution {
	margin-top: 0;
	position: relative;
}
@media (min-width: 768px), print {
	.p-cts-solution {
		margin-top: 0;
	}
}
.p-cts-solution::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	background: #F0F0F0;
	clip-path: polygon(0 22.5%, 100% 0%, 100% 77.5%, 0% 100%);
	top: 0;
	aspect-ratio: 1440/1900;
	max-height: 1900px;
}
.p-cts-solution::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	background: #D0CDC8 url(/assets/images/top/solution_bg.jpg) no-repeat center 40%/cover;
	clip-path: polygon(0 46%, 100% 0%, 100% 54%, 0% 100%);
	top: 0;
	aspect-ratio: 1440/940;
	max-height: 940px;
}
.p-cts-solution__inner {
	position: relative;
	z-index: 1;
}
.p-cts-solution__title {
	padding-top: 100px;
}
@media (min-width: 768px), print {
	.p-cts-solution__title {
		padding-top: 520px;
	}
}
.p-cts-solution__description {
	margin-top: 20px;
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 0;
}
@media (min-width: 768px), print {
	.p-cts-solution__description {
		font-size: 1.875rem;
	}
}
.p-cts-solution__buttons {
	margin-top: 50px;
}
@media (min-width: 768px), print {
	.p-cts-solution__buttons a > span {
		padding-left: 15px;
	}
}
@media (min-width: 1200px), print {
	.p-cts-solution__buttons {
		width: 380px;
		margin-top: -50px;
		margin-left: auto;
	}
}
.p-cts-solution__copy {
	margin-top: 30px;
	text-align: right;
	position: relative;
	z-index: 1;
}
.p-cts-solution__copy img {
	width: 275px;
}
@media (min-width: 768px), print {
	.p-cts-solution__copy {
		margin-top: 50px;
	}
	.p-cts-solution__copy img {
		width: auto;
		max-width: 100%;
	}
}

.p-solution-card {
	background-color: #fff;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px), print {
	.p-solution-card {
		display: flex;
		max-width: 1000px;
		min-height: 310px;
		gap: 32px;
	}
}
.p-solution-card--left {
	margin-top: 50px;
}
@media (min-width: 768px), print {
	.p-solution-card--left {
		margin-top: 80px;
		padding-right: 20px;
	}
}
.p-solution-card--right {
	margin-top: 40px;
}
@media (min-width: 768px), print {
	.p-solution-card--right {
		margin-top: 60px;
		margin-left: auto;
		flex-direction: row-reverse;
		padding-left: 20px;
	}
}
@media (min-width: 768px), print {
	.p-solution-card__cattop {
		flex: 0 0 420px;
	}
}
@media (min-width: 768px), print {
	.p-solution-card__cattop-link:hover {
		opacity: 0.7;
	}
}
.p-solution-card__cattop-image {
	border-radius: 5px;
	margin-bottom: 0;
	width: 100%;
	height: 0;
	padding-bottom: 50%;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
@media (min-width: 768px), print {
	.p-solution-card__cattop-image {
		height: 100%;
		padding-bottom: 0;
	}
}
.p-solution-card__cattop-image > img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}
.p-solution-card__cattop-title {
	position: absolute;
	bottom: 20px;
	left: 20px;
	width: calc(100% - 40px);
}
@media (min-width: 768px), print {
	.p-solution-card__links {
		flex-grow: 1;
	}
}
.p-solution-card__links > li:not(:last-child) {
	border-bottom: 1px solid #CCCCCC;
}
.p-solution-card__links a {
	display: block;
	position: relative;
	font-weight: bold;
	font-size: 1rem;
	color: #2C456A;
	line-height: var(--line-height-s);
	padding: 20px 10px;
}
@media (min-width: 768px), print {
	.p-solution-card__links a {
		font-size: 1.25rem;
		padding: 34px 60px 34px 20px;
		transition: opacity 0.3s;
	}
	.p-solution-card__links a:hover {
		opacity: 0.7;
	}
}
.p-solution-card__links a::before {
	content: "";
	display: block;
	position: absolute;
	right: 10px;
	top: calc(50% - 4px);
	transform: translateY(-50%);
	width: 41px;
	height: 5px;
	background: url(/assets/images/top/icon_link_arrow_right.svg) no-repeat center center/contain;
}

.p-cts-ir {
	margin-top: 0;
}
@media (min-width: 768px), print {
	.p-cts-ir {
		margin-top: 100px;
	}
}
.p-cts-ir__bg {
	position: relative;
	overflow: hidden;
	padding-bottom: 40px;
}
@media (min-width: 768px), print {
	.p-cts-ir__bg {
		padding-bottom: 60px;
	}
}
.p-cts-ir__bg::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	background: #CDCDCD;
	clip-path: polygon(0 22.5%, 100% 0%, 100% 100%, 0% 100%);
	top: 0;
	aspect-ratio: 1440/1900;
	max-height: 1900px;
}
@media (max-width: 767px) {
	.p-cts-ir__bg::after {
		position: absolute;
		content: "";
		display: block;
		width: 100%;
		background: #CDCDCD;
		bottom: 0;
		height: calc(100% - 300px);
	}
}
.p-cts-ir__inner {
	position: relative;
	z-index: 1;
}
.p-cts-ir__title {
	padding-top: 80px;
}
@media (min-width: 768px), print {
	.p-cts-ir__title {
		padding-top: 230px;
	}
}
.p-cts-ir__description {
	margin-top: 20px;
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 0;
}
@media (min-width: 768px), print {
	.p-cts-ir__description {
		margin-top: 60px;
		font-size: 1.875rem;
	}
}
.p-cts-ir__copy {
	margin-top: 30px;
	text-align: right;
	position: relative;
	z-index: 1;
}
.p-cts-ir__copy img {
	width: 250px;
}
@media (min-width: 768px), print {
	.p-cts-ir__copy {
		margin-top: 40px;
	}
	.p-cts-ir__copy img {
		width: auto;
		max-width: 100%;
	}
}

.p-ir-card {
	margin-top: 50px;
}
@media (min-width: 768px), print {
	.p-ir-card {
		margin-top: 80px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}
@media (min-width: 768px), print {
	.p-ir-card__cattop {
		flex: 0 0 420px;
	}
}
@media (min-width: 768px), print {
	.p-ir-card__cattop-link:hover {
		opacity: 0.7;
	}
}
.p-ir-card__cattop-image {
	border-radius: 5px;
	margin-bottom: 0;
	width: 100%;
	height: 0;
	padding-bottom: 50%;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
@media (min-width: 768px), print {
	.p-ir-card__cattop-image {
		height: 100%;
		padding-bottom: 0;
	}
}
.p-ir-card__cattop-image > img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}
.p-ir-card__cattop-title {
	position: absolute;
	bottom: 20px;
	left: 20px;
	width: calc(100% - 40px);
}
@media (min-width: 768px), print {
	.p-ir-card__cattop-title .btn {
		max-width: 100%;
	}
}
.p-ir-card__grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 40px;
}
@media (min-width: 768px), print {
	.p-ir-card__grid {
		margin-top: 0;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

.p-cts-recruit {
	margin-top: 80px;
	padding-bottom: 40px;
	border-bottom: 1px solid #707070;
}
@media (min-width: 768px), print {
	.p-cts-recruit {
		margin-top: 160px;
		padding-bottom: 160px;
	}
}
.p-cts-recruit__description {
	margin-top: 20px;
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 0;
}
@media (min-width: 768px), print {
	.p-cts-recruit__description {
		margin-top: 60px;
		font-size: 1.875rem;
	}
}
.p-cts-recruit__banner {
	margin-top: 20px;
}
@media (min-width: 768px), print {
	.p-cts-recruit__banner {
		margin-top: 50px;
	}
}
.p-cts-recruit__figure {
	margin-bottom: 0;
	border-radius: 10px;
}

.p-cts-partnership__inner {
	color: var(--color-txt);
	display: block;
	padding-top: 40px;
	padding-bottom: 50px;
}
@media (min-width: 768px), print {
	.p-cts-partnership__inner {
		padding-top: 48px;
		padding-bottom: 50px;
		transition: opacity 0.3s;
	}
	.p-cts-partnership__inner:hover {
		opacity: 0.7;
	}
}
.p-cts-partnership__title {
	font-size: 1.875rem;
	text-align: center;
}
@media (min-width: 768px), print {
	.p-cts-partnership__title {
		font-size: 2.5rem;
	}
}
.p-cts-partnership__images {
	margin-top: 20px;
	position: relative;
}
@media (max-width: 767px) {
	.p-cts-partnership__images {
		margin-top: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 30px;
	}
}
.p-cts-partnership__image1 {
	width: 86px;
}
@media (min-width: 768px), print {
	.p-cts-partnership__image1 {
		width: 128px;
		position: absolute;
		left: 60px;
	}
}
@media (min-width: 1200px), print {
	.p-cts-partnership__image1 {
		left: 140px;
	}
}
.p-cts-partnership__image2 {
	width: 134px;
}
@media (min-width: 768px), print {
	.p-cts-partnership__image2 {
		width: 199px;
		position: absolute;
		right: 0;
	}
}
@media (min-width: 1200px), print {
	.p-cts-partnership__image2 {
		right: 60px;
	}
}
.p-cts-partnership__description {
	margin-top: 20px;
	font-size: 1rem;
	font-weight: bold;
}
@media (min-width: 768px), print {
	.p-cts-partnership__description {
		width: calc(100% - 500px);
		margin-inline: auto;
		text-align: center;
		font-size: 1.125rem;
	}
}
@media (min-width: 1200px), print {
	.p-cts-partnership__description {
		width: calc(100% - 600px);
	}
}
/*# sourceMappingURL=top.css.map */
