﻿@charset "utf-8";
@import "base.css";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&display=swap");

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  全般設定
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
body {
	font-family: 'Noto Serif JP', serif;
	font-family: 'Noto Sans JP', 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'メイリオ', sans-serif;
	font-size: 16px;
	color: #3d3f4a;
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
}
#wrapper {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}
* { box-sizing: border-box; }

.flex {
	display: flex;
	flex-wrap: wrap;
}
.reverse {
	flex-flow: row-reverse;
}

.jc_c {
	justify-content: center;
}
.jc_sb {
	justify-content: space-between;
}
.jc_fe {
	justify-content: flex-end;
}

.ai_c {
	align-items: center;
}
.ai_fe {
	align-items: flex-end;
}

.ac_sb {
	align-content: space-between;
}


@media (min-width: 769px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

.w1780,
.w1560,
.w1280,
.w1160,
.w1000,
.w800 {
	width: 100%;
	margin: 0 auto;
}
.w1780 {
	max-width: 1780px;
}
.w1560 {
	max-width: 1560px;
}
.w1280 {
	max-width: 1280px;
}
.w1160 {
	max-width: 1160px;
}
.w1000 {
	max-width: 1000px;
}
.w800 {
	max-width: 800px;
}

.lh18 {
	line-height: 1.875;
}


.pc1200,
.pc1000,
.pc {
	display: inline-block;
}
.sp1200,
.sp1000,
.sp {
	display: none;
}

@media (max-width: 1200px) {
	.pc1200 {
		display: none;
	}
	.sp1200 {
		display: inline-block;
	}
}
@media (max-width: 1000px) {
	.pc1000 {
		display: none;
	}
	.sp1000 {
		display: inline-block;
	}
}
@media (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: inline-block;
	}
}

/* フェードアップの移動距離を短くするためのCSS */
nav [data-aos="fade-up"].aos-init,
#main_img [data-aos="fade-up"].aos-init {
	transform: translate3d(0, 30px, 0) !important; 
}


/* header　
------------------------------------------------------------*/
header {
	width: 100%;
	padding: 0 15px;
	position: fixed;
	top: 0;
	z-index: 999;
}
header .inner {
	height: 1px;
	position: relative;
}
header .logo {
	width: 200px;
	height: 200px;
	background-color: rgba(255, 255, 255, 0.8);
	border: 1px solid #ffffff;
	border-top: none;
	border-radius: 0 0 10px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sp_btn {
	display: none;
}

@media screen and (max-width: 1000px) {
	header {
		height: 60px;
		background-color: #ffffff;
		padding: 10px;
	}
	header .inner {
		height: 100%;
	}
	header .logo {
		width: 222px;
		height: 40px;
		background-color: transparent;
		border: none;
		border-radius: 0;
	}

	.sp_btn {
		display : block;
		width: 40px;
		height: 40px;
		text-align: center;
		position: fixed;
		right: 10px;
		top: 10px;
		z-index: 3;
		cursor: pointer;
	}
    .sp_btn span {
	    display: block;
		width: 30px;
		height: 2px;
		background-color: #3c5a3c;
		position: absolute;
		left: 6px;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition   : 0.3s ease-in-out;
		transition        : 0.3s ease-in-out;
  	}
  	.sp_btn span:nth-child(1) { top: 10px; }
  	.sp_btn span:nth-child(2) { top: 20px; }
  	.sp_btn span:nth-child(3) { top: 30px; }
  
    /* スマホメニューを開いてる時のボタン */
    .sp_btn.active span:nth-child(1) {
		left: 6px;
		top: 20px;
		-webkit-transform: rotate(-45deg);
		-moz-transform   : rotate(-45deg);
		transform        : rotate(-45deg);
  	}
    .sp_btn.active span:nth-child(2),
  	.sp_btn.active span:nth-child(3) {
		top: 20px;
		-webkit-transform: rotate(45deg);
		-moz-transform   : rotate(45deg);
		transform        : rotate(45deg);
  	}
}

@media (min-width: 1001px) {
	nav {
		width: calc(100% - 240px);
		max-width: 800px;
		height: 70px;
		padding-top: 40px;
	}
	nav ul {
		width: 100%;
		height: 70px;
		background-color: rgba(255, 255, 255, 0.5);
		border: 1px solid #ffffff;
		border-radius: 35px;
		padding: 10px 10px 10px 45px;
	}
	nav ul li a {
		color: #121357;
		font-size: 15px;
		position: relative;
		z-index: 3;
	}
	nav ul li a:hover {
		opacity: 0.7;
	}

	nav ul li .nav_sub,
	nav ul li .nav_txt {
		display: none;
	}
	nav ul li {
		position: relative;
	}
	nav ul li:hover .nav_sub {
		display: block;
		width: 188px;
		padding-top: 54px;
		position: absolute;
		left: -100%;
		right: -100%;
		top: 0;
		margin: auto;
		z-index: 1;
		animation: item_show 0.7s;
	}
	@keyframes item_show {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	nav ul li:hover .nav_sub .sub {
		width: 100%;
		height: 48px;
	}
	nav ul li:hover .nav_sub .sub a {
		display: block;
		width: 100%;
		height: 100%;
		background-color: rgba(255, 255, 255, 0.5);
		border: 1px solid #ffffff;
		border-radius: 24px;
		color: #121357;
		text-align: center;
		line-height: 48px;
	}
	nav ul li:hover .nav_sub .sub a:hover {
		background-color: rgba(255, 255, 255, 0.8);
		opacity: 1;
	}

	nav ul li.contact {
		margin-left: -1.6%;
	}
	nav ul li.contact a {
		width: 160px;
		height: 48px;
		background-color: #121357;
		background-image: url(../img/common/nav_contact.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: auto 12px;
		border: 1px solid #121357;
		border-radius: 24px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	nav ul li.contact a:hover {
		background-image: url(../img/common/nav_contact_b.svg);
		background-color: rgba(255, 255, 255, 0.5);
	}

	header.is-active .logo {
		background-color: #ffffff;
		border: 1px solid #d0d0dd;
		border-top: none;
	}
	header.is-active nav ul {
		background-color: #ffffff;
		border: 1px solid #d0d0dd;
	}
}

@media screen and (max-width: 1000px) {
    nav {
		width: 100%;
		max-width: 260px;
		height: 100%;
		background-color: #ffffff;
		padding-left: 30px;
		padding-right: 20px;
		position: fixed;
		right: 0;
		top: 0;
		z-index : 2;
		transform: translateX(100%);
		transition: all 0.1s;
    }
    nav ul {
		width: 100%;
		border-radius: 0;
		margin: 0 auto;
		padding: 72px 0 10px;
	}
    nav ul li {
		width: 100%;
		padding: 0;
		transition: .4s all;
    }
    nav ul li:last-child {
		padding-bottom: 0;
    }
    nav ul li a {
	    display: block;
		border-bottom: 1px dashed #121357;
		color: #121357;
		font-size: 15px;
	    padding: 12px 15px;
    }
	nav ul li .nav_sub a {
		padding-left: calc(1em + 12px);
	}
    /* クリックでjQueryで追加・削除 */
    nav.active {
		display: block;
	    opacity: 1;
	    transform: translateX(0%);
    }
}


/* footer
------------------------------------------------------------*/
#footer_contact {
	background-color: #121357;
	color: #ffffff;
	position: relative;
}

#footer_contact .video_bg {
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	overflow: hidden;
}
#footer_contact .video_bg video {
	max-height: 1460px;
}

#footer_contact .inner {
	padding-top: 180px;
	padding-bottom: 160px;
	position: relative;
}

#footer_contact .f_ttl {
	width: 100%;
	text-align: center;
	margin-bottom: 80px;
}
#footer_contact .f_ttl .ja {
	font-size: 36px;
}

#footer_contact .left,
#footer_contact .right {
	width: 350px;
}

#footer_contact .left .box {
	text-align: center;
}
#footer_contact .left .box .num {
	margin: 20px 0;
}
#footer_contact .left .box .fax {
	margin-top: 30px;
}

#footer_contact .right {
	padding-bottom: 60px;
}

.circle_link {
	width: 100%;
}
.circle_link .link a {
	border-bottom: 1px solid #ffffff;
	padding-bottom: 10px;
}
.circle_link .link_txt {
	width: calc(100% - 60px);
}
.circle_link .circle {
	width: 48px;
	height: 48px;
	background-color: rgba(255, 255, 255, 0.5);
	background-image: url(../img/common/circle_sign.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px auto;
/*	border: 1px solid #ffffff; */
	border-radius: 24px;
	transition: 0.5s;
}
.circle_link a:hover .circle {
	background-position: left calc(50% + 5px) center;
}

#footer_contact .center {
	margin: 0 60px;
}
#footer_contact .center .img {
	position: relative;
}
#footer_contact .center .img::before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../img/common/f_contact_img_grad.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;

	transition-timing-function: cubic-bezier(0, 1, 1, 1);
	transition-delay: 0.5s;
}

