
/* -------------------------------------
	ページ：サイトTOP
----------------------------------------*/
.top__kv-image {
	width: 100%;
	position: relative;
	display: none;
}

/** timer **/
.timer-container {
	position: relative;
	width: 2vw;
	height: 2vw;
}
@media screen and (max-width: 750px) {
	.timer-container {
		width: 5vw;
		height: 5vw;
	}
}

.timer-icon {
	position: absolute;
	top: 0;
	left: 0;
}
.timer-circle {
	fill: none;
	stroke: #e0e0e0;
	stroke-width: 8;
}
.timer-progress {
	fill: none;
	stroke: var(--main-cp-color);
	stroke-width: 8;
	stroke-linecap: round;

	/* 開始点を上（12時の方向）に設定 */
	transform: rotate(-90deg);
	transform-origin: 50% 50%;

	/* 円周の計算: r=45 -> 2 * PI * 45 = 282.74 */
	stroke-dasharray: 283;
	stroke-dashoffset: 283;

	animation: countdown-clockwise 5s infinite linear forwards;
}
.timer-text {
	font-weight: bold;
	fill: #333;
	text-anchor: middle;
	dominant-baseline: central;
	font-size: 1vw;
	color: var(--main-cp-color);
}
@media screen and (max-width: 750px) {
	.timer-text {
		font-size: 2vw;
	}
}

@keyframes countdown-clockwise {
	from {
		stroke-dashoffset: 283;
	}
	to {
		stroke-dashoffset: 0;
	}
}


