@charset "utf-8";
:root {
	--c_bk: #000000;
	--c_wh: #ffffff;
	--c_navy: #0c3460;
	--c_blue: #32ACC9;
	--c_blue_lt: #4a9fd4;
	--c_text: #1a1a1a;
	--c_gray: #f8f9fb;
	--c_rd: #B10000;
	--grad_blue: linear-gradient(135deg, #0c3460 0%, #1e6db5 55%, #4a9fd4 100%);
	--grad_dark: linear-gradient(135deg, #0a1f3c 0%, #0d3060 45%, #1a5fa0 75%, #3a8fd0 100%);
	--hd_h: 7rem;
}
.clr-bk { color: var(--c_bk) !important; }
.clr-wh { color: var(--c_wh) !important; }
.clr-bl { color: var(--c_blue) !important; }
.clr-rd { color: var(--c_rd) !important; }
.bg-bk  { background-color: var(--c_bk) !important; }
.bg-wh  { background-color: var(--c_wh) !important; }

.eng {
	font-family: adobe-aldine-display, sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.1;
}
.fo-min {
	font-family: "shippori-mincho", sans-serif;
	font-weight: 500;
	font-style: normal;
}

/* ================================================
   Common Parts
   ================================================ */

/* btn */
.btn {
	width: fit-content;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	margin-top: 4rem;
	color: #343D44;
}
.btn .eng {
	font-size: 2rem;
}
.btn::after {
	content: "";
	display: block;
	background: var(--c_gray) url(../img/arw_bl.svg) center center no-repeat;
	background-size: 33% auto;
	aspect-ratio: 1;
	width: 4rem;
	border-radius: 50%;
	transition: .2s;
}
.btn._wh {
	color: #fff;
}
.btn._wh::after {
	background-color: #fff;
}
.center .btn {
	margin-inline: auto;
}
.btn:hover::after {
	transform: translateX(.7rem);
	background-color: var(--c_blue);
	background-image: url(../img/arw_wh.svg);
}
.arw {
	display: block;
	background: var(--c_gray) url(../img/arw_bl.svg) center center no-repeat;
	background-size: 33% auto;
	aspect-ratio: 1;
	width: 4rem;
	border-radius: 50%;
	transition: .2s;
}

/* ttl */
.ttlBox {
	text-align: left;
	letter-spacing: 0.04em;
	margin-bottom: 4rem;
}
.ttlBox .eng {
	font-size: 6rem;
	margin-bottom: 0.5rem;
}
.ttlBox h1,
.ttlBox h2 {
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	display: flex;
	align-items: center;
	display: flex;
	align-items: center;
	gap: .8rem;
}
.ttlBox h1::before,
.ttlBox h2::before {
	content: "";
	display: block;
	width: 1.5rem;
	height: 2px;
	background: var(--c_blue);
}
.ttlBox._wh h2::before {
	background: #fff;
}
.c-enTtl {
	font-size: 2rem;
	letter-spacing: 0.14em;
	margin-bottom: 6.5rem;
	display: flex;
	align-items: center;
	gap: .8rem;
}
.c-enTtl::before {
	content: "";
	display: block;
	width: 1.5rem;
	height: 1px;
	background: currentColor;
}
.box-sdw {
	box-shadow: 0 .5rem 3rem 1rem rgba(0, 0, 0, 0.05);
}

/* ------------------------------------------------
   inview scroll animation
   ------------------------------------------------ */

.inview {
	opacity: 0;
	transform: translateY(32px);
	transition: 1.2s .6s;
}
.inview.act {
	opacity: 1;
	transform: translateY(0);
}

.inview._fl { transform: translateX(-52px); }
.inview._fl.act { transform: translateX(0); }

.inview._fr { transform: translateX(52px); }
.inview._fr.act { transform: translateX(0); }

.inview._fo { transform: none; }
.inview._fo.act { transform: none; }

.inview._sc { transform: scale(0.93) translateY(20px); }
.inview._sc.act { transform: scale(1) translateY(0); }

.inview._slow { transition-duration: 1.3s; }

.inview._d1 { transition-delay: .4s; }
.inview._d2 { transition-delay: .6s; }
.inview._d3 { transition-delay: .8s; }
.inview._d4 { transition-delay: 1s; }
.inview._d5 { transition-delay: 1.2s; }

/* ================================================
   Header
   ================================================ */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: transparent;
	transition: .3s;
}
#header.scrl {
	background: #fff;
	box-shadow: 0 2px 24px rgba(0, 40, 100, .12);
}
.hd-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem 0;
	width: 90%;
	max-width: 140rem;
	margin: 0 auto;
}
img[src*="/logo.png"] {
	max-height: 4.6rem;
	display: block;
}

/* Nav list */
.nav-list {
	display: flex;
	align-items: center;
	gap: 0 3rem;
	list-style: none;
}
.nav-list a {
	display: block;
	font-weight: 500;
	padding: 1.2rem 0;
	color: var(--c_text);
	white-space: nowrap;
	position: relative;
	transition: color .3s;
	font-size: 1.8rem;
}
.nav-list > li > a::before {
	content: "";
	position: absolute;
	bottom: .7rem;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--c_blue);
	transition: .3s;
}
.nav-list a:hover { color: var(--c_blue);; }
.nav-list a:hover::before { width: 60%; }

/* Dropdown */
.nav-list li.tgl { position: relative; }
.ddNavArea {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 .5rem 2rem rgba(0,0,0,.12);
	min-width: 17rem;
	border-top: 2px solid var(--c_blue);
	z-index: 200;
}
.ddNavArea li a {
	display: block;
	padding: 0.9rem 1.6rem;
	font-size: 1.3rem;
	color: var(--c_text);
	text-align: left;
	transition: background .2s, color .2s;
}
.ddNavArea li a:hover { background: #f0f5ff; color: var(--c_blue); }

@media screen and (min-width: 781px) {
	.nav-list li.tgl:hover .ddNavArea { display: block; }
}
.nav-contact a {
	background: var(--c_blue);
	background: linear-gradient(90deg, #32ACC9 0%, #343D44 100%);
	color: #fff!important;
	border-radius: 10rem;
	padding: 1.5rem 6rem;
	transition: .2s;
}
.nav-contact a::before { display: none !important; }
.nav-contact a:hover {
	opacity: .85;
	box-shadow: 0 0 .5rem rgba(0, 40, 100, .4);
}
#index .hd-logo img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
#index #header.scrl .hd-logo img {
	-webkit-filter: none;
	filter: none;
}
#index .nav-list > li > a {
	color: #fff;
}
#index #header.scrl .nav-list > li > a {
	color: var(--c_text);
}
#index #header.scrl .nav-list > li > a:hover {
	color: var(--c_blue);
}
#index #header:not(.scrl) .nav-list > li > a:hover {
	color: #fff;
}
#index #header:not(.scrl) .nav-list > li > a::before {
	background-color: #fff;
}


/* Hamburger */
.menuIconWrap {
	position: fixed;
	top: .75rem;
	right: 1.75rem;
	z-index: 1200;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 4rem;
	height: 4rem;
	cursor: pointer;
}
.menuIconWrap span {
	display: block;
	width: 2.6rem;
	height: 2px;
	background: var(--c_navy);
	border-radius: 2px;
	transition: all .35s;
	transform-origin: center;
}
.menuIconWrap.active span { background: #fff!important;}
.menuIconWrap.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menuIconWrap.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menuIconWrap.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

#index #header:not(.scrl) + .menuIconWrap span {
	background: var(--c_wh);
}

/* ================================================
   Footer
   ================================================ */
#footer {
	background: #fff;
	padding: 10rem 0 4rem;
	position: relative;
}
.footer-inner {
	display: flex;
	align-items: flex-start;
	gap: 6rem;
}
.footer-logo { flex-shrink: 0; }
.footer-logo img[src*="/logo.png"] { 
	max-height: 9.4rem;
}
.footer-nav {
	display: flex;
	gap: 9rem;
	font-size: 1.4rem;
	flex: 1;
	justify-content: flex-end;
}
.ft-nav-list { list-style: none; text-align: left; }
.ft-nav-list > li + li {
	margin-top: 2.6rem;
}
.ft-nav-list li a:hover { color: var(--c_blue); }
.ft-parent li {
	margin-top: 1rem;
}
.ft-parent a {
	display: flex;
	align-items: center;
	gap: .7rem;
}
.ft-parent a::before {
	content: "";
	display: block;
	width: 1rem;
	height: 1px;
	background: var(--c_blue);
}
.copyright {
	text-align: left;
	font-size: 1rem;
	letter-spacing: 0.05em;
	color: #858585;
	margin-top: 6rem;
}
.gotop {
	position: absolute;
	right: 2rem;
	bottom: 2rem;
	width: 4.5rem;
	aspect-ratio: 1;
	background: var(--c_blue) url(../img/arw_wh.svg) center center no-repeat;
	background-size: 33% auto;
	transform: rotate(-90deg);
	border-radius: 50%;
	
}
.gotop:hover {
	background-color: var(--c_navy);
	box-shadow: 0 0 .5rem rgba(0, 40, 100, .4);
}


/* ================================================
   toppage
   ================================================ */
