@charset "UTF-8";
/* ------------------------------
 ヘッダー
------------------------------ */
.header-area {
	background-color: transparent;
	transition: .3s ease-in-out;
}
.header-block {
	background-color: transparent;
	transition: .3s ease-in-out;
}
.header-box {
	background-color: transparent;
	transition: .3s ease-in-out;
}
.header-block_logo a::before {
	content: "";
	display: inline-block;
	opacity: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/logo_w.svg) no-repeat 0 0 / 250px 45px;
	transition: .3s ease-in-out;
}
/* スクロール */
.is-after-scrolled.header-area {
	background-color: #fff;
	transition: .3s ease-in-out;
}
.is-after-scrolled .header-block {
	background-color: #fff;
	transition: .3s ease-in-out;
}
.is-after-scrolled .header-box {
	background-color: #fff;
	transition: .3s ease-in-out;
}
.is-after-scrolled .header-block_logo a::before {
	opacity: 0;
}
.is-after-scrolled .header-block .gnav .header-menu > li > p a {
	color: #1a1a1a;
}

/* ------------------------------
 プルダウンメニュー部分（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
}
/* ヘッダー（SP） */
@media screen and (max-width: 767px) {
	.header-block_logo {
		background-color: transparent;
		transition: .3s ease-in-out;
	}
	.header-block_logo a::before {
		background: url(../img/logo_w.svg) no-repeat 0 0 / 175px 32px;
	}
	.is-after-scrolled .header-block_logo {
		background-color: #fff;
		transition: .3s ease-in-out;
	}
	.page-open-slidemenu .header-block_logo {
		transition: .3s ease-in-out;
	}
	.page-open-slidemenu .header-block_logo a::before {
		opacity: 0;
	}
}

