@charset "UTF-8";

:root {
	--color_darkblue: #02569C;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 57px;
}

html,
body {
	overflow-x: hidden;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	color: #202121;

}

p:not(:last-child) {
	margin-bottom: 1em;
}

a:link {
	color: #1a77c5;
	text-decoration: underline;
}

a:hover {
	color: #3399CC;
	text-decoration: none;
}

img {
	max-width: 100%;
	width: auto;
	height: auto;
	zoom: 0.5;
	vertical-align: top;
}


/*----------------------------------------
■汎用クラス
----------------------------------------*/
.ctaBtn .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	border-radius: 6px;
	position: relative;
	margin-inline: auto;
	height: 30px;
	background-image: -moz-linear-gradient(0deg, rgb(15, 176, 242) 0%, rgb(37, 207, 225) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(15, 176, 242) 0%, rgb(37, 207, 225) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(15, 176, 242) 0%, rgb(37, 207, 225) 100%);
	box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.ctaBtn.back .btn {
	height: 35px;
	width: 255px;
	font-size: 14px;
}

.ctaBtn .btn:after {
	content: "";
	display: block;
	background-image: url(/img/arrow_1.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 13px;
	aspect-ratio: 1/1;
	position: absolute;
	right: 10px;
	top: auto;
	bottom: auto;
}

.ctaBtn.back .btn:after {
	content: "";
	display: block;
	background-image: url(/img/arrow_1.svg);
	background-size: contain;
	background-repeat: no-repeat;
	transform: scale(-1, 1);
	width: 15px;
	aspect-ratio: 1/1;
	position: absolute;
	left: 15px;
	top: auto;
	bottom: auto;
}


.title_1 {
	color: var(--color_darkblue);
	border-bottom: 2px solid var(--color_darkblue);
	font-size: 12px;
	font-weight: 600;
	padding-bottom: 10px;
	margin-bottom: 25px;
}


.subTitle_1 {
	margin-top: 35px;
	margin-bottom: 25px;
	font-size: 18px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
}

.text_1 {
	font-size: calc(23px / 2);
	line-height: 16px;
	letter-spacing: 0.025em;
}

.tbl_1 {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.tbl_1 th,
.tbl_1 td {
	padding: 15px;
	line-height: 180%;
}

.tbl_1 th {
	background-color: #f8f8f8;
}

.tbl_1 td {
	background-color: #fff;
}

.tbl_1 tr {
	display: flex;
	flex-direction: column;
}

ul.list_1 li {
	text-indent: -1em;
	padding-left: 1em;
}

ul.list_1 li:before {
	content: "・";

}


.openerBoxes {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-bottom: 20px;
}

.openerBoxes .box>.title {
	background-color: var(--color_darkblue);
	color: #fff;
	font-size: 12px;
	padding: 10px;
	font-weight: 600;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	letter-spacing: 0.075em;
}

.openerBoxes .box>.title .btn {
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	width: 10px;
	aspect-ratio: 1/1;

}

.openerBoxes .box>.title .btn.close {
	background-image: url(/img/icon_plus.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.openerBoxes .box>.title .btn.open {
	background-image: url(/img/icon_minus.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.openerBoxes .box .content {
	display: none;
}

.sp_hide {
	display: none;
}

/*----------------------------------------
■レイアウト
----------------------------------------*/
#container {
	padding-bottom: calc(63px / 2);
	padding-top: 57px;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 57px;
	z-index: 2;
	background-color: #fff;
}

header>.inner {
	height: 57px;
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-direction: row;
	padding-top: 15px;
	padding-inline: 15px;
}

header>.inner .logo {
	height: 100%;
	display: flex;
	margin-bottom: 3px;
}

header>.inner .logo a:link,
header>.inner .logo a:visited {
	display: block;
	width: calc(337px / 2);
	aspect-ratio: 337 / 67;
	background-image: url(/img/logo.svg);
	background-size: contain;
	background-repeat: no-repeat;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	align-self: flex-end;
	margin-top: auto;
}

header>.inner .ctaBtn {
	margin-top: auto;

}


header>.inner .ctaBtn .btn,
header>.inner .ctaBtn a.btn:link,
header>.inner .ctaBtn a.btn:visited {
	background-image: -moz-linear-gradient(0deg, rgb(15, 176, 242) 0%, rgb(37, 207, 225) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(15, 176, 242) 0%, rgb(37, 207, 225) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(15, 176, 242) 0%, rgb(37, 207, 225) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	height: 31px;
	background-color: transparent;
	text-decoration: none;
	font-weight: bold;
	font-size: 11px;
	border-radius: 6px 6px 0px 0px;
	padding-inline: 8px;
	width: auto;
	box-shadow: none;
}

header>.inner .ctaBtn .btn:after {
	display: none;
}

/*SPメニュー*/
.smp_menu_head {
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: -moz-linear-gradient(0deg, rgb(13, 173, 243) 0%, rgb(42, 214, 222) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(13, 173, 243) 0%, rgb(42, 214, 222) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(13, 173, 243) 0%, rgb(42, 214, 222) 100%);
	font-family: "Oswald", sans-serif;
	font-weight: normal;
	line-height: 1;
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.17em;
	position: relative;
}

.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	z-index: 9;
	/* メニューの下 */
}

body.open .overlay {
	display: block;
}

.smp_menu_head:after {
	content: "";
	background-image: url(/img/icon_close.svg);
	aspect-ratio: 1;
	width: calc(12.5px);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 13.5px;
	top: 50%;
	transform: translateY(-50%);
}

header .smp_menu_sw {
	display: none;
}

header .smp_menu_img {
	text-indent: -9999px;
	background-image: url(/img/icon_sp_menu.svg);
	background-repeat: no-repeat;
	display: inline-block;
	width: 26px;
	height: 22px;
	background-size: contain;
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

header nav {
	display: block;
	overflow: auto;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 100;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transition: 0.3s ease-in-out;
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
}

.smp_menu_sw:checked~nav {
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
	box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
	width: 210px;
	height: 100%;
	position: fixed;
}

header nav {
	display: flex;
	flex-direction: column;


}

header nav li {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	border-bottom: 1px solid #999999;
}

header nav li a:link,
header nav li a:visited {
	background-color: #ffffff;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 20px;
	color: #4d4d4d;
	font-size: 13px;
	text-decoration: none;
	gap: 12px;
}

header nav li a:before {
	content: "";
	background-image: url(/img/arrow_5.svg);
	width: calc(11px / 2);
	aspect-ratio: 11 / 20;
	background-size: contain;
	background-repeat: no-repeat;
}





footer>.head {
	border-bottom: 1px solid #202121;
	padding-bottom: 20px;
}

footer>.body {
	padding-block: 20px;
}

footer>.head>.inner,
footer>.body>.inner {
	padding-inline: 35px;
	display: flex;
	justify-content: space-between;
}

footer>.head>.inner .logo {
	width: calc(277px / 2);
	aspect-ratio: 277/56;
}

footer>.head>.inner .kokubaHP a:link,
footer>.head>.inner .kokubaHP a:visited {
	background-color: var(--color_darkblue);
	color: #fff;
	text-decoration: none;
	font-size: 9px;
	font-weight: 600;
	padding: 8px 15px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 5px;
	letter-spacing: 0.07em;
}

footer>.head>.inner .kokubaHP a:after {
	content: "";
	width: 4px;
	aspect-ratio: 10 / 19;
	mask-image: url(/img/arrow_4.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	background-color: #fff;
}

footer>.body .branchBoxes {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	font-size: 13px;
	width: 100%;
	line-height: 130%;
	gap: 10px;
}

footer>.body .branchBoxes .box {
	display: flex;
	min-height: 24px;
}

footer>.body .branchBoxes .box .branch {
	display: flex;
	width: calc(125px / 2);
	font-size: 9px;
	justify-content: center;
	align-items: center;
	border-left: 1px solid #202121;
	border-right: 1px solid #202121;
}

footer>.body .branchBoxes .box address {
	flex: 1;
	font-size: 9px;
	padding-left: 10px;
	line-height: 120%;
}

footer>.body .branchBoxes .box:not(:last-child) {}

section>.inner {
	padding-block: 40px;
}

.sideBtns {
	display: flex;
	flex-direction: row;
	position: fixed;
	left: 0px;
	bottom: 0px;
	gap: 1px;
	z-index: 1;
	width: 100%;
	height: 48px;
	background-color: #fff;
	padding-top: 1px;
}

.sideBtns .ctaBtn,
.sideBtns .inqBtn {
	flex: 1;
	height: 100%;
}

.sideBtns .ctaBtn .btn,
.sideBtns .inqBtn .btn:link,
.sideBtns .inqBtn .btn:visited {
	width: 100%;
	height: 100%;
	font-size: 12px;
	border-radius: 0px;
	letter-spacing: 0.05em;
	font-weight: normal;
	box-shadow: none;
}

.sideBtns .ctaBtn .btn {
	background-image: -moz-linear-gradient(90deg, rgb(15, 176, 242) 0%, rgb(37, 207, 225) 100%);
	background-image: -webkit-linear-gradient(90deg, rgb(15, 176, 242) 0%, rgb(37, 207, 225) 100%);
	background-image: -ms-linear-gradient(90deg, rgb(15, 176, 242) 0%, rgb(37, 207, 225) 100%);
}

.sideBtns .ctaBtn .btn:after {
	display: none;
}

.sideBtns .inqBtn .btn:link,
.sideBtns .inqBtn .btn:visited {
	color: #fff;
	background-image: -moz-linear-gradient(90deg, rgb(33, 144, 248) 0%, rgb(37, 167, 239) 100%);
	background-image: -webkit-linear-gradient(90deg, rgb(33, 144, 248) 0%, rgb(37, 167, 239) 100%);
	background-image: -ms-linear-gradient(90deg, rgb(33, 144, 248) 0%, rgb(37, 167, 239) 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

.sideBtns .inqBtn .btn:before {
	content: "";
	aspect-ratio: 17 /12;
	width: 17px;
	background-image: url(/img/icon_mail_.svg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-bottom: 3px;
}

.gotoTopBtn {
	display: none;
}

.gotoTopBtn .btn:link,
.gotoTopBtn .btn:visited {
	display: block;
	width: 50px;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	aspect-ratio: 1;
	background-image: url(/img/goto_top_.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: fixed;
	right: 10px;
	bottom: 50px;
	z-index: 1;
}

/*----------------------------------------
■ビジュアル
----------------------------------------*/
.topVisual {
	background-color: #fff;
	position: relative;
}

.topVisual:before {
	content: "";
	display: block;
	width: 300px;
	aspect-ratio: 562 / 483;
	background-image: url(/img/dot_bg.png);
	background-image: image-set(url(/img/dot_bg.png) 1x, url(/img/dot_bg@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 1;
	position: absolute;
	left: -150px;
	top: 0;
}

.topVisual .imgs .img img {
	max-width: auto;
	width: 100%;
}

.topVisual .kokuba {
	width: calc(688 / 750 * 100%);
	aspect-ratio: 688/59;
	position: absolute;
	bottom: calc(286 / 750 * 100vw);
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.topVisual .message {

	aspect-ratio: 674/194;
	position: absolute;
	bottom: calc(527 / 750 * 100vw);
	left: 0;
	z-index: 1;
	display: flex;
	align-items: center;

}

.ctaBtn.underVisual {
	margin-top: calc(150 / 750 * -100vw);
	margin-bottom: calc(150 / 750 * 100vw);
}

.ctaBtn.underVisual .btn,
.ctaBtn.underVisual a.btn:link,
.ctaBtn.underVisual a.btn:visited {
	width: 100%;
	max-width: 303px;
	background-image: -moz-linear-gradient(45deg, rgb(0, 159, 254) 0%, rgb(28, 196, 230) 100%);
	background-image: -webkit-linear-gradient(45deg, rgb(0, 159, 254) 0%, rgb(28, 196, 230) 100%);
	background-image: -ms-linear-gradient(45deg, rgb(0, 159, 254) 0%, rgb(28, 196, 230) 100%);
	box-shadow: 2.12px 3.392px 6.8px 1.2px rgba(0, 0, 0, 0.46);
	border-radius: 4px;
	font-size: 9px;
	font-weight: bold;
	height: 38px;
	gap: 10px;
}

.ctaBtn.underVisual .btn:before,
.ctaBtn.underVisual a.btn:before {
	content: "";
	width: 77px;
	aspect-ratio: 179 / 56;
	background-image: url(/img/index/entry/entry.svg);
	background-size: contain;
	background-repeat: no-repeat;

}

.ctaBtn.underVisual .btn:after,
.ctaBtn.underVisual a.btn:after {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 13px;
	aspect-ratio: 1/1;
}

/*----------------------------------------
■メッセージ
----------------------------------------*/
#sec_Messege {}

#sec_Messege>.inner {
	padding-block: 0;
	padding-inline: 35px;
}

#sec_Messege .subTitle_1 {
	margin-block: 35px;
	letter-spacing: 0.12em;

}

#sec_Messege>.inner>.title {
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	width: calc(384px / 2);
	aspect-ratio: 384 / 109;
	background-image: url(/img/index/message/title.png);
	background-image: image-set(url(/img/index/message/title.png) 1x, url(/img/index/message/title@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
}


#sec_Messege>.inner>.text_1 {
	font-size: 12px;
	line-height: 22px;
	letter-spacing: 0.05em;
	margin-bottom: 40px;

}

#sec_Messege>.inner>.text_1 p {
	margin-bottom: 32.5px;
}


/*----------------------------------------
■画像ループ
----------------------------------------*/
.loopWrapper {
	overflow: hidden;
}

.loopImagesToLeft,
.loopImagesToRight {
	display: flex;
	width: max-content;
	animation-duration: 40s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.loopImagesToLeft {
	animation-name: scrollLeft;
}

.loopImagesToRight {
	animation-name: scrollRight;

}

.loopWrapper .img {
	width: 100%;
	max-height: 210px;
}

@keyframes scrollLeft {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes scrollRight {
	0% {
		transform: translateX(-50%);
	}

	100% {
		transform: translateX(0);
	}
}

/*----------------------------------------
■国場組を知る
----------------------------------------*/
#sec_Company {}

#sec_Company>.inner {
	padding-inline: 35px;
}

#sec_Company>.inner>.title {
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	width: calc(233px / 2);
	aspect-ratio: 233 / 112;
	background-image: url(/img/index/company/title.png);
	background-image: image-set(url(/img/index/company/title.png) 1x, url(/img/index/company/title@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
}

#sec_Company>.inner>.text_1 {
	margin-bottom: 70px;
	letter-spacing: 0.025em;
}

#sec_Company .charmBoxes {
	display: grid;
	grid-template-columns: repeat(2, minmax(131px, 1fr));
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 35px;
	gap: 35px;
}

#sec_Company .charmBoxes .box {
	background-color: #efefef;
	border-radius: 10px;
	flex: 1;
	position: relative;

	padding-top: clamp(1.688rem, -1.047rem + 6.83vw, 2.938rem);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(0.875rem, -0.356rem + 3.07vw, 1.438rem);
	font-weight: bold;
}

#sec_Company .charmBoxes .box>.title {
	width: 121px;
	aspect-ratio: 204/69;
	background-image: url(/img/index/company/ribon.png);
	background-image: image-set(url(/img/index/company/ribon.png) 1x, url(/img/index/company/ribon@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: -15px;
	left: -10px;
	display: flex;
	align-items: center;
	padding-bottom: 7px;
	padding-left: 14px;
	color: #fff;
	font-size: calc(29px / 2);
	font-weight: bold;
}

#sec_Company .charmBoxes .box .title .number {
	font-family: "Oswald", sans-serif;
	font-size: 24px;
	font-weight: 400;
}





#sec_Company .charmBoxes .box .head {
	display: block;
	font-size: clamp(0.875rem, -0.356rem + 3.07vw, 1.438rem);
	text-align: center;
}

#sec_Company .charmBoxes .box .content {
	text-align: center;
	font-size: 15px;
}

#sec_Company .charmBoxes .box.since .content .number,
#sec_Company .charmBoxes .box.group .content .number {
	margin-right: 5px;
}

#sec_Company .charmBoxes .box .content .number {
	font-family: "Oswald", sans-serif;
	font-size: 57px;
	font-weight: 600;
	color: #02569c;
	margin-top: -6px;
	letter-spacing: -0.01em;
}

#sec_Company .charmBoxes .box.since {
	padding-inline: 25px;
	padding-inline: clamp(0.875rem, -0.622rem + 3.74vw, 1.563rem);
}

#sec_Company .charmBoxes .box.since .content .head,
#sec_Company .charmBoxes .box.sales .content .head {
	text-align: left;
	padding-left: 3px;
}

#sec_Company .charmBoxes .box.construction .content .head {
	font-size: 11px;
}

#sec_Company .charmBoxes .box.sales .content .number {
	letter-spacing: -0.01em;

}

.odometer.odometer-auto-theme {
	display: inline-block;
	vertical-align: baseline;
	position: relative;
}

#sec_Company .introBoxes {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

#sec_Company .introBoxes .box {
	display: flex;
	justify-content: space-between;
	border: 1px solid var(--color_darkblue);

}

#sec_Company .introBoxes .box .title {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
}