#page-index article > section:not(#top_philosophy):not(#top_business) {
	background-color: #fff;
}
#top_mv {
	position: relative;
	overflow: hidden;
	height: 100svh;
	min-height: 60rem;
	background: url(../img/top/mv.jpg) center center no-repeat;
	background-size: cover;
}
.top_mv {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100svh;
}
#top_mv .catch {
	font-size: 4.2rem;
	font-weight: 500;
	color: #fff;
	text-shadow: 0 0 2rem rgba(0,0,0,.1);
	letter-spacing: 0.2em;
	text-align: center;
	padding-left: 0.7em;
}
.mv-bg {
	position: fixed;
	inset: 0;
	z-index: -999;
	transition: .6s 0s;
}
.mv-bg .mv {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: 1.5s;
}
.mv-bg .mv img {
	height: 100%;
	min-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transform: scale(1.01);
	opacity: 1 !important;
	transition: 1s;
}
.mv-bg .mv.act {
	opacity: 1;
}
.mv-bg.blur {
	transition: 1.2s .4s;
	filter: blur(6px) brightness(80%);
}


/* Philosophy
---------------------------------------------------------*/
#top_philosophy {
	position: relative;
	background: url(../img/top/philosophy_bg.jpg) center center no-repeat;
	background-size: cover;
	overflow: hidden;
	padding: 20rem 0;
	color: #fff;
}
#top_philosophy::before {
	content: "";
	background: url(../img/logomark.svg) center center no-repeat;
	background-size: contain;
	width: 38%;
	aspect-ratio: 1;
	opacity: .1;
	position: absolute;
	right: -5.5rem;
	top: 7rem;
}
.top_philosophy {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5rem;
	text-align: left;
}
.top_philosophy .cont {
	flex: 1;
	text-align: left;
	color: #fff;
}
.top_philosophy .ttl {
	font-size: 2.4rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #fff;
	margin-bottom: 1rem;
}
.top_philosophy .txt-lh {
	margin-bottom: 7rem;
}
.top_philosophy .imgs {
	position: relative;
	flex-shrink: 0;
	width: 44.5rem;
	display: flex;
	align-items: flex-end;
	gap: 3rem;
	margin-top: 10rem;
}
.top_philosophy .imgs div {
	box-shadow: 1rem 1rem 1rem rgba(0,0,0,.03);
}
#top_philosophy .en {
	margin-top: 18rem;
	font-size: 9rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-align: left;
}

/* ================================================
   Our Business
   ================================================ */
#top_business {
	position: relative;
	z-index: 1;
	background: url(../img/top/business_bg.jpg) right center no-repeat;
	background-size: cover;
	padding: 11rem 0;
}
.top_business {
	display: flex;
	align-items: center;
	gap: 2rem 12rem;
	position: relative;
}
.top_business .cont {
	flex: 1;
	text-align: left;
	color: #fff;
}
.top_business .txt-lh {
	max-width: 62rem;
	color: #fff;
}


/* ================================================
   Company Info
   ================================================ */
#top_company {
	padding: 8rem 0;
	position: relative;
	z-index: 1;
}
.top_company .lead {
	margin-bottom: 5rem;
}
.top_company .ttl-wrap { flex-shrink: 0; }
.top_company .txt-lh {
	max-width: 63.5rem;
}
.company-list {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 2.5rem;
	list-style: none;
}
.company-list li a {
	display: block;
	overflow: hidden;
	border-radius: .6rem;
	transition: .2s;
	box-shadow: 0 .4rem 2rem 1rem rgba(0, 0, 0, 0.05);
	background: #fff;
}
.company-list li .thumb {
	aspect-ratio: 4/3;
}
.company-list .txt {
	font-size: 1.8rem;
	font-weight: 500;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 2rem;
	background: #fff;
	padding: 1.5rem 2rem;
}
.company-list .txt .arw {
	width: 2.2rem;
}
.company-list a:hover .arw {
	transform: translateX(.5rem);
	background-color: var(--c_blue);
	background-image: url(../img/arw_wh.svg);
}
.top-company-nav {
	padding-top: 9rem;
	position: relative;
}
.top-company-nav::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: calc(-50vw + 50%);
	right: calc(-50vw + 50%);
	height: 31rem;
	background: url(../img/bg01.jpg) center center no-repeat;
	background-size: cover;
	z-index: -99;
}


/* ================================================
   top-Bnr
   ================================================ */
.sdgs-bnr {
	display: flex;
	border-radius: .6rem;
	overflow: hidden;
	transition: .2s;
}
.sdgs-bnr .cont {
	flex: 1;
	padding: 5rem 8rem;
	text-align: left;
	background: url(../img/bg01.jpg) center center no-repeat;
	background-size: cover;
}
.sdgs-bnr .logo-wrap {
	margin-bottom: 2rem;
}
.sdgs-bnr .thumb { 
	aspect-ratio: auto;
	width: 52rem;
}
.sdgs-bnr .thumb img {
	transform: scale(1)!important;
}
.sdgs-bnr .btn {
	margin-top: 2rem;
}
.recruit-bnr {
	display: flex;
	margin-top: 10rem;
	border-radius: .6rem;
	overflow: hidden;
	position: relative;
	background: url(../img/bg02.jpg) center center no-repeat;
	background-size: cover;
	z-index: 1;
	transition: .2s;
}
.recruit-bnr .cont {
	width: 44rem;
	padding: 5rem 0 5rem 8rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	position: relative;
	z-index: 1;
}
.recruit-bnr .cont::before {
	content: "";
	display: block;
	width: 72rem;
	aspect-ratio: 1;
	background: url(../img/bg01.jpg) bottom left no-repeat;
	background-size: cover;
	border-radius: 50%;
	position: absolute;
	bottom: -13rem;
	right: -20rem;
	z-index: -1;
	pointer-events: none;
}
.recruit-bnr .ttlBox {
	margin-bottom: 2rem;
}
.recruit-bnr .imgs {
	flex: 1;
	margin-left: -3rem;
	position: relative;
	z-index: 5;
}
.recruit-bnr .img-main {
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}
.recruit-bnr .img-main img {
	max-height: 24rem;
	display: block;
	opacity: 1!important;
}
.recruit-bnr .img-tag {
	position: absolute;
	top: 5.5rem;
	right: 3rem;
	width: 44%;
}
.recruit-bnr .btn {
	position: absolute;
	right: 3rem;
	bottom: 4rem;
}
.sdgs-bnr:hover,
.recruit-bnr:hover {
	transform: translateY(-1rem);
	box-shadow: 0 1rem 1rem rgba(0,0,0,.1);
}
.sdgs-bnr:hover .btn::after,
.recruit-bnr:hover .btn::after {
	transform: translateX(.7rem);
	background-color: var(--c_blue);
	background-image: url(../img/arw_wh.svg);
}

/* ================================================
   Contact-bnr
   ================================================ */
#contact-bnr {
	padding: 18rem 0 0;
	position: relative;
	z-index: 1;
	background: #fff;
}
#contact-bnr::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 32rem;
	background: url(../img/contact_bg.jpg) center center no-repeat;
	background-size: cover;
	z-index: -1;
}
.contact-bnr {
	display: flex;
	align-items: center;
	gap: 5.5rem;
	text-align: left;
	height: 25rem;
	padding: 2rem 7rem;
	color: #fff;
	background: url(../img/bg03.jpg) center center no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
	border-radius: 2rem;
	box-shadow: 0 .3rem 3rem 1rem rgba(0, 0, 0, 0.05);
	z-index: 1;
	transition: .2s;
}
.contact-bnr::before {
	content: "";
	display: block;
	background: url(../img/logomark.svg) center center no-repeat;
	background-size: contain;
	width: 33rem;
	aspect-ratio: 1;
	position: absolute;
	right: 5rem;
	top: 50%;
	transform: translateY(-50%);
	opacity: .1;
	z-index: -1;
}
.contact-bnr .btn {
	position: absolute;
	right: 5rem;
	bottom: 3rem;
	z-index: 1;
}
.contact-bnr:hover {
	transform: translateY(-1rem);
	box-shadow: 0 1rem 0 rgba(0,0,0,.1);
}
.sdgs-bnr:hover .btn::after,
.recruit-bnr:hover .btn::after,
.contact-bnr:hover .btn::after {
	transform: translateX(.7rem);
	background-color: var(--c_blue);
	background-image: url(../img/arw_wh.svg);
}
/* ================================================
   下層ページ
   ================================================ */
.page-ttl {
	background: var(--c_wh);
}
.page-ttl .container {
	padding-top: 15rem;
	position: relative;
	z-index: 1;
}
.page-ttl .container {
	padding-top: 15rem;
	position: relative;
}
.page-ttl .container::before {
	content: "";
	display: block;
	width: 77rem;
	aspect-ratio: 1;
	background: url(../img/bg01.jpg) top center no-repeat;
	background-size: cover;
	border-radius: 50%;
	position: absolute;
	top: -35rem;
	left: -30rem;
	z-index: -1;
	opacity: .5;
	pointer-events: none;
}
.page-ttl .ttlBox h1 {
	font-size: 1.8rem;
}
.pankz {
	font-size: 1.2rem;
}
.pankz ol {
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	overflow: auto;
}
.pankz a::after {
	content: ">";
	display: inline-block;
	margin: 0 .5rem;
}
.pankz a:hover {
	opacity: .5;
}
.ttlImg {
	overflow: hidden;
	background: var(--c_wh);
}
.ttlImg figure {
	margin: 1rem calc(-50vw + 50%) 10rem 0;
	overflow: hidden;
	height: 41.5rem;
	position: relative;
	z-index: 5;
}
.ttlImg img {
	height: 100%;
	min-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transform: scale(1.01);
	opacity: 1!important;
	transition: .4s;
}
.sec-bg {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
}

