﻿@charset "utf-8";
@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");
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;500;600;700;800&display=swap');

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  全般設定
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
body {
	font-family: "Sen", sans-serif;
	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: 15px;
	color: #2c2323;
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
}
#wrapper {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}
#wrapper::before {
	content: '';
	width: 100%;
	height: 1440px;
	background: linear-gradient(-135deg, rgba(84, 190, 165, 0.2) 5%, rgba(255, 255, 255, 0.2) 25%);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
* { box-sizing: border-box; }

.lh175 {
	line-height: 1.75;
}
.lh200 {
	line-height: 2;
}

.br10 {
	border-radius: 10px;
}

.center {
	text-align: center;
}

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

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

.ai_c {
	align-items: center;
}

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

.w1760,
.w1700,
.w1600,
.w1440,
.w1400,
.w1200,
.w1100,
.w1000,
.w580,
.w480 {
	width: 100%;
	margin: 0 auto;
}
.w1760 {
	max-width: 1760px;
}
.w1700 {
	max-width: 1700px;
}
.w1600 {
	max-width: 1600px;
}
.w1440 {
	max-width: 1440px;
}
.w1400 {
	max-width: 1400px;
}
.w1200 {
	max-width: 1200px;
}
.w1100 {
	max-width: 1100px;
}
.w1000 {
	max-width: 1000px;
}
.w580 {
	max-width: 580px;
}
.w480 {
	max-width: 480px;
}

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

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

.dot {
	text-indent: -1em;
	padding-left: 1em;
}


/* header
------------------------------------------------------------*/
header {
	width: 100%;
	position: absolute;
	top: 0;
}

.header {
	height: 140px;
	padding: 0 20px;
	position: relative;
}
.header::before {
	content: '';
	width: calc(100% - 30px);
	max-width: 1620px;
	height: 1px;
	background-color: #a2a2a7;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.header .inner {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 768px) {
	.header {
		height: 60px;
		padding: 0;
	}
	.header::before {
		width: calc(100% - 10px);
	}

	.header .inner {
		padding-left: 10px;
	}
	
	.header .logo img {
		width: 220px;
	}
}

