@charset "utf-8";

/*===========================================================
	フォント読み込み
===========================================================*/

@import url('//fonts.googleapis.com/css?family=Noto+Sans+JP:400,700|Noto+Serif+JP:400,700&display=swap');

/*===========================================================
	基本設定
===========================================================*/

html {
	font-size: 62.5%;
}

body {
	color: #3e3a39;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	line-height: 1.8;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

a {
	text-decoration: none;
}

ul,
li {
	list-style: none;
}

.block_pc {
	display: block;
}

.block_sp {
	display: none;
}

/*===========================================================
	ヘッダー
===========================================================*/

header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(255,255,255,0.8);
	z-index: 200;
}

#head_inner {
	margin: 0 auto;
	padding: 0 10px;
	width: 1040px;
	height: 134px;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}

#header_logo {
	margin-top: 30px;
	margin-right: 10px;
	width: 130px;
	height: 59px;
	display: block;
	background: url("../images/common/elcc_logo.svg") no-repeat center center;
	background-size: contain;
	text-indent: -9999px;
}

#header_logo:hover {
	opacity: 0.8;
}

#head_inner nav {
	margin-top: 25px;
	width: 736px;
	display: flex;
	flex-direction: column;
}

#head_navi01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#head_navi01 li {
	transition: transform 0.3s;
}

#head_navi01 li:not(#header_tel):hover {
	transform: scale(1.1);
}

#head_navi01 .balloon {
	padding: 0 0.8em;
	display: block;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.4);
	color: #3e3a39;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 36px;
	white-space: nowrap;
}

#head_navi01 .balloon.link_line {
	color: #00b900;
}

#head_navi01 .balloon img {
	margin-right: 0.5em;
	vertical-align: middle;
}

#header_tel {
	margin-left: 10px;
	font-size: 1rem;
	text-align: right;
}

#header_tel img {
	margin-bottom: 5px;
	width: 227px;
}

#head_navi02 {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}

#head_navi02 li {
	line-height: 1;
}

#head_navi02 li.v_line {
	border-left: solid 1px #3e3a39;
}

#head_navi02 a {
	position: relative;
	color: #3e3a39;
	font-size: 1.45rem;
	font-weight: bold;
	text-shadow: 1.5px 2px 4px rgba(0,0,0,0.2);
}

#head_navi02 a:hover {
	color: #19a3a2;
}

#head_navi02 a::after {
	content: "";
	display: none;
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;
	background-color: #19a3a2;
}

#about .about a,
#faq .faq a,
#news .news a,
#seminar .seminar a,
#column .column a,
#check .check a {
	color: #19a3a2;
}

#about .about a::after,
#faq .faq a::after,
#news .news a::after,
#seminar .seminar a::after,
#column .column a::after,
#check .check a::after {
	display: block;
}

#menu_button {
	display: none;
}

#sp_navi_box {
	display: none;
}

/* =======================================
	fixed menu
======================================= */

#fixed_menu {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 100;
}

#fixed_menu li + li {
	margin-top: 5px;
}

#fixed_menu a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	background-color: #e8f6f6;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.4);
	color: #3e3a39;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	transition: background 0.2s;
}

#fixed_menu a:hover {
	background-color: #BCF1F1;
}

#fixed_menu a img {
	margin-top: 5px;
	width: 32px;
}

/* =======================================
	メインコンテンツ
======================================= */

main {
	padding-top: 134px;
}

section {
	margin: 0 auto;
	padding: 80px 0;
	min-width: 1000px;
	background-color: #ffffff;
}

section:last-child {
	padding-bottom: 0;
}

section:nth-of-type(even) {
	background: url("../images/common/bg_image_stripe.png") repeat top center;
}

.section_inner {
	margin: 0 auto;
	padding: 0 10px;
	width: 1000px;
}

.box_cloud {
	border-radius: 8px;
	box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.4);
}

.content_title_h3 {
	text-align: center;
}