/*privacy
---------------------------------------------------------*/
.sec-txt {
	padding: 4rem 0;
}
.sec-txt .container {
	padding-left: 28rem;
}
.privacy {
	text-align: left;
	line-height: 1.8;
}
.privacy > li:not(:first-of-type) {
	margin-top: 5rem;
}
.privacy h2 {
	font-size: 112.5%;
	font-weight: 600;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #d9d9d9;
}
.privacy > li ul li {
	padding-left: 1em;
	text-indent: -1em;
	margin-top: 0.2em;
}
.privacy > li ul li::before {
	content: "・";
}


/*form
---------------------------------------------------------*/
.whBox {
	border-radius: 1.2rem;
	background: #fff;
	box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.05);
	padding: 5rem 3rem;
}
.formNote {
	text-align: left;
	margin-bottom: 6rem;
}
.formNote a {
	text-decoration: underline;
	color: var(--c_rd);
}
.formNote a:hover {
	text-decoration: none;
	opacity: .6;
}
.formTxt {
	font-size: 112.5%;
	font-weight: 600;
	text-align: center;
	margin-bottom: 4rem;
}
.formBox {
	display: grid;
	grid-template-columns: 23.5rem 1fr;
	align-items: flex-start;
	gap: 4.5rem;
	text-align: left;
}
.formBox dt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: .5rem;
	padding-top: 1rem;
}
.formBox dt.req::after {
	content: "必須";
	font-size: 1.2rem;
	font-weight: 500;
	padding: .5rem 1rem;
	display: inline-block;
	line-height: 1;
	color: var(--c_wh);
	background: var(--c_rd);
}
.formName > .txt {
	width: 40%;
	display: flex;
	align-items: center;
}
.formName > .txt:first-of-type {
	margin-right: 2%;
}
.formName .txt span {
	display: block;
	white-space: nowrap;
	margin-right: 1rem;
}
.form-address p {
	text-align: left;
	padding: 5px 0;
}
.formBox input[type="text"],.formBox input[type="tel"],.formBox input[type="email"],.formBox select,.formBox textarea {
	width: 100%;
	border: 1px solid #f5f5f5;
	border-radius: 3px;
	padding: 1.2em;
	background: #f5f5f5;
}
.formBox input[type="text"]:focus,
.formBox input[type="tel"]:focus,
.formBox input[type="email"]:focus,
.formBox select:focus,
.formBox textarea:focus {
	background: #E8F0FE;
}
.formBox input[type="text"].size-s {
	max-width: 21rem;
}
.formBox label {
	margin: 0;
}
.radioWrap {
	display: flex;
	flex-direction: column;
	gap: 1rem 3rem;
}
.formBox select {
	width: auto;
	background: #fff;
	color: #000
}
.formBox option:first-of-type {
	background: #b3b3b3;
	color: #fff;
}
.formBox textarea {
	height: 19rem;
}
.formBox .disabled input {
	pointer-events: none;
	border: none;
}
.zipBtn {
	background: #666;
	color: #fff;
	margin-left: 1rem;
	border: none;
	padding: .8rem 2rem;
	cursor: pointer;
	line-height: 1.1;
}
.zipBtn:hover {
	background: #ccc
}
.policyBox {
	height: 25rem;
	margin: 3rem 2.5rem 0;
	overflow: auto;
	padding: 1.5em;
	border: 1px solid #ccc;
	text-align: left;
}
.policyBox b {
	display: block;
	font-size: 115%;
	margin-bottom: .5rem;
}
.policyTxt {
	margin-bottom: 2rem;
}
.policyTxt a {
	text-decoration: underline;
	display: inline-block;
	color: var(--c_rd);
}
.policyTxt a:hover {
	text-decoration: none;
	color: var(--c_text);
}
.policyCheck {
	margin-top: 6rem;
}
.formBtn {
	margin-top: 5rem;
	gap: 2rem;
}
.formWrap input[type="submit"],.formWrap input[type="button"] {
	font-family: 'Noto Sans JP', sans-serif ,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Verdana;
	color: #fff;
	font-size: 115%;
	font-weight: 500;
	letter-spacing: .075em;
	text-indent: .075em;
	background: var(--c_blue);
	background: linear-gradient(90deg,var(--c_blue) 0%, #343D44 100%);
	border-radius: 150px;
	min-width: 32rem;
	display: block;
	border: none;
	padding: 2.5rem 2rem;
	border-radius: 10rem;
	transition: .2s;
	cursor: pointer;
}
.formWrap input[type="button"].btn_back {
	background: #ddd;
	color: #333;
}
.formWrap input[type="submit"]:hover,.formWrap input[type="button"]:hover {
	opacity: .7;
}
.onlyconf {
	display: none;
}
.wpcf7-not-valid-tip {
	font-size: 85%!important;
}
.formName .wpcf7-not-valid-tip {
	min-width: 50%;
}
.formName .wpcf7-not-valid-tip + .wpcf7-not-valid-tip {
	display: none;
}
.clear {
	margin-top: 4rem;
}
.clear button {
	text-decoration: underline;
	color: #262626;
}
.clear button:hover {
	text-decoration: none;
	color: var(--c_rd);
}
.formTx02 {
	margin-top: 4rem;
	font-size: 85%;
}
.thxBox .ttl {
	font-size: 112.5%;
	font-weight: 600;
	margin-bottom: 1em;
}
.btmTel {
	margin-top: 8rem;
	font-size: 1.8rem;
	font-weight: 500;
}
.btmTel dt {
	margin-bottom: 1rem;
}
.telnum {
	font-size: 4.8rem;
	white-space: nowrap;
	line-height: 1;
}
.telnum + small {
	display: block;
	font-weight: 1.2rem;
	font-weight: 500;
	margin-top: 0.5em;
}

.file {
  display: flex;
  align-items: center;
  gap: 16px;
}
.file input[type="file"] {
  display: none;
}
.file__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
	min-width: 170px;
	padding: 0.9rem 1.8rem;
  border-radius: 4px;
  border: 1px solid #C9C9C9;
  background: #E3E3E3;
  cursor: pointer;
  transition: 0.3s ease;
}
.file__button:hover {
	opacity: 0.6;
}
.file__name {
	display: block;
  font-size: 14px;
  color: #666;
}
.file__note {
  font-size: 12px;
  margin-top: 6px;
}
.formBtn__wrap{
	display: flex;
	gap: 2.4rem;
}
span[class*="-error"]{
	color: #dc3232 !important;
}






/*contactform7
---------------------------------------------------------*/
.wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: 14px;
	color: #d90000;
}
.formWrap.confirmWrap,
.formWrap.thanksWrap,
.is-finish .wpcf7-response-output {
  display: none;
}

.formWrap .btnCont[disabled] {
  opacity: .4;
  pointer-events: none;
}

.wpcf7-spinner{
	display: none !important;
}





/* ================================================
   Business
   ================================================ */
/*.totalsupport {
	position: relative;
	text-align: left;
	color: #fff;
	padding: 10rem 0 0;
	text-shadow: 0 .2rem 1rem rgba(22,103,196,.2);
}
.totalsupport::before {
	content: "";
	display: block;
	background: url(../img/bg03.jpg) left top 35% no-repeat;
	background-size: auto 200%;
	z-index: -50;
	position: absolute;
	top: 0;
	bottom: 8rem;
	right: 28rem;
	left: calc(-50vw + 50%);
}
.totalsupport::after {
	content: "";
	display: block;
	background: url(../img/logomark.svg) center center no-repeat;
	background-size: contain;
	aspect-ratio: 1;
	width: 47rem;
	opacity: .15;
	position: absolute;
	top: -3rem;
	left: -20rem;
	z-index: -5;
}*/
.totalsupport h2 {
	margin-bottom: 2rem;
	font-size: 120%;
}

