/* ======================================================

	base

====================================================== */
html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--fontZenkakuGothicNew);
	overflow-x: hidden;
	width: 100%;
}

p, a {
	font-weight: 500;
}

a {
	color: var(--colorBlack);
	transition: 0.3s;
}

a:hover {
	opacity: 0.6;
}

.container1660 {
	margin-inline: auto;
	max-width: calc(1660px + 3.75rem);
	padding-inline: 1.875rem;
	width: 100%;
}

.container1200 {
	margin-inline: auto;
	max-width: calc(1200px + 3.75rem);
	padding-inline: 1.875rem;
	width: 100%;
}

.container1050 {
	margin-inline: auto;
	max-width: calc(1050px + 3.75rem);
	padding-inline: 1.875rem;
	width: 100%;
}

.container1020 {
	margin-inline: auto;
	max-width: calc(1020px + 3.75rem);
	padding-inline: 1.875rem;
	width: 100%;
}


.container1040 {
	margin-inline: auto;
	max-width: calc(1040px + 3.75rem);
	padding-inline: 1.875rem;
	width: 100%;
}

.container1000 {
	margin-inline: auto;
	max-width: calc(1000px + 3.75rem);
	padding-inline: 1.875rem;
	width: 100%;
}

.for-sp {
	display: none;
}

.main {
	padding-top: 6.8125rem;
}


@media screen and (max-width:743px) {
	.main {
		padding-top: 3.5rem;
	}

	.for-pc {
		display: none;
	}

	.for-sp {
		display: block;
	}
}