/** KV text **/
.top__kv-box {
	width: 37%;
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	line-height: 1.3;
	font-weight: bold;
}
@media screen and (max-width: 750px) {
	.top__kv-box {
		width: 90%;
		top: 62%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

.top__kv-box-mask {
	overflow: hidden;
}

.top__kv-box .category {
	font-size: 1.1vw;
	margin-bottom: 2%;
}
@media screen and (max-width: 750px) {
	.top__kv-box .category {
		font-size: 3.3vw;
		margin-bottom: 4%;
	}
}
.top__kv-box .massage {
	font-size: 2.7vw;
	margin-bottom: 2%;
	letter-spacing: 0.09em;
}
@media screen and (max-width: 750px) {
	.top__kv-box .massage {
		font-size: 7.5vw;
		letter-spacing: 0.05em;
	}
}

.top__kv-box .link {
	margin-top: 5%;
}
@media screen and (max-width: 750px) {
	.top__kv-box .link {
		margin-top: 10%;
	}
}

.top__kv-button {
	width: 50%;
	margin: 0 0;
}
@media screen and (max-width: 750px) {
	.top__kv-button {
		width: 85%;
		margin: 0 auto;
	}
}
.top__kv-button .arrow-link-button {
	font-size: 1.0vw;
	padding: 8% 15%;
}
@media screen and (max-width: 750px) {
	.top__kv-button .arrow-link-button {
		font-size: 3.9vw;
		padding: 8% 10%;
		border-radius: 65px;
	}
}

.top__kv-button .arrow-link-button::after {
	width: 13%;
	height: 13%;
	right: 7%;
}
@media screen and (max-width: 750px) {
	.top__kv-button .arrow-link-button::after {
		width: 11%;
		height: 11%;
		right: 5%;
	}
}

.top__kv-box2 {
	position: absolute;
	top: 85%;
	left: 10%;
	display: flex;
	align-items: center;
	gap: 1vw;
}
@media screen and (max-width: 750px) {
	.top__kv-box2 {
		top: 93%;
		left: 5%;
		gap: 2vw;
	}
}

.top__kv-box2 .label {
	overflow: hidden;
	position: relative;
#	top: 50%;
#	left: 17%;
}

.top__kv-box2 .label {
	font-size: 1.1vw;
	color: var(--main-cp-color);
}
@media screen and (max-width: 750px) {
	.top__kv-box2 .label {
		font-size: 3.2vw;
	}
}

.fade-up-text {
	opacity: 0;
	transform: translateY(100%);
	animation: fade-up 1s forwards; /* 1秒かけてアニメーション */
}


@keyframes fade-up {
	from {
		opacity: 1;
		transform: translateY(100%); /* 画面の下からスタート */
	}
	to {
		opacity: 1;
		transform: translateY(0); /* 元の画面位置に戻る */
	}
}

.top__kv-box3 {
	position: absolute;
	top: 92%;
	right: 0;
	transform: translateY(-50%);
	width: 38%;
	background: #000000b3;
	padding: 1% 1% 1% 2%;
	font-size: 1.1vw;
	border-radius: 5vw 0 0 5vw;
}
@media screen and (max-width: 750px) {
	.top__kv-box3 {
		top: 6%;
		width: 90%;
		font-size: 3.0vw;
		padding: 2% 1% 2% 3%;
	}
}

.top__kv-box3 .text {
	display: -webkit-box;             
	-webkit-box-orient: vertical;      /* 垂直方向に配置 */
	overflow: hidden;                  /* 溢れた部分を隠す */
	text-overflow: ellipsis;           /* 溢れた部分に「...」を表示 */
#	-webkit-line-clamp: 2;             /* 最大行数を2行に設定 */
	-webkit-line-clamp: 1; /* ここを2や3に変更することで、行数を指定 */
	max-height: calc(1.5em * 1);

}

.top__kv-box3 a {
	color: #fff;
}

.top__kv-box3 a:hover span {
	text-decoration: underline;
}

/** pick up **/
.top__pickup-container {
	background: var(--bg-color-gray);
	padding: 5% 0;
}
@media screen and (max-width: 750px) {
	.top__pickup-container {
		position: relative;
		padding: 5% 0 15%;
	}
}

.top__pickup-area {
	display: flex;
	justify-content: space-between;
	width: 91%;
	margin-top: 0;
	margin-bottom: 0;
	margin-right: 0;
	margin-left: auto;
}
@media screen and (max-width: 750px) {
	.top__pickup-area {
#		width: 90%;
		display: flex;
		flex-direction: column; /* モバイルでは縦並びがデフォルト */
		align-items: center;
		gap: 1.5rem;

		margin: 0 auto;
		width: 88%;
	}
}

.top__pickup-area-left {
	display: flex; /* ラッパーとして復活させる */
	flex-direction: column;
	align-items: flex-start; /* 左揃え */
	gap: 1.5vw;
#	flex: 1; /* 幅を50%確保 */
	order: 0; /* 表示順をリセット */
	width: 18.7%;

}
@media screen and (max-width: 750px) {
	.top__pickup-area-left {
		display: contents;
	}
}

.top__pickup-area-right {
	order: 0; /* 表示順*/
	width: 75.5%;

}
@media screen and (max-width: 750px) {
	.top__pickup-area-right {
		width: 100%;
		order: 2; /* モバイルでの表示順：テキスト(1) -> 画像(2) -> ボタン(3) */
	}
}

.top__pickup-area-intro {
	font-size: 2.5vw;
	font-weight: 900;
	width: 100%;
}

.top__pickup-area-intro  span {
	font-size: 1.0vw;
        font-weight: 500;
}
@media screen and (max-width: 750px) {
	.top__pickup-area-intro  span {
		font-size: 2.6vw;
	}
}

.top__pickup-area-left p {
	font-size: 1.5vw;
}

.top__pickup-button {
	width: 90%;
	border: 1px solid #818181;
	padding-bottom: 1%;
	font-size: 1.1vw;
	background: #fff;
	border-radius: 5px;
}

@media screen and (max-width: 750px) {
	.top__pickup-button {
		width: 86%;
		font-size: 3.9vw;
		text-align: center;
		padding: 2% 0;
	}
}

.top__pickup-button a:hover,
.top__news-button a:hover,
.top__ir-news-button a:hover {
	border-bottom: unset;
}

.top__pickup-button .common__arrow-link {
	width: 100%;
	padding: 6% 12% 6% 7%;
}
@media screen and (max-width: 750px) {
	.top__pickup-button .common__arrow-link {
		padding: 4% 12% 4% 7%;
	}
}
.top__pickup-button .common__arrow-link::after {
	background-size: auto 50%;
	background-position: center right 4%;
}


.top__pickup-area-intro,
.top__pickup-area-left h1,
.top__pickup-area-left p,
.top__pickup-button {
	order: 0; /* 表示順をリセット */
#	text-align: left;
}

@media screen and (max-width: 750px) {
	.top__pickup-area-intro,
	.top__pickup-area-left h1 {
		order: 0; /* モバイルでの表示順 */
		width: 100%;
		margin: 0;
		font-size: 6.5vw;
	}
	.top__pickup-area-left p {
		order: 1; /* モバイルでの表示順 */
		color: #555;
		margin: 0;
		font-size: 3.5vw;
	}

	.top__pickup-button {
		order: 3; /* モバイルでの表示順 */
	}
}



.top__pickup-slider-title-wrap {
	display: flex;
	justify-content: flex-start;
	width: 87%;
	gap: 2vw;
}
@media screen and (max-width: 750px) {
	.top__pickup-slider-title-wrap {
		width: 100%;
		margin-bottom: 7%;
	}
}

.top__pickup-slider-title {
	width: 87%;
}
@media screen and (max-width: 750px) {
	.top__pickup-slider-title {
		width: 100%;
	}
}

.top__pickup-slider-title .text-with-underline {
	font-family: sans-serif;
	font-size: 1.1vw;
	padding-top: 10px;
	padding-bottom: 5%;
	border-bottom: 2px solid #e1e1e1;
	position: relative;
	font-weight: 500;
}
@media screen and (max-width: 750px) {
	.top__pickup-slider-title .text-with-underline {
		font-size: 2.7vw;
		padding-bottom: 10%;
	}
}

.top__pickup-slider-title .text-with-underline:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0%;
	border-bottom: 2px solid #414141;
	width: 20%;
}
@media screen and (max-width: 750px) {
	.top__pickup-slider-title .text-with-underline:after {
		width: 18%;
	}
}

.top__pickup-slider {
}

.top__pickup-slider-wrap {
      overflow: hidden;
}

.slick {
#	padding: 120px 0;
#	background: #18212b;
}

.slick__inner {
	width: 100%;
	margin: 0 auto;
}

.slick__container {
	position: relative;
#	width: calc(100% + (100vw - 100%) / 2);
	width: calc(100% + (100vw - 100%) / 2.4);
}
@media screen and (max-width: 750px) {
	.slick__container {
		width: 100%;
	}
}

.slick__images {
#	background: #fff;
	opacity: 0;
	transition: opacity .25s ease;
}
.slick__images.slick-initialized {
	opacity: 1;
}

.slick__prev,
.slick__next {
	position: absolute;
	top: 40px;
	z-index: 1;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #18212b;
	background: #fff;
}

.slick__prev {
	/* (インナー幅の右端) + (画像のマージン + ボタンの大きさ + ボタンとの間隔) */
	right: calc((100vw - 100%) + (30px + 50px + 15px));
}

.slick__next {
	/* (インナー幅の右端) + (画像のマージン) */
	right: calc((100vw - 100%) + (30px));
}

.slick__prev:before,
.slick__next:before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-top: 1px solid #18212b;
	border-right: 1px solid #18212b;
	opacity: 1;
	content: '';
}