@media screen and (min-width: 769px) {
	.sp_menu {
		display: none;
	}

	nav {
		height: 100%;
	}
	nav ul {
		height: 100%;
		padding-left: 30px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	nav ul li {
		position: relative;
	}
	nav ul li:not(:first-child) {
		margin-left: 30px;
	}

	nav ul li {
		position: relative;
		z-index: 2;
	}
	nav ul li a {
		color: #464650;
		font-weight: 700;
	}

	nav ul li a:hover,
	.top nav ul li:first-child a,
	.business nav ul li:nth-child(2) a,
	.works nav ul li:nth-child(3) a,
	.company nav ul li:nth-child(4) a,
	.csr nav ul li:nth-child(5) a,
	.recruit nav ul li:nth-child(6) a {
		color: #54bea5;
	}

	nav ul li.contact {
		width: 140px;
		height: 40px;
	}
	nav ul li.contact a {
		width: 100%;
		height: 100%;
		background-color: #2c2323;
		border-radius: 20px;
		color: #ffffff;
		font-weight: 500;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	nav ul li.contact a:hover,
	.contact nav ul li.contact a {
		background-color: #54bea5;
	}

	.nav_sub {
		display: none;
		width: 160px;
		background-color: #ffffff;
		padding-top: 60px;
		position: absolute;
		left: 50%;
   		top: 22px;
	    transform: translate(-50%, 0);
		z-index: 1;
	}
	nav ul li:hover .nav_sub {
		display: block;
	}
	.nav_sub a {
		display: block;
		width: 100%;
		background-color: #54bea5;
		color: #ffffff;
		font-size: 15px;
		padding: 10px 20px;
	}
	.nav_sub a:hover {
		background-color: #d4d4d4;
		color: #ffffff;
	}
	.nav_sub .sub:not(:last-child) a {
		border-bottom: 1px dashed #f2f2f2;
	}
}

@media screen and (max-width: 1100px) and (min-width: 769px) {
	.header .inner {
		align-content: center;
	}
	.header .logo img {
		width: 264px;
	} 

	nav {
		width: 100%;
		height: auto;
		margin-top: 10px;
	}
	nav ul {
		height: auto;
		padding-left: 0;
		justify-content: center;
	}

}

@media screen and (max-width: 768px) {
	.sp_menu {
		display: block;
		width: 42px;
		height: 42px;
		text-align: center;
		position: absolute;
		right: 10px;
		top: 8px;
		z-index: 9;
		cursor: pointer;
	}
    .sp_menu span {
	    display: block;
		width: 30px;
		height: 2px;
		background-color: #1a1a1a;
		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_menu span:nth-child(1) { top: 10px; }
  	.sp_menu span:nth-child(2) { top: 20px; }
  	.sp_menu span:nth-child(3) { top: 30px; }
  
    /* スマホメニューを開いてる時のボタン */
    .sp_menu.active span:nth-child(1) {
		left: 6px;
		top: 16px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
  	}
    .sp_menu.active span:nth-child(2),
  	.sp_menu.active span:nth-child(3) {
		top: 16px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
  	}

    nav {
		width: 100%;
		max-width: 280px;
		height: auto;
		background-color: #54bea5;
		position: fixed;
		right: 0;
		top: 0;
		z-index : 2;
		transform: translateX(100%);
		transition: all 0.6s;
    }
    nav ul {
		width: 100%;
		margin: 0 auto;
		padding: 60px 15px 5px;
	}
    nav ul li {
		width: 100%;
		transition: .4s all;
    }
    nav ul li a {
	    display: block;
		color: #f2f2f2;
	    padding: 8px 10px;
    }
	nav ul li:not(:last-child) a,
	nav ul li .nav_sub:not(:last-child) a {
		border-bottom: 1px dashed #f2f2f2;
	}
	nav ul li .nav_sub a {
		padding-left: calc(15px + 1em);
	}
	nav ul li a br {
		display: none;
	}

    /* クリックでjQueryで追加・削除 */
	.sp_menu.active span {
		background-color: #f2f2f2;
	}

    nav.active {
		display: block;
	    opacity: 1;
	    transform: translateX(0%);
    }

}

@media screen and (max-width: 480px) {
    nav {
		max-width: 100%;
	}
}


/* footer
------------------------------------------------------------*/
#footer {
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, rgba(84, 190, 165, 0.2) 33%, rgba(29, 130, 220, 0.2) 100%);
}

.footer_contact {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 90px 15px 180px;
	position: relative;
}
.footer_contact:before {
	content: '';
	width: calc(100% - 80px);
	max-width: 1319px;
	height: 170px;
	background-image: url(../img/common/f_contact_txt_contactus.svg);
	background-position: bottom left;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	left: 40px;
	bottom: 70px;
}
.footer_contact .inner {
	position: relative;
}

.footer_contact .ttl {
	font-size: 26px;
	text-align: center;
	margin-bottom: 60px;
}

.footer_contact .left,
.footer_contact .right {
	border-radius: 20px;
}
.footer_contact .left {
	width: 36.25%;
	max-width: 580px;
	background-color: #54bea5;
}
.footer_contact .left .left_ttl {
	background-color: #76cbb7;
	border-radius: 20px 20px 0 0;
	text-align: center;
	padding: 25px 0;
}
.footer_contact .left .left_cont {
	text-align: center;
	padding: 60px 40px 100px;
}
.footer_contact .left .tel_txt {
	color: #ffffff;
	margin-top: 25px;
}

.footer_contact .right {
	width: 64%;
	max-width: calc(63.75% - 15px);
	background-color: #ffffff;
	align-content: space-between;
}
.footer_contact .right {
	padding: 25px 40px;
}
.footer_contact .right .right_ttl {
	width: 100%;
	text-align: right;
}
.footer_contact .right .right_cont {
	width: 100%;
}
.footer_contact .right .link_ttl {
	border-bottom: 1px solid #a2a2a7;
	padding: 20px 10px 20px 20px;
}
.footer_contact .right .link_btn {
	padding: 20px 10px;
}
.footer_contact .right .link_btn a {
	display: inline-block;
	font-weight: 700;
	line-height: 34px;
	padding-left: 46px;
	position: relative;
}
.footer_contact .right .link_btn a::before,
.footer_contact .right .link_btn a::after {
	content: '';
	width: 34px;
	height: 34px;
	position: absolute;
	left: 0;
	top: 0;
}
.footer_contact .right .link_btn a::before {
	background-color: #54bea5;
	border-radius: 17px;
}
.footer_contact .right .link_btn a::after {
	background-image: url(../img/common/f_contact_sign.svg);
	background-position: left 15px center;
	background-repeat: no-repeat;
	background-size: 6px auto;
}

@media screen and (max-width: 1000px) {
	.footer_contact .cont {
		justify-content: center;
	}

	.footer_contact .left {
		width: 100%;

	}
	.footer_contact .right {
		width: 100%;
		max-width: 580px;
		margin-top: 20px;
	}
}

@media screen and (max-width: 768px) {
	.footer_contact {
		padding: 60px 15px 100px;
	}
	.footer_contact::before {
		bottom: 60px;
	}

	.footer_contact .ttl {
		font-size: 21px;
		margin-bottom: 40px;
	}

	.footer_contact .left .left_ttl {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.footer_contact .left .left_cont {
		padding: 40px 20px 60px;
	}
	.footer_contact .left .left_cont .tel_num img {
		width: 240px;
	}
	
	.footer_contact .right {
		padding-left: 20px;
		padding-right: 20px;
	}
}


.footer {
	padding: 50px 15px 90px;
	position: relative;
}
.footer::before {
	content: '';
	width: calc(100% - 30px);
	max-width: 1600px;
	height: 1px;
	background-color: #a2a2a7;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}

.footer .cont {
	color: #464650;
	align-items: flex-end;
}

.footer .left .info {
	margin-top: 20px;
}
.footer .left .sns {
	margin-top: 50px;
}
.footer .left .sns .instagram {
	margin-top: 10px;
}

.footer .right {
	width: calc(100% - 450px);
	justify-content: flex-end;
}

.footer .right #f_nav ul li:not(:first-child) {
	margin-left: 30px;
}
.footer .right #f_nav ul li a {
	font-weight: 700;
}
.footer .right .link_nav {
	width: 100%;
	text-align: right;
	margin-top: 40px;
}
.footer .right .link_nav a {
	color: #a2a2a7;
}

.footer .right .link_img {
	width: 100%;
	text-align: right;
	margin-top: 60px;
}

#copyright {
	width: 100%;
	height: 80px;
	background-color: #54bea5;
}
#copyright .copyright {
	color: #ffffff;
}

#pagetop {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 9;
}

@media screen and (max-width: 1100px) {
	.footer #f_nav,
	.footer .right .link_nav {
		display: none
	}
}

@media screen and (max-width: 768px) {
	.footer .cont {
		justify-content: center;
	}

	.footer .left .logo img {
		width: 300px;
	}
	.footer .right {
		width: 100%;
		max-width: 300px;
	}
	.footer .right .link_img {
		text-align: left;
		margin-top: 20px;
	}

	#copyright .copyright {
		padding-left: 20px;
		padding-right: 20px;
	}

	#pagetop {
		width: 50px;
		bottom: 60px;
	}
}


/* main　
------------------------------------------------------------*/
main {
	padding-top: 140px;
}

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

}


article {
	padding-left: 15px;
	padding-right: 15px;
}
article.mt {
	margin-top: 80px;
}

section.pt {
	padding-top: 80px;
}
section.pb {
	padding-bottom: 80px;
}
section.pt_first {
	padding-top: 160px;
}
section.pb_last {
	padding-bottom: 160px;
}

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

#page_ttl {
	margin-top: 30px;
	position: relative;
}
.page_ttl {
	padding-left: 15px;
	padding-right: 15px;
}
.page_ttl .ttl {
	padding-left: 60px;
}
.page_ttl .ttl .ja {
	background-position: left top 10px;
	background-repeat: no-repeat;
	background-size: auto 10px;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-left: 30px;
}
.business .page_ttl .ttl .ja {
	background-image: url(../img/business/02.svg);
}
.works .page_ttl .ttl .ja {
	background-image: url(../img/works/03.svg);
}
.company .page_ttl .ttl .ja {
	background-image: url(../img/company/04.svg);
}
.csr .page_ttl .ttl .ja {
	background-image: url(../img/csr/05.svg);
}
.recruit .page_ttl .ttl .ja {
	background-image: url(../img/recruit/06.svg);
}
.contact .page_ttl .ttl .ja {
	background-image: url(../img/contact/07.svg);
}
.privacy .page_ttl .ttl .ja {
	background-image: url(../img/privacy/08.svg);
}

