@charset "UTF-8";
/**
 * Stylesheet for Top Page
 * 
 */

:root {
	--main-color: #007b7f;
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --color-base: #f8f8f8;
    --color-gray: #ddd;
    --color-theme: #f5695f;
    --color-theme-darken: #f12617;
    --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
    --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
}

@media only screen and (max-width: 1024px) {
	html {
		-webkit-text-size-adjust: 100%;
	}
	/* .l-inner {
		padding: 0 4rem;
	} */

	/* .slide_media {
		height: max(70vh, 70vw);
	} */
}

section {
	/* background-color: #fff; */
}

/*------------------------------------------
  Loader Splash
--------------------------------------------*/
body { height: 100vh; }
body.appear { height: auto; }

#loading {
	position: relative;
	width: 100vw;
	height: 100vh;
	background-color: #fff;
}
.loader {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
#loading.loaded {
	opacity: 0;
	visibility: hidden;
	height: 0;
}

.parallax {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

/*------------------------------------------
  Global Navigation
--------------------------------------------*/
.gnav_area {
	position: relative;
	padding: 1em 0 0;
}
.center_logo {
	width: 50%;
}
@media (min-width: 768px) {
	.gnav_area {
		padding: 1em 0 0;
	}
	.center_logo {
		width: 35%;
	}
}

/*------------------------------------------
  Section Titile
--------------------------------------------*/
.section_title {
	position: relative;
	text-align: left;
	color: #000;
	font-size: 250%;
	line-height: 1;
	height: 2.5em;
	margin-top: 1em;
	margin-bottom: 1em;
}
.section_title_wrap {
	background-color: #efefef;
	position: absolute;
	top: 0;
	left: -15px;
	width: calc(100vw - 10px);
	height: auto;
	padding: 1.2em;
}
.section_title_wrap:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	background-color: #000;
	clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.section_title span {
	display: block;
	position: absolute;
	top: 10px;
	left: 35px;
}
.section_title .jpn {
	font-size: 70%;
	top: 55%;
}
.section_title:after {
	content: none;
}
@media screen and (min-width: 992px) {
	.section_title {
		font-size: 500%;
	}
	.section_title_wrap {
		left: 0;
		width: calc( 100vw * 0.8 );
	}
	.section_title_wrap:after {
		width: 65px;
		height: 65px;
	}
	.section_title span {
		top: 10px;
		left: 130px;
	}
}
@media screen and (min-width: 1400px) {
	.section_title span {
		top: 10px;
		left: 130px;
	}
}

/*------------------------------------------
  Slides
--------------------------------------------*/
/* swiper.js 設定 */
.swiper-button-prev, .swiper-button-next {
	display: grid;
	place-content: center;
	width: 6.4rem;
	height: 6.4rem;
	cursor: pointer;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.swiper-button-prev::before, .swiper-button-next::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	border-radius: 50%;
	-webkit-box-shadow: var(--box-shadow);
			box-shadow: var(--box-shadow);
}
.swiper-button-prev::after, .swiper-button-next::after {
	width: 1.2rem;
	height: 1.2rem;
	content: "";
	border: solid var(--color-gray);
	border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
	margin-left: 0.4rem;
	-webkit-transform: rotate(-135deg);
			transform: rotate(-135deg);
}
.swiper-button-next::after {
	margin-right: 0.4rem;
	-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
}
.swiper-button-disabled {
	pointer-events: none;
	opacity: 0;
}
.swiper-fade .swiper-slide {
	-webkit-transition-property: opacity, -webkit-transform !important;
	transition-property: opacity, -webkit-transform !important;
	transition-property: opacity, transform !important;
	transition-property: opacity, transform, -webkit-transform !important;
	pointer-events: none;
}
.swiper-fade .swiper-slide-active {
	pointer-events: auto;
}
.swiper-pagination {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 3.2rem;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	margin: auto;
}
.swiper-pagination-bullet {
	display: block;
	width: 3px;
	height: 4rem;
	cursor: pointer;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	background-color: rgba(255, 255, 255, 0.4);
}
.swiper-pagination-bullet:not(:first-child) {
	margin-top: 0.8rem;
}
.swiper-pagination-bullet-active {
	background-color: var(--color-theme);
}
@media only screen and (min-width: 1025px) {
	.swiper-button-prev::before, .swiper-button-next::before {
		-webkit-transition: var(--transition);
		transition: var(--transition);
	}
	.swiper-button-prev:hover::before, .swiper-button-next:hover::before {
		-webkit-transform: scale(1.2);
				transform: scale(1.2);
	}
}

/* トップスライド 全体設定 */
.slide_media,
.thumb-media {
	position: relative;
	overflow: hidden;
}
.slide_media img,
.thumb-media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
		object-fit: cover;
}
.slide_media {
	/* height: calc( 100vh * 3 / 4); */
	height: calc( 100vh * 9 / 10 );
	/* max-height: 1000px; */
}
@media only screen and (max-width: 767px) {
	.swiper {
		/* width: calc( 100vw * 1.2); */
	}
}