.slick__prev:before {
	transform: translate(-25%, -50%) rotate(-135deg);
}

.slick__next:before {
	transform: translate(-75%, -50%) rotate(45deg);
}

.slick__image {
	position: relative;
	width: 100%;
	margin-right: 15px;
}
@media screen and (max-width: 750px) {
	.slick__image {
		margin-right: 0;
	}
}

.slick__image:before {
	display: block;
	padding-top: calc((2 / 3) * 100%);
	content: '';
}

.slick__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  object-fit: cover;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}

.arrow_box {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	width: 9%;
	gap: 1.1vw;
	margin: 0;
	transform: translateY(45%);
}
@media screen and (max-width: 750px) {
	.arrow_box {
		position: absolute;
		width: 18%;
		gap: 3.9vw;
		top: 12%;
		right: 6%;
		transform: unset;
	}
}

.prev-arrow,
.next-arrow {
	position: relative;
}
.prev-arrow .on {
	position: relative;
}
.prev-arrow .off {
	position: absolute;
	top: 0;
	left: 0;
}
.prev-arrow:hover .off {
	opacity: 0;
#	transition: .5s;
}

.next-arrow .on {
	position: relative;
}
.next-arrow .off {
	position: absolute;
	top: 0;
	left: 0;
}
.next-arrow:hover .off {
	opacity: 0;
#	transition: .5s;
}

