@charset "UTF-8";

/*================================================
 *  リクルート コラム（/recruit/column/）
 ================================================*/


/* ▽コラム共通 */
#column_intro {
	text-align: center;
	padding: 80px 0 60px;
}
#column_intro h1,
#column_intro h3 {
	font-size: 30px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 1em;
}
#column_intro p {
	font-size: 20px;
	line-height: 2;
}

.column_section {
	padding: 80px 0;
}
.column_section + .column_section {
	border-top: 1px solid #ddd;
}
.column_section .inner {
	max-width: 940px;
	margin: 0 auto;
}
.column_section h3 {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 1em;
}
.column_section h4 {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 0.6em;
	padding-left: 16px;
	border-left: 4px solid #0071bc;
}
.column_section p {
	font-size: 18px;
	line-height: 2;
}
.column_section p + p {
	margin-top: 1em;
}
.column_section .img_text_box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 40px;
}
.column_section .img_text_box .photo {
	width: 45%;
	overflow: hidden;
}
.column_section .img_text_box .photo img {
	width: 100%;
	height: auto;
	display: block;
}
.column_section .img_text_box .text {
	width: 50%;
}
.column_section .img_text_box.reverse {
	flex-direction: row-reverse;
}


/* ▽タイムライン */
.column_timeline {
	max-width: 740px;
	margin: 40px auto 0;
}
.column_timeline dl {
	display: flex;
	align-items: flex-start;
	padding: 24px 0;
	border-bottom: 1px solid #ddd;
}
.column_timeline dl:first-child {
	border-top: 1px solid #ddd;
}
.column_timeline dt {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: #0071bc;
	min-width: 100px;
	letter-spacing: 0.04em;
}
.column_timeline dd {
	flex: 1;
}
.column_timeline dd h5 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 0.3em;
}
.column_timeline dd p {
	font-size: 16px;
	line-height: 1.8;
}


/* ▽Q&A */
.column_qa {
	max-width: 940px;
	margin: 0 auto;
}
.column_qa dl {
	padding: 40px 0;
	border-bottom: 1px solid #ddd;
}
.column_qa dl:first-child {
	border-top: 1px solid #ddd;
}
.column_qa dt {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.6;
	padding-left: 40px;
	position: relative;
	margin-bottom: 0.8em;
}
.column_qa dt::before {
	content: "Q";
	position: absolute;
	left: 0;
	top: 0;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 28px;
	color: #0071bc;
}
.column_qa dd {
	font-size: 18px;
	line-height: 2;
	padding-left: 40px;
	position: relative;
}
.column_qa dd::before {
	content: "A";
	position: absolute;
	left: 0;
	top: 0;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 28px;
	color: #2e9568;
}


/* ▽テーブル */
.column_table {
	width: 100%;
	font-size: 18px;
	line-height: 1.75;
	margin-top: 30px;
}
.column_table th {
	border-top: 1px solid #0071bc;
	color: #0071bc;
	width: 220px;
	padding: 15px 8px;
	font-weight: bold;
}
.column_table td {
	border-top: 1px solid #999;
	border-left: 5px solid #fff;
	padding: 15px;
	text-align: left;
}
.column_table tr:last-child th,
.column_table tr:last-child td {
	border-bottom: 1px solid #999;
}


/* ▽丸リスト（手当など） */
.circle_list {
	width: 100%;
	margin-top: 30px;
	font-size: 18px;
	line-height: 1.75;
}
.circle_list li {
	position: relative;
	padding: 15px 15px 15px 34px;
	text-indent: 0;
	list-style: none;
	border-top: 1px solid #999;
}
.circle_list li:last-child {
	border-bottom: 1px solid #999;
}
.circle_list li::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 26px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #0071bc;
}