.totalsupport h3 {
	margin-bottom: 3rem;
	font-size: 180%;
}
.totalsupport figure {
	max-width: 41rem;
	margin: 3rem 0 0 auto;
}
.service .lead {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	text-align: left;
}
.service .lead .cont {
	position: relative;
	color: #fff;
	padding: 4rem 0 0 6.5rem;
}
.service .lead .cont::before {
	content: "";
	display: block;
	background: url(../img/bg03.jpg) left top 35% no-repeat;
	background-size: cover;
	z-index: -50;
	position: absolute;
	top: 0;
	bottom: -25rem;
	left: 0;
	right: calc(-50vw + 50%);
}
.service .lead .cont .eng {
	font-size: 4.8rem;
	margin-bottom: 3rem;
}
.service-cont {
	background: var(--c_wh);
	padding: 4rem 6.5rem;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 2rem;
	margin-top: 8rem;
	border-radius: 6px;
	box-shadow: 0 .5rem 3rem 1rem rgba(0, 0, 0, 0.05);
}
.service-cont li {
	background: var(--c_blue);
	color: var(--c_wh);
	font-weight: 500;
	padding: 1rem;
}
.gallery-outer {
	margin: 8rem calc(-50vw + 50%) 0;
	position: relative;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
	padding: 1rem 0;
}
.gallery {
	display: flex;
	align-items: flex-start;
	width: max-content;
	gap: 3rem;
	animation: galleryMarquee 60s linear infinite;
	will-change: transform;
}
.gallery li {
	box-shadow: 0 .5rem 1rem rgba(0, 40, 100, .12);
	width: 35rem;
	display: block;
	animation: gallerySway 7s ease-in-out infinite alternate;
}
.gallery li img {
	object-fit: cover;
}
.gallery li:nth-child(even) {
	margin-top: 2rem;
}
.gallery li:nth-child(2n) { animation-duration: 3.6s; animation-delay: -1.2s; }
.gallery li:nth-child(3n) { animation-duration: 4.8s; animation-delay: -2.4s; }
.gallery li:nth-child(4n) { animation-duration: 3.3s; animation-delay: -0.8s; }
.gallery li:nth-child(5n) { animation-duration: 4.4s; animation-delay: -3.0s; }
.gallery li:nth-child(6n) { animation-duration: 5.0s; animation-delay: -1.6s; }
.gallery li:nth-child(7n) { animation-duration: 3.8s; animation-delay: -0.4s; }
.gallery li:nth-child(8n) { animation-duration: 4.2s; animation-delay: -2.0s; }
.gallery li:nth-child(9n) { animation-duration: 3.5s; animation-delay: -3.5s; }
.gallery li:nth-child(10n) { animation-duration: 4.6s; animation-delay: -1.0s; }

@keyframes galleryMarquee {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes gallerySway {
	0%   { transform: scale(1.00) translateY(0px)  ; filter: brightness(1.00); }
	30%  { transform: scale(1.02) translateY(-.5rem) ; filter: brightness(1.04); }
	70%  { transform: scale(1.01) translateY( .5rem) ; filter: brightness(0.97); }
	100% { transform: scale(1.00) translateY(-.2rem) ; filter: brightness(1.02); }
}


.ourbisbox{
	margin-bottom: 8rem;
}
.ourbiswrap .container:nth-child(odd)  .ourbisbox{
	flex-direction: row-reverse;
}

.ourbisbox ._img{
	flex: 1;
}
.ourbiswrap .container:nth-child(odd) .ourbisbox ._img{
	margin-left: -20rem;
}
.ourbiswrap .container:nth-child(even) .ourbisbox ._img{
	margin-right: -20rem;
}


.ourbisbox ._cont{
	flex-basis: 35%;
	text-align: left;
	position: relative;
	padding: 8rem 0;
}
.ourbisbox ._cont::after{
	background: url(../img/business/bg01.png) no-repeat ;
	background-size: cover;
	content: "";
	display: block;
	height: 100%;
	width: 100rem;
	position: absolute;
	left: -50%;
	top:0;
	z-index: -1;
}
.ourbiswrap .container:nth-child(even) .ourbisbox ._cont::after{
	left: auto;
	right: -50%;
}



.ourbisbox ._cont ._num {
		margin-bottom: 2rem;
}
.ourbisbox ._cont ._num span{
	font-size: 1.4rem;
}
.ourbisbox ._cont ._num big{
	font-size: 12rem;
	background: url(../img/business/bg_num.jpg) no-repeat;
	background-size: cover;
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.ourbisbox ._cont h2{
	font-size:4.2rem ;
	margin-bottom: 1rem;
}
.ourbisbox ._cont h3{
	font-size: 1.4rem;
	margin-bottom: 3rem;
	display: flex;
	align-items: center;

}
.ourbisbox ._cont h3:before{
	display: inline-block;
	height: .2rem;
	width: 1.5rem;
	background: var(--c_blue);
	content: "";
	margin-right: 1rem;
}
.bislist li{
	background: var(--c_blue);
	color: #fff;
	margin: 1px;
	padding: .5rem .8rem;
} 

.bislist li._other{
	background: none;
	color: #000;
}
.ourbiscont01 {
	margin-bottom: 10rem;;
}
.ourbiswrap .container:nth-child(even) .ourbiscont01{
	flex-direction: row-reverse;
}
.ourbiscont01 ._cont{
	flex-basis: 55%;
	text-align: left;
}
.ourbiscont01 ._img{
		flex-basis: 30%;
}
._ob05 .ourbiscont01 ._img{
	flex-basis: 40%;
}

.ourbiscont01 h3{
	font-size: 2.4rem;
	margin-bottom: 2rem;;
}
._ob05 .ourbiscont01 li,
._ob06 .ourbiscont01 li {
	margin: 1rem;
}



/* ================================================
   Company info
   ================================================ */
.company-info li + li {
	margin-top: 6rem;
}
.company-info li a {
	display: flex;
	align-items: center;
	gap: 3rem;
}
.company-info li a .cont {
	flex: 1;
	text-align: left;
	padding: 2rem 6.5rem;
}
.company-info li a .thumb {
	aspect-ratio: 535/356;
	width: 53.5rem;
}
.company-info li:nth-of-type(3) a .thumb img {
	object-position: left center;
}

.company-info li a:hover .btn::after {
	transform: translateX(.7rem);
	background-color: var(--c_blue);
	background-image: url(../img/arw_wh.svg);
}


/* ================================================
   Profile
   ================================================ */
#message {
	position: relative;
	padding-bottom: 50rem;
}
#message::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 114.7rem;
	background: url(../img/company/profile/bg.jpg) bottom center no-repeat;
	background-size: cover;
	z-index: -50;
}
.message {
	display: flex;
	align-items: flex-end;
	gap: 12.5rem;
}
.message .cont {
	text-align: left;
	flex: 1;
}
.message .cont h3 {
	font-size: 3.2rem;
	margin: 12rem 0 3rem;
}
.president {
	width: 34.5rem;
	/*margin-bottom: -4.2rem;*/
}
.president .txt {
	text-align: left;
	margin-top: 1rem;
}
.president .txt b {
	font-size: 125%;
	font-weight: 600;
	margin-left: 0.7em;
}
#profile {
	margin-top: -30rem;
	padding-top: 0;
	position: relative;
	z-index: 1;
}
#profile .ttlBox {
	text-shadow: 0 0 1rem rgba(255,255,255,.8);
}
.profile {
	border-radius: 6px;
	background: var(--c_wh);
	padding: 10rem 12rem;
	text-align: left;
}
.profile dl {
	display: grid;
	grid-template-columns: 20rem 1fr;
	line-height: 1.8;
}
.profile dt,
.profile dd {
	padding: 2rem;
	border-bottom: 1px solid #d9d9d9;
}
.profile dt:first-of-type,
.profile dd:first-of-type {
	border-top: 1px solid #d9d9d9;
}
.profile dt {
	display: flex;
	align-items: center;
	background: var(--c_gray);
}
.profile dd ul li {
	padding-left: 1em;
	text-indent: -1em;
}
.profile dd ul li::before {
	content: "・";
}
.group li {
	padding: 4rem 5rem; 
	text-align: left;
	display: grid;
	grid-template-columns: 30rem 1fr;
	align-items: center;
	gap: 2rem 10rem;
}
.group li + li {
	margin-top: 5rem;
}
.group dl {
	display: grid;
	grid-template-columns: 8rem 1fr;
	gap: 1.2rem;
}
.group dt {
	white-space: nowrap;
	background: #f5f5f5;
	text-align: center;
	padding: .4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.group dd {
	padding: .4rem;
}
.group dd a:hover{
	color: var(--c_blue);
	text-decoration: underline;
}

/* ================================================
   History
   ================================================ */
.historyLead {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	padding: 3rem 0 0 0;
	margin-bottom: 12rem;
	text-shadow: 0 .2rem 1rem rgba(22,103,196,.2);
}
.historyLead::before {
	content: "";
	display: block;
	background: url(../img/bg03.jpg) left top 35% no-repeat;
	background-size: auto 200%;
	z-index: -50;
	position: absolute;
	top: 0;
	bottom: 6rem;
	right: 28rem;
	left: calc(-50vw + 50%);
}
.historyLead::after {
	content: "";
	display: block;
	background: url(../img/logomark.svg) center center no-repeat;
	background-size: contain;
	aspect-ratio: 1;
	width: 47rem;
	opacity: .15;
	position: absolute;
	top: -1.5rem;
	left: -20rem;
	z-index: -5;
}
.historyLead .thumb {
	width: 67.5rem;
	aspect-ratio: 1000/665;
	margin-right: -15rem;
}
.historyLead .box {
	padding-top: 8rem;
	color: #fff;
	text-align: left;
}
.historyLead h2 {
	font-size: 2.4rem;
	font-weight: 600;
}
.histroy {
	padding: 10rem 5rem;
	background: var(--c_wh);
}
.histroy .box {
	max-width: fit-content;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
.histroy .box::before {
	content: "";
	display: block;
	width: .2rem;
	left: .5rem;
	position: absolute;
	top: 0;
	bottom: 0;
	background: var(--c_blue);
}
.histroy dl {
	display: grid;
	align-items: center;
	text-align: left;
	grid-template-columns: 20rem 1fr;
	gap: 3rem 10rem;
	position: relative;
}
.histroy dl:not(:first-of-type) {
	margin-top: 5rem;
}
.histroy dt {
	color: var(--c_blue);
	font-size: 4rem;
	letter-spacing: .05em;
	white-space: nowrap;
	position: relative;
	padding-left: 5rem;
}
.histroy dt small {
	font-size: 60%;
}
.histroy dt::after {
	content: "";
	display: block;
	width: .2rem;
	left: .5rem;
	position: absolute;
	top: 0;
	bottom: -5rem;
	background: var(--c_blue);
}
.histroy dt::after {
	width: 1.2rem;
	aspect-ratio: 1;
	height: auto;
	left: 0;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	border-radius: 50%;
	z-index: 5;
}
.histroy dl:first-of-type dt::before,
.histroy dl:last-of-type dt::before  {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 50%;
	width: 0.5rem;
	left: 0.3rem;
	z-index: 1;
	background: var(--c_wh);
}
.histroy dl:last-of-type dt::before {
	top: 50%;
	bottom: 0;
}

/* ================================================
   Initiatives
   ================================================ */
.initiativesLead {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row-reverse;
	position: relative;
	padding: 8rem 0;
	margin-bottom: 12rem;
}
.initiativesLead::before {
	content: "";
	display: block;
	background: url(../img/bg01.jpg) bottom right no-repeat;
	background-size: auto 200%;
	z-index: -50;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 18rem;
	right: calc(-50vw + 50%);
}
.initiativesLead .thumb {
	width: 67.5rem;
	aspect-ratio: 1000/669;
	margin-left: -15rem;
}
.initiativesLead .box {
	text-align: left;
	max-width: 45rem;
	padding-top: 2rem;
}
.initiativesLead h2 {
	margin-bottom: 1.5rem;
}
.initiatives li:not(:first-of-type) {
	padding-top: 10rem;
	margin-top: 10rem;
	border-top: 1px solid #d9d9d9;
}
.initiatives li {
	display: flex;
	flex-direction: row-reverse;
	gap: 12rem;
}
.initiatives li figure {
	width: 54rem;
}
.initiatives li .box {
	flex: 1;
	text-align: left;
}
.initiatives li h3 {
	margin-bottom: 1rem;
}
.initiatives li h4 {
	font-size: 2rem;
	font-weight: 600;
	margin: 5rem 0 1rem;
}
.initiatives li .box .img {
	margin: 6rem 0;
}
.iso {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.2rem;
}
.iso dt {
	display: grid;
	grid-template-columns: 9rem 1fr;
	align-items: center;
	gap: 1.5rem;
}
.iso dt h5 {
	font-size: 112.5%;
	font-weight: 600;
	white-space: nowrap;
}
.iso dt span {
	display: inline-block;
	background: var(--c_blue);
	color: var(--c_wh);
	padding: 0 .8rem;
}

/* ================================================
   SDGs
   ================================================ */
.sdgsLead {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	gap: 2rem 12rem;
	margin-bottom: 12rem;
}
.sdgsLead figure {
	width: 65.6rem;
	margin-right: -15rem;
}
.sdgsLead .box {
	flex: 1;
	text-align: left;
}
.sdgsLead .box h2 {
	max-width: 40rem;
	margin-bottom: 6rem;
}
.sdgsLead .box h2 img {
	width: 100%;
}
.sdgsLead .box h3 {
	margin-bottom: 1.5rem;
}
.sdgs .wrap {
	padding: 10rem 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12rem;
}
.sdgs .wrap:not(:first-of-type) {
	margin-top: 10rem;
}
.sdgs .wrap:nth-of-type(even) {
	flex-direction: row-reverse;
}
.sdgs .wrap::before {
	content: "";
	display: block;
	background: url(../img/bg01.jpg) left center no-repeat;
	background-size: cover;
	z-index: -50;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 30%;
	right: calc(-50vw + 50%);
}
.sdgs .wrap::after {
	content: "";
	display: block;
	background: url(../img/bg03.jpg) left 20% center no-repeat;
	background-size: auto 155%;
	z-index: -10;
	position: absolute;
	top: 0;
	right: 70%;
	left: -15rem;
	aspect-ratio: 1920/1322;
}
.sdgs .wrap:nth-of-type(even)::before {
	left: calc(-50vw + 50%);
	right: 30%;
	background: none;
}
.sdgs .wrap:nth-of-type(even)::after {
	left: 70%;
	right: -15rem;
}
.sdgs .wrap figure {
	width: 50%;
}
.sdgs .wrap .box {
	flex: 1;
	text-align: left;
}
.numTtl {
	font-size: 2rem;
	margin-bottom: 4rem;
	letter-spacing: 0.03em;
}
.numTtl span {
	margin-right: 0.3em;
}
.sdgs .wrap h3 {
	margin-bottom: 1.5rem;
}
.sdgs .wrap ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 3rem;
}
.sdgs .wrap ul img {
	max-height: 8rem;
}


/* ================================================
   Philosophy
   ================================================ */
#page-philosophy {
	position: relative;
}
.philosophy-bg {
	position: fixed;
	inset: 0;
	z-index: -999;
	transition: .6s;
	background: #000;
}
.philosophy-bg .bg {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: 1.5s;
}
.philosophy-bg .bg img {
	height: 100%;
	min-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transform: scale(1.01);
	opacity: 1 !important;
	transition: 1s;
}
.philosophy-bg .bg:nth-child(4) img{
	object-position: right center; 
}
.philosophy-bg .bg.act {
	opacity: 1;
}
#philosophy {
	padding: 0;
}
.philosophy {
	min-height: 100svh;
	padding: 50vh 0;
	color: var(--c_wh);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#philosophy01 {
	padding-top: 20rem;
}
.philosophy01 h3 {
	font-size: 4rem;
	font-weight: 600;
	margin: 10rem auto 4rem;
	letter-spacing: 0.1em;
}
.philosophy01 h4 {
	font-size: 2.4rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin-bottom: 15rem;
}
.philosophy01 .txt-lh {
	text-align: center;
	line-height: 3;
	letter-spacing: 0.075em;
}
.philosophy02 h3._catch {
	/*width: 100%;*/
	font-size: 6rem;
	font-weight: 600;
	letter-spacing: 0.4em;
	line-height: 1.8;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	white-space: nowrap;


}