#sec_Company .introBoxes .box .title .en {
	font-size: 11px;
	color: var(--color_darkblue);
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1;
}

#sec_Company .introBoxes .box .title .ja {
	font-size: 13.5px;
	font-weight: bold;
	line-height: 1;
}

#sec_Company .introBoxes .box a {
	display: block;
	position: relative;
}

#sec_Company .introBoxes .box a .ribon {
	display: block;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	width: 100px;
	aspect-ratio: 120 / 25;
	background-image: url(/img/index/company/viewMore.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: -6px;
	bottom: 5px;
}

/*----------------------------------------
■インタビュー
----------------------------------------*/
#sec_InterView {
	background-image: -moz-linear-gradient(45deg, rgb(102, 193, 255) 0%, rgb(133, 234, 232) 100%);
	background-image: -webkit-linear-gradient(45deg, rgb(102, 193, 255) 0%, rgb(133, 234, 232) 100%);
	background-image: -ms-linear-gradient(45deg, rgb(102, 193, 255) 0%, rgb(133, 234, 232) 100%);
	position: relative;
	overflow: hidden;
}

#sec_InterView:before {
	content: "";
	position: absolute;
	left: -40%;
	bottom: 0;
	width: calc(655px / 2);
	height: calc(655px / 2);
	background-image: url(/img/index/interview/bg_1.png);
	background-image: image-set(url(/img/index/interview/bg_1.png) 1x, url(/img/index/interview/bg_1@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
}

#sec_InterView:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: calc(330px / 2);
	aspect-ratio: 330 / 937;

	background-image: url(/img/index/interview/bg_2.png);
	background-image: image-set(url(/img/index/interview/bg_2.png) 1x, url(/img/index/interview/bg_2@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
}

#sec_InterView>.inner {
	padding-inline: 35px;
	overflow: hidden;
	padding-bottom: 90px;
}

#sec_InterView>.inner>.title {
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	width: calc(233px / 2);
	aspect-ratio: 222 / 94;
	background-image: url(/img/index/interview/title.png);
	background-image: image-set(url(/img/index/interview/title.png) 1x, url(/img/index/interview/title@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
}

#sec_InterView>.inner>.text_1 {
	margin-bottom: 30px;
}

#sec_InterView .staffBoxes {
	z-index: 1;
}

