@CHARSET "UTF-8";
/*
Theme Name: 東光ガード株式会社様
date: 2025.06.01
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root {
	--bk: #000;
  --blue: #003395;
	--l_blue: #EBF7FF;
  --orange: #FFA700;
	--gray: #F2F2F2;
	--red: #B51A1A;
}

*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 400;
	font-family: "Lato","Noto Sans JP", sans-serif;
	color: var(--bk);
	line-height: 1.7;
	letter-spacing: 1px;
}



/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer{
  margin-top: auto;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 400;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 500;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 400;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}

.wrapper{
	width: 90%;
	max-width: 1180px;
	margin: 0 auto;
}
.short_wrap{
	max-width: 860px;
}
.hidden{
	overflow: hidden;
}
.section{
	padding: 4rem 0;
}

.bg{
	background: var(--gray);
}
.bg_blue{
	background: var(--blue);
	color: #fff;
}

.block{
	margin-bottom: 5rem;
}
.block_title{
	border-left: var(--blue) solid .5rem;
	padding: .5rem 0 .5rem 2rem;
	margin-bottom: 2rem;
	font-size: 2rem;
}

.page_container{
	padding-bottom: 8rem;
}
.page_header{
	background: url('images/common/page_header.jpg') no-repeat center center / cover;
	height: 18rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	margin-bottom: 3rem;
}
.page_title{
	color: #fff;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.4;
}
.page_title span{
	font-size: 50%;
	display: block;
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
}
#breadcrumbs{
	position: absolute;
	bottom: 1rem;
	left: 5%;
	font-size: 1rem;
	color: #fff;
	line-height: 1;
}
#breadcrumbs a{
	color: #fff;
}

#message_404 p{
	margin-bottom: 5rem;
}
#message_404 .btn_link{
	margin: 0;
	font-weight: 600;
}

.page_intro{
	margin-bottom: 5rem;
	
}
.page_intro h2{
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 600;
}
.page_intro p{
	margin: 2rem auto 0;
	max-width: 1000px;
}

.page_nav{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -.5rem 5rem;
}
.page_nav li{
	padding: 0 .5rem;
	margin: .5rem 0;
	width: 50%;
}
.page_nav .btn_link{
	border-radius: .5rem;
}




/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 150%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 700;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: none;
	transition: .3s;
}
*:focus {
  outline: none;
}

.btn_link{
	background: var(--blue);
	border: var(--blue) solid 1px;
	color: #fff;
	display: block;
	padding: 1rem;
	width: 100%;
	max-width: 370px;
	margin: 0 auto;
	text-align: center;
  position: relative;
	transition: .3s;
}

.btn_more{
	display: flex;
	width: 12rem;
	align-items: center;
	position: relative;
	margin: 0 auto;
	padding-bottom: .5rem;
	font-weight: 700;
	overflow: hidden;
}
.btn_more .btn_more__arrow{
	width: 2rem;
	height: 2rem;
	object-fit: contain;
	margin: 0 0 0 auto;
	transition: .3s;
}
.btn_more::before,
.btn_more::after{
	content: '';
	background: var(--bk);
	width: 100%;
	height: .1rem;
	bottom: 0;
	right: 0;
	transition: .3s;
	z-index: 1;
	position: absolute;
}
.btn_more::after{
	right: 100%;
}
.btn_more:hover::before{
	width: 0;
}
.btn_more:hover::after{
	right: 0;
	transition-delay: .5s;
}

.bg_blue .btn_more{
	color: #fff;
}
.bg_blue .btn_more::before,
.bg_blue .btn_more::after{
	background: #fff;
}

.arrow{
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	right: 0;
	top: 50%;
	translate: 0 -50%;
	overflow: hidden;
	transition: .3s;
}
.arrow::before{
	content: '';
	width: 100%;
	height: 100%;
	background: url('images/common/arrow_white.svg') no-repeat center center / contain;
	position: absolute;
	left: 0;
	top: 0;
	transition: .3s;
}
.arrow::after{
	content: '';
	width: 100%;
	height: 100%;
	background: url('images/common/arrow_white.svg') no-repeat center center / contain;
	position: absolute;
	left: -110%;
	top: 0;
	transition: .5s;
}
.arrow_bk::before,
.arrow_bk::after{
	background: url('images/common/arrow_bk.svg') no-repeat center center / contain;
}

.btn_more .arrow{
	width: 2rem;
}

.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}


input[type="submit"]{
	outline: 0;
	box-shadow: none;
	border: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}



/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: .3s;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
	overflow: hidden;
}
.img_clip::before{
	content: '';
	padding-top: 60%;
	display: block;
	background: #ccc;
}
.img_clip img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s;
}

.wp-block-embed-youtube .wp-block-embed__wrapper,
.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




/* =tub
-------------------------------------------------------------- */

summary{
	cursor: pointer;
}
summary::marker{
  content: none;
}
summary::-webkit-details-marker{
  display: none;
}

.accordion dd{
	display: none;
}

.tub{
	display: flex;
}
.tub li{
	cursor: pointer;
}
.tub_content{
	display: none;
}
.content_current{
	display: block;
}

.icon_plus{
	position: absolute;
	top: 50%;
	right: 1rem;
	background: var(--blue);
	width: 1.5rem;
	height: 1px;
} 
.icon_plus::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	background: var(--blue);
	width: 1.5rem;
	height: 1px;
	rotate: 90deg;
	transition: .3s;
}
[open] .icon_plus::before{
	rotate: none;
}



/* =slick base
-------------------------------------------------------------- */

.slick-arrow{
	width: 2rem;
  height: 2rem;
  z-index: 10;
	background: #fff;
	border: var(--blue) solid .5rem;
}
.slick-prev{
  left: 2rem;
}
.slick-next{
  right: 2rem;
}
.slick-arrow::before{
	content: '' !important;
  width: 80%;
  height: 50%;
  border: 0;
	background: url('images/common/arrow_blue.svg') no-repeat center center / contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
	translate: -50% -50%;
}
.slick-prev{
	scale: -1 1;
}
.slick-slide:focus{
  outline: 0;
}
.slick-dots > li:first-child:last-child {
   display: none;
}
.slick-dots{
	bottom: -2rem;
	z-index: 10;
}
.slick-dots li{
	width: .5rem;
	height: .5rem;
}
.slick-dots li button{
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 50px;
	padding: 0;
}
.slick-dots li.slick-active button{
	background: #fff;
}
.slick-dots li button:before{
	content: none;
}






/* =header
-------------------------------------------------------------- */

#page{
	padding-top: 5rem;
}
#site_header{
  padding: 0 1rem;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 999;
	display: flex;
	align-items: center;
	height: 5rem;
}
#header_logo{
  display: block;
  width: 45%;
	max-width: 20rem;
  margin: 0 auto 0 0;
}
#header_nav__btn{
	position: fixed;
	top: 0;
	right: 0;
	width: 5rem;
	height: 5rem;
	text-align: center;
	z-index: 9999;
  cursor: pointer;
}
#header_nav__btn .border_wrap{
  position: absolute;
	left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
#header_nav__btn .border{
	width: 30px;
	height: 3px;
	background: var(--blue);
	border-radius: 3px;
  display: block;
  margin-bottom: 5px;
  transition: all .4s;
	box-sizing: border-box;
}
#header_nav__btn .border:last-child{
  margin: 0;
}
.nav_active #header_nav__btn{
	background: var(--blue);
}
.nav_active #header_nav__btn .border{
  background: #fff;
}
/* 2本＋menu */
.nav_active #header_nav__btn .border:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-30deg);
	transform: translateY(4px) rotate(-30deg);
}
.nav_active #header_nav__btn .border:nth-of-type(2) {
	-webkit-transform: translateY(-8px) rotate(30deg);
	transform: translateY(-4px) rotate(30deg);
}


