@charset "utf-8";
/* /recruit/fresh/common/css/header_footer.css */

/* =================
header
================= */
.Header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	width: 100%;
	height: 80px;
}

.Nav__wrap {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    background: white;
}

.Navbtn--box {
	display: flex;
	justify-content: center;
	align-items: center;
}

.Navbtn--box h1 {
	padding-left: 1.5rem;
}

.Navbtn--box h1 a {
	display: flex;
	flex-direction: column;
}

.Navbtn--box h1 a img {
	width: 113px;
	height: 46px;
}

.Navbtn--box h1 a span {
	font-size: 1.3rem;
	color: #5a5a5a;
	text-align: right;
	font-weight: 500;
	margin-top: 1%;
}

.Group__header {
	margin-left: auto;
	display: flex;
	justify-content: space-between;
}

.Block__header {
	display: flex;
	justify-content: space-between;
	height: 100%;
}

.Block__header li.Parent {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 20px;
	cursor: pointer;
}

/* .Block__header li.Parent:hover::after {
	transform: scaleX(1);
} */

.Block__header li.Parent span {
	transition: color 0.5s;
}

.Block__header li.Parent:hover span {
	color: #287a86;
}

.Block__header li.Parent:hover .Hv--target {
	opacity: 1;
	transform: translate(-50%, 0);
	pointer-events: visible;
}

.Block__header .Hv--target {
	pointer-events: none;
	opacity: 0;
	position: absolute;
	z-index: 5;
	top: 70px;
	left: 50%;
	transform: translate(-50%, 10px);
	transition: 0.4s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
	padding-top: 20px;
}

.Block__header .Hv--target ul {
	background-color: #fff;
	border-radius: 16px;
	font-weight: 400;
	white-space: nowrap;
	padding: 25px 30px;
}

.Block__header .Hv--target ul.Nav--col2 {
	display: flex;
	flex-wrap: wrap;
	width: 620px;
}

.Nav--col2 .Nav--text:first-child {
	width: 100%;
	font-size: 1.6rem;
}

.Nav--col2 .Nav--text {
	width: calc(100% / 2);
}

.Nav--text {
	padding: 10px 0;
	font-size: 1.4rem;
	transition: opacity 0.5s;
}

.Nav--text:hover {
	opacity: 0.5;
}

.Nav--link {
	position: relative;
	padding-left: 30px;
}

.Nav--link::before,
.Nav--link::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
}

.Nav--link::before {
	left: 0;
	transform: translateY(-50%);
	background-color: var(--bgcolor);
	border-radius: 50%;
	width: 1.8rem;
	height: 1.8rem;
}

.Nav--link::after {
	top: 50%;
	left: 6px;
	width: 4px;
	height: 4px;
	border-top: 1px solid rgba(255, 255, 255, 1);
	border-right: 1px solid rgba(255, 255, 255, 1);
	transform: translateY(-50%) rotate(45deg);
}

.Btn--entry {
	background-color: #ff8600;
	display: flex;
	align-items: center;
	height: 100%;
	font-size: 1.8rem;
	color: #fff;
	cursor: pointer;
  transition: 0.15s ease-in-out;
}

@media (any-hover: hover) {
  .Btn--entry:hover {
    background-color: #e45b00;
  }
}

.Entry__link {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	padding: 0 50px;
}

/* モーダル */
.mfp-entry .mfp-container {
	padding: 0 calc((100% - 38.28%) / 2);
}

.mfp-entry .mfp-content {
	background-color: #fff;
	border-radius: 40px;
	/* width: 76.56%; */
}

#modal01,#modal02,#modal03,#modal04,#modal05,#modal06,#modal07{
	padding: 80px;
}

#entry-wrap {
	padding: 60px;
}

#entry-wrap .subttl {
	font-size: 2rem;
	margin-bottom: 20px;
}

#entry-wrap .subttl02 {
	margin-top: 5%;
}


.Modal__items {
	display: flex;
	justify-content: space-between;
	column-gap: 32px;
}

.Modal__item {
	display: flex;
	width: 100%;
}

.my2026,.my2025 {
	width: 50%;
}

.Modal__item_min {
	display: flex;
	width: 50%;
}

.flex_min {
	display: flex;
	justify-content: space-between;
	column-gap: 16px;
}

.Modal__link {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border: solid 3px var(--bgcolor);
	border-radius: 16px;
	width: 100%;
	font-size: 2rem;
	color: var(--bgcolor);
	text-align: center;
	padding: 20px 24px;
	transition: background-color 0.5s, color 0.5s;
}