.content_title_h3 > span {
	margin: 0 auto 1em;
	padding: 0 0.2em 8px;
	display: inline-block;
	position: relative;
	font-size: 3.4rem;
	line-height: 1;
}

.content_title_h3 > span > span {
	display: inline-block;
	position: absolute;
	left: 50%;
	bottom: -2em;
	font-size: 1.2rem;
	white-space: nowrap;
	transform: translateX(-50%);
}

.content_title_h3 > span::after {
	content: "";
	width: 100%;
	height: 3px;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #19a3a2;
}

.more_link {
	margin: 0 auto;
	width: 100%;
	max-width: 505px;
	display: block;
	background-color: #d56a80;
	border-radius: 8px;
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 50px;
	box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.4);
	text-shadow: 1.5px 2px 4px rgba(0,0,0,0.2);
}

.more_link:hover {
	opacity: 0.8;
}

.more_link::after {
	content: url("../images/common/more_link_arrow.svg");
	margin-left: 10px;
	width: 16px;
	display: inline-block;
	vertical-align: middle;
	filter: drop-shadow(1.5px 2px 3px rgba(0,0,0,0.3));
}

#back_link {
	margin: 0 auto;
	width: 100%;
	max-width: 505px;
	display: block;
	background-color: #df8fa0;
	border-radius: 8px;
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 50px;
	box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.4);
	text-shadow: 1.5px 2px 4px rgba(0,0,0,0.2);
}

#back_link:hover {
	opacity: 0.8;
}

#back_link::before {
	content: url("../images/common/back_link_arrow.svg");
	margin-right: 10px;
	width: 16px;
	display: inline-block;
	vertical-align: middle;
	filter: drop-shadow(1.5px 2px 3px rgba(0,0,0,0.3));
}

.image_separation {
	margin: 100px auto 0;
	width: 100%;
	max-width: 1600px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.image_separation img {
	width: 25%;
}

#page_title {
	padding: 0;
	background-color: #ffffff;
	position: relative;
}

#page_title h2 {
	margin: 0 auto;
	max-width: 1280px;
	height: 414px;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#page_title h2 span {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 4.5rem;
	white-space: nowrap;
	transform: translateX(-50%) translateY(-50%);
}

/*===========================================================
	お役立ちコラム
===========================================================*/

#column_list {
	margin: 40px auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#column_list li {
	width: 316px;
}

#column_list a {
	padding-bottom: 40px;
	display: block;
	background-color: #ffffff;
	color: #3e3a39;
	overflow: hidden;
}

.column_image {
	width: 100%;
	height: 190px;
	position: relative;
	overflow: hidden;
}

.inner_image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-position: center center;
	background-size: cover;
	transition: transform 0.6s;
}

#column_list a:hover .inner_image {
	transform: scale(1.1);
}

.column_date {
	margin: 35px 30px 0;
}

.column_title {
	margin: 20px 30px 0;
	font-size: 1.8rem;
	font-weight: bold;
}

#column_list a:hover .column_title {
	text-decoration: underline;
}

/*===========================================================
	お問い合わせ
===========================================================*/

#contact_wrapper {
	margin: 40px auto 0;
	display: flex;
	justify-content: space-between;
}

#contact_image {
	width: 500px;
}

#contact_info {
	margin-left: 30px;
	width: 450px;
}

#contact_info h4 {
	color: #19a3a2;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1;
}

#contact_info h4:nth-of-type(2) {
	margin-top: 40px;
}

#contact_info p {
	margin: 6px auto 12px;
	font-size: 1.6rem;
}

/*===========================================================
	仙台市国家戦略特区 雇用労働相談センター
===========================================================*/

#sec_elcc {
	padding-bottom: 0;
}

#elcc_wrapper {
	display: flex;
	justify-content: space-between;
}

#elcc_info {
	width: 270px;
}

#elcc_logo {
	padding-bottom: 16px;
	border-bottom: solid 1px #3e3a39;
}

#elcc_info li {;
	text-align: center;
}