@media screen and (max-width: 1200px) {
	#footer_contact .inner {
		padding-top: 120px;
		padding-bottom: 80px;
	}
	#footer_contact .video_bg {
		top: 25%;
	}

	#footer_contact .left,
	#footer_contact .right {
		width: 100%;
		max-width: 350px;
	}
	#footer_contact .center {
		width: 100%;
		text-align: center;
		margin: 40px 0;
	}
	#footer_contact .center .img::before {
		max-width: 320px;
		right: 0;
		margin: auto;
	}
}

@media screen and (max-width: 768px) {

	#footer_contact .video_bg {
		top: 36%;
	}
	#footer_contact .video_bg video {
		width: 180%;
		margin-left: -40%;
		margin-right: -40%;
	}

	#footer_contact .inner {
		padding: 60px 15px 80px;
	}
	#footer_contact .f_ttl .ja {
		font-size: 28px;
	}

	#footer_contact .left .box .num img {
		width: 210px;
	}
	#footer_contact .right {
		padding-bottom: 0;
	}

	#footer_contact .center .img {
		max-width: 50%;
		margin: 0 auto;
	}
}


footer {
	background-color: #121357;
	color: #ffffff;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
}
footer .inner {
	border-top: 1px solid #ffffff;
	padding: 60px 15px 40px;
}

footer .left .info {
	font-size: 14px;
	margin-top: 20px;
}

footer .right {
	width: 50%;
	max-width: 400px;
	padding-top: 20px;
}

footer .f_nav ul:not(:first-child) {
	margin-top: 30px;
	justify-content: flex-start;
}
footer .f_nav ul:not(:first-child) li:not(:first-child) {
	margin-left: 30px;
}
footer .f_nav ul .nav_sub {
	margin-top: 5px;
}
footer .f_nav ul li a {
	font-size: 15px;
}
footer .f_nav ul li .nav_sub a {
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
}
footer .f_nav ul li .nav_sub a::before {
	content: '- ';
}

#copyright {
	width: 100%;
	color: #8889ab;
	margin-top: 100px;
}
#copyright .link a {
	font-size: 14px;
}
#copyright .copyright {
	font-size: 13px;
	margin-top: 5px;
}

#pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index: 99;
}
#pagetop a {
	width: 48px;
	height: 48px;
	background-color: #121357;
	background-image: url(../img/common/pagetop_sign.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 14px auto;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 24px;
}
#pagetop a:hover {
	background-position: center bottom calc(50% + 5px);
}

@media screen and (max-width: 768px) {
	footer .inner {
		padding-left: 0;
		padding-right: 0;
		justify-content: center;
	}
	footer .right {
		display: none;
	}

	#copyright {
		margin-top: 80px;
	}
}


/* main　
------------------------------------------------------------*/
main {
	width: 100%;
/*	min-height: 1200px; */
	background-image: url(../img/common/main_bg.png);
	background-position: center top;
	background-repeat: no-repeat;
}
.recruit main {
	background-image: none;
}

@media screen and (max-width: 1000px) {
	main {
		padding-top: 60px;
	}
}


/* section */
section {
	padding-left: 15px;
	padding-right: 15px;
}
section.pt {
	padding-top: 80px;
}
section.pt_middle {
	padding-top: 120px;
}
section.pt_first {
	padding-top: 160px;
}
section.pb {
	padding-bottom: 80px;
}
section.pb_middle {
	padding-bottom: 120px;
}
section.pb_last {
	padding-bottom: 160px;
}

@media screen and (max-width: 768px) {
	section.pt {
		padding-top: 40px;
	}
	section.pt_middle {
		padding-top: 80px;
	}
	section.pt_first {
		padding-top: 100px;
	}
	section.pb {
		padding-bottom: 40px;
	}
	section.pb_middle {
		padding-bottom: 80px;
	}
	section.pb_last {
		padding-bottom: 100px;
	}
}


/* page_ttl */
#page_ttl {
	height: 560px;
	padding-left: 15px;
	padding-right: 15px;
}
#page_ttl .inner {
	height: 100%;
	border-bottom: 1px solid #d0d0dd;
	padding-top: 200px;
	position: relative;
}
#page_ttl .ja {
	color: #121357;
	font-size: 48px;
}
#page_ttl .ja span {
	font-size: 32px;
}
#page_ttl .en {
	padding-left: 5px;
}

/*
#page_ttl .opposite .ja {
	font-size: 26px;
	font-weight: 700;
	margin-top: 20px;
}
*/

@media screen and (max-width: 1000px) {
	#page_ttl {
		height: 320px;
	}
	#page_ttl .inner {
		padding-top: 0;
	}
	#page_ttl .ja {
		font-size: 36px;
	}
	#page_ttl .ja span {
		font-size: 20px;
	}
	/*
	#page_ttl .opposite .ja {
		font-size: 26px;
		font-weight: 700;
		margin-top: 20px;
	}
	*/
}

@media screen and (max-width: 768px) {
	#page_ttl {
		height: 210px;
	}

	#page_ttl .ja {
		font-size: 28px;
	}
	/*
	#page_ttl .opposite .ja {
		font-size: 16px;
	}
	#page_ttl .opposite .en img {
		width: 240px;
	}
	*/
}


/* p_nav */
#p_nav {
	position: absolute;
	right: 0;
	bottom: 30px;
}
#p_nav .p_nav {
	color: #83848d;
}

@media screen and (max-width: 768px) {
	#p_nav {
		bottom: 15px;
	}
	#p_nav .p_nav {
		font-size: 14px;
	}
}


/* s_ttl*/
.s_ttl {
	margin-bottom: 60px;
}
.s_ttl .ttl {
	border-bottom: 1px solid #d0d0dd;
	padding-bottom: 5px;
	position: relative;
}
.s_ttl .ja {
	color: #121357;
	font-size: 30px;
	font-weight: 500;
	position: relative;
	z-index: 1;
}
.s_ttl .ja.white {
	color: #ffffff;
}
.s_ttl .en {
	position: absolute;
	right: 0;
}
.s_ttl .top_bottom .en {
	bottom: -16px;
}
.s_ttl .top_only .en {
	bottom: 0;
}
.s_ttl .top_bottom .en img {
	height: 70px;
}
.s_ttl .top_only .en img {
	height: 54px;
}

@media screen and (max-width: 768px) {
	.s_ttl {
		margin-bottom: 40px;
	}
	.s_ttl .ja {
		font-size: 24px;
	}
	.s_ttl .top_bottom .en {
		bottom: -8px;
	}
	.s_ttl .top_bottom .en img {
		height: 36px;
	}
	.s_ttl .top_only .en img {
		height: 24px;
	}
}


/* t_ttl*/
.t_ttl .ja {
	color: #ffffff;
	font-size: 36px;
}
.t_ttl .en {
	margin-top: 10px;
	padding-left: 5px;
}
.t_ttl .en.center {
	text-align: center;
}

@media screen and (max-width: 768px) {
	.t_ttl .ja {
		font-size: 28px;
	}
}


.cont_ttl.list {
	width: 100%;
	min-height: 48px;
	background-color: #121357;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	padding: 10px 15px;
}


.b_ttl {
	color: #3d3f4a;
	font-size: 22px;
	font-weight: 700;
	border-bottom: 1px solid #d8d9d6;
	padding-left: 36px;
	padding-bottom: 10px;
	position: relative;
}
.b_ttl.mt {
	margin-top: 40px;
}
.b_ttl::before {
	content: '';
	width: 6px;
	height: 28px;
	background-color: #3d3f4a;
	position: absolute;
	left: 15px;
	top: 3px;
}

@media screen and (max-width: 768px) {
	.b_ttl {
		font-size: 18px;
		padding-bottom: 5px;
	}
	.b_ttl::before {
		height: 20px;
	}
}

/* table */
table {
	width: 100%;
	line-height: 1.875;
}
table th,
table td {
	vertical-align: top;
}