.philosophy03 dl{
	max-width: 77rem;
	width: 100%;
	margin-left: auto;
	
}


.philosophy03 dl {
	display: grid;
	grid-template-columns: 1fr 50rem;
	align-items: flex-start;
	text-align: left;
	gap: 3rem;
}
.philosophy03 dl:not(:first-of-type) {
	margin-top: 25vh;
}


.philosophy03 dt .eng {
	font-size: 4.8rem;
	font-weight: 400;
	position: relative;
	padding-left: 3rem;
}
.philosophy03 dt .eng::before {
	content: "";
	display: block;
	width: 1.3rem;
	aspect-ratio: 1;
	background: var(--c_wh);
	border-radius: 50%;
	transform: translateY(-50%);
	position: absolute;
	left: 0;
	top: 50%;
}
.philosophy03 dt h2 {
	font-size: 1.4rem;
	font-weight: 400;
	padding-left: 3rem;
}
.philosophy03 dd h3 {
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.075em;
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}
.philosophy03 dd h3:not(:first-of-type) {
	margin-top: 10vh;
}
.philosophy03 dd h3 .eng {
	font-size: 1.6rem;
	font-weight: 400;
	border-right: 1px solid var(--c_wh);
	margin-right: 1.5rem;
	padding-right: 1.5rem;
}
.philosophy03 dd h3 {
	font-size: 1.8rem;
}
.philosophy03 dd h3 .eng {
	padding-right: 1rem;
	margin-right: 1rem;
	white-space: nowrap;
}

.mane_phibox{
	margin-top: 25rem;
}
.mane_phibox .philosophy03 {
	margin-top: 15rem;
	margin-left: auto;
	width: 100%;
}

.mane_phibox > h3._catch {
  position: relative;
  z-index: 10;
  transition: opacity .6s ease;
  
}

.mane_phibox > h3._catch.is-fadein,
.mane_phibox > h3._catch.is-fadeout {
  opacity: 0;
}

.catch-placeholder {
  display: none;
  flex-shrink: 0;
}

.mane_phibox > h3._catch.is-fixed {
  position: fixed;
  top: 20vh;
  left: var(--catch-left);
}

.catch-placeholder {
  display: none;
  flex-shrink: 0;
}



#philosophy05{
	padding-top: 80vh;
}
.flowtxt{
  font-size: 10rem;
  padding: 9rem 0 4rem;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 10%,
    #fff 30%,
    #fff 100%
  );
}

.flowtxt{
  overflow: hidden;
  width: 100%;
}

