@charset "utf-8";



/* :::::: ページタイトル :::::: */
.p-page_visual {
	position: relative;
	max-width: 1072px;
	margin: 0 auto;
}
.p-page_visual .c-panel {
	position: absolute;
	left: 0;
	bottom: -48px;
	width: 376px;
	height: 264px;
}
.visual_title {
	line-height: 1.5;
}
.visual_title::before {
	content: "";
	position: absolute;
	top: 49%;
	right: calc(100% + .8em);
	width: 2.5em;
	border-top: 1px solid currentcolor;
}
.visual_image {
	margin: 0 calc(50% - 50vw);
}
.visual_image img {
	width: 100%;
}
@media screen and (min-width: 768px) {
	.visual_title {
		position: relative;
	}
}
@media screen and (max-width: 767px) {
	.p-page_visual {
		margin-top: 64px;
	}
	.p-page_visual .c-panel {
		bottom: calc(-24vw / 4.8);
		width: calc(200vw / 4.8);
		height: calc(144vw / 4.8);
	}
	.visual_title {
		font-size: calc(19vw / 4.8);
	}
	.visual_title::before {
		right: calc(100% - .8em);
	}
}
@media screen and (max-width: 479px) {
	.p-page_visual .c-panel {
		bottom: -24px;
		width: 200px;
		height: 144px;
	}
	.visual_title {
		font-size: 19px;
	}
}

/* :::::: パンくず :::::: */
.c-crumb {
	display: inline-flex;
	align-items: center;
	position: absolute;
	right: calc(50% - 536px);
	margin-top: 24px;
	text-align: right;
	font-size: 10px;
}
.c-crumb a {
	display: block;
	padding: .5em;
}
@media (hover: hover) {
	.c-crumb a {
		transition: opacity .3s;
	}
	.c-crumb a:hover {
		opacity: .5;
	}
}
.c-crumb a:last-child {
	color: #00abe4;
}
.c-crumb::before {
	content: "";
	position: absolute;
	right: calc(536px - 50vw);
	bottom: 0;
	left: 0;
	min-width: calc(100% + 32px);
	border-bottom: 1px solid #e1e1e1;
}
@media screen and (max-width: 1199px) {
	.c-crumb {
		right: 0;
	}
}
@media screen and (max-width: 767px) {
	.c-crumb {
		position: absolute;
		bottom: calc(100% + 26px);
		margin-top: 0;
	}
}
@media screen and (max-width: 479px) {
	.c-crumb::before {
		min-width: calc(100% + 16px);
	}
}

/* :::::: セクション :::::: */
.page_section {
	position: relative;
	max-width: 1000px;
	margin: 136px auto 120px;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.page_section {
		margin: calc(80vw / 4.8) auto;
	}
}
@media screen and (max-width: 479px) {
	.page_section {
		margin: 80px auto;
	}
}

/* :::::: タイトル :::::: */
.section_title {
	display: inline-block;
	position: relative;
	padding-bottom: 12px;
	color: #00abe4;
	font-size: 28px;
	line-height: 1.4;
	letter-spacing: .1em;
}
.section_title::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -100%;
	width: 300%;
	height: 1px;
	background: linear-gradient(to left, rgba(195,195,195,0), #c3c3c3 50%, rgba(195,195,195,0));
}
.section_title.-pillar {
	display: inline-grid;
	place-items: center;
	position: relative;
	height: 104px;
	margin: 0 auto;
	padding: 0 40px 20px;
	letter-spacing: .1em;
}
.section_title .c-pillar {
	width: 24px;
	stroke-width: .8;
}
.section_title.-pillar::before {
	bottom: 24px;
	left: 10%;
	width: 80%;
}
@media screen and (max-width: 768px) {
	.section_title {
		font-size: calc(20vw / 4.8);
	}
}
@media screen and (max-width: 479px) {
	.section_title {
		font-size: 20px;
	}
	.section_title.-pillar {
		height: 64px;
		padding-bottom: 8px;
	}
	.section_title .c-pillar {
		width: 16px;
		stroke-width: 1;
	}
	.section_title.-pillar::before {
		bottom: 12px;
	}
}

/* :::::: データテーブル :::::: */
.c-datatable {
	margin-top: 48px;
	font-family: "Noto Sans JP", sans-serif;
}
.c-datatable .row {
	display: flex;
}
.c-datatable dt,
.c-datatable dd {
	margin: 0;
	line-height: 1.4;
	border-top: 1px solid white;
}
.c-datatable dt {
	flex-basis: calc(7em + 96px);
	padding: 24px 48px;
	color: white;
	font-size: 17px;
	letter-spacing: .1em;
	font-weight: 700;
	background: #00abe4;
}
.c-datatable small {
	font-size: 80%;
}
.c-datatable .row:first-child  dt {
	border-top-left-radius: 5px;
}
.c-datatable .row:last-child  dt {
	border-bottom-left-radius: 5px;
}
.c-datatable dd {
	flex-grow: 1;
	flex-basis: calc(100% - 12em);
	padding: 24px;
	font-size: 15px;
	text-align: left;
	background: #f3f3f3;
}
.c-datatable .row:first-child dd {
	border-top-right-radius: 5px;
}
.c-datatable .row:last-child dd {
	border-bottom-right-radius: 5px;
}
.c-datatable .js-splitText {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.c-datatable dt {
		flex-basis: calc(6em + 32px);
		padding: 16px;
	}
	.c-datatable dd {
		padding: 16px;
	}
}
@media screen and (max-width: 479px) {
	.c-datatable {
		margin-top: 24px;
	}
	.c-datatable dt {
		font-size: 14px;
	}
	.c-datatable dd {
		font-size: 13px;
	}
}