.Modal__link:hover {
	background-color: var(--bgcolor);
	color: #fff;
}

.Modal__link::before,
.Modal__link::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transition: background-color 0.5s, border 0.5s;
}

.Modal__link::before {
	right: 10px;
	transform: translateY(-50%);
	background-color: var(--bgcolor);
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
}

.Modal__link::after {
	top: 50%;
	right: 18px;
	width: 6px;
	height: 6px;
	border-top: 1px solid rgba(255, 255, 255, 1);
	border-right: 1px solid rgba(255, 255, 255, 1);
	transform: translateY(-50%) rotate(45deg);
}

.Modal__link:hover::before {
	background-color: #fff;
}

.Modal__link:hover::after {
	border-top: 1px solid var(--bgcolor);
	border-right: 1px solid var(--bgcolor);
}




.Modal__link_b {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border: solid 3px #0898d8;
	border-radius: 16px;
	width: 100%;
	font-size: 2rem;
	color: #0898d8;
	text-align: center;
	padding: 20px 24px;
	transition: background-color 0.5s, color 0.5s;
}

.Modal__link_b:hover {
	background-color: #0898d8;
	color: #fff;
}

.Modal__link_b::before,
.Modal__link_b::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transition: background-color 0.5s, border 0.5s;
}

.Modal__link_b::before {
	right: 10px;
	transform: translateY(-50%);
	background-color: #0898d8;
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
}

.Modal__link_b::after {
	top: 50%;
	right: 18px;
	width: 6px;
	height: 6px;
	border-top: 1px solid rgba(255, 255, 255, 1);
	border-right: 1px solid rgba(255, 255, 255, 1);
	transform: translateY(-50%) rotate(45deg);
}

.Modal__link_b:hover::before {
	background-color: #fff;
}

.Modal__link_b:hover::after {
	border-top: 1px solid #0898d8;
	border-right: 1px solid #0898d8;
}

.site {
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
	margin-top: 10px;
}

button.mfp-close {
	border: solid 2px #fff !important;
	border-radius: 50%;
	top: -60px;
	transform: rotate(45deg);
	opacity: 1;
}

.mfp-close:active {
	top: -60px;
}

.mfp-close::before,
.mfp-close::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background: #fff;
	border: none;
}

.mfp-close::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.mfp-close::after {
	transform: translate(-50%, -50%);
}

.popup-modal-dismiss {
	text-align: center;
    margin: 80px auto 0;
    width: 34.95%;
    display: block;
}

.popup-modal-dismiss a {
	position: relative;
    display: block;
    width: 100%;
    background-color: #dbdbdb;
    border-radius: 100px;
    font-weight: 400;
    margin: 0 auto;
    padding: 10px 0;
}

.popup-modal-dismiss a::before,
.popup-modal-dismiss a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 30px;
	width: 18px;
	height: 2px;
	background: #000;
	border: none;
}

.popup-modal-dismiss a::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.popup-modal-dismiss a::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* =================
footer
================= */
footer {
	/* position: relative; */
	background-image: url(../images/bg--footer.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	padding: 200px 0 80px;
}

/* footer::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	bottom: 0;
	left: 0;
	background-color: #ECF1F2;
	width: 100%;
	height: 50vh;
	z-index: -1;
} */

.Footer__inner {
	width: 1024px;
	margin: 0 auto;
}

.Footer--top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.Footer--logo {
	background-color: #fff;
	width: 174px;
	height: auto;
	margin-right: 50px;
	padding: 10px 5px 5px 5px;
}

.Footer--logo a {
	display: flex;
	flex-direction: column;
}

.Footer--logo a span {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	color: #232323;
	text-align: center;
	margin-top: 5px;
	background-color: rgba(0, 0, 0, 0.05);
}

.Footer--logo img {
	width: 164px;
	height: 66px;
	object-fit: contain;
}

.Footer__cst {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 40px;
	grid-row-gap: 40px;
}

.Footer__cst--exception {
	grid-area: 1 / 2 / 2 / 4;
}

.Footer__cst--item {
	font-size: 1.4rem;
	font-weight: 400;
}

.Footer__cst--item:last-child ul:first-of-type {
	margin-bottom: 30px;
}

.Heading__h3--footer {
	font-size: 1.8rem;
	font-weight: 700;
}

.Heading__h3--footer a {
	display: block;
	transition: color 0.5s;
}

.Heading__h3--footer a:hover {
	color: #287a86;
}

.Heading__h3--footer + ul {
	margin-top: 8px;
}

.Heading__h3--footer + ul li a {
	position: relative;
	display: block;
	padding: 8px 0 8px 20px;
	transition: color 0.5s;
}

.Heading__h3--footer + ul li a::before,
.Heading__h3--footer + ul li a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
}

