@charset "UTF-8";
/* CSS Document */
/* base
--------------------------------------------------*/
:root {
	--text-color:#222222;
  --accent-color: #6B62CE;
  --secondary-color: #A29DE0;
	--bg-color1: #F2F1F8;
  --bg-color2: #F3FAFF;
  --gray: #CCCCCC;
  --white: #FFFFFF;
  --red: #E85648;
	--font-size-base: 16px;
	--font-size-lg: 20px;
	--font-size-sm: 12px;
	--font-size-xs: 11px;
	--font-weight-bold: 600;
	--line-height-base: 1.5;
	--line-height-sm: 1.2;
}
@media (min-width: 769px) {
	.sp_only { display: none; }
}
@media (max-width: 768px) {
	.pc_only { display: none; }
}

/* button
--------------------------------------------------*/
.btn_entry {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 520px;
	height: 80px;
	background-color: var(--red);
	color: var(--white) !important;
	border-radius: 10px;
	line-height: var(--line-height-sm);
  font-family: "Hiragino Sans";
  font-weight: 700;
	font-size: 26px;
	text-align: center;
	margin: auto;
	box-sizing: border-box;
}
.btn_entry:hover {
	background-color: var(--white);
	border: 2px solid var(--red);
	color: var(--red) !important;
}
.btn_entry:not(:hover) {
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
	.btn_entry {
		width: 295px;
		height: 60px;
		font-size: 18px;
	}
}
@media (max-width: 320px) {
	.btn_entry {
		height: 50px;
		font-size: 14px;
	}
}

/* fix_btn
--------------------------------------------------*/
.fix_btn {
	display: none;
	width: 100%;
	background: rgba(34, 34, 34, 0.1);
	padding: 15px;
	box-sizing: border-box;
	position: fixed;
	bottom: 0;
	z-index: 999;
}
.fix_btn .btn_entry {
	height: 70px;
}
.fix_btn .btn_entry:hover {
	opacity: 1 !important;
}
@media (max-width: 768px) {
	.fix_btn {
		padding: 10px;
	}
	.fix_btn .btn_entry {
		height: 60px;
	}
}

/* pagetop
--------------------------------------------------*/
.pagetop {
	display: none;
	padding: 0;
  position: fixed;
  right: 20px;
  bottom: 120px;
  z-index: 999;
}
.pagetop a {
	display: block;
	width: 40px;
	height: 40px;
	background: #ccc;
	border-radius: 10px;
	text-indent: 100%;
  white-space: nowrap;
	padding: 0;
  overflow: hidden;
	position: relative;
}
.pagetop a::before {
	content: "";
  display: block;
  width: 5px;
  height: 5px;
	border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin: auto;
	opacity: 1 !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -3px;
  transform: rotate(-45deg);
}
.pagetop a:hover {
	background: #d9d9d9;
}
@media (max-width: 768px) {
	.pagetop {
		right: 10px;
		bottom: 90px;
	}
}

/* bread
--------------------------------------------------*/
#bread_crumb {
	background: var(--accent-color);
}
#bread_crumb * {
	color: var(--white);
}
#bread_crumb ol {
	max-width: 965px;
	min-height: 30px;
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-bold);
	margin: auto;
}
#bread_crumb ol li + li::before {
	content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  box-sizing: border-box;
  transform: rotate(45deg);
	margin: 0 10px 3px 5px;
}
@media (min-width: 769px) {
	#bread_crumb ol {
		display: flex;
		align-items: center;
	}
}
@media (max-width: 768px) {
	#bread_crumb {
		padding: 7px 10px;
	}
	#bread_crumb ol {
		overflow: hidden;
	}
	#bread_crumb ol li {
		float: left;
	}
	#bread_crumb ol li + li::before {
  	width: 4px;
  	height: 10px;
	}
}

/* header
--------------------------------------------------*/
@media (min-width: 769px) {
	#body_n > header {
		display: none;
	}
}

/* footer
--------------------------------------------------*/
.pc_only #footer {
	background: var(--white);
	margin-bottom: 100px;
}
.pc_only #footBtm {
	border-top: 2px solid var(--secondary-color);
}
.sp_only #global_footer {
	border: none;
	margin-bottom: 80px;
}
.sp_only #global_footer .command {
	margin-bottom: 0;
}
.sp_only #global_footer .copyright {
	margin-top: 20px;
}