#elcc_name {
	margin-top: 18px;
	font-size: 1.1rem
}

#elcc_address {
	margin-top: 15px;
}

#elcc_tel {
	margin-top: 20px;
	font-size: 1rem;
	line-height: 2;
}

#elcc_tel img {
	width: 245px;
}

#email_address {
	margin: 10px auto 20px;
	font-size: 1.4rem;
}

#elcc_map {
	width: 645px;
}

#elcc_link {
	margin-top: 70px;
	display: flex;
	justify-content: center;
}

#elcc_link li {
	margin: 0 25px;
}

#elcc_link a {
	width: 230px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 1px #9e9c9c;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s;
}

#elcc_link a:hover {
	transform: scale(1.05);
}

#elcc_link li:first-of-type img {
	width: 165px;
}

#elcc_link li:nth-of-type(2) img {
	width: 182px;
}

#elcc_link li:nth-of-type(3) img {
	width: 156px;
}

/*===========================================================
	サンクスページ
===========================================================*/

#thanks_text {
	padding: 40px;
	border: solid 1px #3e3a39;
	border-radius: 8px;
	text-align: center;
}

/*===========================================================
	SNSシェアボタン
===========================================================*/

#content_sns_share_wrapper {
	padding-top: 60px;
	border-top: dotted 1px #3e3a39;
}

#content_sns_share {
	margin: 35px auto 0;
	display: flex;
	justify-content: center;
}

#content_sns_share li {
	margin: 0 10px;
	width: 155px;
}

#content_sns_share li a {
	height: 96px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #000000;
	text-align: center;
	transition: transform 0.3s;
}

#content_sns_share li a:hover {
	transform: scale(1.05);
}

#content_sns_share li a img {
	margin-bottom: 7px;
	width: 24px;
}

/*===========================================================
	ページャー
===========================================================*/

.wp-pagenavi {
	margin: 80px auto 160px;
	display: flex;
	justify-content: center;
}

.wp-pagenavi span,
.wp-pagenavi a {
	margin: 0 8px;
	padding: 0 0.4em;
	min-width: 38px;
	border: solid 1px #19a3a2;
	border-radius: 3px;
	font-size: 2rem;
	text-align: center;
	line-height: 36px;
}

.wp-pagenavi span {
	background-color: #19a3a2;
	color: #ffffff;
}

.wp-pagenavi a {
	color: #19a3a2;
}

.wp-pagenavi a:hover {
	background-color: #19a3a2;
	color: #ffffff;
}

/*===========================================================
	モーダルウィンドウ
===========================================================*/

/* モーダルウィンドウのスタイル */
.modal {
	padding: 10px;
	position:absolute;
	width:100%;
	height:100vh;
	top:0;
	left:0;
	display:none;
	z-index: 9999;
	box-sizing: border-box;
}

/* オーバーレイのスタイル */
.overLay {
	position:absolute;
	top:0;
	left:0;
	background:rgba(0,0,0,0.3);
	width:100%;
	height:100vh;
	z-index:10;
}

/* モーダルウィンドウの中身のスタイル */
.modal .modal_window {
	width: 100%;
	max-width: 500px;
	max-height: calc(100vh - 20px);
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #ffffff;
	border-radius: 12px;
	z-index: 11;
	transform: translate(-50%,-50%);
	overflow: hidden;
}

.modal .modal_window::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: solid 4px #19A3A2;
	border-radius: 12px;
	pointer-events: none;
}

#modal_title {
	background-color: #19A3A2;
	color: #ffffff;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	line-height: 50px;
}

#modal_inner {
	margin: 7px 4px 10px;
	padding: 14px 18px 9px;
	max-height: calc(100vh - 110px);
	overflow-y: auto;
}

.modal_window p {
	font-size: 1.2rem;
	line-height: 1.6;
}

#modal_head {
	background-color: #00B900;
	border-radius: 50px;
	color: #ffffff;
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 50px;
}

