@CHARSET "UTF-8";
/*
Theme Name: 日本サーモ様採用サイト
date: 2025.11.12
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root { 
  --bk: #222;
	--bg: #F2EEE9;
	--yellow: #FCD841;
	--red: #DB5331;
	--blue: #3F86F7;
	--beige: #E3DDD5;
	--header_height: 5rem;
}
@media screen and (min-width: 1024px){
  :root {
		--header_height: 80px;
	}
}

*{
	-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: 500;
	font-family: "Mona Sans", "Noto Sans JP", sans-serif;
	color: var(--bk);
	line-height: 1.7;
	letter-spacing: 1px;
	background: var(--bg);
}



/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer__wrap{
  margin-top: auto;
	position: relative;
	z-index: 10;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 500;
}
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: 500;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}

.wrapper{
	width: 90%;
	max-width: 1050px;
	margin: 0 auto;
}

/* 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%, #FCE256 51%);
	font-weight: 700;
}



/* =link
-------------------------------------------------------------- */

a{
	outline: none;
	color: var(--bk);
	text-decoration: none;
	transition: .3s;
}
*:focus {
  outline: none;
}

.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;
	border-radius: 1.5rem;
	overflow: hidden;
}
.img_clip::before{
	content: '';
	padding-top: 100%;
	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;
}
.accordion dd.open{
	display: block;
}
.tub{
	display: flex;
}
.tub_cont{
	display: none;
}
.cont_current{
	display: block;
}


.icon_plus{
	display: block;
	position: relative;
	width: 1.5rem;
	height: 2px;
	background: var(--bk);
}
.icon_plus::before{
	content: '';
	width: 1.5rem;
	height: 2px;
	background: var(--bk);
	position: absolute;
	top: 0;
	left: 0;
	rotate: 90deg;
	transition: .3s;
}

.open .icon_plus::before{
	rotate: none;
	opacity: 0;
}





/* =slide base
-------------------------------------------------------------- */

.slick-arrow{
	width: 1rem;
  height: 1rem;
  z-index: 10;
}
.slick-prev{
  left: -5px;
}
.slick-next{
  right: -5px;
}
.slick-arrow::before{
	content: '' !important;
  width: 100%;
  height: 100%;
  border-top: #000 solid 1px;
  border-left: #000 solid 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
}
.slick-prev:before{
  transform: translate(-35%,-50%) rotate(-45deg);
}
.slick-next:before{
  transform: translate(-65%,-50%) rotate(135deg);
}
.slick-slide:focus{
  outline: 0;
}
.slick-dots > li:first-child:last-child {
   display: none;
}
.slick-dots{
	bottom: 1rem;
	z-index: 10;
}
.slick-dots li{
	width: 3rem;
	height: 1rem;
}
.slick-dots li button{
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 50px;
}
.slick-dots li.slick-active button{
	background: #ccc;
}
.slick-dots li button:before{
	content: none;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}


.swiper img{
	width: 100%;
}
.swiper-wrapper{
	transition-timing-function:linear; 
}
.swiper-button-next,
.swiper-button-prev{
	color: #fff;
	width: 4rem;
	height: 4rem;
	background: #fff;
	border-radius: 50%;
	top: auto;
	bottom: 0;
}
.swiper-button-prev{
	left: 5%;
}
.swiper-button-next{
	right: 5%;
}
.swiper-button-prev::before,
.swiper-button-next::before{
	content: '';
	width: 2rem;
	height: 1rem;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	background: url('images/common/arrow_red.svg') no-repeat center center / contain;
	z-index: 5;
}
.swiper-button-prev{
	margin-left: 2rem;
	scale: -1 1;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-size: 1rem;
}
.swiper-pagination-bullet{
	background: var(--beige);
	border: 0;
	opacity: 1;
	width: 2rem;
	height: 3px;
	border-radius: 0;
}
.swiper-pagination-bullet-active{
	background: var(--red);
}


/* =breadcrumb
-------------------------------------------------------------- */

.breadcrumb_wrap{
	overflow: hidden;
	white-space: nowrap;
	text-align: right;
}
.breadcrumb{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 1rem;
	color: #888;
}
.breadcrumb li::after{
	content: '';
	border-top: #888 solid 1px;
	border-right: #888 solid 1px;
	width: .5rem;
	height: .5rem;
	display: inline-block;
	rotate: 45deg;
	margin-right: .5rem;
}
.breadcrumb li:last-child{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 15rem;
}
.breadcrumb li:last-child::after{
	content: none;
}
.breadcrumb a{
	color: #888;
}




/* =entry base
-------------------------------------------------------------- */

.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(--bk) solid .4rem;
}
.entry_content h3{
	background: var(--bk);
	padding: 1rem;
	border-radius: .5rem;
	color: #fff;
	font-size: 1.6rem;
	margin: 3rem 0 1rem;
}
.entry_content h4{
	color: var(--bk);
	font-size: 1.6rem;
	margin: 2rem 0;
}
.entry_content p{
	margin: 2rem 0;
}
.entry_content a{
	text-decoration: underline;
	color: var(--orange);
}
.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;
}

div#toc_container{
  width: 100%;
  border: 0;
  border-top: #999 solid 1px;
  border-bottom: #999 solid 1px;
  margin: 3rem 0;
  padding: 3rem 0;
}
div#toc_container a{
  color: #000;
}
div#toc_container a:hover{
  color: var(--yellow_txt);
}
#toc_container p.toc_title{
  text-align: left;
  font-size: 1.8rem;
}
.toc_list > li{
  margin-bottom: 1rem !important;
}






/* =page nav
-------------------------------------------------------------- */

.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(--orange);
}
.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;
  margin: 5rem 0;
  border-top: #ccc solid 1px;
  border-bottom: #ccc solid 1px;
}
.nav_single li{
	width: 33.33%;
	text-align: center;
}
.nav_single li a{
	display: block;
	padding: 1.5rem 0;
}
.nav_archive{
	border-left: #ccc solid 1px;
	border-right: #ccc solid 1px;
}





/* =site basic
-------------------------------------------------------------- */

.btn_link{
	background: #fff;
	border: var(--beige) solid 1px;
	color: var(--bk);
	display: flex;
	align-items: center;
	padding: 1rem 1rem 1rem 2rem;
	border-radius: 50px;
	width: 100%;
	max-width: 30rem;
	margin: 0 auto;
  position: relative;
	font-weight: 700;
	transition: .3s;
}
.arrow{
	width: 4rem;
	height: 4rem;
	display: block;
	background: var(--red);
	position: relative;
	border-radius: 50%;
	overflow: hidden;
}
.arrow::before,
.arrow::after{
	content: '';
	width: 35%;
	height: 2rem;
	background: url('images/common/arrow_white.svg') no-repeat center center / contain;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	transition: .5s;
}
.arrow::after{
	left: -4rem;
}
.btn_link .arrow{
	margin: 0 0 0 auto;
}

.icon_blank{
	background: url('images/common/icon_blank.svg') no-repeat center center / contain;
	width: 1rem;
	height: 1rem;
	margin-left: .5rem;
	display: inline-block;
}

.arrow_bk{
	background: url('images/common/arrow.svg') no-repeat center center / contain;
	width: 1.5rem;
	height: 1.5rem;
	display: inline-block;
}

.site_logo{
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
}
.site_logo img{
	margin-right: 1rem;
	width: 15rem;
}
.site_logo span{
	display: block;
}

.dot{
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	display: block;
}
.dot_yellow{
	background: var(--yellow);
}
.dot_red{
	background: var(--red);
}
.dot_blue{
	background: var(--blue);
}
.dot_beige{
	background: var(--beige);
}