/* main contents
--------------------------------------------------*/
#main {
	color: var(--text-color);
	font-size: var(--font-size-base);
	font-feature-settings: "halt";
	line-height: var(--line-height-base);
}
#main a {
	transition: all 0.1s ease;
}
#main a:hover{
	opacity: 1;
}
section .inner {
	max-width: 700px;
	margin: auto;
	box-sizing: border-box;
	position: relative;
}
section:not(.kvArea):not(.searchArea) h3 {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
	margin-bottom: 20px;
}
@media (min-width: 769px) {
	section:not(.kvArea) {
		padding-bottom: 60px;
	}
}
@media (max-width: 768px) {
	section:not(.kvArea):not(.searchArea) {
		padding-bottom: 50px;
	}
	img {
		width: 100%;
	}
}
/* kv */
section.kvArea .inner {
	max-width: 965px;
}
section.kvArea .btnArea {
	position: absolute;
	bottom: 40px;
	width: 100%;
}
@media (min-width: 769px) {
	section.kvArea {
		background: url(/promotion/job_int/img_n/top_n/kv_background.jpg) no-repeat center top;
	}
	section.kvArea .inner {
		height: 435px;
		padding-top: 40px;
	}
}
@media (max-width: 768px) {
	section.kvArea .btnArea {
		bottom: 15px;
	}
}
@media (max-width: 320px) {
	section.kvArea .btnArea {
		bottom: 10px;
	}
}
/* search */
section.searchArea {
	background: linear-gradient(180deg, #F2F1F8 0%, #F3FAFF 100%);
}
section.searchArea .inner {
	border: 2px solid var(--accent-color);
	background-color: var(--white);
	text-align: center;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}
section.searchArea .inner h3 {
	background-color: var(--accent-color);
	color: var(--white);
	line-height: var(--line-height-sm);
	font-weight: var(--font-weight-bold);
	font-size: 34px;
	padding: 25px 0 25px 70px;
	position: relative;
}
section.searchArea .inner h3::before {
	content: "";
	display: block;
	width: 60px;
	height: 66px;
	background: url(/promotion/job_int/img_n/top_n/ico_search.png) no-repeat center center;
	background-size: contain;
	position: absolute;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
}
section.searchArea .search_prefecture {
  font-family:'メイリオ', 'Meiryo', sans-serif;
	font-size: var(--font-size-lg);
	padding: 30px 50px;
}
section.searchArea .search_prefecture p {
	background-color: var(--bg-color1);
	font-weight: var(--font-weight-bold);
	padding: 6px 0 4px;
}
section.searchArea .search_prefecture dl + dl {
	border-top: 1px solid var(--secondary-color);
}
section.searchArea .search_prefecture dl dt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	font-weight: var(--font-weight-bold);
	text-align: left;
	padding: 15px 20px 13px;
	box-sizing: border-box;
	cursor: pointer;
}
section.searchArea .search_prefecture dl dd {
	max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
section.searchArea .search_prefecture dl dd ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin: 0 10px 20px;
}
/* SS_WEB_MNT-10801 2026.01.06 ここから修正 */
section.searchArea .search_prefecture dl dd > :not(:last-child) {
	margin-bottom: 5px;
}
/* SS_WEB_MNT-10801 2026.01.06 ここまで修正 */
section.searchArea .search_prefecture dl dd a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	background: url(/promotion/job_int/img_n/top_n/ico_arrow_p.svg) no-repeat right 10px center;
	border: 2px solid var(--accent-color);
	border-radius: 10px;
	font-weight: var(--font-weight-bold);
	padding: 2px 5px 0 0;
	color: var(--text-color);
}
section.searchArea .search_prefecture dl dd a:hover {
	background: url(/promotion/job_int/img_n/top_n/ico_arrow_w.svg) no-repeat right 10px center var(--accent-color);
	color: var(--white);
}
.iconAccordion {
	display: block;
  width: 20px;
  height: 20px;
	background: var(--secondary-color);
	border-radius: 25px;
	position: relative;
}
.iconAccordion:before,
.iconAccordion:after {
  display: inline-block;
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  position :absolute;
}
.iconAccordion:after {
  transform: translateX(-50%);
  top: 9px;
	right: -2px;
}
.iconAccordion:before {
  transform: rotate(90deg);
	top: 3px;
  right: 10px;
}
.open .iconAccordion:before {
	display: none;
}
@media (min-width: 769px) {
	section.searchArea {
		padding-top: 60px;
		margin-bottom: 60px;
	}
	section.searchArea .search_prefecture p {
		font-size: var(--font-size-lg);
	}
	section.searchArea .search_prefecture dl dd ul li {
		width: calc(calc(100% - 15px) / 4);
	}
}
@media (max-width: 768px) {
	section.searchArea {
		margin-bottom: 50px;
	}
	section.searchArea .inner {
		border-left: none;
		border-right: none;
	}
	section.searchArea .inner h3 {
		padding: 8px 0 7px 35px;
		font-size: 26px;
	}
	section.searchArea .inner h3::before {
		width: 50px;
		height: 55px;
		left: 20px;
	}
	section.searchArea .search_prefecture {
		padding: 20px;
	}
	section.searchArea .search_prefecture p {
		margin-bottom: 5px;
	}
	section.searchArea .search_prefecture dl dd ul {
		margin: 0 0 20px;
	}
	section.searchArea .search_prefecture dl dd ul li {
		width: calc(calc(100% - 5px) / 2);
	}
}
@media (max-width: 320px) {
	section.searchArea .inner h3 {
		padding: 8px 0 7px 25px;
		font-size: 22px;
	}
	section.searchArea .inner h3::before {
		width: 40px;
		height: 44px;
		left: 15px;
	}
}
/* about */
section.aboutArea .inner h3 {
	width: 383px;
	height: 45px;
	background: url(/promotion/job_int/img_n/top_n/title1.png) no-repeat center center;
	background-size: contain;
}
section.aboutArea .inner ul {
	margin-top: 20px;
}
section.aboutArea .inner ul li {
	background: var(--bg-color2);
}
section.aboutArea .inner ul li img {
	width: 100%;
}
section.aboutArea .inner ul li p:first-child {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	background: var(--accent-color);
	color: var(--white);
	font-size: 16px;
  font-family: "Hiragino Sans";
  font-weight: 700;
	position: relative;
}
section.aboutArea .inner ul li p:first-child::after {
	content: "";
	width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid var(--accent-color);
  border-bottom: 0;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}