#sec_InterView .staffBoxes #page_interview .staffBoxes {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

#sec_InterView .staffBoxes .slick-list,
#page_interview .staffBoxes .slick-list {
	overflow: visible;
}

#sec_InterView .staffBoxes .box,
#page_interview .staffBoxes .box {
	width: calc(350px / 2);
	aspect-ratio: 270/420;
	margin-right: 30px;
	border: 1px solid var(--color_darkblue);
	background-color: #fff;
	position: relative;
	overflow: visible;
}

#sec_InterView .staffBoxes .box:before,
#page_interview .staffBoxes .box:before {
	content: "";
	display: block;
	position: absolute;
	left: 5px;
	top: 5px;
	width: calc(350px / 2);
	aspect-ratio: 270/420;
	border: 1px solid var(--color_darkblue);
}

#sec_InterView .staffBoxes .box:after,
#page_interview .staffBoxes .box:after {
	content: "";
	display: block;
	position: absolute;
	right: 5px;
	bottom: 5px;
	width: calc(85px / 2);
	aspect-ratio: 85 / 12;
	background-image: url(/img/index/interview/arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

#sec_InterView .staffBoxes .box .detail,
#page_interview .staffBoxes .box .detail {
	font-size: 10px;
	line-height: 150%;
	padding: 7px 10px;
}