.txt_red{
	color: var(--red);
}
.txt_yellow{
	color: var(--yellow);
}
.txt_blue{
	color: var(--blue);
}
.hidden{
	overflow: hidden;
}
.wrapper{
	max-width: 1120px;
}
.wide_wrap{
	max-width: 1280px;
}
.section{
	padding: 3rem 0;
	position: relative;
}
.block{
	margin-bottom: 5rem;
}
.page_container{
	padding: 8rem 0;
	position: relative;
	z-index: 5;
}
.page_header{
	margin-bottom: 5rem;
}
.section_title__wrap{
	margin-bottom: 3rem;
}
.section_title__center{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.section_title__en{
	font-size: 3.4rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	text-transform: capitalize;
}
.section_title__txt{
	display: flex;
	align-items: center;
	margin-top: 1.5rem;
}
.section_title{
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
}
.title_dots{
	display: inline-flex;
	margin-right: 1rem;
}
.title_dots .dot{
	margin-right: .5rem;
}

.block_title{
	position: relative;
	margin-bottom: 3rem;
	text-align: center;
	z-index: 10;
}
.block_title__jp{
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
}
.block_title__jp span{
	color: var(--red);
	font-size: 50%;
	display: block;
}
.block_title__en{
	font-size: 5rem;
	color: #fff;
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	font-weight: 700;
	line-height: 1;
	width: 100%;
}

.header_img{
	max-width: 1360px;
	margin-top: -2rem;
	margin-bottom: 3rem;
	position: relative;
}
.header_img .img_clip::before{
	padding-top: 60%;
}
#message_404 .btn_link{
	margin: 5rem 0 0
}

.job_links li{
	margin: 1rem 0;
}
.btn__job_link{
	display: flex;
	align-items: center;
	border-radius: 1rem;
	padding: 2.5rem;
	color: #fff;
	position: relative;
}
.btn__job_link::before{
	content: '';
	border: #fff solid 1px;
	width: calc(100% - 2rem);
	height: calc(100% - 2rem);
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 5;
}
.job_link__new{
	background: var(--red);
}
.job_link__career{
	background: var(--blue);
}
.job_link__img{
	flex: 0 0 30%;
	margin-right: 2rem;
}
.job_link__img .img_clip{
	border-radius: 50%;
}
.job_link__txt{
	flex: 1;
	font-size: 2.4rem;
	font-weight: 700;
}
.job_link__txt span{
	display: block;
	font-size: 50%;
}
.btn__job_link .arrow{
	border: #fff solid 1px;
}
.job_link__career .arrow{
	background: var(--blue);
}

.table{
	font-size: 1.2rem;
}
.table tr{
	border-bottom: #BEBEBE solid 1px;
}
.table th{
	padding: 1rem 0;
	font-weight: 700;
}
.table td{
	padding: 1rem 2rem;
}

.no_posts{
	background: #F2EEE9;
	color: #888;
	padding: 2rem 0;
	text-align: center;
}



/* =header
-------------------------------------------------------------- */

#site_header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header_height);
	z-index: 9999;
	display: flex;
	align-items: center;
}
#header_logo{
	margin: 0 auto 0 0;
	padding-left: 1rem;
	position: relative;
	z-index: 9999;
}
#header_nav{
	display: flex;
	align-items: center;
}
.btn_entry{
	padding: .5rem 3rem;
	position: relative;
	border: var(--bk) solid 1px;
	justify-content: center;
}
#header_entry{
	z-index: 9999;
}
#header_nav__btn{
	position: relative;
	top: 0;
	right: 0;
	width: var(--header_height);
	height: var(--header_height);
	text-align: center;
	z-index: 9999;
  cursor: pointer;
}
#header_nav__btn .border_wrap{
  position: absolute;
	left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
	width: 50%;
}
#header_nav__btn .border{
	width: 100%;
	height: 2px;
	background: var(--bk);
  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 .border:nth-of-type(2) {
	opacity: 0;
}
.nav_active #header_nav__btn .border:nth-of-type(1) {
	transform: translateY(7px) rotate(-30deg);
}
.nav_active #header_nav__btn .border:nth-of-type(3) {
	transform: translateY(-7px) rotate(30deg);
}

#header_nav__inner{
	width: 100%;
	height: 100%;
	background: var(--bg);
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	padding: 7rem 0;
}
.nav_active #header_nav__inner{
	opacity: 1;
	visibility: visible;
}
.main_navigation{
	position: relative;
}
.nav_link{
	border-radius: 1rem;
	overflow: hidden;
	background: #fff;
	margin-bottom: 1rem;
}
.nav_link__parent{
	display: flex;
	padding: 1.5rem;
	align-items: center;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
}
.nav_link__parent .arrow{
	margin: 0 0 0 auto;
}
.nav_link__parent .nav_link__en{
	color: var(--red);
	display: block;
	font-size: 60%;
	font-weight: 500;
}
.nav_link__children{
	padding: 0 1.5rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
}
.nav_link__children li{
	margin-right: 2rem;
}
.nav_link__children a{
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	white-space: nowrap;
}
.nav_link__children a::before{
	content: '';
	width: 1rem;
	height: 1px;
	background: var(--red);
	margin-right: .5rem;
	display: inline-block;
}

#nav_entry{
	display: flex;
	align-items: center;
	padding: 1rem;
	border-radius: 1.5rem;
	background: var(--red);
	color: #fff;
	font-weight: 700;
	text-align: center;
	line-height: 1.4;
	font-size: 1.2rem;
	margin: 3rem 0 2rem;
}
#nav_entry__img{
	flex: 0 0 40%;
}
#nav_entry__img .img_clip::before{
	padding-top: 90%;
}
#nav_entry p{
	flex: 1;
}
#nav_entry span{
	display: block;
	font-size: 250%;
}
.nav_official{
	display: block;
	background: #3B3B3B;
	color: #fff;
	text-align: center;
	padding: 2rem 0;
	font-size: 1.2rem;
}



/* =footer
-------------------------------------------------------------- */

#footer_job__links{
	background: #fff;
	border-top-left-radius: 3rem;
	border-top-right-radius: 3rem;
	position: relative;
}
#footer_job__links .section_title__wrap{
	margin: -5rem auto 2rem;
}
#site_footer{
	background: #fff;
	padding: 3rem 0;
	border-top: var(--beige) solid 1px;
}
#footer_nav{
	margin: 3rem 0
}
#footer_nav li{
	border-bottom: var(--beige) solid 1px;
}
#footer_nav li a{
	display: block;
	padding: 1.5rem 0;
	position: relative;
}
#footer_nav li a .arrow_bk{
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
}
#footer_nav li a .icon_plus{
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
}
#footer_nav dt a{
	pointer-events: none;
}
#footer_nav .sub_nav{
	padding-left: 1rem;
}
#footer_nav .sub_nav li a{
	padding: .5rem 0;
}
#footer_nav .sub_nav li a::before{
	content: '';
	width: 1rem;
	height: 1px;
	background: var(--red);
	margin-right: 1rem;
	display: inline-block;
	vertical-align: middle;
}
#footer_entry{
	margin-top: 2rem;
}
#footer_nav .nav_official{
	margin: 2rem auto 0;
	width: 90%;
}
#footer_copy{
	text-align: center;
	color: #888;
	font-size: 1rem;
	margin-top: 3rem;
	letter-spacing: 0;
}






/* =TOP
-------------------------------------------------------------- */

#main_visual{
	position: relative;
}
#main_visual__catch{
	position: absolute;
	width: 70%;
	max-width: 40rem;
	height: 45rem;
	top: 0;
	right: 10%;
	z-index: 10;
	display: flex;
	flex-direction: column;
}
#main_visual__catch img{
	margin: auto 0 0;
}
#front_concept{
	position: relative;
	z-index: 10;
}
#front_concept p{
	text-align: center;
	font-size: 1.6rem;
	line-height: 2;
	margin: 2rem 0;
	letter-spacing: 0;
}
#front_concept h2{
	text-align: center;
	font-size: 2.4rem;
	font-weight: 700;
	margin: 3rem 0 5rem;
}