/* トップスライド メッセージ */
.slide_msg {
	font-size: 2rem;
	font-weight: normal;
	line-height: 1.6;
	position: absolute;
	left: 1rem;
	top: 55%;
	text-align: center;
	color: var(--logo-color);
	text-shadow    :
		1px  1px 1px #eee,
		-1px  1px 1px #eee,
		1px -1px 1px #eee,
		-1px -1px 1px #eee,
		1px  0px 1px #eee,
		0px  1px 1px #eee,
		-1px  0px 1px #eee,
		0px -1px 1px #eee;
}
@media only screen and (min-width: 768px) {
	.slide_msg {
		font-size: 4rem;
		line-height: 1.6;
		left: 4rem;
		top: 35%;
		text-align: right;
	}

}

/* トップスライド効果 */
@keyframes zoomDown {
	0% {
		transform: scale(1.25);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.25);
	}
	/* -webkit-transition-delay: 0s;
			transition-delay: 0s;
	-webkit-transform: scale(1.05);
			transform: scale(1.05); */
}
@-webkit-keyframes mv01-fadeIn {
	0% {
		-webkit-transform: scale(0.5);
				transform: scale(0.5);
		opacity: 0;
		-webkit-filter: blur(300px);
				filter: blur(300px);
	}
	100% {
		-webkit-transform: scale(1);
				transform: scale(1);
		opacity: 1;
		-webkit-filter: blur(0);
				filter: blur(0);
	}
}
@keyframes mv01-fadeIn {
	0% {
		-webkit-transform: scale(0.5);
				transform: scale(0.5);
		opacity: 0;
		-webkit-filter: blur(300px);
				filter: blur(300px);
	}
	100% {
		-webkit-transform: scale(1);
				transform: scale(1);
		opacity: 1;
		-webkit-filter: blur(0);
				filter: blur(0);
	}
}

.swiper-slide[class*=-active] .slide_media img {
	-webkit-animation: zoomDown 7s linear 0s 1 normal both;  
			animation: zoomDown 7s linear 0s 1 normal both;  
}

.swiper-slide[class*=-active] .slide_msg {
	-webkit-animation: mv01-fadeIn 2s 0.5s var(--easing) both;
			animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}

/*------------------------------------------
  Hero area
--------------------------------------------*/
.hero_area {
  position: relative;
}
.hero_area .hero_img_area {
	position: relative;
}

.hero_area .hero_img_area img {
	width: 100%;
}

.progress_bar {
	width: 100%;
	background: #eaeaea;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.progress_bar .bar {
	width: 0%;
	height: 4px;
	background: #0a467d;
}

.hero_area .hero_msg_area {
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	color: #fff;
	padding: 0 2em;
}
.hero_msg {
	font-size: 300%;
	font-family: "BIZ UDPGothic", sans-serif;
	color: var(--logo-color);
	/* color: #ddd; */
	font-weight: bold;
	text-shadow    :
		1px  1px 1px #eee,
	    -1px  1px 1px #eee,
	    1px -1px 1px #eee,
	    -1px -1px 1px #eee,
	    1px  0px 1px #eee,
	    0px  1px 1px #eee,
	    -1px  0px 1px #eee,
	    0px -1px 1px #eee;

	    /* 1px  1px 1px var(--logo-color),
	    -1px  1px 1px var(--logo-color),
	    1px -1px 1px var(--logo-color),
	    -1px -1px 1px var(--logo-color),
	    1px  0px 1px var(--logo-color),
	    0px  1px 1px var(--logo-color),
	    -1px  0px 1px var(--logo-color),
	    0px -1px 1px var(--logo-color); */
}

@media screen and (max-width: 767px){
	.hero_area .hero_img_area img {
		height: 500px;
		object-fit: cover;
		object-position: 70% center;
	}

	.hero_area .hero_msg_area {
		top: 50%;
		left: 0%;
		transform: translateY(-50%);
	}

	.hero_msg {
		font-size: 150%;
	}
}
@media screen and (min-width: 768px) {
}
@media screen and (min-width: 768px) and (max-width: 991px) {
	.hero_area .hero_img_area img {
		height: 450px;
		object-fit: cover;
	}
	.hero_area .hero_msg_area {
		top: 70%;
		left: 0%;
		transform: translateY(-50%);
	}

	.hero_msg {
		font-size: 250%;
	}
}