#sec_InterView .staffBoxes a:link,
#page_interview .staffBoxes a:link,
#sec_InterView .staffBoxes a:visited,
#page_interview .staffBoxes a:visited {
	display: block;
	color: inherit;
	text-decoration: none;
}

#sec_InterView .staffBoxes img,
#page_interview .staffBoxes img {
	width: 100%;
	z-index: 1;
	position: relative;
}

#sec_InterView .slick-dots,
#page_interview .slick-dots {
	bottom: -40px;
}

#sec_InterView .slick-dots li,
#page_interview .slick-dots li {
	margin: 0px;
}

#sec_InterView .slick-dots li button:before,
#page_interview .slick-dots li button:before {
	color: #fff;
	opacity: 0.5;
}

#sec_InterView .slick-dots li.slick-active button:before,
#page_interview .slick-dots li.slick-active button:before {
	opacity: 1;
}

/*----------------------------------------
■働く環境
----------------------------------------*/
#sec_Environment>.inner {
	position: relative;
	padding-bottom: 0;
	padding-inline: 35px;
}

#sec_Environment>.inner:before {
	content: "";
	width: calc(151px / 2);
	aspect-ratio: 151/255;
	position: absolute;
	right: 35px;
	top: -20px;
	background-image: url(/img/index/environment/illust.png);
	background-image: image-set(url(/img/index/environment/illust.png) 1x, url(/img/index/environment/illust@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
}

#sec_Environment>.inner>.title {
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	width: calc(292px / 2);
	aspect-ratio: 292 / 94;
	background-image: url(/img/index/environment/title.png);
	background-image: image-set(url(/img/index/environment/title.png) 1x, url(/img/index/environment/title@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
}

#sec_Environment>.inner>.subTitle_1 {
	letter-spacing: 1px;
}

#sec_Environment>.inner>.text_1 {
	margin-bottom: 30px;
}