table.table01 {
	border-top: 2px solid #d0d0dd;
}
table.table01 caption {
	font-size: 18px;
	padding: 5px 10px;
}
table.table01 th,
table.table01 td {
	border-right: 2px solid #d0d0dd;
	border-bottom: 2px solid #d0d0dd;
	padding: 10px 30px;
}
table.table01 th:last-child,
table.table01 td:last-child {
	border-right: none;
}
table.table01 th {
	background-color: #e7e7ee;
	color: #8889ab;
	font-weight: 700;
	text-align: center;
}

table.table01.num th:last-child {
	width: 110px;
	padding-left: 10px;
	padding-right: 10px;
}
table.table01.center td:last-child {
	text-align: center;
}
table.table01.center td.ta_l {
	text-align: left;
}
table.table01.center td.line_r {
	border-right: 2px solid #d0d0dd;	
}

table.table02 {
	border-top: 2px solid #d0d0dd;
}
table.table02 th,
table.table02 td {
	border-bottom: 2px solid #d0d0dd;
	padding: 10px 30px;
}
table.table02 th {
	width: 300px;
	background-color: #e7e7ee;
	color: #8889ab;
	font-weight: 700;
}

table.table03 th {
	width: 280px;
	border-bottom: 1px solid #d0d0dd;
	color: #93949a;
	padding: 10px 0;
}
table.table03 td {
	border-bottom: 1px dashed #d0d0dd;
	padding: 10px 20px;
}

@media screen and (max-width: 1200px) {
	table.table01 th,
	table.table01 td {
		padding-left: 20px;
		padding-right: 20px;
	}
}
	
@media screen and (max-width: 768px) {
	table.table02 tr {
		display: flex;
		flex-wrap: wrap;
	}
	table.table02 th,
	table.table02 td {
		width: 100%;
		padding: 5px;
	}

	table.table03 tr {
		display: flex;
		flex-wrap: wrap;
	}
	table.table03 th,
	table.table03 td {
		width: 100%;
		padding: 5px;
	}
	table.table03 th {
		border-bottom: 1px dashed #d0d0dd;
	}
	table.table03 td {
		border-bottom: 1px solid #d0d0dd;
	}
}


/* box_list */
.box_list dl dt,
.box_list dl dd {
	line-height: 1.875;
	padding: 5px 0;
}
.box_list dl dt {
	border-bottom: 2px solid #8889ab;
	color: #8889ab;
	font-weight: 700;
	margin-right: 10px;
}
.box_list dl dd {
	border-bottom: 1px solid #d0d0dd;
}


.cont.flow dl:not(:first-child) {
	margin-top: 60px;
}
.cont.flow dl dt {
	width: 300px;
	margin-right: 60px;
}
.cont.flow dl dt .step img:last-child {
	height: 21px;
	margin-left: 5px;
}
.cont.flow dl dt .ttl {
	width: 100%;
	border-top: 1px solid #d0d0dd;
	color: #121357;
	font-size: 25px;
	margin-top: 10px;
	padding-top: 10px;
}
.cont.flow dl dd {
	width: calc(100% - 360px);
	max-width: 600px;
	padding-top: 20px;
}
.cont.flow dl dd .txt {
	max-width: 780px;
}
.cont.flow dl dd .img {
	margin-top: 10px;
}

@media screen and (max-width: 1000px) {
	.cont.flow dl dt {
		width: 200px;
		margin-right: 40px;
	}
	.cont.flow dl dt .ttl {
		font-size: 21px;
	}

	.cont.flow dl dd {
		width: calc(100% - 240px);
	}
}

@media screen and (max-width: 768px) {
	.cont.flow dl dt {
		width: 100%;
		margin-right: 0;
	}
	.cont.flow dl dt .ttl {
		font-size: 20px;
	}

	.cont.flow dl dd {
		width: 100%;
	}
}


/* top
------------------------------------------------------------*/
#main_img {
	height: 1080px;
	padding-top: 300px;
}
#main_img .main_txt {
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
#main_img .main_txt .ja {
	color: #121357;
	font-size: 50px;
}
#main_img .main_txt .en {
	padding-left: 20px;
}

#main_img .main_img {
	margin-top: 160px;
}
#main_img .main_img .img {
	height: 680px;
	position: relative;
	overflow: hidden;
}
#main_img .main_img .img::before {
	content: '';
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.1);
	animation: reduction 2.5s cubic-bezier(0, 1, 1, 1) forwards .2s;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
@keyframes reduction {
	0% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}
#main_img .main_img .img:first-child {
	width: 35.41%;
}
#main_img .main_img .img:first-child::before {
	background-image: url(../img/top/main_img01.jpg);
}
#main_img .main_img .img:last-child {
	width: 62.5%;
}
#main_img .main_img .img:last-child::before {
	background-image: url(../img/top/main_img02.jpg);
}

@media screen and (max-width: 1200px) {
	#main_img .main_img .img {
		height: 540px;
	}
}
	
@media screen and (max-width: 1000px) {
	#main_img {
		height: auto;
		padding-top: 160px;
	}
	#main_img .main_img {
		padding-bottom: 80px;
	}
	#main_img .main_img .img {
		height: 320px;
	}
}

@media screen and (max-width: 768px) {
	#main_img {
		padding-top: 120px;
	}
	#main_img .main_txt .ja {
		font-size: 26px;
	}

	#main_img .main_img {
		margin-top: 80px;
		padding-bottom: 0;
		flex-flow: column-reverse;
	}
	#main_img .main_img .img {
		height: 240px;
	}
	#main_img .main_img .img::before {
		background-size: cover;
	}

	#main_img .main_img .img:first-child {
		width: 100%;
		margin-top: 10px;
	}
	#main_img .main_img .img:last-child {
		width: 100%;
	}
}


.top .cont_ttl {
	border-bottom: 1px solid #ffffff;
	color: #ffffff;
	margin-top: 120px;
	margin-bottom: 30px;
	padding-bottom: 15px;
}
.top .cont_ttl span {
	margin-left: 30px;
}

.top_bg {
	background-image: url(../img/top/top_bg.jpg);
	background-position: center top;
	background-repeat: no-repeat;
}

#top01 {
	padding-top: 180px;
}
#top01 .cont .box {
	max-width: 630px;
	color: #ffffff;
}
#top01 .cont .ttl {
	font-size: 28px;
	margin: 20px 0 30px;
}
#top01 .cont .txt {
	font-size: 15px;
}

#top01 ul li {
	width: 32.05%;
	background-color: rgba(18, 19, 87, 0.2);
	text-align: center;
	padding: 60px 20px 40px;
}
#top01 ul li .txt {
	color: #ffffff;
	font-size: 18px;
	margin-top: 15px;
}

#top01 .cont_txt {
	color: #ffffff;
	font-size: 28px;
	text-align: center;
	margin-top: 60px;
}

#top02 {
	background-image: url(../img/top/top02_bg.png);
	background-position: center;
	background-repeat: no-repeat;
}

#top02 .cont_ttl,
#top02 .cont_img {
	width: 100%;
	max-width: 1440px;
	margin-left: auto;
	margin-right: -15px;
}

#top02 .right {
	width: 64%;
	max-width: 900px;
	padding: 0 60px;
}
#top02 .right .box {
	max-width: 630px;
	margin: 0 auto;
}
#top02 .right .box .txt {
	color: #121357;
	font-size: 15px;
	margin-bottom: 40px;
}

#top02 .circle_link .btn {
	width: 240px;
	color: #121357;
	font-size: 22px;
	display: inline-flex;
	align-items: center;
}
#top02 .circle_link .btn .circle {
	background-color: rgba(18, 19, 87, 0.5);
	margin-right: 30px;
}

#top03 .cont {
	padding-bottom: 80px;
	position: relative;
}
#top03 .cont .right {
	width: 50%;
	max-width: 600px;
	background-color: #121357;
	padding: 80px 20px 40px;
	position: absolute;
	right: 0;
	bottom: 0;
}
#top03 .cont .right a {
	display: block;
	width: 100%;
	height: 100%;
}
#top03 .cont .right .box {
	max-width: 400px;
	margin: 0 auto;
}
#top03 .cont .right .box .txt {
	color: #ffffff;
	font-size: 15px;
	margin: 40px 0 30px;
}
#top03 .circle_link a {
	display: inline-block;
}

#top04 section {
	padding-left: 0;
	padding-right: 0;
}
#top04 .cont .box {
	width: 50%;
	height: 560px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#top04 .cont .box:first-child {
	background-image: url(../img/top/top04_img01.jpg);
}
#top04 .cont .box:last-child {
	background-image: url(../img/top/top04_img02.jpg);
}
#top04 .cont .box a {
	width: 100%;
	height: 100%;
	background-color: rgba(7, 9, 28, 0.5);
}
#top04 .cont .box a:hover {
	background-color: rgba(7, 9, 28, 0.3);
}