/** news **/
.top__news-container {
	width: 100%;
	padding: 7% 0;
}
@media screen and (max-width: 750px) {
	.top__news-container {
		padding: 15% 0 20%;
	}
}

.top__news-area {
	width: 81%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 750px) {
	.top__news-area {
		width: 88%;
		flex-direction: column;
	}
}
.top__news-area-left {
	width: 18%;
}
@media screen and (max-width: 750px) {
	.top__news-area-left {
		width: 100%;
	}
}
.top__news-area-main {
	width: 73%;
}
@media screen and (max-width: 750px) {
	.top__news-area-main {
		width: 100%;
	}
}

.top__news-box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: nowrap;
	flex-direction: column;
	row-gap: 3vw;
	margin-bottom: 4%;
}
@media screen and (max-width: 750px) {
	.top__news-box {
		flex-direction: unset;
		align-items: end;
	}
}

.top__news-title {
	width: 100%;
	font-size: 5.1vw;
	line-height: 0;
	font-weight: bold;
	margin: 0 0 2%;
	font-weight: 900;
}
@media screen and (max-width: 750px) {
	.top__news-title {
		width: 60%;
		font-size: 10.2vw;
	}
}

.top__news-title span {
	font-size: 1.2vw;
	color: var(--main-cp-color);
	line-height: 1.1;
	font-weight: 500;
}
@media screen and (max-width: 750px) {
	.top__news-title span {
		font-size: 2.6vw;
	}
}

.top__news-title p {
	line-height: 1.1;
}

.top__news-button {
	width: 60%;
	border-bottom: 1px solid #939393;
	padding-bottom: 4%;
	font-size: 1.1vw;
}

@media screen and (max-width: 750px) {
	.top__news-button {
        	width: 29%;
		padding-bottom: 1%;
		font-size: 3.5vw;
		margin-bottom: 3%;
	}
}

.top__news-button .common__arrow-link {
	display: block;
}

.top__news-button .common__arrow-link::after {
	background-size: auto 80%;
}
@media screen and (max-width: 750px) {
	.top__news-button .common__arrow-link::after {
		background-size: auto 70%;
	}
}

/*
.top__news-button .arrow-link {
	padding-right: 20px;
}
@media screen and (max-width: 750px) {
	.top__news-button .arrow-link {
		padding-right: 7vw;
	}
}

.top__news-button .arrow-link::after {
	width: 80%;
	height: 80%;
}
*/



.top__news-list{

}

.top__news-list .item {
	background-image: url(/images/common/common_btn_arrow_01.png);
	background-position: bottom 50% right 1%;
	background-size: auto 1.8vw;
}
@media screen and (max-width: 750px) {
	.top__news-list .item {
		background-size: auto 4vw;
	}
}

.top__news-list .item:hover {
	background-image: url(/images/common/common_btn_arrow_02.png);
}

.top__news-list .item a{
	display: flex;
	flex-wrap: wrap;
	text-decoration: none;
	align-items: center;
	border-bottom: 1px solid #E9E9E9;
	padding: 2% 10% 2% 0;
}
@media screen and (max-width: 750px) {
	.top__news-list .item a{
		padding: 4% 8% 4% 0;
	}
}

.top__news-list .item a:hover {
	border-bottom: 1px solid #F2532A;
}

.top__news-list .item:first-child a{
#	border-top: 1px solid #CCC;
}
.top__news-list .item .date{
	margin: 0;
	font-size: 1.0vw;
	padding: 0 20px 0 0;
}
@media screen and (max-width: 750px) {
	.top__news-list .item .date{
		font-size: 3.5vw;
	}
}

