@charset "UTF-8";
/* CSS Document */

html {
 	height: 100%;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}
body {
	font-family: "M PLUS 1p",sans-serif;
	font-weight: 400;
	font-size: 16px;

	background-image: url("");
	background-repeat: no-repeat;
	background-size: 100%;
	background-attachment: fixed;
	
	margin: 0;
	padding: 0;
	
	text-align:justify;
	word-break:break-all; 
	text-justify:inter-ideograph;
	text-justify:inter-character;
	word-wrap:break-word;
	overflow-wrap:break-word;
}
h1,h2 {
	margin: 0;
	padding: 0;
	line-height: 1;
}
img {
	display: block;
	vertical-align: bottom;
	margin: 0 auto;
}
svg {
	vertical-align: bottom;
	line-height: 1;
	overflow-x: hidden;
	overflow-y: hidden;
}

a {
  color: #555;
  text-decoration: none;
  display: block;
  transform: scale(1);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

a:hover {
  transform: scale(1.01);
  opacity: 0.6;
}

/* PC none */
@media screen and (min-width: 801px) {
	.pc-none{ display:none; }
	}
/* SP none */
@media screen and (max-width: 800px) {
	.sp-none{ display:none; }
	}
/* タッチデバイス（スマホ・タブレット） */
@media (hover: none) and (pointer: coarse) {
}
@media screen and (max-width:801px){
 	 }


#page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* wrapが伸びるように */
#wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/********** navi**********/
.navi-pc-links {
	height: 50px;
	display: flex;
	align-items: center;
	padding: 0 20px;
	color: #dddddd;
	font-size: 0.7rem;
	font-weight: 400;
}
.navi-pc-links a:link{ color: #dddddd; }
.navi-pc-links a:visited { color: #dddddd; }
.navi-pc-links a:hover { color: #ffffff; }
.navi-pc-links a:active { color: #ffffff; }
.navi-wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.navi {
	width: 100%;
	height: 50px;
	margin: 0 auto;  
	display: flex;
	align-items: center;
	
	position: fixed;
	top: 0;
	z-index: 100;
	background-color: rgba(0,0,0,0.9);
}

.navi-logo {
	height: 50px;
	display: flex;
	align-items: center;
	padding: 0 10px;
	
	font-family: serif;
	color: #999999;
}
.navi-logo h1{
	font-size: 1.3rem;
}
.navi-logo-title {
	font-family: serif;
	font-size: 1.3rem;
	color: #999999;
}

.navi-right {
	margin-right: auto;
	display: flex;
	align-items: center;
	gap: 0;
	margin-right: 70px;
}
.navi-right-pc {
	margin-right: 0px;
}

.navi-recruit, .navi-access {
	width: 100px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	font-weight: 400;
	font-size: 0.9rem;
}
.navi-recruit {
	background-color: #660000;
}
.navi-access {
	background-color: #000000;
}
/********** navi**********/

/********** mail icon **********/
.dli-mail {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
	margin-right: 3px;
  line-height: 1;
  position: relative;
  width: 1.06667em;
  height: 0.8em;
  border: 0.1em solid currentColor;
  border-radius: 0.1em;
  box-sizing: content-box;
  overflow: hidden;
}
.dli-mail::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 0.75425em;
  height: 0.75425em;
  border: 0.1em solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 0 0.1em;
  box-sizing: content-box;
  transform: translate(-50%, -50%) rotate(-45deg) skew(10deg, 10deg);
}
/********** mail icon **********/


/********** read more **********/
.button_line001 {
	padding: 10px;
	font-family: "futura-pt", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 15px;
}

.button_line001 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 90px;
    padding: 10px 0px;
    color: #313131;
    transition: 0.3s ease-in-out;
}

.button_line001 a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,.1);
    transform: translateX(-50%);
}
.button_line001 a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.button_line001 a:hover {
	transform: scale(1.00);
    opacity: 0.7;
}
.button_line001 a:hover:after {
    transform: scale(1, 1);
}
.white a{
	color: #ffffff;
}
.white a:before {
  background: rgba(255,255,255,.3);
}
.white a:after {
	background: #ffffff;
}
/********** read more **********/




.bg-video-wrapper{
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
	min-height: 900px;
	background-color: #000000;
}
/* タッチデバイス（スマホ・タブレット） */
@media (hover: none) and (pointer: coarse) {
	.bg-video-wrapper{min-height: auto;}
}
@media screen and (max-width:801px){
}


.bg-video-wrapper > video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
}
.video-text-assy{
	width: 83%;
	max-width: 1000px;
	height: auto;

	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(255,255,255,0);
	color: #ffffff;
	text-align: center;
}
.video-text{
	font-size: min(20vw,250px);
	font-weight: 900;
	line-height: 1;
}
.video-text-sub{
	font-size: min(6.5vw,82px);
	font-weight: 800;
}
.video-text-eng{
	font-size: min(4.7vw,59px);
	font-weight: 700;
}	
	