#top05 section {
	padding-left: 0;
	padding-right: 0;
}
#top05 .cont {
	width: 100%;
	height: 420px;
	background-image: url(../img/top/top05_img.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
#top05 .cont::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(7, 9, 28, 0.5);
	position: absolute;
	left: 0;
	top: 0;
}

#top05 .cont .box {
	position: relative;
}
#top05 .cont .ttl .en {
	text-align: center;
}
#top05 .cont .ttl .ja {
	color: #ffffff;
	font-size: 24px;
	margin-top: 10px;
}

#top05 .circle_link a {
	display: flex;
	text-align: center;
}
#top05 .circle_link .circle {
	width: 104px;
	height: 104px;
	background-image: url(../img/common/circle_sign.svg);
	background-size: 28px auto;
	border-radius: 52px;
	margin: 30px auto 0;
}

@media screen and (max-width: 1200px) {
	#top01 {
		padding-top: 0;
	}

	#top02 .circle_link .btn {
		width: 50%;
	}
}

@media screen and (max-width: 1000px) {
	#top02 .right {
		padding: 0;
	}

	#top04 .cont .box {
		height: 320px;
	}
	#top05 .cont {
		height: 320px;
	}
}

@media screen and (max-width: 768px) {
	#top01 section {
		padding-bottom: 40px;
	}
	#top01 .cont .ttl {
		font-size: 21px;
	}

	.top .cont_ttl {
		margin-top: 80px;
	}

	#top01 ul li {
		width: 100%;
		padding-top: 40px;
	}
	#top01 ul li:not(:first-child) {
		margin-top: 15px;
	}
	#top01 ul li .txt {
		font-size: 15px;
	}

	#top01 .cont_txt {
		font-size: 18px;
		text-align: left;
		margin-top: 40px;
	}

	#top02 {
		background-image: none;
	}
	#top02 section {
		padding-top: 40px;
	}

	#top02 .right {
		width: 100%;
		margin-top: 40px;
	}

	#top02 .cont_ttl,
	#top02 .cont_img {
		margin-right: 0;
	}

	#top02 .circle_link .btn {
		font-size: 18px;
	}
	#top02 .circle_link .btn .circle {
		margin-right: 15px;
	}

	#top03 .cont {
		padding-bottom: 0;
	}
	#top03 .cont .right {
		width: 100%;
		max-width: 100%;
		padding: 30px 20px;
		position: static;
	}

	#top04 .cont .box {
		width: 100%;
		height: 200px;
	}

	#top05 .cont {
		height: 200px;
	}
	#top05 .cont .ttl .ja {
		font-size: 16px;
		text-align: center;
	}

	#top05 .circle_link .circle {
		width: 48px;
		height: 48px;
		background-size: 12px auto;
		margin-top: 20px;
	}
}


/* business
------------------------------------------------------------*/
#business01 {
	background-image: url(../img/business/business01_bg.png);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 52.6% auto;
/*	background-blend-mode: multiply; */
	mix-blend-mode: multiply;
}
#business01 .ttl {
	font-size: 36px;
}
#business01 .sub {
	font-size: 24px;
}

#business01 .section_ttl {
	position: relative;
}
#business01 .section_ttl .ttl {
	width: 50%;
	position: absolute;
	right: 20px;
	top: -45px;
}

#business01 .cont .right {
	width: 54%;
	max-width: 1030px;
	position: relative;
}
#business01 .cont .right .sub {
	margin: 55px 0 15px;
}
#business01 .cont .right .txt {
	max-width: 655px;
}
#business01 .cont .right .img {
	margin-top: 50px;
}

#business01 .cont_box {
	width: 100%;
	margin-top: 60px;
}
#business01 .cont_box .ttl {
	text-align: center;
}
#business01 .cont_box .txt {
	margin-top: 30px;
}
#business01 .cont_box .img {
	text-align: center;
	margin-top: 60px;
}

#business02 .cont:not(:first-child) {
	border-top: 1px solid #d0d0dd;
	margin-top: 80px;
	padding-top: 80px;
}
#business02 .cont_top {
	padding-bottom: 40px;
	position: relative;
}
#business02 .cont_top .num {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

#business02 .cont_top .left {
	width: 42.18%;
	padding-left: 60px;
}

#business02 .cont_top .num img {
	height: 210px;
}
#business02 .cont_top .ttl .en img {
	height: 12px;
}
#business02 .cont_top .ttl .en.h img {
	height: 15px;
}
#business02 .cont_top .ttl .ja {
	color: #121357;
	font-size: 42px;
	line-height: 1.2;
}
#business02 .cont_top .txt {
	margin-top: 30px;
}
#business02 .cont_top .txt p {
	font-size: 20px;
	font-weight: 700;
}
#business02 .cont_top .right {
	width: 53.125%;
}

#business02 .cont_ttl {
	border-left: 6px solid #121357;
	color: #121357;
	font-size: 20px;
	font-weight: 700;
	margin-top: 60px;
	margin-bottom: 15px;
	padding-left: 12px;
}
#business02 .cont_box .num img {
	height: 19px;
}

table.features {
	border-top: 1px solid #d0d0dd;
}
table.features th,
table.features td {
	border-bottom: 1px solid #d0d0dd;
	vertical-align: top;
}
table.features th {
	width: 240px;
	border-right: 1px solid #d0d0dd;
	text-align: right;
	padding: 30px 15px;
}
table.features td {
	padding: 30px 60px 60px 0;
}
table.features td .left {
	width: 48.97%;
}
table.features td .right {
	width: 46%;
}
table.features td .right .ttl .en img {
	height: 16px;
}
table.features td .right .ttl .ja {
	font-size: 32px;
	line-height: 1.2;
	margin-top: 15px;
}
table.features td .right .txt {
	margin-top: 30px;
}

table.features td .right .circle_link {
	margin-top: 30px;
}
table.features td .right .circle_link .circle {
	background-color: rgba(18, 19, 87, 0.5);
}
table.features td .right .circle_link .link_txt {
	font-size: 20px;
}

#business02 .cont:not(:first-child) .cont_box {
	margin-top: 80px;
}

#business02 table.table02.w130 th {
	width: 130px;
}
#business02 table.table02.w130 td {
	padding-right: 10px;
}

#business02 ul.item li {
	width: 400px;
	margin-right: 40px;
}
#business02 ul.item li:nth-child(3n) {
	margin-right: 0;
}
#business02 ul.item li .img img {
	border: 1px solid #d0d0dd;
}
#business02 ul.item li .box {
	margin-top: 20px;
}

#business02 ul.movie li {
	width: 48%;
	max-width: 580px;
}
#business02 ul.movie li .ttl {
	color: #121357;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin-top: 10px;
}

.youtube {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
}
.youtube iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}

#business03 {
	background-color: #f3f3f7;
}

#business04 {
	background-image: url(../img/business/business04_bg.png);
	background-position: center;
	background-repeat: no-repeat;
}
#business04 .cont .left {
	width: 46%;
}
#business04 .cont .left .ttl {
	font-size: 32px;
}
#business04 .cont .left .sub {
	font-size: 20px;
	line-height: 1.6;
	margin-top: 20px;
}
#business04 .cont .left .txt {
	margin-top: 60px;
}
#business04 .cont .left .txt p {
	border-bottom: 1px solid #d0d0dd;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	padding-bottom: 5px;
}

#business04 .cont .right {
	width: 43.1%;
}
#business04 .cont .right .circle_link {
	width: 100%;
	height: 420px;
	background-image: url(../img/business/business04_img.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 3px;
	position: relative;
}
#business04 .cont .right .circle_link a {
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(18, 19, 87, 0.8);
	border-radius: 3px;
	padding: 40px;
}
#business04 .cont .right .circle_link a:hover {
	background-color: rgba(18, 19, 87, 0.6);
}
#business04 .cont .right .circle_link .ttl .ja {
	color: #ffffff;
	font-size: 30px;
}
#business04 .cont .right .circle_link .circle {
	position: absolute;
	right: 40px;
	bottom: 40px;
}

@media screen and (max-width: 1200px) {
	#business01 .ttl {
		font-size: 32px;
	}
}