.top__news-list .item .category{
	margin: 0;
	min-width: 140px;
	padding: 0 20px 0 0;
}
.top__news-list .item .category span{
	color: #F2532A;
	text-align: center;
	display: inline-block;
	padding: 2% 9%;
	font-size: 0.9vw;
	line-height: 1;
	border: 1px solid #F2532A;
	border-radius: 25px;
}
@media screen and (max-width: 750px) {
	.top__news-list .item .category span{
		padding: 4% 11%;
		font-size: 2.2vw;
	}
}

.top__news-list .item .category span.service {
	color: #F2532A;
	border: 1px solid #F2532A;
}
.top__news-list .item .category span.notice {
	color: #000000;
	border: 1px solid #000000;
}
.top__news-list .item .category span.ir {
	color: #999999;
	border: 1px solid #999999;
}

.top__news-list .item .title{
	width: 100%;
	margin-top: 1%;
	font-size: 1.1vw;
	display: -webkit-box;             
	-webkit-box-orient: vertical;      /* 垂直方向に配置 */
	overflow: hidden;                  /* 溢れた部分を隠す */
	text-overflow: ellipsis;           /* 溢れた部分に「...」を表示 */
#	-webkit-line-clamp: 2;             /* 最大行数を2行に設定 */
	-webkit-line-clamp: 2; /* ここを2や3に変更することで、行数を指定 */
	max-height: calc(1.5em * 2);
}
@media only screen and (max-width: 750px) {
	.top__news-list .item .title{
		font-size: 4vw;
	}
}

.top__news-list .item a:hover .title{
	color: #F2532A;
}

/** business **/
.top__business-container {
	background: var(--bg-color-gray);
	width: 100%;
	margin: 0 auto;
	padding: 3% 0;
}
@media screen and (max-width: 750px) {
	.top__business-container {
		padding: 10% 0 15%;
	}
}

.top__business-area {
	width: 80%;
	margin: 0 auto;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 750px) {
	.top__business-area {
		width: 88%;
	}
}

.top__business-title,
.top__business-info,
.top__business-button,
.top_business-box {
	order: 0;
}
@media screen and (max-width: 750px) {
	.top__business-title {
		order: 0;
	}
	.top__business-info {
		order: 1;
	}
	.top__business-button {
		order: 3;
	}
	.top_business-box {
		order: 2;
	}
}

.top__business-title {
	width: 100%;
	font-size: 5.3vw;
	line-height: 1.1;
	margin: 0 0 5%;
	font-weight: 900;
}
@media screen and (max-width: 750px) {
	.top__business-title {
		font-size: 10.2vw;
		margin: 0 0 13%;
	}
}

.top__business-title span {
	font-size: 1.2vw;
	font-weight: 500;
	color: var(--main-cp-color);
}
@media screen and (max-width: 750px) {
	.top__business-title span {
		font-size: 2.6vw;
	}
}

.top__business-info {
	width: 93%;
	font-size: 1.1vw;
	line-height: 1.9;
	margin-bottom: 4%;
}
@media screen and (max-width: 750px) {
	.top__business-info {
		width: 100%;
		font-size: 3.9vw;
		margin-bottom: 10%;
	}
}

.top__business-info p {
	font-size: 1.75vw;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 2%;

}
@media screen and (max-width: 750px) {
	.top__business-info p {
		font-size: 5.4vw;
		margin-bottom: 8%;
	}
}


.top__business-button {
	width: 21%;
	margin: 0 0 7%;
}
@media screen and (max-width: 750px) {
	.top__business-button {
		width: 85%;
		margin: 0 auto 10%;
	}
}
.top__business-button .arrow-link-button {
	font-size: 1.0vw;
	padding: 8% 15%;
}
@media screen and (max-width: 750px) {
	.top__business-button .arrow-link-button {
		font-size: 3.9vw;
		padding: 8% 10%;
		border-radius: 65px;
	}
}

.top__business-button .arrow-link-button::after {
	width: 13%;
	height: 13%;
	right: 7%;
}
@media screen and (max-width: 750px) {
	.top__business-button .arrow-link-button::after {
		width: 11%;
		height: 11%;
		right: 5%;
	}
}