.page_ttl .img_base {
	width: calc(100% - 575px);
	max-width: 1060px;
	height: 580px;
	padding-right: 50px;
	position: relative;
}
.page_ttl.general .img_base {
	height: 580px;
}

.page_ttl .img_base::before,
.page_ttl .img_base::after {
	content: '';
	width: 100px;
	height: 100%;
	border-radius: 0 40px 40px 0;
	position: absolute;
	top: 0;
}
.page_ttl .img_base::before {
	background-color: #54bea5;
	right: 0;
}
.page_ttl .img_base::after {
	background-color: #1d82dc;
	right: 25px;
}

.page_ttl .img {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 40px;
	position: relative;
	z-index: 1;
}
.page_ttl.general .img {
	background-position: right center;
}
.business .page_ttl .img {
	background-image: url(../img/business/business_page_img.jpg);
}
.works .page_ttl .img {
	background-image: url(../img/works/works_page_img.jpg);
}
.company .page_ttl .img {
	background-image: url(../img/company/company_page_img.jpg);
}
.csr .page_ttl .img {
	background-image: url(../img/csr/csr_page_img.jpg);
}
.recruit .page_ttl .img {
	background-image: url(../img/recruit/recruit_page_img.jpg);
}
.page_ttl.general .img {
	background-image: url(../img/common/general_page_img.jpg);
}
.page_ttl .img::before {
	content: '';
	width: 275px;
	height: 205px;
	background-image: url(../img/common/page_ttl_frame.png);
	background-position: left bottom;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	bottom: 0;
}

@media screen and (max-width: 1400px) {
	.page_ttl .ttl {
		padding-left: 0;
	}

	.page_ttl .img_base {
		width: calc(100% - 515px);
		height: 430px;
	}
}

@media screen and (max-width: 1100px) {
	.page_ttl {
		justify-content: center;
	}
	.page_ttl .img_base {
		width: 100%;
		height: 240px;
		margin-top: 30px;
	}
    .page_ttl.general .img_base {
		height: 240px;
	}

	.page_ttl .img::before {
		content: none;
	}
}

@media screen and (max-width: 768px) {
	.page_ttl {
		padding-left: 0;
		padding-right: 0;
	}
	.page_ttl .ttl {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.page_ttl .img {
		border-radius: 0;
	}

	.page_ttl .ttl .ja {
		font-size: 24px;
		margin-bottom: 5px;
	}
	.page_ttl .ttl .en {
		text-align: right;
		margin-top: -5px;
	}
	.business .page_ttl .ttl .en img {
		width: 248px;
	}
	.works .page_ttl .ttl .en img {
		width: 154px;
	}
	.company .page_ttl .ttl .en img {
		width: 200px;
	}
	.csr .page_ttl .ttl .en img {
		width: 218px;
	}
	.recruit .page_ttl .ttl .en img {
		width: 169px;
	}
	.contact .page_ttl .ttl .en img {
		width: 187px;
	}
	.privacy .page_ttl .ttl .en img {
		width: 143px;
	}

	.page_ttl .img_base {
		width: 100%;
		height: 200px;
		margin-top: 10px;
		padding-right: 0;
	}
	.page_ttl.general .img_base {
		height: 200px;
	}

}

.p_nav {
	height: 24px;
	font-size: 14px;
	line-height: 24px;
	position: absolute;
	left: 15px;
	bottom: 20px;
}

.ttl_t .en::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #54bea5;
	border-radius: 4px;
	margin-right: 10px;
}
.ttl_t .ja {
	color: #a2a2a7;
	font-size: 22px;
	margin-top: 5px;
}

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

}

.ttl_s {
	text-align: center;
	margin-bottom: 50px;
}
.ttl_s .ja {
	font-size: 26px;
	margin-top: 5px;
}

.ttl_s.line {
	border-bottom: 1px solid #a2a2a7;
	padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.ttl_s {
		margin-bottom: 30px;
	}
	.ttl_s .ja {
		font-size: 20px;
	}

}


table.table01 {
	width: 100%;
}
table.table01 th,
table.table01 td {
	font-size: 16px;
	vertical-align: top;
	padding: 15px 30px;
}

table.table01 th {
	width: 300px;
	border-bottom: 1px solid #a9ded2;
	color: #54bea5;
	font-weight: 700;
}
table.table01 td {
	border-bottom: 1px solid #dadadc;
}
table.table01 tr:first-child th {
	border-top: 1px solid #a9ded2;
}
table.table01 tr:first-child td {
	border-top: 1px solid #dadadc;
}

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

	table.table01 tr:first-child th {
		border-top: 1px solid #dadadc;
	}
	table.table01 tr:first-child td {
		border-top: none;
	}
}
	

/* top
------------------------------------------------------------*/
.top main {
	background-image: url(../img/top/top_bg.png);
	background-position: center top 700px;
	background-repeat: no-repeat;
}

#main_img .inner {
	padding: 60px 70px 60px 15px;
	position: relative;
}

#main_img .cont {
	padding-top: 130px;
	position: relative;
}
#main_img .cont .box {
	position: absolute;
	left: 60px;
	top: 72px;
	z-index: 3;
}

#main_img .main_txt {
	margin-top: 20px;
}
#main_img .main_bnr {
	position: absolute;
	right: 0;
	top: -20px;
}

.main_slide {
	width: 100%;
	max-width: 1700px;
	margin: 30px 0 0 auto;
	position: relative;
	z-index: 1;
}
.main_slide li {
	height: 900px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 30px;
}
.main_slide li:first-child {
	background-image: url(../img/top/main_slide01.jpg);
}
.main_slide li:nth-child(2) {
	background-image: url(../img/top/main_slide02.jpg);
}
.main_slide li:nth-child(3) {
	background-image: url(../img/top/main_slide03.jpg);
}
.main_slide .slide_frame {
	width: 100%;
	height: 100%;
	background-image: url(../img/top/slide_frame_lt.png), url(../img/top/slide_frame_rb.png);
	background-position: left top, right bottom;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
}
.slick-num {
	font-family: "Sen", sans-serif;
	width: 200px;
	height: 100px;
	background: linear-gradient(45deg, rgba(84, 190, 165, 0.6) 20%, rgba(29, 130, 220, 0.6) 70%);
	border-radius: 20px 0 0 0;
	color: #dadadc;
	position: absolute;
	right: 0;
	top: 10%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.slick-num .now-count {
	color: #ffffff;
	font-size: 32px;
	font-weight: 700;
}
.slick-num .all-count {
	font-size: 20px;
}

#main_img .main_img {
	position: absolute;
	right: 60px;
	bottom: -100px;
	z-index: 3;
}