#header_nav__inner{
	width: 100%;
	height: 100%;
	background: var(--blue);
	z-index: 999;
	position: fixed;
	top: 5rem;
	right: -40rem;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	padding: 3rem 5% 8rem;
}
.nav_active #header_nav__inner{
	opacity: 1;
	visibility: visible;
	right: 0;
}
.main_navigation{
	position: relative;
}
.nav_link{
	display: block;
	padding: 1.5rem;
	position: relative;
	color: #fff;
}
.nav_parent .icon_plus,
.nav_parent .icon_plus::before{
	background: #fff;
}
.nav_child{
	padding-left: 3rem;
}
.nav_child .nav_link{
	padding: 1rem;
}

.nav_pc{
	display: none;
}

.header_nav__links{
	display: flex;
	align-items: center;
	margin-right: 4rem;
}
.header_nav__links li{
	margin-right: 2px;
}
.header_nav__links li a{
	background: var(--blue);
	width: 5rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header_nav__links li a .icon{
	width: 3rem;
}
.header_nav__img{
	display: none;
}



/* =footer
-------------------------------------------------------------- */

#site_footer{
	background: var(--blue);
	color: #fff;
	padding: 5rem 0 2rem;
}
#footer_logo{
	display: block;
	width: 100%;
	background: #fff;
	padding: 1rem;
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 2rem;
}
#footer_info p span{
	font-size: 110%;
	font-weight: 600;
}
#footer_bottom__nav,
#footer_nav{
	display: none;
}
#footer_info{
	text-align: center;
	margin-bottom: 4rem;
}
#footer_bottom__btn a{
	width: 100%;
	max-width: 30rem;
	margin: 0 auto 1rem;
	border-radius: .5rem;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}
#footer_bottom__btn a .icon{
	width: auto;
	height: 3rem;
	margin-right: 2rem;
}
.btn_recruit{
	color: #fff;
	background: var(--bk);
}
.btn_members{
	color: var(--blue);
	background: #fff;
}
#footer_copy{
	margin-top: 3rem;
	font-size: 1rem;
	text-align: center;
}






/* =top
-------------------------------------------------------------- */

#recruit_bnr{
	position: fixed;
	bottom: 1rem;
	right: 50%;
	translate: 50% 0;
	width: 70%;
	z-index: 99;
	max-width: 28rem;
}
#recruit_bnr__close{
	position: absolute;
	top: -1rem;
	right: -1rem;
	width: 3rem;
	z-index: 50;
}
#loading{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: url('images/top/main_pre.jpg') no-repeat center center / cover;
}
#loading_inner{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 3rem;
	font-weight: 900;
	translate: -50% -50%;
	line-height: 1.5;
}
#loading_inner span{
	font-size: 60%;
	display: block;
	font-weight: 500;
	margin-bottom: .5rem;
}
#main01{
	position: relative;
	display: block;
}
#main01 .main_visual__img{
	width: 100%;
}
#main01 .main_visual__img .img_clip::before{
	padding-top: 60%;
}
#main01_inner{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 3rem;
	translate: -50% -50%;
	line-height: 1.5;
	z-index: 10;
	background: none;
}
#main01_inner h1{
	font-weight: 900;
}
#main01_inner span{
	font-size: 60%;
	display: block;
	font-weight: 500;
	margin-bottom: .5rem;
}
#main_visual{
	position: relative;
	z-index: 20;
}
#main_visual::before{
	content: '';
	background: url('images/top/main_bg.png') no-repeat bottom left / cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: .3;
}
#main_visual__slide{
	position: relative;
	z-index: 10;
}
.main_visual__inner{
	position: relative;
	z-index: 5;
	max-width: 100%;
	padding: 2rem 1rem 1rem;
}
.main_visual__inner::before{
	content: '';
	position: absolute;
	background: url(images/top/main_border__top.svg) no-repeat top right / cover;
	top: 1rem;
	right: -.5rem;
	z-index: -1;
	width: 100%;
	height: 60%;
}
.main_visual__inner::after{
	content: '';
	position: absolute;
	background: url(images/top/main_border__bottom.svg) no-repeat bottom left / cover;
	bottom: 0;
	left: -.5rem;
	z-index: -1;
	width: 100%;
	height: 30%;
}
#main_visual__slide{
	margin-bottom: 1.5rem;
}
.main_visual__box{
	background: rgba(0,25,114,.7);
	border-radius: 1rem;
	overflow: hidden;
	position: relative;
	color: #fff;
	display: block;
}
.main_visual__txt{
	flex: 1;
	white-space: nowrap;
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	z-index: 10;
	font-size: 1.2rem;
	line-height: 1.4;
	font-weight: 700;
}
.main_visual__txt h2{
	font-weight: 900;
	font-size: 220%;
	margin-top: .5rem;
}
.main_visual__img{
	width: 35%;
	margin: 0 0 0 auto;
}
.main_visual__img .img_clip::before{
	padding-top: 160%;
}
#main_visual__recruit{
	position: relative;
	z-index: 5;
	width: 85%;
	margin: 3rem auto;
	display: block;
}
.icon_new{
	position: absolute;
	top: -1rem;
	left: -1rem;
	width: 3rem;
	z-index: 10;
}

.link_service{
	background: var(--bk);
	border: none;
	border-radius: 50px;
	margin-top: 2rem;
	font-size: 1.6rem;
}
.link_service span{
	font-weight: 700;
	font-size: 70%;
	display: block;
}
.front_title{
	position: relative;
	margin-bottom: 3rem;
}
.front_title_top{
	position: relative;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
.front_title__en{
	font-size: 6rem;
	font-weight: 700;
	font-style: italic;
	line-height: 1;
}
.front_title_top::after{
	content: '';
	width: 200%;
	left: -50%;
	background: var(--bk);
	height: 1px;
	position: absolute;
	bottom: 0;
}
.front_title__txt{
	margin-top: 1rem;
	font-weight: 500;
}
.bg_blue .front_title_top::after{
	background: #fff;
}

.service_links li{
	margin-bottom: 2rem;
}
.service_link__box{
	display: block;
	background: #fff;
	border-radius: 1rem;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.service_link__txt{
	padding: 1.5rem 1rem;
	font-size: 1.6rem;
	font-weight: 600;
	text-align: center;
} 

.value_lists{
	margin-bottom: 3rem;
}
.value_lists li{
	margin-bottom: 2rem;
}
.value_list__box{
	border: var(--bk) solid 1px;
	border-radius: 80px;
	display: flex;
	align-items: center;
	padding: 2rem 3rem;
}
.value_list__img{
	width: 6rem;
	height: 6rem;
	object-fit: contain;
	flex: 0 0 6rem;
	margin-right: 2rem;
}
.value_list__box p{
	flex: 1;
	font-weight: 600;
}

#top_company{
	position: relative;
}
#top_company__link{
	margin-bottom: 3rem;
}
#top_company__link a{
	color: #fff;
	display: block;
	padding: 2rem 0;
	border-bottom: #fff solid 1px;
	position: relative;
	font-size: 1.8rem;
	font-weight: 600;
}

