@charset "UTF-8";
/* CSS Document */


/*

.m-plus-rounded-1c-light {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-rounded-1c-medium {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.m-plus-rounded-1c-bold {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
}


// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.noto-sans-<uniquifier> {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.kiwi-maru-light {
  font-family: "Kiwi Maru", serif;
  font-weight: 300;
  font-style: normal;
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.kiwi-maru-medium {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}


*/

.content_wrap.new_graduate {
	position: relative;
	background-image: url(/recruit/new_graduate/images/bg_new_graduate_color.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.content_wrap.new_graduate .bg_obj,
.content_wrap.career .bg_obj {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%; /* 少し余裕を持たせると視差効果が自然 */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	pointer-events: none; /* 背景としてクリック不可に */
	transform: translateY(0);
	transition: transform 0.1s linear;
	z-index: 1;
}
.bg_obj.layer1 { background-image: url(/recruit/new_graduate/images/bg_obj1.png); }
.bg_obj.layer2 { background-image: url(/recruit/new_graduate/images/bg_obj2.png); }
.bg_obj.layer3 { background-image: url(/recruit/new_graduate/images/bg_obj3.png); }


.content_wrap.n_voice_main,
.content_wrap.n_basic_main {
	background-image: url(/recruit/new_graduate/images/bg_new_graduate_other.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.content_wrap.career {
	position: relative;
	background-image: url(/recruit/career/images/bg_career.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}
.content_wrap.c_voice_main,
.content_wrap.c_basic_main {
	background-image: url(/recruit/career/images/bg_career_other.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.bg_white {
	background-color: #fff;
}
.bg_dark_blue {
	background-color: #41b9c8;
}
.bg_dark_blue p {
	color: #fff;
}
.bg_radius {
	border-radius: 50px;
}

html, body, div, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, ul, ol, li, dl, dt, dd, table, th, td, form, fieldset {
	font-size: 17px;
}

.inner {
	max-width: 1500px;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width: 680px) {
	html, body, div, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, ul, ol, li, dl, dt, dd, table, th, td, form, fieldset {
		font-size: 15px;
	}
	.inner {
		width: 95%;
	}
}

.link_text {
	text-align: right;
}
.link_text a {
	display: inline-block;
	position: relative;
	padding: 1em 80px 1em 0em;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	transition: 0.3s;
	text-decoration: none;
}
.link_text a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	left: auto;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background-color: #fff;
	border: 1px solid #c3a0e1;
	border-radius: 50vh;
	transition: 0.3s;
}
.link_text a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 28px;
	transform: translateY(-50%) rotate(45deg);
	width: 5px;
	height: 5px;
	border-top: 2px solid #c3a0e1;
	border-right: 2px solid #c3a0e1;
	transition: 0.3s;
}
.link_text a:hover {
	color: #c3a0e1;
	text-decoration: underline;
}
.link_text a:hover::before {
	background-color: #c3a0e1;
	border: 1px solid #fff;
}
.link_text a:hover::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.career .link_text a::before {
	border: 1px solid #ffaa00;
}
.career .link_text a::after {
	border-top: 2px solid #ffaa00;
	border-right: 2px solid #ffaa00;
}
.career .link_text a:hover {
	color: #ffaa00;
	text-decoration: underline;
}
.career .link_text a:hover::before {
	background-color: #ffaa00;
}
.career .link_text a:hover::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

@media screen and (max-width: 680px) {
	.link_text {
		text-align: center;
	}
	.link_text a {
		margin-top: 20px;
		font-size: 12px;
		padding: 1em 50px 1em 0em;
	}
}


.sec_block {
	padding: 100px 0;
	position: relative;
	z-index: 1;
}
.sec_block p,
.message_block p {
	margin-bottom: 20px;
}
.block {
	margin-bottom: 50px;
}
.block.mini {
	margin-bottom: 30px;
}
* +.block:first-of-type:not(h2 +.block) {
	margin-top: 50px;
}
* +.block.mini:first-of-type {
	margin-top: 30px;
}
.block:last-of-type,
.block.mini:last-of-type {
	margin-bottom: 0;
}
.block:last-of-type + *,
.block.mini:last-of-type + * {
	margin-top: 50px;
}
.block:last-of-type + p {
	margin-top: 30px;
}
@media screen and (max-width: 680px) {
	.sec_block {
		padding: 50px 0;
	}
	.sec_block p,
	.message_block p {
		margin-bottom: 14px;
	}
	.sec_block.main_visual {
		padding: 0;
	}
	.sec_block:first-child {
		padding-top: 0;
	}
	.sec_block:last-child {
		margin-bottom: 30%;
	}
}

.side-menu-btn {
	display: inherit;
	background-color: #41b9c8;

	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
}
.career.side-menu-btn {
	background-color: #32a064;
}

.g_nav_main li {
	padding: 0;
}
.g_nav_main li.menu_item a {
	color: #fff;
}

.side-menu-btn span:nth-of-type(1) {
	top: 17px;
}
.side-menu-btn span:nth-of-type(2) {
	top: 28px;
}
.side-menu-btn span:nth-of-type(3) {
	bottom: 17px;
}
.side-open .side-menu-btn span:nth-of-type(3) {
	bottom: 20px;
}
.side-menu .g_nav_main li.menu_item a:before {
	display: none;
}
.side-menu .sub_menu {
	margin: 5px 20px;
}
.side-menu p {
	font-size: 14px;
}
.side-menu .sub_menu p {
	font-size: 14px;
	color: #41b9c8;
}
.side-menu .g_nav_main .sub_menu li {
	padding: 5px 0 5px;
}
.career_nav .sub_menu p {
	color: #32a064;
}
@media screen and (max-width: 680px) {
	.side-menu-btn {
		width: 40px;
		height: 40px;
	}
	.side-menu-btn span:nth-of-type(1) {
		top: 11px;
	}
	.side-menu-btn span:nth-of-type(2) {
		top: 28px;
	}
	.side-menu-btn span:nth-of-type(3) {
		bottom: 19px;
	}
	.side-open .side-menu-btn span:nth-of-type(3) {
		bottom: 8px;
	}
}


.int_box {
}
.int_box .int_block {
	border-top: 1px solid #000;
}
.int_box .int_block:last-child {
	border-bottom: 1px solid #000;
}
.int_box .int_block dl {
	display: flex;
	justify-content: flex-start;
	padding: 20px 10px;
}
.int_box .int_block dl dt {
	min-width: 200px;
}
.int_box .int_block dl dt,
.int_box .int_block dl dd,
.int_box .int_block dl dd li {
	font-size: 14px;
}
.int_box .int_block dl dd li {
	margin-right: 2em;
	margin-bottom: 10px;
}
.new_graduate .int_box .box_link,
.career .int_box .box_link {
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 20px;
}
.new_graduate .int_box .box_link {
	color: #c3a0e1;
}
.career .int_box .box_link {
	color: #ffaa00;
}
.int_box .int_block ul li a {
	text-decoration: none;
}
.new_graduate .int_box .int_block ul li a {
	color: #41b9c8;
}
.career .int_box .int_block ul li a {
	color: #32a064;
}
@media screen and (max-width: 680px) {
	.int_box {
		margin-bottom: 40px;
	}
	.int_box .int_block dl {
		flex-direction: column;
	}
	.int_box .int_block dl .inline {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.int_box .int_block dl .inline li {
		width: 40%;
	}
}

.inq_btn {
	margin-top: 120px;
}
.inq_btn a {
	color: #69b7c6;
	font-size: 24px;
	font-weight: bold;
	position: relative;
	display: inline-block;
	border-radius: 14px;
	padding: 40px 120px 40px 60px;
	background-color: #fff;
	text-decoration: none;
}
.inq_btn a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 16px;
	left: auto;
	width: 60px;
	height: 60px;
	margin: auto;
	border-radius: 30px;
	background-color: #69b7c6;
}
.career .inq_btn a {
	color: #32a064;
}
.career .inq_btn a::before {
	background-color: #32a064;
}
.inq_btn a::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 42px;
	width: 9px;
	height: 9px;
	margin: auto;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	box-sizing: border-box;
}
.inq_btn a:hover{
	color: #fff;
	background-color: #69b7c6;
}
.career .inq_btn a:hover{
	background-color: #32a064;
}
.career .inq_btn a:hover::after {
	border-top: 2px solid #32a064;
	border-right: 2px solid #32a064;
}
.inq_btn a:hover::before {
	background-color: #fff;
}
.inq_btn a:hover::after {
	border-top: 2px solid #69b7c6;
	border-right: 2px solid #69b7c6;
}
@media screen and (max-width: 680px) {
	.inq_btn a {
		font-size: 22px;
		padding: 20px 60px 20px 10px;
	}
	.inq_btn a::before {
		width: 40px;
		height: 40px;
	}
	.inq_btn a::after {
		right: 32px;
	}
}



header.site_head {
}
.fixed .g_nav_main,
.fixed header.site_head .g_nav,
.lower .g_nav_main,
.lower header.site_head .g_nav {
	height: 60px;
}
header.site_head .g_nav {
	background-color: rgb(0 0 0 / 0%);
	padding-right: 60px;
}
.fixed header.site_head .g_nav {
	background-color: #ffffffd6;
}
header.site_head .g_nav:after {
	display: none;
}
.g_nav_main li.menu_item.current a:after {
	display: none;
}

.side-menu .white_btn,
.side-menu .parple_btn {
	display: none !important;
}
.g_nav_main .side_menu {
	display: none;
}
.side-menu .g_nav_main .side_menu {
	display: block;
}
@media screen and (max-width: 680px) {
	header.site_head .g_nav,
	header.site_head .g_nav_main,
	.fixed header.site_head .g_nav,
	.lower header.site_head .g_nav {
		height: 46px;
	}
	.fixed .g_nav_main,
	.fixed header.site_head .g_nav,
	.lower .g_nav_main,
	.lower header.site_head .g_nav {
		height: 40px;
	}
	header.site_head .g_nav .logo img,
	.fixed header.site_head .g_nav .logo img,
	.lower header.site_head .g_nav .logo img {
		width: 220px;
	}
}

.parple_btn a,
.white_btn a {
	text-align: center;
	display: inline-block;
	width: 180px;
	margin: 4px 10px;
	box-shadow: 0 0 25px #cacaca;
	padding: 10px 12px;
	border-radius: 40px;
}
.parple_btn a {
	font-size: 14px;
	color: #fff;
	background-color: #c3a0e1;
}
.white_btn a {
	background-color: #fff;
}
.white_btn img {
	width: 80%;
}
.btm_banner {
	position: fixed;
	bottom: 0;
	z-index: 9999;
	width: 100%;
	padding: 10px 0;
}
.btm_banner ul {
	display: flex;
}
.btm_banner .parple_btn a,
.btm_banner .white_btn a {
	width: 160px;
}


.btn_list {
	display: flex;
	justify-content: center;
}
.btn_list a {
	min-width: 180px;
	text-align: center;
	display: inline-block;
	padding: 4px 40px 4px 20px;
	margin: 4px 12px;
	color: #fff;
	border: 1px solid #fff;
	background-color: #c3a0e1;
	border-radius: 30px;
	text-decoration: none;
	position: relative;
}
.btn_list a::after {
	content: "";
	width: 6px;
	height: 6px;
	border: 0;
	border-bottom: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	margin: auto;
}
.btn_list a:hover {
	color: #c3a0e1;
	border: 1px solid #c3a0e1;
	background-color: #fff;
}
.btn_list a:hover::after {
	border-bottom: solid 2px #c3a0e1;
	border-right: solid 2px #c3a0e1;
}
@media screen and (max-width: 680px) {
	.btn_list {
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.btn_list li {
		width: 50%;
	}
	.btn_list li a {
		min-width: 150px;
		font-size: 12px;
	}
}

.recruit_slider {
}
.recruit_slider img {
	margin: 20px;
	border-radius: 30px;
}


.en {
	background-color: #fff;
	background-image: url(/recruit/new_graduate/images/bg_en.png);
	background-clip: text;
	-webkit-background-clip: text;

	color: transparent;
	animation: moveBg 15s linear infinite;
}
.career .en {
	background-image: url(/recruit/career/images/bg_en.png);
}
@keyframes moveBg {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 50% 30%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 30% 70%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.en span {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 80px;
}
@media screen and (max-width: 680px) {
	.en {
		text-align: center;
	}
	.en span {
		font-size: 60px;
	}
}



.main_visual {
	position: relative;
}
.slide_block {
	position: relative;
}
.main_title {
	font-family: "Kiwi Maru", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 80px;
	text-shadow: 0px 0px 40px rgb(64 186 200);
	position: absolute;
	color: #fff;
	bottom: -60px;
	left: 4%;
}
.career .main_title {
	text-shadow: 0px 0px 40px rgb(50 160 101);
}
.top_read_block {
	font-size: 26px;
	line-height: 56px;
	font-weight: bold;
	padding: 8% 40px 0;

	max-width: 1500px;
	width: 90%;
}

.read_text {
	font-size: 36px;
}

.about_block {
	padding-bottom: 0;
}
.about_block img {
	border-radius: 10px;
}
@media screen and (max-width: 680px) {
	.main_title {
		font-size: 42px;
		line-height: 48px;
		bottom: -20%;
	}
	.top_read_block {
		font-size: 18px;
		line-height: 36px;
		text-align: left;
		padding: 20% 10px 4%;
	}
	.about_block p {
		padding-top: 20px;
	}
}


.num_block .block_line.wrap.num3 .block_col {
	width: 32%;
	margin: 0.5%;
}
.num_block .block_col {
	background-color: #fff;
	border-radius: 10px;
	padding: 20px 0;
	text-align: center;
	position: relative;
}
.num_block .title {
	font-size: 32px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.num_block .title img {
	width: 50px;
	margin-right: 14px;
}
.num_block .block_col p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-style: normal;
}
.num_block .block_col img {
	width: 40%;
}
.num_block .block_col p:first-child {
	font-size: 24px;
}
.num_block .block_col .num {
	font-size: 24px;
	color: #000;
	margin-bottom: 0;
	line-height: normal;
}
.num_block .block_col .num span {
	font-size: 86px;
	color: #c3a0e1;
	margin: 0 6px;
}
.career .num_block .block_col .num span {
	color: #ffaa00;
}

.num_block .block_col.data_department,
.num_block .block_col.data_m_w {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
.num_block .block_col.data_department .data_block,
.num_block .block_col.data_m_w .data_block {
	position: absolute;
}
.num_block .block_col.data_department img,
.num_block .block_col.data_m_w img {
	width: 60%;
}
.num_block .block_col.data_department .data_block p,
.num_block .block_col.data_m_w .data_block p {
	font-size: 18px;
	margin-bottom: 0;
}
.num_block .block_col.data_department .data_block .num,
.num_block .block_col.data_m_w .data_block .num {
	line-height: 56px;
}
.num_block .block_col.data_department .data_block .num span,
.num_block .block_col.data_m_w .data_block .num span {
	font-size: 56px;
}

.num_block .block_col.data_department .data .data_block:nth-child(1) {
	top: 20%;
	left: 2%;
}
.num_block .block_col.data_department .data .data_block:nth-child(2) {
	top: 52%;
	left: 7%;
}
.num_block .block_col.data_department .data .data_block:nth-child(3) {
	top: 22%;
	right: 2%;
}

.data_m_w {
}
.num_block .block_col.data_m_w .data .data_block:nth-child(1) {
	top: 58%;
	left: 2%;
}
.num_block .block_col.data_m_w .data .data_block:nth-child(2) {
	top: 18%;
	right: 5%;
}

@media screen and (max-width: 680px) {
	.num_block .title {
		flex-direction: column;
	}
	.num_block .title img {
		margin-right: 0;
	}
	.num_block .block_line.wrap.num3 {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.num_block .block_line.wrap.num3 .block_col {
		width: 48%;
		margin: 1%;
	}
	.num_block .block_col .num {
		font-size: 16px;
	}
	.num_block .block_col .num span {
		font-size: 36px;
	}
	.num_block .block_col p:first-child {
		font-size: 16px;
	}
	.num_block .block_col.data_department .data_block .num,
	.num_block .block_col.data_m_w .data_block .num {
		line-height: 26px;
	}
	.num_block .block_col.data_department .data_block .num span,
	.num_block .block_col.data_m_w .data_block .num span {
		font-size: 26px;
	}
	.num_block .block_col.data_department .data_block p,
	.num_block .block_col.data_m_w .data_block p {
		font-size: 16px;
	}
	.num_block .block_col.data_department p.fos,
	.num_block .block_col.data_m_w p.fos {
		margin: 0;
	}
}


.main_block {
	position: relative;
	padding-bottom: 50px;
}
.main_block img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	object-position: top;
}
.main_block .number {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-box: auto;
	background: #41b9c8;
	padding: 6px 10px;
	border-radius: 6px;
	display: inline-block;
	margin-bottom: 20px;
}
.main_block .voice_text_block {
	background-color: #fff;
	border-radius: 20px;
	padding: 20px 40px;
	position: absolute;
	bottom: -35%;
	right: 4%;
}
.main_block .voice_text_block .grad_text﻿ {
	font-size: 32px;
	font-family: "Kiwi Maru", serif;
	font-weight: 500;
	font-style: normal;
	margin-bottom: 20px;
	line-height: 46px;
	background: linear-gradient(345deg, #c3a0e1 0%, #41b9c8 75%);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}
@media screen and (min-width: 1700px) {
	.main_block img {
		height: 550px;
	}
}
@media screen and (max-width: 680px) {
	.main_block .voice_text_block .grad_text﻿ {
		font-size: 24px;
	}
}
.main_block .voice_text_block .main_job {
	font-weight: bold;
	color: #c3a0e1;
}
.main_block .voice_text_block .job {
	font-weight: bold;
}
.main_block .voice_text_block .name {
	font-size: 14px;
}
.c_voice_main .main_block .number {
	background: #32a064;
}
.c_voice_main .main_block .voice_text_block .main_job {
	color: #ffaa00;
}
.c_voice_main .main_block .voice_text_block .grad_text﻿ {
	background: linear-gradient(345deg, #ffaa00 0%, #32a064 75%);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}
@media screen and (max-width: 680px) {
}

.inline .col:first-child {
	margin-right: 4%;
}
@media screen and (max-width: 680px) {
	.inline .col:first-child {
		margin-right: 0;
		margin-bottom: 4%;
	}
	.main_block .voice_text_block {
		padding: 10px 20px;
		position: relative;
		bottom: 0;
		right: 0;
		border-radius: 0;
	}
	.main_block .voice_text_block .job {
		font-size: 14px;
	}
}

.q_block {
	margin: 20% auto 100px;
}
.q_block + .q_block {
	margin: 100px auto;
}
.q_block .inline {
}
.q_block .inline .col {
	flex: 1;
	position: relative;
}
.q_block .inline .col img {
	border-radius: 10px;
}
.q_block .inline .col .title {
	font-size: 28px;
	position: relative;
	width: 100%;
	padding: 20px;
	font-weight: bold;
	z-index: 2;
}
.q_block .inline .col p {
	font-size: 18px;
}

.q_block .inline .col .title .num {
	font-family: "Kiwi Maru", serif;
	font-weight: 500;

	font-size: 80px;
	opacity: 0.8;
	color: #41b9c885;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.c_voice_main .q_block .inline .col .title .num {
	color: #32a06482;
}

.q_block + .q_block img {
	width: 80%;
}
.q_block + .q_block  .inline .col:first-child {
	text-align: right;
}
.q_block .block + .block {
	margin-top: 120px;
}
@media screen and (max-width: 680px) {
	.q_block {
		margin: 0 auto 50px;
	}
	.q_block + .q_block {
		margin: 50px auto;
	}
	.q_block .inline {
		flex-direction: column-reverse;
	}
	.q_block .inline .col .title {
		font-size: 18px;
		padding-right: 0;
	}
	.q_block .inline .col {
		margin-top: 40px;
	}
	.q_block .inline .col p {
		font-size: 15px;
	}
}


.page_nav {
	padding: 6% 0;
	width: 70%;
	margin: auto;
}
.page_nav .inline {
	display: flex;
	justify-content: space-evenly;
}
.page_nav .back a {
	padding: 1em 0 1em 80px;
}
.page_nav .back a::before {
	left: 0;
	right: auto;
}
.page_nav .back a::after {
	left: 29px;
	right: auto;
	transform: translateY(-50%) rotate(226deg);
}

.page_nav .back a,
.page_nav .next a  {
	color: #fff;
	text-decoration: none;
}
.page_nav .back a::before,
.page_nav .next a::before {
	background-color: #fff;
}
.page_nav .back a::after,
.page_nav .next a::after {
	border-top: 2px solid #c3a0e1;
	border-right: 2px solid #c3a0e1;
}
.page_nav .back a:hover,
.page_nav .next a:hover  {
	color: #c3a0e1;
}
.page_nav .back a:hover::before,
.page_nav .next a:hover::before {
	background-color: #c3a0e1;
}
.page_nav .back a:hover::after,
.page_nav .next a:hover::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.page_nav .next {
}

.c_voice_main .link_text a::before {
	border: 1px solid #ffaa00;
}
.c_voice_main .page_nav .back a::after,
.c_voice_main .page_nav .next a::after {
	border-top: 2px solid #ffaa00;
	border-right: 2px solid #ffaa00;
}
.c_voice_main .page_nav .back a:hover,
.c_voice_main .page_nav .next a:hover  {
	color: #ffaa00;
}
.c_voice_main .page_nav .back a:hover::before,
.c_voice_main .page_nav .next a:hover::before {
	background-color: #ffaa00;
}
.c_voice_main .page_nav .back a:hover::after,
.c_voice_main .page_nav .next a:hover::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

@media screen and (max-width: 680px) {
	.page_nav .inline {
		justify-content: space-between;
		flex-direction: row;
	}

	.link_text a::before {
		width: 40px;
		height: 40px;
	}
	.link_text a::after {
		right: 18px;
	}
	.page_nav {
		width: 80%;
		padding-bottom: 10%;
	}
	.page_nav .back a {
		padding: 1em 0 1em 50px
	}
	.page_nav .back a::after {
		left: 18px;
	}
}

.message_block {
	background-color: #fff;
	padding: 20px 40px 0;
	border-radius: 40px;
	background-image: url(/recruit/new_graduate/images/message.png);
	background-repeat: no-repeat;
	background-position: 20px 30px;
	background-size: 370px;
}
.career .message_block,
.c_voice_main .message_block {
	background-image: url(/recruit/career/images/c_message.png);
}
.message_block  .col_3 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.message_block .title {
	font-family: "Kiwi Maru", serif;
	font-weight: 500;
	font-size: 32px;
	color: #41b9c8;
	margin-bottom: 40px;
}
.c_voice_main .message_block .title {
	color: #32a064;
}
.message_block p {
}
.message_block .link_text a {
	color: #c3a0e1;
}
.message_block .link_text a::before {
	background-color: #c3a0e1;
	border: 1px solid #fff;
}
.career .message_block .link_text a {
	color: #ffaa00;
}
.career .message_block .link_text a::before {
	background-color: #ffaa00;
}
.message_block .link_text a::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.message_block .link_text a:hover {
	color: #9cf0e4;
}
.message_block .link_text a:hover::before {
	background-color: #9cf0e4;
	border: 1px solid #9cf0e4;
}
.message_block .link_text a:hover::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.career .message_block .link_text a:hover {
	color: #c1e2d0;
}
.career .message_block .link_text a:hover::before {
	background-color: #c1e2d0;
	border: 1px solid #c1e2d0;
}
.career .message_block .link_text a:hover::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.n_voice_main .message_block .col:last-child,
.c_voice_main .message_block .col:last-child {
	display: flex;
	align-items: flex-end;
}
.c_voice_main .message_block .col:last-child img{
	width: 90%;
}

.sec_block.message_block {
	padding: 60px 40px;
}
.sec_block.message_block img {
	border-radius: 20px;
	margin-bottom: -40px;
}
.sec_block.message_block .title {
	margin-top: 40px;
	color: #000;
}
@media screen and (max-width: 680px) {
	.message_block {
		background-size: 260px;
		padding: 40px 20px 0;
	}
	.message_block .title {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.n_voice_main .message_block .col:last-child,
	.c_voice_main .message_block .col:last-child {
		justify-content: flex-end;
	}
	.c_voice_main .message_block .col:last-child img,
	.message_block .col_3 + .col img {
		width: 50%;
	}
	.sec_block.message_block {
		padding: 60px 20px;
	}
}



.entry_block {
}
.entry_block .dl_wrap dt,
.entry_block .dl_wrap dd {
	width: auto;
	color: #fff;
	border-bottom: 0;
	padding: 0;
}
.entry_block .dl_wrap dt {
	padding-right: 0;
}
.entry_block .dl_wrap dd {
	color: #000;
}
@media screen and (max-width: 680px) {
	.employment_block .dl_wrap dl,
	.entry_block .dl_wrap dl {
		padding: 16px 0;
	}
	.employment_block .dl_wrap dt,
	.entry_block .dl_wrap dt {
		font-size: 12px;
	}
	.employment_block .dl_wrap dt {
		color: #b1b1b1;
	}
}

.entry_btn_block {
}
.entry_btn_block p {
	font-size: 20px;
	color: #000;
}
.entry_btn_block a {
	min-width: 280px;
	background-color: #fff;
	border-radius: 40px;
	display: inline-block;
	padding: 20px 30px 30px;
}
@media screen and (max-width: 680px) {
	.entry_btn_block p {
		font-size: 22px;
	}
	.entry_btn_block a {
		padding: 10px 30px 20px;
	}
}

.basic_block {
	padding: 20px;
	background-color: #fff;
	border-radius: 20px;
}
.title_block {
	position: relative;
	padding-top: 20px;
}
.title_block h1 {
	position: absolute;
	top: 40%;
	left: 50px;
  margin: auto 0;
	font-size: 32px;
}
.title_block .sub_en {
	color: #fff;
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 100px;
	line-height: 100px;
}
@media screen and (max-width: 680px) {
	.basic_block {
		padding: 20px 10px;
	}
	.title_block h1 {
		top: 20px;
		left: 0;
		font-size: 22px;
	}
	.title_block .sub_en{
		font-size: 45px;
		line-height: 44px;
	}
}

.faq_block {
}
.faq_block h2 {
	font-size: 22px;
	color: #c3a0e1;
	border-bottom: 1px solid #787878;
}
.c_basic_main .faq_block h2 {
	color: #ffaa00;
}
.faq_block.block:last-child {
	margin-bottom: 40px;
}
.faq_wrap dl {
	border-bottom: 1px solid #ccc;
	margin: 0;
	padding: 0;
}
.faq_wrap dt {
	color: #000;
	position: relative;
	cursor: pointer;
	padding: 25px 54px;
	font-weight: bold;
	transition: background 0.3s ease;
}
.faq_wrap dt::before {
	content: "Q.";
	position: absolute;
	top: 10px;
	left: 10px;
	color: #41b9c8;
	font-weight: bold;
	font-size: 30px;
}
.c_basic_main .faq_wrap dt::before {
	color: #32a064;
}
.faq_wrap dt::after {
	content: "";
	transition: transform 0.3s ease;

	width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
	right: 15px;
  bottom: 0;
  margin: auto;
}
.faq_wrap dt.active::after {
	transform: translateY(-50%) rotate(225deg);
}
.faq_wrap dd {
	display: none;
	padding: 12px 20px 12px 50px;
	background: #f9f9f9;
	line-height: 1.6;
	position: relative;
}
.faq_wrap dd::before {
	content: "A.";
	position: absolute;
	top: 0px;
	left: 10px;
	color: #c3a0e1;
	font-weight: bold;
	font-size: 30px;
}
.c_basic_main .faq_wrap dd::before {
	color: #ffaa00;
}
@media screen and (max-width: 680px) {
	.faq_block h2 {
		font-size: 18px;
	}
	.faq_wrap dt {
		padding: 25px 50px;
		font-size: 16px;
	}
	.faq_wrap dt::before {
		font-size: 24px;
		top: 14px;
	}
	.faq_wrap dd {
		font-size: 13px;
	}
	.faq_wrap dd::before {
		font-size: 24px;
	}
}

.system_block {
}
.system_block h2 {
	color: #787878;
	font-size: 20px;
	padding: 10px 12px;
	border: 2px solid #c8c8c8;
	margin-bottom: 20px;
}
.system_block img {
	border-radius: 20px;
	height: auto;
}
.system_block .no_radius img {
	width: 80%;
	border-radius: 0;
}
.system_block .block {
	padding: 6% 0 0;
}
.system_block .block:first-child {
	padding-top: 2%;
}
.system_block .block:last-child {
	padding-bottom: 6%;
}
@media screen and (max-width: 680px) {
	.system_block h2 {
		font-size: 15px;
		padding: 10px 6px;
	}
	.system_block .no_radius img {
		width: 100%;
	}
}


.employment_block {
	padding-top: 50px;
}
.employment_block h2 {
	font-size: 22px;
	color: #c3a0e1;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}
.employment_block .block {
	padding-top: 60px;
	margin-top: 0;
}
.employment_block .block:last-child {
	padding-bottom: 60px;
}
@media screen and (max-width: 680px) {
	.employment_block {
		padding: 50px 10px 0;
	}
	.employment_block h2 {
		font-size: 18px;
	}
	.employment_block .block {
		margin: 0 auto;
	}
  .employment_block * +.block:first-of-type:not(h2 +.block){
		margin-top: 0;
	}
}

footer {
	margin-top: 0;
}
footer nav ul {
	justify-content: flex-start;
}
footer nav li {
	text-align: left;
}
footer nav li a {
	color: #41b9c8;
}
footer .col_2 {
}
footer .col_2 p {
	color: #41b9c8;
	font-size: 12px;
	margin-bottom: 6px;
}
footer .col_2 .col:first-child {
	border-right: 1px solid #ddd;
	margin-right: 40px;
}

footer nav.career_footer li a {
	color: #32a064;
}
footer .col_2.career_footer p {
	color: #32a064;
}

footer .foot_list {
}
footer .career_footer .foot_list p,
footer .foot_list p {
	color: #c8c8c8;
	margin-bottom: -6px;
}
footer .foot_list dl {
	margin-bottom: 10px;
}
@media screen and (max-width: 680px) {
	footer .inner.inline {
		flex-direction: column-reverse;
	}
	footer .col_2 p {
		padding-left: 5px;
	}
	footer .col_2 .col:first-child {
		border-right: 0;
		margin-right: 0;
	}
	footer nav li {
		width: auto;
	}
	footer ul li {
		border-bottom: 1px solid #ddd;
	}
	footer .foot_list {
		width: 95%;
		margin: 0 auto;
	}
	footer .foot_list dl dt {
		padding-top: 10px;
	}
	footer .foot_new_graduate {
		padding-bottom: 120px;
	}
}