.flowtxt-track{
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.flowtxt-track span{
  font-size: 10rem;
  white-space: nowrap;
  padding-right: 5rem;
}

@keyframes marquee{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}





/* ================================================
   recruit
   ================================================ */
	 .recruit-wrapper{
		position: relative;
		background: url(../img/bg01.jpg) no-repeat center center/cover;
		padding-bottom: 0;
		z-index: 0;
		overflow: hidden;
		&::before {
			content: '';
			position: absolute;
			bottom: -30%;
			left: -13%;
			background: url(../img/bg02.jpg) no-repeat center center/cover;
			aspect-ratio: 1 / 1;
			width: 77%;
			border-radius: 50%;
			z-index: 0;
		}
		&::after {
			content: '';
			position: absolute;
			bottom: 9%;
      left: 30%;
			background: url(../img/logomark.svg) no-repeat center center/100% auto;
			aspect-ratio: 532 / 531;
			width: 20%;
			max-width: 532px;
			opacity: 0.3;
			z-index: 0;
		}
	 }
	 .recruit__wrap{
		position: relative;
		display: flex;
		align-items: flex-end;
		z-index: 2;
	 }
	 .recruit__content{
		width: 60%;
		width: 55%;;
		padding-bottom: 2.6rem;
	 }
	 .recruit__content-text{
		text-align: left;
		margin-top: 4rem;
	 }
	 .recruit__title-area{
		margin-top: 3rem;
		h1{
			display: flex;
			align-items: center;
			font-size: 2.0rem;
			font-weight: 500;
			letter-spacing: 0.1em;
			gap: .8rem;
			margin-top: 1.1rem;
			color: var(--c_wh);
			&::before {
				content: "";
				display: block;
				width: 1.5rem;
				height: 2px;
				background: var(--c_wh);
			}
		}
	 }
	 .recruit__title{
		display: block;
		text-align: left;
		font-size: 12rem;
		line-height: 0.9;
		color: var(--c_bk);
	 }
	 .recruit__title.--white{
		color: var(--c_wh);
	 }
	 .recruit__item{
		flex: 1;
	 }

	 /* インタビュー */
	 .recruit-interview{
		padding: 15.9rem 0;
	 }
	 .recruit-interview__content-image{
		position: relative;
		overflow: hidden;
		img{
			width: 100%;
			max-width: 100%;
			height: auto;
		}
		&::before {
			content: '';
			position: absolute;
			top: -59%;
      left: -17%;
			background: url(../img/bg02.jpg) no-repeat center center/cover;
			aspect-ratio: 1 / 1;
			width: 60vw;
			max-width: 760px;
			border-radius: 50%;
			z-index: 0;
		}
	 }
	 .recruit-interview__contents{
		display: flex;
		flex-direction: column;
		gap: 14rem;
	 }
	 .recruit-interview__content-item{
		position: absolute;
		top: 0;
		left: 0;
    width: 40vw;
		max-width: 500px;
    height: 80%;
	 }
	 .recruit-interview__content-text{
		position: absolute;
		top: 32%;
    left: 7%;
    width: 24vw;
    max-width: 380px;
	 }
	 .recruit-interview__content-text.--02{
		position: absolute;
		top: 20%;
    left: 7%;
    width: 24vw;
    max-width: 300px;
	 }
	 .recruit-interview__content-number{
		position: absolute;
		top: 5%;
		left: 4%;
		display: block;
		font-size: 22px;
		color: var(--c_wh);
	 }
	 .recruit-interview__content-name{
		position: absolute;
    bottom: 13%;
    right: 6vw;
    display: block;
    font-size: 16px;
    color: var(--c_wh);
		text-decoration: underline;
		text-underline-offset: 8px;
	 }

	 .recruit-interview__info{
		display: flex;
		align-items: flex-start;
		margin-top: 4.3rem;
	 }
	 .recruit-interview__info-question-area{
		width: 45%;
	 }
	 .recruit-interview__info-question{
		display: flex;
		align-items: center;
		gap: 18px;
	 }
	 .recruit-interview__info-question-number{
		font-size: 18px;
		color: var(--c_blue);
	 }
	 .recruit-interview__info-question-text{
		display: block;
		text-align: left;
		color: var(--c_blue);
	 }
	 .recruit-interview__info-question-catch{
		display: block;
		margin-top: 2.4rem;
		text-align: left;
		font-size: 20px;
		font-weight: 600;
	 }
	 .recruit-interview__info-answer{
		text-align: left;
		flex: 1;
		line-height: 2.0;
	 }
	 .recruit-interview__parts{
		display: flex;
		flex-direction: column;
		gap: 112px;
		margin-top: 112px;
	 }
	 .recruit-interview__parts-items{
		display: flex;
		align-items: flex-start;
		gap: 5.5vw;
		&:nth-child(2) {
			flex-direction: row-reverse;
		}
		.recruit-interview__info-answer{
			margin-top: 16px;
		}
	 }
	 .recruit-interview__parts-image{
		width: 45%;
		img{
			width: 100%;
			max-width: 100%;
			height: auto;
		}
	 }
	 .recruit-interview__parts-item{
		flex: 1;
	 }

	 /* エントリーフォーム */
	 .recruit-entry{
		background: #F5F5F5;
	 }
	 .recruit-entry__wrap{
		padding: 8.5rem 9.4rem;
		background: var(--c_wh);
		border-radius: 6px;
	 }



.recruit-jobinfo {
     overflow: clip;
}
.jobinfoside{
	flex-basis: 20%;
}
.jobinfocont{
	flex-basis: 80%;
}
.jobinfonavi{
	text-align: left;
	position: sticky;
	top: 15rem;
}
.jobinfonavi h3{
	font-size: 1.6rem;
	margin-bottom: 1rem;
}
.jobinfonavi li{
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
.jobinfonavi li .is-active{
	color: var(--c_blue);
}
.jobinfocont h3{
	text-align: left;
	font-size: 2.4rem;
	margin-bottom: 2rem;
}
.table01{
	width: 100%;
	margin-bottom: 3rem;
	border-top: 1px solid #ccc;
}
.table01 th,
.table01 td{
	border-bottom: 1px solid #ccc;
	padding: 2rem;
	text-align: left;
}
.table01 th{
	background:#F5F5F5;
	width: 25%;
	font-weight: 400;;
}
.jobinfocont ._btncase{
		margin-bottom: 8rem;
}
.btn01{
	background: linear-gradient(90deg, #32ACC9 0%, #343D44 100%);
  color: #fff !important;
  border-radius: 10rem;
  padding: 1.5rem 6rem;
  transition: .2s;
  display: inline-block;
}
.btn01:hover{
	opacity: .7;
}


/*ieハック*/
@media screen\0 {
}

/*********************************/
/* タブレット用のスタイル記述 */
/*********************************/
@media screen and (max-width: 1150px) {
	html { font-size: .8vw; }

	#top_business .content { padding-left: 4rem; }
	#top_recruit .content  { padding-left: 4rem; }
}

/*********************************/
/* スマートフォン用のスタイル記述 */
/*********************************/
@media screen and (max-width: 780px) {

/*全体レイアウト
---------------------------------------------------------*/
	html { font-size: 2.7777777vw; }
	body { font-size: 1.4rem; line-height: 1.5; }
	body.active { overflow: hidden; }
	article > section { padding: 5rem 0; }
	article > section:last-of-type {
		padding-bottom: 6rem;
	}
	.ttlBox {
		margin-bottom: 3rem;
	}
	.ttlBox .eng {
		font-size: 3.5rem;
	}
	.c-enTtl {
		margin-bottom: 3rem;
	}
	.btn {
		font-size: 1.4rem;
		margin-top: 3rem;
	}
	.btn::after {
		width: 3rem;
	}

	.inview._fl,
	.inview._fr { transform: translateY(32px); }
	.inview._fl.act,
	.inview._fr.act { transform: translateY(0); }

/*header
-------------------------------------------------------*/
	.hd-inner {
		padding: 1rem 0;
	}
	img[src*="/logo.png"] {
		max-height: 3.5rem;
	}
	.menuIconWrap { display: flex; }

	#nav {
		position: fixed;
		top: 0;
		bottom: 0;
		right: 0;
		z-index: 10;
		width: 100%;
		height: 100%;
		transition: all 0.3s ease-in-out;
		overflow-y: auto;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
		display: block;
		padding: 5.5rem 2rem 3rem;
		font-size: 1.4rem;
		background: var(--c_navy);
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
	}
	#nav.active {
		pointer-events: all;
		right: 0;
		opacity: 1;
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		transform: translateX(0);
		visibility: visible;
		z-index: 9990;
	}
	.nav-list {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		gap: 0;
	}
	.nav-list a {
		color: #fff!important;
	}
	.nav-list li:not(.nav-contact):not(:last-of-type) {
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,.1);
	}
	.nav-list > li:not(.nav-contact) > a {
		padding: 1.2rem 2rem;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.nav-list > li:not(.nav-contact):not(.tgl) > a::after,
	.ddNavArea li a::after {
		content: "";
		display: block;
		background: url(../img/arw_wh.svg) center center no-repeat;
		background-size: contain;
		width: 1.2rem;
		aspect-ratio: 11/8;
	}
	.nav-list > li > a::before {
		display: none;
	}
	.nav-list > li.tgl > a::after {
		content: "";
		display: block;
		background: #fff;
		position: absolute;
		right: 2rem;
		top: 50%;
		transform: translateY(-50%);
		z-index: 1;
		width: 1.2rem;
		transition: .2s;
		aspect-ratio: 1;
		-webkit-clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);
		clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);
	}
	.nav-list > li.tgl.open > a::after {
		-webkit-clip-path: polygon(0 45%, 45% 45%, 45% 45%,  55% 45%, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 55%, 45% 55%, 45% 55%, 0 55%);
		clip-path: polygon(0 45%, 45% 45%, 45% 45%,  55% 45%, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 55%, 45% 55%, 45% 55%, 0 55%);
	}
	.nav-contact {
		width: 100%;
		text-align: center;
		margin-top: 2rem;
	}
	.nav-contact > a {
		font-size: 112.5%;
	}
	.ddNavArea {
		position: static;
		background: rgba(255,255,255,.1);
		box-shadow: none;
		border-top: none;
		display: none;
		padding: 1.2rem 2rem;
	}
	.ddNavArea li a {
		color: #fff;
		padding: 0.8rem 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.nav-list li.tgl.open > .ddNavArea { display: block; }

	/*Footer
	-------------------------------------------------------*/
	#footer {
		padding: 6rem 0 2rem;
	}
	.footer-logo img[src*="/logo.png"] {
    max-height: 4.5rem;
	}
	.footer-inner {
		flex-direction: column;
		gap: 4rem;
	}
	.footer-nav {
		flex-direction: column;
		justify-content: flex-start;
		gap: 2.5rem;
		font-size: 95%;
	}
	.ft-nav-list {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem 3rem;
	}
	.ft-nav-list li {
		min-width: 3.8em;
	}
	.ft-nav-list > li + li {
		margin-top: 0;
	}
	.ft-parent li:first-of-type {
		margin-top: 0;
	}
	.copyright {
		margin-top: 5rem;
	}
	.gotop {
		right: 1rem;
		bottom: 1rem;
		width: 3.7rem;
	}


