@charset "UTF-8";
/* loading ---------------------------------------*/
.pace {
	-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pace-inactive {
	display: none;
}

.pace .pace-progress {
	background: #fff;
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 100%;
	width: 100%;
	height: 2px;
}

.loading {
	position:fixed;
	left:0;
	top:0;
	width: 100%;
	height:100vh;
	z-index:1000;
	background: #fff;
}

.loading.active {
	-webkit-animation: loading-finish 1s cubic-bezier(0.65, 0.05, 0.36, 1) 6.3s forwards;
	animation: loading-finish 1s cubic-bezier(0.65, 0.05, 0.36, 1) 6.3s forwards;
}
@keyframes loading-finish {
	0% {clip-path: inset(0);}
	100% {clip-path: inset(0 0 100% 0);}
}
@-webkit-keyframes loading-finish {
	0% {clip-path: inset(0);}
	100% {clip-path: inset(0 0 100% 0);}
}

.loading-inner {
	position: absolute;
	top: 46%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 573px;
	height: 97px;
	opacity: 0;
	transition: all 1.25s ease;
}

.loading.active .loading-inner {
	opacity:1;
}

.loading-logo {
	position: absolute;
	top: 50%;
	left: calc(100% - calc(97 / 573 * 100%));
	z-index: 2;
	transform: translateY(-50%);
	width: calc(97 / 573 * 100%);
	opacity: 0;
}

.loading-logo img {
	display: block;
	width: 100%;
}

.loading.active .loading-logo {
	-webkit-animation: loading-move 1.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.7s forwards;
	animation: loading-move 1.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.7s forwards;
	opacity:1;
}
@keyframes loading-move {
	0% {left: calc(100% - calc(97 / 573 * 100%));}
	100% {left: 0;}
}
@-webkit-keyframes loading-move {
	0% {left: calc(100% - calc(97 / 573 * 100%));}
	100% {left: 0;}
}

.loading.active .loading-logo-inner {
	-webkit-animation: loading-rotate 1.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.7s forwards;
	animation: loading-rotate 1.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.7s forwards;
}

@keyframes loading-rotate {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(-360deg);}
}
@-webkit-keyframes loading-rotate {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(-360deg);}
}


.loading-line {
	position: absolute;
	bottom: calc(9 / 97 * 100%);
	right: 0;
	z-index: 1;
	width: calc(553 / 573 * 100%);
	opacity: 0;
}

.loading-line img {
	display: block;
	width: 100%;
	aspect-ratio: 553 / 14;
}

.loading.active .loading-line {
	-webkit-animation: loading-line 1.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.7s forwards;
	animation: loading-line 1.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.7s forwards;
}

@keyframes loading-line {
	0% {
		clip-path: inset(0 0 0 100%);
		opacity:1;
	}
	100% {
		clip-path: inset(0);
		opacity:1;
	}
}
@-webkit-keyframes loading-line {
	0% {
		clip-path: inset(0 0 0 100%);
		opacity:1;
	}
	100% {
		clip-path: inset(0);
		opacity:1;
	}
}

.loading-title {
	position: absolute;
	top: calc(21 / 97 * 100%);
	left: calc(120 / 573 * 100%);
	z-index: 3;
	width: calc(430 / 573 * 100%);
	opacity: 0;
}

.loading-title img {
	display: block;
	width: 100%;
}

.loading.active .loading-title {
	-webkit-animation: loading-slide 0.8s cubic-bezier(0.65, 0.05, 0.36, 1) 2.6s forwards;
	animation: loading-slide 0.8s cubic-bezier(0.65, 0.05, 0.36, 1) 2.6s forwards;
}
@keyframes loading-slide {
	0% {
		clip-path: inset(0 100% 0 0);
		opacity:1;
	}
	100% {
		clip-path: inset(0);
		opacity:1;
	}
}
@-webkit-keyframes loading-slide {
	0% {
		clip-path: inset(0 100% 0 0);
		opacity:1;
	}
	100% {
		clip-path: inset(0);
		opacity:1;
	}
}