#top_company .btn_more{
	margin: 0;
}
#top_company__inner{
	padding-bottom: 0;
}
#top_company__photo{
	width: 95%;
	margin: 4rem 0 0 auto;
}

#top_instagram h2{
	color: var(--blue);
	display: flex;
	align-items: center;
}
#top_instagram h2 img{
	width: 4rem;
}
#top_instagram h2 span{
	font-size: 200%;
	margin: 0 2rem;
}

#top_recruit{
	background: #000;
	position: relative;
}
#top_recruit::before{
	content: '';
	width: 100%;
	height: 100%;
	background: url('images/top/recruit_bg.jpg') no-repeat center center / cover;
	opacity: .4;
	position: absolute;
	top: 0;
	left: 0;
}

#top_recruit .front_title_top{
	margin: 0;
	padding: 0;
}
#top_recruit .front_title_top::after{
	width: 20%;
	left: auto;
	right: 0;
	bottom: auto;
	top: 3rem;
}
#top_recruit__border{
	border-bottom: #fff solid 1px;
	position: relative;
	z-index: 10;
}
#top_recruit__border::before{
	content: '';
	width: 1px;
	height: 55%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #fff;
}
#top_recruit__border::after{
	content: '';
	width: 1px;
	height: calc(100% - 3rem);
	position: absolute;
	bottom: 0;
	right: 0;
	background: #fff;
}
#top_recruit__inner{
	text-align: center;
	padding: 1rem 0 3rem;
}
#top_recruit__inner p{
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 2;
	margin-bottom: 3rem;
}

#top_media{
	background: var(--orange);
	position: relative;
}
#top_media::before{
	content: '';
	width: 100%;
	height: 100%;
	background: url('images/common/twn.svg');
	background-size: 20rem 10rem;
	position: absolute;
	top: 0;
	left: 0;
	opacity: .8;
}
#top_media__icon{
	width: 5rem;
	margin: 0 auto 1rem;
	display: block;
}
#top_media .front_title__en{
	color: #fff;
	text-align: center;
}
#top_media h2{
	background: #fff;
	color: var(--orange);
	font-size: 2.2rem;
	font-weight: 700;
	padding: .5rem;
	text-align: center;
	border-radius: 50px;
	margin-top: 1rem;
}
#qa_tub{
	display: block;
	margin-bottom: 3rem;
}
#qa_tub li{
	margin-bottom: .5rem;
	font-size: 1.6rem;
	font-weight: 700;
	padding-left: 2rem;
	position: relative;
}
#qa_tub li::before{
	content: '';
	background: var(--blue);
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	transition: .3s;
	opacity: 0;
}
#qa_tub li:hover::before{
	opacity: .4;
}
#qa_tub li.tub_current::before{
	opacity: 1;
}
.qa_box{
	margin-bottom: 1rem;
}
.qa_title{
	background: var(--gray);
	padding: 1.5rem 4rem 1.5rem 1.5rem;
	border-radius: .5rem;
	position: relative;
	line-height: 1.5;
	font-weight: 500;
}
.qa_title .icon_plus{
	right: 2rem;
}
.qa_txt{
	padding: 1rem 2rem 2rem;
}





/* =results
-------------------------------------------------------------- */

.result_block{
	border-radius: .5rem;
	margin-bottom: 3rem;
	overflow: hidden;
}
.result_block__img{
	width: 60%;
	margin: 0 auto 1rem
}
.result_block__txt{
	padding: 1rem 5% 2rem;
	flex: 1;
}
.result_block__txt h2{
	font-size: 1.6rem;
	border-bottom: var(--blue) solid 1px;
	margin-bottom: 1rem;
	color: var(--blue);
}
.result_block__txt p{
	font-size: 1.2rem;
}
.result_block__txt p .txt_small{
	line-height: 1.4;
	display: block;
}






/* =company
-------------------------------------------------------------- */

#greeting_photo{
	width: 80%;
	margin: 0 auto 2rem;
}
#greeting_name{
	margin-top: 1rem;
}
#details_table tr{
	border-bottom: #fff solid .2rem;
}
#details_table th{
	background: var(--blue);
	color: #fff;
	vertical-align: middle;
	width: 40%;
	text-align: center;
	font-weight: 600;
}
#details_table td{
	background: var(--gray);
	vertical-align: middle;
}
.access_box{
	margin-bottom: 4rem;
	font-size: 1.2rem;
}
.access_box .block_title{
	font-size: 1.6rem;
	padding: 0 0 0 2rem;
	margin-bottom: .5rem;
}
.accetxtss_box__txt{
	margin-bottom: 1rem;
}
.gmap iframe{
	width: 100%;
	height: 25rem;
}

#authorization{
	border: var(--bk) solid 1px;
	padding: 3rem 5%;
}
#authorization h2{
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 2rem;
}
#authorization table th{
	border: var(--bk) solid 1px;
	vertical-align: middle;
	width: 40%;
	text-align: center;
}
#authorization table td{
	border: var(--bk) solid 1px;
	vertical-align: middle;
}






/* =individuals
-------------------------------------------------------------- */

.service_section{
	position: relative;
	margin-bottom: 5rem;
}
.service_section h2{
	color: var(--blue);
	font-size: 1.8rem;
	position: absolute;
	top: -1.5rem;
	left: 50%;
	translate: -50% 0;
	z-index: 5;
	white-space: nowrap;
	text-align: center;
	line-height: 1.5;
}
#individuals01 li{
	margin-bottom: 1rem;
}
.individuals01_box{
	background: #fff;
	padding: 2rem 5%;
	position: relative;
	display: flex;
	font-size: 1.2rem;
	align-items: center;
	border-radius: 1rem;
}
.individuals01_box__img{
	flex: 0 0 10rem;
	margin-right: 2rem;
}
.individuals01_box__img img{
	width: 10rem;
	height: 10rem;
	object-fit: contain;
}
.individuals01_box__num{
	display: block;
	text-align: center;
	font-size: 5rem;
	line-height: 1;
	font-style: italic;
	color: var(--blue);
	font-weight: 700;
}
.individuals01_box__txt{
	flex: 1;
}
.individuals01_box__txt h3{
	font-size: 1.6rem;
	text-align: center;
	color: var(--blue);
	margin-bottom: 1rem;
}

#individuals02 ul{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -.5rem;
}
#individuals02 ul li{
	width: 50%;
	padding: 0 .5rem;
	margin-bottom: 1rem;
}
.individuals02_box{
	padding: 2rem 5%;
	background: #fff;
	font-size: 1.2rem;
	height: 100%;
	border-radius: 1rem;
}
.individuals02_box__img{
	text-align: center;
	margin-bottom: 1rem;
}
.individuals02_box__txt h3{
	font-size: 1.6rem;
	color: var(--blue);
	margin-bottom: 1rem;
	text-align: center;
}
.individuals03_block{
	margin-bottom: 3rem;
}
.individuals03_block figure{
	text-align: center;
	width: 100%;
	max-width: 400px;
	margin: 0 auto 1rem;
}
.individuals03_block .btn_link{
	background: #EAEAEA;
	border: 0;
	border-radius: .5rem;
	color: var(--bk);
}

#camera_img{
	margin: 2rem 0 5rem;
	text-align: center;
	display: block;
}
.individuals04_inner{
	margin-bottom: 5rem;
}
.individuals04_txt h3{
	font-size: 1.6rem;
	margin-bottom: 1rem;
}
.individuals04_img{
	text-align: center;
	margin-top: 2rem;
}




/* =value
-------------------------------------------------------------- */