#modal_flex {
	margin-top: 14px;
	padding: 0 14px 20px;
	display: flex;
	justify-content: space-between;
	border-bottom: solid 1px #19A3A2;
}

#modal_flex01 {
	width: 260px;
	flex-grow: 0;
}

#modal_link {
	margin-top: 34px;
}

#modal_link a {
	display: block;
	border: solid 1px #00B900;
	border-radius: 7px;
	color: #00B900;
	text-align: center;
	line-height: 45px;
}

#modal_link a img {
	margin-left: 1em;
	vertical-align: middle;
}

#modal_flex02 {
	width: 145px;
	flex-grow: 0;
}

#modal_night {
	margin-top: 20px;
	margin-bottom: 14px;
	text-align: center;
}

#modal_night_img01 {
	width: 320px;
}

#modal_night_img02 {
	width: 400px;
}

#modal_night_p01 {
	margin: 0 auto 10px;
	max-width: 270px;
	background: url("../images/common/modal_night_line01.svg") no-repeat left center,
				url("../images/common/modal_night_line02.svg") no-repeat right center;
	background-size: contain,
					 contain;
	color: #001A45;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1em;
}

#modal_night_p02 {
	margin-top: -1px;
	margin-bottom: 16px;
	background-color: #001A45;
	border-radius: 50px;
	color: #ffffff;
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 50px;
}

.modal .modal_window .modalClose {
	width: 24px;
	position: absolute;
	top: 10px;
	right: 10px;
	color: #ffffff;
	font-size: 18px;
	text-align: center;
	line-height: 24px;
	z-index: 15;
}

/*===========================================================
	フッター
===========================================================*/

footer {
	padding-top: 60px;
	min-width: 1000px;
	background-color: #ffffff;
}

.footer_inner {
	margin: 0 auto;
	width: 1000px;
	position: relative;
}

#footer_nav {
	display: flex;
	justify-content: space-between;
}

#footer_nav li {
	flex-grow: 1;
	border-right: solid 1px #3e3a39;
	text-align: center;
	line-height: 2;
}

#footer_nav li:last-of-type {
	border-right-style: none;
}

#footer_nav li a {
	color: #3e3a39;
	font-weight: bold;
}

#footer_nav li a:hover {
	text-decoration: underline;
}

#footer_logo {
	margin: 80px auto 0;
	width: 200px;
	height: 90px;
	background: url("../images/common/elcc_logo.svg") no-repeat center center;
	background-size: contain;
	text-indent: -9999px;
}

#footer_security_policy {
	margin: 30px auto 0;
	text-align: center;
}

#footer_security_policy a {
	color: #000000;
	text-decoration: underline;
}

#footer_link {
	margin: 30px auto 0;
	display: flex;
	justify-content: center;
}

#footer_link li {
	margin: 0 10px;
	transition: transform 0.3s;
}

#footer_link li:hover {
	transform: scale(1.1);
}

#footer_bottom {
	margin-top: 40px;
	background-color: #19a3a2;
}

#scroll_top {
	width: 46px;
	position: absolute;
	top: -28px;
	right: 0;
	transition: transform 0.3s;
}

#scroll_top:hover {
	transform: scale(1.1);
}

#scroll_top img {
	filter: drop-shadow(1.5px 2px 3px rgba(0,0,0,0.3));
}

#copyright {
	padding: 20px 0 60px;
	text-align: center;
	line-height: 1;
}

small {
	color: #ffffff;
	font-size: 1.2rem;
}