@keyframes fadeup {
	0% {
	  opacity: 0;
	  transform: translateY(30px);
	}
  
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
}
.text_typing {
  position: absolute;
  width: 100%;
  left: -1000rem;
  visibility: hidden;
  /* background-color: rgba(255,255,255,0.2); */
  text-align: center;
}
.text_typing.active {
	left: 0% !important;
	transform: translateX(-50%);
	visibility: visible;
	animation: 1s fadeup ease-in-out forwards;
}
.text_typing span {
  display: none;
}
#heroMsg1 .text_typing {
  top: 25%;
  /* font-size: 145%; */
  font-size: 170%;
}
#heroMsg2 .text_typing {
  top: 35%;
  font-size: 170%;
}
#heroMsg3 .text_typing {
	top: 45%;
	font-size: 170%;
}
@media screen and (min-width: 768px){
	#heroMsg1 .text_typing {
	  top: 25%;
	  font-size: 300%;
	}
	#heroMsg2 .text_typing {
	  top: 35%;
	  font-size: 300%;
	}
	#heroMsg3 .text_typing {
		top: 45%;
		font-size: 300%;
	  }
  }
@media screen and (min-width: 992px){
	#heroMsg1 .text_typing {
	  top: 25%;
	  font-size: 400%;
	}
	#heroMsg2 .text_typing {
	  top: 35%;
	  font-size: 400%;
	}
	#heroMsg3 .text_typing {
		top: 45%;
		font-size: 400%;
	  }
}

/*------------------------------------------
  Guide
--------------------------------------------*/
.scroll_guide_area {
	position: absolute;
	z-index: 2;
	left: 50%;
	transform: translateX(-50%);
	/* top: calc( 100vh - 150px); */
	bottom: 65px;
}
.scroll_guide {
	z-index: 2;
	text-decoration: none;
	position: absolute;
	/* left: 50%; */
	/* bottom: 3vh; */
	/* top: calc(100vh - 35vh); */
	/* transform: translateX(-10%); */
	writing-mode: vertical-rl;
	/* padding: 1em 0 2em; */
	border-left: 2px solid;
	color: var(--accent-color) !important;
	text-shadow:
	  1px 1px 1px #eee,
	  -1px 1px 1px #eee,
	  1px -1px 1px #eee,
	  -1px -1px 1px #eee,
	  1px 0px 1px #eee,
	  0px 1px 1px #eee,
	  -1px 0px 1px #eee,
	  0px -1px 1px #eee;
  
}

.scroll_guide:before {
	content: 'SCROLL';
	padding-top: 2em;
	padding-bottom: 2em;
}

.scroll_guide:after {
	display: block;
	content: '';
	border-left: 2px solid;
	width: 20px;
	height: 20px;
	transform: rotate(45deg);
	bottom: -10px;
	position: absolute;
	left: 10%;
}
@media screen and (min-width: 768px) {
	.scroll_guide_area {
		top: calc( 100% - 65px);
	}

}

/*------------------------------------------
  about
--------------------------------------------*/
.about_area {
	/* background-color: var(--background-color); */
}
.about_contents_area {
	position: relative;
	background-image: url(/img/home/about_ph01.jpg);
	background-size: cover;
	background-position: bottom center;
}
.about_contents_area figure {
	display: none;
}
.about_contents {
	line-height: 2;
	color: #111;
	padding: 1em 1.5em 0.5em;
	background-color: rgba(244,251,255,0.7);
	box-shadow: 2px 4px 10px rgba(0,0,0,.2);
	min-height: 280px;
}
.about_contents p {
	margin-bottom: 1em;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
	.about_contents_area {
		background-image: none;
	}
	.about_contents_area figure {
		display: block;
	}
	.about_contents {
		font-size: 120%;
		position: absolute;
		top: -13%;
		/* AOSを使うとtransformが使えない */
		/* top: 40%;
		transform: translateY(-50%); */
		left: 30%;
		padding: 1em 1.5em 0.5em;
	}
}

@media screen and (min-width: 992px) {
	.about_contents_area {
		background-image: none;
	}
	.about_contents_area figure {
		display: block;
	}
	.about_contents {
		font-size: 120%;
		position: absolute;
		top: 13%;
		/* AOSを使うとtransformが使えない */
		/* top: 40%;
		transform: translateY(-50%); */
		left: 44%;
		padding: 2em 1.5em;
	}
}