@media screen and (max-width: 1000px) {
	#business02 .cont_top .left {
		padding-left: 0;
	}
	#business02 .cont_top .ttl .ja {
		font-size: 36px;
	}

	table.features th {
		width: 100px;
	}

	#business02 ul.item li {
		max-width: 49%;
		margin-right: 1%;
	}
	#business02 ul.movie li .ttl {
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
	#business01 {
		background-image: none;
	}
	#business01 .cont .right {
		width: 100%;
	}
	#business01 .cont .right .img {
		margin-top: 20px;
	}
	#business01 .ttl {
		font-size: 21px;
	}
	#business01 .sub {
		font-size: 18px;
	}
	#business01 .cont .right .sub {
		margin: 25px 0 10px;
	}

	#business01 .cont_box .img {
		margin-top: 30px;
	}

	#business02 .cont_top {
		padding-bottom: 0;
	}
	#business02 .cont_top .ttl .ja {
		font-size: 24px;
	}
	#business02 .cont_top .txt {
		margin-top: 10px;
	}

	#business02 .cont_top .num {
		width: 120px;
		left: auto;
		right: 0;
		top: 0;
		bottom: auto;
	}

	#business02 .cont_top .left {
		width: 100%;
	}
	#business02 .cont_top .right {
		width: 100%;
		margin-top: 20px;
	}

	table.features tr {
		display: flex;
		flex-wrap: wrap;
	}
	table.features th,
	table.features td {
		width: 100%;
	}
	table.features th {
		border-right: none;
		text-align: left;
		padding: 10px 0;
	}
	table.features td {
		padding: 20px 0;
	}
	table.features td .left {
		width: 100%;
	}

	table.features td .right {
		width: 100%;
		margin-top:	20px;
	}
	table.features td .right .ttl .ja {
		font-size: 21px;
		margin-top: 5px;
	}
	table.features td .right .txt {
		margin-top: 10px;
	}

	table.features td .right .circle_link .link_txt {
		font-size: 18px;
	}

	#business02 .cont:not(:first-child) {
		border-top: none;
		margin-top: 0;
		padding-top: 60px;
	}
	#business02 .cont:not(:first-child) .cont_box {
		margin-top: 40px;
	}

	#business02 ul.item li {
		width: 100%;
		max-width: 100%;
		margin-right: 0;
	}
	#business02 ul.item li:not(:first-child) {
		margin-top: 30px;
	}
	#business02 table.table02.w130 th {
		width: 100%;
	}

	#business02 ul.movie li {
		width: 100%;
	}
	#business02 ul.movie li:not(:first-child) {
		margin-top: 30px;
	}

	#business04 {
		background-position: center bottom;
	}
	#business04 section {
		padding-bottom: 0;
	}
	#business04 .cont {
		padding-bottom: 100px;
	}
	#business04 .cont .left {
		width: 100%;
	}
	#business04 .cont .left .ttl {
		font-size: 21px;
	}
	#business04 .cont .left .sub {
		font-size: 18px;
		margin-top: 10px;
	}
	#business04 .cont .left .txt {
		margin-top: 20px;
	}
	#business04 .cont .left .txt p {
		font-size: 18px;
	}

	#business04 .cont .right {
		width: 100%;
		margin-top: 20px;
	}
	#business04 .cont .right .circle_link {
		height: 240px;
	}
	#business04 .cont .right .circle_link .ttl .ja {
		font-size: 24px;
	}
}


/* equipment applicator
------------------------------------------------------------*/
#list_menu {
	width: calc(100% - 30px);
	margin: 60px auto 0;
}
#list_menu ul li {
	padding: 15px 0;
}
#list_menu ul li:not(:last-child) {
	margin-right: 30px;
}
#list_menu ul li a {
	display: inline-block;
	background-image: url(../img/common/list_sign_bottom.svg);
	background-position: right 15px center;
	background-repeat: no-repeat;
	background-size: 12px auto;
	color: #121357;
	padding-right: 50px;
}
#list_menu ul li a:hover {
	background-position: right 15px top calc(50% + 5px);
}

#list_menu ul li.right {
	padding-left: 40px;
	position: relative;
}
#list_menu ul li.right::before {
	content: '';
	width: 1px;
	height: 100%;
	background-color: #121357;
	position: absolute;
	left: 0;
	top: 0;
}
#list_menu ul li.right a {
	background-image: url(../img/common/list_sign_right.svg);
	background-position: right 18px center;
	background-size: 6px auto;
}
#list_menu ul li.right a:hover {
	background-position: right 13px center;
}

#list_menu ul li a span {
	color: #8889ab;
	font-size: 15px;
	font-weight: 700;
}

#equipment_list01,
#equipment_list02,
#applicator_list01,
#applicator_list02,
#applicator_list03 {
	margin-top: -240px;
	padding-top: 240px;
}

.equipment .cont .cont_box {
	width: 48%;
	max-width: 560px;
	margin-top: 40px;
}
.equipment .cont .cont_box:nth-child(n+3) {
	margin-top: 50px;
}
.equipment .cont .cont_box .box {
	margin-top: 20px;
}

.equipment .box_list dl dt {
	width: 120px;
}
.equipment .box_list dl dd {
	width: calc(100% - 130px);
}

.equipment .cont .list {
	width: 100%;
	margin-top: 50px;
}

.applicator .cont .list {
	width: 48%;
	max-width: 600px;
	margin-top: 40px;
}
.applicator .cont .list:nth-child(n+3) {
	margin-top: 50px;
}

.machine {
	width: 100%;
	background: linear-gradient(90deg, #e7f0f6 calc(50% - 280px), #f3f7fb calc(50% - 280px));
}
.machine .left {
	width: 360px;
	padding: 0 55px;
}
.machine .left .ttl {
	min-height: 57px;
	background-image: url(../img/equipment/machine_ttl.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 38px auto;
	color: #0e66a7;
	font-size: 28px;
	font-weight: 500;
	line-height: 57px;
	padding-left: 50px;
}

.machine .right {
	width: calc(100% - 360px);
	padding: 0 55px;
}
.machine .right .box {
	border-bottom: 1px solid #cfe0ed;
	transition: 1s;
}

.question {
	min-height: 48px;
	padding: 10px 0;
	cursor: pointer;
}
.question .ttl {
	width: calc(100% - 70px);
	font-size: 22px;
	font-weight: 500;
}
.question .btn {
	width: 48px;
	height: 48px;
	background-color: #ffffff;
	border: 1px solid #0e66a7;
	border-radius: 24px;
	margin-left: 22px;
	position: relative;
	cursor: pointer;
}
.question .btn::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../img/common/list_sign_bottom_g.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 14px auto;
	transition: 0.5s;
}
.question .flex:hover .btn::before {
	background-position: center top calc(50% + 5px);
}

.answer {
	display: none;
	width: 100%;
	max-width: 630px;
	background-color: #ffffff;
	margin-bottom: 15px;
	padding: 20px 30px;
}
.show .answer {
	display: block;
	animation: item_move 1.2s;
}
@keyframes item_move {
	0% {
		opacity: 0;
		height: 0;
	}
	100% {
		opacity: 1;
		height: 100%;
	}
}

@media screen and (max-width: 1000px) {
	.machine {
		background: linear-gradient(180deg, #e7f0f6 155px, #f3f7fb 155px);
	}

	.machine .left {
		width: 100%;
		padding: 0;
	}
	.machine .right {
		width: 100%;
		margin-top: 20px;
		padding: 0;
	}

	#list_menu ul li.right {
		width: 100%;
		padding-left: 0;
	}
	#list_menu ul li.right::before {
		content: none;
	}

}

@media screen and (max-width: 768px) {
	.equipment .cont .cont_box {
		width: 100%;
		max-width: 560px;
		margin-top: 30px;
	}
	.equipment .cont .cont_box:nth-child(n+2) {
		margin-top: 30px;
	}

	.scroll {
		width: 100%;
		overflow-x: auto;
	}
	.scroll table {
		width: 800px;
	}

	.equipment .box_list dl dt {
		width: 100px;
	}
	.equipment .box_list dl dd {
		width: calc(100% - 110px);
	}

	.applicator .cont .list {
		width: 100%;
		max-width: 100%;
		margin-top: 30px;
	}
	.applicator .cont .list:nth-child(n+2) {
		margin-top: 30px;
	}

	.applicator .cont .list .scroll table {
		width: 100%;
	}

	.machine {
		background: linear-gradient(180deg, #e7f0f6 0%, #f3f7fb 100%);
	}

	.machine .left .ttl {
		font-size: 24px;
	}
	.question .ttl {
		font-size: 18px;
	}
	.answer {
		padding: 20px 15px;
	}
}

@media screen and (max-width: 480px) {
	.applicator .cont .list .scroll table {
		width: 540px;
	}
}


/* products
------------------------------------------------------------*/
#productsCate ul li {
	margin-right: 10px;
}
#productsCate ul li a {
	display: inline-block;
	background-color: #e7f0f6;
	border-radius: 3px;
	color: #0e66a7;
	padding: 5px 15px;
}
#productsCate ul li.active a {
	background-color: #b7d1e5;
}