#sec_Environment .openerBoxes.salary .content {
	padding-top: 15px;
	padding-inline: 30px;
	padding-bottom: 30px;
	border: 1px solid var(--color_darkblue);
	font-weight: 600;
}

#sec_Environment .openerBoxes.salary .content>.title {
	font-size: 12px;
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 10px;
	font-weight: 600;
}

#sec_Environment .openerBoxes.salary .content>.title:before {
	content: "";
	width: 4px;
	height: 30px;
	background-color: var(--color_darkblue);
}

#sec_Environment .openerBoxes.salary .content .value {
	font-family: "Oswald", sans-serif;
	letter-spacing: 0.05em;
	font-size: 36px;
	line-height: 1;
}

#sec_Environment .openerBoxes.salary .content .value .unit {
	font-family: inherit;
	font-size: 24px;
}

#sec_Environment .openerBoxes.salary .tbl_1 {
	gap: 20px;
}

#sec_Environment .openerBoxes.salary .startingSalary .tbl_1 tr {
	display: grid;
	grid-template-areas:
		"title title"
		"value guide";
	grid-template-columns: 50%;
}

#sec_Environment .openerBoxes.salary .tbl_1 th,
#sec_Environment .openerBoxes.salary .tbl_1 td {
	text-align: center;
	font-weight: 600;
	width: 100%;

}

#sec_Environment .openerBoxes.salary .startingSalary .tbl_1 th {
	font-size: 11px;
	grid-area: title;
	padding-block: 10px;
}

#sec_Environment .openerBoxes.salary .tbl_1 td.value {
	grid-area: value;
	font-size: 18px;
}

#sec_Environment .openerBoxes.salary .tbl_1 td.value .unit {
	font-size: 12px;
}

#sec_Environment .openerBoxes.salary .tbl_1 td {
	width: auto;
	font-size: 11px;
	position: relative;
}

#sec_Environment .openerBoxes.salary .attention {
	display: block;
	margin-top: 10px;
	font-size: 12px;
	color: #727171;
}

#sec_Environment .openerBoxes.salary .startingSalary .content>.title {
	margin-bottom: 40px;
}

#sec_Environment .openerBoxes.salary .startingSalary .speechBubble {
	position: absolute;
	top: -70px;
	left: 10px;
	display: inline-block;
	margin-bottom: 23px;
	padding: 5px 20px;
	border-radius: 40px;
	background-color: #5faad8;
	text-align: left;
	font-size: 11px;
	line-height: 1.5;
	color: #fff;
	white-space: nowrap;
}

#sec_Environment .openerBoxes.salary .startingSalary .speechBubble::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 26%;
	border-style: solid;
	border-width: 11px 0 0 11px;
	border-color: #5faad8 transparent transparent;
	translate: calc(-50% - 0.3px) 100%;
	transform: skew(5deg);
	transform-origin: top;
}

#sec_Environment .openerBoxes .baseSalary .content .wrap {}

#sec_Environment .openerBoxes .baseSalary .content .tbl_1 {
	margin-bottom: 30px;
}

#sec_Environment .openerBoxes .baseSalary .content .tbl_1 th {
	padding-block: 10px;
	font-size: 11px;
}

#sec_Environment .openerBoxes .baseSalary .content .img {
	flex: 1;
}



#sec_Environment .env_boxes {
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
	justify-content: space-between;
	margin-bottom: 35px;

}


#sec_Environment .env_boxes .box {
	border-radius: 20px;
	border: 4px solid #5faad8;
	overflow: hidden;
}

#sec_Environment .env_boxes .box .title {
	background-color: #5faad8;
	padding-block: 10px;
	padding-inline: 10px;
	display: flex;
	color: #fff;
}

#sec_Environment .env_boxes .box .title .img {
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

#sec_Environment .env_boxes .box .title .img img {
	zoom: 1;
}

#sec_Environment .env_boxes .box.taiguu .img img {
	width: 44px;
}

#sec_Environment .env_boxes .box.hukuri .img img {
	width: 47px;
}

#sec_Environment .env_boxes .box.kyujitu .img img {
	width: 47px;
}

#sec_Environment .env_boxes .box.syokuba .img img {
	width: 30px;
}


#sec_Environment .env_boxes .box .title h3 {
	flex: 1;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.1em;
}

#sec_Environment .env_boxes .box .title h3 .head {
	display: block;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: 0;

}