#value_wrap{
	max-width: 1000px;
}
.value_block{
	margin-bottom: 5rem;
}
.value_block__img{
	text-align: center;
	margin-bottom: 1rem;
}
.value_block__txt h2{
	color: var(--blue);
	font-size: 1.8rem;
	margin-bottom: 2rem;
	border-bottom: var(--blue) solid 1px;
	padding-bottom: 1rem;
}



/* =privacy policy
-------------------------------------------------------------- */

.privacy_block{
	margin-top: 3rem;
}
.privacy_block h3{
	font-size: 1.8rem;
	margin-bottom: 2rem;
}
.privacy_block p{
	margin-bottom: 1rem;
}





/* =sitemap
-------------------------------------------------------------- */

#sitemap_wrap{
	max-width: 920px;
}
#sitemap_wrap>ul:not(:first-child){
	margin-top: 1rem;
}
#sitemap_wrap li{
	margin-bottom: .5rem;
}
#sitemap_wrap li::before{
	content: '●';
	color: var(--blue);
	margin-right: .5rem;
}
.sitemap_sub{
	padding-left: 2rem;
}




/* =Contact
-------------------------------------------------------------- */

.required{
	color: #960014;
	font-size: 1.2rem;
	position: absolute;
	top: .5rem;
	right: 0;
}
.input_box{
	width: 100%;
	padding: .5rem 1rem;
	margin-bottom: 3px;
  line-height: 1.7;
  font-size: 1.6rem;
  border: #ccc solid 1px;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f4f4f4 inset;
}
.input_box.short_box{
	width: 50%;
	max-width: 20rem;
}
.input_box__time{
	width: 8rem;
	margin-right: .5rem;
}
.mw_wp_form .error{
	font-weight: 700;
}
.form_wrap input[type="radio"],
.form_wrap input[type="checkbox"]{
	width: 20px;
	height: 20px;
	vertical-align: middle;
}
.form_wrap label{
	cursor: pointer;
}
.wpcf7 form .wpcf7-response-output{
	text-align: center;
	padding: 1rem;
}

.form_wrap input[disabled]{
	background: #ccc !important;
	border: #ccc solid 1px;
	color: #fff !important;
	box-shadow: none;
	transform: none;
}

.form_wrap th{
	display: block;
	width: 100%;
	padding: 0 0 1rem;
	font-weight: 700;
	position: relative;
}
.form_wrap td{
	display: block;
	padding: 0 0 3rem;
	border-bottom: #ccc solid 1px;
	margin-bottom: 2rem;
}
.form_wrap .attention{
	background: #efefef;
	padding: 1rem 5%;
	margin-top: .5rem;
	font-size: 1.2rem;
}
.form_wrap .attention p{
	margin: 1rem 0;
}
.policy_check{
	text-align: center;
	margin: 3rem 0;
}
.policy_check p{
	margin: 1rem 0;
}
.horizontal-item{
	display: inline-block;
	margin: 0 2rem .2rem 0 !important;
}
.form_txt{
	margin: 2rem 0 0;
}
.form_txt02{
	margin: 2rem 0 1rem;
}
#contact_nav{
	justify-content: center;
}
#form_intro h2{
	font-size: 1.6rem;
}
#contact_tel{
	margin: 5rem auto;
	border: var(--blue) solid 1px;
	padding: 2rem 1rem;
	border-radius: 1rem;
	max-width: 770px;
	text-align: center;
}
#contact_tel__txt{
	color: var(--blue);
	font-weight: 700;
	font-size: 2rem;
}
#contact_tel__txt span{
	font-size: 150%;
}
.form_block{
	width: 100%;
}
.form_inner{
	background: #fff;
	padding: 3rem 5%;
	border-radius: 1rem;
	color: var(--bk);
}
.ui-datepicker table{
	table-layout: fixed;
}
.btn_submit{
	padding: 1.5rem 0;
	font-size: 1.6rem;
}
.form_submit li{
	margin: 1rem 0;
}
.btn_back{
	background: #999;
	border: #999 solid 1px;
}
.form_comfirm{
	text-align: center;
	border: var(--blue) solid .2rem;
	padding: 2rem 1rem;
	color: var(--blue);
	font-weight: 700;
	margin-bottom: 3rem;
	display: none;
}
.mw_wp_form_complete .form_comfirm,
.mw_wp_form_confirm .form_comfirm{
	display: block;
}
.mw_wp_form{
	padding-top: 10rem;
	margin-top: -10rem;
}
#thanks_mess{
	max-width: 740px;
}
#thanks_mess h2{
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 5rem;
}
#thanks_mess h2 span{
	font-size: 50%;
	display: block;
}
#thanks_mess p{
	text-align: center;
}
#thanks_attention{
	border: var(--bk) solid 1px;
	padding: 3rem 5%;
	text-align: center;
	margin: 3rem 0;
}
#thanks_attention h3{
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
}




#consult_flow h2{
	color: var(--blue);
	font-size: 2rem;
	margin-bottom: 2rem;
	text-align: center;
}
#consult_flow__inner li{
	margin-bottom: 3rem;
	position: relative;
	background: var(--gray);
	padding: 2rem 5%;
	border-radius: 1rem;
	display: flex;
	align-items: center;
}
#consult_flow__inner li::after{
	content: '';
	background: var(--blue);
	width: 1.5rem;
	height: 1rem;
	clip-path: polygon(0 0,100% 0,50% 100%);
	position: absolute;
	bottom: -2rem;
	left: 50%;
	translate: -50% 0;
}
#consult_flow__inner li:last-child::after{
	content: none;
}
.consult_flow__num{
	color: var(--blue);
	font-size: 4rem;
	margin-right: 2rem;
	font-style: italic;
	font-weight: 700;
}
.consult_flow__txt{
	flex: 1;
}
.consult_flow__txt h3{
	color: var(--blue);
	font-size: 1.8rem;
	margin-bottom: .5rem;
	line-height: 1.5;
}
.consult_flow__txt p.txt_small{
	font-size: 90%;
	margin-top: 2rem;
}





/* =for companies
-------------------------------------------------------------- */

.service_footer__link .img_clip::before{
	padding-top: 50%;
}

#page_service .page_header{
	margin: 0;
}
.service_header{
	background: var(--blue);
	height: 20rem;
	display: flex;
	align-items: center;
	color: #fff;
	position: relative;
	z-index: 5;
	font-size: 2.4rem;
}
.service_header::before{
	content: '';
	background: url('images/event/main.jpg') no-repeat center center / cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .5;
	z-index: -1;
}

#kikai_header::before{
	background: url('images/kikai/main.jpg') no-repeat center center / cover;
}
#jochu_header::before{
	background: url('images/jochu/main.jpg') no-repeat center center / cover;
}
#other_header::before{
	background: url('images/other/main.jpg') no-repeat center center / cover;
}

.title_border{
	color: var(--blue);
	font-size: 2.2rem;
	border-bottom: var(--blue) solid 1px;
	padding-bottom: .5rem;
	margin-bottom: 2rem;
}
.flex_block__txt h3{
	margin-bottom: 2rem;
	line-height: 1.5;
	font-size: 1.8rem;
}
.flex_block__img{
	text-align: center;
	margin-top: 2rem;
}

#event01 #individuals01{
	margin: 0;
}
#event02_service ul li{
	margin-bottom: 1rem;
}
#event02_service ul li span{
	display: block;
	background: #fff;
	padding: 1rem;
	text-align: center;
	border-radius: .5rem;
}
#event02_service{
	margin: 0;
}