.top_business-box {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2vw;
	width: 100%;
	margin: 0 auto 5%;
}
@media screen and (max-width: 750px) {
	.top_business-box {
		grid-template-columns: repeat(2, 1fr);
		gap: 3vw;
		margin: 0 auto 15%;
	}
}

.top_business-box-cell {
	border-radius: 5px;
	background: #fff;
	box-shadow: 1px 1px 3px gray;
	text-align: center;
}
@media screen and (max-width: 750px) {
	.top_business-box-cell {
#		padding: 10% 8%;
	}
}

.top_business-box-cell a {
	display: block;
	padding: 20% 8%;
}

.top_business-box-cell .image {
	position: relative;
	width: 50%;
	margin: 0 auto 2%;
}
@media screen and (max-width: 750px) {
	.top_business-box-cell .image {
		width: 53%;
		margin: 0 auto 4%;
	}
}

.top_business-box-cell .image .on {
	position: relative;
	visibility: hidden;
}

.top_business-box-cell .image .off {
	position: absolute;
	top: 0;
	left: 0;
}
.top_business-box-cell:hover .image .on {
	visibility: visible;
}

.top_business-box-cell:hover .image .off {
	display: none;
}

.top_business-box-cell:hover a {
	color: var(--main-cp-color);

}

.top_business-box-cell .title {
	font-size: 1.0vw;
}
@media screen and (max-width: 750px) {
	.top_business-box-cell .title {
		font-size: 2.4vw;
	}
}
.top_business-box-cell .title span {
	font-size: 1.2vw;
	font-weight: bold;
}
@media screen and (max-width: 750px) {
	.top_business-box-cell .title span {
		font-size: 3.3vw;
	}
}

/** ir **/
.top__ir-container {
	width: 80%;
	margin: 5% auto 7%;
}
@media screen and (max-width: 750px) {
	.top__ir-container {
		width: 88%;
		margin: 10% auto 20%;
	}
}

.top__ir-title {
	width: 100%;
	font-size: 5.2vw;
	line-height: 1.1;
	font-weight: 900;
	margin: 0 0 2%;
}
@media screen and (max-width: 750px) {
	.top__ir-title {
		width: 57%;
		font-size: 10.2vw;
		margin: 0 0 10%;
	}
}

.top__ir-title span {
	font-size: 1.2vw;
	font-weight: 500;
	color: var(--main-cp-color);
}
@media screen and (max-width: 750px) {
	.top__ir-title span {
		font-size: 2.8vw;
	}
}

.top__ir-news-box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: end;
	flex-wrap: nowrap;
	margin-bottom: 4%;
}

.top__ir-news-title {
	width: 50%;
	font-size: 2.7vw;
	line-height: 1.3;
	font-weight: bold;
}
@media screen and (max-width: 750px) {
	.top__ir-news-title {
		font-size: 7.0vw;

	}
}

.top__ir-news-title span {
	font-size: 0.9vw;
}
@media screen and (max-width: 750px) {
	.top__ir-news-title span {
		font-size: 2.4vw;
	}
}

.top__ir-news-button {
	width: 13%;
	border-bottom: 1px solid #939393;
	padding-bottom: 1%;
	font-size: 0.95vw;
}

@media screen and (max-width: 750px) {
	.top__ir-news-button {
		width: 40%;
		font-size: 3.5vw;
	}
}

.top__ir-news-button .common__arrow-link {
	padding-right: 20%;
}
@media screen and (max-width: 750px) {
	.top__ir-news-button .common__arrow-link {
		padding-right: 17%;
	}
}

.top__ir-news-button .common__arrow-link::after {

}
@media screen and (max-width: 750px) {
	.top__ir-news-button .common__arrow-link::after {
		background-size: auto 70%;
	}
}


.top__ir-news-area {
	margin-bottom: 5%;
}
@media screen and (max-width: 750px) {
	.top__ir-news-area {
		margin-bottom: 15%;
	}
}

.top__ir-news-list .item a{
	display: flex;
	flex-wrap: wrap;
	text-decoration: none;
	align-items: center;
	border-bottom: 1px solid #E9E9E9;
	padding: 2% 0 2% 0;
}
@media screen and (max-width: 750px) {
	.top__ir-news-list .item a{
		padding: 4% 0 4% 0;
	}
}