#sec_Environment .env_boxes .box .detail {
	padding: 10px;
}

#sec_Environment .env_boxes .box .detail .lists {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

#sec_Environment .env_boxes .box .detail li:before {
	content: "・";
}

#sec_Environment .env_boxes .box .detail li {
	font-size: 11px;
	text-indent: -1em;
	padding-left: 1em;
	line-height: 140%;
}

#sec_Environment .support {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	background-image: -moz-linear-gradient(45deg, rgb(102, 193, 255) 0%, rgb(133, 234, 232) 100%);
	background-image: -webkit-linear-gradient(45deg, rgb(102, 193, 255) 0%, rgb(133, 234, 232) 100%);
	background-image: -ms-linear-gradient(45deg, rgb(102, 193, 255) 0%, rgb(133, 234, 232) 100%);
	position: relative;
}

#sec_Environment .support:before {
	content: "";
	background-image: url(/img/index/environment/support/bg.png);
	background-image: image-set(url(/img/index/environment/support/bg.png) 1x, url(/img/index/environment/support/bg@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	width: 149px;
	aspect-ratio: 298 / 384;

	left: 0;
	bottom: 0;
}

#sec_Environment .support>.inner {
	margin-inline: auto;
	padding-block: 35px;
	padding-inline: 35px;
}

#sec_Environment .support .boxes {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 25px;
}

#sec_Environment .support .boxes .box {
	display: flex;
	background-color: #fff;
	border: 3px solid var(--color_darkblue);
	position: relative;
}

#sec_Environment .support .boxes .box .title {
	background-image: url(/img/index/environment/support/title_bg.png);
	background-image: image-set(url(/img/index/environment/support/title_bg.png) 1x, url(/img/index/environment/support/title_bg@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
	aspect-ratio: 290/65;
	font-size: 12px;
	width: 149px;
	left: 122px;
	top: -20px;
	position: absolute;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 5px;
}

#sec_Environment .support .boxes .box .text {
	padding: 10px;
	padding-top: 12px;
	line-height: 130%;
	font-size: 9.5px;
	flex: 1;
	align-self: center;
}

#sec_Environment .support .boxes .box .img {
	width: 134px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 3px solid var(--color_darkblue);
}

#sec_Environment .support .boxes .box .img img {
	width: 100%;
}

#sec_Environment .support .boxes .box.shikaku .img img {
	width: 100%;
}

/*----------------------------------------
■募集要項
----------------------------------------*/
#sec_Requirements>.inner {
	padding-inline: 35px;
}

#sec_Requirements>.inner>.title {
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	width: calc(292px / 2);
	aspect-ratio: 292 / 94;
	background-image: url(/img/index/requirements/title.png);
	background-image: image-set(url(/img/index/requirements/title.png) 1x, url(/img/index/requirements/title@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
	margin-bottom: 35px;
}

#sec_Requirements .graduation,
#sec_Requirements .carrier,
#sec_Requirements .internship {
	background-color: rgb(151, 197, 219, 0.6);
	padding: 20px;
	display: flex;
	flex-direction: column;
}

#sec_Requirements .flow {
	margin-bottom: 35px;
}



#sec_Requirements .flow .boxes {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

#sec_Requirements .flow .boxes .box {
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 10px;
	line-height: 130%;
	width: 100%;
	padding: 15px;
	font-size: 11px;
}

#sec_Requirements .flow .boxes .arrow {
	width: 8px;
	aspect-ratio: 12 / 24;
	transform: rotate(90deg);
}

#sec_Requirements .flow .boxes .box.final {
	background-color: var(--color_darkblue);
	color: #fff;
}

#sec_Requirements .tbl_1 th {
	text-align: center;
	padding: 5px;
	font-size: 11px;
}

#sec_Requirements .tbl_1 td {
	font-size: 10.5px;

	width: auto;
}

#sec_Requirements .ctaBtn {
	margin-top: 25px;
	margin-bottom: 35px;
}

#sec_Requirements .carrier .flow .boxes {
	display: flex;
	justify-content: center;
	align-items: stretch;
	border-radius: 10px;
	gap: 10px;
	flex-direction: row;
}

#sec_Requirements .carrier .flow .boxes .box {
	padding: 10px;
	writing-mode: vertical-rl;
	width: auto;
	min-width: 42px;
	min-height: 165px;
	text-align: center;
}

#sec_Requirements .carrier .flow .boxes .arrow {
	transform: rotate(0deg);
	width: 8px;
	align-self: center;
}


#sec_Requirements .carrier .checkit,
#sec_Requirements .internship .checkit {
	color: var(--color_darkblue);
	font-size: 10px;
	text-align: center;
	margin-bottom: 20px;
}

#sec_Requirements .carrier .ctaBtn,
#sec_Requirements .internship .ctaBtn {
	margin-bottom: 10px;
}

#sec_Requirements .internship {
	padding-top: 0px;
}

/*----------------------------------------
■FAQ
----------------------------------------*/
#sec_faq {
	background-image: -moz-linear-gradient(45deg, rgb(102, 193, 255) 0%, rgb(133, 234, 232) 100%);
	background-image: -webkit-linear-gradient(45deg, rgb(102, 193, 255) 0%, rgb(133, 234, 232) 100%);
	background-image: -ms-linear-gradient(45deg, rgb(102, 193, 255) 0%, rgb(133, 234, 232) 100%);
	position: relative;

}