#productsList {
	margin-top: 60px;
}
#productsList li {
	width: 32.81%;
	margin-right: 0.785%;
}
#productsList li:nth-child(3n) {
	margin-right: 0;
}
#productsList li:nth-child(n+4) {
	margin-top: 40px;
}

#productsList .box_list dl dt {
	width: 95px;
}
#productsList .box_list dl dd {
	width: calc(100% - 105px);
}

.pager {
	margin-top: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pager a {
	color: #93949a;
	margin: 0 3px;
	padding: 0 2px;
}
.pager .prev,
.pager .next {
	display: inline-block;
	width: 48px;
	height: 48px;
	background-color: rgba(18, 19, 87, 0.5);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px auto;
	border-radius: 24px;
	transition: 0.5s;
}
.pager .prev {
	background-image: url(../img/products/pager_prev.svg);
	margin-right: 20px;
}
.pager .next {
	background-image: url(../img/products/pager_next.svg);
	margin-left: 20px;
}

.pager a.current,
.pager a:hover {
	color: #121357;
}
.pager a:hover .prev {
	background-position: right calc(50% + 5px) center;
}
.pager a:hover .next {
	background-position: left calc(50% + 5px) center;
}

@media screen and (max-width: 1000px) {
	#productsList .box_list dl dt {
		width: 80px;
	}
	#productsList .box_list dl dd {
		width: calc(100% - 90px);
	}
}

@media screen and (max-width: 768px) {
	#productsList {
		margin-top: 40px;
		justify-content: space-between;
	}
	#productsList li {
		width: 49%;
		margin-right: 0;
	}
	#productsList li:nth-child(n+3) {
		margin-top: 40px;
	}
}

@media screen and (max-width: 480px) {
	#productsList li {
		width: 100%;
	}
	#productsList li:nth-child(n+2) {
		margin-top: 40px;
	}
}


/* company
------------------------------------------------------------*/
.company .ttl.fs.clr {
	color: #121357;
	font-size: 24px;
}

#company01 .cont .ttl {
	text-align: center;
	margin-top: 100px;
}
#company01 .cont .txt {
	width: 100%;
	max-width: 880px;
	margin: 60px auto 0;
}

#company02 .cont .ttl {
	min-height: 120px;
	text-align: center;
	margin-top: 120px;
}

#company03 .box_list dl dt,
#company03 .box_list dl dd {
	padding: 20px 0;
}
#company03 .box_list dl dt {
	width: 280px;
}
#company03 .box_list dl dd {
	width: calc(100% - 290px);
}
#company03 .box_list dl dd .office:not(:first-child) {
	margin-top: 15px;
}

#company03 .cont_img {
	margin-top: 80px;
}
#company03 .cont_img img {
	border-radius: 3px;
}
#company03 .cont_img .left {
	width: 32.8125%;
}
#company03 .cont_img .right {
	width: 66.40625%;
}
#company03 .cont_img .right .flex {
	width: 100%;
	margin-bottom: 1.149%;
}
#company03 .cont_img .right .flex .img {
	width: 49.41%;
}

#company04 ol li {
	text-indent: -26px;
	margin-top: 20px;
	padding-left: 26px;
}

#company04 .cont_box {
	border-top: 1px dashed #8889ab;
	margin-top: 80px;
	padding-top: 80px;
}

#company04 .left {
	width: 32.75%;
}
#company04 .left .img {
	margin-left: -30px;
}
#company04 .right {
	width: 55.17%;
}
#company04 .right .txt {
	margin-top: 20px;
}
#company04 .right .img {
	margin: 50px 0 30px;
}
#company04 .box_list dl dt {
	width: 160px;
}
#company04 .box_list dl dd {
	width: calc(100% - 170px);
}

#company05 .cont {
	padding-left: 60px;
}
#company05 .cont:not(:first-child) {
	margin-top: 80px;
}
#company05 .cont .left {
	width: 31.14%;
}
#company05 .cont .left .ttl {
	border-bottom: 1px dashed #8889ab;
	color: #8889ab;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 15px;
}
#company05 .cont .left .map_link {
	margin-top: 30px;
}
#company05 .cont .left .map_link a {
	color: #121357;
	text-decoration: underline;
}
#company05 .cont .right {
	width: 60.65%;
}
#company05 .cont .right .map {
	width: 100%;
	height: 480px;
}

.company .page_img {
	width: 100%;
	height: 480px;
	background-image: url(../img/company/company_img.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

@media screen and (max-width: 1000px) {
	#company03 .box_list dl dt {
		width: 200px;
	}
	#company03 .box_list dl dd {
		width: calc(100% - 210px);
	}

	#company04 .left .img {
		margin-left: 0;
	}
	#company05 .cont {
		padding-left: 0;
	}
}

@media screen and (max-width: 768px) {
	#company01 .cont .ttl {
		margin-top: 60px;
	}
	#company01 .cont .txt {
		margin-top: 20px;
	}

	#company02 .cont .ttl {
		margin-top: 60px;
	}

	#company03 .box_list dl dt,
	#company03 .box_list dl dd {
		padding: 5px;
	}
	#company03 .box_list dl dt {
		width: 100%;
	}
	#company03 .box_list dl dd {
		width: 100%;
	}

	#company03 .cont_img {
		margin-top: 40px;
	}

	#company04 ol li {
		text-indent: -20px;
		margin-top: 10px;
		padding-left: 20px;
	}
	#company04 ol li.ttl {
		font-size: 18px;
	}

	#company04 .cont_box {
		margin-top: 40px;
		padding-top: 40px;
	}

	#company04 .left {
		width: 90%;
		margin: 0 auto;
	}
	#company04 .right {
		width: 100%;
		margin-top: 30px;
	}
	#company04 .right .txt {
		margin-top: 10px;
	}

	#company04 .box_list dl dt {
		width: 100px;
	}
	#company04 .box_list dl dd {
		width: calc(100% - 110px);
	}

	#company05 .cont:not(:first-child) {
		margin-top: 40px;
	}

	#company05 .cont .left {
		width: 100%;
	}
	#company05 .cont .left .ttl {
		font-size: 24px;
		margin-bottom: 10px;
		padding-bottom: 5px;
	}
	#company05 .cont .left .map_link {
		margin-top: 10px;
	}
	#company05 .cont .right {
		width: 100%;
		margin-top: 20px;
	}
	#company05 .cont .right .map {
		height: 200px;
	}

	.company .page_img {
		height: 240px;
		background-attachment:unset;
	}
}


/* recruit
------------------------------------------------------------*/
#recruit_top {
	color: #ffffff;
	position: relative;
}

#recruit_top .video_bg {
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}
#recruit_top .video_bg video {
	max-height: 1800px;
}

#recruit_top #p_nav {
	padding-top: 300px;
	position: relative;
}
#recruit_top #p_nav .p_nav {
	color: #ffffff;
	text-align: right;
	padding-left: 15px;
	padding-right: 15px;
}

#recruit_top .cont {
	margin-top: 160px;
	position: relative;
}
#recruit_top .cont .ttl {
	font-size: 32px;
	margin: 40px 0 30px;
}
#recruit_top .cont .txt {
	font-size: 18px;
}

#recruit_top .cont_img {
	margin-top: 60px;
	position: relative;
}
#recruit_top .cont_img .img {
	height: 680px;
	position: relative;
	overflow: hidden;
}
#recruit_top .cont_img .img::before {
	content: '';
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.1);
	animation: reduction 2.5s cubic-bezier(0,1,1,1) forwards .2s;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
#recruit_top .cont_img .img:first-child {
	width: 35.41%;
}
#recruit_top .cont_img .img:first-child::before {
	background-image: url(../img/recruit/recruit_top_img01.jpg);
}
#recruit_top .cont_img .img:last-child {
	width: 62.5%;
}
#recruit_top .cont_img .img:last-child::before {
	background-image: url(../img/recruit/recruit_top_img02.jpg);
}

@media screen and (max-width: 1200px) {
	#recruit_top .cont {
		margin-top: 80px;
	}
	#recruit_top .cont .ttl,
	#recruit_top .cont .txt {
		text-shadow: 1px 1px 1px #121357;
	}

	#recruit_top .cont_img .img {
		height: 540px;
	}
}