.top__ir-news-list .item a:hover {
	border-bottom: 1px solid #F2532A;
}

.top__ir-news-list .item .date{
	margin: 0;
	font-size: 1.0vw;
	padding: 0 20px 0 0;
}
@media screen and (max-width: 750px) {
	.top__ir-news-list .item .date{
		font-size: 3.5vw;
	}
}

.top__ir-news-list .item .category{
	margin: 0;
	min-width: 140px;
	padding: 0 20px 0 0;
}
.top__ir-news-list .item .category span{
	color: #F2532A;
	text-align: center;
	display: inline-block;
	padding: 2% 9%;
	font-size: 0.9vw;
	line-height: 1;
	border: 1px solid #F2532A;
	border-radius: 5px;
}
@media screen and (max-width: 750px) {
	.top__ir-news-list .item .category span{
		padding: 4% 11%;
		font-size: 2.2vw;
	}
}

.top__ir-news-list .item .category span.service {
	color: #F2532A;
	border: 1px solid #F2532A;
}
.top__ir-news-list .item .category span.notice {
	color: #000000;
	border: 1px solid #000000;
}
.top__ir-news-list .item .category span.ir {
	color: #999999;
	border: 1px solid #999999;
}
.top__ir-news-list .item .title{
	width: 100%;
	margin-top: 1%;
	font-size: 1.1vw;
	display: -webkit-box;             
	-webkit-box-orient: vertical;      /* 垂直方向に配置 */
	overflow: hidden;                  /* 溢れた部分を隠す */
	text-overflow: ellipsis;           /* 溢れた部分に「...」を表示 */
#	-webkit-line-clamp: 2;             /* 最大行数を2行に設定 */
	-webkit-line-clamp: 2; /* ここを2や3に変更することで、行数を指定 */
	max-height: calc(1.5em * 2);
}
@media only screen and (max-width: 750px) {
	.top__ir-news-list .item .title{
		font-size: 4vw;
	}
}

.top__ir-news-list .item a:hover .title{
	color: #F2532A;
}



.top__ir-card-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.6vw;
	row-gap: 2vw;
	justify-items: flex-start;
	font-size: 1.1vw;
	margin-bottom: 5%;
}
@media screen and (max-width: 750px) {
	.top__ir-card-list {
		grid-template-columns: repeat(1, 1fr);
		font-size: 3.9vw;
		row-gap: 9vw;
		margin-bottom: 15%;
	}
}

.top__ir-card-list-image {
	margin-bottom: 3%;
	border-radius: 5px;
	overflow: hidden;
}

.zoom img {
	scale: 1.0;
	transition: .5s;
}
.zoom:hover img {
	scale: 1.05;
	transition-duration: 0.35s;
}

.top__ir-card-list-info {

}
.top__ir-card-list-info .arrow-link::after {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 750px) {
	.top__ir-card-list-info .arrow-link::after {
		width: 75%;
		height: 75%;
		top: 55%;
	}
}

.top__ir-card-list .zoom:hover .top__ir-card-list-info .arrow-link {
	color: var(--main-cp-color);
}
.top__ir-card-list .zoom:hover .top__ir-card-list-info .arrow-link::after {
	background-image: url(/images/common/common_btn_arrow_02.png);
}




.top__ir-button {
	width: 21%;
	margin-left: auto;
	margin-bottom: 7%;
}
@media screen and (max-width: 750px) {
	.top__ir-button {
		width: 85%;
		margin: 0 auto 10%;
	}
}
.top__ir-button .arrow-link-button {
	font-size: 1.0vw;
	padding: 8% 15%;
}
@media screen and (max-width: 750px) {
	.top__ir-button .arrow-link-button {
		font-size: 3.9vw;
		padding: 8% 10%;
		border-radius: 65px;
	}
}

.top__ir-button .arrow-link-button::after {
	width: 13%;
	height: 13%;
	right: 7%;
}
@media screen and (max-width: 750px) {
	.top__ir-button .arrow-link-button::after {
		width: 11%;
		height: 11%;
		right: 5%;
	}
}