.service_intro h2{
	font-size: 2rem;
	margin-bottom: 2rem;
	line-height: 1.5;
}
#kikai02_flow{
	display: flex;
	flex-wrap: wrap;
	margin-top: 3rem;
}
#kikai02_flow li{
	background: var(--blue);
	color: #fff;
	font-size: 1.2rem;
	padding: 1rem;
	border-radius: .5rem;
	margin-bottom: .5rem;
	width: calc(50% - 2rem);
	position: relative;
	text-align: center;
	font-size: 1.6rem;
	margin-right: 2rem;
}
#kikai02_flow li::after{
	content: '';
	position: absolute;
	right: -1.5rem;
	width: 1rem;
	height: 1rem;
	background: var(--blue);
	clip-path: polygon(0 0,100% 50%,0 100%);
	top: 50%;
	translate: 0 -50%;
}
#kikai02_flow li:last-child::after{
	content: none;
}
#kikai03_list{
	display: flex;
	flex-wrap: wrap;
	margin: 3rem -1rem 0;
}
.item_box{
	width: 50%;
	padding: 0 1rem;
	margin-bottom: 3rem;
}
.item_box figure{
	text-align: center;
	margin-bottom: 1rem;
}
.item_box h3{
	font-size: 700;
	margin-bottom: 1rem;
}
.item_box p{
	font-size: 1.2rem;
}
#kikai03_list__link{
	width: 100%;
}

#kikai03_list__link h3{
	font-weight: 700;
	margin-bottom: 1rem;
	text-align: center;
}
.link_bnr{
	display: block;
	padding: 1.5rem 2rem;
	background: var(--gray);
	position: relative;
	text-align: center;
	margin: 0 auto;
}
.link_bnr::after{
	content: '';
	width: 1rem;
	height: 1rem;
	border-top: #000 solid 1px;
	border-right: #000 solid 1px;
	position: absolute;
	top: 50%;
	right: 1rem;
	translate: 0 -50%;
	rotate: 45deg;
}
.link_bnr img{
	height: 3rem;
	width: auto;
}
#kikai03_list__link .link_bnr{
	max-width: 35rem;
	width: 90%;
}

#kikai04_inner{
	margin-top: 3rem;
	padding-bottom: 1rem;
	border-bottom: #000 solid 1px;
	margin-bottom: 3rem;
}
.kikai04_box{
	margin-bottom: 3rem;
}
.kikai04_box .link_bnr{
	margin-bottom: 2rem;
}
.kikai04_box figure{
	width: 80%;
	margin: 0 auto;
}

#jochu03_list{
	padding: 3rem 5%;
	margin-bottom: 3rem;
}
#jochu03_list ul{
	margin-bottom: 2rem;
}
#jochu03_list li{
	font-size: 1.6rem;
	position: relative;
	padding-left: 3.5rem;
	margin: 1rem  0;
	font-weight: 700;
}
#jochu03_list li::before{
	content: '';
	background: url('images/jochu/icon_check.svg') no-repeat center center / contain;
	width: 3rem;
	height: 3rem;
	position: absolute;
	left: 0;
	top: 0;
}
#jochu03_list p{
	text-align: center;
}
#jochu03 h3{
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}
#jochu03_contact{
	margin-top: 5rem;
}
#jochu03_contact li{
	margin-bottom: 1rem;
}
#jochu03_contact a{
	display: block;
	text-align: center;
	background: var(--blue);
	align-items: center;
	border-radius: 1rem;
	padding: 2rem 1rem;
	width: 100%;
	color: #fff;
}
#jochu03_contact a img{
	height: 4rem;
	width: auto;
}

#other01 p{
	margin-bottom: 2rem;
}
#other01 h4{
	margin: 2rem 0 1rem;
	font-size: 1.6rem;
}
#other02_bnr{
	margin: 3rem auto 0;
	text-align: center;
	max-width: 640px;
	display: block;
}
#other03 .btn_link{
	margin-top: 2rem;
	border-radius: .5rem;
}
#other03 .btn_link .arrow{
	right: 1rem;
}





/* =採用情報
-------------------------------------------------------------- */

#page_recruit{
	background: var(--l_blue);
}
#area_map{
	background: #fff;
	position: relative;
	padding: 3rem 5%;
	border-radius: 1rem;
}
#area_map__title{
	margin-bottom: 1rem;
}
#area_map__title h2{
	border-bottom: #000 solid 1px;
	margin-bottom: .5rem;
	font-size: 1.6rem;
}
#area_map__inner{
	position: relative;
}
#area_map__inner li{
	position: absolute;
	z-index: 5;
}
#area_map__inner .btn_link{
	border-radius: .5rem;
	min-width: 10rem;
	font-size: 1.2rem;
	width: auto;
	max-width: 100%;
	font-weight: 700;
	padding: .2rem 1rem;
}
#area_map01{
	bottom: 33%;
	left: 30%;
}
#area_map02{
	top: 30%;
	right: 10%;
}
#area_map03{
	bottom: 20%;
	left: 35%;
}
#area_map04{
	top: 44%;
	right: -5%;
}
#area_map05{
	bottom: 8%;
	left: 30%;
}
#area_map06{
	bottom: -5%;
	left: 20%;
}
#area_map07{
	bottom: 15%;
	left: -5%;
}

#recruit_header{
	align-items: flex-start;
	padding: 0 5%;
}
#recruit_header__inner{
	position: relative;
	z-index: 5;
}
#recruit_header .page_title{
	text-align: left;
}
#recruit_header #breadcrumbs{
	position: static;
	margin: 2rem 0 0;
}
#recruit_header__img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#recruit_title{
	background: var(--l_blue);
	padding: 1rem 5%;
	font-size: 2rem;
	margin-top: -5rem;
	width: 90%;
	position: relative;
	z-index: 10;
	margin-bottom: 3rem;
}
.recruit_area{
	background: var(--blue);
	color: #fff;
	font-size: 1.4rem;
	padding: .2rem 1rem;
	position: absolute;
	top: -2rem;
	left: 5%;
}
#recruit_table{
	background: #fff;
}
#recruit_table tr{
	border-bottom: var(--l_blue) solid .5rem;
}
#recruit_table th{
	background: var(--blue);
	color: #fff;
	text-align: center;
	vertical-align: middle;
}
#recruit_table td{
	vertical-align: middle;
}
#recruit_form__title{
	width: 100%;
}
#recruit_form h2{
	font-size: 2rem;
	color: var(--blue);
	border-bottom: var(--blue) solid 1px;
	padding-bottom: .5rem;
	margin-bottom: 2rem;
	text-align: center;
}

#recruit_list li{
	margin-bottom: 2rem;
}
.recruit_box{
	display: block;
	background: #fff;
	position: relative;
	height: 100%;
}
.recruit_box .recruit_area{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
.recruit_box__txt{
	padding: 1rem 5%;
}
.recruit_box__title{
	font-size: 1.6rem;
	line-height: 1.5;
	margin-bottom: 1rem;
	font-weight: 700;
}

.no_posts{
	padding: 2rem 1rem;
	text-align: center;
	border: var(--blue) solid 1px;
	background: #fff;
	color: var(--blue);
}

#newgd_link{
	display: block;
	margin: 5rem auto 0;
	width: 100%;
	max-width: 800px;
}
#job_type__select{
	margin-top: 5rem;
}
#job_type__select ul{
	display: flex;
	justify-content: center;
	margin: 0 -.5rem;
	flex-wrap: wrap;
}
#job_type__select ul li{
	margin: .5rem 0;
	padding: 0 .5rem;
	width: 50%;
}
#job_type__select .btn_link{
	background: #418AD0;
	border: 0;
	border-radius: .5rem;
}