@media screen and (max-width: 1000px) {
	#recruit_top #p_nav {
		padding-top: 200px;
	}

	#recruit_top .cont_img .img {
		height: 320px;
	}
}

@media screen and (max-width: 768px) {

	#recruit_top .video_bg {
		overflow: hidden;
	}
	#recruit_top .video_bg video {
		width: 150%;
		margin-left: -25%;
		margin-right: -25%;
	}

	#recruit_top .cont {
		color: #121357;
		margin-top: 20px;
		padding-left: 15px;
		padding-right: 15px;
	}
	#recruit_top .cont .ttl,
	#recruit_top .cont .txt {
		text-shadow: none;
	}
	#recruit_top .cont .ttl {
		font-size: 24px;
		margin: 20px 0 10px;
	}
	#recruit_top .cont .txt {
		font-size: 15px;
	}

	#recruit_top .cont_img {
		flex-flow: column-reverse;
	}
	#recruit_top .cont_img .img {
		height: 240px;
	}
	#recruit_top .cont_img .img::before {
		background-size: cover;
	}
	#recruit_top .cont_img .img:first-child {
		width: 100%;
		margin-top: 10px;
	}
	#recruit_top .cont_img .img:last-child {
		width: 100%;
	}
}


#recruit01 {
	position: relative;
}
#recruit01 .cont {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
}
#recruit01 .cont .ttl {
	min-height: 42px;
	border-left: 2px solid #121357;
	color: #121357;
	padding: 10px 0 10px 20px;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
#recruit01 .cont .ttl span {
	margin-left: 40px;
}
#recruit01 .cont .youtube {
	margin-top: 15px;
}

#recruit02 .cont {
	position: relative;
}
#recruit02 .cont .img {
	text-align: center;
}
#recruit02 .cont .point .ttl {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
}
#recruit02 .cont .point .txt {
	font-size: 18px;
}

#recruit03 {
	background-color: #272936;
	background-image: url(../img/recruit/recruit03_bg.png);
	background-position: left bottom;
	background-repeat: no-repeat;
}
#recruit03 .cont {
	color: #ffffff;
}
#recruit03 .cont .left {
	width: 400px;
	margin-right: 60px;
	padding-left: 60px;
}
#recruit03 .cont .left .ttl {
	font-size: 21px;
}
#recruit03 .cont .right {
	width: calc(100% - 460px);
}
#recruit03 .cont .right ol li {
	font-size: 20px;
	padding-left: 80px;
	position: relative;
}
#recruit03 .cont .right ol li:not(:first-child) {
	margin-top: 20px;
}
#recruit03 .cont .right ol li::before,
#recruit03 .cont .right ol li::after {
	content: '';
	width: 64px;
	height: 32px;
	border-radius: 3px;
	text-align: center;
	line-height: 30px;
	position: absolute;
	left: 0;
	top: -2px;
}
#recruit03 .cont .right ol li::before {
	content: '';
	width: 64px;
	height: 32px;
	border: 1px solid #d0d0dd;
}
#recruit03 .cont .right ol li:first-child::after {
	content: '1';
}
#recruit03 .cont .right ol li:nth-child(2)::after {
	content: '2';
}
#recruit03 .cont .right ol li:nth-child(3)::after {
	content: '3';
}
#recruit03 .cont .right ol li:nth-child(4)::after {
	content: '4';
}
#recruit03 .cont .right ol li:nth-child(5)::after {
	content: '5';
}
#recruit03 .cont .right ol li:nth-child(6)::after {
	content: '6';
}

#recruit03 .cont dl {
	margin-top: 40px;
}
#recruit03 .cont dl dt {
	border-bottom: 1px solid #ffffff;
	color: #0e66a7;
	font-weight: 700;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

#recruit04 .cont {
	margin-bottom: 80px;
}
#recruit04 .cont .left {
	width: 36.2%;
}
#recruit04 .cont .left .img img {
	border-radius: 6px;
}
#recruit04 .cont .right {
	width: 56%;
}
#recruit04 .cont .right .txt {
	max-width: 600px;
}

#recruit04 .cont_box .left {
	width: 200px;
	margin-right: 60px;
}
#recruit04 .cont_box .left .ttl {
	color: #121357;
	font-size: 20px;
	padding-left: 18px;
	position: relative;
}
#recruit04 .cont_box .left .ttl::before {
	content: '';
	width: 10px;
	height: 10px;
	background-color: #121357;
	border-radius: 5px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#recruit04 .cont_box .right {
	width: calc(100% - 260px);
}

#recruit04 .cont_box .right table th,
#recruit04 .cont_box .right table td {
	border-right: 1px solid #d0d0dd;
	padding: 20px;
}
#recruit04 .cont_box .right table th {
	color: #121357;
	border-bottom: 1px solid #ffffff;
	font-weight: 700;
}
#recruit04 .cont_box .right table tr:first-child th {
	background-color: #f3f7fb;
}
#recruit04 .cont_box .right table tr:nth-child(2) th {
	background-color: #e7f0f6;
}
#recruit04 .cont_box .right table tr:nth-child(3) th {
	background-color: #dbe8f2;
}
#recruit04 .cont_box .right table tr:nth-child(4) th {
	background-color: #cfe0ed;
}
#recruit04 .cont_box .right table tr:nth-child(5) th {
	background-color: #c3d9e9;
}
#recruit04 .cont_box .right table tr:nth-child(6) th {
	background-color: #b7d1e5;
}

#recruit04 .cont_box .right table td {
	border-bottom: 1px solid #d0d0dd;
}
#recruit04 .cont_box .right table tr:first-child td {
	border-top: 1px solid #d0d0dd;
}
#recruit04 .cont_box .right table td p {
	font-weight: 700;
}
#recruit04 .cont_box .right table td dl:first-of-type {
	margin-top: 15px;
}

#recruit04 .cont_ttl {
	font-size: 20px;
	margin: 60px 0 10px;
}
#recruit04 .cont_box.line {
	border: 1px solid #d0d0dd;
	border-radius: 6px;
	padding: 20px;
}
#recruit04 .cont_box.line .ttl {
	max-width: 780px;
	font-weight: 700;
	margin: 0 auto;
}
#recruit04 .cont_box.line .txt {
	max-width: 780px;
	margin: 10px auto 0;
}

#recruit06 ul li {
	width: 49.21%;
	min-height: 80px;
	border: 1px solid #d0d0dd;
	border-radius: 3px;
	padding-left: 45px;
	position: relative;
}
#recruit06 ul li::before {
	content: '';
	width: 30px;
	height: 4px;
	background-color: #121357;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#recruit06 ul li:nth-child(n+3) {
	margin-top: 5px;
}
#recruit06 ul li .box {
	color: #121357;
	font-size: 20px;
}
#recruit06 ul li .box span {
	font-size: 16px;
}

#recruit07 {
	background-color: #0e66a7;
}
#recruit07 section {
	padding-left: 0;
	padding-right: 0;
}

.comment_slide {
	margin-top: 120px;
}
.comment_slide li {
	width: 500px;
	background-color: #ffffff;
	border-radius: 6px;
	margin: 0 5px;
}
.comment_slide li .slide_question {
	min-height: 112px;
	color: #121357;
	font-size: 20px;
	padding: 20px 30px 20px 120px;
	position: relative;
}
.comment_slide li .slide_question::before,
.comment_slide li .slide_question::after {
	content: '';
	width: 72px;
	height: 72px;
	position: absolute;
	left: 30px;
	top: 20px;
}
.comment_slide li .slide_question::before {
	border-radius: 36px;
}
.comment_slide li .slide_question::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 36px auto;
}

.comment_slide li:nth-child(3n) .slide_question::before {
	background-color: #e7e7ee;
}
.comment_slide li:nth-child(3n+1) .slide_question::before {
	background-color: #f4dae1;
}
.comment_slide li:nth-child(3n+2) .slide_question::before {
	background-color: #c2e5e1;
}
.comment_slide li:nth-child(3n) .slide_question::after {
	background-image: url(../img/recruit/recruit07_q01.svg);
}
.comment_slide li:nth-child(3n+1) .slide_question::after {
	background-image: url(../img/recruit/recruit07_q02.svg);
}
.comment_slide li:nth-child(3n+2) .slide_question::after {
	background-image: url(../img/recruit/recruit07_q03.svg);
}

.comment_slide li .slide_answer {
	width: calc(100% - 60px);
	border-top: 1px dashed #d0d0dd;
	margin: 0 auto;
	padding: 30px 0;
}