.loop_txt__wrap{
	width: 100%;
	white-space: nowrap;
	display: flex;
	width: calc( 102rem * 2);
	margin: 0 auto;
}
.loop_txt{
	display: flex;
}
.loop_txt li{
	padding-right: 2rem;
	animation: loop-slide 10s linear infinite;
}
.loop_txt li img{
	width: 100rem;
	max-width: 100rem;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

#front_business__img .img_clip::before{
	padding-top: 80%;
}
#front_business__txt{
	margin: 3rem 0 0;
}
#front_business__txt h3{
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
#front_business__txt .btn_link{
	margin-top: 3rem;
}

#front_env__head{
	margin-bottom: 2rem;
}
#front_env__head_txt h3{
	font-size: 1.8rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

#env_flip__list{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -.5rem 3rem;
}
#env_flip__list li{
	width: 50%;
	padding: 0 .5rem;
	margin-top: 3rem;
}
.env_flip__box{
	position: relative;
}
.env_flip__box::before,
.env_flip__box::after{
	content: '';
	border-radius: 50%;
	display: block;
	width: 100%;
	padding-top: 100%;
}
.env_flip__box::before{
	scale: 90%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.circle_orange::before{
	background: #FFA121;
}
.circle_orange::after{
	background: #FFCB84;
}
.circle_blue::before{
	background: #649FFC;
}
.circle_blue::after{
	background: #B1CFFF;
}
.circle_yellow::before{
	background: #FCD841;
}
.circle_yellow::after{
	background: #FFEC9B;
}
.env_flip__box img{
	position: absolute;
	width: 100%;
	bottom: 1rem;
	left: 0;
	z-index: 10;
}

#front_interview{
	z-index: 10;
}
.interview_box{
	display: block;
	position: relative;
}
.interview_box .img_clip{
	border-radius: 2rem;
}
.interview_box .img_clip::before{
	padding-top: 140%;
}
.interview_box__txt{
	font-size: 1.6rem;
	font-weight: 700;
	position: absolute;
	top: 50%;
	left: -1rem;
}
.interview_box__txt span{
	background: #fff;
}
.interview_box__detail{
	background: var(--blue);
	width: 10rem;
	height: 10rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	font-weight: 700;
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	z-index: 5;
}
.interview_slide .swiper-slide:nth-child(3n+1) .interview_box__detail{
	background: var(--yellow);
}
.interview_slide .swiper-slide:nth-child(3n+2) .interview_box__detail{
	background: var(--red);
}
.interview_box__detail p span{
	font-size: 80%;
	display: block;
	font-weight: 500;
}
.interview_slide{
	position: relative;
}
.interview_slide .swiper-slide{
	padding: 0 1rem;
}
.interview_slide__nav{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	display: flex;
	align-items: center;
}
.interview_slide__nav .swiper-pagination-progressbar,
.interview_slide__nav .swiper-button-prev,
.interview_slide__nav .swiper-button-next{
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
}
.interview_slide__nav .swiper-button-prev,
.interview_slide__nav .swiper-button-next{
	flex: 0 0 4rem;
	margin: 0 0 0 1rem;
}
.interview_slide__nav .swiper-pagination-progressbar{
	flex: 1;
	background: var(--beige);
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background: var(--red);
}

.crosstalk_list li{
	margin-bottom: 2rem;
}
.crosstalk_list__box{
	display: block;
	overflow: hidden;
	border-radius: 1rem;
	position: relative;
}
.crosstalk_list__box .img_clip::before{
	padding-top: 60%;
}
.crosstalk_list__label{
	position: absolute;
	background: #fff;
	padding: 1rem 2rem;
	bottom: 2rem;
	left: 0;
	width: 70%;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	text-align: center;
	font-size: 1.2rem;
}
.crosstalk_list__title{
	font-weight: 700;
	font-size: 1.6rem;
	border-bottom: var(--blue) solid 1px;
	padding-bottom: .5rem;
	margin-bottom: .5rem;
}
.line_red .crosstalk_list__title{
	border-bottom: var(--red) solid 1px;
}
.crosstalk_list__label p{
	letter-spacing: 0;
}

#front_message__txt h3{
	font-size: 2rem;
	margin-bottom: 2rem;
	font-weight: 700;
	line-height: 1.5;
}
#front_message__photo{
	width: 80%;
	margin: 2rem auto;
	position: relative;
}
#front_message__photo .img_clip::before{
	padding-top: 130%;
}
#front_message__photo p{
	position: absolute;
	bottom: 3rem;
	left: -1rem;
	z-index: 5;
	font-weight: 700;
}
#front_message__photo p span{
	background: #fff;
}
#front_message,
#front_crosstalk{
	position: relative;
	z-index: 5;
}
#front_crosstalk{
	padding-top: 10rem;
}
#front_crosstalk .section_title__wrap{
	position: relative;
}




/* =company
-------------------------------------------------------------- */

#message_photo{
	margin-top: 3rem;
}
#message_photo .img_clip::before{
	padding-top: 70%;
}
#message_txt h3{
	font-size: 1.8rem;
	margin-bottom: 2rem;
	font-weight: 700;
}
#message_name{
	text-align: right;
	margin-top: 2rem;
}
#message_name p{
	text-align: left;
	display: inline-block;
}
#history_background__photo{
	margin: 3rem 0;
}
#history_background__photo .img_clip::before{
	padding-top: 70%;
}
#history_txt{
	margin-bottom: 5rem;
}
#history_background h3{
	font-size: 1.8rem;
	margin-bottom: 1rem;
	font-weight: 700;
}
#history_background__txt{
	padding-left: 1rem;
}
#history_background table th{
	font-size: 2.6rem;
	color: #888;
	font-weight: 700;
	vertical-align: middle;
	padding: 1rem 0 1rem 2rem;
	position: relative;
	width: 10rem;
	border-left: var(--red) solid 1px;
}
#history_background table tr:first-child th::after{
	content: '';
	width: 1px;
	height: 50%;
	background: var(--bg);
	position: absolute;
	top: 0;
	left: -1px;
	z-index: 5;
}
#history_background table tr:last-child th::after{
	content: '';
	width: 1px;
	height: 50%;
	background: var(--bg);
	position: absolute;
	bottom: 0;
	left: -1px;
	z-index: 5;
}
#history_background table th::before{
	content: '';
	width: 1.6rem;
	height: 1.6rem;
	background: var(--bg);
	border: var(--red) solid .4rem;
	position: absolute;
	top: 50%;
	left: -.8rem;
	z-index: 10;
	translate: 0 -50%;
	border-radius: 50%;
}
#history_background table td{
	vertical-align: middle;
	padding: 1rem 0;
}
#profile{
	padding: 10rem 0 0;
}
.recruit_links{
	background: var(--red);
	border-radius: 2rem;
	overflow: hidden;
	margin-top: 5rem;
}
.recruit_links__img .img_clip{
	border-radius: 50% / 0 0 30% 30%;
}
.recruit_links__img .img_clip::before{
	padding-top: 50%;
}
.recruit_links__inner{
	padding: 0 5% 2rem;
	margin-top: -3rem;
	position: relative;
	z-index: 5;
}
.recruit_links__inner h2{
	width: 80%;
	margin: 0 0 2rem auto;
}
.recruit_links__inner ul{
	display: flex;
	justify-content: space-between;
}
.recruit_links__inner ul li{
	width: 49%;
}
.recruit_links__inner ul li .btn_link{
	padding: .5rem .5rem .5rem 2rem;
	font-size: 1.2rem;
	text-align: center;
}
.recruit_links__inner ul li .btn_link .arrow{
	scale: .8;
	transform-origin: right center;
}



/* =business
-------------------------------------------------------------- */

#business_intro h2{
	font-size: 2rem;
	margin-bottom: 2rem;
	font-weight: 700;
}
#introduction_txt h2{
	font-size: 2rem;
	margin-bottom: 2rem;
	font-weight: 700;
}