#sec_faq:before {
	content: "";
	width: 281px;
	aspect-ratio: 562 / 483;
	position: absolute;
	background-image: url(/img/dot_bg.png);
	background-image: image-set(url(/img/dot_bg.png) 1x, url(/img/dot_bg@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 0;
}

#sec_faq:before {
	bottom: 0px;
	left: -140px;
}



#sec_faq>.inner {
	z-index: 1;
	position: relative;
	padding-inline: 35px;
}

#sec_faq>.inner>.title {
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	width: 204px;
	aspect-ratio: 401 / 49;
	background-image: url(/img/index/faq/title_1.png);
	background-image: image-set(url(/img/index/faq/title_1.png) 1x, url(/img/index/faq/title_1@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
	margin-bottom: 25px;

}

#sec_faq>.inner:after {
	content: "";
	width: 95px;
	aspect-ratio: 254 / 238;
	background-image: url(/img/index/faq/img.png);
	background-image: image-set(url(/img/index/faq/img.png) 1x, url(/img/index/faq/img@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	top: -13px;
	right: 10px;
}

#sec_faq .faqBoxes {
	margin-bottom: 25px;
}

#sec_faq .faqBoxes .box>.title {
	background-color: #fff;
	position: relative;
	color: #202121;
	padding-left: 50px;
	font-size: 11px;
	font-weight: normal;
}

#sec_faq .faqBoxes .box.open>.title {
	background-color: var(--color_darkblue);
	color: #fff;
}

#sec_faq .faqBoxes .box>.title:before,
#sec_faq .faqBoxes .box>.content:before {
	content: "";
	background-size: 19px 17px;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 40px;
}

#sec_faq .faqBoxes .box>.title:before {
	background-image: url(/img/index/faq/text_q.svg);
	background-color: var(--color_darkblue);
}

#sec_faq .faqBoxes .box>.content {
	background-color: #fff;
	position: relative;
	padding: 15px;
	padding-left: 50px;
	line-height: 180%;
	letter-spacing: 0.05em;
	font-size: 11px;
}

#sec_faq .faqBoxes .box>.content:before {
	background-image: url(/img/index/faq/text_a.svg);
	background-color: #fff;
	background-position: center 20px;
}

#sec_faq .subtext {
	text-align: center;
	font-size: 11px;
}

#sec_faq .inq_form {
	background-color: #fff;
	padding: 25px;
	padding-inline: 15px;
	margin-top: 15px;
}

#sec_faq .inq_form>.title {
	font-size: 12px;
	text-align: center;
	margin-bottom: 20px;
	line-height: 1;
}

#sec_faq .inq_form>.title .en {
	font-size: 10px;
	color: #2ea7e0;
	text-align: center;
	display: block;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}

#sec_faq .inq_form .inq {
	border: 1px solid #2ea7e0;
}

#sec_faq .inq_form .inq>.title {
	font-size: 12px;
	color: #2ea7e0;
	display: flex;
	align-items: center;
	padding: 10px;
}

#sec_faq .inq_form .inq.close>.title:after {
	content: "";
	width: 10px;
	aspect-ratio: 1/1;
	background-image: url(/img/index/faq/icon_plus.svg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: auto;
}

#sec_faq .inq_form .inq.open>.title:after {
	content: "";
	width: 10px;
	height: 2px;
	background-image: url(/img/index/faq/icon_minus.svg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: auto;
}

#sec_faq .inq_form .inq.close .content {
	display: none;
}

#sec_faq .inq_form .inq .content {
	border-top: 1px solid #2ea7e0;
	padding: 15px;
}

#sec_faq .inq_form .inq .attentionLists {
	margin-bottom: 30px;
}

#sec_faq .inq_form .inq .attentionLists li {
	text-indent: -1em;
	padding-left: 1em;
	font-size: 12px;
	line-height: 180%;
	letter-spacing: 0.05em;
}

#sec_faq .inq_form .inq .attentionLists li:before {
	content: "※";
	color: #c30d23;
}

#sec_faq .inq_form .inq_tbl {
	width: 100%;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
}

#sec_faq .inq_form .inq_tbl tr {

	display: flex;
	flex-direction: column;
}

#sec_faq .inq_form .inq_tbl th,
#sec_faq .inq_form .inq_tbl td {
	padding: 10px;
	font-size: 11px;
}

#sec_faq .inq_form .inq_tbl td {
	padding-block: 15px;
}

#sec_faq .inq_form .inq_tbl th {
	background-color: rgb(46, 167, 224, 0.15);
	border-bottom: 1px solid #b5b5b6;
	border-top: 1px solid #b5b5b6;

}

#sec_faq .inq_form .inq_tbl th:before {
	opacity: 0;
	content: "必須";
	background-color: #2ea7e0;
	color: #fff;
	padding: 3px 10px;
	line-height: 1;
	margin-right: 3px;
}

#sec_faq .inq_form .inq_tbl th.required:before {
	opacity: 1;
}

#sec_faq .inq_form .inq_tbl input:not(:last-child),
#sec_faq .inq_form .inq_tbl textarea:not(:last-child) {
	margin-bottom: 10px;
}

#sec_faq .inq_form textarea {
	height: 250px;
}

#sec_faq .inq_form .submit {
	position: relative;
	margin-bottom: 40px;

}

#sec_faq .inq_form .submit .wrap {
	position: relative;
	height: 35px;
	margin-inline: auto;
}

#sec_faq .inq_form .submit .wrap:after {
	content: "";
	display: block;
	background-image: url(/img/arrow_1.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 14px;
	aspect-ratio: 1/1;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(-50%, -50%);
}