/* =blog
-------------------------------------------------------------- */

.blog_box{
	display: block;
	padding: 1.5rem 0;
	border-bottom: #000 solid 1px;
	position: relative;
}
.posted_cat,
.posted_date{
	color: #A2A2A2;
}
.posted_cat{
	text-align: right;
	position: absolute;
	top: 1.5rem;
	right: 0;
}

.entry_header{
	border-bottom: #EAEAEA solid 1px;
	padding-bottom: 1rem;
	margin-bottom: 3rem;
}
.entry_header h1{
	font-size: 2rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}
.entry_header .posted_cat{
	position: static;
	margin-left: 1rem;
}
.entry_content{
	padding-bottom: 5rem;
}
.entry_content h2{
	margin: 4rem 0 2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	padding-left: 1.5rem;
	border-left: var(--blue) solid .4rem;
}
.entry_content h3{
	background: var(--blue);
	padding: 1rem;
	border-radius: .5rem;
	color: #fff;
	font-size: 1.6rem;
	margin: 3rem 0 1rem;
}
.entry_content h4{
	color: var(--blue);
	font-size: 1.6rem;
	margin: 2rem 0;
}
.entry_content p{
	margin: 2rem 0;
}
.entry_content a{
	text-decoration: underline;
	color: var(--blue);
}
.entry_content a:hover{
	text-decoration: none;
}
.entry_content table tr{
	border: 0;
}
.entry_content table th,
.entry_content table td{
	border: #999 solid 1px;
}

.entry_content ul,
.entry_content ol{
  padding: 2rem 5%;
  margin: 3rem 0;
  background: var(--bg);
}
.entry_content li{
  margin: .5rem 0;
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
}
.entry_content ul li::before{
  content: '・';
  position: absolute;
  top: 2px;
  left: 0;
}
.entry_content ol{
  counter-reset: number;
}
.entry_content ol li::before{
  counter-increment: number;
  content: counter(number)'.';
  top: 0;
  left: 0;
  position: absolute;
}

.wp-block-image{
	margin-bottom: 2rem;
	margin-top: 2rem;
}
.wp-block-image img{
	border-radius: 2rem;
	overflow: hidden;
}
.wp-block-image figcaption{
	font-size: 1.2rem;
	margin: .5rem 0 0;
	text-align: center;
}
.wp-block-gallery{
	display: flex;
	flex-wrap: wrap;
	gap: 0 !important;
}
.wp-block-gallery .wp-block-image{
	width: 50%;
	padding-right: 1rem;
	margin: .5rem 0;
}
.wp-block-embed{
	margin: 2rem 0;
}

.nav_arrow{
	background: url('images/arrow.svg') no-repeat center center / contain;
	width: 3rem;
	height: 3rem;
	display: inline-block;
}
.arrow_rev{
	scale: -1 1;
}
.page_links{
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}
.page_links a, 
.page_links span{
  text-decoration: none;
	font-size: 1.4rem;
	padding: 0 .5rem;
}
.page_links span.current{
	color: var(--blue);
}
.page_links a:hover{
	text-decoration: underline;
}
.page_links a.next{
  margin-left: 1rem;
}
.page_links a.prev{
  margin-right: 1rem;
}

.nav_single{
	clear: both;
	display: flex;
  justify-content: center;
	align-items: center;
  margin: 5rem auto;
	max-width: 50rem;
}
.nav_single li{
	width: 33.33%;
	text-align: center;
}
#reply-title,
.logged-in-as{
	display: none;
}
.comments{
	border-top: #EAEAEA solid 1px;
	border-bottom: #EAEAEA solid 1px;
	padding: 3rem 0;
}
.comment-form-comment label{
	display: block;
}
.comment-form-comment textarea{
	height: 5em;
	border: #EAEAEA solid 1px;
	border-radius: .5rem;
	padding: 1rem;
	width: 100%;
}
#commentform .form-submit{
	padding: 1rem;
	color: #fff;
	background: var(--blue);
	border-radius: .5rem;
	text-align: center;
	margin: 1rem 0 0 auto;
	width: 10rem;
}
.comments-title{
	margin-bottom: 1rem;
}
.comments-title span{
	color: #A2A2A2;
	margin-left: 1rem;
}
.comment-list>li{
	border-bottom: #EAEAEA solid 1px;
	padding: 1rem 0;
	margin-bottom: 2rem;
}
.comment .children{
	padding-left: 5rem;
}
.comment-body{
	overflow: hidden;
	margin-bottom: 2rem;
}
.comment-author{
	float: left;
	width: 6rem;
	margin-right: 1rem;	
	font-size: 1.2rem;
	word-break: break-all;
	text-align: center;
}
.comment-author img{
	border-radius: 50%;
	overflow: hidden;
	display: block;
	margin: 0 auto;
}
.says{
	display: none;
}
.comment-reply-link{
	padding: .5rem;
	color: #fff;
	background: var(--blue);
	border-radius: .5rem;
	text-align: center;
	margin: 1rem 0 0 auto;
	width: 6rem;
	font-size: 1.2rem;
	display: none;
}
.comment-meta{
	color: #A2A2A2;
	font-size: 1.2rem;
	margin-bottom: .5rem;
}