/* ======================================================

	header

====================================================== */
.header {
	background: var(--colorWhite);
	border-bottom: 0.0625rem solid var(--colorGray300);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.header__container {
	align-items: center;
	display: flex;
	height: 6.8125rem;
	justify-content: space-between;
	padding-inline: 2.8rem 2rem;
}

.header__logo {
	max-width: 21.3rem;
	width: 100%;
}

.header__column {
	align-items: center;
	display: flex;
	gap: 2rem;
}

.headerRecruit {
	align-items: center;
	background: var(--colorMain);
	border: 0.0625rem solid var(--colorMain);
	border-radius: 2.5rem;
	color: var(--colorWhite);
	display: flex;
	font-size: 1.125rem;
	font-weight: 700;
	height: 2.8rem;
	letter-spacing: 0.2rem;
	padding-inline: 2rem;
	transition: 0.3s;
}

.headerRecruit:hover {
	background: var(--colorWhite);
	color: var(--colorMain);
	cursor: pointer;
}

.headerRecruit__modal {
	background: var(--colorMain);
	border-radius: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1.84rem;
	max-width: 22.4rem;
	opacity: 0;
	padding: 2.5rem 1rem 2.5rem 2.5rem;
	pointer-events: none;
	position: absolute;
	right: 5.8rem;
	top: 8.625rem;
	transition: 0.3s;
	width: 100%;
}

.headerRecruit__inner.is-modal-open .headerRecruit__modal {
	opacity: 1;
	pointer-events: all;
}

.headerRecruit__inner.is-modal-open .headerRecruit {
	background: var(--colorWhite);
	color: var(--colorMain);
}

.headerRecruit__modalLink {
	align-items: center;
	color: var(--colorWhite);
	display: flex;
	font-size: 1.25rem;
	font-weight: 500;
	gap: 1rem;
	letter-spacing: 0.017rem;
}

.headerRecruit__modalLink::after {
	border: 0.15rem solid currentColor;
	border-bottom: 0;
	border-left: 0;
	box-sizing: border-box;
	color: var(--colorWhite);
	content: "";
	display: inline-block;
	height: 0.7rem;
	line-height: 1;
	transform: translateX(-25%) rotate(45deg);
	vertical-align: middle;
	width: 0.7rem;
}

.headerToggle {
	background: var(--colorWhite);
	border: none;
	cursor: pointer;
	display: block;
	height: 60px;
	position: relative;
	width: 60px;
	z-index: 999;
}

.headerToggle span {
	background: var(--colorMain);
	height: 2px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 50%;
	transition: 0.3s;
	width: 30px;
}

.headerToggle span:nth-of-type(1) {
	top: 36%;
}

.headerToggle span:nth-of-type(3) {
	top: 64%;
}

.is-active .headerToggle span:nth-of-type(1) {
	top: 50%;
	transform: rotate(45deg);
}

.is-active .headerToggle span:nth-of-type(2) {
	display: none;
}

.is-active .headerToggle span:nth-of-type(3) {
	top: 50%;
	transform: rotate(-45deg);
}

.toggleMenu {
	background: var(--colorLightGreen);
	display: block;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 900;
}

.toggleMenu__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.toggleMenu__nav {
	font-size: 18px;
	font-weight: 500;
}

.toggleMenu__nav li {
	text-align: center;
}

.toggleMenu__nav li:nth-child(n + 2) {
	margin-top: 32px;
}

.toggleMenu__nav li a {
	color: #fff;
}

.toggleMenu__button {
	margin-top: 48px;
}

.headerHumberger {
	background: var(--colorWhite);
	border: 0.0625rem solid var(--colorGray300);
	border-radius: 20px;
	display: block;
	height: auto;
	max-width: 22rem;
	opacity: 0;
	padding: 2.68rem 2.5rem;
	pointer-events: none;
	position: fixed;
	right: 2rem;
	top: 8.625rem;
	transition: 0.3s;
	width: 100%;
	z-index: 1;
}

.headerHumberger.open {
	opacity: 1;
	pointer-events: auto;
}


.headerHumberger ul {
	align-items: start;
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	height: 100%;
	justify-content: center;
	padding: 0;
}

.headerHumberger li {
	align-items: center;
	display: flex;
	gap: 1rem;
	margin: 0;
	padding: 0;
}

.headerHumberger li a {
	position: relative;
}

.headerHumberger li a::after, .headerHumbergerList__menu a::after {
	border: 0.15rem solid currentColor;
	border-bottom: 0;
	border-left: 0;
	box-sizing: border-box;
	color: var(--colorMain);
	content: "";
	display: inline-block;
	height: 0.7rem;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateX(50%) translateY(-50%) rotate(45deg);
	transition: 0.3s;
	vertical-align: middle;
	width: 0.7rem;
}

.headerHumbergerList__menu details summary {
	color: var(--colorBlack);
	cursor: pointer;
	display: inline-block;
	font-size: 1.25rem;
	font-weight: 500;
	list-style: none;
	position: relative;
}

.headerHumbergerList__menu details summary::after {
	color: var(--colorMain);
	content: "＋";
	font-weight: 700;
	padding-left: 0.4rem;
	position: absolute;
}

.headerHumbergerList__menu details[open] summary::after {
	content: "－";
}

.headerHumbergerList__menu p {
	padding-left: 0.6rem;
	padding-top: 1rem;
}

.headerHumberger li a:hover::after {
	transform: translateX(75%) translateY(-50%) rotate(45deg);
}

.headerHumbergerList__menu details summary:hover {
	opacity: 0.6;
}

.headerHumbergerList__menu details summary:hover::after {
	transform: translateX(12%);
	transition: 0.3s;
}

.headerHumberger li span {
	color: #333;
	font-size: 15px;
}

.headerHumberger li a, .headerHumberger li span {
	color: var(--colorBlack);
	display: block;
	font-size: 1.25rem;
	font-weight: 500;
}

@media screen and (max-width: 743px) {
	.header__container {
		height: auto;
		padding-inline: 1.25rem 0.5rem;
	}

	.header__logo {
		max-width: 11.375rem;
	}

	.header__column {
		gap: 0;
	}

	.headerRecruit {
		font-size: 1rem;
		height: 1.81rem;
		justify-content: center;
		letter-spacing: 0;
		padding: 0;
		width: 5.875rem;
	}

	.headerRecruit__modal {
		max-width: 17.125rem;
		padding: 1.375rem 1rem 1.06rem 1.56rem;
		right: 2rem;
		top: 5.15rem;
	}

	.headerRecruit__modalLink {
		font-size: 1rem;
		gap: 0.2rem;
	}

	.headerToggle {
		height: 3.5rem;
		width: 3rem;
	}

	.headerHumberger {
		max-width: 18rem;
		padding: 1.8rem 1rem 1.65rem 1.625rem;
		right: 1.5rem;
		top: 5.15rem;
	}

	.headerHumberger ul {
		gap: 0.93rem;
	}

	.headerHumberger li {
		gap: 0.3rem;
	}

	.headerHumberger li::after {
		height: 0.6rem;
		width: 0.6rem;
	}

	.headerHumberger li a, .headerHumberger li span {
		font-size: 1.125rem;
	}
}


/* ======================================================

	footer

====================================================== */
.footerRecruit {
	background: var(--colorMain);
	border-radius: 1.25rem;
	color: var(--colorWhite);
	display: grid;
	gap: 1rem;
	grid-template-columns: auto 32rem;
	padding: 4.5rem 5rem;
}

.footerRecruit__hgroup p {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.footerRecruit__hgroup h3 {
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.5;
	margin-top: 0.125rem;
}

.footerRecruit__text {
	font-size: 1.125rem;
	line-height: 1.9;
	margin-top: 1.25rem;
}

.footerRecruit__right {
	display: grid;
	gap: 1.5rem;
}

.footerRecruit__link {
	align-items: center;
	background: var(--colorWhite);
	border-radius: 0.5rem;
	color: var(--colorMain);
	display: flex;
	font-size: 1.25rem;
	font-weight: 700;
	height: 5rem;
	justify-content: space-between;
	line-height: 1.35;
	padding-inline: 2rem;
}

.footerRecruit__link span {
	background: var(--colorMain);
	border-radius: 50%;
	height: 2.5rem;
	position: relative;
	width: 2.5rem;
}

.footerRecruit__link span::after {
	border: 0.15rem solid currentColor;
	border-bottom: 0;
	border-left: 0;
	box-sizing: border-box;
	color: var(--colorWhite);
	content: "";
	display: inline-block;
	height: 0.7rem;
	left: 35%;
	line-height: 1;
	position: absolute;
	top: 65%;
	transform: translateY(-50%) translateY(-50%) rotate(45deg);
	vertical-align: middle;
	width: 0.7rem;
}

.externalLink__column {
	align-items: center;
	border-block: 0.0625rem solid var(--colorGray200);
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 8.375rem;
}

.externalLink {
	align-items: center;
	color: var(--colorBlack);
	display: flex;
	font-weight: 500;
	gap: 2rem;
	height: 6.5rem;
	letter-spacing: 0.018em;
	line-height: 1.6;
	padding-inline: 3.4rem;
}

.externalLink:nth-child(1) {
	justify-content: flex-end;
	position: relative;
}

.externalLink:nth-child(1)::before {
	background: var(--colorGray200);
	content: "";
	height: 3rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.0625rem;
}

.footer__column {
	display: flex;
	justify-content: space-between;
	padding-block: 3.75rem 2.75rem;
}

.footer__logo {
	max-width: 16rem;
	width: 100%;
}

.footerNav {
	align-items: flex-start;
	display: flex;
	gap: 2.75rem;
}

.footerNav__list {
	display: grid;
	gap: 1rem;
}

.footerNav__list a {
	color: var(--colorBlack);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.017em;
}

.footer__copyrightWrap {
	border-top: 0.0625rem solid var(--colorGray200);
	display: flex;
	justify-content: space-between;
	padding-block: 1.8rem 3.56rem;
}

.footer__copyright {
	color: var(--colorGray700);
	font-size: 1rem;
	letter-spacing: 0.0375em;
}

.footer__pageTop {
	color: var(--colorBlack);
	display: flex;
	font-size: 1rem;
	font-weight: 600;
	gap: 0.5rem;
	position: relative;
}

.footerRecruit {
	grid-template-columns: auto 47.75rem;
}

.container1200:has(.footerRecruit) {
	max-width: calc(100vw - 11.25rem);
}

@media screen and (max-width:1440px) {
	.container1200:has(.footerRecruit) {
		max-width: calc(1200px + 3.75rem);
	}

	.footerRecruit {
		grid-template-columns: auto 32rem;
	}
}

@media screen and (max-width:1023px) {
	.footerRecruit {
		padding-right: 2.18rem;
	}

	.footerRecruit {
		grid-template-columns: auto 60%;
	}
}

@media screen and (max-width:743px) {
	.footerRecruit {
		border-radius: 0.75rem;
		grid-template-columns: 1fr;
		padding: 0.75rem 1.25rem 1rem;
	}

	.footerRecruit__hgroup p {
		font-size: 0.93rem;
	}

	.footerRecruit__hgroup h3 {
		font-size: 2rem;
		letter-spacing: 0.13875em;
		line-height: 1.3;
	}

	.footerRecruit__text {
		font-size: 0.875rem;
		line-height: 1.46;
		margin-top: 0.55rem;
	}

	.footerRecruit__right {
		gap: 0.5rem;
	}

	.footerRecruit__link {
		font-size: 0.875rem;
		height: 3.125rem;
		margin-inline: auto;
		max-width: 20rem;
		padding-inline: 1.69rem 0.625rem;
		width: 100%;
	}

	.footerRecruit__link span {
		height: 2rem;
		width: 2rem;
	}

	.footerRecruit__link span::after {
		height: 0.5rem;
		left: 30%;
		top: 62%;
		width: 0.5rem;
	}

	.externalLink__column {
		grid-template-columns: 1fr;
		justify-content: center;
		margin-top: 3.1875rem;
	}

	.externalLink {
		font-size: 0.93rem;
		gap: 1rem;
		height: 4.5rem;
		justify-content: space-between;
		padding-inline: 0;
		padding-inline: 1.3125rem 1.125rem;
	}

	.externalLink:nth-child(1) {
		border-bottom: 0.0625rem solid var(--colorGray200);
		justify-content: space-between;
	}

	.externalLink:nth-child(1)::before {
		content: none;
	}

	.footer__column {
		display: grid;
		gap: 1.75rem;
		padding-bottom: 2.3rem;
	}

	.footer__copyright {
		font-size: 0.75rem;
	}

	.footer__pageTop {
		width: 11rem;
	}
}

@media screen and (max-width: 500px) {
	.footerNav {
		display: grid;
		gap: 1rem;
	}
}

.pageTop__fixed {
	background-image: url("../../images/common/icon-pagetop-button.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 1rem;
	height: 8.6875rem;
	opacity: 1;
	position: fixed;
	right: 5.5rem;
	transform: scale(0.8);
	transition: 0.3s;
	width: 8.6875rem;
	z-index: 99;
}

.pageTop__fixed:hover {
	background-image: url("../../images/common/icon-pagetop-button-hover.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


@media screen and (max-width: 1040px) {
	.pageTop__fixed {
		right: 0;
	}
}

@media screen and (max-width: 743px) {
	.pageTop__fixed {
		bottom: 0;
		height: 5.3rem;
		max-width: 5.3rem;
		right: 0.5rem;
	}
}


/* ======================================================

	page__externalLink

====================================================== */
.page__externalLink {
	color: var(--colorBlack);
	display: flex;
	font-size: 1.5625rem;
	letter-spacing: 0.0625em;
	line-height: 2.4;
	margin-inline: auto;
	padding-right: 4rem;
	position: relative;
	text-decoration: underline;
	width: fit-content;
}

.page__externalLink::after {
	background-image: url(../../images/common/icon-external-link-blue.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 2.5rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2.625rem;
}

@media screen and (max-width:743px) {
	.page__externalLink {
		font-size: 1.25rem;
	}
}