/** company **/
.top__company-container {
	background: var(--bg-color-gray);
	padding: 7% 0;
}
@media screen and (max-width: 750px) {
	.top__company-container {
		padding: 15% 0;
	}
}


.top__company-box {
	width: 80%;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.5vw;

}
@media screen and (max-width: 750px) {
	.top__company-box {
		width: 89%;
		row-gap: 2vw;
	}
}

.top__company-box a:hover {
	border-bottom: unset;
}

.top__company-cell {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}
.top__company-cell .top__company-cell-img {
	scale: 1.0;
	transition: .5s;
}
.top__company-cell:hover .top__company-cell-img {
	scale: 1.05;
	transition-duration: 0.35s;
}

.top__company-cell-img:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* 半透明のグレー（黒50%） */
	pointer-events: none;
}
@media screen and (max-width: 750px) {
	.top__company-cell-img:after {
		background-color: unset;
	}
}

.top__company-cell-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 85%;
	color: #fff;
	font-size: 1.1vw;
	line-height: 1.6;
	text-align: center;
}
@media screen and (max-width: 750px) {
	.top__company-cell-text {
		width: 65%;
		font-size: 2.7vw;
	}
}
.top__company-cell-text span {
	font-weight: bold;
	font-size: 4.0vw;
}
@media screen and (max-width: 750px) {
	.top__company-cell-text span {
		font-size: 8.5vw;
	}
}
.top__company-cell-arrow {
	position: absolute;
	top: 84%;
	left: 93.9%;
	transform: translate(-50%, -50%);
	width: 5.4%;
}
@media screen and (max-width: 750px) {
	.top__company-cell-arrow {
		top: 87%;
		left: 92%;
		width: 8%;
	}
}

/** recruit **/
.top__recruit-container {
    width: 100%;
    position: relative;
}

.top__recruit-bg {
    width: 100%;
    position: relative;
}

.top__recruit-box {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
#	background: #7fffd4ad;
	width: 81%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: space-between;
	align-items: end;
}
@media screen and (max-width: 750px) {
	.top__recruit-box {
		flex-direction: column;
		align-items: center;
		row-gap: 14vw;
		width: 90%;
	}
}


.top__recruit-info {
	width: 55%;
}
@media screen and (max-width: 750px) {
	.top__recruit-info {
		width: 98%;
	}
}

.top__recruit-info-title {
	width: 48%;
	font-size: 5.4vw;
	font-weight: bold;
	margin-bottom: 5%;
	line-height: 1.1;
}
@media screen and (max-width: 750px) {
	.top__recruit-info-title {
		width: 100%;
		font-size: 10.3vw;
		margin-bottom: 8%;
		line-height: 1.1;
	}
}

.top__recruit-info-title span {
	font-size: 1.2vw;
}
@media screen and (max-width: 750px) {
	.top__recruit-info-title span {
		font-size: 2.6vw;
	}
}

.top__recruit-info p {
	font-size: 1.123vw;
	line-height: 1.8;
}
@media screen and (max-width: 750px) {
	.top__recruit-info p {
		font-size: 3.7vw;
		line-height: 1.6;
	}
}

.top__recruit-button {
	width: 20%;
}
@media screen and (max-width: 750px) {
	.top__recruit-button {
		width: 83.5%;
	}
}

.top__recruit-button .arrow-link-button {
	display: block;
	padding: 9% 10%;
	background-color: #ffffff36;
	color: #fff;
	border: 1px solid #fff;
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.0vw;
	text-align: center;
	position: relative;
	transition: background-color 0.3s ease;
}
@media screen and (max-width: 750px) {
	.top__recruit-button .arrow-link-button {
		padding: 7% 10%;
		font-size: 3.8vw;
	}
}

.top__recruit-button .arrow-link-button::after {
	content: "";
	width: 10%;
	height: 10%;
	background-image: url(/images/common/common_btn_arrow_09.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center right;
	position: absolute;
	right: 6%;
	top: 50%;
	transform: translateY(-50%);
}

.top__recruit-button .arrow-link-button:hover {
	background-color: var(--main-cp-color);
}
.top__recruit-button .arrow-link-button:hover::after {
#	background-image: url(/images/common/common_btn_arrow_09.png);
}