.login_form__wrap h2{
	text-align: center;
	font-size: 2rem;
	margin-bottom: 2rem;
}
.login_form{
	background: var(--l_blue);
	padding: 3rem 5%;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.login_form dl{
	max-width: 500px;
	margin: 0 auto 3rem;
}
.login_form .input_box{
	background: #fff;
}



/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 1rem;
	}
	table td{
		padding: 1rem;
	}
	.slick-arrow{
		width: 3rem;
		height: 3rem;
	}
	.slick-dots{
		text-align: right;
		padding-right: 2rem;
		bottom: 10%;
		right: 5%;
	}
	.section{
		padding: 5rem 0;
	}
	.page_header{
		height: 25rem;
		margin-bottom: 5rem;
	}
	.page_title{
		font-size: 4rem;
	}
	.page_intro h2{
		font-size: 2.2rem;
		text-align: center;
	}
	.page_nav li{
		width: 33.33%;
		justify-content: center;
		padding: 0 1rem;
	}
	.block{
		margin-bottom: 8rem;
	}
	.block_title{
		font-size: 2.6rem;
	}
	#header_nav__inner{
		width: 50%;
		max-width: 50rem;
		background: #fff;
	}
	.nav_link{
		color: var(--blue);
	}
	.nav_parent .icon_plus,
	.nav_parent .icon_plus::before{
		background: var(--blue);
	}
	.header_nav__links li a .icon{
		display: none;
	}
	.header_nav__links li{
		margin-right: .5rem;
	}
	.header_nav__links li a{
		width: auto;
		height: auto;
		padding: .5rem 1.5rem;
		border-radius: .5rem;
	}
	.header_nav__img{
		display: block;
		width: auto;
		height: 2.5rem;
	}
	#footer_logo{
		margin: 0 0 3rem;
	}
	#footer_inner{
		display: flex;
	}
	#footer_info{
		text-align: left;
		margin: 0 auto 0 0;
	}
	#footer_bottom{
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
	}
	#footer_bottom__btn{
		display: flex;
	}
	#footer_bottom__btn li{
		margin-left: 1rem;
	}
	#footer_bottom__btn a{
		margin: 0;
		width: 20rem;
		height: 100%;
	}
	#footer_copy{
		margin: 0 auto 0 0;
	}
	#main_visual{
		padding-bottom: 8rem;
	}
	.main_visual__inner{
		padding: 4rem 2rem 10rem;
	}
	.main_visual__inner::before{
		top: 2rem;
	}
	.main_visual__img{
		width: 40%;
	}
	.main_visual__img .img_clip::before{
		padding-top: 100%;
	}
	.main_visual__txt{
		bottom: 3rem;
		left: 5%;
		font-size: 1.6rem;
	}
	.main_visual__inner::before{
		height: 75%;
	}
	#main01 .main_visual__img .img_clip::before{
		padding-top: 50%;
	}
	#main01_inner,
	#loading_inner{
		font-size: 5rem;
	}
	#main_visual__recruit{
		width: 60%;
		max-width: 730px;
		position: absolute;
		bottom: 1rem;
		left: 50%;
		translate: -50% 0;
		z-index: 10;
		margin: 0;
	}
	.service_links{
		display: flex;
		flex-wrap: wrap;
	}
	.service_links li{
		width: 50%;
		padding: 0 1rem;
	}
	.service_link__txt{
		font-size: 2rem;
	}
	.front_title__en{
		font-size: 8rem;
	}
	.front_title__jp{
		font-size: 2rem;
	}
	.front_title__txt{
		position: absolute;
		left: 35%;
		top: 1.5rem;
	}
	.link_service{
		position: absolute;
		top: 50%;
		translate: 0 -50%;
		z-index: 10;
		right: 0;
	}
	.value_lists{
		display: flex;
		flex-wrap: wrap;
	}
	.value_lists li{
		width: 50%;
		padding: 0 .5rem;
	}
	#top_company__inner{
		width: 75%;
		padding-bottom: 5rem;
	}
	#top_company__link{
		width: 50%;
	}
	#top_company__photo{
		width: 45%;
		position: absolute;
		left: 50%;
		bottom: 0;
		z-index: 5;
		margin: 0;
	}
	#top_recruit .front_title_top::after{
		width: 50%;
		top: 5rem;
	}
	#top_recruit__border::before{
		height: 65%;
	}
	#top_recruit__border::after{
		height: calc(100% - 5rem);
	}
	#top_recruit__inner p{
		font-size: 2rem;
		margin-bottom: 8rem;
	}
	#top_recruit__inner{
		padding: 2rem 0 5rem;
	}
	#top_media .wrapper{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	#top_media .front_title{
		width: 35%;
		margin: 0;
	}
	#top_media__inner{
		width: 60%;
	}
	#top_qa .front_title_top::after{
		right: 0;
		left: auto;
	}
	#top_qa__inner{
		display: flex;
		justify-content: space-between;
	}
	#top_qa__left{
		width: 40%;
	}
	#top_qa__right{
		width: 55%;
	}
	.qa_title{
		padding: 2rem 4rem 2rem 2rem;
	}
	.result_block{
		display: flex;
	}
	.result_block__img{
		flex: 0 0 25%;
		margin: 0;
	}
	.result_block__txt{
		padding: 3rem 5%;
	}
	#greeting_inner{
		display: flex;
		flex-direction: row-reverse;
	}
	#greeting_photo{
		margin: 0 0 0 3rem;
		width: auto;
		flex: 0 0 30%;
	}
	#greeting_txt{
		flex: 1;
	}
	#details_table th{
		width: 30%;
		padding: 2rem 1rem;
	}
	#details_table td{
		padding: 2rem 3rem;
	}
	#access_box__wrap{
		display: flex;
		flex-wrap: wrap;
		margin: 0 -1.5rem;
	}
	.access_box{
		width: 50%;
		padding: 0 1.5rem;
		display: flex;
		flex-direction: column;
	}
	.access_box .gmap{
		margin-top: auto;
	}
	.service_section h2{
		font-size: 2.2rem;
	}
	#individuals01 ul{
		display: flex;
		margin: 0 -1rem;
	}
	#individuals01 li{
		margin: 0;
		width: 33.33%;
		padding: 0 1rem;
	}
	.individuals01_box{
		display: block;
		height: 100%;
	}
	.individuals01_box__img{
		margin: 0 auto 1rem;
		width: 60%;
		text-align: center;
	}
	.individuals01_box__img img{
		width: 100%;
		height: 13rem;
	}
	#individuals02 .wrapper{
		max-width: 780px;
	}
	#individuals02 ul{
		margin: 0 -3rem;
	}
	#individuals02 ul li{
		padding: 0 3rem;
		margin-bottom: 3rem;
	}
	.individuals02_box{
		padding: 3rem;
	}
	.individuals02_box__txt h3{
		font-size: 2rem;
	}
	#individuals03_flex{
		display: flex;
		justify-content: space-between;
	}
	.individuals03_block{
		width: 50%;
	}
	.individuals03_block figure{
		width: 90%;
	}
	.individuals04_inner{
		display: flex;
	}
	.individuals04_img{
		flex: 0 0 48%;
		margin: 0 0 0 5rem;
	}
	.individuals04_txt{
		flex: 1;
	}
	.value_block{
		display: flex;
		justify-content: space-between;
		margin-bottom: 8rem;
	}
	.value_block:nth-child(2n+1){
		flex-direction: row-reverse;
	}
	.value_block:last-child{
		margin: 0;
	}
	.value_block__img{
		width: 33%;
	}
	.value_block__txt{
		width: 65%;
	}
	.value_block:nth-child(2n) h2{
		text-align: right;
	}
	.value_block__txt h2{
		font-size: 2.4rem;
	}
	#sitemap_intro{
		text-align: center;
	}
	#sitemap_wrap{
		display: flex;
	}
	#sitemap_wrap>ul{
		width: 33.33%;
	}
	.form_wrap th{
		display: table-cell;
		padding:3rem 0 2rem;
		width: 25%;
	}
	.required{
		top: 3rem;
	}
	.form_wrap td{
		display: table-cell;
		padding: 2rem;
		margin: 0;
		border: 0;
		vertical-align: middle;
	}
	#contact_nav .btn_link{
		font-size: 1.8rem;
	}
	#thanks_mess h2{
		font-size: 3rem;
	}
	#form_intro{
		text-align: center;
	}
	#consult_flow__inner{
		display: flex;
		justify-content: space-between;
	}
	#consult_flow__inner li{
		width: 30%;
		padding: 2rem;
		margin: 0;
		display: block;
	}
	#consult_flow__inner li::after{
		bottom: 50%;
		translate: 0 50%;
		rotate: -90deg;
		left: 100%;
		margin-left: 1rem;
	}
	.consult_flow__num{
		display: block;
		text-align: center;
		margin: 0;
		font-size: 7rem;
		line-height: 1.2;
	}
	.consult_flow__txt h3{
		text-align: center;
		min-height: 6rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.service_footer__link .service_links li{
		width: 33.33%;
		padding: 0 .8rem;
		margin: 0;
	}
	.service_footer__link .service_link__txt{
		font-size: 1.6rem;
	}
	.service_header{
		height: 30rem;
		font-size: 3.4rem;
	}
	.title_border{
		font-size: 3rem;
	}
	.flex_block{
		display: flex;
	}
	.flex_block__img{
		flex: 0 0 30%;
		margin: 0 0 0 3rem;
	}
	.flex_block__txt{
		flex: 1;
	}
	#event02_service ul{
		display: flex;
		flex-wrap: wrap;
	}
	#event02_service ul li{
		width: 50%;
		padding: 0 .5rem;
	}
	.service_intro h2{
		font-size: 2.4rem;
	}
	#kikai02_flow li{
		width: calc(24% - 2rem);
	}
	.item_box{
		width: 25%;
	}
	#kikai03_list__link{
		width: 50%;
		margin-top: 5rem;
	}
	#kikai04_inner{
		display: flex;
		justify-content: space-between;
		margin-bottom: 5rem;
	}
	.kikai04_box{
		width: 48%;
	}
	#bfdesign_link .link_bnr{
		max-width: 35rem;
	}
	#jochu02 .flex_block:nth-child(2n){
		flex-direction: row-reverse;
	}
	#jochu02 .flex_block:nth-child(2n) .flex_block__img{
		margin: 0 3rem 0 0;
	}
	#jochu03_list{
		text-align: center;
	}
	#jochu03_list ul{
		display: inline-block;
		text-align: left;
	}
	#jochu03_contact{
		display: flex;
		max-width: 800px;
		margin: 5rem auto 0;
	}
	#jochu03_contact li{
		width: 50%;
		margin: 0;
		padding: 0 1rem;
	}
	#recruit_intro p{
		text-align: center;
	}
	#area_map__title{
		position: absolute;
		top: 3rem;
		left: 5%;
		width: 35%;
		z-index: 5;
	}
	#area_map__inner{
		margin: 0 auto;
		max-width: 850px;
		width: 80%;
	}
	#area_map__inner .btn_link{
		font-size: 1.6rem;
	}
	#area_map01{
		bottom: 40%;
		left: auto;
		right: 30%;
	}
	#area_map02{
		top: 40%;
    right: 18%;
	}
	#area_map03{
		bottom: 30%;
    left: 55%;
	}
	#area_map04{
		top: 50%;
    right: 5%;
	}
	#area_map05{
		bottom: 15%;
    left: 40%;
	}
	#area_map06{
		bottom: 6%;
    left: 35%;
	}
	#area_map07{
		bottom: 10%;
    left: 5%;
	}
	#recruit_form h2{
		font-size: 3rem;
	}
	#recruit_title{
		margin-top: -8rem;
	}
	#recruit_title h1{
		font-size: 3rem;
	}
	#recruit_table td{
		padding: 2rem;
	}
	#recruit_list ul{
		display: flex;
		flex-wrap: wrap;
		margin: 0 -1rem;
	}
	#recruit_list li{
		width: 33.33%;
		padding: 0 1rem;
		margin-bottom: 3rem;
	}
	.blog_box{
		display: flex;
	}
	.blog_box .posted_cat{
		position: static;
		margin: 0 0 0 auto;
		width: 15rem;
	}
	.blog_box .posted_date{
		width: 15rem;
	}
	.blog_box__title{
		flex: 1;
	}
	.entry_header h1{
		font-size: 2.4rem;
	}
	#recruit_bnr{
		translate: none;
		right: 2rem;
	}
	#job_type__select ul li{
		width: 33.33%;
		padding: 0 2rem;
		margin: 1rem 0;
		font-size: 1.6rem;
	}
}