@keyframes menu_button {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes menu_bar_before {
	0% {
		width: 100%;
		top: 50%;
		transform: translateX(-50%) translateY(-50%) rotateZ(-35deg);
	}
	50% {
		width: 80%;
		top: 50%;
		transform: translateX(-50%) translateY(-50%);
	}
	100% {
		width: 80%;
		top: 0;
		transform: translateX(-50%);
	}
}

@keyframes menu_bar_after {
	0% {
		width: 100%;
		bottom: 50%;
		transform: translateX(-50%) translateY(50%) rotateZ(35deg);
	}
	50% {
		width: 80%;
		bottom: 50%;
		transform: translateX(-50%) translateY(50%);
	}
	100% {
		width: 80%;
		bottom: 0;
		transform: translateX(-50%);
	}
}

@keyframes menu_bar_before_on {
	0% {
	}
	50% {
		top: 50%;
		transform: translateX(-50%) translateY(-50%);
	}
	100% {
		width: 100%;
		top: 50%;
		transform: translateX(-50%) translateY(-50%) rotateZ(-35deg);
	}
}

@keyframes menu_bar_after_on {
	0% {
	}
	50% {
		bottom: 50%;
		transform: translateX(-50%) translateY(50%);
	}
	100% {
		width: 100%;
		bottom: 50%;
		transform: translateX(-50%) translateY(50%) rotateZ(35deg);
	}
}

@media screen and (max-width: 1000px) {

	/*===========================================================
		ヘッダー
	===========================================================*/

	#head_inner {
		height: 90px;
		padding-left: 15px;
	}

	#header_logo {
		margin-top: 20px;
		margin-right: auto;
		width: 128px;
		height: 58px;
	}

	#head_inner nav {
		margin-top: 25px;
		margin-right: 65px;
		width: auto;
	}

	#head_navi01 li:not(:first-of-type){
		display: none;
	}

	#head_navi02 {
		display: none;
	}

	/* ハンバーガーメニュー */

	#menu_button {
		display: block;
		width: 50px;
		height: 50px;
		position: fixed;
		top: 23px;
		right: 13px;
		z-index: 300;
		cursor: pointer;
		opacity: 0;
		animation: menu_button 300ms 200ms forwards;
	}

	#menu_bar{
		width: 38px;
		height: 20px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
	}

	#menu_bar span{
		width: 80%;
		height: 2px;
		background-color: #19a3a2;
		border-radius: 3px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform-origin: center center;
		transform: translateX(-50%) translateY(-50%);
		transition: width 300ms;
	}

	#menu_bar::before,
	#menu_bar::after {
		content: "";
		display: block;
		width: 80%;
		height: 2px;
		background-color: #19a3a2;
		border-radius: 3px;
		position: absolute;
	}

	#menu_bar::before {
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		animation: menu_bar_before 200ms forwards;
	}

	#menu_bar::after {
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		animation: menu_bar_after 200ms forwards;
	}

	.on #menu_bar span {
		width: 0;
	}

	.on #menu_bar::before {
		animation: menu_bar_before_on 200ms forwards;
	}

	.on #menu_bar::after {
		animation: menu_bar_after_on 200ms forwards;
	}

	#sp_navi_box {
		display: block;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		right: 0;
		background: url("../images/common/bg_image_stripe.png") repeat top center;
		overflow: hidden;
		justify-content: center;
		align-items: center;
		z-index: 2;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s;
	}

	#sp_navi_box.on {
		opacity: 1;
		pointer-events: auto;
	}
	
	#sp_navi01 {
		padding: 100px 10px 35px;
		background-color: #ffffff;
	}

	#sp_navi01 {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}

	#sp_navi01 li {
		margin: 0 7px;
	}

	#sp_navi01 .balloon {
		padding: 0 0.5em;
		display: block;
		background-color: #ffffff;
		border-radius: 8px;
		box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.4);
		color: #3e3a39;
		font-size: 1.1rem;
		font-weight: bold;
		line-height: 36px;
		white-space: nowrap;
	}

	#sp_navi01 .balloon.link_line {
		color: #00b900;
	}

	#sp_navi01 .balloon img {
		margin-right: 0.5em;
		vertical-align: middle;
	}

	#sp_navi02 {
		margin: 30px auto 0;
		padding: 0 20px;
		width: 100%;
		max-width: 340px;
		height: calc(100% - 245px);
		overflow-y: auto;
	}

	#sp_navi02 li {
		border-bottom: dashed 1px #3e3a39;
	}

	#sp_navi02 li:first-of-type {
		border-top: dashed 1px #3e3a39;
	}

	#sp_navi02 a {
		display: block;
		background: url("../images/common/sp_navi_arrow.svg") no-repeat center right;
		background-size: 16px;
		color: #3e3a39;
		font-weight: bold;
		line-height: 58px;
	}

	/* =======================================
		メインコンテンツ
	======================================= */

	main {
		padding-top: 90px;
	}

}