#main_img .info {
	width: 60px;
	text-align: center;
	position: absolute;
	right: 5px;
	top: 20%;
}
#main_img .info .tel {
	padding-bottom: 50px;
	position: relative;
}
#main_img .info .tel::before {
	content: '';
	width: 50px;
	height: 1px;
	background-color: #a2a2a7;
	position: absolute;
	bottom: 0;
	right: 5px;
}
#main_img .info .instagram {
	margin-top: 40px;
}

#top01 .cont  {
	margin-top: 60px;
}
#top01 .cont .box {
	width: 41.42%;
}
#top01 .cont .ttl {
	font-size: 36px;
	font-weight: 700;
}
#top01 .cont .txt {
	margin-top: 40px;
}

#top01 .cont .movie {
	width: 48.57%;
	background-color: #ffffff;
	border-radius: 20px;
	padding: 20px 30px;
}
#top01 .cont .movie video {
	width: 100%;
}

#top02 {
	background-image: url(../img/top/top02_bg.png);
	background-position: center bottom 120px;
	background-repeat: no-repeat;
	position: relative;
}
#top02::before,
#top02::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
}
#top02::before {
	width: 50%;
	height: 860px;
	background: linear-gradient(45deg, rgba(84, 190, 165, 0.2) 20%, rgba(29, 130, 220, 0.2) 70%);
	border-radius: 0 40px 0 0;
	z-index: 0;
}
#top02::after {
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #ffffff 0%, #ececed 100%);
	z-index: -1;
}
#top02 section {
	position: relative;
}
#top02 .cont .box {
	width: calc(100% - 205px);
	position: relative;
}
#top02 .cont .box .ttl {
	font-size: 34px;
	font-weight: 700;
}

#top02 .cont .box .txt {
	max-width: 990px;
	margin-top: 20px;
}

#top02 .cont ul {
	margin-top: 80px;
}
#top02 .cont ul li {
	background-color: #ffffff;
	border-radius: 20px;
	margin-top: 20px;
}
#top02 .cont ul li a {
	width: 100%;
	min-height: 200px;
}
#top02 .cont ul li .link_box {
	width: calc(100% - 300px);
	background-image: url(../img/top/top03_sign.svg);
	background-position: right 25px center;
	background-repeat: no-repeat;
	background-size: 6px auto;
	padding: 25px 50px 25px 75px;
	position: relative;
}
#top02 .cont ul li .num {
	width: 30px;
	height: 90px;
	background-color: #464650;
	border-radius: 0 5px 0 5px;
	text-align: center;
	padding-top: 10px;
	position: absolute;
	left: 25px;
	top: 25px;
}
#top02 .cont ul li .num img {
	height: 12px;
}
#top02 .cont ul li .ttl {
	color: #54bea5;
	font-size: 26px;
}
#top02 .cont ul li .img {
	width: 300px;
	border-radius: 0 20px 20px 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#top02 .cont ul li:first-child .img {
	background-image: url(../img/top/top02_img01.jpg);
}
#top02 .cont ul li:nth-child(2) .img {
	background-image: url(../img/top/top02_img02.jpg);
}
#top02 .cont ul li:nth-child(3) .img {
	background-image: url(../img/top/top02_img03.jpg);
}
#top02 .cont ul li:nth-child(4) .img {
	background-image: url(../img/top/top02_img04.jpg);
}

#top02 .cont .box .box_cont {
	margin-top: 160px;
}
#top02 .cont .box .box_cont .ttl {
	width: 520px;
	margin-right: 50px;
	padding-left: 100px;
}
#top02 .cont .box .box_cont .txt {
	width: calc(100% - 570px);
	max-width: 460px;
}

#top02 .cont .box .link .ttl {
	font-size: 15px;
}
#top02 .cont .box .link {
	max-width: 1200px;
	border-top: 1px solid #a2a2a7;
	border-bottom: 1px solid #a2a2a7;
	margin-top: 100px;
}
#top02 .cont .box .link a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 20px 100px;
	position: relative;
}
#top02 .cont .box .link a::before,
#top02 .cont .box .link a::after {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 140px;
	top: 0;
	bottom: 0;
	margin: auto;
}
#top02 .cont .box .link a::before {
	background-color: #ffffff;
	border-radius: 20px;
}
#top02 .cont .box .link a::after {
	background-image: url(../img/top/top03_sign.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 6px auto;

}

#top03 .cont {
	background-image: url(../img/top/top03_img.png);
	background-position: right bottom 20px;
	background-repeat: no-repeat;
	padding-bottom: 320px;
}

#top03 .cont .box {
	width: 48.23%;
}
#top03 .cont .box .img {
	margin-bottom: 10px;
}
#top03 a {
	display: block;
	padding: 10px 30px;
}
#top03 a .ttl_t {
	background-image: url(../img/top/top03_sign.svg);
	background-position: right 20px center;
	background-repeat: no-repeat;
	background-size: 6px auto;
}
#top03 a .ttl_t .ja {
	margin-top: 0;
}

#top04 {
	background-image: url(../img/top/top04_bg.png);
	background-position: right top;
	background-repeat: no-repeat;
}
#top04 section {
	padding-top: 30px;
	padding-bottom: 120px;
}
#top04 .ttl_t .en::before {
	background-color: #0450ab;
} 
#top04 .cont {
	background-image: url(../img/top/top04_txt.svg);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 618px auto;
	margin-top: 60px;
	padding: 35px 0 0 15px;
}
#top04 .cont .ttl {
	font-size: 34px;
	font-weight: 700;
}
#top04 .cont .txt {
	max-width: 480px;
	margin-top: 20px;
}
#top04 .top_slide {
	width: calc(100% + 30px);
	margin-left: -15px;
	margin-top: 200px;
}
#top04 .top_slide li {
	margin: 0 5px;
}