.Heading__h3--footer + ul li a::before {
	left: 0;
	transform: translateY(-50%);
	background-color: var(--bgcolor);
	border-radius: 50%;
	width: 1.4rem;
	height: 1.4rem;
}

.Heading__h3--footer + ul li a::after {
	top: 50%;
	left: 4px;
	width: 4px;
	height: 4px;
	border-top: 1px solid rgba(255, 255, 255, 1);
	border-right: 1px solid rgba(255, 255, 255, 1);
	transform: translateY(-50%) rotate(45deg);
}
.Heading__h3--footer + ul li a:hover {
	color: #287a86;
}

.Footer__cst--exception .Heading__h3--footer + ul {
	display: flex;
	flex-wrap: wrap;
	grid-column-gap: 26px;
}

.Footer__cst--exception .Heading__h3--footer + ul li {
	width: 48%;
}
/*
.Footer__cst--exception .Heading__h3--footer + ul li:nth-child(even) {
	padding-left: 20px;
}*/

.Footer__cst--item .Nav--link {
	letter-spacing: 0;
}

.Footer__cst--item .Nav--link span {
	font-size: 11px;
	letter-spacing: 0;
}

.Footer--bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.Footer--bottom .Footer__sns {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
	justify-content: flex-end;
}

.Footer--bottom .Footer__sns dt {
	width: 100%;
	font-size: 1.4rem;
	font-weight: 400;
	text-align: right;
}

.Footer--bottom .Footer__sns dd:not(:last-child) {
	margin-right: 10px;
}

.Footer--bottom .Footer__sns dd a {
	transition: opacity 0.5s;
}

.Footer--bottom .Footer__sns dd a:hover {
	opacity: 0.7;
}

.Footer--bottom .Copy {
	font-size: 1.2rem;
	font-weight: 400;
	text-align: right;
}

@media screen and (max-width: 1023px) {
	/* =================
	footer
	================= */
	.Footer__inner {
		width: 100%;
		padding: 0 1.5rem;
	}

	/* .More__item {
		width: calc((100% / 2) - (1.5rem / 2));
	} */
}