#sec_faq .inq_form .submit .submit_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	font-size: 10px;
	font-weight: bold;
	width: 100%;
	border-radius: 40px;
	height: 100%;
	background-image: -moz-linear-gradient(0deg, rgb(15, 176, 242) 0%, rgb(37, 207, 225) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(15, 176, 242) 0%, rgb(37, 207, 225) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(15, 176, 242) 0%, rgb(37, 207, 225) 100%);
}

#sec_faq .inq_form .spamText {
	font-size: 9px;
}

#sec_faq .inq_form .privacyPolicy {
	border: 1px solid #2ea7e0;
	padding: 15px;
	height: 340px;
	overflow-y: auto;
}

#sec_faq .inq_form .privacyPolicy .head {
	font-size: 11px;
	color: #2ea7e0;
	border-bottom: 1px solid #2ea7e0;
	padding-bottom: 10px;
	margin-bottom: 10px;
	text-align: center;
}

#sec_faq .inq_form .privacyPolicy .body .meta {
	text-align: right;
	line-height: 1.8em;
}

#sec_faq .inq_form .privacyPolicy .body {
	line-height: 180%;
	font-size: 11px;
}

#sec_faq .inq_form .privacyPolicy .body .lead {
	margin-bottom: 25px;
}

#sec_faq .inq_form .privacyPolicy .body .boxes {
	display: flex;
	flex-direction: column;
	gap: 45px;
}

#sec_faq .inq_form .privacyPolicy .body .boxes .box>.title {
	font-size: 11px;
	color: #2ea7e0;
	margin-bottom: 5px;
}

#sec_faq .inq_form .err {
	color: #c30d23;
	margin-bottom: 5px;
}

#sec_faq .inq_form .err_info {
	color: #c30d23;
	padding: 20px;
	border: 2px solid #c30d23;
	text-align: center;
	margin-bottom: 20px;
}

#sec_faq .inq_form .complete_info {
	color: #2ea7e0;
	padding: 20px;
	border: 2px solid #2ea7e0;
	text-align: center;
	margin-bottom: 20px;
}


/*----------------------------------------
■エントリーセクション
----------------------------------------*/
#sec_entryCTA>.inner {
	padding-inline: 35px;
}

#sec_entryCTA .ctaBtn .btn,
#sec_entryCTA .ctaBtn a.btn:link,
#sec_entryCTA .ctaBtn a.btn:visited {
	width: 100%;
	background-image: -moz-linear-gradient(45deg, rgb(0, 159, 254) 0%, rgb(28, 196, 230) 100%);
	background-image: -webkit-linear-gradient(45deg, rgb(0, 159, 254) 0%, rgb(28, 196, 230) 100%);
	background-image: -ms-linear-gradient(45deg, rgb(0, 159, 254) 0%, rgb(28, 196, 230) 100%);
	box-shadow: 2.12px 3.392px 6.8px 1.2px rgba(0, 0, 0, 0.46);
	border-radius: 4px;
	font-size: 9px;
	font-weight: bold;
	height: 38px;
	gap: 10px;
}

#sec_entryCTA .ctaBtn .btn:before,
#sec_entryCTA .ctaBtn a.btn:before {
	content: "";
	width: 77px;
	aspect-ratio: 179 / 56;
	background-image: url(/img/index/entry/entry.svg);
	background-size: contain;
	background-repeat: no-repeat;

}

#sec_entryCTA .ctaBtn .btn:after,
#sec_entryCTA .ctaBtn a.btn:after {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 13px;
	aspect-ratio: 1/1;
}


/*----------------------------------------
■モーダル
----------------------------------------*/

.modal-open {
	cursor: pointer;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 50%);
	padding: 20px 10px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index: 5;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
	opacity: 1;
	visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 936px;
	width: 90%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -40px;
	right: -10px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
	background: #fff;
	text-align: left;
	padding: 15px;
}


.modal-container .modalWrap {
	background-color: #efefef;
	margin: auto;
	padding: 20px;
	padding-top: 30px;
	border-radius: 10px;
}

.modal-container .modalWrap .boxes {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.modal-container .modalWrap .box {
	background-color: #fff;
	padding-inline: 15px;
	padding-bottom: 20px;
	padding-top: 25px;
	text-align: center;
	position: relative;
	box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
	flex: 1;
}

.modal-container .modalWrap .box h1 {
	width: 130px;
	background-image: -moz-linear-gradient(45deg, rgb(0, 159, 254) 0%, rgb(28, 196, 230) 100%);
	background-image: -webkit-linear-gradient(45deg, rgb(0, 159, 254) 0%, rgb(28, 196, 230) 100%);
	background-image: -ms-linear-gradient(45deg, rgb(0, 159, 254) 0%, rgb(28, 196, 230) 100%);
	box-shadow: 2.12px 3.392px 6.8px 1.2px rgba(0, 0, 0, 0.46);
	border-radius: 4px;
	font-size: 15px;
	font-weight: bold;
	padding: 5px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	position: absolute;
	left: 50%;
	right: 50%;
	top: -20px;
	transform: translateX(-50%);
}

.modal-container .modalWrap .bns {
	display: flex;
	justify-content: center;
	gap: 5px;
}

.modal-container .modalWrap .newGraduate .bn {
	max-width: 170px;
	width: 50%;
	text-align: center;
}

.modal-container .modalWrap .newGraduate .bn img {
	width: 100%;
}