@media screen and (max-width: 1400px) {
	#main_img .cont .box {
		top: 130px;
	}

	#top02 .cont .box .box_cont .ttl {
		width: 415px;
		margin-right: 40px;
		padding-left: 0;
	}
	#top02 .cont .box .box_cont .txt {
		width: calc(100% - 455px);
		max-width: 100%;
	}

	#top04 {
		background-position: right top 20%;
		background-size: 45% auto;
	}
	#top04 .top_slide {
		margin-top: 60px;
	}
}

@media screen and (max-width: 1200px) {
	.slick-num {
		top: 24%;
	}
}

@media screen and (max-width: 1100px) {
	#main_img .main_bnr {
		display: none;
	}
	#main_img .cont {
		padding-top: 0;
	}
	#main_img .cont .box {
		position: static;
	}

	.main_slide .slide_frame {
		background-image: none;
	}
	.main_slide li {
		height: 640px;
	}

	.slick-num {
		width: 140px;
		height: 80px;
	}

	#main_img .main_img {
		text-align: right;
		margin-top: 20px;
		position: static;
	}
	#main_img .main_img img {
		margin-right: -30px;
	}

	#top01 {
		margin-top: -160px;
	}
	#top01 .cont .ttl br,
	#top02 .cont .box .ttl br {
		display: none;
	}
	#top02 .cont .box {
		width: 100%;
		margin-top: 40px;
	}

	#top02 .cont .box .box_cont .ttl,
	#top02 .cont .box .box_cont .txt {
		width: 100%;
	}

	#top04 {
		background-position: right center;
	}
}

@media screen and (max-width: 768px) {
	#main_img .inner {
		padding: 30px 15px;
	}

	#main_img .info {
		display: none;
	}

	.slick-num {
		width: 100px;
		height: 54px;
		top: 60px;
	}
	.slick-num .now-count {
		font-size: 24px;
	}
	.slick-num .all-count {
		font-size: 16px;
	}

	.main_slide li {
		height: 480px;
	}

	#main_img .main_img {
		margin-top: -40px;
		position: relative;
    	right: 0;
    	bottom: 0;
	}
	#main_img .main_img img {
		max-width: calc(100% - 200px);
		margin-right: -10px;
	}

	#top01 {
		margin-top: -120px;
	}
	#top01 .cont {
		margin-top: 20px;
	}
	#top01 .cont .box {
		width: 100%;
	}
	#top01 .cont .ttl {
		font-size: 20px;
	}
	#top01 .cont .txt {
		margin-top: 5px;
	}

	#top01 .cont .movie {
		width: 100%;
		margin-top: 20px;
		padding: 20px 15px;
	}

	#top02 {
		background-size: contain;
	}
	#top02 .cont .box {
		margin-top: 20px;
	}
	#top02 .cont .box .ttl {
		font-size: 20px;
	}
	#top02 .cont .box .txt {
		margin-top: 5px;
	}

	#top02 .cont ul {
		margin-top: 30px;
	}

	#top02 .cont ul li .link_box {
		width: 50%;
	}
	#top02 .cont ul li .img {
		width: 50%;
	}

	#top02 .cont .box .link a {
		padding: 20px;	
	}
	#top02 .cont .box .link a::before, #top02 .cont .box .link a::after {
	    right: 20px;
	}

	#top02 .cont .box .box_cont {
		margin-top: 120px;
	}

	#top03 .cont {
		background-position: right bottom;
		background-size: auto 160px;
		padding-bottom: 160px;
	}
	#top03 .cont .box {
		width: 100%;
	}
	#top03 a {
		margin-top: 0;
		margin-bottom: 15px;
		padding-left: 15px;
		padding-right: 15px;
	}

	#top04 .cont {
		background-size: 60% auto;
		margin-top: 30px;
		padding-left: 0;
	}
	#top04 .cont .ttl {
		font-size: 20px;
	}
	#top04 .cont .ttl br {
		display: none;
	}
	#top04 .cont .txt {
		max-width: 100%;
		margin-top: 5px;
	}

}
	
@media screen and (max-width: 480px) {
	#top02 .cont ul li .link_box {
		width: 100%;
	}
	#top02 .cont ul li .img {
		width: 100%;
		height: 160px;
		border-radius: 0 0 20px 20px;
	}
}


/* business
------------------------------------------------------------*/
#business01 {
	background: linear-gradient(180deg, #ffffff 30%, #ececed 100%);
}
#business01 section {
	width: calc(100% + 30px);
	background-image: url(../img/business/business01_bg01.png), url(../img/business/business01_bg02.png);
	background-position: center top, center top 632px;
	background-repeat: no-repeat;
	margin-left: -15px;
	padding-top: 180px;
	padding-bottom: 140px;
}

#business01 .img_ttl {
	text-align: center;
}
#business01 .img_txt {
	text-align: center;
	margin-top: 30px;
}

#business01 .business_slide {
	margin-top: 100px;
}
#business01 .business_slide li {
	margin: 0 5px;
}

#business01 .cont_txt {
	padding: 100px 0 120px;
}
#business01 .cont_txt .ttl {
	font-size: 28px;
	font-weight: 700;
		text-align: center;
}
#business01 .cont_txt .txt {
	margin-top: 60px;
}

#business01 .cont {
	background: linear-gradient(45deg, rgba(84, 190, 165, 0.2) 25%, rgba(29, 130, 220, 0.2) 60%);
	border-radius: 20px;
	padding: 80px 30px 100px;
}
#business01 .cont ul li {
	min-height: 130px;
	background-color: #ffffff;
	border-radius: 20px;
	padding: 30px 80px 40px 160px;
	position: relative;
}
#business01 .cont ul li:not(:first-child) {
	margin-top: 10px;
}
#business01 .cont ul li .num {
	width: 100px;
	height: 90px;
	background-color: #464650;
	border-radius: 0 10px 0 10px;
	position: absolute;
	left: 20px;
	top: 20px;
}
#business01 .cont ul li .num img {
	height: 32px;
}
#business01 .cont ul li .ttl {
	color: #54bea5;
	font-size: 26px;
	font-weight: 700;
}
#business01 .cont ul li .txt {
	margin-top: 10px;
}

#business02 .cont.line {
	border-top: 1px solid #a2a2a7;
	padding-top: 60px;
}
#business02 .cont:not(:last-child) {
	padding-bottom: 60px;
}
#business02 .cont .box {
	width: 42%;
	padding-left: 100px;
	position: relative;
}
#business02 .cont .num {
	position: absolute;
	left: 0;
	top: 13px;
}
#business02 .cont .num img {
	height: 26px;
}
#business02 .cont .ttl .ja {
	font-size: 34px;
	font-weight: 700;
}
#business02 .cont .ttl .en {
	margin-top: 60px;
}
#business02 .cont .txt {
	font-size: 16px;
	margin-top: 60px;
}
#business02 .cont .img {
	width: 46.66%;
}