@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
		scroll-padding-top: 80px;
  }
	#page{
		padding-top: 8rem;
	}
	#site_header{
		height: 8rem;
		padding: 0 2%;
	}
	#header_logo{
		max-width: 23rem;
	}
	#header_nav__btn{
		height: 8rem;
		width: 8rem;
	}
	.nav_sp{
		display: none;
	}
	.header_nav__links{
		margin-right: 6rem;
	}
	.header_nav__links li a{
		padding: 1rem 2rem;
	}
	.header_nav__img{
		height: 3rem;
	}
	#header_nav__inner{
		top: 8rem;
	}
	#footer_inner{
		margin-bottom: 3rem;
	}
	#footer_nav,
	#footer_bottom__nav{
		display: flex;
	}
	#footer_nav ul{
		margin-left: 3rem;
	}
	#footer_nav li{
		margin-bottom: 1rem;
	}
	#footer_nav li a{
		color: #fff;
	}
	#footer_nav li a span{
		font-size: 80%;
	}
	#footer_nav ul.footer_nav__child{
		margin: 1rem 0 0 2rem;
	}
	#footer_bottom__nav{
		margin-right: 2rem;
	}
	#footer_bottom__nav li{
		margin-left: 2rem;
	}
	#footer_bottom__nav li a{
		color: #fff;
		font-size: 1.2rem;
	}
	.service_links{
		padding: 0 5%;
	}
	.service_links li{
		padding: 0 2rem;
		margin-bottom: 4rem;
	}
	.front_title__txt{
		font-size: 1.6rem;
	}
	#top_recruit .front_title_top::after{
		width: 65%;
	}
	.result_block__flex{
		display: flex;
	}
	.result_block__flex p{
		width: 50%;
	}
	.result_block__txt h2{
		font-size: 2.4rem;
	}
	#result06{
		max-width: 720px;
	}
	.table_inner{
		display: flex;
	}
	.table_inner p{
		width: 50%;
	}
	.access_box{
		width: 33.33%;
	}
	#authorization table th{
		width: 30%;
	}
	#authorization table td{
		padding: 1rem 3rem;
	}
	#individuals01 ul{
		margin: 0 -2.5rem;
	}
	#individuals01 li{
		padding: 0 2.5rem;
	}
	.individuals01_box{
		padding: 3rem 5%;
	}
	.individuals01_box__num{
		font-size: 6rem;
	}
	.individuals01_box__txt h3{
		font-size: 2rem;
	}
	.individuals04_txt h3{
		font-size: 2.2rem;
	}
	.form_block{
		border-radius: .8rem;
	}
	#form_intro h2{
		font-size: 1.8rem;
	}
	#event02_service ul li{
		width: 33.33%;
	}
	.item_box{
		padding: 0 2rem;
	}
	#kikai02_flow li{
		width: calc(14.28% - 2rem);
		padding: 1rem 0;
	}
	#main_visual__recruit{
		bottom: 2rem;
	}
	.main_visual__inner{
		padding: 50px 2rem 0;
		height: calc(100vh - 150px);
	}
	#main01 .main_visual__img{
		height: calc(100vh - 100px);
	}
	#main01 .main_visual__img::before{
		content: none;
	}
}





@media screen and (min-width: 1200px){
	#breadcrumbs{
		left: 50%;
		margin-left: -590px;
	}
	.main_visual__box{
		border-radius: 2rem;
	}
	.main_visual__txt{
		font-size: 2.4rem;
	}
	.main_visual__img .img_clip::before{
		padding-top: 90%;
	}
	.value_list__img{
		width: 8rem;
		height: 8rem;
		flex: 0 0 8rem;
		margin: 0 2rem;
	}
	.value_list__box p{
		font-size: 1.6rem;
	}
	#top_recruit__inner p{
		font-size: 3rem;
	}
	#sitemap_wrap li a:hover{
		color: var(--blue);
		text-decoration: underline;
	}
}




@media (hover: hover) {
  .img_opacity:hover img{
  	opacity: .8;
  }
	.btn_link:hover,
  .hover_up:hover{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
  .hover_up__img:hover img{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
	#footer_bottom__nav li a:hover,
	#footer_nav li a:hover{
		text-decoration: underline;
	}
	a:hover .img_clip img{
		scale: 1.1;
	}
	a:hover .arrow::before{
	left: 100%;
	}
	a:hover .arrow::after{
		left: 0;
	}
}