/* ▽ステップ */
.column_steps {
	max-width: 740px;
	margin: 40px auto 0;
	counter-reset: step;
}
.column_steps .step_item {
	display: flex;
	align-items: flex-start;
	padding: 30px 0;
	border-bottom: 1px solid #ddd;
}
.column_steps .step_item:first-child {
	border-top: 1px solid #ddd;
}
.column_steps .step_num {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	background: #0071bc;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-right: 24px;
	line-height: 1.2;
}
.column_steps .step_num span {
	font-size: 22px;
}
.column_steps .step_body {
	flex: 1;
}
.column_steps .step_body h5 {
	font-size: 20px;
	font-weight: bold;
	color: #0071bc;
	margin-bottom: 0.3em;
}
.column_steps .step_body p {
	font-size: 16px;
	line-height: 1.8;
}


/* ▽コラムナビ */
.column_nav {
	max-width: 940px;
	margin: 60px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.column_nav a {
	display: inline-block;
	border: 1px solid #0071bc;
	color: #0071bc;
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s;
	border-radius: 100vh;
}
.column_nav a:hover {
	background: #0071bc;
	color: #fff;
}


/* ▽CTAボタン */
.column_cta {
	text-align: center;
	padding: 60px 0 80px;
}
.column_cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #0071bc;
	color: #0071bc;
	border-radius: 100vh;
	font-size: 18px;
	font-weight: 700;
	padding: 16px 50px;
	position: relative;
	transition: all 0.3s;
}
.column_cta a:hover {
	background: #0071bc;
	color: #fff;
}
.column_cta a + a {
	margin-left: 20px;
}



/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:500px) {

#column_intro {
	padding: 10vw 7.5vw 8vw;
}
#column_intro h1,
#column_intro h3 {
	font-size: 5.6vw;
}
#column_intro p {
	font-size: 4vw;
	line-height: 1.8;
	text-align: left;
}

.column_section {
	padding: 10vw 7.5vw;
}
.column_section h3 {
	font-size: 5.4vw;
}
.column_section h4 {
	font-size: 4.6vw;
}
.column_section p {
	font-size: 3.8vw;
	line-height: 1.8;
}
.column_section .img_text_box {
	margin-top: 6vw;
}
.column_section .img_text_box .photo,
.column_section .img_text_box .text {
	width: 100%;
}
.column_section .img_text_box .photo {
	margin-bottom: 5vw;
}
.column_section .img_text_box.reverse {
	flex-direction: column;
}

.column_timeline dl {
	padding: 5vw 0;
}
.column_timeline dt {
	font-size: 5vw;
	min-width: 18vw;
}
.column_timeline dd h5 {
	font-size: 4.2vw;
}
.column_timeline dd p {
	font-size: 3.6vw;
}

.column_qa dt {
	font-size: 4.4vw;
	padding-left: 8vw;
}
.column_qa dt::before {
	font-size: 5.6vw;
}
.column_qa dd {
	font-size: 3.8vw;
	padding-left: 8vw;
}
.column_qa dd::before {
	font-size: 5.6vw;
}
.column_qa dl {
	padding: 6vw 0;
}

.column_table {
	font-size: 3.8vw;
}
.column_table th {
	width: 25vw;
	padding: 3vw 1vw;
}
.column_table td {
	padding: 3vw;
}

.circle_list {
	margin-top: 6vw;
	font-size: 3.8vw;
}
.circle_list li {
	padding: 3vw 3vw 3vw 7.5vw;
}
.circle_list li::before {
	left: 2vw;
	top: 5.2vw;
	width: 2vw;
	height: 2vw;
}

.column_steps .step_item {
	padding: 5vw 0;
}
.column_steps .step_num {
	width: 12vw;
	height: 12vw;
	font-size: 2.8vw;
	margin-right: 4vw;
}
.column_steps .step_num span {
	font-size: 4.4vw;
}
.column_steps .step_body h5 {
	font-size: 4.2vw;
}
.column_steps .step_body p {
	font-size: 3.6vw;
}

.column_nav {
	margin-top: 8vw;
	gap: 2.5vw;
	padding: 0 7.5vw;
}
.column_nav a {
	font-size: 3.4vw;
	padding: 2vw 4vw;
}

.column_cta {
	padding: 8vw 7.5vw 12vw;
}
.column_cta a {
	font-size: 3.8vw;
	padding: 3.5vw 8vw;
	width: 100%;
}
.column_cta a + a {
	margin-left: 0;
	margin-top: 4vw;
}

}