@charset "utf-8";
/*
Theme Name: shiki-systems
Author:株式会社ポリバレント
Description:有限会社四季設備
Version:1.0
*/
/* -------------header --------------*/
.ham-btn {
	display: none;
}
header {
	width: 100%;
	height: 80px;
	padding: 10px;
	position: fixed;
	background-color: #fff;
	opacity: 1;
	backdrop-filter: blur(12px);
	top: 0;
	z-index: 999;
}
.logo {
	max-width: 20%;
}
.logo img,
.footer-logo img {
	width: 100%;
}
.header-menu {
	width: 100%;
	height: 100%;
}
.header-nav {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: auto;
}
.header-nav-list {
	width: 80%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 2%;
}
.header-nav-item{
	width: 100px;
	text-align: center;
}
.header-nav-item-link {
	position: relative;
	display: inline-block;
	width: max-content;
	height: 40px;
}
.header-nav-item-link span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	transition: opacity 0.4s ease-in-out;
}
.header-nav-item-link span.en {
	font-family: var(--arya);
		text-align: center;
		color: var(--blue);
		font-weight: bold;
		font-size: 1.5rem;
	opacity: 1;
}
.header-nav-item-link span.ja {
	opacity: 0;
	font-family: var(--m-plus);
	color: var(--blue);
	font-weight: bold;
	font-size: 1.125rem;
}
.header-nav-item-link:hover span.en {
	opacity: 0;
	pointer-events: none;
}
.header-nav-item-link:hover span.ja {
	opacity: 1;
}
.icon_insta{
	width: 55px;
	height: auto;
	margin: 0 10px;
}