@media screen and (max-width: 768px) {

	.block_pc {
		display: none;
	}

	.block_sp {
		display: block;
	}

	/*===========================================================
		ヘッダー
	===========================================================*/

	/* ハンバーガーメニュー */

	#sp_navi02 {
		margin: 30px auto 0;
		height: calc(100% - 340px);
	}

	/* =======================================
		fixed menu
	======================================= */

	#fixed_menu {
		display: flex;
		justify-content: center;
		position: fixed;
		top: auto;
		right: auto;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
		z-index: 100;
		transition: transform 0.3s;
	}

	#fixed_menu {
	}

	#fixed_menu li {
		margin: 0 4px;
		transition: transform 0.3s;
	}

	#fixed_menu.menu_hide li {
		transform: translateY(110%);
	}

	#fixed_menu li + li {
		margin-top: auto;
	}

	#fixed_menu a {
		width: 95px;
		height: 95px;
		border-top-right-radius: 5px;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 0;
	}

	/* =======================================
		メインコンテンツ
	======================================= */

	section {
		padding: 40px 0;
		min-width: 100%;
	}

	.section_inner {
		padding: 0 20px;
		width: 100%;
		max-width: 560px;
	}

	.content_title_h3 {
		margin-left: 20px;
		text-align: left;
	}

	.content_title_h3 > span {
		padding-left: 0;
		font-size: 3rem;
	}

	.content_title_h3 > span > span {
		left: 0;
		transform: none;
	}

	.content_title_h3 > span::after {
		width: 100vw;
		height: 2px;
		left: auto;
		right: 0;
	}

	.image_separation {
		margin: 80px auto 0;
		max-width: 100%;
		flex-wrap: wrap;
	}

	.image_separation img {
		width: 50%;
	}

	#page_title h2 {
		max-width: 100%;
		height: 322px;
	}

	#page_title h2 span {
		font-size: 3.2rem;
	}

	/*===========================================================
		お役立ちコラム
	===========================================================*/

	#column_list {
		margin: 30px auto;
		display: block;
	}

	#column_list li {
		margin: 30px auto;
		width: 100%;
	}

	#column_list a {
		padding-bottom: 20px;
	}

	.column_image {
		height: 200px;
	}

	.column_date {
		margin: 35px 15px 0;
		font-size: 1.2rem;
	}

	.column_title {
		margin: 10px 15px 0;
		font-size: 1.6rem;
	}

	/*===========================================================
		お問い合わせ
	===========================================================*/

	#contact_wrapper {
		margin: 30px auto 0;
		display: block;
	}

	#contact_image {
		width: 100%;
	}

	#contact_info {
		margin-left: 0;
		width: 100%;
	}

	#contact_info h4 {
		margin: 25px 15px 0;
		font-size: 2.1rem;
	}

	#contact_info h4:nth-of-type(2) {
		margin-top: 45px;
	}

	#contact_info p {
		margin: 10px 15px 15px;
	}

	/*===========================================================
		仙台市国家戦略特区 雇用労働相談センター
	===========================================================*/

	#sec_elcc {
		padding-bottom: 0;
	}

	#elcc_wrapper {
		display: block;
	}

	#elcc_info {
		width: 100%;
	}

	#elcc_logo {
		text-align: center;
	}

	#elcc_logo img {
		max-width: 260px;
	}

	#elcc_info p {;
		text-align: center;
	}

	#elcc_map {
		margin: 30px -20px 0;
		width: 100%;
	}

	#elcc_map iframe {
		width: calc(100% + 40px);
		height: 320px;
	}

	#elcc_link {
		margin-top: 28px;
	}

	#elcc_link li {
		margin: 0 3px;
	}

	#elcc_link a {
		width: 100px;
		height: 38px;
	}

	#elcc_link li:first-of-type img {
		width: 100px;
	}

	#elcc_link li:nth-of-type(2) img {

		width: 100px;
	}

	#elcc_link li:nth-of-type(3) img {
		width: 82px;
	}

	/*===========================================================
		サンクスページ
	===========================================================*/

	#thanks_text {
		padding: 15px;
		text-align: left;
	}

	/*===========================================================
		SNSシェアボタン
	===========================================================*/

	#content_sns_share_wrapper {
		padding-top: 40px;
	}

	#content_sns_share {
		margin: 25px auto 0;
		justify-content: space-between;
	}

	#content_sns_share li {
		margin: initial;
		width: 31%;
	}

	#content_sns_share li a {
		height: 104px;
	}

	#content_sns_share li a img {
		margin-bottom: 5px;
	}

	/*===========================================================
		ページャー
	===========================================================*/

	.wp-pagenavi {
		margin: 50px auto 80px;
	}

	.wp-pagenavi span,
	.wp-pagenavi a {
		margin: 0 4px;
		min-width: 30px;
		font-size: 1.4rem;
		line-height: 28px;
	}

	.wp-pagenavi span {
		background-color: #19a3a2;
		color: #ffffff;
	}

	.wp-pagenavi a {
		color: #19a3a2;
	}

	.wp-pagenavi a:hover {
		background-color: #19a3a2;
		color: #ffffff;
	}

	/*===========================================================
		モーダルウィンドウ
	===========================================================*/

	/* モーダルウィンドウの中身のスタイル */
	.modal .modal_window {
		width: calc(100vw - 20px);
		max-width: 520px;
	}

	.modal .modal_window::before {
		border-width: 4px;
	}

	#modal_title {
		font-size: 1.8rem;
		line-height: 38px; 
	}

	#modal_inner {
		margin: 7px 4px 16px;
		padding: 7px 10px 14px;
		max-height: calc(100vh - 102px);
	}

	.modal_window p {
		font-size: 1.5rem;
	}

	#modal_head {
		font-size: 2rem;
		line-height: 50px;
	}

	#modal_flex {
		margin-top: 14px;
		padding: 0 0 20px;
		display: block;
	}

	#modal_flex01 {
		width: 100%;
	}

	#modal_link {
		margin-top: 25px;
	}

	#modal_link a {
		line-height: 58px;
	}

	#modal_flex02 {
		display: none;
	}

	#modal_night {
		margin-top: 15px;
		margin-bottom: 15px;
	}

	#modal_night_img01 {
		width: 85%;
	}

	#modal_night_img02 {
		width: 100%;
	}

	#modal_night_p01 {
		margin-bottom: 14px;
		max-width: 300px;
		font-size: 1.8rem;
	}

	#modal_night_p02 {
		margin-bottom: 14px;
		font-size: 2rem;
		line-height: 50px;
	}

	.modal .modal_window .modalClose {
		top: 8px;
	}

	/*===========================================================
		フッター
	===========================================================*/

	footer {
		padding-top: 50px;
		min-width: 100%;
	}

	.footer_inner {
		padding: 0 20px;
		width: 100%;
		position: relative;
	}

	#footer_nav {
		display: none;
	}

	#footer_logo {
		margin: 0 auto;
	}

	#footer_security_policy {
		margin: 40px auto 0;
	}

	#footer_link {
		margin: 35px auto 0;
	}

	#scroll_top{
		top: -23px;
		right: 20px;
	}

	#scroll_top img{
		filter: drop-shadow(1.5px 2px 3px rgba(0,0,0,0.3));
	}

	#copyright {
		padding: 40px 15px 115px;
		text-align: left;
		line-height: 1.4;
	}

}