/*MV
-------------------------------------------------------*/
	#top_mv .catch {
		font-size: 2.5rem;
		line-height: 1.8;
		white-space: nowrap;
	}
	.mv-bg .mv img {
		transform: scale(1.1);
	}

/*Philosophy
-------------------------------------------------------*/
	#top_philosophy {
		padding: 12rem 0 6rem;
	}
	#top_philosophy::before {
		width: 30rem;
		top: 0;
	}
	.top_philosophy {
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 3rem;
	}
	.top_philosophy .imgs {
		width: 85%;
		margin-top: 0;
	}
	.top_philosophy .ttl {
		font-size: 2rem;
		margin-bottom: 3rem;
	}
	#top_philosophy .en {
		font-size: 4rem;
		margin-top: 17rem;
	}






/*Business
-------------------------------------------------------*/
	#top_business {
		padding: 6rem 0;
		background-position: left bottom;
	}
	.top_business {
		flex-direction: column;
		gap: 4rem;
	}
	.top_business .img {
		width: calc(100% + 2rem);
		height: 15rem;
		flex: auto;
		margin-right: -2rem;
		margin-bottom: 0;
	}
	.top_business .img img {
		max-width: none;	height: 100%;
		min-width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.top_business .cont {
		width: 100%;
	}


/*Company
-------------------------------------------------------*/
	#top_company {
		padding-bottom: 4rem;
	}
	.top-company-nav::before {
		height: 29rem;
	}
	.top_company .lead {
		flex-direction: column;
		gap: 4rem;
		margin-bottom: 4rem;
	}
	.top-company-nav {
		padding-top: 4rem;
	}
	.company-list {
		grid-template-columns: repeat(2,1fr);
		gap: 1.5rem;
	}
	.company-list li a {
		box-shadow: 0 .2rem 1rem 1rem rgba(0, 0, 0, 0.02);
	}
	.company-list .txt {
		font-size: 1.4rem;
		padding: 1.2rem;
		gap: .2rem;
		justify-content: space-between;
	}



/*topBnr
-------------------------------------------------------*/
	.sdgs-bnr {
		flex-direction: column-reverse;
	}
	.sdgs-bnr .btn {
		margin-left: auto;
	}
	.sdgs-bnr .thumb {
		width: 100%;
	}
	.sdgs-bnr .cont {
		padding: 3rem 2rem 2rem;
	}
	.recruit-bnr {
		display: block;
		margin-top: 3rem;
	}
	.recruit-bnr .cont {
		width: 100%;
		padding: 2rem 2rem;
	}
	.recruit-bnr .cont::before {
		background-position: top center;
		width: 65rem;
		top: -47rem;
		bottom: auto;
		right: -12rem;
	}
	.recruit-bnr .ttlBox {
		margin-bottom: 1rem;
	}
	.recruit-bnr .imgs {
		margin-left: 0;
	}
	.recruit-bnr .img-main {
		height: auto;
		max-width: 21rem;
		margin-left: -2.2rem;
	}
	.recruit-bnr .img-tag {
		top: 1rem;
		right: 1rem;
		width: 15.5rem;
	}
	.recruit-bnr .btn {
		right: 1.5rem;
		bottom: 1rem;
		z-index: 10;
		text-shadow: .1em .1em .7rem rgba(0, 0, 0, 0.4);
	}


/*Contact
-------------------------------------------------------*/
	#contact-bnr {
		padding-top: 8rem;
	}
	#contact-bnr::before {
		height: 14rem;
		background-position: center bottom;
		background-size: auto 125%;
	}
	.contact-bnr {
		background-position: left center;
		background-size: auto 160%;
		display: block;
		padding: 3rem 2rem;
		height: auto;
		box-shadow: 0 .3rem 1rem rgba(0, 0, 0, 0.05);
	}
	.contact-bnr .btn {
		position: static;
	}
	.contact-bnr::before {
		width: 20rem;
		transform: none;
		top: -2rem;
		right: -2rem;
	}


	/* ================================================
		下層ページ
		================================================ */
	.page-ttl .container {
		padding-top: 7rem;
	}
	.page-ttl .container::before {
		width: 50rem;
		top: -28rem;
		left: -21rem;
	}
	.page-ttl .ttlBox h1 {
		font-size: 1.2rem;
	}
	.pankz {
		font-size: 1.1rem;
	}
	.pankz ol {
		display: flex;
		flex-wrap: nowrap;
		white-space: nowrap;
		overflow: auto;
	}
	.ttlImg figure {
		height: 12rem;
		margin-bottom: 5rem;
	}
	.ttlImg figure {
		height: 12rem;
	}

	/*privacy
	---------------------------------------------------------*/
	.sec-txt .container {
		padding-left: 0;
	}

	/*form
	---------------------------------------------------------*/
	.formBox {
		grid-template-columns: repeat(1,1fr);
		gap: 1rem
	}
	.formBox dt {
		justify-content: start;
		gap: 1rem;
	}
	.policyCheck {
		margin-top: 4rem;
	}
	.formBtn {
		gap: 1rem;
	}
	.formBtn div {
		flex-grow: 1;
	}
	.formWrap input[type="submit"],.formWrap input[type="button"] {
		width: 100%;
		min-width: auto;
		padding: 1.75rem;
		font-weight: 105%;
	}
	.btmTel {
		margin-top: 6rem;
		font-size: 1.4rem;
	}
	.telnum {
		font-size: 3.4rem;
	}
	.whBox {
		padding: 2rem;
	}
	.thxBox .txt-lh {
		text-align: left;
	}
	.file{
		display: block;
	}
	.file__name{
		margin-top: 0.5rem;
	}


	/*Business
	---------------------------------------------------------*/
	.totalsupport {
		padding-top: 8rem;
	}
	.totalsupport::before {
		right: 0;
	}
	.totalsupport::after {
		width: 30rem;
		left: -8rem;
	}
	.totalsupport h3 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
	.totalsupport figure {
		margin-top: 4rem;
		margin-right: -2rem;
	}
	.service .lead {
		display: block;
	}
	.service .lead .cont {
		padding: 4rem 0 0 2rem;
	}
	.service .lead .cont .eng {
    font-size: 2.4rem;
		margin-bottom: 2rem;
	}
	.service .lead .cont::before {
		bottom: -12rem;
		background-size: auto 150%;
	}
	.gallery-outer {
		margin-top: 4rem;
		-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
	}
	.gallery {
		gap: 1.5rem
	}
	.gallery li {
		width: 18rem;
	}
	.service-cont {
		margin-top: 5rem;
		padding: 2rem;
		gap: .5rem;
		grid-template-columns: repeat(1,1fr);
	}




.ourbisbox{
	margin-bottom: 4rem;
	display: block;
}

.ourbisbox ._img{
	flex: 1;
	margin-top: -2rem;;
}
.ourbiswrap .container:nth-child(odd) .ourbisbox ._img{
	margin-left: -2rem;
}
.ourbiswrap .container:nth-child(even) .ourbisbox ._img{
	margin-right: -2rem;
}


.ourbisbox ._cont{
	text-align: left;
	position: relative;
	padding: 4rem 0;
}


