@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;
	font-size: clamp(13px, 2vw, 25px);

	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;
}

/* scroll button */
.scroll_down a{
  color: #ffffff;
  position: absolute;
  bottom: 60px;
  left: 50%;
  display: block;
  background-size: 14px auto;
  z-index: 2;
  text-decoration: none; 
  transform: translate(-50%, -50%);
}
.scroll_down a:before {
  position: absolute;
  top: calc(50% + 24px);
  left: calc(50% - 8px);
  transform: rotate(-45deg);
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid #ffffff;
  border-width: 0px 0 2px 2px;
  animation: bounce 2s linear infinite;
}
.scroll_down a:after {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid #ffffff;
  content: "";
  border-radius: 50%;
  top: calc(50% + 16px);
  left: calc(50% - 19px);
}
@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  70%,
  80% {
    -webkit-transform: translateY(0)rotate(-45deg);
    -ms-transform: translateY(0)rotate(-45deg);
    transform: translateY(0)rotate(-45deg);
  }
  40% {
    -webkit-transform: translateY(-8px)rotate(-45deg);
    -ms-transform: translateY(-8px)rotate(-45deg);
    transform: translateY(-8px)rotate(-45deg);
  }
  60% {
    -webkit-transform: translateY(-4px)rotate(-45deg);
    -ms-transform: translateY(-4px)rotate(-45deg);
    transform: translateY(-4px)rotate(-45deg);
  }
}
/* scroll button */

/* button line */
.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 {
    opacity: 0.7;
}
.button_line001 a:hover:after {
    transform: scale(1, 1);
}

/* move-up */
.fade-in {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 2s ease, transform 2s ease;
  will-change: opacity, transform;
}

.fade-in.inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}


/********** 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 **********/
/* ここまでヘッダー *****************************************************/





/* screen mask *****************/
.section-01-mask{
	position: relative;
	width: 100%;
	height: 100%;
}

/* 縦 */
.section-screen{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:rgba(255,255,255,0.6);
	transition: transform 1s ease-out;
    transform-origin: top;
	z-index: 2;
}
.section-screen.shrink {
    transform: scaleY(0);
  }

/* 横 */
.section-screen-W{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:rgba(255,255,255,1);
	transition: transform 1s ease-out;
    transform-origin: right;
	z-index: 2;
}
.section-screen-W.shrink {
    transform: scaleX(0);
  }
/* screen mask *****************/


/* 画像横から */
.section-service-contents-S {
	opacity: 0;
	transform: translateX(-200px) rotate(-25deg);	/* 左から+少し傾ける */
	transition: transform 0.8s ease, opacity 0.8s ease;
}
.section-service-contents-S.from-right {
	transform: translateX(200px) rotate(25deg);		/* 右から+逆に傾ける */
}
.section-service-contents-S.show {
	opacity: 1;
	transform: translateX(0) rotate(0deg);			/* 正面で停止 */
}
/* 画像横から */



/* スクロール */
@keyframes infinity-scroll-left {
	from {
	  transform: translateX(0);
	}
	  to {
	  transform: translateX(-100%);
	}
}
	@keyframes infinity-scroll-right {
	from {
	  transform: translateX(-100%);
	}
	  to {
	  transform: translateX(0%);
	}
	}

ul , li {
	padding: 0;
	margin: 0;
}
	
.sec21base{
	position: relative;
	width: 100%;
	margin-top: 6vw;
	margin-bottom: 3vw;
}
.scroll-assy{
	background-color: #000000;
}
.scroll-assy2{

}
.scroll-infinity__wrap {
	display: flex;
	overflow: hidden;
}
.scroll-infinity__list {
	display: flex;
	list-style: none;
	padding: 0;
}
.scroll-infinity__list--left {
	animation: infinity-scroll-left 10s infinite linear 0.0s both;
}
.scroll-infinity__list--right {
	animation: infinity-scroll-right 10s infinite linear 0.0s both;
}
.scroll-infinity__list--left-2 {
	animation: infinity-scroll-left 10s infinite linear 1.5s both;
}
.scroll-infinity__item {
	width: calc(100vw / 4.5);
	padding: 1vw;
}
@media screen and (max-width: 800px) {
	.scroll-infinity__item { width: calc(100vw / 2);}
}
.scroll-infinity__item>img {
	width: 100%;
	/*border-radius: 2vw;*/
}
/* スクロール */







/* Top Title *************************************************************************************************/
.top-titles{
	position: relative;
	margin-top: 100px;

	height: 30vmin;
}
.top-titles-inner{
	width: 80%;
	height: 50%;
	text-align: center;

	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;

	box-sizing: content-box;
	
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items:center;
}
.top-titles-inner-up{
	width: 100%;
	height: auto;
}
.top-titles-inner-up h1{
	font-family: "futura-pt", sans-serif;
	color: rgba(0,0,0,1);
	font-size: 10vw;
	font-size:min(8vw,80px);
	line-height: 1;
	text-align: center;
	font-weight: 400;
	white-space: nowrap;
}

.top-titles-inner-low{
	width: 100%;
	height: auto;
	font-size:min(3vw,30px);
}



@media screen and (max-width: 500px) {
	.top-titles{ height: 20vmin;}
	}
/* Top Title *************************************************************************************************/