.comment_slide li .slide_info {
	color: #ffffff;
	font-size: 15px;
	border-radius: 0 0 6px 6px;
	padding: 20px 30px 30px;
}
.comment_slide li:nth-child(3n) .slide_info {
	background-color: #121357;
}
.comment_slide li:nth-child(3n+1) .slide_info {
	background-color: #bd234a;
}
.comment_slide li:nth-child(3n+2) .slide_info {
	background-color: #139b8d;
}
.comment_slide li .slide_info span {
	font-size: 24px;
	font-weight: 700;
}
.arrow_prev,
.arrow_next {
	position: absolute;
	bottom: calc(100% + 20px);
}
.arrow_prev {
	right: 60px;
}
.arrow_next {
	right: 0;
}

#recruit_slide {
	background: linear-gradient(180deg, #0e66a7 120px, transparent 120px);
}
#recruit_slide .recruit_slide li {
	margin: 0 2.5px;
}

#recruit08 .cont.flow dl dd .txt {
	max-width: 640px;
}

#recruit08 .cont_box {
	max-width: 690px;
	margin-top: 20px;
}
#recruit08 .cont_box .box {
	width: 49.27%;
	padding: 20px;
}
#recruit08 .cont_box .box:first-child {
	background-color: #e7e7ee;
}
#recruit08 .cont_box .box:last-child {
	background-color: #e7f0f6;
}
#recruit08 .cont_box .box .box_ttl {
	width: 100%;
	max-width: 260px;
	background-color: #ffffff;
	text-align: center;
	margin: 0 auto;
	padding: 10px;
}
#recruit08 .cont_box .box .box_txt {
	width: 100%;
	max-width: 260px;
	margin: 20px auto 0;
}
#recruit08 .cont_box .box:last-child .box_txt a {
	color: #0e66a7;
	font-weight: 700;
	text-decoration: underline;
}

@media screen and (max-width: 1000px) {
	#recruit03 .cont .left {
		width: 100%;
		margin-right: 0;
		padding-left: 0;
	}

	#recruit03 .cont .right {
		width: 100%;
		margin-top: 30px;
	}

	#recruit07 section {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media screen and (max-width: 768px) {
	#recruit01 .cont .ttl img {
		width: 180px;
	}
	#recruit01 .cont .ttl span {
		display: block;
		width: 100%;
		margin-left: 0;
		margin-top: 5px;
	}

	#recruit02 .cont .point .txt {
		font-size: 16px;
	}

	#recruit03 .cont .left .ttl {
		font-size: 18px;
	}
	#recruit03 .cont .right ol li {
		font-size: 15px;
		padding-left: 60px;
	}
	#recruit03 .cont .right ol li::before,
	#recruit03 .cont .right ol li::after {
		width: 48px;
		height: 24px;
	}
	#recruit03 .cont .right ol li::after {
		line-height: 24px;
		left: 0;
		top: -2px;
	}

	#recruit04 .cont {
		margin-bottom: 40px;
	}
	#recruit04 .cont .left {
		width: 100%;
	}

	#recruit04 .cont .right {
		width: 100%;
		margin-top: 10px;
	}

	#recruit04 .cont_box .left {
		width: 100%;
		margin-right: 0;
	}

	#recruit04 .cont_box .right {
		width: 100%;
		margin-top: 20px;
	}

	#recruit04 .cont_box .right table tr {
		display: flex;
		flex-wrap: wrap;
	}
	#recruit04 .cont_box .right table th,
	#recruit04 .cont_box .right table td {
		width: 100%;
		border-right: none;
		padding: 5px 10px;
	}
	#recruit04 .cont_box .right table tr:first-child td {
		border-top: none;
	}
	#recruit04 .cont_box .right table tr:not(:last-child) td {
		border-bottom: none;
	}

	#recruit06 ul li {
		width: 100%;
		min-height: 60px;
	}
	#recruit06 ul li:nth-child(n+2) {
		margin-top: 5px;
	}
	#recruit06 ul li .box {
		font-size: 16px;
	}

	.comment_slide li .slide_question {
		font-size: 18px;
	}
	.comment_slide li .slide_info span {
		font-size: 21px;
	}
}

@media screen and (max-width: 580px) {
	#recruit08 .cont_box .box {
		width: 100%;
	}
	#recruit08 .cont_box .box:not(:first-child) {
		margin-top: 15px;
	}
}


/* contact
------------------------------------------------------------*/
#contact01 .cont .left {
	width: calc(100% - 520px);
	max-width: 510px;
}
#contact01 .cont .right .box {
	width: 160px;
}
#contact01 .cont .right .box .num {
	width: 100%;
	height: 60px;
	background-position: center bottom 20px;
	background-repeat: no-repeat;
	background-size: auto 39px;
	padding-bottom: 20px;
}
#contact01 .cont .right .box:first-child .num {
	background-image: url(../img/contact/contact01_num01.svg);
}
#contact01 .cont .right .box.active:first-child .num {
	background-image: url(../img/contact/contact01_num01_on.svg);
}
#contact01 .cont .right .box:nth-child(2) .num {
	background-image: url(../img/contact/contact01_num02.svg);
}
#contact01 .cont .right .box.active:nth-child(2) .num {
	background-image: url(../img/contact/contact01_num02_on.svg);
}
#contact01 .cont .right .box:nth-child(3) .num {
	background-image: url(../img/contact/contact01_num03.svg);
}
#contact01 .cont .right .box.active:nth-child(3) .num {
	background-image: url(../img/contact/contact01_num03_on.svg);
}
#contact01 .cont .right .box .txt {
	border-top: 1px dashed #d0d0dd;
	color: #d0d0dd;
	text-align: center;
	padding-top: 20px;
}
#contact01 .cont .right .box.active .txt {
	border-top: 1px solid #121357;
	color: #121357;
}

#contact01 .note {
	border-bottom: 1px solid #d0d0dd;
	margin-top: 60px;
	margin-bottom: 40px;
	padding-bottom: 20px;
}

.required {
	display: inline-block;
	width: 50px;
	height: 22px;
	background-color: #0e66a7;
	border-radius: 3px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	line-height: 20px;
}
.form .required {
	margin-left: 15px;
}

.form dl,
.form dl dt,
.form dl dd {
	width: 100%;
}
.form dl:not(:first-child) {
	margin-top: 30px;
}
.form dl dd {
	margin-top: 10px;
}
.form dl dd .radio,
.form dl dd .check {
	color: #8889ab;
	font-weight: 700;
	padding-left: 10px;
}
.form dl dd .pref {
	margin: 5px 0;
}

.input_text,
.textarea {
	width: 100%;
	border: 1px solid #d0d0dd;
	padding: 10px;
}
.input_text {
	height: 50px;
}
.input_text.ws {
	max-width: 280px;
}
.input_text::placeholder {
   color: #d0d0dd;
}
.textarea {
	height: 280px;
}

.form .radio:not(:first-child) {
	margin-top: 10px;
}

input[type=radio],
input[type=checkbox] {
	transform: scale(1.4);
}

.form_txt {
	margin-top: 40px;
}
.form_txt a {
	color: #3d3f4a;
	text-decoration: underline;
}

.form_btn {
	margin-top: 60px;
}
.form_btn .btn {
	min-width: 178px;
	height: 48px;
	margin: 10px 20px;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}
.form_btn .btn a,
.form_btn .btn input {
	color: #3d3f4a;
}
.form_btn .btn .circle {
	background-color: rgba(18, 19, 87, 0.5);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.form_btn input {
	width: 100%;
	height: 48px;
	background-color: transparent;
	border: none;
	font-size: 22px;
	font-weight: 700;
	padding-left: 70px;
	cursor: pointer;
}
.form_btn .btn:hover .circle {
	background-position: left calc(50% + 5px) center;
}
	
.thanks #contact01 .form {
	margin-top: 80px;
}

@media screen and (max-width: 1000px) {
	#contact01 .cont .left {
		width: 100%;
		max-width: 100%;
	}
	#contact01 .cont .right {
		width: 100%;
		margin-top: 60px;
		justify-content: center;
	}

	.thanks #contact01 .cont .right {
		margin-top: 0;
	}
}

@media screen and (max-width: 768px) {
	#contact01 .cont .right .box {
		width: 100px;
	}

	#contact01 .cont .right .box .num {
		background-size: auto 24px;
	}

	.form_btn input {
		font-size: 18px;
	}
}


/* privacy policy
------------------------------------------------------------*/
#privacy01 dl:not(:first-child) {
	margin-top: 40px;
}
#privacy01 dl dt {
	font-weight: 700;
}
#privacy01 dl dd ol li {
	text-indent: -1em;
	padding-left: 1em;
}