/* :::::: タブコンテンツ :::::: */
.c-tabs .tab_toggle {
	display: flex;
	z-index: 0;
	position: relative;
}
.c-tabs .tab_toggle::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: 0;
	right: calc(50% - 50vw);
	bottom: 0;
	left: calc(50% - 50vw);
	background: #f3f3f3;
}
.c-tabs .tab_toggle li {
	counter-increment: num;
	flex-grow: 1;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: .1em;
}
.c-tabs .tab_button {
	color: #00abe4;
	background: #f3f3f3;
}
.c-tabs .tab_button::before {
	content: counter(num);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	margin-right: .5em;
	border-radius: 32px;
	color: #00abe4;
	font-size: 20px;
	background: white;
}
@media (hover: hover) {
	.c-tabs .tab_button {
		transition: background .3s;
	}
	.c-tabs .tab_button:hover {
		background: #fafafa;
		transition-duration: .1s;
	}
}
@media screen and (min-width: 768px) {
	.c-tabs .tab_button {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 112px;
	}
}
@media screen and (max-width: 767px) {
	.c-tabs .tab_toggle li {
		line-height: 1.4;
		text-align: center;
	}
	.c-tabs .tab_button {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		padding: 40px 0 8px;
		position: relative;
	}
	.c-tabs .tab_button::before {
		position: absolute;
		top: 12px;
		left: calc(50% - 10px);
		width: 20px;
		height: 20px;
		font-size: 13px;
	}
}
@media screen and (max-width: 479px) {
	.c-tabs .tab_toggle {
		margin: 0 -16px;
	}
	.c-tabs .tab_toggle li {
		font-size: 11px;
	}
}

.c-tabs .tab_contents {
	position: relative;
	min-height: 50vh;
	margin: 80px 0 120px;
}
.c-tabs .tab_contents .page_section {
	margin: 0 auto;
	padding-top: 24px;
}
.c-tabs .tab_contents .page_section:not(.is-active) {
	position: absolute;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
}
/* motion */
.c-tabs .tab_button.is-active {
	color: white;
	background: #00abe4;
	pointer-events: none;
}
.c-tabs .tab_section:not(.is-active) {
	opacity: 0;
	transform: translateY(-24px);
	pointer-events: none;
}
.c-tabs .tab_contents.is-anim {
	transition: height .6s cubic-bezier(.3,1,.7,1);
}
.c-tabs .tab_button.is-anim {
	transition: color .6s, background .6s;
}
.c-tabs .tab_section.is-anim {
	transition: opacity .6s, transform .6s cubic-bezier(.3,1,.7,1);
}
.c-tabs .tab_section.is-anim:not(.is-active) {
	transform: translateY(24px);
	transition-duration: .3s;
}
.c-tabs .tab_section.is-anim.is-active {
	transition-delay: .1s;
}

/* :::::: 関連コンテンツ :::::: */
.p-relation {
	position: relative;
	margin-top: 120px;
	padding-bottom: 120px;
}
.p-relation::before {
	z-index: -1;
	bottom: 0;
	height: 320px;
	background: #105299;
}