#business02_01 {
	margin-top: -50px;
	padding-top: 50px;
}

@media screen and (max-width: 1100px) {
	#business02 .cont .box {
		width: 48%;
		padding-left: 60px;
	}
}

@media screen and (max-width: 768px) {
	#business01 section {
		background-image: url(../img/business/business01_bg01.png);
		background-position: center top;
		background-size: 60% auto;
		padding-top: 40px;
		padding-bottom: 0;
	}
	#business01 .cont_img {
		padding-left: 30px;
		padding-right: 30px;
	}
	#business01 .img_txt {
		margin-top: 10px;
	}

	#business01 .cont_txt {
		padding: 40px 15px 60px;
	}
	#business01 .cont_txt .ttl {
		font-size: 20px;
		text-align: left;
	}
	#business01 .cont_txt .txt {
		margin-top: 10px;
	}

	#business01 .cont {
		border-radius: 0;
		padding: 40px 15px 60px;
	}

	#business01 .cont ul li {
		min-height: 1px;
		padding: 20px 20px 30px 20px;
	}
	#business01 .cont ul li .num {
		width: 40px;
		height: 40px;
	}
	#business01 .cont ul li .num img {
		height: 15px;
	}
	#business01 .cont ul li .ttl {
		min-height: 45px;
		font-size: 18px;
		padding-left: 55px;
	}

	#business02 .cont.line {
		padding-top: 40px;
	}
	#business02 .cont:not(:last-child) {
		padding-bottom: 40px;
	}
	#business02 .cont .box {
		width: 100%;
		padding-left: 0;
	}
	#business02 .cont .num {
		top: 2px;
	}
	#business02 .cont .num img {
		height: 20px;
	}
	#business02 .cont .ttl .ja {
		font-size: 21px;
		padding-left: 45px;
	}
	#business02 .cont .ttl .en {
		margin-top: 10px;
	}
	#business02 .cont .txt {
		margin-top: 20px;
	}

	#business02 .cont .img {
		width: 100%;
		margin-top: 20px;
	}
}


/* works
------------------------------------------------------------*/
.tab_cont .tab_area {
	margin-bottom: 80px;
}
.tab_cont .tab {
	width: 32%;
	max-width: 360px;
	height: 60px;
	border: 1px solid #d5d3d3;
	line-height: 58px;
	margin-right: 0.8%;
	margin-bottom: 10px;
}
.tab_cont .tab:nth-child(3n) {
	margin-right: 0;
}
.tab_cont .tab.active,
.tab_cont .tab:hover {
	background-color: #d5d3d3;
	color: #ffffff;
	transition: 0.5s;
}
.tab_cont .tab a {
	width: 100%;
	height: 100%;
	font-size: 17px;
}

.tab_cont .detail {
    display: none;
}
.tab_cont .detail.active {
    display: block;
}
.tab_cont .detail .ttl {
	font-size: 32px;
	border-bottom: 1px solid #d5d3d3;
	padding: 0 30px 10px;
}

.tab_cont table {
	width: 100%;
	border-left: 1px solid #dadadc;
	border-top: 1px solid #dadadc;
	margin-top: 30px;
}
.tab_cont table th,
.tab_cont table td {
	border-right: 1px solid #dadadc;
	border-bottom: 1px solid #dadadc;
	padding: 15px 20px;
}
.tab_cont table th {
	background-color: #54bea5;
	color: #ffffff;
}
.tab_cont table th:first-child {
	width: 28%;
}
.tab_cont table th:nth-child(2) {
	width: 42%;
}
.tab_cont table th:nth-child(3) {
	width: 30%;
}

@media screen and (max-width: 1000px) {
	.tab_cont .scroll {
		width: 100%;
		overflow-x: auto;
	}

	.tab_cont table {
		width: 1000px;
	}
	.tab_cont table th,
	.tab_cont table td {
		padding: 5px 10px;
	}

}

@media screen and (max-width: 768px) {
	.tab_cont .detail .ttl {
		font-size: 21px;
		padding: 0 10px 5px;
	}
}


/* company
------------------------------------------------------------*/
#company01 section {
	background-image: url(../img/company/company01_bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 30px;
	padding-left: 30px;
	padding-right: 30px;
}

#company01 .box {
	width: 52%;
}
#company01 .box .ttl {
	font-size: 26px;
}
#company01 .box .txt {
	margin: 30px 0 40px;
}
#company01 .box .sign {
	font-size: 16px;
}
#company01 .box .sign span {
	font-size: 26px;
}
#company01 .img {
	width: 44%;
	max-width: 380px;
}

#company02 .cont {
	margin-top: 100px;
}
#company02 .icon {
	width: 220px;
}
#company02 .box {
	width: calc(100% - 300px);
}
#company02 .box .txt {
	margin-top: 40px;
}

#company04 .img {
	width: 48%;
}
#company04 .box {
	width: 47.5%;
	font-size: 16px;
}
#company04 .box .addr {
	border-bottom: 1px solid #a9ded2;
	font-weight: 700;
	margin-bottom: 10px;
	padding-bottom: 15px;
}
#company04 .box dl dt {
	width: 200px;
	font-weight: 700;
}
#company04 .box dl dd {
	width: calc(100% - 200px);
}
#company04 .map {
	height: 600px;
	margin-top: 50px;
}

@media screen and (max-width: 1200px) {
	#company01 .box {
		width: 100%;
	}

	#company01 .img {
		width: 100%;
		max-width: 100%;
		text-align: right;
		margin-top: 30px;
	}

	#company04 .box dl dt,
	#company04 .box dl dd {
		width: 100%;
	}
	#company04 .box dl dt:not(:first-child) {
		margin-top: 10px;
	}
	#company04 .map {
		height: 450px;
	}
}

