@charset "UTF-8";
.font_01 {
	font-family: Arial, Helvetica, sans-serif;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
/*====================================
ヘッダー
====================================*/
header {
	width: 100%;
}
.home header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	translate: 0 -100%;
}
.loaded header {
	animation: header_fadeIn .5s ease-out 1.7s forwards;
}
.header_inner {
	display: flex;
	align-items: center;
	padding: 27px 20px 25px 32px;
}
.header_nav_wrapper {
	margin-inline-start: auto;
}
.header_nav {
	display: flex;
	align-items: center;
	gap: 0 41px;
	margin: 0;
	padding: 0;
}
.header_nav_items>a {
	color: #333;
	font-size: 1.6rem;
	transition: opacity .3s ease-in-out;
	padding-block: 50px;
}
.home .header_nav_items>a {
	color: #fff;
}
.header_nav_items:nth-child(1)>a::after,
.header_nav_items:nth-child(2)>a::after,
.header_nav_items:nth-child(4)>a::after {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	border-right: 1px solid #333;
	border-bottom: 1px solid #333;
	rotate: 45deg;
	margin-inline-start: 12px;
	translate: 0 -4px;
}
.home .header_nav_items:nth-child(1)>a::after,
.home .header_nav_items:nth-child(2)>a::after,
.home .header_nav_items:nth-child(4)>a::after {
	border-color: #fff;
}
.header_nav_items>a:not(.header_toRecruit_btn):hover {
	opacity: .6;
}
.header_nav_items .header_toRecruit_btn {
	display: block;
	width: 175px;
	margin-inline-start: 38px;
	padding-block: 25px 21px;
	background: #fff;
	border: 1px solid #113e9f;
	color: #113e9f;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	position: relative;
	overflow: hidden;
	transition: color .4s ease-in-out;
}
.home .header_nav_items .header_toRecruit_btn {
	color: #113E9F;
}
.header_nav_items .header_toRecruit_btn:hover {
	color: #fff;
}
.header_nav_items .header_toRecruit_btn:hover::after {
	width: 200%;
	height: 200%;
}
.header_nav_items .header_toRecruit_btn::after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background: url(../ryoto-p/head-p/recruit_arrow.png) no-repeat bottom 6px right 8px/11px 11px, linear-gradient(to bottom, #3d8ffc, #113fa1);
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 10;
	transition: width .4s ease-in-out, height .4s ease-in-out;
}
.header_nav_items .header_toRecruit_btn span {
	position: relative;
	z-index: 20;
}
.header_nav_pullDown {
	display: none;
	justify-content: center;
	background: rgb(16 62 159/.95);
	width: 100%;
	padding-block: 62px 71px;
	position: absolute;
	top: 116px;
	left: 0;
	opacity: 0;
	transition: opacity .3s ease-in-out .3s;
	z-index: 999;
}
.header_nav_pullDown.shown {
	display: flex;
	animation: header_pullDown .5s ease-in-out forwards;
}
.header_nav_pullDown_list:first-child {
	padding-inline-end: 10.4166666666667%;
}
.header_nav_pullDown_list_items+.header_nav_pullDown_list_items {
	margin-block-start: 40px;
}
.header_nav_pullDown_list_items a::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	rotate: 45deg;
}
.header_nav_pullDown_list_items a {
	display: block;
	color: #fff;
	font-size: 1.6rem;
	text-align: left;
	padding-inline-start: 25px;
	position: relative;
	transition: opacity .3s ease-in-out;
}
.header_nav_pullDown_list_items a:hover {
	opacity: .6;
}
@keyframes header_fadeIn {
	0% {
		translate: 0 -100%;
		opacity: 0;
	}
	100% {
		translate: 0 0;
		opacity: 1;
	}
}
@keyframes header_pullDown {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*====================================
フッター
====================================*/
footer:not(.entry-meta) {
	background: url(../ryoto-p/common-p/footer_bg.png) no-repeat center/cover;
	padding-block: 92px 38px;
	position: relative;
}
.toTop {
	display: block;
	width: 96px;
	height: 50px;
	background: linear-gradient(45deg, #113E9F, #3D92FF);
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	position: absolute;
	top: -50px;
	right: 0;
}
.toTop::before {
	content: "";
	display: block;
	width: 1px;
	height: 15px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% 0;
}
.toTop::after {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	rotate: 45deg;
	translate: -50% 0;
}
.footer_logo_area {
	padding-block-end: 32px;
	border-bottom: 1px solid #86bbef;
	margin-block-end: 59px;
}
.footer_logo_area figure {
	margin: 0;
}
.footer_nav_area {
	display: grid;
	grid-template-columns: 37.5% 39% 23.5%;
	padding-block-end: 100px;
}
.footer_nav_area>nav:nth-of-type(2) {
	display: flex;
	flex-direction: column;
	gap: 65px 0;
	;
}
.footer_nav_wrapper.fadeIn:nth-child(2) {
	transition-delay: .25s;
}
.footer_nav_wrapper.fadeIn:last-child {
	transition-delay: .5s;
}
.footer_nav li:not(:last-child) {
	margin-block-end: 42px;
}
.footer_nav li :is(a, a:visited) {
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: .1em;
	text-decoration: none;
}
.footer_nav li a.footer_nav_head {
	font-size: 2rem;
}
.footer_nav li a:not(.footer_nav_head) {
	padding-inline-start: 28px;
	position: relative;
}
.footer_nav li a:not(.footer_nav_head)::before,
.footer_nav li a:not(.footer_nav_head)::after {
	content: "";
	display: block;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: 6px;
}
.footer_nav li a:not(.footer_nav_head)::before {
	width: 15px;
	left: 0;
}
.footer_nav li a:not(.footer_nav_head)::after {
	width: 8px;
	left: 7px;
	transform-origin: right bottom;
	rotate: 52deg;
}
.footer_copyright_area {
	padding-block-start: 42px;
	border-top: 1px solid #86bbef;
}
.footer_copyright {
	max-width: 1200px;
	color: #97accc;
	font-size: 1.2rem;
	line-height: 1;
	text-align: right;
	letter-spacing: .1em;
}
/*====================================
下層共通
====================================*/
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
.content {
	width: 89.33%;
	max-width: 1200px;
	margin-inline: auto;
}
.main_tit01 {
	background-image: url(../ryoto-p/common-p/main_tit01_bg01.gif);
	background-repeat: repeat;
}
.main_kuzu a {
	text-decoration: none;
	color: #333;
}
.main_kuzu a:hover {
	text-decoration: underline;
}
/*====================================
リストページ
====================================*/
.list_main01-bg {
	width: 100%;
	margin: 0 auto;
	background-color: #ffffff;
}
/*====================================
主要取引先・納入実績・共同開発ページ
====================================*/
.client_main01-bg {
	width: 100%;
	margin: 0 auto;
	background-color: #ffffff;
}
#client .tablepress td a {
	color: #113e9f;
	text-decoration: underline;
}
#client .tablepress td a:hover {
	text-decoration: none;
}
/*====================================
事業案内
====================================*/
.works_mainimg_bg01 {
	width: 100%;
	margin: 0 auto;
	background-image: url(../ryoto-p/works-p/works_mainimg_bg01.png);
	background-repeat: repeat-x;
	background-position: center;
}
.works_mainimg_bg02 {
	width: 100%;
	margin: 0 auto;
	background-image: url(../ryoto-p/works-p/works_mainimg_bg02.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
@media only screen and (max-width: 813px) {
	.works_mainimg_bg01 {
		height: 480px;
		background-repeat: repeat;
	}
	.works_mainimg_bg02 {
		height: 480px;
	}
	.works_mainimg_bg02 .mainimg {
		padding-top: 60px
	}
}
.works_stit01 {
	background-color: #2875AE;
	padding: 25px 2.5%;
}
.works_main00_btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 12rem;
	width: 100%;
	text-align: left;
	text-decoration: none;
	line-height: 1.35;
	outline: none;
	background-color: #FFF;
	color: #009DDE;
	background-image: url(../ryoto-p/works-p/works_main01_btn_off.png);
	background-repeat: no-repeat;
	background-position: right center;
	border: 2px #009DDE solid;
	font-size: 22px;
	font-size: 2rem;
	padding: 2rem 3rem 2rem 2rem;
}
.works_main00_btn_s {
	font-size: 19px;
	font-size: 1.9rem;
	padding: 15px 30px;
}
.works_main00_btn2 {
	background-image: url(../ryoto-p/works-p/works_main01_btn2_off.png);
}
.works_main00_btn span {
	color: #666666;
	font-size: 1.3rem;
	margin-top: 6px;
	display: inline-block;
}
.works_main00_btn_txs {
	line-height: 1.35;
	padding: 20px 10px 0 20px;
	text-align: left;
	font-size: 18px;
	font-size: 1.8rem;
}
.works_main00_btn:hover {
	background-color: #35B5E6;
	color: #FFF;
	background-image: url(../ryoto-p/works-p/works_main01_btn_on.png);
	background-repeat: no-repeat;
	background-position: right center;
	border: 2px #35B5E6 solid;
}
.works_main00_btn2:hover {
	background-image: url(../ryoto-p/works-p/works_main01_btn2_on.png);
}
.works_main00_btn::before,
.works_main00_btn::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.works_main00_btn,
.works_main00_btn::before,
.works_main00_btn::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
@media only screen and (max-width: 813px) {
	.works_main00_btn {
		display: inline-block;
		width: 100%;
		height: 132px;
	}
	.works_main00_btn_txs {
		line-height: 90px;
		padding: 0px;
		text-align: center;
		font-size: 20px;
		font-size: 2.0rem;
	}
}
.works_btn_g3 .grid_container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 33% 34% 33%;
	grid-template-columns: 33% 34% 33%;
	-ms-grid-rows: auto;
	grid-template-rows: auto;
}
.works_btn_g3 .grid_item {
	margin: 0 5px 30px 5px;
}
.works_btn_g3 .grid_item_01 {
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-column: 1 / 2;
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	grid-row: 1;
}
.works_btn_g3 .grid_item_02 {
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2 / 3;
	-ms-grid-row: 1;
	grid-row: 1;
}
.works_btn_g3 .grid_item_03 {
	-ms-grid-column: 3;
	-ms-grid-column-span: 1;
	grid-column: 3 / 4;
	-ms-grid-row: 1;
	grid-row: 1;
}
.works_btn_g3 .grid_item_04 {
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-column: 1 / 2;
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	grid-row: 2;
}
.works_btn_g3 .grid_item_05 {
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2 / 3;
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	grid-row: 2;
}
.works_btn_g3 .grid_item_06 {
	-ms-grid-column: 3;
	-ms-grid-column-span: 1;
	grid-column: 3 / 4;
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	grid-row: 2;
}
@media only screen and (max-width: 813px) {
	.works_btn_g3 .grid_container {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
		-ms-grid-rows: auto;
		grid-template-rows: auto;
	}
	.works_btn_g3 .grid_item {
		margin: 0 15px 15px 15px;
	}
	.works_btn_g3 .grid_item_01 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		grid-row: 1;
	}
	.works_btn_g3 .grid_item_02 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		grid-row: 2;
	}
	.works_btn_g3 .grid_item_03 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
		grid-row: 3;
	}
	.works_btn_g3 .grid_item_04 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 4;
		-ms-grid-row-span: 1;
		grid-row: 4;
	}
	.works_btn_g3 .grid_item_05 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 5;
		-ms-grid-row-span: 1;
		grid-row: 5;
	}
	.works_btn_g3 .grid_item_06 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 6;
		-ms-grid-row-span: 1;
		grid-row: 6;
	}
}
.works_main04_box-b {
	width: 670px;
	max-width: 100%;
	padding: 20px;
	min-height: 80px;
	background-repeat: no-repeat;
	background-position: center right;
	box-sizing: border-box;
	margin: 0 auto;
}
.works_main04_box-b01 {
	background-image: url(../ryoto-p/works-p/works_main04_box-b01_bg01.gif);
	background-repeat: repeat;
}
.works_main04-bg .box680 a {
	color: #FFF;
	text-decoration: none;
}
.works_main04-bg .works_main04_box-b01:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
.works_main01_g2 .grid_container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 50% 50%;
	grid-template-columns: 50% 50%;
	-ms-grid-rows: auto;
	grid-template-rows: auto;
}
.works_main01_g2 .grid_item {
	margin: 0 15px 30px 15px;
}
.works_main01_g2 .grid_item_01 {
	padding: 40px 0;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-column: 1 / 2;
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	grid-row: 1;
}
.works_main01_g2 .grid_item_02 {
	padding: 40px 0;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2 / 3;
	-ms-grid-row: 1;
	grid-row: 1;
}
.works_main01_g2 .grid_item_03 {
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	grid-column: 1 / 3;
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	grid-row: 2;
}
@media only screen and (max-width: 813px) {
	.works_main01_g2 .grid_container {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
		-ms-grid-rows: auto;
		grid-template-rows: auto;
	}
	.works_main01_g2 .grid_item {
		margin: 0 15px 30px 15px;
	}
	.works_main01_g2 .grid_item_01 {
		padding: 0;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 1;
		grid-row: 1;
	}
	.works_main01_g2 .grid_item_02 {
		padding: 0;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 2;
		grid-row: 2;
	}
	.works_main01_g2 .grid_item_03 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 3;
		grid-row: 3;
	}
}
.works_main03_g2 .grid_container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 500px 640px;
	grid-template-columns: 500px 640px;
	-ms-grid-rows: auto;
	grid-template-rows: auto;
}
.works_main03_g2 .grid_item {
	margin: 0 15px 30px 15px;
}
.works_main03_g2 .grid_item_01 {
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-column: 1 / 2;
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	grid-row: 1;
}
.works_main03_g2 .grid_item_02 {
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2 / 3;
	-ms-grid-row: 1;
	grid-row: 1;
}
@media only screen and (max-width: 813px) {
	.works_main03_g2 .grid_container {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
		-ms-grid-rows: auto;
		grid-template-rows: auto;
	}
	.works_main03_g2 .grid_item {
		margin: 0 15px 30px 15px;
	}
	.works_main03_g2 .grid_item_01 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 1;
		grid-row: 1;
	}
	.works_main03_g2 .grid_item_02 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 2;
		grid-row: 2;
	}
}
.works_main04_g2 .grid_container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 56% 44%;
	grid-template-columns: 56% 44%;
	-ms-grid-rows: auto;
	grid-template-rows: auto;
}
.works_main04_g2 .grid_item {
	margin: 0 15px 30px 15px;
}
.works_main04_g2 .grid_item_01 {
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-column: 1 / 2;
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	grid-row: 1;
}
.works_main04_g2 .grid_item_02 {
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2 / 3;
	-ms-grid-row: 1;
	grid-row: 1;
}
@media only screen and (max-width: 813px) {
	.works_main04_g2 .grid_container {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
		-ms-grid-rows: auto;
		grid-template-rows: auto;
	}
	.works_main04_g2 .grid_item {
		margin: 0 15px 30px 15px;
	}
	.works_main04_g2 .grid_item_01 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 2;
		grid-row: 2;
	}
	.works_main04_g2 .grid_item_02 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 1;
		grid-row: 1;
	}
}
/*====================================
QULOCO
====================================*/
.page_quloco {
	font-family: "Noto Sans JP", sans-serif;
}
.page_quloco * {
	box-sizing: border-box;
}
.page_quloco img {
	max-width: 100%;
	height: auto;
}
.quloco_content {
	width: 92%;
	max-width: 1160px;
	margin-inline: auto;
}
.quloco_sec_ttl {
	margin-block-end: 60px;
	font-size: 3.4rem;
	letter-spacing: .05em;
	line-height: 1.4;
	text-align: center;
}
.works_mainimg_bg03 {
	width: 100%;
	height: 360px;
	padding-block-start: 53px;
	background: url(../ryoto-p/works-p/quloco/mv_bg.jpg) no-repeat center/cover;
	line-height: 1;
	position: relative;
}
.quloco_mv_logo {
	text-align: center;
	margin-block-end: 31px;
}
.quloco_mv_logo img {
	max-width: 212px;
}
.qulock_mv_ttl {
	color: #fff;
	font-size: 4.6rem;
	line-height: 1;
	text-align: center;
}
.qulock_mv_ttl span {
	display: block;
	margin-block-end: 20px;
	font-size: 2.6rem;
}
.quloco_mv_chara_wrapper {
	max-width: 143px;
	margin: 0;
	font-size: 1.2rem;
	text-align: center;
	position: absolute;
	bottom: 35px;
	right: 75px;
}
.quloco_mv_chara_txt {
	margin-block-start: 8px;
}
.quloco_sec01 {
	padding-block-start: 90px;
	margin-block-end: 96px;
}
.quloco_sec01_img_wrapper {
	text-align: center;
	margin-block-end: 40px;
}
.quloco_sec01_img_wrapper .quloco_sec01_img {
	max-width: 875px;
}
.quloco_sec01_txt {
	font-size: 1.8rem;
	line-height: 1.66;
	text-align: center;
	letter-spacing: .05em;
}
.quloco_sec02Lead {
	max-width: 722px;
	margin: 0 auto 78px;
	background: #E9F5F5;
	border-radius: 8px;
	position: relative;
}
.quloco_sec02Lead::after {
	content: "";
	display: block;
	width: 59px;
	height: 32px;
	background: #00C6B8;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	position: absolute;
	bottom: calc(-32px + -23px);
	left: 50%;
	translate: -50% 0;
}
.quloco_sec_02Lead_inner {
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
	padding: 46px 75px 44px;
}
.quloco_sec_02Lead_marker {
	display: block;
	margin-block-end: 34px;
	text-decoration: underline;
	text-decoration-color: #00C6B8;
	text-underline-offset: 7px;
	text-decoration-thickness: 2px;
}
.quloco_sec_02Lead_inner .quloco_sec_02Lead_img {
	display: block;
	max-width: 470px;
	margin-inline-start: auto;
	margin-block-end: 27px;
}
.quloco_sec02 {
	background: #E9F5F5;
	padding-block: 90px;
}
.quloco_sec02_col {
	display: grid;
	max-width: 842px;
	margin: 0 auto 20px;
	grid-template-columns: repeat(2, 1fr);
	gap: 34px 32px;
}
.quloco_sec02_col_items_ttl {
	background: #707070;
	font-size: 2.2rem;
	line-height: 1;
	padding-block: 10px 15px;
	color: #fff;
	text-align: center;
	border-radius: 8px 8px 0 0;
}
.quloco_sec02_col_items:last-child .quloco_sec02_col_items_ttl {
	background: #00C6B8;
}
.quloco_sec02_col_items_img_wrapper {
	padding: 20px 25px 20px 26px;
	background: #fff;
	border: 1px solid #707070;
	border-radius: 0 0 8px 8px;
}
.quloco_sec02_col_items:last-child .quloco_sec02_col_items_img_wrapper {
	border-color: #00C6B8;
}
.quloco_sec02_txt {
	font-size: 1.8rem;
	line-height: 1.66;
	text-align: center;
	letter-spacing: .05em;
}
.quloco_sec03 {
	padding-block: 90px;
}
.quloco_sec03_img_wrapper {
	text-align: center;
	margin-block-end: 33px;
}
.quloco_sec03_img_wrapper .quloco_sec03_img {
	max-width: 663px;
}
.quloco_sec03_txt {
	font-size: 1.8rem;
	line-height: 1.66;
	text-align: center;
	letter-spacing: .05em;
}
.quloco_sec04 {
	background: #E9F5F5;
	padding-block: 90px 105px;
}
.quloco_sec04_table_wrapper {
	max-width: 1111px;
	padding: 40px 50px;
	margin: 0 auto 40px;
	background: #fff;
	border-radius: 5px;
}
.quloco_sec04_table_wrapper_txt {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1;
	text-align: right;
	margin-block-end: 10px;
}
.quloco_sec04_table {
	width: 100%;
	border-collapse: collapse;
	margin-block-end: 10px;
}
.quloco_sec04_table :is(th, td) {
	padding-block: 12px;
	text-align: center;
	border: 1px solid #00C6B8;
}
.quloco_sec04_table th {
	font-size: 2rem;
}
.quloco_sec04_table td {
	width: 19%;
	font-size: 1.8rem;
}
.quloco_sec04_table th.quloco_sec04_table_bg {
	background: #00C6B8;
	color: #fff;
	position: relative;
}
.quloco_sec04_table th.quloco_sec04_table_bg::after {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	left: -1px;
}
.quloco_sec04_table tr:first-child th.quloco_sec04_table_bg:first-child::after {
	display: none;
}
.quloco_sec04_table th span {
	padding-left: 1.2em;
}
.quloco_sec04_table sub {
	font-size: .75em;
	font-weight: normal;
}
.quloco_sec04_table_wrapper_note {
	font-size: 1.2rem;
}
.quloco_sec04_txt {
	font-size: 1.8rem;
	line-height: 1.66;
	text-align: center;
	letter-spacing: .05em;
	margin-block-end: 55px;
}
.quloco_sec04_btn,
.quloco_sec04_btn:visited {
	display: block;
	max-width: 343px;
	margin-inline: auto;
	text-align: center;
	line-height: 1;
	color: #fff;
	font-weight: bold;
	font-size: 1.8rem;
	background: url(../ryoto-p/works-p/quloco/ico_pdf.png) no-repeat center left 27px/28px 28px, #00C6B8;
	padding-block: 24px;
	border-radius: 5px;
	position: relative;
}
.quloco_sec04_btn::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	rotate: 45deg;
	position: absolute;
	top: 50%;
	right: 23px;
	translate: 0 -50%;
}
/*====================================
organization
====================================*/
.organization_g2 .grid_container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 72% 25%;
	grid-template-columns: 72% 25%;
	-ms-grid-rows: auto;
	grid-template-rows: auto;
	gap: 0 3%;
}
.organization_g2 .grid_item {
	margin: 0 0 30px 0;
}
.organization_g2 .grid_item_01 {
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-column: 1 / 2;
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	grid-row: 1;
}
.organization_g2 .grid_item_02 {
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2 / 3;
	-ms-grid-row: 1;
	grid-row: 1;
	display: flex;
	flex-direction: column;
}
.organization_g2 .grid_item_02 >div:nth-of-type(1) {
	display: flex;
}
.organization_g2 .grid_item_02 >div:nth-of-type(2) {
	display: flex;
}
.organization_g2 .grid_item_02 >div:nth-of-type(3) {
	display: flex;
}
.organization_g2 .grid_item_02 >div:nth-of-type(4) {
	display: flex;
}
@media only screen and (max-width: 1200px) {
	.organization_g2 .grid_container {
		-ms-grid-columns: 67% 30%;
		grid-template-columns: 67% 30%;
	}
}
@media only screen and (max-width: 813px) {
	.organization_g2 .grid_container {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
		-ms-grid-rows: auto;
		grid-template-rows: auto;
	}
	.organization_g2 .grid_item {
		margin: 0 0 30px 0;
	}
	.organization_g2 .grid_item_01 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 1;
		grid-row: 1;
	}
	.organization_g2 .grid_item_02 {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1 / 2;
		-ms-grid-row: 2;
		grid-row: 2;
	}
}
.organization_side_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 90px;
	text-decoration: none;
	outline: none;
	background-color: #F5F5F5;
	color: #18264B;
	border: 3px #F5F5F5 solid;
	font-size: 20px;
	font-size: 2rem;
	position: relative;
	padding: 0.5em 1em;
}
.organization_side_btn_txs {
	font-size: 2rem;
}
.organization_side_btn:hover {
	background-color: #35B5E6;
	color: #FFF;
	border: 3px #35B5E6 solid;
}
.organization_side_btn::after {
	position: absolute;
	right: 0.5em;
	top: 49%;
	z-index: 1;
	content: "";
	width: 0.5em;
	height: 0.5em;
	border-bottom: 3px solid rgb(35, 45, 79);
	border-right: 3px solid rgb(35, 45, 79);
	transform: rotate(-45deg) translateY(-50%);
}
.organization_side_btn:hover::after {
	border-color: #fff !important;
}
/*====================================
company
====================================*/
.company_main01-bg {
	width: 100%;
	margin: 0 auto;
	background-color: #ffffff;
}
.organization_g2 .column h2 {
	padding: 10px 15px;
	color: #494949;
	background: #ECF9FD;
	border-left: solid 5px #53C0F8;
}
.organization_g2 .column h3 {
	border-bottom: solid 1px #ccc;
	padding: 6px 15px;
	margin-bottom: 8px;
}
.organization_g2 .column h3.h3_mt {
	margin-top: 40px
}
@media (max-width: 813px) {
	.organization_g2 .column h3.h3_mt {
		margin-top: 80px
	}
}
.organization_g2 ul.select_table {
	text-align: center;
	margin: 48px 0;
}
.organization_g2 ul.select_table li {
	display: inline-block;
	font-size: 1.6rem;
	line-height: 30px;
	margin: 0 1em;
}
.organization_g2 ul.select_table li span {
	font-size: 1.2rem;
	color: #999;
}
.company_table01 {
	border-collapse: collapse;
	width: 100%;
}
.company_td01 {
	width: 30%;
	background-color: #F5F5F5;
	text-align: center;
	padding: 20px;
	color: #333333;
	border: 1px #DDD solid;
}
.company_td02 {
	width: 70%;
	background-color: #FFFFFF;
	text-align: left;
	padding: 20px 40px;
	color: #222222;
	border: 1px #DDD solid;
}
@media (max-width: 813px) {
	.company_table01 {
		margin-top: 0px;
	}
	.company_td01,
	.company_td02 {
		display: block;
		width: 100%;
	}
	.company_tr01 {
		border-bottom: none;
	}
	.company_td01 {
		width: 96%;
		background-color: #EDEDED;
		text-align: center;
		margin-top: 20px;
		padding: 10px;
		color: #333333;
		border-bottom: none;
	}
	.company_td02 {
		width: 96%;
		background-color: #FFFFFF;
		text-align: left;
		padding: 10px 20px;
		color: #222222;
	}
}
.company_map iframe {
	height: 380px;
}
@media (max-width: 813px) {
	.company_map iframe {
		height: 750px;
	}
}
.square_btn {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 6px 20px;
	text-decoration: none;
	color: #00BCD4;
	background: #ECECEC;
	transition: .4s;
}
.square_btn:hover {
	background: #21BCEA;
	color: white;
}
.company_c02_tx01a {
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 1.75;
	font-weight: bold;
	text-align: center;
}
.company_c02_tx01b {
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 1.75;
	font-weight: bold;
	text-align: left;
	display: inline-block;
}
@media (max-width: 813px) {
	.company_c02_tx01a {
		font-size: 22px;
		font-size: 2.2rem;
		letter-spacing: -0.03em;
	}
	.company_c02_tx01b {
		font-size: 22px;
		font-size: 2.2rem;
		letter-spacing: -0.05em;
	}
}
/*====================================
history
====================================*/
.history_main01-bg {
	width: 100%;
	margin: 0 auto;
	background-color: #ffffff;
}
.history_table01 {
	border-collapse: collapse;
	width: 100%;
}
.history_td01 {
	width: 30%;
	background-color: #F5F5F5;
	text-align: center;
	padding: 20px;
	color: #333333;
	border: 1px #DDD solid;
}
.history_td02 {
	width: 70%;
	background-color: #FFF;
	text-align: left;
	padding: 20px 20px;
	color: #222222;
	border: 1px #DDD solid;
}
@media (max-width: 813px) {
	.history_table01 {
		margin-top: 0px;
	}
	.history_td01,
	.history_td02 {
		display: block;
		width: 100%;
	}
	.history_tr01 {
		border-bottom: none;
	}
	.history_td01 {
		width: 96%;
		background-color: #EDEDED;
		text-align: center;
		margin-top: 20px;
		padding: 10px;
		color: #333333;
		border-bottom: none;
	}
	.history_td02 {
		width: 96%;
		background-color: #FFFFFF;
		text-align: left;
		padding: 10px 20px;
		color: #222222;
	}
}
/*====================================
policy
====================================*/
.policy_main01-bg {
	width: 100%;
	margin: 0 auto;
	background-color: #ffffff;
}
.policy_main01-bg h3 {
	border-bottom: solid 1px #ccc;
	padding: 6px 15px;
	margin-bottom: 8px;
}
/*====================================
agreement
====================================*/
.agreement_main01-bg {
	width: 100%;
	margin: 0 auto;
	background-color: #ffffff;
}
.agreement_main01-bg h3 {
	border-bottom: solid 1px #ccc;
	padding: 6px 15px;
	margin-bottom: 8px;
}
.agreement_main01-bg ul li {
	position: relative;
	margin-left: 25px;
}
.agreement_main01-bg ul li::after {
	display: block;
	content: '';
	position: absolute;
	top: 0.7em;
	left: -1em;
	width: 8px;
	height: 8px;
	background-color: #437BB3;
	border-radius: 100%;
}
@media screen and (max-width:1200px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	/*====================================
	ヘッダー
	====================================*/
	header {
		box-sizing: border-box;
		width: 100%;
	}
	.header_inner {
		display: flex;
		justify-content: space-between;
		width: calc(100% - calc(calc(100% - 89.33%) / 2));
		padding: 0;
		margin-inline-start: calc(calc(100% - 89.33%) / 2);
		height: 15vw;
	}
	.home .header_inner {
		padding: 0;
	}
	.header_logo {
		width: 44.51%;
	}
	.header_logo a {
		display: flex;
		align-items: center;
		height: 100%;
	}
	.header_logo a img {
		width: 100%;
		object-fit: contain;
	}
	.header_links {
		width: 48.73%;
		display: flex;
		height: 100%;
        align-items: center;
	}
	.header_toRecruit_btn {
		height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
		box-sizing: border-box;
		width: 58.38%;
		background: #fff;
		border: 1px solid #113e9f;
		color: #113e9f;
		font-size: 3vw;
		font-weight: bold;
		text-align: center;
		line-height: 1;
		position: relative;
		overflow: hidden;
		transition: color .4s ease-in-out;
	}
	.header_toRecruit_btn:hover {
		color: #fff;
	}
	.header_toRecruit_btn:hover::after {
		width: 200%;
		height: 200%;
	}
	.header_toRecruit_btn::after {
		content: "";
		display: block;
		width: 9vw;
		height: 9vw;
		background: url(../ryoto-p/head-p/recruit_arrow.png) no-repeat bottom 1.5vw right 2vw/2vw 2vw, linear-gradient(to bottom, #3d8ffc, #113fa1);
		clip-path: polygon(100% 0, 100% 100%, 0 100%);
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: 10;
		transition: width .4s ease-in-out, height .4s ease-in-out;
	}
	.header_toRecruit_btn span {
		position: relative;
		z-index: 20;
	}
	.header_hbg {
		display: block;
		width: 41.62%;
		padding: 0;
		border: none;
		background: #113E9F;
		position: relative;
		height: 100%;
	}
	.header_hbg span {
		display: block;
		width: 45%;
		height: 1px;
		background: #fff;
		position: absolute;
		left: 50%;
		translate: -50% 0;
		transition: .5s ease-in-out;
	}
	.header_hbg span:first-child {
		top: 30%;
		transform: translateY(-50%);
	}
	.header_hbg span:nth-child(2) {
		top: 50%;
		transform: translateY(-50%);
	}
	.header_hbg span:last-child {
		top: 70%;
		transform: translateY(-50%);
	}
	.header_hbg.btn_close span:first-child {
		rotate: 30deg;
		top: 50%;
		translate: -50% -50%;
	}
	.header_hbg.btn_close span:nth-child(2) {
		opacity: 0;
	}
	.header_hbg.btn_close span:last-child {
		rotate: -30deg;
		top: 50%;
		translate: -50% -50%
	}
	.header_hbg_content {
		width: 100%;
		height: calc(100vh - 15vw);
		overflow-y: scroll;
		background: #113E9F;
		position: fixed;
		top: 15vw;
		left: 0;
		z-index: -999;
		opacity: 0;
		transition: z-index .5s ease-in-out, opacity .5s ease-in-out;
	}
	.header_hbg_content.active {
		z-index: 999;
		opacity: 1;
	}
	.header_hbg_nav_wrapper {
		width: 89.33%;
		margin: 94px auto;
	}
	.header_hbg_nav_items {
		border-bottom: 2px solid #8B95AA;
	}
	.header_hbg_nav_items>a {
		display: block;
		padding-block: 48px;
		color: #fff;
		line-height: 1;
		font-size: 5vw;
		text-align: left;
		position: relative;
	}
	.header_hbg_nav_items>a::after {
		content: "";
		display: block;
		width: 14px;
		height: 14px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		rotate: 45deg;
		position: absolute;
		right: 4px;
		top: 50%;
		translate: 0 -50%;
	}
	:is(.header_hbg_nav_items:nth-child(2), .header_hbg_nav_items:nth-child(3), .header_hbg_nav_items:nth-child(5))>a::after {
		rotate: -45deg;
	}
	.header_hbg_nav_items_nav_items {
		margin-block-end: 32px;
	}
	.header_hbg_nav_items_nav_items a {
		display: block;
		padding-inline: 44px;
		color: #fff;
		font-size: 4vw;
		line-height: 1.5;
		text-align: left;
		position: relative;
	}
	.header_hbg_nav_items_nav_items a::before {
		content: "";
		display: block;
		width: 22px;
		height: 2px;
		background: #8B95AA;
		position: absolute;
		top: 50%;
		left: 0;
		translate: 0 -50%;
	}
	/*====================================
	  フッター
	  ====================================*/
	footer:not(.entry-meta) {
		background: url(../ryoto-p/common-p/footer_bg-sp.jpg) no-repeat center/cover;
		padding-block: 122px 36px;
	}
	.toTop {
		width: 188px;
		height: 94px;
		right: 4px;
		top: -94px;
	}
	.toTop::before {
		width: 2px;
		height: 30px;
	}
	.toTop::after {
		width: 14px;
		height: 14px;
		border-width: 2px;
	}
	.footer_logo_area {
		padding-block-end: 40px;
		margin-block-end: 68px;
	}
	.footer_logo_area img {
		width: 390px;
		height: auto;
	}
	.footer_nav_area {
		grid-template-columns: 100%;
		gap: 120px 0;
		padding-block-end: 242px;
	}
	.footer_nav_area>nav:nth-of-type(2) {
		gap: 120px 0;
		;
	}
	.footer_nav li:not(:last-child) {
		margin-block-end: 44px;
	}
	.footer_nav li :is(a, a:visited) {
		display: block;
		text-align: left;
		font-size: 2.28571428571429rem;
		letter-spacing: .05em;
		line-height: 1.5;
	}
	.footer_nav li a:not(.footer_nav_head) {
		padding-inline-start: 52px;
	}
	.footer_nav li a.footer_nav_head {
		font-size: 2.57142857142857rem;
		letter-spacing: .05em;
	}
	.footer_nav li a.footer_nav_head>img {
		width: 420px;
		height: auto;
	}
	.footer_nav li a:not(.footer_nav_head)::before,
	.footer_nav li a:not(.footer_nav_head)::after {
		height: 2px;
		bottom: calc(50% - 6px);
		translate: 0 -50%;
	}
	.footer_nav li a:not(.footer_nav_head)::before {
		width: 30px;
	}
	.footer_nav li a:not(.footer_nav_head)::after {
		width: 16px;
		left: 14px;
	}
	.footer_copyright_area {
		padding-block-start: 40px;
	}
	.footer_copyright {
		font-size: 3vw;
		text-align: center;
	}
	/*====================================
	quloco
	====================================*/
	.quloco_sec_ttl {
		font-size: 3.42857142857143rem;
		margin-block-end: 52px;
	}
	.works_mainimg_bg03 {
		height: auto;
		padding-block: 32px 338px;
		background: url(../ryoto-p/works-p/quloco/mv_bg-sp.jpg) no-repeat center/cover;
	}
	.works_mainimg_bg03 * {
		width: 92%;
		margin-inline: auto;
	}
	.quloco_mv_logo {
		margin-block-end: 136px;
		text-align: left;
	}
	.quloco_mv_logo img {
		max-width: 295px;
	}
	.qulock_mv_ttl {
		font-size: 4.28571428571429rem;
		line-height: 1.333;
	}
	.qulock_mv_ttl span {
		font-size: 2.57142857142857rem;
	}
	.quloco_mv_chara_wrapper {
		max-width: 302px;
		font-size: 1.71428571428571rem;
		letter-spacing: .05em;
		right: calc(calc(100% - 89.33%) / 2);
		bottom: 50px;
	}
	.quloco_mv_chara_wrapper img {
		max-width: 184px;
	}
	.quloco_mv_chara_txt {
		margin-block-start: 14px;
	}
	.quloco_sec01 {
		padding-block-start: 100px;
		margin-block-end: 120px;
	}
	.quloco_sec01_img_wrapper {
		margin-block-end: 60px;
	}
	.quloco_sec01_img_wrapper .quloco_sec01_img {
		max-width: 100%;
	}
	.quloco_sec01_txt {
		font-size: 2.57142857142857rem;
		text-align: left;
	}
	.quloco_sec02Lead {
		max-width: 92%;
		margin-block-end: 110px;
		border-radius: 16px;
	}
	.quloco_sec_02Lead_inner {
		padding: 42px 48px;
		text-align: right;
	}
	.quloco_sec_02Lead_marker {
		font-size: 2.42857142857143rem;
		line-height: 1.64705882352941;
		text-align: left;
		margin-block-end: 41px;
	}
	.quloco_sec_02Lead_inner .quloco_sec_02Lead_img {
		max-width: 100%;
		margin-block-end: 46px;
	}
	.quloco_sec02Lead::after {
		width: 86px;
		height: 48px;
		bottom: calc(-34px - 48px);
	}
	.quloco_sec02 {
		padding-block-end: 120px;
	}
	.quloco_sec02 .quloco_sec_ttl {
		margin-block-end: 40px;
	}
	.quloco_sec02_col {
		grid-template-columns: 100%;
		margin-block-end: 44px;
	}
	.quloco_sec02_col_items_ttl {
		font-size: 2.57142857142857rem;
		padding-block: 16px 30px;
		border-radius: 16px 16px 0 0;
	}
	.quloco_sec02_col_items_img_wrapper {
		padding: 30px 42px 34px 44px;
		border-width: 2px;
		border-radius: 0 0 16px 16px;
	}
	.quloco_sec02_txt {
		font-size: 2.57142857142857rem;
		text-align: left;
	}
	.quloco_sec03 {
		padding-block: 120px;
	}
	.quloco_sec03 .quloco_sec_ttl {
		margin-block-end: 40px;
	}
	.quloco_sec03_img_wrapper {
		margin: 0 0 44px;
	}
	.quloco_sec03_img_wrapper .quloco_sec03_img {
		max-width: 100%;
		border-radius: 10px;
	}
	.quloco_sec03_txt {
		font-size: 2.57142857142857rem;
		text-align: left;
	}
	.quloco_sec04 {
		padding-block: 100px 120px;
	}
	.quloco_sec04 .quloco_sec_ttl {
		margin-block-end: 44px;
	}
	.scroll_box {
		overflow-x: scroll;
	}
	.quloco_sec04_table_wrapper {
		padding: 50px 80px;
		border-radius: 10px;
		margin-block-end: 120px;
	}
	.quloco_sec04_table_wrapper_txt {
		font-size: 2.28571428571429rem;
		text-align: left;
		margin-block-end: 20px;
	}
	.quloco_sec04_table {
		white-space: nowrap;
		margin-block-end: 22px;
	}
	.quloco_sec04_table :is(th, td) {
		padding: 24px 32px;
		border-width: 2px;
	}
	.quloco_sec04_table th {
		font-size: 2.57142857142857rem;
	}
	.quloco_sec04_table th.quloco_sec04_table_bg::after {
		width: 2px;
	}
	.quloco_sec04_table td {
		font-size: 2.28571428571429rem;
	}
	.quloco_sec04_table_wrapper_note {
		font-size: 1.71428571428571rem;
	}
	.quloco_sec04_txt {
		font-size: 2.57142857142857rem;
		text-align: left;
		margin-block-end: 70px;
	}
	.quloco_sec04_btn,
	.quloco_sec04_btn:visited {
		max-width: 100%;
		padding-block: 48px;
		font-size: 2.57142857142857rem;
		border-radius: 10px;
		background: url(../ryoto-p/works-p/quloco/ico_pdf.png) no-repeat center left 46px / 56px 56px, #00C6B8;
	}
	.quloco_sec04_btn::after {
		width: 20px;
		height: 20px;
		right: 37px;
		border-width: 4px;
	}
}
.simplebar-scrollbar::before {
	background: #00C6B8;
	height: 12px;
	border-radius: 10vh;
	margin-left: 2px;
	margin-top: 3px;
	top: 4px;
	left: 8px;
	right: 8px;
}
.simplebar-scrollbar.simplebar-visible::before {
	opacity: 1;
}
.simplebar-track.simplebar-horizontal {
	background: #CECECE;
	height: 24px;
	border-radius: 10vh;
	bottom: -60px;
}
.human-rights,
.environment-policy,
.security-policy,
.ex-hotline {
	margin-bottom: 80px;
}
.human-rights>p:first-of-type,
.environment-policy>p:first-of-type,
.security-policy>p:first-of-type {
	font-size: 24px;
	margin-bottom: 55px;
}
.human-rights h3,
.environment-policy h3,
.security-policy h3 {
	font-size: 22px;
	font-weight: bold;
	padding-bottom: 0.8em;
	margin-bottom: 0.8em;
	border-bottom: 1px solid #07b6e9;
}
.human-rights h3+p,
.environment-policy h3+p,
.security-policy h3+p {
	font-size: 20px;
	margin-bottom: 60px;
}
.human-rights li,
.environment-policy li,
.security-policy li {
	margin-bottom: 30px;
}
.human-rights li h4,
.environment-policy li h4,
.security-policy li h4 {
	display: flex;
	align-items: center;
	font-size: 20px;
	margin-bottom: 0.4em;
}
.human-rights li span,
.environment-policy li span,
.security-policy li span {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 1.8em;
	height: 1.8em;
	margin-right: 1em;
	font-size: 18px;
	color: #fff;
	background-color: #07b6e9;
}
.human-rights li p,
.environment-policy li p,
.security-policy li p {
	font-size: 20px;
	line-height: 1.5;
}
.human-rights .info,
.security-policy .info {
	font-size: 16px;
	margin-left: auto;
    text-align: right;
	line-height: 2;
}
.human-rights .info span,
.security-policy .info span {
	font-size: 20px;
}
.human-rights>img,
.environment-policy>img {
	min-width: 100%;
	margin-bottom: 30px;
}
.environment-policy li {
	display: flex;
}
.security-policy,
.ex-hotline {
	padding-top: 45px;
}
.ex-hotline > p {
	font-size: 18px;
	line-height: 2;
	margin-bottom: 65px;
}
.ex-hotline > div {
	margin-bottom: 40px;
}
.ex-hotline > div p {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-size: 16px;
}
.ex-hotline > div span {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5em 1em;
	min-width: 6em;
	background-color: #ebebeb;
	margin-right: 1.2em;
	font-size: 14px;
}
.ex-hotline > div p:first-of-type {
	font-size: 18px;
}
.ex-hotline > div p:first-of-type span {
	font-size: 18px;
	background-color: #494949;
	color: #fff;
}
body {
	margin: 0;
	padding: 0;
	transform-origin: top left;
	transition: transform 0.3s ease;
}
@media screen and (max-width: 1200px) {
	.home_mv_bg img {
    width: 100%;
}
}
@media screen and (max-width: 813px) {
	body {
		width: 813px;
	}
.header_inner {
	height: 140px;
}
.header_toRecruit_btn {
	font-size: 24px;
}
.header_toRecruit_btn::after {
	width: 73px;
	height: 73px;
	background: url(../ryoto-p/head-p/recruit_arrow.png) no-repeat bottom 12px right 16px/16px 16px, linear-gradient(to bottom, #3d8ffc, #113fa1);
}
.header_hbg_content {
	height: calc(100vh - 140px);
	top: 140px;
}
.header_hbg_nav_items>a {
	font-size: 41px;
}
.header_hbg_nav_items_nav_items a {
	font-size: 33px;
}
}