#business_circle{
	padding: 10rem 0 0;
}
#introduction_header{
	width: 100%;
}
#introduction_txt{
	padding: 0 5% 2rem;
}
#introduction_txt span{
	background: var(--red);
	padding: .2rem 2rem;
	border-radius: 50px;
	color: #fff;
	margin-bottom: 1rem;
	display: inline-block;
	font-weight: 700;
}
#introduction_photo .img_clip{
	border-radius: 0;
}
#introduction_photo .img_clip::before{
	padding-top: 60%;
}
#introduction_wrap{
	position: relative;
	z-index: 10;
	margin-top: -5rem;
}
.business_box{
	background: #fff;
	padding: 2rem 5%;
	border-radius: 1rem;
	margin-bottom: 1rem;
}
.business_box__txt{
	margin-bottom: 2rem;
}
.business_box__txt h3{
	margin-bottom: 2rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}
.business_box__img .img_clip{
	border-radius: 0;
}
.business_box__img .img_clip::before{
	padding-top: 60%;
}
.introduction_box__en{
	font-weight: 700;
}

#uses_protector{
	margin-top: 5rem;
}
#uses_protector__title{
	text-align: center;
	width: 80%;
	max-width: 500px;
	margin: 0 auto 3rem;
	position: relative;
	padding-bottom: 1rem;
}
#uses_protector__title::before,
#uses_protector__title::after{
	content: '';
	position: absolute;
	bottom: 0;
	width: 2rem;
	height: 2rem;
}
#uses_protector__title::before{
	border-left: var(--yellow) solid .2rem;
	border-bottom: var(--yellow) solid .2rem;
	left: 0;
}
#uses_protector__title::after{
	border-right: var(--yellow) solid .2rem;
	border-bottom: var(--yellow) solid .2rem;
	right: 0;
}
#uses_protector__title_tag{
	background: var(--yellow);
	color: #fff;
	padding: .3rem 2rem;
	border-radius: 50px;
	display: inline-block;
	font-weight: 700;
}
#uses_protector__title h3{
	margin-top: 1rem;
	position: relative;
	padding-top: 1rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
}
#uses_protector__title h3 span{
	display: block;
	font-size: 70%;
}
#uses_protector__title h3::before,
#uses_protector__title h3::after{
	content: '';
	position: absolute;
	top: 0;
	width: 2rem;
	height: 2rem;
}
#uses_protector__title h3::before{
	border-left: var(--yellow) solid .2rem;
	border-top: var(--yellow) solid .2rem;
	left: 0;
}
#uses_protector__title h3::after{
	border-right: var(--yellow) solid .2rem;
	border-top: var(--yellow) solid .2rem;
	right: 0;
}
#uses_protector__img{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 3rem 0;
}
#uses_protector__img li{
	width: 50%;
	padding: 0 .5rem;
	margin-bottom: 1rem;
}
#feature{
	padding-top: 10rem;
}
#feature_intro{
	margin-bottom: 3rem;
}
.feature_box__en{
	display: inline-block;
	color: var(--red);
	border: var(--red) solid 1px;
	border-radius: 50px;
	padding: .3rem 1rem;
	font-weight: 700;
	margin-bottom: .5rem;
}





/* =Contact
-------------------------------------------------------------- */

.form_step{
	padding-bottom: 5rem;
}
.form_step p{
	margin-bottom: 3rem;
}
.form_step ul{
	display: flex;
	justify-content: center;
}
.form_step ul li{
	width: calc(33.33% - 2rem);
	border: var(--red) solid 1px;
	border-radius: .5rem;
	position: relative;
	color: var(--red);
	margin-right: 2rem;
	font-size: 1.2rem;
	text-align: center;
	padding: 1rem 0;
	background: var(--bg);
}
.mw_wp_form_confirm .form_step p{
	display: none;
}
.form_step ul li.form_step01,
.mw_wp_form_confirm .form_step ul li.form_step02,
#thanks_wrap .form_step ul li.form_step03{
	background: var(--red);
	color: #fff;
}
#thanks_wrap .form_step ul li.form_step01,
#thanks_wrap .form_step ul li.form_step02,
.mw_wp_form_confirm .form_step ul li.form_step01{
	color: var(--red);
	background: var(--bg);
}
.form_step ul li:last-child{
	margin: 0;
}
.form_step ul li:not(:last-child)::after{
	content: '';
	width: 1rem;
	height: 3px;
	position: absolute;
	left: calc(100% + .5rem);
	top: 50%;
	translate: 0 -50%;
	background-image: radial-gradient(circle, var(--red) 1px, transparent 1px);
	background-position: left top;
  background-repeat: repeat-x;
  background-size: 4px 2px;
}
.form_wrap{
	background: #fff;
	width: 100%;
	max-width: 1280px;
	padding: 5rem 5%;
}
.required{
	background: #D03838;
	color: #fff;
	font-size: 1rem;
	padding: .2rem 1rem;
	margin-right: 1rem;
	display: inline-block;
	font-weight: 500;
}
.optional{
	background: #888;
	color: #fff;
	font-size: 1rem;
	padding: .2rem 1rem;
	margin-right: 1rem;
	display: inline-block;
	font-weight: 500;
}
.input_box{
	width: 100%;
	padding: .5rem 1rem;
	margin-bottom: 3px;
  line-height: 1.7;
  border: #ccc solid 1px;
	min-height: 4rem;
	display: block;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f4f4f4 inset;
}
.input_box.short_box{
	width: 150px;
}
.form_wrap input[type="radio"],
.form_wrap input[type="checkbox"]{
	width: 20px;
	height: 20px;
	vertical-align: middle;
}

input[type="date"]{
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}

.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;
}
.form_wrap td{
	display: block;
	padding: 0 0 2rem;
	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;
}
.form_policy{
	background: #F7F7F7;
	padding: 2rem 5%;
	border-radius: 1rem;
	font-size: 1.2rem;
	box-shadow: #D3D3D3 0 0 10px inset;
}
.mw_wp_form_confirm .form_policy{
	display: none;
}
.form_policy h3{
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}
.policy_check{
	text-align: center;
	margin: 3rem 0;
}
.policy_check p{
	margin: 1rem 0;
}
.form_submit__wrap{
	margin-top: 3rem;
}
.form_submit__wrap .btn_link{
	text-align: center;
	justify-content: center;
	padding: 2rem 0;
	border: 0;
}
.btn_submit{
	background: var(--red);
	color: #fff;
}
.btn_back{
	background: var(--beige);
	color: #888;
}

#thanks_inner h2{
	font-size: 2.6rem;
	margin-bottom: 1rem;
	text-align: center;
}
#thanks_inner h3{
	font-size: 1.6rem;
	margin-bottom: 3rem;
	text-align: center;
}
#thanks_attentions{
	margin-top: 3rem;
}
#thanks_attentions h3{
	margin-bottom: 1rem;
	background: var(--bg);
	text-align: center;
	color: #888;
	padding: .5rem;
}
#thanks_attentions p{
	font-size: 1.2rem;
}

#thanks_link{
	margin-top: 5rem;
}




/* =environment
-------------------------------------------------------------- */

#env_intro{
	position: relative;
	z-index: 5;
}
#env_intro h2{
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 3rem;
}
#env_links{
	width: 100%;
	padding: 3rem 5%;
	margin: 5rem auto;
	background: var(--beige);
}
#env_links li{
	margin-bottom: 1rem;
}
.env_link__box{
	display: block;
	overflow: hidden;
	border-radius: .5rem;
	position: relative;
	color: #fff;
}
.env_link__box .img_clip{
	border-radius: .5rem;
}
.env_link__box .img_clip::before{
	padding-top: 35%;
	background: #60513E;
}
.env_link__box .img_clip img{
	opacity: .5;
}
.env_link__txt{
	position: absolute;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	z-index: 10;
	display: flex;
	align-items: center;
	padding: 0 5%;
}
.env_link__txt p{
	flex: 1;
	font-size: 2rem;
	font-weight: 700;
}
.env_link__txt p span{
	display: block;
	font-size: 60%;
}
.env_link__txt .arrow{
	margin: 0 0 0 auto;
	background: none;
	border: #fff solid 1px;
}
.env_icons{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -.5em;
}
.env_icons li{
	width: 50%;
	padding: 0 .5rem;
	margin-bottom: 1rem;
}
.env_icon__box{
	text-align: center;
	background: #fff;
	border-radius: .5rem;
	padding: 2rem .5rem;
	height: 100%;
}
.env_icon__box figure{
	width: 60%;
	margin: 0 auto 1rem;
}
.env_icon__box h3{
	font-weight: 700;
}
.env_icon__box p{
	font-weight: 400;
	letter-spacing: 0;
	font-size: 1rem;
	line-height: 1.5;
}