/* ------------------------------
  メイン画像
------------------------------ */
.mainimage {
  position: relative;
}
.mainimage::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: -2px;
	display: block;
	width: 100%;
	height: 120px;
	background: url(../img/main_after.png) no-repeat center bottom / 100% 100%;
}
.mainimage_box {
	margin:0 auto;
	overflow:hidden;
}
.mainimage_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform:scale(1.2);
	animation: animationZoom 6s ease-in-out forwards;
}
@keyframes animationZoom {
  100% {
    transform:scale(1)
  } 
}
.lead {
	position: absolute;
	left: 0;
	right: 0;
	top: 16%;
	display: inline-block;
	opacity: 0;
	animation: slideInFromBottom 5s forwards;
	animation-delay: 1s;
	background: #fff;
	font-size: 2.8rem;
	width: fit-content;
 	margin: auto;
	writing-mode: vertical-rl;
	border-radius: 8px;
	padding: 30px 6px 2px;
	font-weight: bold;
	letter-spacing: 0.4rem;
}
@keyframes slideInFromBottom {
  to {
    opacity: 1;
  }
}
@media print, screen and (min-width: 1600px) {
	.lead {
		font-size: 4.2rem;
	}
}
/* メイン画像（SP） */
@media screen and (max-width: 767px) {
	.lead {
		font-size: 2.3rem;
		top: 14%;
	}
	.mainimage::after {
		height: 24px;
		background: url(../img/main_after_sp.png) no-repeat center bottom / 100% 100%;
	}
}
/* ------------------------------
 イントロ
------------------------------ */
.introBlock {
	color: #fff;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8%;
}
.introBlock .inBlock {
	text-align: center;
}
.introBlock p {
	font-size: 1.6rem;
	line-height: 1.8;
	font-weight: bold;
}
/* イントロ（PC） */
@media print, screen and (min-width: 1600px) {
	.introBlock {
		bottom: 9%;
	}
	.introBlock p {
		font-size: 1.8rem;
		line-height: 2.3;
	}
}
/* イントロ（SP） */
@media screen and (max-width: 767px) {
	.introBlock {
		bottom: 70px;
	}
	.introBlock p {
		font-size: 1.5rem;
		line-height: 2;
	}
	.introBlock p strong {
		display: block;
		margin-right: -.75em;
		font-size: 2rem;
	}
}
@media screen and (max-width: 380px) {
	.introBlock p {
		line-height: 1.75;
	}
}
/* ------------------------------
 見出し
------------------------------ */
/* H2 */
.contentsHome h2 {
	display: block;
	font-size: 2.1rem;
	color: #004da0;
	font-weight: bold;
	margin-bottom: 30px;
}
.contentsHome h2 span {
	margin-bottom: 5px;
	font-size: 7.4rem;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	line-height: 1;
	display: block;
}
.contentsHome h2::after {
	content: "";
	display: block;
	width: 38px;
	height: 10px;
	margin-top: 15px;
	background: url(../img/icon_headline.svg) no-repeat 0 0 / cover;
}
/* H3 */
.contentsHome h3 {
	margin-bottom: 30px;
	font-size: 2.8rem;
	line-height: 1.65;
	font-weight: bold;
}
/*  見出し（SP） */
@media screen and (max-width: 767px) {
	.contentsHome h2 {
		margin-bottom: 30px;
		font-size: 1.6rem;
	}
	.contentsHome h2 span {
		margin-top: 10px;
		
		font-size: 4.2rem;
	}
	/* H3 */
	.contentsHome h3 {
		font-size: 2.2rem;
		margin-bottom: 20px;
	}
}
/* ------------------------------
  メインコンテンツ
------------------------------ */
/* メインコンテンツ（PC） */
@media print, screen and (min-width:768px) {
	.maincontents {
		background: url(../img/main_bg.jpg) no-repeat center 850px;
	}
}
/* ------------------------------
 ミダックを知る
------------------------------ */
.aboutBlock {
	position: relative;
}
.aboutBlock .inBlock {
	position: relative;
	display: flex;
  	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.lowerBlock {
    gap: 15px;
}
.lowerBlock li a p {
	bottom: 15px;
	font-size: 1.6rem;
	padding: 0 50px 0 20px;
}
.lowerBlock li a p::before {
	right: 15px;
	width: 30px;
	height: 30px;
}
.lowerBlock li a p::after {
	right: 28px;
	width: 4px;
	height: 4px;
}
/* ミダックを知る（PC） */
@media print, screen and (min-width:768px) {
	.aboutBlock {
		margin-top: 170px;
	}
	.aboutBlock .textBox {
		width: 594px;
	}
	.aboutBlock .imageBox {
		width: 494px;
	}
	.aboutBlock .imageImg {
		margin-right: calc(115% - 50vw);
	}
	.aboutBlock .imageImg img {
		width: 100%;
		object-fit: cover;
		overflow: hidden;
		border-radius: 20px 0 0 20px;
		display: flex;
		align-items: center;
		min-width: 100%;
	}
	.lowerBlock li {
		width: 48.656%;
	}
}
/* ミダックを知る（SP） */
@media screen and (max-width: 767px) {
	.aboutBlock {
		margin-bottom: 120px;
	}
	.aboutBlock .imageImg {
		margin: 80px -5.5% 40px 0;
	}
	.aboutBlock .imageImg img {
		  border-radius: 15px 0 0 15px;
	}
}

/* ------------------------------
 仕事を知る
------------------------------ */
.jobsBlock .inBlock {
	position: relative;
	display: flex;
  	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
/* 仕事を知る（PC） */
@media print, screen and (min-width:768px) {
	.jobsBlock {
		margin-top: 250px;
		margin-bottom: 240px;
	}
	.jobsBlock .textBox {
		width: 594px;
	}
	.jobsBlock .imageBox {
		width: 494px;
	}
	.jobsBlock .imageImg {
		margin-left: calc(115% - 50vw);
	}
	.jobsBlock .imageImg img {
		width: 100%;
		object-fit: cover;
		overflow: hidden;
		border-radius: 0 20px 20px 0;
		display: flex;
		align-items: center;
		min-width: 100%;
	}
}
/* 仕事を知る（SP） */
@media screen and (max-width: 767px) {
	.jobsBlock {
		margin-bottom: 120px;
		background: url(../img/main_bg_sp01.jpg) no-repeat center 360px;
		background-size: 100% auto;
	}
	.jobsBlock .imageImg {
		margin: 0 0 40px -5.5%;
	}
	.jobsBlock .imageImg img {
		  border-radius: 0 15px 15px 0;
	}
}
/* ------------------------------
 社員を知る
------------------------------ */
.personBlock {
	position: relative;
}
.personBlock > .inBlock {
	display: flex;
	position: relative;
}
.personBoxWrap {
	position: relative;
	z-index: 2;
}
.personBoxWrap .personBox {
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
.personBoxWrap .swiper {
	overflow: visible;
	box-sizing: content-box;
}
.personBlock .swiper-slide {
	border-radius: 10px;
	overflow: hidden;
}
.personBox .profile {
	position: absolute;
	bottom: 25px;
	left: 0;
	padding-left: 30px;
	width: 100%;
	color: #fff;
	font-weight: bold;
}
.personBox .profile::before {
	display: block;
	content: "";
	position: absolute;
	right: 20px;
	bottom: 0;
	margin: auto;
	width: 36px;
	height: 36px;
	background: #004da0;
	border-radius: 50%;
}
.personBox .profile::after {
	display: block;
	content: "";
	position: absolute;
	right: 35px;
  	bottom: 14px;
	margin: auto;
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
}
.personBox .profile .carrer {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
  	height: 24px;
	margin-bottom: 15px;
	padding: 3px 8px;
	border: 1px solid #fff;
	border-radius: 6px;
	font-size: 1.3rem;
}
.personBox .profile .title {
	margin-bottom: 10px;
	font-size: 2.1rem;
	line-height: 1.55;
}
.personBox .profile .year {
	font-size: 1.4rem;
	font-weight: bold;
}
.personBoxWrap .swiper-button-next,
.personBoxWrap .swiper-button-prev {
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	margin-top: 0;
	border-radius: 50%;
}
.personBoxWrap .swiper-button-next {
	background: url(../img/icon_next.svg) no-repeat center center;
}
.personBoxWrap .swiper-button-prev {
	background: url(../img/icon_prev.svg) no-repeat center center;
	top: 0;
	right: 75px;
	left: auto;
}
.personBoxWrap .swiper-button-next::after,
.personBoxWrap .swiper-button-prev::after {
	display: none;
}
.personBoxWrap .swiper-horizontal > .swiper-scrollbar {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 50;
	width: 100%;
	height: 3px;
	background-color: #b3b3b3;
}
.personBoxWrap .swiper-scrollbar-drag {
	background-color: #004da0;
}
/*  社員を知る（PC） */
@media print, screen and (min-width: 768px) {
	.personBlock {
		margin-bottom: 250px;
	}
	.personBlock > .inBlock > h2 {
		width: 380px;
	}
	.personBlock > .inBlock > h3 {
		width: 830px;
		margin-bottom: 23px;
	}
	.personBoxWrap {
		overflow: hidden;
		margin-top: -75px;
	}
	.personBoxWrap .personBox {
		width: 1140px;
		margin-bottom: 70px;
	}
	.personBoxWrap .swiper {
		height: 520px;
		padding: 100px 0 0 0;
	}
	.personBoxWrap .swiper a:hover {
		opacity: 1;
	}
	
	.personBox .profile .title span {
		display: block;
		letter-spacing: -.06em;
	}
}
/*  社員を知る（SP） */
@media screen and (max-width: 767px) {
	.personBlock {
		margin-bottom: 66px;
		background: url(../img/main_bg_sp02.jpg) no-repeat center 75px;
		background-size: 100% auto;
	}
	.personBlock > .inBlock {
		flex-direction: column;
		width: 100%;
		padding: 0 5%;
	}
	
	.personBlock > .inBlock > h3 {
		margin-bottom: 40px;
	}
	.personBoxWrap .personBox {
		width: 100%;
	}
	.personBoxWrap .swiper {
		overflow: hidden;
		height: auto;
		padding: 0 5% 90px;
	}
	.personBox .profile {
		bottom: 20px;
		left: 0;
		right: 0;
		margin: auto;
		width: 88%;
		padding-left: 0;
	}
	.personBox .profile::before {
		right: 0;
		width: 30px;
		height: 30px;
	}
	.personBox .profile::after {
		right: 13px;
    	bottom: 12px;
		width: 4px;
		height: 4px;
	}
	.personBox .profile .carrer {
		margin-bottom: 12px;
		font-size: 1.1rem;
	}
	.personBox .profile .title {
		padding-right: 0;
		font-size: 1.6rem;
		line-height: 1.45;
	}
	.personBox .profile .job {
		margin-bottom: -3px;
		font-size: 1.3rem;
	}
	.personBox .profile .year {
		font-size: 1.3rem;
	}
	.personBoxWrap .swiper-button-next,
	.personBoxWrap .swiper-button-prev {
		width: 36px;
		height: 36px;
	}
	.personBoxWrap .swiper-button-next::after,
	.personBoxWrap .swiper-button-prev::after {
		font-size: 1.1rem;
		margin: 0px 0 0 1px;
	}
	.personBoxWrap .swiper-button-prev::after {
		margin: 0px 1px 0 0;
	}
	.personBlock .pc_tac {
		margin-left: 5%;
		margin-top: -50px;
	}
	.personBoxWrap .swiper-button-next,
	.personBoxWrap .swiper-button-prev {
		top: auto;
		bottom: 6px;
	}
	.personBoxWrap .swiper-button-next {
		right: 5%;
	}
	.personBoxWrap .swiper-button-prev {
		right: calc(5% + 45px) ;
	}
}
/* ------------------------------
 採用について
------------------------------ */
.recruitmentBlock .inBlock {
    position: relative;
}
.recruitmentBlock li {
	border-top: 1px solid #d1dee6;
    border-bottom: 1px solid #d1dee6;
	margin-top: -1px;
}
.recruitmentBlock li a {
	display: block;
	font-weight: bold;
	padding: 18px 40px 18px 5px;
	position: relative;
}
.recruitmentBlock li a::before {
	display: block;
	content: "";
	position: absolute;
	right: 7px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 30px;
	height: 30px;
	background: #004da0;
	border-radius: 50%;
}
.recruitmentBlock li a::after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 20px;
	width: 4px;
	height: 4px;
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
}
.recruitmentBlock .bg-image {
	z-index: 2;
    position: relative;
}
/* 採用について（PC） */
@media print, screen and (min-width:768px) {
	.recruitmentBlock .bg-image {
		margin-left: calc(50% - 1000px);
		margin-right: -75px;
		border-radius: 0 20px 20px 0;
		display: flex;
		align-items: center;
		min-width: 100%;
		overflow: hidden;
	}
	.recruitmentBlock .textBox {
		width: 640px;
		padding: 65px 65px 100px;
		background-color: #fff;
		border-radius: 20px 20px 0 0;
		position: absolute;
		right: 0;
		bottom: 0;
		margin: auto;
		height: fit-content;
		z-index: 3;
	}
	.recruitmentBlock ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.recruitmentBlock li {
		 width: 47.06%;
	}
}
/* 採用について（SP） */
@media screen and (max-width: 767px) {
	.recruitmentBlock {
		background: url(../img/main_bg_sp03.jpg) no-repeat center 440px;
		background-size: 100% auto;
	}
	.recruitmentBlock .bg-image {
		margin: 80px 0 40px -5.5%;
	}
	.recruitmentBlock .bg-image img {
		border-radius: 0 15px 15px 0;
	}
}
/* ------------------------------
 ニュース（PC）
------------------------------ */
.newsBlock {
	padding: 160px 0;
}
@media print, screen and (min-width: 768px) {
	.newsBlock .inBlock {
		display: flex;
		position: relative;
	}
	.newsHeading {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 325px;
	}
	.newsContents {
		width: 815px;
	}
	.newsBlock .inBlock .btn {
		position: absolute;
		left: 0;
		top: 190px;
	}
}
/* ------------------------------
 ニュース（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.newsBlock {
		padding: 75px 0 80px;
	}
	.newsContents > .newsList {
		margin-bottom: 30px;
	}
}
/* ------------------------------
 飾り
------------------------------ */
.deco_img {
	position: relative;
}
.deco_img img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.2s ease-out;
	will-change: transform;
}
.deco01 {
	pointer-events: none;
	position: absolute;
	left: -410px;
	top: 180px;
}
.deco02 {
	pointer-events: none;
	position: absolute;
	right: -120px;
	top: -50px;
}
.deco03 {
	pointer-events: none;
	position: absolute;
	left: -36px;
	top: 320px;
}
.deco04 {
	pointer-events: none;
	position: absolute;
	right: -230px;
  	top: -130px;
}
/* 飾り（SP） */
@media screen and (max-width: 767px) {
	.deco01 {
		width: 126px;
		left: auto;
		top: 530px;
		right: -10px;
	}
	.deco02 {
		width: 63px;
		right: 0;
		top: 360px;
	}
	.deco03 {
		width: 96px;
		top: 0;
		left: auto;
		right: 20px;
	}
	.deco04 {
		width: 133px;
		top: 540px;
		right: 0;
	}
}