@media screen and (max-width: 768px) {
	#company01 section {
		width: calc(100% + 30px);
		border-radius: 0;
		margin-left: -15px;
		padding-left: 15px;
	    padding-right: 15px;
	}

	#company01 .box .ttl {
		font-size: 20px;
	}
	#company01 .box .ttl br {
		display: none;
	}

	#company01 .box .txt {
		margin: 10px 0 20px;
	}
	#company01 .box .sign span {
		font-size: 21px;
	}

	#company02 .cont {
		margin-top: 30px;
	}
	#company02 .icon {
		width: 100%;
		text-align: center;
	}
	#company02 .icon img {
		width: 160px;
	}
	#company02 .box {
		width: 100%;
		margin-top: 20px;
	}
	#company02 .box .txt {
		margin-top: 20px;
	}

	#company04 .img {
		width: 100%;
	}
	#company04 .box {
		width: 100%;
		margin-top: 20px;
	}
	#company04 .map {
		height: 240px;
		margin-top: 20px;
	}
}


/* csr
------------------------------------------------------------*/
.csr .box .img {
	width: 30%;
}
.csr .box .txt {
	width: 55%;
}
.csr .box.reverse {
	justify-content: flex-end;
}
.csr .box.reverse .img {
	margin-right: 5%;
}

#csr01 .box {
	margin-top: 50px;
}

@media screen and (max-width: 768px) {
	.csr article.mt {
		margin-top: 20px;
	}
}

@media screen and (max-width: 480px) {
	.csr .box.reverse {
		flex-flow: wrap;
	}
	.csr .box.reverse .img {
		margin-right: 0;
	}

	.csr .box .img {
		width: 100%;
		text-align: center;
		margin-top: 15px;
	}
	.csr .box .txt {
		width: 100%;
	}

	#csr01 .box {
		margin-top: 0;
	}
}


/* recruit
------------------------------------------------------------*/
#recruit01 {
	width: 100%;
	height: 1370px;
	background-image: url(../img/recruit/recruit01_bg.png);
	background-position: center;
	background-repeat: no-repeat;
}
#recruit01 section {
	padding-top: 650px;
}
#recruit01 .cont .ttl_img {
	text-align: center;
}
#recruit01 .cont .ttl {
	font-size: 34px;
	font-weight: 700;
	text-align: center;
	margin-top: 5px;
}
#recruit01 .cont .txt {
	margin-top: 40px;
}

#recruit02 {
	background: linear-gradient(180deg, #ffffff 0%, #ececed 100%);
	position: relative;
}
#recruit02::before {
	content: '';
	width: 50%;
	height: 860px;
	background: linear-gradient(45deg, rgba(84, 190, 165, 0.2) 20%, rgba(29, 130, 220, 0.2) 70%);
	border-radius: 0 40px 0 0;
	position: absolute;
	left: 0;
	top: 0;
}
#recruit02 .cont {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 0 30px;
	position: relative;
}
#recruit02 .cont .box {
	padding: 80px 0;
	position: relative;
}
#recruit02 .cont .box:not(:first-child) {
	border-top: 1px solid #a2a2a7;
}
#recruit02 .cont .box::before {
	content: '';
	width: 100%;
	height: 100%;
	background-position: center top;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	right: 0;
	top: 0 ;
}
#recruit02 .cont .box:first-child::before {
	background-image: url(../img/recruit/recruit02_num01.png);
}
#recruit02 .cont .box:nth-child(2)::before {
	background-image: url(../img/recruit/recruit02_num02.png);
}
#recruit02 .cont .box:nth-child(3)::before {
	background-image: url(../img/recruit/recruit02_num03.png);
}
#recruit02 .cont .box:nth-child(4)::before {
	background-image: url(../img/recruit/recruit02_num04.png);
}
#recruit02 .cont .box .box_point {
	width: 240px;
	height: 40px;
	background-color: #464650;
	border-radius: 20px;
	color: #ffffff;
	text-align: center;
	line-height: 38px;
	margin: 0 auto;
	position: relative;
}
#recruit02 .cont .box .box_ttl {
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	margin-top: 20px;
	position: relative;
}
#recruit02 .cont .box .box_txt {
	margin-top: 80px;
}
#recruit02 .cont .box .box_fukidashi {
	min-height: 340px;
	margin-top: 60px;
}
#recruit02 .cont .box .icon {
	width: 200px;
	height: 200px;
	border: 1px solid #54bea5;
	border-radius: 100px;
	margin-right: 40px;
}
#recruit02 .cont .box .icon img {
	border-radius: 100px;
}
#recruit02 .cont .box .fukidashi {
	width: calc(100% - 240px);
	max-width: 680px;
	background-color: #eef8f6;
	border-radius: 10px;
}
#recruit02 .cont .box .fukidashi .ttl {
	width: 100%;
	background-color: #54bea5;
	border-radius: 10px 10px 0 0;
	padding: 20px 40px;
	position: relative;
}
#recruit02 .cont .box .fukidashi .ttl:before {
	content: '';
	width: 20px;
	height: 26px;
	background-image: url(../img/recruit/recruit02_fukidashi.png);
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	left: -19px;
	bottom: 20px;
}
#recruit02 .cont .box .fukidashi .point {
	width: 90px;
	background-color: #464650;
	border-radius: 10px 0 10px 0;
	color: #ffffff;
	text-align: center;
	padding: 3px 10px;
}
#recruit02 .cont .box .fukidashi p {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	margin-top: 5px;
}
#recruit02 .cont .box .fukidashi .txt {
	padding: 20px 40px;
}

#recruit03 .cont .txt {
	text-align: center;
	margin-bottom: 50px;
}