/* index kv ---------------------------------------*/
.indexkv {
	position: relative;
	z-index: 1;
	margin-top: -100px;
}

.indexkv-video {
	width: 100%;
	aspect-ratio: 1920 / 1080;
}

.indexkv-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.indexkv-title {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	width: calc(506 / 1200 * 100vw);
}

.indexkv-title img {
	width: 100%;
}


/* indexinformation ---------------------------------------*/
.indexinformation {
	padding: 66px 20px 66px;
	overflow: hidden;
}

.indexinformation-title {
	position: relative;
	z-index: 1;
	width: 356px;
	margin: 0 auto;
	padding-bottom: 60px;
}

.indexinformation-title::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	width: 100vw;
	height: 1px;
	background: #000;
	content: '';
}

.indexinformation-wrapper {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.indexinformation-wrapper::before,
.indexinformation-wrapper::after {
	position: absolute;
	top: 0;
	z-index: 1;
	width: 1px;
	height: 100%;
	background: #000;
	content: '';
}

.indexinformation-wrapper::before {left: 0;}
.indexinformation-wrapper::after {right: 0;}

.indexinformation-line::before,
.indexinformation-line::after {
	position: absolute;
	left: 50%;
	z-index: 1;
	width: 50%;
	height: 1px;
	background: #000;
	content: '';
}

.indexinformation-line::before {top: calc(100% / 3);}
.indexinformation-line::after {top: calc(100% / 3 * 2);}

.indexinformation-list {
	position: relative;
	padding-left: 50%;
	aspect-ratio: 1000 / 406;
}

.indexinformation-list::before,
.indexinformation-list::after {
	position: absolute;
	z-index: 1;
	background: #000;
	content: '';
}

.indexinformation-list::before {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 100%;
}

.indexinformation-list::after {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 1px;
}

.indexinformation-list > li > a {
	display: flex;
	gap: calc(16 / 500 * 100%);
	position: relative;
	width: 100%;
	padding: calc(16 / 500 * 100%);
	background: #fff;
	transition: all .25s ease;
}

.indexinformation-list > li > a::after {
	position: absolute;
	bottom: 10.3%;
	right: calc(14 / 500 * 100%);
	z-index: 1;
	width: calc(44 / 500 * 100%);
	aspect-ratio: 44 / 9;
	-webkit-mask-image: url('../img/index/icon_arrow_information.svg');
	-webkit-mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-image: url('../img/index/icon_arrow_information.svg');
	mask-size: contain;
	mask-position: center;
	mask-repeat: no-repeat;
	background: #000;
	content: '';
}

.indexinformation-list-tmb {
	flex-shrink: 0;
	width: calc(184 / 468 * 100%);
	aspect-ratio: 16 / 9;
}

.indexinformation-list-tmb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.indexinformation-list-summary {
	flex: 1;
	font-size: 0;
}

.indexinformation-list-info {
	display: flex;
	align-items: center;
	gap: 10px;
}

.indexinformation-list-info time {
	font-size: 14px;
	font-weight: 300;
	line-height: 1;
}

.indexinformation-list-category {
	display: inline-block;
	padding: 1px 6px 0;
	background: #000;
	font-size: 10px;
	letter-spacing: 0.02em;
	line-height: 1.68;
	color: #fff;
}

.indexinformation-list-title {
	display: -webkit-box;
	margin-top: calc(18 / 268 * 100%);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.747;
	letter-spacing: 0.05em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.indexinformation-list > li > a:hover {
	background: #000;
	opacity: 1;
}
.indexinformation-list > li > a:hover::after {background: #fff;}
.indexinformation-list > li > a:hover .indexinformation-list-info time {color: #fff;}
.indexinformation-list > li > a:hover .indexinformation-list-title {color: #fff;}

.indexinformation-list > li:first-of-type {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
}

.indexinformation-list > li:first-of-type > a {
	display: block;
	width: 100%;
	height: 100%;
}

.indexinformation-list > li:first-of-type > a::after {
	bottom: 3%;
	right: calc(30 / 500 * 100%);
}

.indexinformation-list > li:first-of-type .indexinformation-list-tmb {
	width: 100%;
	margin-bottom: calc(12 / 468 * 100%);
}

.indexinformation-list > li:first-of-type .indexinformation-list-summary {
	width: 100%;
}

.indexinformation-list > li:first-of-type .indexinformation-list-title {
	margin-top: calc(20 / 468 * 100%);
}

.indexinformation-list > li.indexinformation-list-nopost {
	top: 35%;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.18em;
}

/* indexaboutus ---------------------------------------*/
.indexaboutus {
	padding: 84px 20px 80px;
	background: #fbfe28;
}

.indexaboutus-title {
	width: 263px;
    margin: 0 auto 60px;
}

.indexaboutus-text {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.95;
	text-align: center;
	letter-spacing: 0.18em;
}

.indexaboutus-message {
	width: 642px;
	margin: 60px auto 16px;
}

.indexaboutus-message img {
	width: 100%;
}

.indexaboutus-image {
	width: 544px;
	margin: 36px auto 64px;
}

.indexaboutus-image img {
	width: 100%;
}

.indexaboutus-profile {
	width: 680px;
	margin: 42px auto 0;
}

.indexaboutus-profile-head {
	position: relative;
	border: 1px solid #000;
	cursor: pointer;
	transition: all 0.25s ease;
}

.indexaboutus-profile-head::after {
	display: inline-block;
	position: absolute;
	right: 17px;
	top: 42%;
	z-index: 1;
	transform: translate(0,-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	border-bottom: solid 1.5px #000;
	border-right: solid 1.5px #000;
	content: '';
	transition: all 0.25s ease;
	transform-origin: 74% 74%;
}

.indexaboutus-profile-head.open::after {
	transform: translate(0,-50%) rotate(225deg);
}

.indexaboutus-profile-head:hover {
	background: #000;
	color: #fbfe28;
}

.indexaboutus-profile-head:hover::after {
	border-bottom: solid 1.5px #fbfe28;
	border-right: solid 1.5px #fbfe28;
}

.indexaboutus-profile-head-title {
	padding: 12px 20px;
	font-size: 17px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.1em;
}

.indexaboutus-profile-body {
	border: 1px solid #000;
	border-top: none;
}

.indexaboutus-profile-inner {
	position: relative;
	padding: 42px 40px 34px;
}

.indexaboutus-profile-block {
	display: flex;
	gap: 36px;
	margin-bottom: 30px;
}

.indexaboutus-profile-image {
	width: 150px;
	flex-shrink: 0;
}

.indexaboutus-profile-image img {
	width: 100%;
}

.indexaboutus-profile-summary {
	flex: 1;
}

.indexaboutus-profile-position {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.12em;
	margin-top: -4px;
	margin-bottom: 10px;
}

.indexaboutus-profile-name {
	font-size: 20px;
	font-weight: 300;
	line-height: calc(30.46 / 20);
	letter-spacing: 0.12em;
	margin-bottom: 20px;
}

.indexaboutus-profile-overview {
	font-size: 14px;
	font-weight: 300;
	line-height: calc(26.46 / 14);
	letter-spacing: 0.12em;
}

.indexaboutus-profile-text {
	font-size: 15px;
	font-weight: 300;
	line-height: calc(26 / 15);
	letter-spacing: 0.08em;
	padding-bottom: 40px;
	margin-bottom: 38px;
	border-bottom: 1px solid #000;
}

.indexaboutus-profile-subtitle {
	font-size: 18px;
	font-weight: 500;
	line-height: calc(26 / 18);
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

.indexaboutus-profile-list {

}

.indexaboutus-profile-list > li {
	position: relative;
	font-size: 13px;
	font-weight: 300;
	line-height: calc(26 / 15);
	letter-spacing: 0.1em;
	padding-left: 15px;
}

.indexaboutus-profile-list > li::before {
	position: absolute;
	top: 9px;
	left: 0;
	z-index: 1;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	border: 1px solid #000;
	content: '';
}

.indexaboutus-profile-list > li span {
	font-size: 15px;
}

.indexaboutus-profile-close {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
	width: 40px;
	height: 36px;
	cursor: pointer;
}

.indexaboutus-profile-close::after {
	position: absolute;
	left: 50%;
	top: 66%;
	z-index: 1;
	transform: translate(-50%,-50%) rotate(225deg);
	width: 12px;
	height: 12px;
	border-bottom: solid 1.5px #000;
	border-right: solid 1.5px #000;
	content: '';
}


/* indexworks ---------------------------------------*/
.indexworks {
	padding: 110px 20px 150px;
	background: url('../img/index/bg_works.jpg') no-repeat center center / cover;
}

.indexworks-title {
	width: 263px;
    margin: 0 auto 34px;
}

.indexworks-text {
	font-size: 15px;
	font-weight: 300;
	text-align: center;
	letter-spacing: 0.18em;
	color: #fff;
	margin-bottom: 74px;
}

.indexworks-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 54px;
}

.indexworks-list > li {
	max-width: 217px;
	width: 100%;
}

.indexworks-list > li > a {
	display: block;
	position: relative;
	width: 100%;
	border-radius: 50%;
	overflow: hidden;
}

.indexworks-list > li > a::before {
	position: absolute;
	top: 50.5%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	width: 0;
	height: 0;
	background: #000;
	border-radius: 50%;
	content: '';
	transition: width 0.3s ease, height 0.3s ease;
}

.indexworks-list > li > a:hover::before {
	width: 96%;
	height: 96.5%;
}

.indexworks-list > li > a img {
	width: 100%;
}


/* indexcompany ---------------------------------------*/
.indexcompany {
	padding: 90px 20px 70px;
}

.inner.indexcompany-inner {
	max-width: 1030px;
}

.indexcompany-title {
	width: 270px;
    margin: 0 auto 40px;
}

.indexcompany-text {
	font-size: 15px;
	font-weight: 300;
	text-align: center;
	letter-spacing: 0.18em;
	margin-bottom: 54px;
}

.indexcompany-block {
	display: flex;
	gap: calc(50 / 1030 * 100%);
}

.indexcompany-info {
	margin-top: 5px;
	width: calc(492 / 1030 * 100%);
}

.indexcompany-info dl {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #000;
}

.indexcompany-info dt {
	width: calc(104 / 492 * 100%);
	padding: 15px 0 14px;
	font-size: min(calc(15 / 1070 * 100vw), 15px);
	font-weight: 500;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #000;
}

.indexcompany-info dd {
	width: calc(388 / 492 * 100%);
	padding: 15px 0 14px;
	font-size: min(calc(15 / 1070 * 100vw), 15px);
	font-weight: 300;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #000;
}

.indexcompany-access {
	width: calc(488 / 1030 * 100%);
}

.indexcompany-access-map {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: calc(377 / 488 * 100%);
}

.indexcompany-access-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.indexcompany-access-text {
	margin-top: 10px;
}

.indexcompany-access-text p {
	font-size: min(calc(14 / 1070 * 100vw), 14px);
	font-weight: 300;
	line-height: calc(22.34 / 14);
	letter-spacing: 0.08em;
}


/* pc only */
@media screen and (min-width: 768px){
}


/* sp only */
@media screen and (max-width: 767px){
	/* loading ---------------------------------------*/
	.loading {
		height:100vh;
	}

	.loading.active {
		-webkit-animation: loading-finish 1s cubic-bezier(0.65, 0.05, 0.36, 1) 5.3s forwards;
		animation: loading-finish 1s cubic-bezier(0.65, 0.05, 0.36, 1) 5.3s forwards;
	}

	.loading-inner {
		top: 46%;
		width: 260px;
		height: 46px;
	}


	/* index kv ---------------------------------------*/
	.indexkv {
		margin-top: 0;
	}

	.indexkv-video {
		height: 100vh;
		aspect-ratio: unset;
	}

	.indexkv-title {
		top: 44.7%;
		width: calc(253 / 375 * 100vw);
	}


	/* indexinformation ---------------------------------------*/
	.indexinformation {
		padding: 26px 0 2px;
	}

	.indexinformation-title {
		width: 170px;
		padding-bottom: 16px;
	}

	.indexinformation-wrapper {
		max-width: unset;
	}

	.indexinformation-wrapper::before,
	.indexinformation-wrapper::after {display: none;}

	.indexinformation-line::before,
	.indexinformation-line::after {display: none;}

	.indexinformation-list {
		display: flex;
		flex-wrap: wrap;
		padding-left: 0;
		aspect-ratio: unset;
	}

	.indexinformation-list::after {
		display: none;
	}

	.indexinformation-list > li {
		position: relative;
		width: 50%;
	}

	.indexinformation-list > li:nth-of-type(3)::after {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 100vw;
		height: 1px;
		background: #000;
		content: '';
	}

	.indexinformation-list > li > a {
		display: block;
		width: 100%;
		height: 100%;
		padding: calc(11 / 375 * 2 * 100%);
	}

	.indexinformation-list > li > a::after {
		display: none;
	}

	.indexinformation-list-tmb {
		width: 100%;
		margin-bottom: 7px;
	}

	.indexinformation-list-summary {
		width: 100%;
	}

	.indexinformation-list-info {
		justify-content: space-between;
	}

	.indexinformation-list-info time {
		font-size: 11px;
	}

	.indexinformation-list-category {
		padding: 1px 6px 0;
		font-size: 9px;
	}

	.indexinformation-list-title {
		display: block;
		margin-top: 8px;
		font-size: 13px;
		line-height: 1.385;
		-webkit-box-orient: unset;
		-webkit-line-clamp: unset;
		overflow: unset;
	}

	.indexinformation-list > li > a:hover {
		background: #fff;
	}
	.indexinformation-list > li > a:hover::after {background: #000;}
	.indexinformation-list > li > a:hover .indexinformation-list-info time {color: #000;}
	.indexinformation-list > li > a:hover .indexinformation-list-title {color: #000;}
	.indexinformation-list > li > a:active {
		background: #000;
		opacity: 1;
	}
	.indexinformation-list > li > a:active::after {background: #fff;}
	.indexinformation-list > li > a:active .indexinformation-list-info time {color: #fff;}
	.indexinformation-list > li > a:active .indexinformation-list-title {color: #fff;}

	.indexinformation-list > li:first-of-type {
		position: unset;
		height: unset;
	}

	.indexinformation-list > li:first-of-type > a {
		height: unset;
	}

	.indexinformation-list > li:first-of-type > a::after {
		display: none;
	}

	.indexinformation-list > li:first-of-type .indexinformation-list-tmb {
		margin-bottom: 7px;
	}

	.indexinformation-list > li:first-of-type .indexinformation-list-title {
		margin-top: 8px;
	}

	.indexinformation-list > li.indexinformation-list-nopost {
		top: 35%;
		padding-top: 40px;	
		font-size: 14px;
		min-height: 100px;
	}


	/* indexaboutus ---------------------------------------*/
	.indexaboutus {
		padding: 32px 28px 38px;
	}

	.indexaboutus-title {
		width: 144px;
		margin: 0 auto 24px;
	}

	.indexaboutus-text {
		font-size: 14px;
		line-height: 1.786;
		text-align: left;
		letter-spacing: 0.1em;
	}

	.indexaboutus-message {
		width: calc(321 / 375 * 100vw);
		margin: 36px auto 24px;
	}

	.indexaboutus-image {
		width: calc(343 / 375 * 100vw);
		margin: 27px auto 30px -28px;
	}

	.indexaboutus-profile {
		width: 100%;
		margin: 28px auto 0;
	}

	.indexaboutus-profile-head::after {
		right: 15px;
		top: 46%;
		width: 8px;
		height: 8px;
		border-bottom: solid 1px #000;
		border-right: solid 1px #000;
	}

	.indexaboutus-profile-head:hover {
		background: unset;
		color: #000;
	}

	.indexaboutus-profile-head:active {
		background: #000;
		color: #fbfe28;
	}
	
	.indexaboutus-profile-head:hover::after {
		border-bottom: solid 1.5px #000;
		border-right: solid 1.5px #000;
	}

	.indexaboutus-profile-head:active::after {
		border-bottom: solid 1.5px #fbfe28;
		border-right: solid 1.5px #fbfe28;
	}

	.indexaboutus-profile-head-title {
		padding: 8px 16px;
		font-size: 12px;
	}

	.indexaboutus-profile-body {
		border-left: none;
		border-right: none;
	}

	.indexaboutus-profile-inner {
		padding: 28px 0 22px;
	}

	.indexaboutus-profile-block {
		gap: 25px;
		margin-bottom: 18px;
	}

	.indexaboutus-profile-image {
		width: 155px;
	}

	.indexaboutus-profile-position {
		margin-bottom: 5px;
	}

	.indexaboutus-profile-name {
		margin-bottom: 16px;
	}

	.indexaboutus-profile-overview span {
		display: block;
		line-height: calc(36 / 27);
	}

	.indexaboutus-profile-text {
		font-size: 14px;
		line-height: calc(25 / 14);
		padding-bottom: 28px;
		margin-bottom: 18px;
	}

	.indexaboutus-profile-subtitle {
		font-size: 17px;
		line-height: calc(25 / 17);
		margin-bottom: 10px;
	}

	.indexaboutus-profile-list > li {
		line-height: calc(21 / 13);
		letter-spacing: 0.07em;
		padding-left: 12px;
	}

	.indexaboutus-profile-list > li::before {
		top: 6px;
	}

	.indexaboutus-profile-list > li + li {
		margin-top: 3px;
	}

	.indexaboutus-profile-list > li span {
		font-size: 14px;
	}

	.indexaboutus-profile-close {
		width: 30px;
		height: 34px;
	}

	.indexaboutus-profile-close::after {
		border-bottom: solid 1px #000;
		border-right: solid 1px #000;
	}


	/* indexworks ---------------------------------------*/
	.indexworks {
		padding: 36px 20px;
		background: url('../img/index/bg_works_sp.jpg') no-repeat center center / cover;
	}

	.indexworks-title {
		width: 116px;
		margin: 0 auto 24px;
	}

	.indexworks-text {
		font-size: 13px;
		line-height: calc(22 / 13);
		margin-bottom: 24px;
	}

	.indexworks-list {
		flex-direction: column;
		gap: 16px;
	}

	.indexworks-list > li {
		max-width: 124px;
	}

	.indexworks-list > li > a::before {
		top: 50.5%;
		left: 50%;
	}

	.indexworks-list > li > a:hover::before {
		width: 0;
		height: 0;
	}
	.indexworks-list > li > a:active::before {
		width: 96%;
		height: 96.5%;
	}


	/* indexcompany ---------------------------------------*/
	.indexcompany {
		padding: 30px 23px 26px;
	}

	.inner.indexcompany-inner {
		max-width: unset;
	}

	.indexcompany-title {
		width: 146px;
		margin: 0 auto 28px;
	}

	.indexcompany-text {
		font-size: 13px;
		line-height: calc(41 / 26);
		letter-spacing: 0.1em;
		margin-bottom: 26px;
	}

	.indexcompany-block {
		display: block;
	}

	.indexcompany-info {
		margin-top: 0;
		width: 100%;
	}

	.indexcompany-info dt {
		width: 86px;
		padding: 12px 0 11px;
		font-size: 13px;
	}

	.indexcompany-info dd {
		width: calc(100% - 86px);
		padding: 12px 0 11px;
		font-size: 13px;
	}

	.indexcompany-info dt.sp-2row,
	.indexcompany-info dd.sp-2row {
		display: flex;
		align-items: center;
		height: 60px;
	}

	.indexcompany-info dt:last-of-type,
	.indexcompany-info dd:last-of-type {
		border-bottom: none;
	}


	.indexcompany-access {
		width: 100%;
	}

	.indexcompany-access-map {
		padding-top: calc(168 / 329 * 100%);
	}

	.indexcompany-access-text p {
		font-size: 12px;
		line-height: calc(18 / 12);
	}

	.indexcompany-access-text p + p {
		margin-top: 8px;
	}


}


/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px){

}