#person_header{
	text-align: center;
	margin-bottom: 3rem;
}
#person_header h3{
	font-size: 1.8rem;
	font-weight: 700;
	margin-top: 1rem;
}
#person_inner li{
	margin-bottom: 2rem;
}
#person_inner li p{
	margin-top: .5rem;
}
#person_inner h2{
	text-align: center;
	font-size: 2rem;
	margin-top: 3rem;
	font-weight: 700;
}





/* =job
-------------------------------------------------------------- */

#page_job .job_links{
	margin-bottom: 3rem;
}
.job_list__wrap{
	background: #fff;
	padding: 3rem 5%;
	border-top: var(--red) solid .5rem;
	width: 100%;
	max-width: 1280px;
	margin-bottom: 3rem;
}
#career{
	border-top: var(--blue) solid .5rem;
}
.job_list__title{
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 3rem;
	line-height: 1.5;
}
.job_list__title span{
	font-size: 60%;
	display: block;
}

.job_list li{
	margin-bottom: 3rem;
}
.job_box__thumb .img_clip::before{
	padding-top: 70%;
}
.job_type{
	background: #F2EEE9;
	color: #888;
	font-size: 1.2rem;
	margin-right: 1rem;
	border-radius: 50px;
	padding: .2rem 1rem;
	display: inline-block;
}
.job_box__inner .posted_title{
	font-weight: 700;
	margin: 1rem 0;
}
.job_box__txt{
	font-size: 1.2rem;
}

#job_contents__header .job_type{
	background: #fff;
}
#job_contents__header h1{
	font-size: 2rem;
	line-height: 1.5;
	margin: 1rem 0 3rem;
	font-weight: 700;
}
#job_photo{
	margin-bottom: 2rem;
}
#job_photo .img_clip::before{
	padding-top: 70%;
}
#job_contents .job_list__wrap{
	margin-top: 5rem;
}
#job_details h2{
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
.entry_link{
	margin-top: 5rem;
}
.entry_link .btn_link{
	background: var(--red);
	color: #fff;
	font-size: 1.8rem;
}
.entry_link .btn_link .arrow{
	border: #fff solid 1px;
}

.gmap{
	margin-top: 1rem;
}
.gmap iframe{
	width: 100%;
	height: 28rem;
}






/* =interview
-------------------------------------------------------------- */

#page_interview__inner{
	position: relative;
	z-index: 10;
	padding-bottom: 5rem;
}
#page_interview__inner::before{
	content: '';
	background: rgba(255,255,255,.45);
	height: 90%;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: -1;
	position: absolute;
}
#interview_header{
	max-width: 1360px;
	width: 100%;
	margin-bottom: 10rem;
}
#interview_header .header_img .img_clip{
	border-radius: 0;
}
#interview_header .header_img .img_clip::before{
	padding-top: 80%;
	background: #000;
}
#interview_header .header_img .img_clip img{
	opacity: .8;
}
.interview_header__txt{
	position: absolute;
	z-index: 10;
}
#interview_header__en{
	color: #fff;
	font-size: 3rem;
	top: 1rem;
	left: 1rem;
	font-weight: 700;
}
#interview_catch{
	font-size: 1.6rem;
	bottom: 3rem;
	left: 1rem;
	font-weight: 700;
}
#interview_catch span{
	background: #fff;
}
#interview_header__circle{
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	background: var(--blue);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 1rem;
	line-height: 1.4;
	text-align: center;
	letter-spacing: 0;
	bottom: -9rem;
	right: 1rem;
}
#interview_header__circle h2{
	font-size: 1.4rem;
	position: relative;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
#interview_header__circle h2::after{
	content: '';
	background: #fff;
	width: 5rem;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	translate: -50% 0;
}
#interview_header .breadcrumb_wrap{
	padding: 0 5%;
	text-align: left;
	margin-top: -2rem;
}
#interview_header .breadcrumb{
	justify-content: flex-start;
}

.interview_txt h2{
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 2rem;
}
.interview_txt h2::before{
	content: '';
	width: 2rem;
	height: 2px;
	background: #000;
	margin-right: 1rem;
	display: inline-block;
	vertical-align: middle;
}
.interview_flex__photo{
	margin-top: 3rem;
}
.interview_flex__photo .img_clip::before{
	padding-top: 70%;
}
.interview_photo02 .img_clip::before{
	padding-top: 60%;
}
#other_crosstalk .block_title__jp,
#other_interview .block_title__jp{
	font-size: 2rem;
}
.other_interview__slide .img_clip::before{
	padding-top: 70%;
}
.other_interview__slide .swiper-slide{
	padding: 0 1rem;
}
.other_interview__slide .interview_box__detail{
	scale: .8;
	transform-origin: right bottom;
}
.other_interview__slide .interview_box__txt{
	font-size: 1.4rem;
	width: calc(100% - 10rem);
	top: auto;
	bottom: 2rem;
	opacity: 1 !important;
}
.other_interview__slide .interview_box__txt br{
	display: none;
}
.slide__nav{
	height: 4rem;
	margin-top: 1rem;
	position: relative;
}





/* =cross talk
-------------------------------------------------------------- */

#talk_container{
	position: relative;
	z-index: 20;
	padding-bottom: 5rem;
}
#talk_container::before{
	content: '';
	background: rgba(255,255,255,.45);
	height: 90%;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: -1;
	position: absolute;
	border-radius: 50% / 6rem 6rem 0 0;
}

#talk_header{
	margin-bottom: 5rem;
}
#talk_header h2{
	font-size: 2rem;
	text-align: center;
	font-weight: 700;
}
#talk_staff{
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}
#talk_staff li{
	margin: 0 .5rem;
}
.staff_photo{
	width: 8rem;
}
.staff_photo .img_clip{
	border-radius: 50%;
	border: var(--red) solid 2px;
}
.staff1 .img_clip,
#talk_staff li:nth-child(2) .img_clip{
	border: var(--blue) solid 2px;
}
.staff2 .img_clip,
#talk_staff li:nth-child(3) .img_clip{
	border: var(--yellow) solid 2px;
}
#talk_staff li p{
	text-align: center;
	font-size: 1rem;
	margin-top: 1rem;
	line-height: 1.5;
}

.talk_txt__box{
	display: flex;
	margin-bottom: 2rem;
}
.talking_staff{
	flex: 0 0 8rem;
	margin-right: 1rem;
}
.talking_staff p{
	font-size: 1rem;
	text-align: center;
	margin-top: .5rem;
}
.talking_txt{
	flex: 1;
	line-height: 1.5;
}
.talk_inner__photo{
	margin-top: 3rem;
}