#recruit04 .cont .ttl {
	color: #54bea5;
	font-size: 28px;
	text-align: center;
	margin-top: 80px;
}
#recruit04 .cont ul {
	margin-top: 40px;
}
#recruit04 .cont ul li {
	width: 30%;
	background-color: #ececed;
	border-radius: 10px;
	position: relative;
}
#recruit04 .cont ul li .step {
	background-color: #dadadc;
	border-radius: 10px 10px 0 0;
	text-align: center;
	padding: 25px 20px;
}
#recruit04 .cont ul li .step img {
	height: 13px;
}
#recruit04 .cont ul li .box {
	font-size: 36px;
	text-align: center;
	padding: 60px 20px 90px;
}
#recruit04 .cont ul li .sign {
	width: 13.3%;
	height: 30px;
	background-color: #464650;
	border-radius: 15px;
	padding: 1.5px 2px 1.5px 3px;
	position: absolute;
	right: -15%;
	bottom: 32%;
}
#recruit04 .cont ul li .sign img {
	width: 6px;
	margin: 0 0.5px;
}
#recruit04 .cont ul li .sign01 {
	animation: sign01 3s infinite;
}
#recruit04 .cont ul li .sign02 {
	animation: sign02 3s infinite;
}
#recruit04 .cont ul li .sign03 {
	animation: sign03 3s infinite;
}
@keyframes sign01 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sign02 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sign03 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#recruit04 .cont .txt {
	margin-top: 60px;
}
#recruit04 .cont .txt a:hover {
	color: #1d82dc;
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	#recruit01 {
		height: auto;
		background-image: url(../img/recruit/recruit01_bg_sp.jpg);
		background-size: cover;
	}

	#recruit01 section {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	#recruit01 .cont .ttl {
		font-size: 18px;
		text-align: left;
		margin-top: 30px;
	}
	#recruit01 .cont .txt {
		max-width: 100%;
		margin-top: 5px;
	}

	#recruit02 .cont {
		padding-left: 15px;
		padding-right: 15px;
	}
	#recruit02 .cont .box {
		padding: 40px 0;
	}
    #recruit02 .cont .box::before {
		background-size: 210px auto;
	}
    #recruit02 .cont .box .box_ttl {
		font-size: 18px;
	}
    #recruit02 .cont .box .box_txt {
		margin-top: 30px;
	}
	#recruit02 .cont .box .fukidashi {
		width: 100%;
	}
	#recruit02 .cont .box .box_fukidashi {
		min-height: 1px;
		margin-top: 40px;
		position: relative;
	}
	#recruit02 .cont .box .fukidashi .ttl::before {
		content: none;
	}
	#recruit02 .cont .box .icon {
		width: 80px;
		height: 80px;
		margin-right: 0;
		position: absolute;
		left: -25px;
		top: -35px;
		z-index: 1;
	}
	#recruit02 .cont .box .fukidashi .point {
		margin-left: 15px;
	}
	#recruit02 .cont .box .fukidashi .ttl {
		padding-left: 20px;
		padding-right: 20px;
	}
	#recruit02 .cont .box .fukidashi .txt {
		padding-left: 20px;
		padding-right: 20px;
	}

	#recruit03 .cont .txt {
		text-align: left;
		margin-bottom: 30px;
	}

	#recruit04 .cont .ttl {
		font-size: 21px;
		margin-top: 40px;
	}
    #recruit04 .cont ul {
		justify-content: center;
	}
	#recruit04 .cont ul li {
		width: 100%;
		max-width: 320px;
	}
	#recruit04 .cont ul li:not(:last-child) {
		margin-bottom: 60px;
	}
	#recruit04 .cont ul li .step {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	#recruit04 .cont ul li .box {
		font-size: 20px;
		padding: 20px;
	}
	#recruit04 .cont ul li .sign {
		transform: rotate(90deg);
		left: 0;
		right: 0;
		bottom: -46px;
	    margin: auto;
	}

	#recruit04 .cont .txt {
		max-width: 320px;
	}

}


/* contact
------------------------------------------------------------*/
.form table {
	width: 100%;
	margin-top: 60px;
}
.form table th,
.form table td {
	font-size: 16px;
	vertical-align: top;
}

.form table th {
	width: 300px;
	border-bottom: 1px solid #54bea5;
	color: #54bea5;
	font-weight: 700;
	line-height: 1.5;
	padding: 15px 50px 15px 30px;
	position: relative;
}
.form table tr:first-child th {
	border-top: 1px solid #54bea5;
}
.form table th .required {
	display: inline-block;
	width: 38px;
	height: 28px;
	background-color: #54bea5;
	border-radius: 6px;
	color: #ffffff;
	font-size: 13px;
	text-align: center;
	line-height: 28px;
	position: absolute;
	right: 0;
	top: 13px;
}
.form table td {
	line-height: 1.75;
	padding: 5px 0 5px 30px;
}
.form table td .addr:not(:first-child) {
	margin-top: 10px;
}
.form table td .item:first-child {
	margin-top: 10px;
}
.form table td .item:last-child {
	margin-bottom: 40px;
}
.form table tr:last-child td {
	vertical-align: middle;
}

.input_text,
.textarea {
	width: 100%;
	border: 1px solid #dadadc;
	border-radius: 3px;
	padding: 10px;
}
.input_text {
	max-width: 460px;
	height: 45px;
}
.addr .input_text {
	width: calc(100% - 80px);
	max-width: 560px;
}
.addr:first-child .input_text {
	max-width: 380px;
}
.textarea {
	max-width: 640px;
	height: 200px;
}

.form_btn {
	text-align: center;
	margin-top: 80px;
}
.form_btn .btn {
	width: 280px;
	height: 54px;
	margin: 5px 10px;
}
.form_btn .btn input {
	width: 100%;
	height: 100%;
	background-color: #54bea5;
	background-image: url(../img/common/f_contact_sign.svg);
	background-position: right 30px center;
	background-repeat: no-repeat;
	background-size: 6px auto;
	border: 1px solid #54bea5;
	border-radius: 27px;
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: 0.5s;
}
.form_btn .btn input:hover {
	background-color: #a2a2a7;
	border: 1px solid #a2a2a7;
}

@media screen and (max-width: 768px) {
	.form table {
		margin-top: 40px;
	}
	.form table tr {
		display: flex;
		flex-wrap: wrap;
	}
	.form table th,
	.form table td {
		width: 100%;
		padding: 5px 10px;
	}
	.form table th {
		border-top: 1px solid #54bea5;
	}
	.form table tr:last-child th br {
		display: none;
	}
	.form table th .required {
		top: 3px;
	}
	.form table td {
		padding-left: 5px;
		padding-right: 5px;
	}
	.form table tr:last-child td {
		border-bottom: 1px solid #54bea5;
	}

	.input_text,
	.addr:first-child .input_text {
		max-width: 100%;
	}

	.form table td .item:last-child {
		margin-bottom: 10px;
	}

	.form_btn {
		margin-top: 40px;
	}
	.form_btn .btn {
		width: 240px;
		height: 48px;
	}
	.form_btn .btn input {
		font-size: 16px;
	}

}

/* privacy policy
------------------------------------------------------------*/
#privacy01 .indent {
	text-indent: -1.5rem;
	padding-left: 1.5rem;
}

#privacy01 a:hover {
	color: #1d82dc;
	text-decoration: underline;
}

#privacy01 .txt {
	word-break: break-word;
}