/********* TOPIC ************/
.topics-contents{
	width: 100%;
	height: auto;
	padding: 50px 0;
}
.topics_wrapper{
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
	padding: 30px 0;
}
.topics_wrapper hr{
	border: none;
    height: 1px;
    background-color: #333;
    margin: 0px 0;
}
.topics_inner {
    width: 100%;
    display: flex;
    align-items: center;
}

.topics_date {
    width: 20%;
    min-width: 80px;
    max-width: 150px;
    font-size: min(3vw, 1.0rem);
    text-align: left;
    padding-right: 0px;
}

.topics_text {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;      
    white-space: nowrap;   
    text-overflow: ellipsis;
    padding-left: 0px;
}

.topics_text p {
    margin: 0;
}
/********* TOPIC ************/



/********* SERVICE ************/
.bg-black{
	background-color: #000000;
}
.bg-white{
	background-color: #ffffff;
}
.font-gray{
	color: #555555;
}
.font-white{
	color: #ffffff;
}




.section-3-wrap{
	display: flex;
	flex-direction: column;
	margin-top: 100px;
}
.section-3-upper{
	text-align: center;
	font-size: min(10vw, 3rem);
}
.section-3-lower{

}
.section-wrapper{
	width: 100%;
	height: auto;
}
.section-inner{
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
}
.section-inner-title{
	display: inline-block;
	font-family: "futura-pt", sans-serif;
	font-weight: 600;
}
.section-3-assy{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin: 0 auto;
	margin-top: 30px;
	width: 100%;
	max-width: 800px;
	margin-bottom: 5vmin;

}
.section-1-assy{
	width: 32%;
	height: auto;
	display: flex;
	flex-direction: column;
}
.section-3-person{
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	
}
.section-3-person-text{
	flex: 1;
	text-align: justify;
	font-size: clamp(12px,2vw,16px);
	padding: 1vmin 1vmin 0 1vmin;
	color: #555;
}
.section-3-person-inner{
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	padding-bottom: 20px;
	
	color: #ffffff;
	font-size: min(3vw, 1.5rem);
	line-height: 1.2;
	font-weight: 700;
}
@media screen and (max-width:500px){
	.section-3-person-inner{ font-size: 2rem;}
	.section-3-assy{ flex-direction: column;}
	.section-1-assy{ width: 100%; padding-bottom: 5vh;}
	.section-3-person{ height: 50vh;}
	.section-3-person-text{ font-size: 4.5vmin; padding-bottom: 5vh; padding: 5vmin 5vmin 0 5vmin;}
}
.section-3-person img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}
.section-3-person:hover img {
	transform: scale(1.05);
}
.section-3-person a:hover {
  opacity: 1;
}
/********* SERVICE ************/



/********* RECRUIT ************/
.section-recruit{
	width: 100%;
	height: auto;
	padding: 50px 0;
	background-image: url("../images/recruit.jpg");
	background-size: cover;
	background-position: center;
	font-feature-settings: "palt";
}
.section-recruit-read{
	padding-top: 50px;
	text-align: center;
	color: #ffffff;
	color: #e6b422;
	color: #7FFFD4;
	font-size: min(10vw,4.5rem);
	line-height: 1.2;
	font-weight: 800;
}
.section-recruit-text{
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
	color: #ffffff;
	font-size: min(3vw,1.5rem);
	line-height: 2;
	letter-spacing: 0.2rem;
	font-weight: 400;
}

.glow{
  text-shadow:
    0 0 12px rgba(127, 255, 212,0.6),
    0 0 24px rgba(127, 255, 212,0.4);
}
/********* RECRUIT ************/




/********* ACCESS ************/
.section-access{
	width: 100%;
	height: auto;
	padding: 50px 0;
	background-color: #ffffff;
}
/********* ACCESS ************/







/********** footer **********/
.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	
	box-sizing: border-box;
	
	width: 100%;
	height: auto;
	padding: 20px;
	
	background: #000000;
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 400;
	}		
.footer-links{
	padding: 0 10px 0 10px;
}
.footer a:link{ color: #dddddd; }
.footer a:visited { color: #dddddd; }
.footer a:hover { color: #333333; }
.footer a:active { color: #333333; }
@media screen and (max-width:801px){
	.footer { flex-flow: column; }
	.footer-links{ text-align: center; }
 	 }
	