@media (max-width:1200px) {
	header{
		height: 70px;
		justify-content: flex-end;
		background-color: unset;
		backdrop-filter: unset;
	}
	.logo {
		max-width: 40%;
		display: block;
		margin: auto;
	}
	.logo>img{
		vertical-align: bottom;
	}
	.ham-btn {
		display: block;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, 0.8);
		position: fixed;
		left: 20px;
		top: 20px;
		z-index: 9999;
	}
	.ham-btn.active {
		transition: all 0.5s;
	}
	.ham-btn span {
		background: var(--blue);
		display: block;
		height: 2px;
		left: 0;
		margin-inline: auto;
		position: absolute;
		right: 0;
		top: 50%;
		width: 60%;
		z-index: 9999;
	}
	.ham-btn.active span {
		height: 0;
	}
	.ham-btn span::before,
	.ham-btn span::after {
		background: var(--blue);
		content: '';
		display: block;
		height: 2px;
		width: 100%;
	}
	.ham-btn.active{
		transform: rotateX(720deg);
	}
	.ham-btn.active span::before {
		transform: rotate(45deg);
		top: 0;
		z-index: 9999;
	}
	.ham-btn.active span::after {
		transform: rotate(-45deg);
		top: 0;
		z-index: 9999;
	}
	.ham-btn span::before {
		position: absolute;
		top: -10px;
	}
	.ham-btn span::after {
		position: absolute;
		top: 10px;
	}
	.header-menu.active {
		left: 0;
	}
	.header-menu {
		transition: all 0.5s;
		display: block;
		position: absolute;
		background: rgba(255, 255, 255, 1.0);
		height: 100vh;
		margin-right: 0;
		padding: 70px 0 10px;
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		overflow: auto;
	}
	.header-nav {
		width: 70%;
		height: 100vh;
		display: block;
		margin: auto;
	}
	.header-nav-list {
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		font-size: 1.25rem;
	}
	.header-nav-item{
		height: 60px;
		margin-bottom: 20px;
	}
	.header-nav-item-sp{
		height: 60px;
		margin-bottom: 20px;
	}
	.header-nav-item-link span.sp,
	.header-nav-item-link-sp span.sp {
		display: block;
		top: 50px;
		font-family: var(--m-plus);
		color: var(--blue);
		font-size: 14px;
		font-weight: 600;
	}
	.icon_insta{
		width: 70px;
		height: auto;
		margin: 10px;
	}
	.follow{
	font-family: var(--arya);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--jade);
	animation: pikopiko 1s steps(2, start) infinite;
	}
	@keyframes pikopiko {
		0% {
			transform: rotate(10deg);
		}
		to {
			transform: rotate(-5deg);
		}
	}
}
@media(max-width:780px) {
	.logo {
		max-width: 50%;
	}
}
@media(max-width:550px) {
	.logo {
		max-width: 80%;
	}
}
/* -------------header end --------------*/
/* -------------footer--------------*/
footer{
	width: 100%;
	height: 150px;
	background-color: #fff;
}
.footer_nav{
	width: 100%;
	height: 100px;
	background-color: var(--blue);
}
ul.footer_nav_list{
	max-width: 800px;
	height: 100%;
	padding: 10px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: auto;
}
ul.footer_nav_list>li a{
	font-family: var(--arya);
	font-size: 1rem;
	color: #fff;
}
.footer_container{
	height: 50px;
	text-align: center;
	padding: 0 15px;
	margin: auto;
}
.footer_container>p{
	color: var(--blue);
	font-size: 1rem;
	font-family: var(--arya);
	padding: 10px;
}
@media(max-width:1200px){
	footer{
		width: 100%;
		height: 50px;
	}
}
/* -------------footer end --------------*/
/* ------------index------------ */
.hero {
	width: 100%;
	height: 100vh;
	position: relative;
	background-color: #fff;
}
.hero_inner{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	clip-path: inset(0);
}
.slider {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: relative;
	max-width: 100%;
}
.slider div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 10;
	opacity: 0;
	animation-name: slide-fade;
	animation-duration: 30s;
	animation-iteration-count: infinite;
	transform: scale(1.5);
}
@keyframes slide-fade {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	80% {
		opacity: 0;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		z-index: 0;
	}
}
.slider div:first-of-type {
	background: url(https://polyva.xsrv.jp/shiki-systems/wp-content/themes/shiki-systems/images/top_slide/top_slide01.jpg) no-repeat;
	background-size: cover;
	position: fixed;
}
.slider div:nth-of-type(2) {
	background: url(https://polyva.xsrv.jp/shiki-systems/wp-content/themes/shiki-systems/images/top_slide/top_slide02.jpg) no-repeat;
	background-size: cover;
	background-position: center bottom;
	animation-delay: 10s;
	position: fixed;
}
.slider div:last-of-type {
	background: url(https://polyva.xsrv.jp/shiki-systems/wp-content/themes/shiki-systems/images/top_slide/top_slide03.jpg) no-repeat;
	background-size: cover;
	animation-delay: 20s;
	position: fixed;
}
@media(max-width:1200px){
	.slider div:first-of-type {
		background-position-x: 23%;
	}
	.slider div:nth-of-type(2) {
		background-position-x: center;
	}	
	.slider div:last-of-type {
		background-position-x: center;
	}
}
/*======  スクロールを促す =======*/
.arrows {
	width: 60px;
	height: 72px;
	position: absolute;
	left: 50%;
	margin-left: -30px;
	bottom: 20px;
	z-index: 30;
}
.arrows path {
	stroke: #c9e5f5;
	fill: transparent;
	stroke-width: 1px;
	animation: arrow 2s infinite;
	-webkit-animation: arrow 2s infinite;
}
@keyframes arrow {
	0% {
		opacity: 0
	}
	40% {
		opacity: 1
	}
	80% {
		opacity: 0
	}
	100% {
		opacity: 0
	}
}
@-webkit-keyframes arrow
	{
	0% {
		opacity: 0
	}
	40% {
		opacity: 1
	}
	80% {
		opacity: 0
	}
	100% {
		opacity: 0
	}
}
.arrows path.a1 {
	animation-delay: -1s;
	-webkit-animation-delay: -1s;
}
.arrows path.a2 {
	animation-delay: -0.5s;
	-webkit-animation-delay: -0.5s;
}
.arrows path.a3 {
	animation-delay: 0s;
	-webkit-animation-delay: 0s;
}
/* -----------hero end----------------- */
.sub_hero{
	width: 100%;
	height: 800px;
	padding:60px 0;
	position: relative;
}
.sub_hero_section{
	width: 100%;
	position: absolute;
	top: -7%;
	left: 0;
}
.sub_hero_container{
	width: 100%;
	height: 100%;
	background: url(./images/bg/logo_bg.png) no-repeat;
	background-size: contain;
	background-position: center;
}
.sub_hero_inner{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 0 15px;
}
.sub_hero_text {
	width: auto;
	height: 55px;
	overflow: hidden;
}

@media(max-width:1200px){
	.sub_hero{
		height: 700px;
	}
	.sub_hero_section {
		top: -6%;
	}
}
@media(max-width:900px){
	.sub_hero{
		width: 100%;
		height: auto;
	}
	.sub_hero_section {
		top: -4%;
	}
	.sub_hero_inner{
		padding-top: 60px;
	}
.sub_hero_text {
	width: auto;
	height: 40px;
	overflow: hidden;
}

}
@media(max-width:550px){
	.sub_hero{
		padding: 30px 0;	
	}
	.sub_hero_section{
		top: -2%;
	}
	.sub_hero_text {
		width: auto;
		height: 22px;
		overflow: hidden;
	}
}

/* -------------------NEWS----------------------- */
.top_news {
	width: 100%;
	height: 200px;
	background-color: #f1f2f0;
}
.top_news_container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
}
.top_news_titleBox {
	width: 40%;
	height: 100%;
	border-radius: 0 100px 100px 0;
	background-color: var(--blue);
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 80px;
}
h2.top_news_title{
	font-family: var(--arya);
	font-size: 2.5rem;
	font-weight: 600;
	color: #fff;
}

.top_news_inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}
ol.top_news_list {
	max-width: 800px;
	height: auto;
	overflow: hidden;
}
.news_list_content {
	border-bottom: 1px solid #fff;
	line-height: 1.7;
	padding: 5px 0;
}
.top_news_list a {
	display: inline-flex;
	gap: 20px;
	font-size: 1rem;
}
@media(max-width:950px){
.top_news_titleBox{
	width: 35%;
}
}

@media(max-width:900px) {
	.top_news {
		height: 300px;
	}
	.top_news_titleBox {
		width: 35%;
		height: 100%;
		border-radius: 0 150px 150px 0;
		padding: 0 60px;
	}
	.top_news_inner{
		justify-content: center;
		padding: 0 15px;
	}
		ol.top_news_list{
			width: 100%;
			margin-bottom: 15px;
		}
}
@media(max-width:780px){
	.top_news {
			height: 400px;
		}
	.top_news_container {
			flex-direction: column;
		}
	.top_news_titleBox{
		width: 65%;
		height: 40%;
	}
	.top_news_list a{
	flex-direction: column;
	gap: 0;
	}
}
@media(max-width:550px) {
.top_news{
	height: 440px;
}
h2.top_news_title{
	font-size: 2rem;
}
.top_news_titleBox {
		width: 65%;
		height: 30%;
	}
	.top_news_list a{
		font-size: 0.875rem;
	}
}
/* ------------index end------------ */
/* ------------NEWS Page ------------ */
.page_news {
	width: 100%;
	height: 100%;
}
.page_news_container {
	width: 100%;
	height: 100%;
	background: url(./images/bg/section_bg3.png) no-repeat;
	background-size: contain;
	background-position: bottom right;
	text-align: left;
	background-attachment: fixed;
}
.page_news_inner {
	max-width: 800px;
	height: auto;
	display: block;
	margin: 100px auto;
	padding: 0 15px;
	text-align: center;
}
ol.page_news_list {
	margin-bottom: 30px;
}
.page_news_list>li {
	border-bottom: 1px solid var(--blue);
	padding: 10px;
	margin-bottom: 15px;
	font-family: var(--m-plus);
}
.news_link {
	display: flex;
	gap: 30px;
}
.pagination {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-bottom: 40px;
}
.page-numbers {
	align-items: center;
	aspect-ratio: 1/1;
	background: #d7eef3;
	color: var(--black);
	display: flex;
	justify-content: center;
	width: 50px;
	border-radius: 25px;
}
.page-numbers.current {
	background: var(--jade);
	color: #fff;
}
.page-numbers.next,
.page-numbers.prev {
	font-family: var(--m-plus);
	font-size: 1rem;
	background-color: #d7eef3;
}

@media(max-width:550px) {
	.page_news_inner {
		margin: 30px auto 60px;
	}
	.news_link {
		flex-direction: column;
		gap: 0;
		text-align: left;
	}
}
/* ------------NEWS Page end------------ */
/* ------------NEWS single ------------ */
.single_news {
	width: 100%;
	height: 100%;
}
.single_news_container {
	width: 100%;
	height: 100%;
	background: url(./images/bg/section_bg3.png) no-repeat;
	background-size: contain;
	background-position: bottom right;
	background-attachment: fixed;
	text-align: left;
}
.single_news_inner {
	max-width: 800px;
	text-align: left;
	background-color: rgba(255, 255, 255, 0.8);
	font-size: 1.125rem;
	line-height: 1.7;
	padding: 30px 20px;
	margin: 120px auto;
}
.single_news_inner>time{
	font-size: 1.125rem;
	font-family: var(--arya);
}
.news_single_detail{
	padding-top: 20px;
	font-size: 1.125rem;
	line-height: 1.7;
	font-family: var(--m-plus);
}
.single_pagination {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 150px;
	margin: 30px 0;
}
.prev,
.next {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--jade);
	width: 50px;
	height: 50px;
	border-radius: 25px;
}
.prev a,
.next a {
	color: #fff;
}
.prev:hover,
.next:hover {
	background-color: var(--color);
}
.prev:hover a,
.next:hover a {
	color: #00002f;
}
@media (max-width: 550px) {
.single_news_inner{
	margin: 90px auto;
}
}
/* ------------single end ------------ */
/* ------------top ABOUT ------------ */
.top_about{
	width: 100%;
	height: 1000px;
	position: relative;
}
.top_about_container {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.top_movie {
	background: url(./images/bg/video_alt.jpg) no-repeat;
	background-size: cover;
	height: inherit;
	position: relative;
	overflow: hidden;
}
.topbg_movie {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.top_about_circle{
	width: 900px;
	height: 900px;
	border-radius: 450px;
	background-color: #e6690d;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 60px;
}
.top_about_text{
	font-size: 1.825rem;
	color: #fff;
	line-height: 2.0;
	margin-top: 60px;
}
a.about_link{
	font-family: var(--arya);
	font-size: 2.5rem;
	font-weight: 600;
	margin: 50px 0;
	color: #fff;
	background: linear-gradient(currentcolor, currentcolor) left bottom / 100% 2px no-repeat;
		transition: background-size .4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
a.about_link:hover {
	background-position: right bottom;
	background-size: 0 2px;
}

@media(max-width:1200px){
	.top_about_circle{
		width: 750px;
		height: 750px;
		border-radius: 375px;
	}
	.top_about_text{
		font-size: 1.5rem;
	}
	a.about_link{
		margin: 0;
	}
}
@media(max-width:780px) {
	.top_about{
		height: 700px;
	}
	.top_about_circle {
		width: 500px;
		height: 500px;
		border-radius: 250px;
		gap: 15px;
	}
	.top_about_text {
		font-size: 1.25rem;
		line-height: 1.7;
		margin-top: 50px;
	}
	a.about_link {
		font-size: 2rem;
	}
}
@media(max-width:550px) {
	.top_about {
		height: 550px;
	}
	.top_about_circle {
		width: 350px;
		height: 350px;
		border-radius: 175px;
		gap: 0;
	}
	.top_about_text {
		width: 60%;
		font-size: 14px;
		line-height: 1.5;
		margin-top: 20px;
	}
	a.about_link {
		font-size: 1.5rem;
	}
}
/* --------------top link-------------- */
.top_link_wrap{
	width: 100%;
	height: 1480px;
	background: url(./images/bg/section_bg.png) no-repeat;
	background-size: contain;
	background-position: center;
}
.top_link_container{
	max-width: 1500px;
	height: auto;
	padding: 120px 15px;
	position: relative;
	margin: auto;
}
.top_link_img01{
	position: absolute;
	top: 120px;
	left: 0;
}
.circle01 {
	width: 500px;
	height: 500px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	box-shadow: 0px 10px 10px -2px rgba(0, 0, 0, 0.3);
}
.circle01_img {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	object-fit: cover;
}
.top_link_img02 {
	position: absolute;
	top: 700px;
	left: 300px;
}
.circle02 {
	width: 350px;
	height: 350px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	box-shadow: 0px 10px 10px -2px rgba(0, 0, 0, 0.3);
}
.circle02_img {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	object-fit: cover;
}
.top_link_img03 {
	position: absolute;
	top: 710px;
	right: 0px;
}
.circle03 {
	width: 600px;
	height: 600px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	box-shadow: 0px 10px 10px -2px rgba(0, 0, 0, 0.3);
}
.circle03_img {
	position: absolute;
	top: 0;
	right: 0;
	width: auto;
	height: 100%;
	object-fit: cover;
}

@media(max-width:1500px){
	.top_link_img01{
		left: 120px;
	}
	.top_link_img02 {
		left: 150px;
	}
	.top_link_img03{
		right: 50px;
	}
}
@media(max-width:1200px) {
	.top_link_wrap{
		height: 1200px;
	}
	.top_link_container{
		padding: 60px 15px;
	}
	.top_link_img01 {
		top: 60px;
		left: 100px;
	}
	.circle01{
		width: 420px;
		height: 420px;
	}
	.top_link_img02 {
		top: 500px;
		left: 50px;
	}
	.circle02 {
		width: 300px;
		height: 300px;
	}
	.circle02_img{
		left: 0;
	}
	.top_link_img03 {
		top: 670px;
		right: 50px;
	}
	.circle03 {
		width: 450px;
		height: 450px;
	}
}
@media(max-width:780px) {
	.top_link_wrap {
		height: 1100px;
	}
	.top_link_container {
		padding: 30px 15px;
	}

	.top_link_img01 {
		top: 60px;
		left: 20px;
	}
	.circle01 {
		width: 300px;
		height: 300px;
	}
	.top_link_img02 {
		top: 400px;
		left: 100px;
	}
	.circle02 {
		width: 230px;
		height: 230px;
	}
	.top_link_img03 {
		top: 620px;
		right: 15px;
	}
	.circle03 {
		width: 360px;
		height: 360px;
	}
}
@media(max-width:550px) {
	.top_link_wrap {
		height: 1000px;
	}
	.top_link_img01 {
		left: 10px;
	}
	.circle01 {
		width: 300px;
		height: 300px;
	}
	.top_link_img02 {
		top: 370px;
		left: 15px;
	}
	.circle02 {
		width: 180px;
		height: 180px;
	}
	.top_link_img03 {
		top: 570px;
		right: 10px;
	}
	.circle03 {
		width: 300px;
		height: 300px;
	}
}
/* --------------top slider-------------- */
.top_swiper {
	width: 100%;
	margin-bottom: 120px;
}
.swiper-slide {
	width: auto;
	height: 320px;
	overflow: hidden;
}
.swiper-slide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.top_swiper .swiper-wrapper {
	transition-timing-function: linear;
}

/* --------------top recruit-------------- */
.top_link_recruit{
	width: 100%;
	height: 600px;
	position: relative;
	margin-bottom: 90px;
}
.top_link_recBG{
	width: 100%;
	height: 35%;
	position: absolute;
	bottom: 2px;
	background-color: var(--blue);
	z-index: -2;
}
.top_link_rec_container{
	max-width: 1500px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	margin: auto;
}
.top_link_rec_container p{
	font-family: var(--m-plus);
	font-size: 2.25rem;
}
.top_link_imgwrap{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.top_link_img_l,
.top_link_img_r{
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.top_link_img_l>img,
.top_link_img_r>img{
	height: 350px;
	width: auto;
}
@media(max-width:1200px){
	.top_link_img_l>img,
	.top_link_img_r>img {
		height: 270px;
		width: auto;
	}
}
@media(max-width:780px){
	.top_link_rec_container p{
		font-size: 2rem;
	}
}
@media(max-width: 550px){
	.top_link_recruit{
		height: 550px;
	}
	.top_fukidashi{
		width: 300px;
		margin-bottom: 15px;
	}
	.top_link_rec_container p{
		font-size: 1.25rem;
	}
	.top_link_img_l>img,
	.top_link_img_r>img {
		height: 210px;
		width: auto;
	}
}

/* youtube動画追加 */
.related_video {
	max-width: 1200px;
	height: 100%;
	padding: 0 15px;
	margin: auto;
	text-align: center;
}

.video-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 20px;
	z-index: 5;
	max-width: 100%;
	margin: 0 auto;
}

.video-container {
	flex: 1;
	text-align: center;
}

.related_video h2 {
	font-size: 24px;
	padding: 10px 0;
}

@media (min-width: 769px) and (max-width: 1300px) {
	.video-container iframe {
		max-width: 95%;
		aspect-ratio: 16 / 9;
		height: auto;
	}
	.related_video h2 {
		font-size: 18px;
		padding: 10px 0;
	}
}

@media (max-width: 768px) {
	.video-wrapper {
		flex-direction: column;
	}
	.related_video h2 {
		font-size: 18px;
		padding: 10px 0;
	}

}

@media (max-width: 660px) {
	.video-container iframe {
		max-width: 95%;
		/* 最大幅を95%に設定 */
		aspect-ratio: 16 / 9;
		/* 縦横比を16:9に固定 */
		height: auto;
	}
	.related_video h2 {
		font-size: 18px;
		padding: 10px 0;
	}
}

/* --------------area contact-------------- */
.area_contact{
	width: 100%;
	height: 500px;
	position: relative;
}
.area_contact_container{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: inset(0);
}
.area_contactBG{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: url(./images/bg/footer_bg.jpg) no-repeat;
	background-size: cover;
	background-position: center top;
	z-index: -1;
}
.area_contact_inner{
	max-width: 1000px;
	height: 100%;
	padding: 0 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}
.contact_box{
	width: 100%;
	height: 260px;
	border-radius: 50px;
	text-align: center;
	padding: 20px;
	color: #fff;
	background-color: var(--orange);
}
.contact_box_text{
	font-size: 1.25rem;
	font-family: var(--m-plus);
	margin-bottom: 15px;
}
.contact_box_tel{
	font-size: 1rem;
	font-family: var(--m-plus);
}
h2.contact_box_title{
	font-family: var(--arya);
	font-size: 3.125rem;
	background-color: unset;
}
.btn_contactbox {
	width: 100%;
	max-width: 320px;
	height: 50px;
	padding: 0 20px;
	position: relative;
	text-decoration: none;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 25px;
	background-color: #fff;
	transition: background-color 0.3s ease;
	overflow: hidden;
	margin: 0 auto 20px;
}
.btn_contactbox::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background-color: var(--orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.btn_contactbox .btn_contacttext {
	position: relative;
	font-family: var(--m-plusa);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--orange);
	z-index: 2;
	transition: color 0.3s ease;
}
.btn_contactbox:hover {
	background-color: var(--jade);
}
.btn_contactbox:hover::before {
	transform: scaleX(1);
}
.btn_contactbox:hover .btn_contacttext{
	color: #fff;
}
@media(max-width:550px){
	.area_contact{
		height: 350px;
	}
	.contact_box{
		height: 300px;
		border-radius: 30px;
		padding: 25px;
	}
	h2.contact_box_title{
		font-size: 2.25rem;
		margin-bottom: 15px;
	}
	.contact_box_text{
		font-size: 1.125rem;
	}
	.btn_contactbox .btn_contacttext{
		font-size: 1.125rem;
	}
}
/* --------------index page END-------------- */
/* --------------ABOUT-------------- */
.about_mv{
	width: 100%;
	height: 100%;
	background: url(./images/mv/about_mv.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	margin-bottom: 120px;
}
.about_main{
	width: 100%;
	height: 900px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 30px;
}
.about_container{
	max-width: 730px;
	display: inline-block;
	padding: 60px 15px 0;
}
.about_container>p{
	font-size: 1.187rem;
	color: var(--black);
	text-align: justify;
	line-height: 2.0;
	letter-spacing: 2px;
}
.about_container>span{
	font-size: 2.5rem;
	color: var(--green);
	font-family: var(--m-plus);
	letter-spacing: -1px;
	line-height: 1.5;
}
.about_main_img{
	max-width: 900px;
	height: 100%;
	padding-right: 50px;
}
.about_main_img::before {
	content: '';
	width: 800px;
	height: 800px;
	border-radius: 50%;
	background-color: var(--green);
	position: absolute;
	right: 0;
	top: auto;
	z-index: -1;
}
.circle04 {
	width: 750px;
	height: 750px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
}
.circle04_img {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	object-fit: cover;
}
.about_link_wrap{
	max-width: 1500px;
	height: 100%;
	padding: 0 15px;
	margin: auto;
}
.about_industry_link{
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 60px;
}

.about_between{
	width: 100%;
	height: 400px;
	position: relative;
}
.about_between_inner{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: inset(0);
}
.about_between_bg{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: url(./images/bg/between_bg.jpg);
	background-position-y: 45%;
}
.about_industry{
	width: 100%;
	height: 100%;
	padding-bottom: 120px;
	background: url(./images/bg/section_bg2.png) no-repeat;
	background-size: contain;
	background-attachment: fixed;
	background-position-y: center;
}
.about_industry_container{
	max-width: 1200px;
	height: 100%;
	padding: 90px 15px 0;
	margin: auto;
}
.about_industry_inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.about_industry_box{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 50px;
}
.about_industry_img {
	width: 50%;
	height: auto;
	display: contents;
	margin: auto;
}
.circle05 {
	width: 450px;
	height: 450px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	box-shadow: 0px 10px 10px -2px rgba(0, 0, 0, 0.3);
}
.circle05_img {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	object-fit: cover;
}
.about_industry_text{
	width: 50%;
	height: auto;
	padding: 0 15px;
}
.about_industry_text>p{
	padding: 40px 0 0 0;
	color: var(--black);
	font-size: 1.125rem;
	line-height: 2.0;
	letter-spacing: 1px;
}
@media(max-width:1400px){
	.about_main_img:before{
		width: 700px;
		height: 700px;
	}
	.circle04{
		width: 650px;
		height: 650px;
	}
}

@media(max-width:1200px) {
	.about_main{
		height: 690px;
		margin-bottom: 60px;
	}
	.about_container{
		padding: 0 15px;
	}
	.about_container>p span{
		font-size: 2rem;
	}
	.about_main_img{
		padding-right: 30px;
	}
	.about_main_img:before {
		width: 520px;
		height: 520px;
	}
	.circle04 {
		width: 500px;
		height: 500px;
	}
}
@media(max-width: 950px){
	.about_main{
		height: 100%;
		flex-direction: column;
		align-items: flex-end;
		margin-bottom: 90px;
	}
	.about_container{
		max-width: 100%;
	}
	.about_container>p span{
		font-size: 1.8rem;
	}
	.about_main_img:before {
		width: 470px;
		height: 470px;
		right: 0;
	}	
	.circle04 {
		width: 450px;
		height: 450px;
	}
	.about_between_bg{
		background-position-x: 15%;
	}
	.about_industry_box{
		margin-bottom: 40px;
	}
	.circle05{
		width: 350px;
		height: 350px;
	}
	.about_industry_text>p{
		line-height: 1.7;
	}
}
@media (max-width:780px){
	.about_industry_link{
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 20px;
	}
	.about_industry_box{
		flex-direction: column-reverse;
		align-items: center;
	}
	.about_industry_box.typeR {
		flex-direction: column;
		align-items: center;
	}
	.about_industry_text{
		width: 100%;
		padding: 0;
	}
	.about_industry_text>p{
		padding: 30px 0;
	}
	.about_industry_img{
		width: 100%;
	}
}
@media(max-width: 550px){
	.about_container>p span{
		font-size: 1.25rem;
	}
	.about_container>p{
		font-size: 1rem;
	}
	.about_main_img:before {
		width: 330px;
		height: 330px;
	}
	.circle04 {
		width: 320px;
		height: 320px;
	}
	.about_industry_link{
		gap: 10px;
	}
	.about_between_bg{
		background-position-x: 33%;
		background-position-y: 30%;
	}
	.circle05 {
		width: 300px;
		height: 300px;
	}
}
/* --------------COMPANY-------------- */
.company_mv {
	width: 100%;
	height: 100%;
	background: url(./images/mv/company_mv.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}
.company_container{
	width: 100%;
	height: 100%;
	background: url(./images/bg/section_bg3.png) no-repeat;
	background-size: contain;
	background-position: center;
	background-attachment: fixed;
}
.company_inner{
	max-width: 1200px;
	height: 100%;
	display: block;
	margin: auto;
	padding: 0 15px;
}
.greeting_content{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding-bottom: 100px;
}
.greeting_img {
	width: 500px;
	height: 500px;
	position: relative;
}
.greeting_img::before {
	content: '';
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background-color: var(--green);
	position: absolute;
	left: -10%;
	bottom: -3%;
	z-index: -1;
}
.circle06 {
	width: 500px;
	height: 500px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
}
.circle06_img {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	object-fit: cover;
}
.greeting_text{
	width: 50%;
	height: auto;
	display: inline-block;
	text-align: left;
	padding: 15px;
}
.greeting_text>p{
	padding: 40px 0 0 0;
	color: var(--black);
	font-size: 1.125rem;
	line-height: 2.0;
	letter-spacing: 1px;
	text-align: justify;
}
.greeting_text>p span{
	display: block;
	text-align: end;
}
.company_overview{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding-bottom: 100px;
}
.overview_text{
	display: block;
	width: 60%;
}
table.overview_table{
	width: 100%;
	height: auto;
	margin-top: 50px;
	text-align: left;
	font-size: 1.125rem;
}
table.overview_table th{
	width: 25%;
	padding: 10px;
}
table.overview_table td{
	width: 75%;
	padding: 10px;
}
.overview_img{
	width: 40%;
}
.circle07 {
	width: 400px;
	height: 400px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	box-shadow: 0px 10px 10px -2px rgba(0, 0, 0, 0.3);
}
.circle07_img {
	position: absolute;
	top: 0;
	right: 0;
	width: auto;
	height: 100%;
	object-fit: cover;
}
/* 追加分 */
table.Initiatives_table {
	width: 100%;
	height: auto;
	margin-top: 50px;
	text-align: left;
	font-size: 1.125rem;
}

table.Initiatives_table th {
	width: 50%;
	padding: 10px;
}

table.Initiatives_table td {
	width: 50%;
	padding: 10px;
}

.Initiatives h4 {
	border-bottom:none;
	padding-top: 10px;
	margin-bottom: 0;
}

.history{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding-bottom: 100px;
}
.history_img .Initiatives_img {
	width: 40%;
}
.timeline {
	position: relative;
	margin: 50px auto;
	padding-bottom: 2em;
}
.timeline:before {
	position: absolute;
	top: 0px;
	left: 45px;
	width: 3px;
	height: 100%;
	content: '';
	background: var(--blue);
}
.timeline .timeline_item {
	margin: 0px 0px 0px 80px;
}
.timeline .timeline_item .time_date .time {
	font-family: serif;
	font-size: 3.8rem;
	font-weight: bold;
	position: relative;
	margin: 0;
	letter-spacing: 3px;
	color: rgba(28, 93, 171, 0.1);
}
.timeline .timeline_item .time_date .flag {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0;
	margin-top: -40px;
	color: var(--green);
}
.timeline .timeline_item .subtitle {
	font-size: 1.125rem;
	padding-left: 20px;
	border-left: 1px solid var(--blue);
}
.timeline .timeline_item .desc {
	font-size: 1.125rem;
	line-height: 20px;
	margin-top: 10px;
	padding-left: 20px;
}
.company_add{
	width: 100%;
	height: 500px;
}
.company_add_container{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.company_add_img{
	width: 50%;
	height: 100%;
	background-image: url(./images/company_img04.jpg);
	background-size: cover;
	background-position: left center;
}
.company_add map{
	width: 50%;
	height: 100%;
	position: relative;
}
.company_add map iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.gap-below {
	padding-bottom: 30px;
}

.history_text h4 {
	padding-bottom: 10px;
}

.Initiatives p {
	font-size: 18px;
}


@media(max-width:1200px){
	.greeting_img,
	.circle06{
		width: 400px;
		height: 400px;
	}
	.greeting_img::before{
		width: 400px;
		height: 400px;
		left: -5%;
		bottom: -2%;
	}
	.greeting_text>p{
		line-height: 1.7;
	}
}
@media(max-width: 950px){
	.greeting_img,
	.circle06 {
		width: 350px;
		height: 350px;
	}
	.greeting_img::before {
		width: 350px;
		height: 350px;
		left: -5%;
		bottom: -2%;
	}
}
@media (max-width:780px){
	.greeting_content{
		flex-direction: column;
		gap: 20px;
	}
	.greeting_text{
		width: 100%;
	}
	.company_overview {
		flex-direction: column-reverse;
		gap: 20px;
		margin-bottom: 0;
	}
	.history_img {
		width: 400px;
		height: 400px;
	}
 
	.overview_text,
	.history_text {
		width: 100%;
	}
	.history{
		flex-direction: column-reverse;
		gap: 20px;
	}
	.timeline:before {
		left: 15px;
	}
	.timeline .timeline_item .time_date .time:before {
		left: -32px;
	}
	.timeline .timeline_item {
		margin: 0px 0px 0px 40px;
	}
	.timeline .timeline_item .subtitle,
	.timeline .timeline_item .desc {
		padding-left: 0px;
		border-left: none;
	}
	.company_add {
		width: 100%;
		height: 600px;
		margin-bottom: 60px;
	}
	.company_add_container {
		flex-direction: column;
	}
	.company_add_img,
	.company_add map{
		width: 100%;
		height: 50%;
	}
	.Initiatives .company_overview {
		flex-direction: column;
	}
}
@media (max-width:550px) {
	.greeting_content{
		padding-bottom: 60px;
	}
	.greeting_img,
	.greeting_img::before,
	.circle06 {
		width: 300px;
		height: 300px;
		}
	.greeting_text {
		width: 100%;
	}
	.greeting_text>p {
		padding: 20px 0 0 0;
		color: var(--black);
		font-size: 1rem;
		line-height: 1.7;
		letter-spacing: 1px;
	}
	.overview_text{
		width: 100%;
	}
	table.overview_table{
		margin-top: 30px;
		font-size: 1rem;
	}
	table.overview_table th {
		width: 100%;
		padding: 10px;
		display: inline-block;
	}
	table.overview_table td {
		width: 100%;
		padding: 10px;
		display: inline-block;
	}
	.history{
		padding-bottom: 60px;
	}
	.overview_img,
	.history_img{
		width: 300px;
		height: 300px;
	}
	.circle07{
		width: 300px;
		height: 300px;
	}
	table.Initiatives_text {
		margin-top: 30px;
		font-size: 1rem;
	}

	table.Initiatives_table th {
		width: 100%;
		padding: 10px;
		display: inline-block;
	}

	table.Initiatives_table td {
		width: 100%;
		padding: 10px;
		display: inline-block;
	}

	.Initiatives .company_overview {
		flex-direction: column;
	}
}
/* ------------COMPANY end------------ */

/* --------------WORKS-------------- */
.works_mv {
	width: 100%;
	height: 100%;
	background: url(./images/mv/works_mv.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	margin-bottom: 90px;
}
.works_list{
	max-width: 1000px;
	height: 100%;
	padding: 0 15px;
	margin: auto;
	text-align: center;
}
.works_list_title{
	font-size: 1.875rem;
	font-weight: 600;
	font-family: var(--m-plus);
	color: var(--blue);
	margin-bottom: 30px;
}
.works_pagelink{
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto 60px;
}
.works_list_wrap{
	width: 100%;
	margin-bottom: 90px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 60px;
	overflow: hidden;
}
.works_list_container{
	width: 100%;
	padding: 0 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.works_list_container>img{
	width: 350px;
	height: auto;
}
.works_list_inner{
	width: 80%;
	height: auto;
	display: block;
	overflow: hidden;
}
.works_list_inner>p{
	font-size: 1.125rem;
	font-weight: bold;
	padding: 20px;
}
table.works_list_table{
	color: var(--black);
	font-size: 1.125rem;
	margin: 20px 0;
}
.works_list_table tr td{
	padding: 10px;
	text-align: left;
}
.works_list_table tr td:nth-child(1){
	width: 13%;
}
.works_list_table tr td:nth-child(2){
	width: 15%;
}
.works_list_table tr td:nth-child(3){
	width: 15%;
}
.works_list_table tr td:nth-child(4) {
	width: 52%;
	text-align: left;
}

.work_list_box {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding-top: 20px;
}

.flex_item {
	width: 31%;
}

.flex_item img {
	width: 100%;
	height: auto;
}

.work_list_box p {
	font-size: 16px;
}

p.small_txt {
	font-size: 12px;
	font-weight: normal;
	color: #a40000;
}

.preparation {
	text-align: left;
}





@media(max-width:1200px){
	.works_pagelink{
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 20px;
	}
}
@media(max-width:1000px) {
	.works_list_container{
		flex-direction: column;
	}
	.works_list_inner{
		width: 100%;
	}
	.works_list_table tr td{
		padding: 5px;
	}
	.works_list_table tr td:nth-child(1),
	.works_list_table tr td:nth-child(2),
	.works_list_table tr td:nth-child(3){
		width: 15%;
	}
	.works_list_table tr td:nth-child(4) {
		width: 55%;
	}
}
@media(max-width:780px){
	.works_pagelink {
		justify-content: center;
	}
	.works_list_container {
		padding: 0;
	}
	table.works_list_table{
		text-align: left;
		font-size: 1rem;
	}
	.works_list_table tr{
		display: inline-block;
		margin-bottom: 20px;
	}
	.works_list_table tr td:nth-child(1),
	.works_list_table tr td:nth-child(2),
	.works_list_table tr td:nth-child(3) {
		display: initial;
		padding-right: 20px;
	}
	.works_list_table tr td:nth-child(4){
		display: block;
		width: 100%;
	}
	
}
@media(max-width:550px){
	.works_list_container>img{
		width: 300px;
		height: auto;
	}
	.work_list_box {
		flex-direction: column;
	}

	.flex_item {
		width: 100%;
	}
}
/* ------------WORKS end ------------ */
/* ------------RICRUIT------------ */
.recruit_mv {
	width: 100%;
	height: 100%;
	background: url(./images/mv/recruit_mv.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}
.recruit_text{
	width: 100%;
	height: 100%;
	background: url(./images/bg/recruit_bg.png) no-repeat;
	background-size: 50%;
	background-position: bottom right;
}

.orange_txt {
	font-size: 24px;
	color: var(--orange);
}
.recruit_text_container{
	text-align: center;
	padding: 15px;
}
.item{
	width: auto;
	margin-bottom: 30px;
	transform: translateY(10px);
	opacity: 0;
	transition: .5s;
}
.item.show {
	transform: translateY(0);
	opacity: 1;
}
.recruit_text_container>p span{
	font-family: var(--m-plus);
	font-size: 2.25rem;
	color: var(--jade);
	line-height: 2.0;
}
.orange_txt {
	background: linear-gradient(transparent 50%, #bde4f7 50%);
	padding: 0 0.1em;
}
.recruit_text_container>p{
	font-size: 1.125rem;
	color: var(--black);
	line-height: 2.0;
	margin-bottom: 60px;
}
.recruit_list{
	margin-bottom: 120px;
}
.recruit_list_title {
	font-size: 1.875rem;
	font-weight: 600;
	font-family: var(--m-plus);
	color: var(--blue);
	margin-bottom: 30px;
	text-align: center;
}
.recruit_pagelink {
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto 60px;
}
.recruit_list_container{
	width: 100%;
	height: 100%;
	text-align: center;
	margin: 120px 0;
}
.recruit_list_inner_left{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 100px;
}
.recruit_list_inner_right {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 100px;
}
.rec_left_img{
	display: block;
	width: 45%;
	height: 490px;
	background-color: var(--blue);
	position: relative;
	margin-top: 80px;
	z-index: -1;
}
.rec_left_img01{
	width: 60%;
	height: auto;
	position: absolute;
	top: -70px;
	left: 0;
	overflow: hidden;
}
.rec_left_img02 {
	width: 60%;
	height: auto;
	position: absolute;
	top: 270px;
	left: 20%;
	overflow: hidden;
}
.rec_right_img {
	display: block;
	width: 45%;
	height: 490px;
	background-color: var(--blue);
	position: relative;
	margin-top: 80px;
	z-index: -1;
}
.rec_right_img01 {
	width: 65%;
	height: auto;
	position: absolute;
	top: -70px;
	right: 0;
	overflow: hidden;
}
.rec_right_img02 {
	width: 60%;
	height: auto;
	position: absolute;
	top: 270px;
	right: 20%;
	overflow: hidden;
}
.recruit_table{
	width: 40%;
	color: var(--black);
	font-size: 1rem;
	text-align: left;
}
.recruit_table tr{
	border-bottom: 1px solid #8cbeff;
}
.recruit_table tr:last-child{
	border-bottom: none;
}
.recruit_table th{
	width: 20%;
	vertical-align: baseline;
	padding: 20px 5px;
}
.recruit_table td {
	padding: 20px 5px;
}

.recruit_table td span {
	font-weight: bold;
}

@media(max-width:1500px){
	.recruit_list_inner_left,
	.recruit_list_inner_right {
		gap: 70px;
	}
	.rec_left_img,
	.rec_right_img{
		height: 400px;
	}
	.rec_left_img01 {
		width: 70%;
		top: -50px;
		left: 0;
	}
	.rec_left_img02 {
		width: 70%;
		top: 220px;
		left: 15%;
	}
	.rec_right_img01 {
		width: 70%;
		top: -50px;
		right: 0;
	}
	.rec_right_img02 {
		width: 70%;
		top: 220px;
		right: 15%;
	}
	.recruit_table{
		width: 45%;
	}
}
@media(max-width:1200px) {
	.recruit_list_inner_left,
	.recruit_list_inner_right {
		gap: 40px;
	}
	.rec_left_img,
	.rec_right_img {
		width: 40%;
		height: 300px;
		margin-top: 100px;
	}
	.rec_left_img01 {
		width: 80%;
		top: -50px;
	}
	.rec_left_img02 {
		width: 80%;
		top: 170px;
		left: 10%;
	}
	.rec_right_img01 {
		width: 80%;
		top: -50px;
	}
	.rec_right_img02 {
		width: 80%;
		top: 170px;
		right: 10%;
	}
	.recruit_table {
		width: 50%;
	}
}
@media(max-width:900px){
	.recruit_text_container>img {
		width: 100%;
	}
	.recruit_pagelink{
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 20px;
		padding: 0 15px;
	}
	.recruit_list_container{
		margin: 90px 0;
	}
	.recruit_list_inner_left{
		height: 100%;
		flex-direction: column;
		gap: 80px;
	}
	.recruit_list_inner_right {
		height: 100%;
		flex-direction: column-reverse;
		align-items: flex-end;
		gap: 80px;
	}
	.rec_left_img,
	.rec_right_img{
		width: 85%;
		height: 350px;
		margin-top: 100px;
	}
	.rec_left_img01 {
		width: 65%;
		top: -100px;
		left: 0;
	}
	.rec_left_img02 {
		width: 65%;
		top: 180px;
		left: 10%;
	}
	.rec_right_img01 {
		width: 65%;
		top: -100px;
		right: 0;
	}
	.rec_right_img02 {
		width: 65%;
		top: 180px;
		right: 10%;
	}
	.recruit_table{
		width: 93%;
		margin: 0 15px;
	}
}

@media(max-width:780px){
	.recruit_mv{
		background-position: left center;
	}
	.recruit_text{
		background-size: 70%;
	}
	.recruit_text_container>p span{
		font-size: 1.8rem;
		line-height: 1.7;
	}
	.recruit_list {
		margin-bottom: 90px;
	}
	.recruit_list_inner_left,
	.recruit_list_inner_right{
		gap: 130px;
	}
	.rec_left_img,
	.rec_right_img{
		height: 300px;
		margin-top: 75px;
	}	
	.rec_left_img01 {
		width: 70%;
		top: -75px;
		left: 0;
	}
	.rec_left_img02 {
		width: 70%;
		top: 190px;
		left: 20%;
	}
	.rec_right_img01 {
		width: 70%;
		top: -75px;
		right: 0;
	}
	.rec_right_img02 {
		width: 70%;
		top: 190px;
		right: 20%;
	}
}

@media(max-width:689px){
	.recruit_pagelink{
		justify-content: center;
	}
}
@media(max-width:550px) {
	.recruit_text{
		background-size: 100%;
	}
	.recruit_list_title{
		font-size: 1.5rem;
	}
	.recruit_text_container>p span {
		font-size: 1.25rem;
	}
	.recruit_text_container>p{
		line-height: 1.7;
		font-size: 1rem;
	}
	.recruit_list {
		margin-bottom: 60px;
	}
	.rec_left_img,
	.rec_right_img{
		width: 100%;
		margin-top: 60px;
	}
	.rec_left_img01,
	.rec_right_img01{
		top: -45px;
	}
	.rec_left_img02,
	.rec_right_img02{
		top: 170px;
	}
	.recruit_table th{
		width: 100%;
		padding: 10px 5px;
		display: block;
	}
	.recruit_table td{
		width: 100%;
		padding: 5px;
		display: block;
	}
}
@media(max-width:440px){
	.recruit_list_inner_left{
		gap: 80px;
	}
	.rec_left_img,
	.rec_right_img{
		height: 250px;
		margin-top: 40px;
	}
	.rec_left_img01,
	.rec_right_img01{
		width: 75%;
		top: -50px;
	}
	.rec_left_img02,
	.rec_right_img02{
		width: 75%;
		top: 140px;
	}
}

/* --------------area entry-------------- */
.area_entry{
	margin-bottom: 120px;
}
.area_contact {
	width: 100%;
	height: 500px;
	position: relative;
}
.area_entry_container {
	max-width: 1000px;
	height: 100%;
	padding: 0 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}
.entry_box {
	width: 100%;
	height: 280px;
	border-radius: 50px;
	text-align: center;
	padding: 20px;
	color: #fff;
	background-color: var(--orange);
}
h2.entry_box_title {
	font-family: var(--arya);
	font-size: 3.125rem;
	background-color: unset;
}
.entry_box_text {
	font-size: 1.25rem;
	font-family: var(--m-plus);
	margin-bottom: 15px;
}
.entry_box_tel {
	font-size: 1rem;
	font-family: var(--m-plus);
}
.entry_box_tel>span{
	font-size: 2.25rem;
	font-family: var(--arya);
}
.btn_entrybox {
	width: 100%;
	max-width: 320px;
	height: 50px;
	padding: 0 20px;
	position: relative;
	text-decoration: none;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 25px;
	background-color: #fff;
	transition: background-color 0.3s ease;
	overflow: hidden;
	margin: 0 auto 20px;
}
.btn_entrybox::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background-color: var(--orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.btn_entrybox .btn_entrytext {
	position: relative;
	font-family: var(--m-plusa);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--orange);
	z-index: 2;
	transition: color 0.3s ease;
}
.btn_entrybox:hover {
	background-color: var(--orange);
}
.btn_entrybox:hover::before {
	transform: scaleX(1);
}
.btn_entrybox:hover .btn_entrytext {
	color: #fff;
}

@media(max-width:550px) {
	.area_entry {
		height: 350px;
		margin-bottom: 90px;
	}
	.entry_box {
		height: 300px;
		border-radius: 30px;
		padding: 25px;
	}
	h2.entry_box_title {
		font-size: 2.25rem;
		margin-bottom: 15px;
	}
	.entry_box_text {
		font-size: 1.125rem;
	}
	.btn_entrybox .btn_entrytext {
		font-size: 1.125rem;
	}
}
/* ------------RECRUIT end ------------ */
/* ------------ PRIVACY POLICY ------------ */
.page_privacy{
	width: 100%;
	height: 100%;
}
.page_privacy_container{
	max-width: 1200px;
	height: 100%;
	padding: 0 15px;
	margin: auto;
}
.page_privacy_inner{
	width: 100%;
	height: auto;
	text-align: left;
	margin: 90px 0;
}
.page_privacy_inner>p{
	color: var(--black);
	font-size: 1rem;
	line-height: 2.0;
	margin-bottom: 30px;
}
.page_privacy_inner>span{
	color: var(--blue);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 2.0;
}
.page_privacy_inner .indent{
	text-indent: -1em;
	padding-left: 1em;
}
@media(max-width:1200px) {
.page_privacy_container{
	padding: 0;
}
.page_privacy_inner{
	margin: 60px 0;
	padding: 0 15px;
}
}

/* ------------ PRIVACY POLICY end------------ */
/* ---------------- CONTACT&ENTRY----------------- */
.page_contact,
.page_entry {
	width: 100%;
	height: 100%;
}
.page_contact_thanks,
.page_entry_thanks{
	width: 100%;
	height: 100%;
	background-image: url(./images/bg/thanks_bg.png);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 30%;
}
.page_contact_container,
.page_entry_container {
	max-width: 1200px;
	height: 100%;
	padding: 0 15px;
	margin: 0 auto 90px;
}
.page_contact_inner {
	width: 100%;
	height: auto;
	text-align: center;
	margin: 90px 0;
}
.page_contact_inner>p{
	color: var(--black);
	font-family: var(--m-plus);
	font-size: 1.125rem;
	line-height: 2.0;
	margin-bottom: 40px;
}
.page_contact_inner>p span{
	color: #a40000;
	font-family: var(--m-plus);
	font-size: 1.125rem;
	font-weight: 500;
}
.contact_tel,
.entry_tel{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.contact_tel_h{
	width: 150px;
	height: 150px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--green);
}
.entry_tel_h {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--green);
}
.contact_tel_h>p,
.entry_tel_h>p{
	font-family: var(--m-plus);
	font-size: 1.125rem;
	color: #fff;
}
.contact_tel>p,
.entry_tel>p{
	width: 30%;
	font-family: var(--m-plus);
	font-size: 1rem;
	text-align: left;
	line-height: 2.0;
}
.contact_tel>p span,
.entry_tel>p span{
	font-size: 1.125rem;
	font-weight: 600;
}
@media(max-width:1200px) {
	.page_contact_thanks,
	.page_entry_thanks {
		background-size: 50%;
	}
}
@media(max-width:780px){
	.contact_tel>p,
	.entry_tel>p {
		width: 50%;
	}	
	.page_contact_thanks,
	.page_entry_thanks{
		background-size: 80%;
	}	
}
@media(max-width:550px){
	.page_contact_thanks,
		.page_entry_thanks{
			background-size: 90%;
		}
	.page_contact_inner{
		margin: 60px 0;
	}
	.contact_tel,
	.entry_tel{
		gap: 10px;
	}
	.contact_tel_h,
	.entry_tel_h{
		width: 100px;
		height: 100px;
	}
	.contact_tel_h>p,
	.entry_tel_h>p{
		font-size: 1rem;
	}
	.contact_tel>p,
	.entry_tel>p {
		width: 60%;
	}
	.contact_tel>p span,
	.entry_tel>p span{
		font-size: 1rem;
	}
}
/* ----------form----------------- */
.contact_form_inner {
	max-width: 1000px;
	height: auto;
	margin: auto;
	padding: 0 15px;
}
.contact_table {
	width: 100%;
	margin-bottom: 60px;
}
.contact_table input,
.contact_table textarea {
	background: #f2f2f2;
	border: 1px solid #999;
	padding: 8px 10px;
	width: 100%;
}
.contact_table th {
	font-weight: normal;
	padding-bottom: 25px;
	text-align: left;
}
.contact_table th>p {
	display: flex;
	justify-content: space-between;
	width: 90%;
	gap: 20px;
}
.contact_table th p>label {
	font-size: 1.125rem;
	font-weight: 600;
}
.contact_table td {
	width: 75%;
	padding-bottom: 25px;
	text-align: left;
}
.contact_table td #your-name,
.contact_table td #your-name-kana,
.contact_table td #tel {
	width: 40%;
}

.wpcf7-list-item>label {
	display: flex;
	align-items: center;
	gap: 5px;
	width: 180px;
}
.wpcf7-list-item>label input {
	box-shadow: none;
	width: 50px;
	height: 50px;
}
.wpcf7-list-item-label {
	width: 200%;
}
.contact_table tr:last-child td {
	padding-bottom: 0;
}
.requied {
	background: #a40000;
	color: #fff;
	padding: 2px 10px;
}

.btn_sendbox {
	width: 100%;
	max-width: 320px;
	height: 50px;
	padding: 0 20px;
	position: relative;
	text-decoration: none;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 25px;
	background-color: var(--green);
	transition: background-color 0.3s ease;
	overflow: hidden;
	margin: 0 auto 20px;
}
.btn_sendbox::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	border: 1px solid var(--green);
	background-color: #fff;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.btn_sendbox .send_btn {
	position: relative;
	font-family: var(--m-plusa);
	font-size: 1.25rem;
	font-weight: 600;
	margin-left: 75px;
	color: #fff;
	z-index: 2;
	transition: color 0.3s ease;
}
.btn_sendbox:hover {
	background-color: #fff;
	border: 1px solid var(--green);
}
.btn_sendbox:hover::before {
	transform: scaleX(1);
}
.btn_sendbox:hover .send_btn {
	color:var(--green);
}

.btn_sendbox2 {
	width: 100%;
	max-width: 320px;
	height: 50px;
	padding: 0 20px;
	position: relative;
	text-decoration: none;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 25px;
	background-color: var(--green);
	transition: background-color 0.3s ease;
	overflow: hidden;
	margin: 0 auto 20px;
}

.btn_sendbox2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	border: 1px solid var(--green);
	background-color: #fff;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.btn_sendbox2 .send_btn2 {
	position: relative;
	font-family: var(--m-plusa);
	font-size: 1.25rem;
	font-weight: 600;
	margin-left: 75px;
	color: #fff;
	z-index: 2;
	transition: color 0.3s ease;
}

.btn_sendbox2:hover {
	background-color: #fff;
	border: 1px solid var(--green);
}

.btn_sendbox2:hover::before {
	transform: scaleX(1);
}

.btn_sendbox2:hover .send_btn2 {
	color: var(--green);
}
.thanks_text{
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.7;
	margin-bottom: 60px;
}

 @media(max-width:700px) {
 	.contact_form_inner {
 		width: 85%;
 		margin: auto;
 	}
 	.contact_table th {
 		display: block;
 	}
 	.contact_table th>p {
 		justify-content: flex-start;
 	}
 	.contact_table td {
 		width: 100%;
 		display: block;
 	}
 	.contact_table td #your-name,
 	.contact_table td #your-name-kana,
 	.contact_table td #tel {
 		width: 100%;
 	}
 }
@media(max-width:550px) {
	.contact_form_inner {
		width: 100%;
	}
}
/* ---------------- CONTACT end-------------- */