/* =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;
	}
	.wp-block-gallery.columns-3 .wp-block-image{
		width: 33.33%;
	}
	.wp-block-gallery.columns-4 .wp-block-image{
		width: 25%;
	}
	.wp-block-gallery.columns-5 .wp-block-image{
		width: 20%;
	}
	.section{
		padding: 5rem 0;
	}
	.block{
		margin-bottom: 8rem;
	}
	.page_container{
		padding: 10rem 0 8rem;
	}
	.section_title__en{
		font-size: 5rem;
	}
	.block_title{
		margin: 5rem 0;
	}
	.block_title__jp{
		font-size: 3rem;
	}
	.block_title__en{
		font-size: 8rem;
		top: 40%;
	}
	.block_title__left{
		text-align: left;
	}
	.block_title__left .block_title__en{
		translate: 0 -50%;
		left: -2rem;
	}
	.table{
		font-size: 1.4rem;
	}
	.table th{
		width: 25%;
		padding: 1.5rem 0;
	}
	.table td{
		padding: 1.5rem 2rem;
	}
	.header_img{
		margin: 3rem auto 8rem;
	}
	.header_img .img_clip{
		border-radius: 3rem;
	}
	.header_img .img_clip::before{
		padding-top: 40%;
	}
	.breadcrumb_wrap{
		margin-top: -3rem;
	}
	#footer_job__links{
		border-top-left-radius: 5rem;
		border-top-right-radius: 5rem;
	}
	#footer_job__links .section_title__wrap{
		margin: -8rem auto 3rem;
	}
	.job_links{
		display: flex;
	}
	.job_links li{
		width: 50%;
		padding: 0 1rem;
		margin: 0;
	}
	#header_logo{
		display: inline-flex;
		align-items: center;
	}
	#header_nav__flex{
		display: flex;
		justify-content: space-between
	}
	.main_navigation{
		width: 55%;
	}
	#header_nav__right{
		width: 42%;
	}
	#nav_entry{
		margin: 0 0 2rem;
		display: block;
		padding: 1.5rem;
	}
	#nav_entry p{
		padding: 1.5rem 0 1rem;
	}
	#site_footer{
		padding: 5rem 0 2rem;
	}
	#footer_logo{
		margin: 0 auto 0 0;
	}
	#footer_entry{
		width: auto;
		margin: 0;
	}
	#footer_nav__inner{
		display: flex;
	}
	#footer_nav ul li{
		margin: 0 3rem 2rem 0;
		border: 0;
	}
	#footer_nav li a{
		padding: 0;
		font-size: 1.2rem;
	}
	#footer_nav li a .arrow_bk,
	#footer_nav li a .icon_plus{
		display: none;
	}
	#footer_nav .sub_nav{
		display: block;
		padding: 0;
	}
	#footer_nav .sub_nav ul{
		margin-top: 1rem;
	}
	#footer_nav .sub_nav li{
		margin: 0 0 .5rem;
	}
	#footer_nav .sub_nav li a{
		padding: 0;
		font-size: 1rem;
	}
	#footer_nav .nav_official{
		width: 30rem;
		margin: 2rem 0 0;
	}
	#footer_nav dt{
		pointer-events: none;
	}
	#footer_nav dt a{
		pointer-events: all;
	}
	#footer_copy{
		margin-top: 5rem;
	}
	.main_visual__swiper{
		width: 140%;
		margin-left: -20%;
	}
	#main_visual__catch{
		height: 40rem;
	}
	#front_concept{
		margin-top: -25rem;
	}
	#front_concept p{
		font-size: 1.2rem;
		line-height: 2.5;
	}
	#front_business{
		padding-top: 8rem;
	}
	#front_business__inner{
		display: flex;
	}
	#front_business__img{
		width: 50%;
		margin-right: 5rem;
	}
	#front_business__txt{
		flex: 1;
		margin: 0;
	}
	#front_business__txt .btn_link{
		margin: 3rem 0 0;
	}
	#front_env__head{
		display: flex;
		align-items: center;
	}
	#front_env__head .section_title__wrap{
		flex: 0 0 50%;
		margin: 0 2rem 0 0;
	}
	#front_env__head_txt{
		flex: 1;
	}
	#env_flip__list li{
		width: 25%;
		margin-top: 5rem;
	}
	.interview_slide{
		margin-left: 5%;
	}
	.interview_slide .swiper-slide{
		width: 25% !important;
		transition: .5s;
		padding: 0;
		margin-right: 2rem;
	}
	.interview_slide .swiper-slide-active{
		width: 30% !important;
	}
	.interview_box__txt{
		opacity: 0;
		transition: .5s;
		font-size: 1rem;
		transition-delay: .5s;
	}
	.swiper-slide-active .interview_box__txt{
		opacity: 1;
	}
	.interview_box__detail{
		scale: .8;
		transform-origin: bottom right;
	}
	.interview_slide__nav{
		width: 67%;
	}
	.crosstalk_list{
		display: flex;
		flex-wrap: wrap;
		margin: 0 -1rem;
	}
	.crosstalk_list li{
		width: 50%;
		padding: 0 1rem;
	}
	#front_message .wrapper{
		position: relative
	}
	#front_message__inner{
		display: flex;
	}
	#front_message__txt{
		flex: 1;
	}
	#front_message__photo{
		width: 30%;
		margin: 0 0 0 3rem;
	}
	#front_message .btn_link{
		margin: 3rem 0 0;
	}
	#message_inner{
		display: flex;
		flex-direction: row-reverse;
	}
	#message_photo{
		width: 45%;
		margin: 0 3rem 0 0;
	}
	#message_txt{
		flex: 1;
	}
	#history{
		padding-top: 0;
	}
	#history_background{
		display: flex;
		flex-direction: row-reverse;
	}
	#history_background__photo{
		width: 45%;
		margin: 5rem 0 0 3rem;
		align-self: stretch;
	}
	#history_background__photo .img_clip{
		height: 100%;
	}
	#history_background__photo .img_clip::before{
		content: none;
	}
	#history_background__txt{
		flex: 1;
	}
	#business_intro{
		display: flex;
	}
	#business_intro h2{
		white-space: nowrap;
		margin-right: 3rem;
	}
	#business_intro p{
		flex: 1;
	}
	#introduction_header{
		width: 95%;
		display: flex;
		flex-direction: row-reverse;
		max-width: 1360px;
	}
	#introduction_photo{
		width: 50%;
		margin-right: 3rem;
	}
	#introduction_photo .img_clip{
		border-radius: 1.5rem;
	}
	#introduction_photo .img_clip::before{
		padding-top: 80%;
	}
	#introduction_txt{
		margin: 0;
		flex: 1;
		padding: 0;
	}
	.business_box{
		padding: 3rem 4rem;
		display: flex;
		align-items: center;
		margin-bottom: 2rem;
	}
	.business_box__img{
		width: 40%;
		margin-left: 3rem;
	}
	.business_box__txt{
		flex: 1;
	}
	#uses_protector__title h3{
		font-size: 3rem;
	}
	#uses_protector p{
		text-align: center;
	}
	#uses_protector__img li{
		width: 33.33%;
	}
	.recruit_links{
		display: flex;
		position: relative;
	}
	.recruit_links__img{
		width: 65%;
	}
	.recruit_links__img .img_clip {
    border-radius: 10% / 0 50% 50% 0;
	}
	.recruit_links__inner{
		margin: 0;
		padding: 2rem 5%;
		flex: 1;
		width: 60%;
		position: absolute;
		top: 50%;
		right: 0;
		translate: 0 -50%;
		z-index: 10;
	}
	.form_step{
		padding: 3rem 0 5rem;
	}
	.form_step p{
		margin-bottom: 8rem;
	}
	.form_step ul li{
		width: calc(33.33% - 6rem);
		margin-right: 6rem;
		font-size: 1.6rem;
	}
	.form_step ul li:not(:last-child)::after{
		width: 4rem;
		left: calc(100% + 1rem);
	}
	.form_wrap{
		border-radius: 2rem;
		width: 90%;
		padding: 5rem 5%;
	}
	.form_wrap th{
		display: table-cell;
		padding: 2rem 0;
		width: 30%;
	}
	.form_wrap td{
		display: table-cell;
		padding: 2rem;
	}
	#thanks_inner{
		text-align: center;
	}
	#env_links{
		padding: 5rem 5%;
	}
	#env_links ul{
		display: flex;
	}
	#env_links ul li{
		width: 33.33%;
		padding: 0 1rem;
		margin: 0;
	}
	.env_link__box .img_clip::before{
		padding-top: 45%;
	}
	.env_link__txt p{
		font-size: 1.6rem;
	}
	.env_icons li{
		width: 25%;
	}
	.env_icon__box figure{
		width: 50%;
	}
	#person_header p{
		font-size: 1.8rem;
	}
	#person_header h3{
		font-size: 2rem;
		margin-top: 2rem;
	}
	#person_inner ul{
		margin: 0 -1rem;
		display: flex;
	}
	#person_inner li{
		width: 33.33%;
		padding: 0 1rem;
		margin: 0;
	}
	#person_inner h2{
		font-size: 2.6rem;
		margin: 5rem 0;
	}
	#page_job .job_links{
		margin-bottom: 5rem;
	}
	.job_list__wrap{
		width: 90%;
		border-radius: 2rem;
	}
	.job_list__title{
		font-size: 2.6rem;
	}
	.job_list{
		margin: 0 -1rem;
		display: flex;
		flex-wrap: wrap;
	}
	.job_list li{
		width: 33.33%;
		padding: 0 1rem;
	}
	#job_contents__header h1{
		font-size: 2.6rem;
	}
	#job_contents__inner{
		display: flex;
	}
	#job_photo{
		flex: 0 0 45%;
		margin-right: 5rem;
		margin-bottom: 0;
	}
	#job_txt{
		flex: 1;
	}
	#page_interview{
		padding-top: 5rem;
	}
	#interview_header{
		width: 95%;
		margin-bottom: 5rem;
	}
	#interview_header .header_img{
		margin: 0 0 6rem;
	}
	#interview_header .header_img .img_clip{
		border-radius: 3rem;
	}
	#interview_header .header_img .img_clip::before{
		padding-top: 45%;
	}
	#interview_header__en{
		font-size: 5rem;
		left: 3rem;
	}
	#interview_catch{
		font-size: 2.4rem;
		left: 3rem;
		bottom: 5rem;
	}
	#interview_header__circle{
		bottom: -3rem;
		right: 3rem;
	}
	#interview_header .breadcrumb{
		justify-content: flex-end;
	}
	.interview_flex{
		display: flex;
		flex-direction: row-reverse;
	}
	.interview_txt{
		flex: 1;
	}
	.interview_txt h2{
		font-size: 2.4rem;
		margin-bottom: 2rem;
	}
	.interview_flex__photo{
		flex: 0 0 40%;
		margin: 0 5rem 0 0;
	} 
	.interview_photo02{
		width: 80%;
		margin: 0 0 0 auto;
	}
	.interview_photo02 .img_clip::before{
		padding-top: 50%;
	}
	.other_interview__slide{
		width: 50%;
		margin: 0 auto;
	}
	#page_crosstalk .header_img{
		margin-bottom: 5rem;
	}
	.talk_block{
		display: flex;
		justify-content: space-between;
	}
	.talk_inner__photo{
		flex: 0 0 40%;
		margin: 0 0 0 5rem;
	}
	.talk_block:nth-child(2n){
		flex-direction: row-reverse;
	}
	.talk_block:nth-child(2n) .talk_inner__photo{
		margin: 0 5rem 0 0;
	}
	.talk_txt h2{
		margin-bottom: 3rem;
	}
	.talk_txt__box{
		margin-bottom: 3rem;
	}
	#talk_staff{
		margin: 5rem 0 8rem;
	}
	#talk_staff li{
		margin: 0 2rem;
	}
	.staff_photo{
		width: 15rem;
	}
	#talk_staff li p{
		font-size: 1.2rem;
	}
	.talking_staff .staff_photo{
		width: 8rem;
	}
}




@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
		scroll-padding-top: 80px;
  }
	.site_logo{
		font-size: 1.4rem;
	}
	.site_logo img{
		width: 20rem;
	}
	.section_title{
		font-size: 1.6rem;
	}
	.section_title__en{
		font-size: 6.6rem;
	}
	.block_title__en{
		font-size: 10rem;	
	}
	.block_title__left .block_title__en{
		left: -8rem;
	}
	.job_links{
		padding: 0 2rem;
	}
	.job_links li{
		padding: 0 1.5rem;
	}
	#header_logo{
		margin-left: 2rem;
	}
	#header_nav__btn .border_wrap{
		width: 40%;
	}
	#header_nav__inner{
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
	}
	#header_nav__flex{
		align-items: center;
	}
	.main_navigation{
		width: 72%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.nav_link{
		width: 49%;
		margin: .5rem 0;
	}
	#header_nav__right{
		width: 25%;
	}
	.btn_entry{
		padding: .5rem 5rem;
	}
	#footer_nav li a:hover{
		text-decoration: underline;
	}
	#main_visual__catch{
		height: 50rem;
	}
	#front_concept{
		margin-top: -25rem;
	}
	#front_concept p{
		font-size: 1.4rem;
		margin-bottom: 3rem;
	}
	#front_concept h2{
		font-size: 3rem;
		margin: 5rem 0 8rem;
	}
	.loop_txt__wrap{
		width: calc(122rem * 2);
	}
	.loop_txt li img{
		width: 120rem;
		max-width: 120rem;
	}
	#front_business__inner{
		align-items: center;
	}
	.interview_box__txt{
		font-size: 1.6rem;
	}
	.crosstalk_list__box .img_clip::before{
		padding-top: 50%;
	}
	.crosstalk_list__label{
		width: 60%;
	}
	#front_message__photo{
		margin: 0 0 0 5rem;
	}
	#front_crosstalk .section_title__wrap{
		padding-top: 5rem;
	}
	#front_message .btn_link{
		position: absolute;
		bottom: 0;
		left: 0;
	}
	#message_txt h3{
		font-size: 2rem;
	}
	#introduction_txt h2,
	#business_intro h2{
		font-size: 3rem;
		line-height: 1.5;
	}
	#business_intro h2{
		margin-right: 8rem;
	}
	#business_intro p{
		font-size: 1.6rem;
		line-height: 2;
	}
	#introduction_txt h2{
		margin-bottom: 3rem;
	}
	#introduction_photo{
		margin-right: 8rem;
	}
	#introduction_photo .img_clip::before{
		padding-top: 70%;
	}
	#introduction_txt p{
		max-width: 450px;
	}
	.business_box__txt h3{
		font-size: 2.4rem;
	}
	.introduction_box__en{
		font-size: 1.8rem;
	}
	.business_box__img{
		margin-left: 5rem;
	}
	#business_circle{
		padding: 15rem 0 0;
	}
	.recruit_links__inner h2{
		margin-bottom: 3rem;
	}
	.recruit_links__inner ul li .btn_link{
		font-size: 1.4rem;
	}
	.recruit_links__inner ul li .btn_link .arrow{
		scale: 1;
	}
	#env_intro h2{
		font-size: 2.2rem;
	}
	.form_wrap{
		padding: 5rem 10rem 8rem;
	}
	.form_policy{
		margin: 5rem 0 3rem;
	}
	.form_submit__wrap{
		margin-top: 5rem;
		display: flex;
		justify-content: center;
		flex-direction: row-reverse;
	}
	.form_submit__wrap .btn_link{
		margin: 0 2rem;
	}
	.env_icons li{
		padding: 0 1rem;
		margin-bottom: 2rem;
	}
	.job_list__wrap{
		padding: 5rem 80px;
	}
	#job_contents__header{
		padding: 3rem 0;
	}
	#job_contents .job_list__wrap{
		margin-top: 8rem;
	}
	#job_details{
		display: flex;
	}
	#job_details h2{
		font-size: 2.4rem;
		width: 30%;
		padding-top: 1rem;
	}
	#page_interview{
		padding-top: 8rem;
	}
	#interview_header__circle{
		width: 220px;
		height: 220px;
		font-size: 1.4rem;
	}
	#interview_header__circle h2{
		font-size: 2rem;
		padding-bottom: 1.5rem;
		margin-bottom: 1.5rem;
	}
	.other_interview__slide .swiper-slide{
		padding: 0 2rem;
	}
	.other_interview__slide .interview_box__txt br{
		display: block;
	}
	.other_interview__slide .interview_box__detail{
		scale: 1;
	}
	.other_interview__slide .interview_box__txt{
		left: 2rem;
		width: calc(100% - 14rem);
	}
	#talk_header h2{
		font-size: 3rem;
	}
	#talk_container::before{
		border-radius: 50% / 10rem 10rem 0 0;
	}
}





@media screen and (min-width: 1200px){
	.nav_link__parent{
		padding: 2rem;
	}
	.nav_link__children{
		padding: 0 2rem 2rem;
	}
	#site_footer__flex{
		display: flex;
		justify-content: space-between;
		position: relative;
	}
	#footer_nav{
		margin-top: 0;
	}
	#footer_nav .nav_official{
		position: absolute;
		bottom: 0;
		left: 0;
		margin: 0;
	}
	#main_visual__catch{
		right: 50%;
		margin-right: -550px;
		height: 55rem;
	}
	#front_concept{
		margin-top: -35rem;
	}
	#front_concept p{
		font-size: 1.8rem;
	}
	#front_concept h2{
		font-size: 3rem;
		margin: 5rem 0 8rem;
	}
	#env_flip__list{
		margin: 0 -1rem 5rem;
	}
	#env_flip__list li{
		padding: 0 1rem;
	}
	.interview_photo02{
		width: 90%;
		margin: 0 -5rem 0 auto;
	}
}


@media screen and (min-width: 1900px){
	.main_visual__swiper{
		width: 1900px;
		margin: 0 auto;
	}
}




@media (hover: hover) {
  .img_opacity:hover img{
  	opacity: .8;
  }
  .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);
  }
	a:hover .img_clip img{
		scale: 1.1;
	}
	a:hover .arrow::before{
		left: 150%;
	}
	a:hover .arrow::after{
		left: 50%;
		transition-delay: .2s;
	}
	.btn_entry:hover{
		background: var(--bk);
		color: #fff;
	}
	.nav_official:hover{
		background: #666;
	}
}



/* =circle 
-------------------------------------------------------------- */

