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

:root {
    --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-bottom: 0;
}
.section_title span {
	display: block;
	position: absolute;
	left: 0;
}
.section_title .jpn {
	font-size: 70%;
	top: 45%;
}
.section_title:after {
	content: none;
}
@media screen and (min-width: 992px) {
	.section_title {
		font-size: 500%;
	}
}
@media screen and (min-width: 1400px) {
	.section_title span {
		left: -120px;
	}
}

/*------------------------------------------
  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);
	/* max-height: 1000px; */
}
@media only screen and (max-width: 767px) {
	.swiper {
		width: 100vw;
	}
}

/* トップスライド メッセージ */
.slide_msg {
	font-size: 4rem;
	font-weight: normal;
	line-height: 1.6;
	position: absolute;
	left: 4rem;
	top: 35%;
	text-align: right;
	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;
}

/* トップスライド効果 */
@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 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 - 140px);
}
.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: 20% 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);
}
.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: -20%;
		/* AOSを使うとtransformが使えない */
		/* top: 40%;
		transform: translateY(-50%); */
		left: 44%;
		padding: 2em 2.5em 1.5em;
	}
}

/*------------------------------------------
  description
--------------------------------------------*/
.desc_wrap {
	background: linear-gradient(180deg,#fff 0%,var(--light-color) 30%);
	padding-bottom: 3em;
}
.desc_items {
	position: relative;
}
.desc_item {
	width: 95%;
	margin: 2em auto;
	background-color: var(--main-color);
	color: #fff;
	box-shadow: 2px 2px 10px rgba(0,0,0,.7);
}
.desc_item h2 {
	padding: 1em 1.5em 0;
	margin: 0;
}
.desc_item p {
	padding: 1em 1.5em;
	font-size: 80%;
}
.desc_msg p {
	font-size: 120%;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
	.desc_items {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.desc_items:before {
		content: '';
		display: block;
		width: calc( 100% / 2 - 20px);
		order: 1;
	  }
	  .desc_items:after {
		content: '';
		display: block;
		width: calc( 100% / 2 - 20px);
	  }
	.desc_item {
		width: calc( 100% / 2 - 20px );
	}
	.desc_item p {
		font-size: 90%;
	}
	.desc_msg p {
		text-align: center;
		font-size: 120%;
	}
	
}
@media screen and (min-width: 992px) {
	.desc_items {
		/* height: 1600px; */
		height: 1500px;
	}
	.desc_item {
		position: absolute;
		width: calc( 100% / 3 - 5px );
		margin: 0;
	}
	/* #descItem01 {
		top: 5%;
		left: 0%;
	}
	#descItem02 {
		top: 11%;
		left: 34%;		
	}
	#descItem03 {
		top: 17%;
		left: 68.5%;		
	}
	#descItem04 {
		top: 51%;
		left: 68.5%;		
	}
	#descItem05 {
		top: 57%;
		left: 34%;		
	}
	#descItem06 {
		top: 63%;
		left: 0%;		
	} */
	#descItem01 {
		top: 15px;
		left: 0%;
	}
	#descItem02 {
		top: 170px;
		left: 34%;		
	}
	#descItem03 {
		top: 500px;
		left: 68.5%;		
	}
	#descItem04 {
		top: 800px;
		left: 34%;		
	}
	#descItem05 {
		top: 970px;
		left: 0%;		
	}
	.desc_item p {
		font-size: 90%;
	}
	
	.desc_msg {
	}
	.desc_msg p {
		text-align: center;
		font-size: 120%;
	}
}

/*------------------------------------------
  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;
}
@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%;
	}
}
@media screen and (min-width: 992px) {
	.info_table {
		font-size: 120%;
	}
	.info_table > dt {
		width: 15%;
	}
	.info_table > dd {
		width: 85%;
	}
		
}

.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: 50%;
	transform: translateY(-50%);
	left: 10%;
	line-height: 1.5;
	font-weight: bold;
	font-size: 160%;
	letter-spacing: 2px;
	color: var(--high-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 screen and (min-width: 768px) and (max-width: 991px) {
	.recruit_msg {
		font-size: 340%;
	}
}
@media screen and (min-width: 992px) {
	.recruit_msg {
		font-size: 480%;
	}
}

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