section.aboutArea .inner ul li .textArea {
	padding: 15px 20px;
}
section.aboutArea .inner ul li .textArea h4 {
	font-weight: var(--font-weight-bold);
	text-align: center;
	margin-bottom: 10px;
}
section.aboutArea .inner dl {
	display: flex;
	justify-content: center;
	border: 2px solid var(--secondary-color);
	padding: 30px 0;
	margin-top: 20px;
}
section.aboutArea .inner dl dt {
	background: url(/promotion/job_int/img_n/top_n/ico_check.svg) no-repeat left center;
	background-size: 25px;
  font-family: "Hiragino Sans";
  font-weight: 700;
	font-size: 24px;
	padding-left: 40px;
}
section.aboutArea .inner dl dd {
	line-height: 2;
}
@media (min-width: 769px) {
	section.aboutArea .inner ul {
		display: flex;
		justify-content: space-between;
	}
	section.aboutArea .inner ul li {
		width: calc(100% / 3 - 8px);
	}
	section.aboutArea .inner ul li p:first-child {
		margin-bottom: 25px;
	}
	section.aboutArea .inner ul li .textArea h4 {
		font-size: var(--font-size-lg);
	}
	section.aboutArea .inner dl {
		align-items: center;
	}
	section.aboutArea .inner dl * {
		margin: 0 30px;
	}
}
@media (max-width: 768px) {
	section.aboutArea .inner {
		margin: auto 20px;
	}
	section.aboutArea .inner h3 {
		max-width: 288px;
		height: 30px;
		background: url(/promotion/job_int/img_n/top_n/title1.sp.png) no-repeat left center;
		background-size: contain;
	}
	section.aboutArea .inner ul li {
		margin-bottom: 10px;
	}
	section.aboutArea .inner ul li p:first-child {
		height: 30px;
		padding-top: 2px;
		margin-bottom: 10px;
	}
	section.aboutArea .inner ul li p:first-child::after {
		border-right: 7px solid transparent;
		border-left: 7px solid transparent;
		border-top: 10px solid var(--accent-color);
	}
	section.aboutArea .inner ul li .textArea h4 {
		margin-bottom: 5px;
	}
	section.aboutArea .inner dl {
		flex-wrap: wrap;
	}
	section.aboutArea .inner dl dt {
		margin-bottom: 15px;
	}
}
@media (max-width: 320px) {
	section.aboutArea .inner h3 {
		height: auto;
	}
}
/* flow */
section.flowArea .inner h3 {
	width: 268px;
	height: 45px;
	background: url(/promotion/job_int/img_n/top_n/title2.png) no-repeat center center;
	background-size: contain;
}
section.flowArea .inner ol li {
	display: flex;
	background: var(--bg-color2);
	padding: 20px 0;
	position: relative;
}
section.flowArea .inner ol li:not(:last-child)::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	z-index: 100;
}
section.flowArea .inner ol li h4 {
	width: 35px;
	height: 55px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
section.flowArea .inner ol li:nth-child(1) h4 {
	background: url(/promotion/job_int/img_n/top_n/step1.png) no-repeat center center;
	background-size: contain;
}
section.flowArea .inner ol li:nth-child(2) h4 {
	background: url(/promotion/job_int/img_n/top_n/step2.png) no-repeat center center;
	background-size: contain;
}
section.flowArea .inner ol li:nth-child(3) h4 {
	background: url(/promotion/job_int/img_n/top_n/step3.png) no-repeat center center;
	background-size: contain;
}
section.flowArea .inner ol li:nth-child(4) h4 {
	background: url(/promotion/job_int/img_n/top_n/step4.png) no-repeat center center;
	background-size: contain;
}
section.flowArea .inner ol li:nth-child(5) h4 {
	background: url(/promotion/job_int/img_n/top_n/step5.png) no-repeat center center;
	background-size: contain;
}
section.flowArea .inner ol li img {
	width: 100%;
	margin: 20px 0 15px;
}
section.flowArea .inner ol li p {
	display: flex;
	align-items: center;
	height: 4.5em;
}
@media (min-width: 769px) {
	section.flowArea .inner ol {
		display: flex;
		justify-content: space-between;
	}
	section.flowArea .inner ol li {
		flex-direction: column;
		align-items: center;
		text-align: center;
		width: calc(100% / 5 - 10px);
	}
	section.flowArea .inner ol li:not(:last-child)::after {
		border-top: 10px solid transparent;
  	border-bottom: 10px solid transparent;
  	border-left: 15px solid var(--accent-color);
		border-right: 0;
		position: absolute;
		right: -20px;
		top: 50%;
		transform: translateY(-50%);
	}
}
@media (max-width: 768px) {
	section.flowArea .inner h3 {
		max-width: 202px;
		height: 30px;
		background: url(/promotion/job_int/img_n/top_n/title2.sp.png) no-repeat left center;
		background-size: contain;
		margin-left: 20px;
		margin-right: 20px;
	}
	section.flowArea .inner ol li {
		justify-content: space-between;
		align-items: center;
		padding: 5px 0 2px 20px;
	}
	section.flowArea .inner ol li:not(:last-child) {
		margin-bottom: 10px;
	}
	section.flowArea .inner ol li:not(:last-child)::after {
		border-right: 10px solid transparent;
  	border-left: 10px solid transparent;
  	border-top: 15px solid var(--accent-color);
		border-bottom: 0;
		position: absolute;
		bottom: -10px;
		left: 50%;
		transform: translateX(-50%);
	}
	section.flowArea .inner ol li h4 {
		margin: 0 15px 5px 0 ;
	}
	section.flowArea .inner ol li img {
		width: calc(115 / 375 * 100%);
		order: 3;
	}
	section.flowArea .inner ol li p {
		width: calc(190 / 375 * 100%);
	}
}
@media (max-width: 320px) {
	section.flowArea .inner h3 {
		height: auto;
	}
}