/*------------------------------------------
  description
--------------------------------------------*/
.desc_wrap {
	background: linear-gradient(180deg,#fff 0%,var(--light-color) 30%);
	padding-bottom: 3em;
}
.desc_items {
	position: relative;
}
@media screen and (min-width: 768px) {
	.desc_items {
		z-index: 10;
	}
}

.desc_item {
	display: block;
	width: 100%;
	background-color: var(--main-color);
	color: #fff !important;
	text-decoration: none;
	cursor: pointer;
}
.desc_item h2 {
	font-size: 110%;
	padding: 1em;
	margin: 0;
}
@media screen and (min-width: 768px) {
	.desc_item h2 {
		font-size: 110%;
		padding: 0 0 0 1em;
	}
	.desc_item span {
		font-size: 110%;
		padding: 0 10px 0 0;
	}
}

.desc_text_area {
	position: relative;
	background-color: var(--dark-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1em;
}

.desc_text {
	/* display: none; */
	/* opacity: 0; */
	padding: 2em;
	border: 10px solid var(--main-color);
	background-color: var(--background-color) !important;
	color: var(--text-color);
	/* overflow: hidden; */
	transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
	.desc_text {
		/* display: none; */
		/* opacity: 0; */
		padding: 2em;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		overflow: hidden;
		transform: translateX(-100%);
	}
}

.desc_text.show {
	display: block;
	transform: translateX(0);
}

.slideinLeft {
	animation: slideinLeft 1s 1;
}
@keyframes slideinLeft {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0);
	}
}

.slideoutRight {
	animation: slideoutRight 0.5s 1;
}
@keyframes slideoutRight {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

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

.color_sampling {
	background-color: #007b7f;
	border-color: #007b7f;
}
.color_cyousa {
	background-color: #499475;
	border-color: #499475;
}
.color_sounding {
	background-color: #008e6e;
	border-color: #008e6e;
}
.color_shitsunai {
	background-color: #00807d;
	border-color: #00807d;
}
.color_consultant {
	background-color: #00594a;
	border-color: #00594a;
}

/*------------------------------------------
  information
--------------------------------------------*/
.info_table {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.info_table > dt {
	width: 30%;
	color: var(--main-color);
	text-align: right;
	font-weight: bold;
	padding: 7px 0;
	padding-right: 1em;
	border-bottom: 2px dotted #dedede;
}
.info_table > dd {
	width: 70%;
	padding: 7px 0;
	border-bottom: 2px dotted #dedede;
}
.info_table > dd.dl_title {
	color: var(--main-color);
	font-weight: bold;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
	.info_table {
		font-size: 120%;
	}
	.info_table > dt {
		width: 20%;
	}
	.info_table > dd {
		width: 80%;
	}
	.info_table > dd.dl_title {
		text-align: center;
	}
}
@media screen and (min-width: 992px) {
	.info_table {
		font-size: 120%;
	}
	.info_table > dt {
		width: 15%;
	}
	.info_table > dd {
		width: 85%;
	}
	.info_table > dd.dl_title {
		text-align: center;
	}
}

.map_area iframe {
	width: 100%;
	height: 450px;
}

/*------------------------------------------
  recruit
--------------------------------------------*/
.recruit_area {
	background-color: var(--background-color);
}

.recruit_msg_area {
	position: relative;
}
.recruit_msg {
	position: absolute;
	top: 53%;
	transform: translateY(-50%);
	left: 10%;
	line-height: 1.5;
	font-weight: bold;
	font-size: 160%;
	letter-spacing: 2px;
	line-height: 1.2;
	color: #efefef;
	text-shadow    :
		1px  1px 1px var(--dark-color),
	    -1px  1px 1px var(--dark-color),
	    1px -1px 1px var(--dark-color),
	    -1px -1px 1px var(--dark-color),
	    1px  0px 1px var(--dark-color),
	    0px  1px 1px var(--dark-color),
	    -1px  0px 1px var(--dark-color),
	    0px -1px 1px var(--dark-color);
}
@media screen and (min-width: 768px) and (max-width: 991px) {
	.recruit_msg {
		font-size: 340%;
		top: 60%;
	}
}
@media screen and (min-width: 992px) {
	.recruit_msg {
		font-size: 480%;
		top: 60%;
	}
}
.marker {
	background: linear-gradient(rgba(255, 255, 102,0) 50%,rgba(255, 255, 102,1) 85%);
}

/*------------------------------------------
  Contact
--------------------------------------------*/
.contact_area {
	background-color: var(--background-color);
}