@media screen and (max-width: 959px) {
	/* =================
	header
	================= */
	.Header__inner {
		height: 60px;
	}

	.Navbtn--box h1 {
		padding-left: 0.5rem;
	}

	.Navbtn--box h1 a img {
		width: 88px;
		height: 36px;
	}

	.Nav__wrap {
		height: 60px;
	}

	.Navbtn--box {
		justify-content: space-between;
		width: 100%;
	}

	/*トグルボタン*/
	.NavToggleBtn {
		display: block;
		background-color: var(--bgcolor);
		width: 60px;
		height: 100%;
		cursor: pointer;
	}

	.NavToggleBtn_line {
		display: block;
		position: relative;
		width: 26px;
		height: 1px;
		background: #fff;
		margin-top: 30px;
		margin-left: calc(34px / 2);
		transition: background 0.3s, transform 0.3s;
	}

	.NavToggleBtn_line::before,
	.NavToggleBtn_line::after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		width: 100%;
		height: 100%;
		background: #fff;
		transition: transform 0.3s;
	}

	.NavToggleBtn_line::before {
		top: -9px;
	}

	.NavToggleBtn_line::after {
		bottom: -9px;
	}

	.navOpen .NavToggleBtn_line {
		background: transParent;
		transform: rotate(180deg);
	}

	.navOpen .NavToggleBtn_line::before {
		transform: translateY(9px) rotate(45deg);
	}

	.navOpen .NavToggleBtn_line::after {
		transform: translateY(-9px) rotate(-45deg);
	}
	/*end_トグルボタン*/

	.Group__header {
		display: none;
		overflow: auto;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		height: 100vh;
		padding-bottom: 200px;
		background: #fff;
	}

	.Block__header {
		flex-direction: column;
		border-bottom: solid 1px#999;
		margin: 0 2.5%;
		margin-top: 3%;
	}

	.navOpen .Group__header {
		display: block;
		animation: navOpen 0.3s linear 0s;
	}

	@keyframes navOpen {
		from {
			opacity: 0;
		}
		to {
			opacity: 1;
		}
	}

	.Block__entry {
		height: 100%;
		margin-left: auto;
	}

	.Entry__link {
		padding: 0 30px;
	}

	/*アコーディオン+-ボタン*/
	.nav_link {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		padding: 5% 0;
		font-size: 1.8rem;
		-webkit-text-size-adjust: 100%;
	}

	.nav_link_acBtn::before,
	.nav_link_acBtn::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		width: 14px;
		height: 2px;
		background: var(--bgcolor);
		border: none;
		transform: translateY(-50%) rotate(0);
	}

	.nav_link_acBtn::before {
		transform: translateY(-1px) rotate(90deg);
		transition: transform 0.3s;
	}

	.nav_link_acBtn.open::before {
		transform: translateY(-1px) rotate(0);
	}
	/*end_アコーディオン+-ボタン*/

	.nav_item:not(:first-of-type) {
		border-top: solid 1px#999;
	}

	.nav_child {
		display: none;
	}

	.nav_child ul {
		margin-bottom: 2.5%;
	}

	.Nav--link {
		display: block;
		transition: color 0.5s;
	}

	.Nav--link:active {
		color: #287a86;
	}

	.Nav--link__text {
		position: relative;
		display: block;
		width: 100%;
		padding: 5% 0;
		transition: color 0.5s;
	}

	.Nav--link__text:active {
		color: #287a86;
	}

	.Nav--link__text::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 5px;
		width: 10px;
		height: 10px;
		border-top: 2px solid var(--bgcolor);
		border-right: 2px solid var(--bgcolor);
		transform: translateY(-50%) rotate(45deg);
	}

	.Nav--close {
		position: relative;
		display: block;
		width: 40.13%;
		background-color: #dbdbdb;
		border-radius: 100px;
		font-weight: 400;
		text-align: center;
		margin: 60px auto 0;
		padding: 10px 0 10px 20px;
	}

	.Nav--close::before,
	.Nav--close::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 25px;
		width: 14px;
		height: 2px;
		background: #000;
		border: none;
	}

	.Nav--close::before {
		transform: translate(-50%, -50%) rotate(45deg);
	}

	.Nav--close::after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	/* モーダル */
	.Modal__items {
		flex-direction: column;
		row-gap: 24px;
		column-gap: 0;
	}

	.mfp-entry .mfp-container {
    padding: 0 calc((100% - 83.56%) / 2);
}


	.Modal__link {
		font-size: 1.6rem;
		justify-content: left;
		padding: 20px;
	}

	.Modal__link:active {
		background-color: var(--bgcolor);
		color: #fff;
	}

	.Modal__link:active::before {
		background-color: #fff;
	}

	.Modal__link:active::after {
		border-top: 1px solid var(--bgcolor);
		border-right: 1px solid var(--bgcolor);
	}

	.popup-modal-dismiss {
		margin-top: 40px;
		width: 61.95%;
	}

	.popup-modal-dismiss a {
		width: 100%;
	}

	/* =================
	footer
	================= */
	footer {
		padding: 58px 0 50px;
		background-image: url(../images/bg--footer_sp.svg);
	}

	/* footer::after {
		height: 50vh;
	} */

	.Footer__inner {
		width: 100%;
		padding: 0 1.5rem;
	}

	.Footer--top {
		flex-direction: column;
	}

	.Footer--logo {
		width: 108px;
		height: auto;
	}

	.Footer--logo img {
		width: 98px;
		height: 39px;
	}

	.Footer__cst {
		display: block;
		margin-top: 37px;
	}

	.Heading__h3--footer {
		padding: 10px 0;
	}

	.Footer__cst--item ul {
		display: none;
	}

	.Footer__cst--exception .Heading__h3--footer + ul {
		display: none;
	}

	.Footer--bottom {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 25px;
	}

	.snscp_wrap {
		margin: 0 auto;
		margin-top: 30px;
	}

	.Footer--bottom .Footer__sns {
		justify-content: center;
		text-align: center;
	}
	.Footer--bottom .Footer__sns dt {
		text-align: center;
	}

	.Footer--bottom .Copy {
		text-align: center;
		margin-top: 32px;
	}

	#entry-wrap,#modal01,#modal02,#modal03,#modal04,#modal05,#modal06,#modal07{
	padding: 24px;
}

	.my2026,.my2025 {
	width: 100%;
}

}