.ourbisbox ._cont ._num {
		margin-bottom: 1rem;
		text-align: center;
}
.ourbisbox ._cont ._num span{
	font-size: 1.2rem;
	display: block;
	margin:0 auto;
	text-align: center;
}
.ourbisbox ._cont ._num big{
	font-size: 8rem;
	line-height: .8;
	
}
.ourbisbox ._cont h2{
	font-size:3.6rem ;

	margin-bottom: 1rem;
}
.ourbisbox ._cont h3{
	font-size: 1.4rem;
	margin-bottom: 2rem;
	

}
.bislist li {
	font-size: 80%;
}
.ourbiscont01 {
	margin-bottom: 5rem;
	display: block;
}

.ourbiscont01 ._cont{
	margin-bottom: 3rem;
}
.ourbiscont01 ._img{
		
}
._ob05 .ourbiscont01 ._img{
	flex-basis: 40%;
}

.ourbiscont01 h3{
	font-size: 1.6rem;
	margin-bottom: 2rem;;
}
._ob05 .ourbiscont01 li,
._ob06 .ourbiscont01 li {
	margin: 1rem;
}
._ob06 .ourbiscont01 ul{
		display: block;
}





	/*Company info
	---------------------------------------------------------*/
	.company-info li a {
		flex-direction: column-reverse;
		gap: 0;
	}
	.company-info li a .cont {
		width: 100%;
		padding: 2rem;
	}
	.company-info li a .thumb {
		width: 100%;
		aspect-ratio: 16/9;
	}

	/*Profile
	---------------------------------------------------------*/
	#message {
		padding-bottom: 25rem;
	}
	#message::before {
		height: 30rem;
	}
	.message {
		display: block;
	}
	.message .cont h3 {
		font-size: 2.2rem;
		margin: 0 0 2rem 0;
	}
	.president {
		width: 100%;
		margin: 6rem auto 0;
	}
	#profile {
		margin-top: -15rem;
	}
	.profile {
		padding: 2rem;
	}
	.profile dl {
		font-size: 90%;
		grid-template-columns: 9rem 1fr;
	}
	.profile dt,
	.profile dd {
		padding: 1rem;
	}
	.group li {
		padding: 2rem;
		grid-template-columns: repeat(1,1fr);
	}
	.group li h3 img {
		display: block;
		margin: 0 auto;
		max-height: 5.5rem;
	}

	/*History
	---------------------------------------------------------*/
	.historyLead {
		flex-direction: column;
		padding-top: 8rem;
		margin-bottom: 8rem;
	}
	.historyLead::before {
		right: 0;
	}
	.historyLead::after {
		width: 30rem;
		left: -8rem;
	}
	.historyLead .box {
		padding-top: 0;
	}
	.historyLead h2 {
		font-size: 2rem;
	}
	.historyLead .thumb {
		width: auto;
		margin-top: 4rem;
		margin-right: -2rem;
	}
	.histroy {
		padding: 3rem 2rem;
		background: var(--c_wh);
	}
	.histroy dl {
		display: block;
	}
	.histroy dt {
		font-size: 3rem;
		padding-left: 3rem;
		margin-bottom: 1rem;
	}
	.histroy dl:not(:first-of-type) {
		margin-top: 3rem;
	}
	.histroy dl:last-of-type dt::before {
		bottom: -10rem;
	}
	.histroy dd {
		padding-left: 3rem;
	}

	/*Initiatives
	---------------------------------------------------------*/
	.initiativesLead {
		flex-direction: column-reverse;
		padding: 4rem 0;
		margin-bottom: 8rem;
	}
	.initiativesLead::before {
		left: -2rem;
	}
	.initiativesLead .thumb {
		width: 100%;
		margin: 0 auto 3rem;
	}
	.initiativesLead .box {
		padding: 0;
	}
	.initiatives li {
		display: block;
	}
	.initiatives li:not(:first-of-type) {
    padding-top: 5rem;
    margin-top: 5rem;
	}
	.initiatives li figure {
		width: 100%;
		margin-bottom: 3rem;
	}
	.initiatives li h4 {
		font-size: 1.8rem;
		margin: 3rem 0 1rem;
	}
	.initiatives li .box .img {
		margin: 3rem 0;
	}
	.iso dt {
    grid-template-columns: 8rem 1fr;
	}


	/*SDGs
	---------------------------------------------------------*/
	.sdgsLead {
		display: block;
		margin-bottom: 8rem;
	}
	.sdgsLead figure {
		width: 100%;
		margin: 0 auto 3rem;
	}
	.sdgsLead .box h2 {
		margin-bottom: 2rem;
	}
	.sdgsLead .box h3 {
		font-size: 2rem;
	}
	.sdgs .wrap {
		display: block;
		padding: 4rem 0;
	}
	.sdgs .wrap:not(:first-of-type) {
		margin-top: 8rem;
	}
	.sdgs .wrap::before {
		left: calc(-50vw + 50%);
		top: 10rem;
	}
	.sdgs .wrap::after {
		left: -2rem;
		right: 30%;
	}
	.sdgs .wrap:nth-of-type(even)::before {
		right: calc(-50vw + 50%);
	}
	.sdgs .wrap:nth-of-type(even)::after {
		right: -2rem;
		left: 30%;
	}
	.sdgs .wrap figure {
		width: 100%;
		margin-bottom: 3rem;
	}
	.numTtl {
		margin-bottom: 2rem;
	}

	
	/*Philosophy
	---------------------------------------------------------*/	
	#philosophy01 {
		padding-top: 10rem;
	}
	.philosophy {
		min-height: auto;
		padding: 25vh 0;
	}
	.philosophy01 h3 {
		font-size: 3rem;
		margin: 8rem 0 4rem;
	}
	.philosophy01 h4 {
		margin-bottom: 10rem;
	}
	.philosophy01 .txt-lh {
		text-align: left;
	}
	.philosophy02 h3._catch{
		margin-top: 8rem;
		font-size: 4rem;
	}
	.philosophy03 dl {
		grid-template-columns: repeat(1,1fr);
	}



.mane_phibox {
		display: block;
		margin-top: 0;
}
.mane_phibox .philosophy03 {
  margin-top: 5rem;
}

 .mane_phibox > h3._catch {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    opacity: 1 !important;
  }

  .catch-placeholder {
    display: none !important;
  }


  
#philosophy05{
	padding-top: 40vh;
}
.flowtxt{
  padding: 6rem 0 2rem;
}

.flowtxt-track span{
  font-size: 5rem;
  padding-right: 3rem;
}




/*recruit
-------------------------------------------------------*/
.recruit-wrapper{
	&::before {
		content: '';
		top: -2%;
		bottom: auto;
    left: -53%;
		width: 147%;
	}
	&::after {
		bottom: 29%;
		left: 50%;
		width: 36%;
	}
}
.recruit__title-area{
	h1{
		font-size: 1.4rem;
	}
}
.recruit__title{
	font-size: 6rem;
}
.recruit__item{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 56%;
	z-index: -1;
}
.recruit-interview{
	padding: 6rem 0;
}
.recruit-interview__contents{
	gap: 16vw;
}

.recruit-interview__content-item{
	width: 52vw;
}
.recruit-interview__content-image{
	&::before {
		top: -19%;
		left: -17%;
		width: 71vw;
	}
	>img{
  	aspect-ratio: 3 / 2;
		object-fit: cover;
	}
}
.recruit-interview__content-image.--02{
	>img{
		object-position: left;
	}
}
.recruit-interview__content-text{
	width: 49vw;
}
.recruit-interview__content-text.--02{
	width: 44vw;
}
.recruit-interview__content-number{
	font-size: 13px;
}
.recruit-interview__content-name{
	bottom: 0;
	right: 8vw;
	font-size: 12px;
}
.recruit-interview__info{
	display: block;
}
.recruit-interview__parts{
	gap: 50px;
	margin-top: 50px;
}
.recruit-interview__parts-item{
	margin-top: 20px;
}
.recruit-interview__info-question-number{
	flex: 1;
}
.recruit-interview__info-question-text{
	flex: 80%;
}
.recruit-interview__info-question-area{
	width: 100%;
}
.recruit-interview__info-question-catch{
	margin-top: 1.4rem;
	font-size: 18px;
}
.recruit-interview__info-answer{
	margin-top: 2.4rem;
}
.recruit-interview__parts-items{
	display: block;
}
.recruit-interview__parts-image{
	width: 100%;
}


.recruit-entry__wrap{
	padding: 2.4rem;
}


.jobinfowrap{
	display: block;
}

.recruit-jobinfo {
    
}
.jobinfoside{
	
}
.jobinfocont{
	
}
.jobinfonavi{
	position: relative;
	top: auto;
	margin-bottom: 2rem;
}

.jobinfonavi li .is-active{
	color: #000;
}
.jobinfocont h3{
	font-size: 1.8rem;
}
.table01{
	margin-bottom: 2rem;
	
}
.table01 th,
.table01 td{
	padding: 1rem;
	font-size: 80%;
}
.table01 th{
	width: 25%;
}
.jobinfocont ._btncase{
		margin-bottom: 4rem;
}





}