.service-pic-1{
	display: flex;
	justify-content: flex-end;
  width: 100%;
  height: 30vw;
  background-image: url("../images/service-1b.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-pic-2{
	display: flex;
	justify-content: flex-end;
  width: 100%;
  height: 30vw;
  background-image: url("../images/service-2.jpg");
  background-size: cover;
  background-position: center calc(50% + 50px);
  background-repeat: no-repeat;
}
.service-pic-3{
	display: flex;
	justify-content: flex-end;
  width: 100%;
  height: 30vw;
  background-image: url("../images/service-3b.jpg");
  background-size: cover;
  background-position: center calc(50% + 50px);
  background-repeat: no-repeat;
}
.service-text-area-bg{
	display: flex;
	align-items: center;
	width: 40%;
	background-color: rgba(0,0,0,0.80);
}
.service-text-area-line{
	width: 20%;
	height: 100%;
	border-right: solid 1px #fff;
}
.service-text-area{
	color: #fff;
	padding: 5vmin;
	text-align: center;
	font-size: clamp(13px, 2vw, 25px);
}
.service-text-area p{
	font-size: 0.7em;
	line-height: 1.8;
	text-align: justify;
}

.service-main-wrap{
	font-size: clamp(13px, 3vw, 25px);

}
.service-main-title{
	margin: 0 auto;
	width: auto;
	max-width: 1000px;
	text-align: center;
	color: #555;
	font-weight: 500;
	margin-top: 5vmin;
}
.service-main-text{
	margin: 0 auto;
	width: 80%;
	max-width: 500px;
	text-align: justify;
	color: #555;
	font-size: 0.7em;
	font-weight: 400;
	margin-top: 5vmin;
}
@media screen and (max-width: 500px) {
	.service-pic-1 , .service-pic-2 , .service-pic-3 { height: 80vw; position: relative; background-position: left;}
	.service-text-area-bg{ width: 100%; height: 50%; position: absolute; bottom: 0; left: 0;}
	.service-text-area{ font-size: clamp(13px, 5vw, 25px);}
	.service-main-title{ font-size: 1.5em;}
	.service-main-text{ font-size: 1.2em;}
}


.service-main-icon-wrap{
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	width: 80%;
	max-width: 500px;
	box-sizing: border-box;
	margin-top: 5vmin;
	margin-bottom: 10vmin;
}
.service-main-icon{
	display: flex;
	flex-direction: column;
	width: 48%;
	height: auto;
	padding-top: 2vmin;
	border: solid 1px #000;

}
.service-main-sub-title{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em; /* ←ここで間隔をコントロール */
	font-size: clamp(13px, 2vw, 20px);
	font-size: 0.8em;
}
.service-main-sub-title-pict{
	display: block;
	width: 3vmin;
}
.service-main-sub-title-text{
	font-size: clamp(13px, 1vw, 14px);
	font-size: 0.65em;
	padding: 1.2em;
	padding: 2vmin 4vmin;
	margin: 0 auto;
}

@media screen and (max-width: 500px) {
	.service-main-icon-wrap{ flex-direction: column;}
	.service-main-icon{ width: 100%; margin-bottom: 3vmin;}
	.service-main-sub-title{ font-size: 1.2em;}
	.service-main-sub-title-pict{ width: 5vmin;}
	.service-main-sub-title-text{ font-size: 1em;}
}


/* section ******************************************/
.section-wrapper {
	position: relative;
	width: 100%;
	height: auto;
}

/********* back text *********/
.section-bg{
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	
	overflow: hidden;
	
	font-family: "futura-pt", sans-serif;
	font-size: min(19vw, 300px);
	line-height: 1;
	text-align: center;
	font-weight: 1000;
	white-space: nowrap;
}
.section-bg-mission{
	color: rgba(180,180,180,0.1);
}

/********* background image *********/
.section-contents {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	background-color: #ffffff;
	overflow: hidden;

}
.section-contents-mission {
	background-color: rgba(255,255,255,1);
	background-image: url("");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	
}


.section-contents-inner {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
	height: auto;
	box-sizing: border-box;
	padding: 30px;
	padding: 0px;

}
.section-contents-assy {
	width: 90%;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 20px 0 20px 0;
	padding: 0px 0 0px 0;
	margin-top: 0px;
	margin-bottom: 50px;
	
	text-align: left;
	line-height: 2;

}


@media screen and (max-width: 900px) {
	.section-contents-title-main { font-size: 3vw;}
	}
@media screen and (max-width: 620px) {
	.section-contents-title-main { font-size: 3vw;}
	.section-contents { padding: 0 0 0 0;}
	
	}
@media screen and (max-width: 480px) {
	.section-contents-inner { padding: 10px;}
	.section-contents-assy {width: 100%;}
	.section-contents-text { font-size: 4vw;}
	.section-contents-text-message { font-size: 3vw;}
	}




.graph-image{
	margin: 0 auto;
	width: 100%;
	height: auto;
}


/********* 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 ************/



.mph-news-header{
	width: 100%;
	height: 230px;

}
.mph-news {
	position: relative;
	width: 100%;
	height: auto;

	
	display: flex;
	justify-content: center;
	align-items: center;
	
}
.mph-news-bg-L {
	width: 200px;
	position: absolute;
	top: 0;
	left: 0;
}
.mph-news-bg-R {
	width: 150px;
	position: absolute;
	top: 0;
	right: 0;
}




/********** 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; }
 	 }