.c-relation {
	display: flex;
	justify-content: center;
	gap: 20px 48px;
	position: relative;
	margin: 56px auto 0;
	text-align: center;
}
.c-relation a {
	display: block;
	border-radius: 10px;
	color: white;
	font-size: 22px;
	line-height: 1.4;
	white-space: nowrap;
	background: linear-gradient(to top, #0099e4, #00b6e4 36%);
	box-shadow: 8px 8px 16px rgba(0,0,0,.1);
}
.c-relation .image img {
	border-radius: 10px 10px 0 0;
}
.c-relation .main {
	display: inline-block;
	position: relative;
	padding: 1.8em 1em;
	padding-right: calc(1em + 10px);
	border-radius: 0 0 10px 10px;
}
.c-relation .main .ar {
	position: absolute;
	right: 0;
	top: calc(50% - 6px);
}
@media screen and (max-width: 767px) {
	.p-relation::before {
		height: calc(240vw / 3.75);
	}
	.p-vision .p-relation::before {
		height: calc(136vw / 3.75);
	}
	.c-relation {
		flex-direction: column;
		max-width: 600px;
	}
	.c-relation a {
		display: flex;
		min-height: 112px;
		font-size: 18px;
	}
	.c-relation a > * {
		flex-basis: 50%;
	}
	.c-relation .image img {
		height: 100%;
		object-fit: cover;
		border-radius: 10px 0 0 10px;
	}
	.c-relation .main {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		padding: 1em;
		padding-right: 24px;
	}
	.c-relation .main .ar {
		top: calc(50% - 4px);
		right: 16px;
		width: 6px;
	}
}
@media screen and (max-width: 479px) {
	.p-relation {
		margin-top: 80px;
		padding-bottom: 48px;
	}
	.c-relation {
		margin-top: 24px;
	}
	.c-relation a {
		font-size: calc(13vw / 3.75);
	}
}
@media (hover: hover) {
	.c-relation a:hover {
		box-shadow: 8px 12px 20px rgba(0,0,0,.1);
		transform: translateY(-4px);
	}
	.c-relation a {
		transition: transform .3s, box-shadow .3s;
		transition-timing-function: cubic-bezier(.3,1,.7,1);
	}
}


/**
 * 企業情報
 * ---------------------------------------- */
.p-about {
	
}

/* デコレーション */
.p-about .deco_relation {
	left: 60%;
}
.p-about .deco_relation .obj {
	top: 400px;
}


/**
 * 会社概要・アクセス
 * ---------------------------------------- */
.p-profile {
	max-width: 824px;
}

/* :::::: 本社へのアクセス :::::: */
.p-access {
	position: relative;
	padding-bottom: 80px;
}
.p-access > * {
	position: relative;
}
.p-access::before {
	content: "";
	position: absolute;
	right: -64px;
	bottom: 0;
	left: calc(50% - 50vw);
	height: 464px;
	border-radius: 0 5px 5px 0;
	background: linear-gradient(to left, #0099e4, #00b6e4);
}
.access_map {
	height: 420px;
	margin-top: 48px;
	background: #ccc;
	box-shadow: 8px 8px 16px rgba(0,0,0,.1);
}
.access_map,
.access_map iframe {
	border-radius: 5px;
}
.access_list {
	margin: 48px 0 0 24px;
	padding: 16px 32px;
	border-left: 1px solid rgba(255,255,255,.5);
	color: white;
	text-align: left;
}
.access_list dt {
	font-size: 17px;
}
.access_list dd {
	font-size: 14px;
}
@media screen and (max-width: 479px) {
	.p-access {
		padding-bottom: 40px;
	}
	.access_map {
		height: 264px;
		margin-top: 24px;
	}
	.access_list {
		margin: 24px 0 0 16px;
		padding: 8px 16px;
	}
	.access_list dt {
		font-size: 15px;
	}
	.access_list dd {
		font-size: 13px;
	}
}

/* デコレーション */
.p-about .deco_profile {
	z-index: -2;
}


/**
 * 組織図
 * ---------------------------------------- */
.p-organization {
	max-width: 896px;
}
.org_container {
	position: relative;
	margin-top: 48px;
	padding: 80px 0;
}
.org_container::before {
	top: 0;
	bottom: 0;
	background: #f3f3f3;
}
.org_label {
	position: absolute;
	top: calc(80px + 24px);
	left: -24px;
	width: 224px;
	padding: 1em;
	border-radius: 5px 5px 5px 0;
	color: white;
	font-size: 20px;
	background: #004692;
}
.org_label::before {
	content: "";
	z-index: -1;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 32px;
	height: 100%;
	border-top-left-radius: 5px;
	background: #003c5e;
	transform-origin: left bottom;
	transform: skewY(33deg);
}
.org_wrap {
	padding: 40px 80px 56px;
	border-radius: 10px;
	box-shadow: 8px 8px 16px rgba(0,0,0,.1);
	background: white;
}
.org_inside::before {
	content: "";
	position: absolute;
	top: calc(50% - 400px);
	left: calc(50% - 400px);
	width: 800px;
	height: 800px;
	background: url(../img/bg_track.svg) center / contain no-repeat;
	opacity: .3;
}
.org_logo {
	position: absolute;
	top: calc(50% - 17px);
	left: 74%;
	width: 146px;
	line-height: 1;
}
.org_logo img {
	width: 100%;
}
@media screen and (max-width: 999px) {
	.org_wrap {
		padding-right: 24px;
		padding-left: 24px;
	}
	.org_inside::before {
		top: calc(50% - 40vw);
		left: calc(50% - 40vw);
		width: 80vw;
		height: 80vw;
	}
}
@media screen and (max-width: 767px) {
	.org_container {
		padding: 48px 0;
	}
	.org_label {
		top: calc(48px + 24px);
		width: calc(224vw / 7.67);
		font-size: 16px;
	}
	.org_wrap {
		padding: 24px calc(24vw / 4.8);
		padding-left: calc(16vw / 4.8);
	}
	.org_inside::before {
		top: calc(50% - 300px);
		left: calc(50% - 300px);
		width: 600px;
		height: 600px;
		background-image: url(../img/bg_track_v.svg);
	}
	.org_logo {
		top: calc(32% - 17px);
		left: calc(30% - 73px);
	}
}
@media screen and (max-width: 479px) {
	.org_container {
		margin-top: 24px;
	}
	.org_label {
		left: -12px;
		width: calc(160vw / 3.75);
		padding: .5em;
		font-size: calc(16vw / 3.75);
	}
	.org_label::before {
		width: 12px;
	}
	.org_wrap {
		padding-right: 16px;
		padding-left: 12px;
	}
	.org_inside::before {
		top: 80px;
		left: 40px;
		width: calc(100% - 80px);
		height: calc(100% - 160px);
	}
	.org_logo {
		top: calc(32% - 14px);
		left: calc(30% - 58px);
		width: 117px;
		height: 28px;
	}
}

/* デコレーション */
.p-about .deco_organization {
	margin-top: -64px;
}
@media screen and (max-width: 767px) {
	.p-about .deco_organization {
		margin-top: -48px;
	}
}


/**
 * 会社沿革
 * ---------------------------------------- */
.p-history {
	max-width: 920px;
}
.p-history .c-datatable dd p {
	margin-top: 1.5em;
	padding-bottom: 1em;
}
@media screen and (min-width: 768px) {
	.p-history .c-datatable dt {
		flex-basis: calc(10em + 96px);
		white-space: nowrap;
	}
}
@media screen and (max-width: 767px) {
	.p-history .c-datatable dt {
		flex-basis: calc(5em + 32px);
	}
	.p-history .c-datatable dt small {
		display: block;
	}
}


/**
 * 私たちのビジョン
 * ---------------------------------------- */
.p-vision {
	position: relative;
}
.p-vision::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
	right: calc(50% + 360px);
	height: calc(100% - 720px);
	background: linear-gradient(to top, #0099e4, #00b6e4);
}
@media screen and (min-width: 768px) {
	.p-vision .c-relation {
		max-width: 680px;
	}
	.p-vision .c-relation a {
		display: flex;
		background: linear-gradient(to top, #0099e4, #00b6e4);
	}
	.p-vision .c-relation .image {
		flex-basis: 56%;
	}
	.p-vision .c-relation .image img {
		border-radius: 10px 0 0 10px;
	}
	.p-vision .c-relation .main {
		flex-basis: 44%;
	}
	.p-vision .c-relation .main {
		display: inline-flex;
		justify-content: center;
		align-items: center;
	}
	.p-vision .c-relation .main .ar {
		right: 24px;
	}
}
@media screen and (max-width: 767px) {
	.p-vision .p-message {
		margin-top: 64px;
	}
}

/* デコレーション */
.p-vision .deco_relation {
	left: 60%;
}
.p-vision .deco_relation .obj {
	top: 400px;
}


/**
 * 代表メッセージ
 * ---------------------------------------- */
.p-vision .p-message {
	max-width: 640px;
	padding: 80px 0;
	padding-left: 120px;
}
.p-vision .p-message::before {
	top: 0;
	right: calc(50% - 50vw + 64px);
	height: 100%;
	background: #f3f3f3;
}
.p-vision .p-message .message_image {
	position: absolute;
	top: 32px;
	right: calc(100% - 120px + 56px);
	width: 312px;
}
.p-vision .p-message .message_text {
	padding-top: 48px;
	text-align: justify;
}
.p-vision .p-message .message_text .tag {
	color: #00abe4;
	font-size: 16px;
}
.p-vision .p-message .message_text .title {
	position: relative;
	margin-top: 12px;
	padding-bottom: 20px;
	font-size: 27px;
	line-height: 1.6;
	letter-spacing: .1em;
	text-align: left;
}
.p-vision .p-message .message_text .title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: -56px;
	width: 8em;
	border-bottom: 1px solid #00abe4;
}
.p-vision .p-message .message_text p {
	grid-area: 1 / 2 / 2 / 3;
	margin-top: 24px;
	font-size: 15px;
}
.p-vision .p-message .message_text p:not([class]) {
	font-family: "Noto Sans JP", sans-serif;
}
.p-vision .p-message .message_text .signature {
	margin-top: 16px;
	font-size: 12px;
	font-family: "Midashi Go MB31", sans-serif;
	text-align: right;
}
.p-vision .p-message .message_text .signature .name {
	font-size: 17px;
}
.p-vision .p-message .message_text .signature {
	text-align: right;
}

/* デコレーション */
.p-vision .deco_message {
	z-index: 0;
	right: 70%;
	opacity: .5;
}
.p-vision .deco_message .obj {
	top: 240px;
}
.p-vision .deco_message .obj rect {
	stroke: #d9d9d9;
}

@media screen and (max-width: 1136px) {
	.p-vision::before {
		right: auto;
		width: calc(208vw / 11.36);
	}
	.p-vision .p-message {
		padding-left: calc(120vw / 11.36);
	}
	.p-vision .p-message .message_image {
		left: calc(50% - 50vw);
	}
	.p-vision .p-message .message_text .title br {
		/* display: none; */
	}
	.p-vision .p-message .message_text .title::after {
		left: calc(50% - 50vw + 252px);
	}
	.message_text::before {
		content: "";
		float: left;
		width: 200px;
		height: 296px;
		margin-left: calc(50% - 50vw + 112px);
	}
}
@media screen and (max-width: 767px) {
	.p-vision::before {
		width: calc(24vw / 3.75);
	}
	.p-vision .p-message {
		padding-top: calc(40vw / 3.75);
		padding-left: calc(24vw / 3.75);
	}
	.p-vision .p-message::before {
		right: calc(50% - 50vw);
	}
	.message_text::before {
		display: none;
	}
	.p-vision .p-message .message_text {
		padding-top: 0;
	}
	.p-vision .p-message .message_image {
		width: calc(142vw / 3.75);
	}
	.p-vision .p-message .message_text .tag,
	.p-vision .p-message .message_text .title {
		margin-left: calc(120vw / 3.75);
	}
	.p-vision .p-message .message_text .tag {
		margin-top: calc(24vw / 3.75);
		font-size: calc(12vw / 3.75);
	}
	.p-vision .p-message .message_text .title {
		margin-top: .3em;
		padding-bottom: calc(32vw / 3.75);
		font-size: calc(18vw / 3.75);
		line-height: 1.5;
	}
	.p-vision .p-message .message_text .title::after {
		display: none;
	}
	.p-vision .p-message .message_text p {
		margin-top: 1em;
	}
}
@media screen and (max-width: 479px) {
	.p-vision::before {
		height: calc(100% - 104vw);
	}
	.p-vision .p-message .message_text .tag,
	.p-vision .p-message .message_text .title {
		margin-left: calc(130vw / 3.75);
	}
	.p-vision .p-message .message_text p {
		font-size: 13px;
	}
	.p-vision .p-message .message_image {
		top: calc(32vw / 3.75);
	}
	.p-vision .p-message .message_image + p {
		position: relative;
		margin-top: calc(28vw / 3.75);
		padding-top: calc(20vw / 3.75);
	}
	.message_image + p::before {
		content: "";
		position: absolute;
		top: 0;
		left: -16px;
		width: 50%;
		border-top: 1px solid #00abe4;
	}
}


/**
 * 中期経営ビジョン2025
 * ---------------------------------------- */
.p-vision.-slogan::before {
	right: calc(50% + 280px);
}
.p-vision .p-about-vision {
	position: relative;
	max-width: 800px;
	padding-left: 400px;
}
.p-vision .about_text .title {
	position: relative;
	padding-bottom: 20px;
	font-size: 25px;
	line-height: 1.6;
	white-space: nowrap;
}
.p-vision .about_text .title::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -24px;
	width: calc(100% + 48px);
	height: 1px;
	background: linear-gradient(to left, rgba(195,195,195,0), #c3c3c3 50%, rgba(195,195,195,0));
}
.p-vision .about_text p {
	margin-top: 24px;
	font-size: 15px;
	font-family: "Noto Sans JP", sans-serif;
	text-align: justify;
}
.p-vision .about_image {
	position: absolute;
	top: -48px;
	right: calc(100% - 248px);
}
.p-vision .about_image.-i1 {
	width: 448px;
}
.p-vision .about_image.-i2 {
	width: 272px;
	top: 100%;
	right: calc(100% - 320px);
}

/* :::::: 中期経営ビジョン2025 スローガン :::::: */
.p-vision .p-slogan {
	padding: 160px 0 200px;
}
.p-vision .p-slogan::before {
	top: 0;
	height: 100%;
	background: #f3f3f3;
}
.p-vision .p-slogan::after {
	content: "";
	position: absolute;
	top: 180px;
	right: calc(50% - 50vw);
	bottom: 120px;
	left: 40px;
	background: white;
	box-shadow: 8px 8px 16px rgba(0,0,0,.1);
}
.p-vision .slogan_title,
.p-vision .slogan_image,
.p-vision .slogan_catchcopy,
.p-vision .p-slogan p,
.p-vision .slogan_column {
	z-index: 1;
	position: relative;
}
.p-vision .slogan_title {
	display: inline-block;
	position: relative;
	padding-bottom: 16px;
	color: #00abe4;
	font-size: 28px;
	line-height: 1.4;
	letter-spacing: .1em;
}
.p-vision .slogan_title::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -24px;
	width: calc(100% + 48px);
	height: 1px;
	background: linear-gradient(to left, rgba(195,195,195,0), #c3c3c3 50%, rgba(195,195,195,0));
}
.p-vision .slogan_image {
	margin-top: 80px;
	padding: 0 80px;
}
.p-vision .slogan_catchcopy {
	display: inline-block;
	margin-top: 64px;
	padding: 0 1.8em 0 1.5em;
	font-size: 30px;
	line-height: 1.6;
}
.p-vision .slogan_catchcopy::before,
.p-vision .slogan_catchcopy::after {
	content: "";
	position: absolute;
	width: .7em;
	height: 1.3em;
	border-style: solid;
	border-color: #00abe4;
}
.p-vision .slogan_catchcopy::before {
	top: 0;
	left: 0;
	border-width: 1px 0 0 1px;
}
.p-vision .slogan_catchcopy::after {
	right: 0;
	bottom: 0;
	border-width: 0 1px 1px 0;
}
.p-vision .slogan_catchcopy .phrase {
	display: inline-block;
}
.p-vision .p-slogan p {
	max-width: 520px;
	margin: 24px auto 0;
	font-size: 15px;
	font-family: "Noto Sans JP", sans-serif;
	text-align: justify;
}
.p-vision .slogan_column {
	display: inline-flex;
	flex-direction: column;
	margin-top: 40px;
	padding: 0 80px 48px;
	border: 1px solid #00abe4;
}
.p-vision .slogan_column .column_title {
	display: inline-block;
	margin-top: -.7em;
	padding: 0 1em;
	color: #00abe4;
	font-size: 20px;
	line-height: 1.4;
	background: white;
}
.p-vision .slogan_column .slogan_lineup {
	margin-top: 40px;
	font-size: 15px;
	line-height: 1.6;
	font-family: "Noto Sans JP", sans-serif;
	text-align: justify;
}
.p-vision .slogan_column .slogan_lineup li {
	counter-increment: num;
	padding-left: 1.5em;
	text-indent: -1.5em;
}
.p-vision .slogan_column .slogan_lineup li:nth-child(n+2) {
	margin-top: .2em;
}
.p-vision .slogan_column .slogan_lineup li::before {
	content: counter(num)".";
	display: inline-block;
	margin-right: .3em;
	color: #00abe4;
	font-size: 120%;
	vertical-align: baseline;
	text-indent: 0;
}

/* デコレーション */
.p-vision .deco_vision {
	z-index: -2;
}
.p-vision .deco_vision .bar {
	top: 240px;
}
.p-vision .deco_slogan {
	right: 70%;
}
@media screen and (max-width: 767px) {
	.p-vision .deco_vision .bar {
		top: 320px;
		transform: scaleY(.8);
	}
}

@media screen and (max-width: 1199px) {
	.p-vision .about_image.-i1 {
		right: auto;
		left: calc(50% - 50vw);
	}
}
@media screen and (max-width: 999px) {
	.p-vision .about_image.-i1 {
		width: 44.8vw;
	}
	.p-vision .about_image.-i2 {
		top: 40vw;
		right: 55vw;
		width: 27.2vw;
	}
	.p-vision .p-about-vision {
		max-width: none;
		padding-left: 50%;
	}
	.p-vision .about_text .title {
		margin: 0 -1em;
	}
}
@media screen and (max-width: 767px) {
	.p-vision .p-about-vision {
		margin-top: 64px;
		margin-bottom: 0;
		padding-left: 48px;
	}
	.p-vision .about_image {
		position: static;
	}
	.p-vision .about_image img {
		width: 100%;
	}
	.p-vision .about_image.-i1 {
		width: calc(212vw / 3.75);
		margin-top: calc(24vw / 3.75);
		margin-left: calc(50% - 50vw - 24px);
	}
	.p-vision .about_image.-i2 {
		width: calc(126vw / 3.75);
		margin-top: calc(-56vw / 3.75);
		margin-left: calc(46% - 63vw / 3.75);
	}
	.p-vision .p-slogan {
		margin-top: calc(-56vw / 3.75);
	}
	.p-vision .p-slogan::after {
		left: calc(50% - 50vw);
	}
	.p-vision .slogan_image {
		margin-top: 32px;
		padding: 0;
	}
	.p-vision .slogan_column {
		padding: 0 24px 24px;
	}
}
@media screen and (max-width: 479px) {
	.p-vision .about_text .title {
		font-size: calc(18vw / 3.75);
	}
	.p-vision .p-slogan {
		padding: 120px 0;
	}
	.p-vision .p-slogan::after {
		top: 144px;
		bottom: 64px;
	}
	.p-vision .slogan_title {
		font-size: calc(18vw / 3.75);
	}
	.p-vision .slogan_catchcopy {
		max-width: calc(100% - 2em);
		margin-top: 32px;
		padding: 0 .5em;
		font-size: calc(30vw / 4.8);
	}
	.p-vision .p-slogan p {
		margin-top: 1em;
	}
	.p-vision .slogan_column .column_title {
		max-width: 14em;
		margin: -1.5em auto 0;
		font-size: 17px;
	}
	.p-vision .slogan_column .slogan_lineup {
		margin-top: 16px;
		font-size: 13px;
	}
}


/**
 * 事業内容
 * ---------------------------------------- */
:where(.p-service .page_section) p,
:where(.p-service .page_section) dd {
	font-size: 15px;
	text-align: justify;
	font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 479px) {
	:where(.p-service .page_section) p,
	:where(.p-service .page_section) dd {
		font-size: 13px;
	}
}

/* セクション内 コラム */
.p-service .section_column {
	position: relative;
	margin-top: 80px;
	padding: 80px 0;
}
.p-service .section_column::before {
	top: 0;
	height: 100%;
	background: #e6e6e6;
}
.p-service .column_title {
	display: inline-block;
	color: #009ed7;
	font-size: 25px;
	line-height: 1.4;
	letter-spacing: .1em;
}
@media screen and (max-width: 479px) {
	.p-service .section_column {
		margin-top: 48px;
		padding: 48px 0;
	}
	.p-service .column_title {
		font-size: 17px;
	}
}

/* セクション内 コラム内 チャプター */
.column_chapter {
	margin-top: -20px;
	padding: 48px 64px;
	background: white;
	box-shadow: 8px 8px 16px rgba(0,0,0,.1);
}
.chapter_title {
	margin: 0 -64px;
	padding: 24px;
	color: white;
	font-size: 24px;
	line-height: 1.4;
	letter-spacing: .1em;
	background: #009ed7;
}
.column_chapter p {
	max-width: 700px;
	margin: 0 auto;
	padding: 40px 0;
	text-align: justify;
}
@media screen and (max-width: 479px) {
	.column_chapter {
		margin-top: -16px;
		padding: 40px 32px 24px;
	}
	.chapter_title {
	}
	.chapter_title {
		margin: 0 -32px;
		padding: 16px;
		font-size: 17px;
	}
	.column_chapter p {
		padding: 24px 0;
	}
}
@media screen and (max-width: 360px) {
	.column_chapter {
		padding: 40px 24px 24px;
	}
	.chapter_title {
		margin: 0 -24px;
	}
}

/* 枠線コラム */
.c-framecolumn {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	border: 1px solid #009ed7;
	border-radius: 5px;
}
.c-framecolumn .title {
	margin-top: -.7em;
	padding: 0 .5em;
	color: #009ed7;
	font-size: 21px;
	line-height: 1.4;
	background: white;
}
.c-framecolumn .title small {
	font-size: 72%;
}
.c-framecolumn .contents {
	max-width: 600px;
	margin: 0 auto;
	padding: 16px 24px 40px;
}
@media screen and (max-width: 479px) {
	.c-framecolumn .title {
		font-size: 15px;
	}
	.c-framecolumn .contents {
		padding-bottom: 24px;
	}
}

/* 運用・保守・システム開発 セクション */
.service_section {
	display: grid;
	max-width: 700px;
	margin: 48px auto 0;
}
.service_section p {
	align-self: center;
	text-align: justify;
}
@media screen and (min-width: 768px) {
	.service_section {
		grid-template: repeat(2, auto) / 304px auto;
		gap: 16px 48px;
	}
	.service_section p {
		grid-area: 1 / 2 / 3 / 3;
	}
	.service_section .photo {
		grid-column: 1 / 2
	}
}
@media screen and (max-width: 767px) {
	.service_section {
		grid-template: repeat(2, auto) / repeat(2, auto);
		gap: 24px 16px;
		margin-top: 24px;
	}
	.service_section p {
		grid-area: 2 / 1 / 3 / 3;
	}
	.service_section .photo.-p1 {
		grid-column: 1;
	}
	.service_section .photo.-p2 {
		grid-column: 2;
	}
}

/* 情報提供サービス・その他の事業用 コラム */
.service_column {
	position: relative;
	padding: 48px 0;
}
.service_column:first-of-type {
	margin-top: 80px;
	padding-top: 120px;
}
.service_column:last-of-type {
	padding-bottom: 120px;
}
.service_column::before {
	top: 0;
	height: 100%;
	background: #e6e6e6;
}
.service_column .column_title {
	position: relative;
	padding-bottom: 16px;
	text-align: left;
}
.service_column .column_title::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: calc(100% + 56px);
	border-bottom: 1px solid currentcolor;
}
.service_column p {
	text-align: justify;
}
.service_column .column_photo {
	align-self: flex-start;
	position: relative;
}
.service_column .column_photo::before {
	content: "";
	z-index: -1;
	position: absolute;
	bottom: -40px;
	left: -40px;
	width: 100%;
	height: calc(100% - 40px);
	background: #009ed7;
}
.service_column .c-framecolumn .title {
	background: #e8e8e8;
}
@media screen and (min-width: 768px) {
	.service_column {
		display: grid;
		grid-template: auto 1fr / 50% auto;
		gap: 20px 40px;
	}
	.service_column:first-of-type {
		margin-top: 64px;
	}
	.service_column .column_title {
		grid-area: 1 / 2 / 2 / 3;
		justify-self: flex-start;
	}
	.service_column .column_photo {
		grid-area: 1 / 1 / 3 / 2;
	}
	.service_column p {
		grid-column: 2 / 3;
	}
}
@media screen and (max-width: 767px) {
	.service_column:first-of-type {
		margin-top: 24px;
		padding-top: 80px;
	}
	.service_column:last-of-type {
		padding-bottom: 80px;
	}
	.service_column .column_title {
		display: block;
		margin: 0 auto;
		text-align: center;
	}
	.service_column .column_title::before {
		right: -1em;
		left: -1em;
		width: auto;
	}
	.service_column p {
		margin-top: 24px;
	}
	.service_column .column_photo {
		float: left;
		width: 50%;
		margin: 24px 40px 24px 0;
	}
	.service_column .column_photo::before {
		bottom: -24px;
		left: -24px;
	}
}
@media screen and (max-width: 479px) {
	.service_column {
		display: flex;
		flex-direction: column;
		padding: 24px 0;
	}
	.service_column:first-of-type {
		padding-top: 48px;
	}
	.service_column:last-of-type {
		padding-bottom: 48px;
	}
	.service_column .column_title {
		margin-top: 40px;
		padding-bottom: 12px;
	}
	.service_column .column_photo {
		order: -1;
		float: none;
		width: auto;
		margin: 0 0 0 12px;
	}
	.service_column .column_photo::before {
		bottom: -16px;
		left: -16px;
	}
	.service_column p {
		margin-top: 16px;
	}
}

/* 関連コンテンツ */
.p-service .c-relation {
	column-gap: 32px;
}

/* デコレーション */
.p-service .deco_relation {
	left: 60%;
}
.p-service .deco_relation .obj {
	top: 400px;
}

/**
 * 運用・保守
 * ---------------------------------------- */
.p-operation {
	max-width: 880px;
}
.p-operation .column_title {
	border-bottom: 1px solid currentcolor;
}
.p-operation_column1 .column_chapter p:last-child {
	padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}

/* デコレーション */
.p-service .deco_operation {
	z-index: -2;
}


/**
 * システム開発
 * ---------------------------------------- */
.p-development {
	max-width: 880px;
}
.p-development .column_title {
	border-bottom: 1px solid currentcolor;
}

/* 主な採用製品のメーカー・ベンダー */
.p-manufacturer {
	margin: 24px 0;
}
.p-manufacturer .title {
	line-height: 1.2;
}
.manufacturer_list li {
	display: inline;
}
.manufacturer_list li:not(:last-child)::after {
	content: "、";
}

/* デコレーション */
.p-service .deco_development {
	z-index: -2;
}


/**
 * 情報提供サービス
 * ---------------------------------------- */
.p-van {
	max-width: 920px;
}

/* デコレーション */
.p-service .deco_van {
	z-index: -2;
}


/**
 * その他の事業
 * ---------------------------------------- */
.p-other {
	max-width: 920px;
}

/* サービス提供先 */
.p-suppliers {
	grid-column: 2 / 3;
	margin-top: 8px;
}
.p-suppliers .title {
	font-size: 18px;
}
.p-suppliers .contents {
	padding-bottom: 24px;
}
.suppliers dt {
	display: inline-block;
	color: #009ed7;
	font-weight: 700;
}
.suppliers dt::before {
	content: "●";
}
.suppliers dt::after {
	content: "：";
}
.suppliers dd {
	display: inline;
}
@media screen and (min-width: 480px) {
	.p-suppliers {
		grid-area: 3 / 1 / 4 / 3;
		margin-top: 24px;
	}
}
@media screen and (min-width: 768px) {
	.p-suppliers {
		grid-column: 2 / 3;
		margin-top: 8px;
	}
}
@media screen and (max-width: 479px) {
	.p-suppliers {
		margin-top: 24px;
	}
}

/* 会員管理事業 */
.p-other_column2 .column_photo::before {
	bottom: 25%;
	height: 50%;
}
.p-other_column2 .photo {
	display: block;
}
.p-other_column2 .photo.-p1 {
	position: relative;
	max-width: calc(100% - 48px);
	margin-left: auto;
}
.p-other_column2 .photo.-p2 {
	max-width: calc(100% - 96px);
	margin-top: 32px;
}
@media screen and (max-width: 999px) {
	.p-other_column2 .photo.-p1 {
		max-width: calc(100% - 4.8vw);
	}
	.p-other_column2 .photo.-p2 {
		max-width: calc(100% - 9.6vw);
		margin-top: 3.2vw;
	}
}
@media screen and (max-width: 479px) {
	.p-other_column2 .column_photo {
		margin-left: 0;
	}
	.p-other_column2 .photo.-p1 {
		max-width: 70%;
	}
	.p-other_column2 .photo.-p2 {
		max-width: 60%;
		margin-top: -24px;
	}
	.p-other_column2 .column_photo::before {
		right: 32px;
		bottom: -16px;
		left: 32px;
		width: auto;
		height: 70%;
	}
}

/* デコレーション */
.p-service .deco_other {
	z-index: -2;
}
@media screen and (max-width: 767px) {
	.p-service .deco_other {
		max-height: 560px;
		margin-top: 560px;
	}
}

/**
 * 採用情報
 * ---------------------------------------- */
.p-recruit .page_section {
	padding: 80px 0 112px;
}
.p-recruit .page_section::before {
	top: 0;
	height: 100%;
	background: #f3f3f3;
}
.p-recruit .section_title {
	padding: 0;
	font-size: 39px;
}
.p-recruit .section_title:before {
	top: calc(.7em - 1px);
	left: auto;
	right: calc(100% + .5em);
	width: 2em;
	height: 0;
	border-top: 1px solid #616161;
	background: none;
}
.p-recruit p {
	margin-top: 24px;
	font-size: 17px;
	letter-spacing: .1em;
}
@media screen and (max-width: 479px) {
	.p-recruit .page_section {
		padding: 48px 0;
	}
	.p-recruit .section_title {
		font-size: 24px;
	}
	.p-recruit p {
		max-width: 22em;
		margin: 16px auto 0;
		font-size: 13px;
	}
}

/* :::::: 新卒採用情報 :::::: */
.p-graduate .c-banner {
	margin-top: 40px;
}
@media screen and (max-width: 479px) {
	.p-graduate .c-banner {
		margin-top: 24px;
	}
}

/* :::::: 中途採用情報 :::::: */
.p-mid-career .c-table {
	max-width: 700px;
	margin: 40px auto 0;
	font-weight: 700;
	letter-spacing: .1em;
}
.p-mid-career .c-table .table_title {
	color: #00abe4;
	font-size: 21px;
}
.p-mid-career .c-table table {
	margin-top: 16px;
	letter-spacing: .1em;
}
.p-mid-career .c-table thead th {
	font-size: 18px;
}
.p-mid-career .c-table tbody th,
.p-mid-career .c-table tbody td {
	font-size: 17px;
}
.p-mid-career .c-table tbody td {
	font-size: 26px;
}
.p-mid-career .c-table tbody td .unit {
	font-size: 75%;
}
.p-mid-career .c-table .date {
	max-width: none;
	margin-top: .5em;
	font-size: 12px;
	text-align: right;
}
@media screen and (max-width: 479px) {
	.p-mid-career .c-table {
		margin-top: 24px;
	}
	.p-mid-career .c-table .table_title {
		font-size: 16px;
	}
	.p-mid-career .c-table thead th,
	.p-mid-career .c-table tbody th,
	.p-mid-career .c-table tbody td {
		font-size: 13px;
	}
	.p-mid-career .c-table tbody td {
		font-size: 18px;
	}
}


/**
 * 個人情報について / 行動指針
 * ---------------------------------------- */
.p-terms .page_section {
	max-width: 824px;
	margin-top: 80px;
}
.p-terms .section_title {
	display: block;
	margin: 0 -16px 40px;
	padding-bottom: 24px;
	font-size: 34px;
}
.p-terms .section_title::before {
	right: 0;
	left: 0;
	width: 100%;
	background: currentcolor;
}
.p-terms .c-tabs {
	max-width: 1200px;
	margin: 104px auto 0;
}
.p-terms .c-link {
	color: #0958c6;
}
:where(.p-terms .page_section) p,
:where(.p-terms .page_section) li,
:where(.p-terms .page_section) dt,
:where(.p-terms .page_section) dd {
	font-size: 15px;
	font-family: "Noto Sans JP", sans-serif;
	text-align: left;
}
:where(.p-terms .page_section) p,
:where(.p-terms .page_section) dt {
	margin-top: 24px;
}
:where(.p-terms .page_section) dt {
	font-weight: 700;
}
.p-terms .section_column + .section_column {
	margin-top: 64px;
}
.p-terms .column_title {
	display: block;
	padding: .4em .8em;
	border-left: 7px solid currentcolor;
	color: #00abe4;
	font-size: 24px;
	line-height: 1.6;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	text-align: left;
}
.p-terms .date {
	margin-top: 24px;
	font-size: 13px;
	text-align: right;
}
.p-terms .signature b {
	font-weight: inherit;
}

.table-of-contents {
	margin: 40px 0 64px;
}
.table-of-contents a {
	color: #00abe4;
	font-size: 22px;
	font-family: "Midashi Go MB31", sans-serif;
}
@media screen and (max-width: 479px) {
	.table-of-contents a {
		font-size: 14px;
	}
	.p-terms .column_title {
		padding-left: 1.8em;
		font-size: 16px;
		text-indent: -1em;
	}
}

/* :::::: 個人情報保護方針について :::::: */
.p-privacy-policy .c-numlist li {
	margin-top: 24px;
}
@media screen and (max-width: 479px) {
	.p-privacy-info .privacymark img {
		width: 72px;
	}
}

/* 個人情報保護についてのお問い合わせ先 */
.p-infodesk {
	margin-top: 80px;
}
.p-infodesk .title {
	color: #00abe4;
	font-size: 21px;
}
.infodesk_container {
	display: flex;
	justify-content: center;
	margin-top: -24px;
	padding: 80px 24px;
	border-radius: 10px;
	text-align: left;
	background: #f3f3f3;
}
.infodesk_table {
	display: flex;
	flex-direction: column;
	margin: 0;
}
.infodesk_table .desk_title {
	margin-top: 0;
	font-size: 16px;
}
.infodesk_table .desk_item {
	display: inline-flex;
	column-gap: 1em;
}
.infodesk_table .desk_item dt {
	width: 4em;
	margin-top: 0;
	text-transform: uppercase;
}
.infodesk_table .js-splitText {
	display: inline-flex;
	justify-content: space-between;
}

/* :::::: 個人情報の取り扱いについて :::::: */
.p-privacy-info {
}

/* :::::: 情報セキュリティ基本方針 :::::: */
.p-security-policy {
}

/* :::::: コンプライアンス行動指針 :::::: */
.p-compliance .c-numlist {
	margin-top: 16px;
}

/* :::::: 両立支援の取り組みについて :::::: */
.p-worklifebalance {
	
}

/* :::::: 女性活躍推進の取り組みについて :::::: */
.p-women-activation {
	
}

/* :::::: 貸金業者登録票及び貸付条件の公示 :::::: */
.p-disclosure .c-button {
	display: grid;
	margin-inline: auto;
	max-width: 320px;
	margin-top: 40px;
}

@media screen and (min-width: 480px) {
	.infodesk_table .desk_item {
		margin-top: .4em;
	}
	.infodesk_table .desk_title + .desk_item {
		margin-top: .8em;
	}
}
@media screen and (max-width: 479px) {
	.p-terms .section_title {
		display: block;
		margin: 0;
		padding-bottom: 16px;
		font-size: 24px;
	}
	:where(.p-terms .page_section) p,
	:where(.p-terms .page_section) li,
	:where(.p-terms .page_section) dt,
	:where(.p-terms .page_section) dd {
		font-size: 13px;
	}
	.infodesk_container {
		margin-top: -16px;
		padding: 24px;
	}
	.p-infodesk .title {
		font-size: 16px;
	}
	.infodesk_table .desk_title {
		font-size: 13px;
	}
}


/**
 * お問い合わせ
 * ---------------------------------------- */
.p-contact .page_section,
.p-contact .contact_section {
	max-width: 824px;
}
.p-contact .contact_section {
	margin: 48px auto 0;
	padding: 64px;
	border: 1px solid #00abe4;
	border-radius: 5px;
	text-align: center;
}

.contact_section .section_title {
	padding: 0;
	font-size: 28px;
}
.contact_section .section_title:before {
	top: calc(.7em - 1px);
	left: auto;
	right: calc(100% + .5em);
	width: 2em;
	height: 0;
	border-top: 1px solid currentcolor;
	background: none;
}

:where(.contact_section) p {
	margin-top: 20px;
	font-size: 15px;
	font-family: "Noto Sans JP", sans-serif;
}
.p-contact .lead {
	max-width: 600px;
	margin: 24px auto 0;
	font-size: 16px;
	text-align: justify;
}
.p-contact .c-button {
	margin-top: 40px;
}

/* JRA-VAN */
.p-contact .p-jravan {
	margin-top: 80px;
}

/* オッズカード */
.oddscard_section .title {
	max-width: 420px;
	margin: 40px auto 0;
	border-radius: 2em;
	color: white;
	background: linear-gradient(to top, #0099e4, #00b6e4);
}
.oddscard_section .center {
	margin-top: 24px;
	line-height: 1.6;
}
.oddscard_section .center dt {
	font-size: 17px;
}
.oddscard_section .center dd {
	color: #00abe4;
	font-size: 42px;
}
.oddscard_section .note {
	margin-top: 16px;
	font-size: 14px;
}
.oddscard_section .note small {
	font-size: 86%;
}

/* JRA各種サービスに関するお問い合わせ */
.p-jra-service {
	
}

/* その他のお問い合わせ */
.p-jra-van {
	
}

@media screen and (max-width: 479px) {
	.p-contact .lead {
		font-size: 13px;
	}
	.p-contact .contact_section {
		margin-top: 24px;
		padding: 24px 24px 32px;
	}
	.contact_section .section_title {
		font-size: 19px;
	}
	:where(.contact_section) p {
		margin-top: 16px;
		font-size: 13px;
	}
	.p-contact .c-button {
		margin-top: 24px;
	}
	.p-contact .c-button .ico {
		width: 21px;
	}
	.oddscard_section .title {
		margin-top: 24px;
		font-size: 14px;
	}
	.oddscard_section .center {
		margin-top: 16px;
	}
	.oddscard_section .center dt {
		font-size: 13px;
	}
	.oddscard_section .center dd {
		font-size: 30px;
	}
	.oddscard_section .center .tel {
		font-size: 60%;
	}
	.oddscard_section .note {
		margin-top: 8px;
		font-size: 13px;
		line-height: 1.6;
	}
	.oddscard_section .note small {
		display: inline-block;
	}
}
@media screen and (max-width: 360px) {
	.p-contact .contact_section {
		padding: 24px 16px;
	}
}