.bg_circle{
	position: relative;
	z-index: 5;
}
.bg_circle::before{
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .45);
}
.bg_circle__center::before{
	left: 50%;
	translate: -50% 0;
	width: 700px;
	height: 700px;
}
.bg_circle__right::before{
	right: -1200px;
	width: 2000px;
	height: 2000px;
}
.page_container::before{
	width: 60%;
	top: -5rem;
	right: -10%;
	height: 20rem;
	border-bottom-left-radius: 100%;
}
#business_circle::before{
	top: 5rem;
}

@media screen and (min-width: 768px){
	.page_container::before{
		height: 30rem;
		top: -10rem;
	}
	.bg_circle__right::before{
		width: 150rem;
		height: 150rem;
		right: -80rem;
	}
	.bg_circle__center::before{
		width: 100rem;
		height: 100rem;
	}
	#business_circle::before{
		width: 160rem;
		height: 160rem;
	}
}

@media screen and (min-width: 1024px){
	.page_container::before{
		height: 50rem;
		top: -15rem;
	}
	.bg_circle__right::before{
		right: auto;
		left: 50%;
		margin-left: -400px;
	}
	#business_circle::before{
		width: 200rem;
		height: 200rem;
		top: 8rem;
	}
}




/* = dots
-------------------------------------------------------------- */

.dots_setting{
	position: relative;
	z-index: 5;
}
.dots_setting::after{
	content: '';
	position: absolute;
	z-index: -1;
}
.page_container::after{
	background: url('images/header_dats.svg') no-repeat center center / contain;
	width: 60%;
	height: 8rem;
	top: 5rem;
	right: 2rem;
}
#front_business::after{
	background: url('images/dots01.svg') no-repeat center center / contain;
	width: 60%;
	height: 8rem;
	top: 0;
	right: 0;
}
#front_environment::after{
	background: url('images/dots02.svg') no-repeat center center / contain;
	width: 100%;
	height: 8rem;
	bottom: -5rem;
	right: -50%;
}
.dots_title::before{
	content: '';
	background: url('images/dots03.svg') no-repeat center center / contain;
	width: 60%;
	height: 8rem;
	position: absolute;
	top: -8rem;
	left: -5rem;
}
.dots_title::after{
	content: '';
	background: url('images/dots04.svg') no-repeat center center / contain;
	width: 60%;
	height: 8rem;
	position: absolute;
	top: -8rem;
	right: -5rem;
}
#company_circle::after{
	background: url('images/company/dots01.svg') no-repeat center center / contain;
	width: 60%;
	height: 8rem;
	top: 0;
	right: 0;
}
#profile::after{
	background: url('images/company/dots02.svg') no-repeat center center / contain;
	width: 80%;
	height: 8rem;
	top: 0;
	right: 0;
}
#business_circle::after{
	background: url('images/business/dots01.svg') no-repeat center center / contain;
	width: 300px;
	height: 200px;
	top: 0;
	left: -80px;
}
#introduction::after{
	background: url('images/business/dots02.svg') no-repeat center center / contain;
	width: 300px;
	height: 200px;
	bottom: -12rem;
	right: -5rem;
}
#introduction .dot{
	position: absolute;
	width: 10rem;
	height: 10rem;
	bottom: 0;
	left: -3rem;
	opacity: .4;
	z-index: -1;
}
#env_intro::before,
#env_intro::after{
	content: '';
	position: absolute;
	z-index: -1;
}
#env_intro::before{
	background: url('images/environment/dots_left.svg') no-repeat center center / contain;
	width: 250px;
	height: 250px;
	top: 100px;
	left: -100px;
}
#env_intro::after{
	background: url('images/environment/dots_right.svg') no-repeat center center / contain;
	width: 300px;
	height: 300px;
	bottom: 50px;
	right: -50px;
}


@media screen and (min-width: 768px){
	.page_container::after{
		height: 20rem;
		width: 20rem;
		right: 25%;
		top: 0;
	}
	#front_business::after{
		top: -5rem;
	}
	#front_environment::after{
		right: -5rem;
		width: 30rem;
	}
}


@media screen and (min-width: 1024px){
	.page_container::after{
		height: 40rem;
		width: 40rem;
		right: 50%;
		margin-right: -400px;
	}
	#front_business::after{
		right: auto;
		left: 45%;
		width: 500px;
		height: 170px;
	}
	#front_environment::after{
		width: 590px;
		height: 190px;
		bottom: -10rem;
		right: auto;
		left: 50%;
		margin-left: 200px;
	}
	.dots_title::before{
		width: 250px;
		height: 250px;
		left: 5%;
		top: -10rem;
	}
	.dots_title::after{
		right: 5%;
		width: 270px;
		height: 200px;
	}
	#company_circle::before{
		top: 5rem;
	}
	#company_circle::after{
		width: 550px;
		height: 200px;
		right: 50%;
		margin-right: -650px;
	}
	#profile::after{
		width: 1000px;
		height: 300px;
		right: 50%;
		margin-right: -900px;
	}
	#business_circle::after{
		width: 600px;
		height: 300px;
		left: 50%;
		margin-left: -900px;
	}
	#introduction .dot{
		opacity: .7;
		width: 200px;
		height: 200px;
		left: 50%;
		margin-left: -800px;
	}
	#introduction::after{
		width: 650px;
		height: 300px;
		right: 50%;
		margin-right: -800px;
	}
	#env_intro::before{
		width: 600px;
		height: 600px;
		top: 50px;
		left: 50%;
		margin-left: -900px;
	}
	#env_intro::after{
		width: 800px;
		height: 800px;
		bottom: 80px;
		right: 50%;
		margin-right: -900px;
	}
}