/* -----

	Reset

------------------------------ */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,  figure, figcaption, footer, header, hgroup,  menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* -----

	Font Setting

------------------------------ */

/* -----
	Font Face
------------------------------ */

body {
	font-family: 'Noto Sans JP', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

::selection {
	background: #ddd;
}

::-moz-selection{
	background: #ddd;
}

/* IE10以上 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

/* -----
	Font Basic Style
------------------------------ */

html {
	font-size: 62.5%;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: 'palt';
}

body {
	color: #344154;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.75;
}

p {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.75;
}

a {
	color: #0066C0;
	text-decoration: none;
	transition: opacity .5s cubic-bezier(.215,.61,.355,1);
}

a:hover {
	opacity: .5;
}

i {
	font-style: italic;
}

b, em, strong {
	font-weight: 700;
}

small {
	font-size: 12px;
	font-size: 1.2rem;
}

ul, ol {
	list-style: none;
	font-size: 0;
}

ul li, ol li {}

ul ul, ol ul, ul ol, ol ol{}

table {
    width: 100%;
	box-sizing: border-box;
    border-spacing: 0;
	overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
	margin: 40px auto;
}

th, td {}

th {}

tr:hover {
	background-color: rgba(0, 0, 0, 0.01);
}

dl {}

hr {
	margin: 40px 0;
}

/* -----

	Break Point

------------------------------ */

.sp {
	display: block;
}

.pc {
	display: none!important;
}

/* -----
	781px 以上
------------------------------ */

@media screen and (min-width: 781px) {

.sp {
	display: none;
}

.pc {
	display: block!important;
}

}

/* -----

	Initial Setting

------------------------------ */

html {
	width: 100%;
	height: 100%;
}

body{
	width: 100%;
	height: auto;
	position: relative;
}

#wrap {
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

img {
	display:block;
	width: 100%;
	max-width:100%;
	height: auto;
	border:none;
	line-height: 1;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		 -o-box-sizing: border-box;
			box-sizing: border-box;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* -----

	Header

------------------------------ */

#header {
	position: relative;
	margin-bottom: 60px;
}

#header .header_inner {
	position: fixed;
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-bottom: solid 1px #ddd;
	top: 0;
	left: 0;
	z-index: 1000;
}

#header .header_inner .header_logo {
	position: fixed;
	top: 15px;
	left: 10px;
	z-index: 1000;
}

#header .header_inner .header_logo img {
	width: auto;
	height: 30px;
}

#header .header_inner .header_logo .header_desc {
	font-size: 10px;
	font-size: 1rem;
	font-weight: 900;
	margin-top: 5px;
}

#header .header_inner .header_btn_wrap {
	display: none;
}

@media screen and (min-width: 781px) {

#header {
	position: relative;
	margin-bottom: 0;
}

#header .header_inner {
	position: static;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 0;
	padding: 20px 0;
	margin: 0 auto;
    width: 1200px;
    max-width: calc(100vw - 30px);
}

#header .header_inner .header_logo {
	position: static;
	display: flex;
	align-items: center;
}

#header .header_inner .header_logo img {
	height: 40px;
}

#header .header_inner .header_logo .header_desc {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 900;
	margin-left: 20px;
}

#header .header_inner .header_btn_wrap {
	display: flex;
	align-items: center;
	/* justify-content: flex-end; */
	gap: 20px;
    flex-direction: column-reverse;
    align-items: flex-end;
}

#header .header_inner .header_lp_link {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

#header .header_inner .header_lp_link_btn a {
	display: block;
	color: #344154;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: 700;
    white-space: nowrap; /* custom added */
}

#header .header_inner .header_lp_link_btn a i {
	margin-right: 5px;
}

#header .header_inner .header_login_wrap {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

#header .header_inner .header_login_wrap .header_login a,
#header .header_inner .header_login_wrap .header_sign-up a {
	display: block;
	height: 35px;
	color: #fff;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 35px;
	padding: 0 15px;
	border-radius: 2px;
    white-space: nowrap; /* custom added */
}

#header .header_inner .header_login_wrap .header_login a {
	background: #344154;
}

#header .header_inner .header_login_wrap .header_sign-up a {
	background: #E1251B;
	margin-left: 10px;
}

#header .header_inner .header_login_wrap .header_login i,
#header .header_inner .header_login_wrap .header_sign-up i {
	margin-left: 5px;
}

}

/* -----

	Global Navigation

------------------------------ */

.sp_g-navi_wrap {
	visibility: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	padding-top: 60px;
	z-index: -1;
	transition: all .5s cubic-bezier(.215,.61,.355,1);
}

.is_active.sp_g-navi_wrap {
	visibility: visible;
	opacity: 1;
	z-index: 999;
}

.sp_g-navi_login_wrap {
	width: 100%;
}

.sp_g-navi_login_inner {
	display: flex;
	align-items: center;
	padding: 15px 15px;
	background: #F4F6F8;
}

.sp_g-navi_login_wrap .sp_g-navi_login,
.sp_g-navi_login_wrap .sp_g-navi_sign-up {
	width: 100%;
}

.sp_g-navi_login_wrap .sp_g-navi_login {
	margin-right: 10px;
}

.sp_g-navi_login_wrap .sp_g-navi_login a,
.sp_g-navi_login_wrap .sp_g-navi_sign-up a {
	display: block;
	height: 35px;
	color: #fff;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
	line-height: 35px;
	padding: 0 15px;
	border-radius: 2px;
}

.sp_g-navi_login_wrap .sp_g-navi_login a {
	background: #344154;
}

.sp_g-navi_login_wrap .sp_g-navi_sign-up a {
	background: #E1251B;
}

.sp_g-navi_login_wrap .sp_g-navi_login a i,
.sp_g-navi_login_wrap .sp_g-navi_sign-up a i {
	margin-left: 5px;
}

#sp_g-navi {
	position: relative;
}

#sp_g-navi ul {}

#sp_g-navi ul li {
	line-height: 1.5;
}

#sp_g-navi .g-navi_inner ul {
	width: 100%;
}

#g-navi .g-navi_inner ul li:last-child {
	border-right: solid 1px #ddd;
}

#sp_g-navi ul li {
	border-bottom: solid 1px #ddd;
}

#sp_g-navi ul li a {
	position: relative;
	display: block;
	color: #344154;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	padding: 15px 10px;
}

#sp_g-navi ul li a::after {
	display: block;
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	content: '\f054';
	font-weight: 700;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

#sp_g-navi ul.sp_g-navi_sub {
	padding: 15px 10px;
}

#sp_g-navi ul.sp_g-navi_sub li {
	border-bottom: 0;
}

#sp_g-navi ul.sp_g-navi_sub li a {
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	padding:  0;
	margin-bottom: 10px;
}

#sp_g-navi ul.sp_g-navi_sub li a::before {
	content: '\f0da';
	font-family: 'Font Awesome 5 Free';
	font-weight: 700;
	margin-right: 5px;
}

#sp_g-navi ul.sp_g-navi_sub li a::after {
	content: none;
}

.sp_bottom_navi {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 100;
}

.sp_bottom_navi .sp_bottom_navi_inner {
	background: #fff;
	border-top: solid 1px #ddd;
}

.sp_bottom_navi .sp_bottom_navi_inner ul {
	width: 100%;
	display: flex;
}

.sp_bottom_navi .sp_bottom_navi_inner ul li {
	width: 33.33333%;
}

.sp_bottom_navi .sp_bottom_navi_inner ul li a {
	display: block;
	color: #344154;
	padding: 7px 10px;
	font-size: 10px;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

.sp_bottom_navi .sp_bottom_navi_inner ul li a i {
	display: block;
	font-size: 15px;
	font-size: 1.5rem;
	margin-bottom: 5px;
}

.sp_bottom_navi .sp_bottom_navi_inner ul li a.i-search {
	color: #fff;
	background: #344154;
}

@media screen and (min-width: 781px) {

.g-navi_wrap {
	position: relative;
	width: auto;
	height: auto;
	visibility: visible;
	padding: 0;
	justify-content: flex-end;
	background: none;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	opacity: 1;
	z-index: 999;
}

#g-navi {
	border-top: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
}

#g-navi .g-navi_inner {
	margin: 0 auto;
    width: 1200px;
    max-width: calc(100vw - 30px);
}

#g-navi .g-navi_inner ul {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#g-navi .g-navi_inner ul li {
	width: 20%;
	border-left: solid 1px #ddd;
}

#g-navi .g-navi_inner ul li:last-child {
	border-right: solid 1px #ddd;
}

#g-navi .g-navi_inner ul li a {
	display: block;
	color: #344154;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	padding: 15px 0;
}

#g-navi .g-navi_inner ul li a i {
	margin-right: 5px;
}

}

/* -----
	Menu Trigger
------------------------------ */

.menu_icon {
	position: fixed;
	top: 20px;
	right: 10px;
	z-index: 1000;
}

.menu_icon a:hover {
	opacity: 1;
}

.menu_trigger, .menu_trigger span {
	display: inline-block;
	box-sizing: border-box;
	transition: all .5s cubic-bezier(.215,.61,.355,1);
}

.menu_trigger {
	position: relative;
	width: 24px;
	height: 20px;
	cursor:pointer;
	opacity: 1;
}

.menu_trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background-color: #344154;
	transition: all .5s cubic-bezier(.215,.61,.355,1);
}

.menu_trigger.is_active span {}

.menu_trigger span:nth-of-type(1) {
	top: 0;
}

.menu_trigger span:nth-of-type(2) {
	top: 9px;
}

.menu_trigger span:nth-of-type(3) {
	bottom: 0;
}

.menu_trigger span:nth-of-type(1) {
	animation: menu-bar01 .5s forwards;
}

@keyframes menu-bar01 {
	0% {
		transform: translateY(9px) rotate(45deg);
	}
	50% {
		transform: translateY(9px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}

.menu_trigger span:nth-of-type(2) {
	transition: all .5s cubic-bezier(.215,.61,.355,1);
}

.menu_trigger span:nth-of-type(3) {
	animation: menu-bar02 .5s forwards;
}

@keyframes menu-bar02 {
	0% {
		transform: translateY(-9px) rotate(-45deg);
	}
	50% {
		transform: translateY(-9px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}

.menu_trigger.is_active span:nth-of-type(1) {
	animation: active-menu-bar01 .5s forwards;
}

@keyframes active-menu-bar01 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(7px) rotate(0);
	}
	100% {
		transform: translateY(7px) rotate(45deg);
	}
}

.menu_trigger.is_active span:nth-of-type(2) {
	opacity: 0;
}

.menu_trigger.is_active span:nth-of-type(3) {
	animation: active-menu-bar03 .5s forwards;
}

@keyframes active-menu-bar03 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-11px) rotate(0);
	}
	100% {
		transform: translateY(-11px) rotate(-45deg);
	}
}


/* -----

	Breadcrumb

------------------------------ */

.breadcrumb {
	background: #EAEDF2;
}

.breadcrumb .breadcrumb_inner {
	padding: 7px 10px;
	margin: 0 auto;
    width: 1200px;
    max-width: calc(100vw - 30px);
}

.breadcrumb .breadcrumb_inner ul {
	display: flex;
	align-items: center;
	white-space: nowrap;
	overflow-x: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.breadcrumb .breadcrumb_inner ul::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}

.breadcrumb .breadcrumb_inner ul li {
	color: #344154;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: 700;
}

.breadcrumb .breadcrumb_inner ul li:not(:last-child) {
	margin-right: 7px;
}

.breadcrumb .breadcrumb_inner ul li:not(:last-child)::after {
	content: '>';
	margin-left: 7px;
}

.breadcrumb .breadcrumb_inner ul li a {
	color: #344154;
}

/* -----

	Top Page

------------------------------ */

.main_visual_wrap {
	position: relative;
	width: 100%;
	height: 300px;
	background: #F4F6F8;
	overflow: hidden;
}

.main_visual_wrap .main_visual_contets {
	width: 100%;
	position: absolute;
	top: 45px;
	z-index: 10;
}

.main_visual_wrap .main_visual_contets .main_visual_copy h2 {
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: 900;
	text-align: center;
	margin-bottom: 15px;
}

.main_visual_wrap .main_visual_contets .main_visual_copy p {
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
}

.main_visual_wrap .city_line_01,
.main_visual_wrap .city_line_02,
.main_visual_wrap .city_line_03 {
	position: absolute;
	display: flex;
	width: 100vw;
	bottom: 0;
}

.main_visual_wrap .city_line_01 {
	z-index: 0
}

.main_visual_wrap .city_line_02 {
	z-index: 1
}

.main_visual_wrap .city_line_03 {
	z-index: 2
}

.main_visual_wrap .city_line_01 img,
.main_visual_wrap .city_line_02 img,
.main_visual_wrap .city_line_03 img {
	width: auto;
	max-width: none;
	height: 75px;
}

.main_visual_wrap .city_line_01 img:first-child {
	animation: city_line_01 250s -125s linear infinite;
}

.main_visual_wrap .city_line_01 img:last-child {
	animation: city_line_02 250s linear infinite;
}

.main_visual_wrap .city_line_02 img:first-child {
	animation: city_line_01 200s -100s linear infinite;
}

.main_visual_wrap .city_line_02 img:last-child {
	animation: city_line_02 200s linear infinite;
}

.main_visual_wrap .city_line_03 img:first-child {
	animation: city_line_01 150s -75s linear infinite;
}

.main_visual_wrap .city_line_03 img:last-child {
	animation: city_line_02 150s linear infinite;
}

.main_visual_wrap .helicopter img {
	position: absolute;
	width: auto;
	height: 7px;
	right: 0;
	bottom: 80px;
	animation: helicopter 50s linear infinite;
	z-index: 3;
}

.main_visual_wrap .airplane img {
	position: absolute;
	width: auto;
	height: 9px;
	right: 0;
	bottom: 110px;
	animation: airplane 75s linear infinite;
	z-index: 0;
}

@keyframes city_line_01 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes city_line_02 {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-200%);
  }
}

@keyframes helicopter {
  0% {
    right: 0;
  }
  to {
    right: 100%;
  }
}

@keyframes airplane {
  0% {
    left: 0;
  }
  to {
    left: 100%;
  }
}

@media screen and (min-width: 781px) {

.main_visual_wrap {
	height: 400px;
    overflow-x: hidden;
}

.main_visual_wrap .main_visual_contets {
	top: 45%;
	transform: translateY(-50%);
}

.main_visual_wrap .main_visual_contets_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-flow: row-reverse;
	margin: 0 auto;
    width: 1180px;
    max-width: calc(100vw - 30px);
}

.main_visual_wrap .main_visual_contets .main_visual_copy,
.main_visual_wrap .main_visual_contets .main_visual_search_wrap {
	width: 50%;
}

.main_visual_wrap .main_visual_contets .main_visual_copy h2 {
	font-size: 36px;
	font-size: 3.6rem;
	margin-bottom: 15px;
}

.main_visual_wrap .main_visual_contets.main_visual_copy p {
	font-size: 18px;
	font-size: 1.8rem;
}

.main_visual_wrap .city_line_01 img,
.main_visual_wrap .city_line_02 img,
.main_visual_wrap .city_line_03 img {
	height: 100px;
}

.main_visual_search {
	padding: 30px 20px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 20px 0px rgba(52,65,84,.25);
}

.main_visual_search_head {
	font-size: 20px;
	font-size: 2rem;
	font-weight: 900;
	text-align: center;
	margin-bottom: 20px;
}

.main_visual_search_head i {
	margin-left: 5px;
}

.main_visual_search .search_form {
	width: 100%;
	display: flex;
}

.main_visual_search input[type="search"] {
	width: 100%;
	font-size: 14px;
	font-size: 1.4rem;
	text-align: center;
	padding: 10px;
	border: solid 1px #ddd;
	border-radius: 5px;
}

.main_visual_search input[type="submit"] {
	width: 125px;
	color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 900;
	background: #344154;
	padding: 10px;
	border: solid 1px #ddd;
	border-radius: 5px;
}

.main_visual_search_cat-list_wrap {
	display: flex;
	margin-top: 20px;
}

.main_visual_search_cat-list_wrap .main_visual_search_cat-list {
	width: 100%;
}

.main_visual_search_cat-list_wrap .main_visual_search_cat-list:not(:last-child) {
	margin-right: 10px;
}

.main_visual_search_cat-list_wrap .main_visual_search_cat-list a {
	display: block;
	height: 35px;
	color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 35px;
	text-align: center;
	background: #344154;
	border-radius: 20px;
}

.main_visual_search_cat-list_wrap .main_visual_search_cat-list a i {
	margin-right: 5px;
}

}

/* -----
	Banner Section
------------------------------ */

.registration_banner_wrap {
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 900;
	text-align: center;
	background: #F4F6F8;
	padding: 40px 15px;
}

/* -----
	Top Internship List
------------------------------ */

.top_i-post_list_wrap {
	padding: 0 15px;
}

.top_i-post_list_head h1 {
	font-size: 20px;
	font-size: 2rem;
	font-weight: 900;
	text-align: center;
	padding: 30px 0;
}

.top_i-post_list_wrap .top_i-post_list_inner {}

@media screen and (min-width: 781px) {

.top_i-post_list_head h1 {
	font-size: 24px;
	font-size: 2.4rem;
	padding: 40px 0;
}

.top_i-post_list_wrap .top_i-post_list_inner,
.relation_i-post_list_wrap .relation_i-post_list_inner {
	max-width: 1160px;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 auto;
}

.top_i-post_list_wrap .top_i-post_list_inner .i-post_list,
.relation_i-post_list_wrap .relation_i-post_list_inner .i-post_list {
	width: 25%;
	margin-bottom: 30px;
}

}



/* -----

	Internship Search

------------------------------ */

.i-post_search_wrap {
	visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
	background: #F4F6F8;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    padding-top: 60px;
    z-index: -1;
    transition: all .5s cubic-bezier(.215,.61,.355,1);
}

.is_active.i-post_search_wrap {
    visibility: visible;
    opacity: 1;
    z-index: 1000;
}

.i-post_search_top {
	position: absolute;
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	background: #fff;
	border-bottom: solid 1px #ddd;
	top: 0;
	left: 0;
}

.i-post_search_top .i-post_search_head {
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 900;
}

.i-post_search_top .i-post_search_head i {
	margin-right: 5px;
}

.i-post_search_top .i-post_search_close {
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 900;
}

.i-post_search_top .i-post_search_close i {
	margin-right: 5px;
}

.i-post_search_wrap .i-post_search_wrap_tab-list {
	position: absolute;
	width: 100%;
    display: flex;
	background: #fff;
    padding: 10px;
	top: 60px;
}

.i-post_search_wrap .i-post_search_wrap_tab-list .i-post_search_cat {
	width: 33.33333%;
    height: 35px;
    color: #344154;
    font-size: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 35px;
    margin-right: 5px;
    background: #EAEDF2;
	border-radius: 20px;
}

.i-post_search_wrap .i-post_search_wrap_tab-list .i-post_search_cat:last-child {
    margin-right: 0;
}

.i-post_search_wrap .i-post_search_wrap_tab-list .i-post_search_cat.active {
	color: #fff;
    background: #344154;
}

.i-post_search_wrap .i-post_search_wrap_contents-list {
	background: #F4F6F8;
}

.i-post_search_wrap .i-post_search_wrap_contents-list .i-post_search_contents {
	position: absolute;
	width: 100%;
	top: 115px;
	left: 0;
	right: 0;
	bottom: 60px;
	overflow-y: scroll;
}

.i-post_search_wrap .i-post_search_contents_inner {
	padding: 15px;
}

.i-post_search_wrap ul.i-post_search_list {
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	background: #fff;
	border-radius: 5px;
}

.i-post_search_wrap ul.i-post_search_list li {
	width: 50%;
	padding: 10px 5px;
}

.i-post_search_wrap ul.i-post_search_list.four_colum li {
	width: 100%;
	padding: 0;
}

.i-post_search_wrap ul.i-post_search_list.four_colum .i-post_search_list_level_01 li {
	padding: 5px 5px;
}

.i-post_search_wrap ul.i-post_search_list li:nth-child(2n) {
	margin-right: 0;
}

.i-post_search_wrap ul.i-post_search_list li a {
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: underline;
}

.i-post_search_wrap ul.i-post_search_list li label {
	display: flex;
}

.i-post_search_wrap ul.i-post_search_list li input[type="checkbox"] {
	position: relative;
	appearance: auto;
	display: inline-block;
	margin-right: 7px;
	top: 5px;
}

.i-post_search_wrap ul.i-post_search_list li input[type="radio"] {
	position: relative;
	appearance: auto;
	display: inline-block;
	margin-right: 7px;
	top: 5px;
}

.i-post_search_wrap ul.i-post_search_list .i-post_search_list_head {
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
	border-bottom: solid 1px #ddd;
    padding: 15px 5px;
    margin-bottom: 10px;
}

.i-post_search_area ul li a {
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 500;
	text-decoration: underline;
}

.i-post_search_area .i-post_search_area_level_01 {
	background: #fff;
	margin-bottom: 10px;
	border-radius: 5px;
	padding: 10px 10px 10px 10px;
}

.i-post_search_area li label {
	display: flex;
	align-items: center;
}

.i-post_search_area li input[type="checkbox"] {
	position: relative;
	appearance: auto;
	display: inline-block;
	margin-right: 7px;
}

.i-post_search_area .i-post_search_area_level_01 > li > label {
	width: 100%;
	border-bottom: solid 1px #ddd;
	padding: 15px 5px;
	margin-bottom: 10px;
}

.i-post_search_area .i-post_search_area_level_01 > li > label:last-child {
	border-bottom: 0;
	margin-bottom: 0;
}

.i-post_search_area .i-post_search_area_level_01 > li a {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 500;
}

.i-post_search_area .i-post_search_area_level_02 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.i-post_search_area .i-post_search_area_level_02 > li {
	width: 33.33333%;
}

.i-post_search_area .i-post_search_area_level_02 > li.finely {
	width: 100%;
}

.i-post_search_area .i-post_search_area_level_02 > li > label {
	padding: 10px 5px;
}

.i-post_search_area .i-post_search_area_level_02 > li a {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 500;
}

.i-post_search_area .i-post_search_area_level_03 {
	width: 100%;
}

.i-post_search_area .i-post_search_area_level_03 > li {
	margin: 5px 0 15px;
}

.i-post_search_area .i-post_search_area_level_04 {
	width: 100%;
	background: #F4F6F8;
	padding: 10px;
	border-radius: 5px;
}

.i-post_search_area .i-post_search_area_level_04 > li:not(:last-child) {
	margin-bottom: 10px;
}

.i-post_search_area .i-post_search_area_level_04 > li label {
	padding: 3px 0;
}

.i-post_search_area .i-post_search_area_level_04 > li input[type="checkbox"] {
	position: relative;
	top: 1px;
}

.i-post_search_area .i-post_search_area_level_04 > li a {
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 500;
}

.i-post_search_result_wrap {
    position: absolute;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    background: #fff;
    border-top: solid 1px #ddd;
	bottom: 0;
	left: 0;
}

.i-post_search_result_wrap .i-post_search_result {
	min-width: 100px;
	color: #E1251B;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: 700;
}

.i-post_search_result_wrap .i-post_search_result span {
	color: #344154;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 900;
	margin-left: 3px;
}

.i-post_search_result_wrap .i-post_search_btn {
	width: 100%;
}

.i-post_search_result_wrap .i-post_search_btn a {
	display: block;
	width: 100%;
	height: 40px;
	color: #fff;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
	padding: 0 40px;
	background: #344154;
	border-radius: 5px;
}

@media screen and (min-width: 781px) {

.i-post_search_wrap {
	height: auto;
	background: #fff;
	padding: 80px;
	border-radius: 5px;
	top: 0;
	left: 0;
}

.is_active.i-post_search_wrap {
    visibility: visible;
    opacity: 1;
    z-index: 1000;
}

.i-post_search_wrap .i-post_search_close {
	position: absolute;
	width: 40px;
	height: 40px;
	background: #344154;
	top: 20px;
	right: 20px;
	border-radius: 50%;
}

.i-post_search_wrap .i-post_search_close::before {
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	content: '\f00d';
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-size: 2.4em;
	font-weight: 700;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.i-post_search_top {
	display: none;
}

.i-post_search_wrap .i-post_search_wrap_tab-list {
	position: static;
	width: 100%;
    display: flex;
	background: #fff;
    padding: 0;
}

.i-post_search_wrap .i-post_search_wrap_tab-list .i-post_search_cat {
    font-size: 14px;
    font-size: 1.4rem;
	border-radius: 5px 5px 0 0;
}

.i-post_search_wrap .i-post_search_wrap_contents-list {
	background: #F4F6F8;
}

.i-post_search_wrap .i-post_search_wrap_contents-list .i-post_search_contents {
	position: static;
}

.i-post_search_wrap .i-post_search_wrap_contents-list .i-post_search_contents_inner {
	padding: 20px;
	background: #344154;
	border-radius: 0 0 5px 5px;
    max-height: calc(100vh - 200px); /* 100vh - padding top and bottom */
    overflow: hidden;
}

.i-post_search_wrap ul.i-post_search_list {
	padding: 20px;
	background: #fff;
	border-radius: 5px;
}

.i-post_search_wrap ul.i-post_search_list li {
	width: 20%;
    margin-right: 0;
}

.i-post_search_wrap ul.i-post_search_list.four_colum  {
	padding: 20px 10px;
}

.i-post_search_wrap ul.i-post_search_list.four_colum > li {
	width: 25%;
	padding: 0 10px;
}

.i-post_search_wrap ul.i-post_search_list li:nth-last-child(1),
.i-post_search_wrap ul.i-post_search_list li:nth-last-child(2),
.i-post_search_wrap ul.i-post_search_list li:nth-last-child(3),
.i-post_search_wrap ul.i-post_search_list li:nth-last-child(4) {
	margin-bottom: 0;
}

.i-post_search_wrap ul.i-post_search_list li:nth-child(2n) {
	margin-right: 0;
}

.i-post_search_wrap ul.i-post_search_list li:nth-child(4n) {
	margin-right: 0;
}

.i-post_search_area {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 20px 10px;
	background: #fff;
	border-radius: 5px;
    height: calc(100vh - 240px); /* 100vh - padding top and bottom */
    overflow-y: scroll;
}

.i-post_search_area_kinki {
	width: 25%;
}

.i-post_search_area_other {
	display: flex;
	flex-wrap: wrap;
	width: 75%;
}

.i-post_search_area a:hover {
	opacity: 1;
	text-decoration: underline;
}

.i-post_search_area a:hover {
	opacity: 1;
	text-decoration: underline;
}

.i-post_search_area_kinki .i-post_search_area_level_01 {
	width: 100%;
    padding: 0 10px;
}

.i-post_search_area_other .i-post_search_area_level_01 {
	width: 50%;
    padding: 0 10px;
}

.i-post_search_area .i-post_search_area_level_01 > li > label {
    width: 100%;
    border-bottom: solid 1px #ddd;
    padding: 10px 5px;
    margin-bottom: 5px;
}

.i-post_search_area .i-post_search_area_level_02 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.i-post_search_area .i-post_search_area_level_02 > li {
	width: 33.33333%;
}

.i-post_search_area .i-post_search_area_level_02 > li > label {
    padding: 7px 5px;
}

.i-post_search_area .i-post_search_area_level_03 {
	width: 100%;
}

.i-post_search_area .i-post_search_area_level_03 > li {
	margin-bottom: 10px;
}

.i-post_search_area .i-post_search_area_level_03 > li > a {
	font-size: 10px;
	font-size: 1rem;
	font-weight: 700;
	padding: 5px 0;
}

.i-post_search_area .i-post_search_area_level_04 {
	padding: 5px 10px;
}

.i-post_search_area .i-post_search_area_level_04 > li:not(:last-child) {
	margin-bottom: 10px;
}

.i-post_search_area .i-post_search_area_level_04 > li > a {
	font-size: 10px;
	font-size: 1rem;
	font-weight: 500;
}

}

@media screen and (min-width: 1200px) {
    .i-post_search_area_other .i-post_search_area_level_01 {
        width: 33.33333%;
    }
}

/* -----

	Company Page

------------------------------ */

.company_page_body_wrap {
	max-width: 1180px;
	margin: 0 auto;
}

.company_page_body {
	position: relative;
}

/* -----
	Company Page Head
------------------------------ */

.company_page_head {
	position: relative;
	height: 175px;
	background: #fafafa;
	overflow: hidden;
}

.company_page_head_bg {
	background-image: url("img/company/comnapny_page_bg.jpg"); /* 企業編集画面で差し替え可能にする */
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.company_page_head_bg::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.5);
	z-index: 0;
}

.company_page_head_profile {
	width: 100%;
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
}

.company_page_head_profile_inner {
	display: flex;
	align-items: center;
	padding: 0 20px;
}

.company_page_head_profile_inner .company_page_head_icon {
	width: 75px;
	height: 75px;
	border: solid 1px #ddd;
	margin-right: 15px;
	border-radius: 50%;
	overflow: hidden;
}

.company_page_head_profile_inner .company_page_head_name h1 {
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 900;
}

.company_page_head_profile .company_page_head_name .company_page_head_id {
	font-size: 10px;
	font-size: 1rem;
	font-weight: 700;
	margin-top: 3px;
}

@media screen and (min-width: 781px) {

.company_page_head {
	height: 300px;
}

.company_page_head_profile {
	top: 45%;
}

.company_page_head_profile_inner {
	padding: 0;
	margin: 0 auto;
    width: 1200px;
    max-width: calc(100vw - 30px);
}

.company_page_head_profile .company_page_head_icon {
	width: 100px;
	height: 100px;
}

.company_page_head_profile .company_page_head_name h1 {
	font-size: 24px;
	font-size: 2.4rem;
}

.company_page_head_profile .company_page_head_name .company_page_head_id {
	font-size: 12px;
	font-size: 1.2rem;
}

}

/* -----
	Company Page Tab
------------------------------ */

.company_page_tab-list {
	width: 100%;
	position: absolute;
	display: flex;
	padding: 0 5px;
	top: -35px;
	border-bottom: solid 5px #344154;
}

.company_page_tab-list .cat {
	width: 33.33333%;
	height: 35px;
	color: #344154;
	font-size: 10px;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	line-height: 35px;
	margin-right: 5px;
	border-radius: 2px 2px 0 0;
	background: #F4F6F8;
}

.company_page_tab-list .cat:last-child {
	margin-right: 0;
}

.company_page_tab-list .cat.active {
	color: #fff;
	background: #344154;
}

.company_page_tab_contents {
	position: relative;
	padding: 30px 15px;
}

@media screen and (min-width: 781px) {

.company_page_tab-list {
	padding: 0;
	border-bottom: none;
	top: -75px;
}

.company_page_tab-list .cat {
	font-size: 12px;
	font-size: 1.2rem;
}

.company_page_tab-list .cat:last-child {
	margin-right: 0;
}

.company_page_tab-list .cat.active {
	color: #fff;
	background: #344154;
}

.company_page_tab_contents {
	padding: 0;
}

}

/* -----
	Copmpany Page Post List
------------------------------ */

@media screen and (min-width: 781px) {

.company_page_post_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.company_page_post_list .i-post_list {
	margin-bottom: 30px;
}

.company_page_post_list .i-post_list:nth-child(4n) {
	margin-right: 20px;
}

.company_page_post_list .i-post_list:nth-child(3n) {
	margin-right: 0;
}

}
@media screen and (min-width: 781px) {
	.company_page_post_list  {
        column-gap: 20px;
    }
}
@media screen and (min-width: 1210px) {
	.company_page_post_list .i-post_list {
		width: calc(((77.12vw - 60px) - 40px) / 3);
		max-width: calc(((910px - 60px) - 40px) / 3);
	}
}



/* -----
	Company Page Sidebar
------------------------------ */

.company_page_body_wrap .company_page_sidebar {
	padding: 30px 15px;
	border-top: solid 1px #ddd;
}

.company_page_sidebar .company_page_sidebar_widget:not(:last-child) {
	margin-bottom: 30px;
}

.company_page_sidebar .company_page_sidebar_widget h4 {
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.company_page_sidebar .company_page_sidebar_widget {}

.company_page_sidebar .company_page_sidebar_widget ul {}

.company_page_sidebar .company_page_sidebar_widget ul li {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.company_page_sidebar .company_page_sidebar_widget ul li a {
	word-break: break-word!important;
    overflow-wrap: break-word!important;
}

.company_page_sidebar .company_page_sidebar_widget ul li i {
	margin-right: 5px;
}

@media screen and (min-width: 781px) {
	.company_page_wrap {
		padding:  0 15px;
	}
}
@media screen and (min-width: 1210px) {
	.company_page_body_wrap {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;	margin-bottom: 40px;
}

.company_page_body_wrap .company_page_body {
	width: calc(77.12vw - 30px);
	max-width: 910px;
	padding: 0 30px 0 0;
	margin-bottom: 0;
}

.company_page_body_wrap .company_page_sidebar {
	width: calc(22.88vw - 30px);
	max-width: 270px;
	border-left: solid 1px #ddd;
	padding: 0 0 0 30px;
	margin-bottom: 0;
	border-top: 0;
}

}

/* -----
	Company Page Button
------------------------------ */

.company_contact_btn {
	margin: 40px 0;
}

.company_contact_btn a {
	display: block;
	max-width: 400px;
	height: 50px;
	color: #fff;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	line-height: 50px;
	background: #344154;
	border-radius: 25px;
	margin: 0 auto;
}

/* -----

	Profile Page

------------------------------ */

.profile_page_wrap {
	position: relative;
}

/* -----
	Profile Page Head
------------------------------ */

.profile_page_head {
	position: relative;
	height: 175px;
	background: #fafafa;
	overflow: hidden;
}

.profile_page_head_bg {
	background-image: url("img/company/comnapny_page_bg.jpg"); /* プロフィール編集画面で差し替え可能にする */
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.profile_page_head_bg::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	z-index: 0;
}

.profile_page_head_profile {
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.profile_page_head_profile_inner {
	display: flex;
	align-items: center;
	padding: 0 20px;
}

.profile_page_head_profile_inner .profile_page_head_icon {
	width: 75px;
	height: 75px;
	border: solid 1px #ddd;
	margin-right: 15px;
	border-radius: 50%;
	overflow: hidden;
}

.profile_page_head_profile_inner .profile_page_head_name h1 {
	color: #fff;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 7px;
}

.profile_page_head_profile .profile_page_head_name .profile_page_head_id {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.profile_page_head_profile .profile_page_head_name .profile_page_head_sns_list {
	display: flex;
	gap: 10px;
}

.profile_page_head_profile .profile_page_head_name .profile_page_head_sns_list li a {
	color: #fff;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (min-width: 781px) {

.profile_page_head {
	height: 300px;
}

.profile_page_head_profile_inner {
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
}

.profile_page_head_profile .profile_page_head_icon {
	width: 100px;
	height: 100px;
}

.profile_page_head_profile .profile_page_head_name h1 {
	font-size: 2.8rem;
}

.profile_page_head_profile .profile_page_head_name .profile_page_head_id {
	font-size: 1.4rem;
}

}

/* -----
	Profile Page Body
------------------------------ */

.profile_page_body_wrap {
	max-width: 800px;
	margin: 0 auto;
	padding: 30px 15px;
}

@media screen and (min-width: 781px) {

	.profile_page_body_wrap {
		padding: 40px 0;
	}

}

/* -----
	Profile Page Body - Copy Section
------------------------------ */

.profile_page_copy_section {
	padding: 20px 0 40px;
	border-bottom: solid 1px #ddd;
}

.profile_page_copy_section h2 {
	font-size: 2rem;
	font-weight: 900;
	margin-bottom: 20px;
}

@media screen and (min-width: 781px) {

	.profile_page_copy_section h2 {
		font-size: 2.8rem;
		font-weight: 900;
	}

}

/* -----
	Profile Page Body - Theme Section
------------------------------ */

.profile_page_theme_section {
	padding: 40px 0 40px;
	border-bottom: solid 1px #ddd;
}

.profile_page_theme_section h2 {
	font-size: 1.8rem;
	font-weight: 900;
	padding-bottom: 10px;
	border-bottom: solid 1px #344154;
	margin-bottom: 20px;
}

@media screen and (min-width: 781px) {

	.profile_page_theme_section h2 {
		font-size: 2rem;
	}

}

/* -----
	Profile Page Body - Timeline Section
------------------------------ */

.profile_page_timeline_section {
	padding: 40px 0 40px;
	border-bottom: solid 1px #ddd;
}

.profile_page_timeline_box {
	position: relative;
	padding: 0 0 30px 50px;
}

.profile_page_timeline_box:last-child {
	padding: 0 0 0 50px;
}

.profile_page_timeline_box::before {
	content: '';
	position: absolute;
	display: block;
	width: 1px;
	height: 100%;
	border-left: solid 1px #344154;
	top: 0;
	left: 20px;
	bottom: 0;
	z-index: 0;
}

.profile_page_timeline_box.future::before {
	border-left: dashed 1px #344154;
}

.profile_page_timeline_box:last-child:before {
	content: none;
}

.profile_page_timeline_box .profile_page_timeline_year {
	font-size: 1.2rem;
	font-weight: 700;
	border-bottom: solid 1px #344154;
	padding: 0 0 5px;
}

.profile_page_timeline_box.future .profile_page_timeline_year {
	padding: 5px 0 5px;
}

.profile_page_timeline_box .profile_page_timeline_icon {
	position: absolute;
	width: 15px;
	height: 15px;
	background: #344154;
	border: solid 3px #fff;
	left: 13px;
	top: 0;
	border-radius: 50%;
}

.profile_page_timeline_box.future .profile_page_timeline_icon {
	width: 40px;
	height: 40px;
	background-image: url("img/visual/01.jpg"); /* プロフィール編集画面で差し替え可能にする */
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	left: 0;
	top: 0;
}

.profile_page_timeline_box .profile_page_timeline_detail {
	margin-top: 20px;
}

.profile_page_timeline_box .profile_page_timeline_detail .profile_page_timeline_head {
	margin-bottom: 15px;
}

.profile_page_timeline_box .profile_page_timeline_detail .profile_page_timeline_head_heading {
	font-size: 1.6rem;
	font-weight: 900;
}

.profile_page_timeline_box .profile_page_timeline_detail .profile_page_timeline_head_position {
	font-size: 1.2rem;
	font-weight: 700;
	margin-top: 7px;
}

.profile_page_timeline_box .profile_page_timeline_image {
	margin-top: 20px;
}

.profile_page_timeline_box .profile_page_timeline_image .profile_page_timeline_image_box {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.profile_page_timeline_box .profile_page_timeline_image .profile_page_timeline_image_box:nth-child(2) {
	margin-top: 10px;
}

.profile_page_timeline_box .profile_page_timeline_url {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.5;
	background: #EAEDF2;
	padding: 10px;
	margin-top: 20px;
	border-radius: 5px;
}

.profile_page_timeline_box .profile_page_timeline_url a {
	color: #344154;
}

@media screen and (min-width: 781px) {

	.profile_page_timeline_box {
		position: relative;
		padding: 0 0 40px 50px;
	}

	.profile_page_timeline_box:last-child {
		padding: 0 0 0 50px;
	}

	.profile_page_timeline_box::before {
		left: 0;
	}

	.profile_page_timeline_box .profile_page_timeline_year {
		position: absolute;
		border-bottom: 0;
		padding: 0;
		top: 3px;
		left: -40px;
		transform: translateX(-100%);
	}

	.profile_page_timeline_box.future .profile_page_timeline_year {
		padding: 0;
		top: 30px;
	}

	.profile_page_timeline_box .profile_page_timeline_icon {
		width: 20px;
		height: 20px;
		left: 0;
		top: 0;
		transform: translateX(-50%);
	}

	.profile_page_timeline_box.future .profile_page_timeline_icon {
		width: 75px;
		height: 75px;
		transform: translateX(-50%);
	}

	.profile_page_timeline_box .profile_page_timeline_detail {
		margin-top: 0;
	}

	.profile_page_timeline_box.future .profile_page_timeline_detail {
		padding: 10px 0 0;
		margin-top: 0;
	}

	.profile_page_timeline_box .profile_page_timeline_detail .profile_page_timeline_head {
		margin-bottom: 20px;
	}

	.profile_page_timeline_box .profile_page_timeline_detail .profile_page_timeline_head_heading {
		font-size: 1.8rem;
	}

	.profile_page_timeline_box .profile_page_timeline_detail .profile_page_timeline_head_position {
		font-size: 1.4rem;
	}

	.profile_page_timeline_box .profile_page_timeline_image {
		display: flex;
		gap: 20px;
		margin-top: 30px;
	}

	.profile_page_timeline_box .profile_page_timeline_image .profile_page_timeline_image_box {
		width: 100%;
	}

	.profile_page_timeline_box .profile_page_timeline_image .profile_page_timeline_image_box:nth-child(2) {
		margin-top: 0;
	}

	.profile_page_timeline_box .profile_page_timeline_url {
		font-size: 1.2rem;
		font-weight: 500;
		line-height: 1.5;
		background: #EAEDF2;
		padding: 10px;
		margin-top: 20px;
		border-radius: 5px;
	}

	.profile_page_timeline_box .profile_page_timeline_url a {
		color: #344154;
	}

}

/* -----
	My Page - Timeline Edit Form
------------------------------ */

.my-page_profile_row .my-page_profile_timeline-list {
	margin-top: 20px;
}

.profile_page_timeline_label {
	font-size: 1.2rem;
    font-weight: 700;
	margin-bottom: 7px;
}

.my-page_profile_timeline-list input[type="text"],
.my-page_profile_timeline-list input[type="url"] {
    display: block;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
    border: solid 1px #ddd;
    border-radius: 2px;
}

.my-page_profile_timeline-list textarea {
    display: block;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
    border: solid 1px #ddd;
    border-radius: 2px;
}

.profile_page_timeline_box.add_timeline .profile_page_timeline_icon {
	width: 40px;
    height: 40px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	line-height: 33px;
	background: #344154;
    left: 0;
    top: 0;
}

.profile_page_timeline_box.add_timeline .profile_page_timeline_detail {
	margin-top: 0;
}

.profile_page_timeline_box.add_timeline .profile_page_timeline_head {
	padding-top: 5px;
	margin-bottom: 0;
}

/* -----
	Profile Page Body - Add Timeline Form
------------------------------ */

.add_timeline_form_wrap {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.75);
	z-index: 9999;
}

.is_active.add_timeline_form_wrap {
	display: block;
}

.add_timeline_form {
	position: absolute;
	top: 10%;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	border-radius: 10px 10px 0 0;
}

.add_timeline_form .add_timeline_form_btn_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	gap: 10px;
	border-bottom: solid 1px #ddd;
}

.add_timeline_form .add_timeline_form_btn {
	width: 100%;
	font-size: 1.3rem;
	font-weight: 500;
}

.add_timeline_form .add_timeline_form_btn a {
	display: inline-block;;
	height: 30px;
	line-height: 30px;
	padding: 0 15px;
	border: solid 1px #344154;
	border-radius: 15px;
}

.add_timeline_form .add_timeline_form_btn.head {
	text-align: center;
	font-weight: 900;
}

.add_timeline_form .add_timeline_form_btn.cancel a {
	color: #344154;
}

.add_timeline_form .add_timeline_form_btn.submit {
	text-align: right;
}

.add_timeline_form .add_timeline_form_btn.submit a {
	color: #fff;
	background: #344154;
}

.add_timeline_form .add_timeline_form_inner_wrap {
	height: 100%;
	overflow-y: auto;
}

.add_timeline_form .add_timeline_form_inner {
	padding: 15px;
	height: 100%;
	min-height: calc(100% + 30%);
}

.add_timeline_form .add_timeline_form_row:not(:last-child) {
	margin-bottom: 20px;
}

.add_timeline_form .add_timeline_form_row .date_select_wrap {
	display: flex;
	gap: 10px;
}

.add_timeline_form .form_select_wrap {
	position: relative;
	width: 100%;
}

.add_timeline_form .form_select_wrap::before {
    display: block;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: '\f0dd';
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    bottom: 5px;
    right: 15px;
    transform: translateY(-50%);
    z-index: 0;
}

.add_timeline_form .add_timeline_form_row select {
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
    padding-right: 20px;
    border: solid 1px #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.add_timeline_form .add_timeline_form_row .add_timeline_form_label {
	font-size: 1.2rem;
    font-weight: 700;
	margin-bottom: 7px;
}

.add_timeline_form .add_timeline_form_row input[type='text'],
.add_timeline_form .add_timeline_form_row input[type='url'] {
    display: block;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
    border: solid 1px #ddd;
    border-radius: 5px;
}

.add_timeline_form .add_timeline_form_row textarea {
    display: block;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
    border: solid 1px #ddd;
    border-radius: 5px;
}

.add_timeline_form .add_timeline_form_image {
	display: flex;
	gap: 10px;
}

.add_timeline_form .add_timeline_form_image_box {
	position: relative;
	width: 100%;
	background: #ddd;
	aspect-ratio: 16 / 9;
	border-radius: 5px;
}

.add_timeline_form .add_timeline_form_image_box .add_image_btn {
	position: absolute;
	width: 40px;
    height: 40px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	line-height: 40px;
	background: rgba(55,65,82,.5);
    top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 50%;
}

.add_timeline_form .add_timeline_form_image_box .add_image_btn i {
	position: relative;
	top: -1px;
}

@media screen and (min-width: 781px) {

.add_timeline_form_wrap {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.75);
	z-index: 9999;
}

.is_active.add_timeline_form_wrap {
	display: block;
}

.add_timeline_form {
	width: 100%;
	max-width: 800px;
	top: 50%;
	left: 50%;
	right: auto;
	bottom: auto;
	background: #fff;
	border-radius: 10px;
	transform: translate(-50%,-50%);
}

.add_timeline_form .add_timeline_form_inner_wrap {
	height: auto;
	max-height: 60vh;
	overflow-y: scroll;
}

.add_timeline_form .add_timeline_form_inner {
	padding: 15px;
	height: auto;
	min-height: auto;
}


}

/* -----
	Profile Page Body - Skill & Portfolio
------------------------------ */

.profile_page_skill_portfolio_section {
	padding: 40px 0 40px;
}

.profile_page_skill_portfolio_section .profile_page_skill {}

.profile_page_skill_portfolio_section .profile_page_portfolio {
	margin-top: 30px;
}

.profile_page_skill_portfolio_section .profile_page_skill_portfolio_section_head {
	font-size: 1.6rem;
    font-weight: 900;
    padding-bottom: 10px;
    border-bottom: solid 1px #344154;
    margin-bottom: 20px;
}

.profile_page_skill_portfolio_section .profile_page_skill_list {
	padding-left: 1.75rem;
}

.profile_page_skill_portfolio_section .profile_page_skill_list li {
	font-size: 14px;
    font-size: 1.4rem;
	font-weight: 500;;
    line-height: 1.75;
	list-style: disc;
}

.profile_page_skill_portfolio_section .profile_page_portfolio_list {}

.profile_page_skill_portfolio_section .profile_page_portfolio_list li:not(:last-child) {
	margin-bottom: 10px;
}

.profile_page_skill_portfolio_section .profile_page_portfolio_list li a {
	position: relative;
	display: block;
	color: #344154;
	font-size: 14px;
    font-size: 1.4rem;
	font-weight: 500;;
    line-height: 1.75;
	padding: 10px 15px;
	border: solid 1px #344154;
	border-radius: 5px;
}

.profile_page_skill_portfolio_section .profile_page_portfolio_list li a::before {
    display: block;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: '\f061';
    font-size: 1.5rem;
    font-weight: 700;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
	z-index: 0;
}

@media screen and (min-width: 781px) {

	.profile_page_skill_portfolio_section {
		width: 100%;
		display: flex;
		gap: 40px;
	}

	.profile_page_skill_portfolio_section .profile_page_skill,
	.profile_page_skill_portfolio_section .profile_page_portfolio {
		width: 100%;
		margin-top: 0;
	}

}

/* -----

	Internship Post

------------------------------ */

.i-post_wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 15px;
}

/* -----
	Internship Post Closing
------------------------------ */

.i-post_closing {
	padding: 15px 15px 0;
}

.i-post_closing_inner {
	color: #E1251B;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	padding: 10px;
	border: solid 1px #E1251B;
	border-radius: 5px;
}

@media screen and (min-width: 781px) {

.i-post_closing {
	padding: 40px 0 0;
}

}

/* -----
	Internship Post Head
------------------------------ */

.i-post_head {
	margin-bottom: 20px;
	padding: 15px 15px 20px 15px;
	border-bottom: solid 1px #ddd;
}

.i-post_head .i-post_thumb {
	margin-bottom: 20px;
}

.i-post_head .i-post_thumb img {
	border-radius: 5px;
}

.i-post_head .i-post_details {}

.i-post_head .i-post_details h1.i-post_title {
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: 900;
}

.i-post_head .i-post_tag-list_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 20px;
}

.i-post_head .i-post_tag-list {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.i-post_head .i-post_tag-list:last-child {
	margin-bottom: 0;
}

.i-post_head .i-post_tag-list .i-post_tag-list_head {
	display: inline-block;
	height: 18px;
	font-size: 10px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 18px;
	padding: 0 10px;
	border: solid 1px #F4F6F8;
	border-radius: 20px;
	margin-right: 5px;
    white-space: nowrap;
    min-width: 52px;
    text-align: center;
}

.i-post_head .i-post_tag-list ul {
	display: flex;
	margin-right: 10px;
}

.i-post_head .i-post_tag-list ul li:not(:last-child)::after  {
	content: '/';
	margin-left: 5px;
}

.i-post_head .i-post_tag-list ul li a {
	color: #344154;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: 700;
}

.i-post_head .i-post_data {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}

.i-post_head .i-post_data .i-post_client a {
	display: flex;
	align-items: center;
}

.i-post_head .i-post_data .i-post_client .i-post_client_logo {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	border: solid 1px #ddd;
	border-radius: 50px;
	overflow: hidden;
}

.i-post_head .i-post_data .i-post_client .i-post_client_logo img {
	width: 100%;
}

.i-post_head .i-post_data .i-post_client .i-post_client_name {
	color: #344154;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 900;
}

.i-post_head .i-post_data .i-post_like {
	display: flex;
	align-items: center;
}

.i-post_head .i-post_data .i-post_like .i-post_like-btn {
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	margin-right: 10px;
	border-radius: 20px;
	background: #FDEEED;
}

.i-post_head .i-post_data .i-post_like .i-post_like-btn i {
	position: relative;
	color: #E1251B;
	font-size: 15px;
	font-size: 1.5rem;
	top: 2px;
}

.i-post_head .i-post_data .i-post_like .i-post_like-conut {
	color: #E1251B;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 900;
}

@media screen and (min-width: 781px) {

.i-post_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px 0;
	border-bottom: solid 1px #ddd;
	margin-bottom: 40px;
}

.i-post_head .i-post_thumb {
	width: 50%;
}

.i-post_head .i-post_details {
	width: 50%;
	padding-left: 40px;
}

.i-post_head .i-post_details h1.i-post_title {
	font-size: 28px;
	font-size: 2.8rem;
}

.i-post_head .i-post_tag-list_wrap {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.i-post_head .i-post_tag-list {
	width: 50%;
	margin-bottom: 10px;
}

.i-post_head .i-post_tag-list:last-child {
	width: 50%;
}

.i-post_head .i-post_data {
	margin-top: 10px;
}

}

/* -----
	Internship Post Description
------------------------------ */

.i-post_desc_sec {}

.i-post_desc_sec .i-post_desc_sec_inner {}

.i-post_desc_sec_inner .i-post_desc_sec_recommend {
	position: relative;
	margin-top: 40px;
	border: solid 1px #344154;
	border-radius: 5px;
	padding: 20px 15px 15px;
	margin-bottom: 20px;
}

.i-post_desc_sec_inner .i-post_desc_sec_recommend h2 {
	position: absolute;
	width: 100%;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
	top: -17px;
}

.i-post_desc_sec_inner .i-post_desc_sec_recommend h2 span {
	background: #fff;
	padding: 0 15px;
}

.i-post_desc_sec_inner .i-post_desc_sec_recommend p {
	font-weight: 700;
}

.i-post_desc_sec_inner .i-post_desc_sec_statas {
	padding: 5px 15px 15px;
	background: #F4F6F8;
	margin-bottom: 40px;
	border-radius: 5px;
}

.i-post_desc_sec_inner .i-post_desc_sec_statas table {
	margin: 0;
}

.i-post_desc_sec_inner .i-post_desc_sec_statas table tbody {}

.i-post_desc_sec_inner .i-post_desc_sec_statas table tr {
	display: flex;
	font-size: 14px;
	font-size: 1.4rem;
	text-align: left;
	padding: 15px 0;
	border-bottom: solid 1px #344154;
}

.i-post_desc_sec_inner .i-post_desc_sec_statas table tr:first-child {
}

.i-post_desc_sec_inner .i-post_desc_sec_statas table th,
.i-post_desc_sec_inner .i-post_desc_sec_statas table td {
}

.i-post_desc_sec_inner .i-post_desc_sec_statas table th {
	max-width: 125px;
	min-width: 125px;
	font-weight: 700;
}

.i-post_desc_sec_inner .i-post_desc_sec_statas table th i {
	font-weight: 700;
	margin-right: 5px;
}

.i-post_desc_sec_inner .i-post_desc_sec_statas table td {}

@media screen and (min-width: 781px) {

.i-post_desc_sec_inner .i-post_desc_sec_recommend {
	position: relative;
	margin-top: 20px;
	padding: 30px 30px 30px;
	margin-bottom: 30px;
}

.i-post_desc_sec_inner .i-post_desc_sec_recommend h2 {
	position: absolute;
	width: 100%;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
	top: -17px;
}

.i-post_desc_sec_inner .i-post_desc_sec_recommend h2 span {
	background: #fff;
	padding: 0 15px;
}

.i-post_desc_sec_inner .i-post_desc_sec_recommend p {
	font-weight: 700;
}


.i-post_desc_sec_inner .i-post_desc_sec_statas {
	padding: 15px 30px 30px;
}

.i-post_desc_sec_inner .i-post_desc_sec_statas table tbody {
	display: flex;
	flex-wrap: wrap;
}

.i-post_desc_sec_inner .i-post_desc_sec_statas table tr {
	width: calc(50% - 10px);
	margin-right: 20px;
}

.i-post_desc_sec_inner .i-post_desc_sec_statas table tr:nth-child(2n) {
	margin-right: 0;
}

.i-post_desc_sec_inner .i-post_desc_sec_statas table tr:first-child {
	border-top: 0;
}

}

/* -----
	Internship Post Body
------------------------------ */

.i-post_body_wrap .i-post_body {
	padding: 0 15px;
	margin-bottom: 30px;
}

.i-post_body_wrap .i-post_sidebar {
	padding: 0 15px;
	margin-bottom: 30px;
}

@media screen and (min-width: 781px) {

.i-post_body_wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.i-post_body_wrap .i-post_body {
	width: 77.12%;
	padding: 0 30px 0 0;
	margin-bottom: 0;
}

.i-post_body_wrap .i-post_sidebar {
	width: 22.88%;
	border-left: solid 1px #ddd;
	padding: 0 0 0 30px;
	margin-bottom: 0;
}

}

/* -----
	Internship Post Sidebar
------------------------------ */

.i-post_sidebar .i-post_action-btn a {
	display: block;
	height: 45px;
	color: #fff;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
	line-height: 45px;
	padding: 0 15px;
	border-radius: 2px;
	margin-bottom: 10px;
}

.i-post_sidebar .i-post_action-btn a i {
	margin-right: 5px;
}

.i-post_sidebar .i-post_action_like a {
	color: #344154;
	border: solid 1px #344154;
}

.i-post_sidebar .i-post_action_like a i {
	color: #E1251B;
}

.i-post_sidebar .i-post_action_entry a {
	background: #E1251B;
}

.i-post_sidebar .i-post_action_contact a {
	background: #344154;
}

.i-post_sidebar .i-post_action_etc a {
	color: #344154;
	background: #F4F6F8;
}

/* -----
	Internship Single Bottom Button - SP
------------------------------ */

.i-single_btn {
	padding: 0 10px;
	margin-bottom: 10px;
}

.i-single_btn_inner {
    display: flex;
    align-items: center;
}

.i-single_btn a {
    display: block;
    height: 35px;
    color: #fff;
    font-size: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 35px;
    padding: 0 15px;
    border-radius: 2px;
}

.i-single_btn .i-single_btn_entry,
.i-single_btn .i-single_btn_like {
	width: 100%;
}

.i-single_btn .i-single_btn_entry {
	margin-right: 10px;
}

.i-single_btn .i-single_btn_entry a {
	background: #E1251B;
}

.i-single_btn .i-single_btn_like a {
	color: #344154;
	border: solid 1px #344154;
	background: #fff;
}

.i-single_btn .i-single_btn_entry a i,
.i-single_btn .i-single_btn_like a i {
	margin-right: 5px;
}

@media screen and (min-width: 781px) {

.i-post_sidebar .i-post_action-btn a {
	margin-bottom: 20px;
}

}

/* -----

	Sort Function

------------------------------ */

.sort_function_wrap {
	display: flex;
	align-items: center;
	background: #F4F6F8;
	padding: 10px;
	border-radius: 2px;
	margin-bottom: 20px;
}

.sort_function_wrap i {
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 700;
	margin-right: 7px;
}

.sort_function_wrap .sort_function_btn {
	width: 100%;
	height: 25px;
	font-size: 10px;
	font-size: 1rem;
	text-align: center;
	line-height: 25px;
	font-weight: 500;
	background: #fff;
	border-radius: 15px;
	margin-right: 3px;
	cursor: pointer;
}

.sort_function_wrap .sort_function_btn:last-child {
	margin-right: 0;
}

.sort_function_wrap .sort_function_btn.active {
    color: #fff;
    background: #344154;
}

@media screen and (min-width: 781px) {

.sort_function_wrap {
	width: min-content;
	padding: 10px 15px;
}

.sort_function_wrap .sort_function_btn {
	width: 100px;
	margin-right: 7px;
}

}

/* -----

	User Sort Function

------------------------------ */

.user_sort_function_wrap {
	width: 100%;
	background: #F4F6F8;
	padding: 20px;
	border-radius: 2px;
	margin-bottom: 40px;
}

.user_sort_function_row:not(:last-child) {
	margin-bottom: 10px;
}

.user_sort_function_box {
	width: 100%;
}

.user_sort_function_box:not(:last-child) {
	margin-bottom: 10px;
}

.user_sort_function_box input[type='text'] {
	width: 100%;
	height: 35px;
	font-size: 1.3rem;
	font-weight: 500;
	padding: 0 10px;
	background: #fff;
	border-radius: 2px;
}

.user_sort_function_box input[type='date'] {
	width: 100%;
	height: 35px;
	font-size: 1.3rem;
	font-weight: 500;
	padding: 0 10px;
	background: #fff;
	border-radius: 2px;
}

.user_sort_function_box select {
	width: 100%;
	font-size: 1.3rem;
	font-weight: 500;
	padding: 10px 20px 10px 10px;
	background: #fff;
	border-radius: 2px;
}

.user_sort_function_date_select_wrap {
	display: flex;
	gap: 7px;
}

.user_sort_function_date_select {
	position: relative;
	width: 100%;
}

.user_sort_function_date_select::before {
    display: block;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: '\f0dd';
    font-size: 1.5rem;
    font-weight: 700;
    top: 40%;
    right: 10px;
    transform: translateY(-50%);
	z-index: 0;
}

.user_sort_function_box_head {
	font-size: 1rem;
	font-weight: 900;
	margin-bottom: 7px;
}

.user_sort_function_date {
	display: flex;
	align-items: center;
}

.user_sort_function_date input:first-child {
	margin-right: 7px;
}

.user_sort_function_date input:last-child {
	margin-left: 7px;
}

.user_sort_function_status_list {
	display: flex;
	flex-wrap: wrap;
	padding: 11px 10px;
	background: #fff;
	border-radius: 2px;
}

.user_sort_function_status_list li {
	width: 50%;
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 10px;
}

.user_sort_function_status_list li:nth-last-child(1),
.user_sort_function_status_list li:nth-last-child(2) {
	margin-bottom: 0;
}

.user_sort_function_status_list input[type="checkbox"]{
    display: none;
}

.user_sort_function_status_list input[type="checkbox"] + label{
    display: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 2rem;
}

.user_sort_function_status_list input[type="checkbox"] + label::before{
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    left: 0;
    top: calc(50% + 1px);
	transform: translateY(-50%);
    border: 1px solid #ddd;
    background-color: #fff;
	border-radius: 2px;
}

.user_sort_function_status_list input[type="checkbox"]:checked + label::after{
    position: absolute;
    display: block;
	content: '';
    width: 9px;
    height: 9px;
    top: 3px;
    left: 3px;
    background: #344154;
	border-radius: 2px;
}

.user_sort_function_box.submit {
	width: 150px;
}

.user_sort_function_submit {
	width: 100%;
	height: 35px;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 35px;
	background: #344154;
	border-radius: 2px;
	cursor: pointer;
}

@media screen and (min-width: 781px) {

	.user_sort_function_row {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 15px;
	}

	.user_sort_function_box:not(:last-child) {
		margin-bottom: 0;
	}

	.user_sort_function_status_list {
		width: 100%;
		flex-wrap: nowrap;
		gap: 20px;
	}

	.user_sort_function_status_list li {
		width: auto;
		margin-right: 20px;
		margin-bottom: 0;
	}

	.user_sort_function_status_list li:nth-last-child(1),
	.user_sort_function_status_list li:nth-last-child(2) {
		margin-bottom: 0;
	}

	.user_sort_function_submit:hover {
		color: #344154;
		font-size: 1.3rem;
		background: #fff;
		border: solid 1px #344154;
	}

}

/* -----

	Internship Post Archive

------------------------------ */

.i-post_archive_list_wrap {
    padding: 0 15px;
}

.i-post_archive_list_head h1 {
	font-size: 20px;
	font-size: 2rem;
	font-weight: 900;
	text-align: center;
	padding: 30px 0;
}

.i-post_archive_search_result_wrap {
	padding: 0 15px;
	margin-bottom: 15px;
}

.i-post_archive_search_result_wrap .i-post_archive_search_result {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	padding: 15px;
	background: #F4F6F8;
	border-radius: 2px;
}

.i-post_archive_search_result_wrap .i-post_archive_search_result span {
	color: #E1251B;
	font-weight: 900;
}

@media screen and (min-width: 781px) {

.i-post_archive_list_head h1 {
	font-size: 24px;
	font-size: 2.4rem;
	padding: 40px 0;
}

.i-post_archive_list_wrap .i-post_archive_list_inner {
	max-width: 1160px;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 auto;
}

.i-post_archive_list_wrap .i-post_archive_list_inner .i-post_list {
	width: 25%;
	margin-bottom: 30px;
}

.i-post_archive_search_result_wrap {
	max-width: 1180px;
	padding: 0;
	margin: 0 auto 30px;
}

}

/* -----

	Internship Post Archive Contorol

------------------------------ */

.i-post_archive_control_wrap .i-post_archive_control_inner {
	padding: 0 15px;
}

.top_i-post_list_wrap .i-post_archive_control_inner {
	padding: 0;
}

.i-post_archive_control_wrap .i-post_archive_control_search .search_form {
    width: 100%;
    display: flex;
	margin-bottom: 10px;
}

.i-post_archive_control_search .search_form input[type="search"] {
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    padding: 10px;
    border: solid 1px #ddd;
    border-radius: 5px;
}

.i-post_archive_control_search .search_form input[type="submit"] {
    width: 125px;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 900;
    background: #344154;
    padding: 10px;
    border: solid 1px #ddd;
    border-radius: 5px;
}

.i-post_archive_control_cat-list_wrap {
    display: flex;
    align-items: center;
    font-weight: 900;
    background: #F4F6F8;
    padding: 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.i-post_archive_control_cat-list_wrap .i-post_archive_control_cat-list {
    width: 100%;
    height: 25px;
    font-size: 10px;
    font-size: 1rem;
    text-align: center;
    line-height: 25px;
    font-weight: 500;
    background: #fff;
    border-radius: 15px;
    margin-right: 3px;
    cursor: pointer;
}

.i-post_archive_control_cat-list_wrap .i-post_archive_control_cat-list i {
    margin-right: 3px;
}

.i-post_archive_control_cat-list_wrap .i-post_archive_control_cat-list:not(:first-child) {
    margin-left: 3px;
}

@media screen and (min-width: 781px) {

.i-post_archive_control_wrap .i-post_archive_control_inner {
	max-width: 1180px;
	padding: 0;
	margin: 0 auto;
}

.i-post_archive_control_wrap .i-post_archive_control {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;margin-bottom: 10px;
}

.i-post_archive_control_wrap .i-post_archive_control_search {
	width: 100%;
	margin-right: 10px;
}

.i-post_archive_control_wrap .i-post_archive_control_search .search_form {
    width: 100%;
    display: flex;
	margin-bottom: 0;
}

.i-post_archive_control_cat-list_wrap {
	width: 100%;
    display: flex;
    align-items: center;
    font-weight: 900;
    background: #F4F6F8;
    padding: 10px;
    border-radius: 2px;
    margin-bottom: 0;
}

.i-post_archive_control_cat-list_wrap .i-post_archive_control_cat-list {
    width: 100%;
    height: 25px;
    font-size: 14px;
    font-size: 1.2rem;
    text-align: center;
    line-height: 25px;
    font-weight: 500;
    background: #fff;
    border-radius: 15px;
    margin-right: 3px;
    cursor: pointer;
}

}

/* -----

	Post Archive Pager

------------------------------ */

.post_archive_pager {
	margin: 40px 0;
}

.archive_pager_inner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.archive_pager_inner a,
.archive_pager_inner span {
	width: 35px;
    height: 35px;
    display: block;
    color: #344154;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 700;
	text-align: center;
    line-height: 35px;
    border: solid 1px #ddd;
	margin: 0 3px;
	border-radius: 2px;
}

.archive_pager_inner span.current {
	display: block;
    color: #fff;
    background: #344154;
    border: solid 1px #344154;
}

/* -----

	Internship Post List

------------------------------ */

.relation_i-post_list_wrap {
	padding: 30px 15px;
	border-top: solid 1px #ddd;
}

.relation_i-post_list_sec_head {
	font-size: 2px;
	font-size: 2rem;
	font-weight: 900;
	text-align: center;
	margin-bottom: 30px;
}

.i-post_list {
	padding: 10px;
	margin-bottom: 20px;
	box-shadow: 0px 0px 20px 0px rgba(52,65,84,.25);
	border-radius: 2px;
}

.i-post_list_details {
	display: flex;
}

.i-post_list .i-post_list_thumb {
	max-width: 150px;
	margin-right: 10px;
}

.i-post_list .i-post_list_thumb img {
	border-radius: 5px;
}

.i-post_list_tag {
	margin-top: 10px;
}

.i-post_list_details h2.i-post_list_title {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 900;
}

.i-post_list_tag-list_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 10px;
}

.i-post_list_tag-list {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.i-post_list_tag-list:last-child {
	margin-bottom: 0;
}

.i-post_list_tag-list .i-post_list_tag-list_head {
	display: inline-block;
	height: 18px;
	font-size: 10px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 18px;
	padding: 0 10px;
	border: solid 1px #F4F6F8;
	border-radius: 20px;
	margin-right: 5px;
}

.i-post_list_tag-list ul {
	display: flex;
	margin-right: 10px;
}

.i-post_list_tag-list ul li:not(:last-child)::after  {
	content: '/';
	margin-left: 5px;
}

.i-post_list_tag-list ul li a {
	color: #344154;
	font-size: 10px;
	font-size: 1rem;
	font-weight: 700;
}

.i-post_list_data {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
}

.i-post_list_data .i-post_list_client a {
	display: flex;
	align-items: center;
}

.i-post_list_data .i-post_list_client .i-post_list_client_logo {
	width: 30px;
	height: 30px;
	margin-right: 10px;
	border: solid 1px #ddd;
	border-radius: 50px;
	overflow: hidden;
}

.i-post_list_data .i-post_list_client .i-post_list_client_logo img {
	width: 100%;
}

.i-post_list_data .i-post_list_client .i-post_list_client_name {
	color: #344154;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: 700;
}

.i-post_list_data .i-post_list_like {
	display: flex;
	align-items: center;
}

.i-post_list_data .i-post_list_like .i-post_list_like-btn {
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	margin-right: 5px;
	border-radius: 20px;
	background: #FDEEED;
}

.i-post_list_data .i-post_list_like .i-post_list_like-btn i {
	position: relative;
	color: #E1251B;
	font-size: 15px;
	font-size: 1.5rem;
	top: 2px;
}

.i-post_list_data .i-post_list_like .i-post_list_like-conut {
	color: #E1251B;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: 700;
}

@media screen and (min-width: 781px) {
.i-post_list_details {
	display: block;
}

.i-post_list .i-post_list_thumb {
	max-width: 100%;
	margin-right: 0;
}

.i-post_list .i-post_list_thumb {
	margin-bottom: 10px;
}

.i-post_list_details h2.i-post_list_title {
	font-size: 16px;
	font-size: 1.6rem;
}

.i-post_list_tag-list_wrap {
	margin-top: 10px;
}

}
@media screen and (min-width: 1210px) {
    .i-post_archive_list_wrap .i-post_archive_list_inner,
    .top_i-post_list_wrap .top_i-post_list_inner,
	.relation_i-post_list_wrap .relation_i-post_list_inner {
        column-gap: 20px;
    }

    .i-post_archive_list_wrap .i-post_archive_list_inner .i-post_list,
    .top_i-post_list_wrap .top_i-post_list_inner .i-post_list,
	.relation_i-post_list_wrap .relation_i-post_list_inner .i-post_list {
        width: calc((100% - 60px) / 4);
        margin-right: 0;
    }

	.i-post_list .i-post_list_thumb {
		/* Ratio 16: 9 */
		width: 255px !important;
		height: 143px !important;
	}
}
/* -----

	Post Entry

------------------------------ */

.post_entry h2 {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
	padding: 3px 0 3px 15px;
	border-left: solid 5px #344154;
	margin: 60px 0 30px;
}

.post_entry h2:first-child {
	margin-top: 0;
}

.post_entry p {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom: 30px;
}

.post_entry table {
	margin-bottom: 30px;
	border-top: solid 1px #ddd;
	border-left: solid 1px #ddd;
	border-right: solid 1px #ddd;
}

.post_entry table:last-child {
	margin-bottom: 0;
}

.post_entry table tr {
	border-bottom: solid 1px #ddd;
}

.post_entry table th,
.post_entry table td {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.75;
	padding: 15px 10px;
}

.post_entry table th {
	font-weight: 500;
	text-align: center;
	background: #F4F6F8;
	border-right: solid 1px #ddd;
}

.post_entry figure img {
	border-radius: 5px;
}

.post_entry .post_entry_col-2 {
	margin-bottom: 30px;
}

@media screen and (min-width: 781px) {

.post_entry .post_entry_col-2 {
	display: flex;
}

.post_entry .post_entry_col-2 .post_entry_col-2_left,
.post_entry .post_entry_col-2 .post_entry_col-2_right {
	width: 50%;
}

.post_entry .post_entry_col-2 .post_entry_col-2_left {
	padding-right: 20px;
}

.post_entry .post_entry_col-2 .post_entry_col-2_right {
	padding-left: 20px;
}

}

/* -----

	My Page

------------------------------ */

.my-page_wrap .my-page_profile {
	padding: 15px;
	border-bottom: solid 1px #ddd;
}

.my-page_wrap .my-page_profile_inner {
	display: flex;
	align-items: center;
	background: #fff;
}

.my-page_wrap .my-page_profile .my-page_profile_icon {
	width: 50px;
	height: 50px;
	border: solid 1px #ddd;
	margin-right: 15px;
	border-radius: 50%;
	overflow: hidden;
}

.my-page_wrap .my-page_profile .my-page_profile_name h1 {
	font-size: 15px;
    font-size: 1.5rem;
    font-weight: 900;
}

.my-page_wrap .my-page_profile .my-page_profile_name .my-page_profile_id {
	font-size: 10px;
    font-size: 1rem;
    font-weight: 700;
}

@media screen and (min-width: 781px) {

.my-page_wrap .my-page_profile {
	padding: 15px 0;
	margin-bottom: 40px;
}

.my-page_wrap .my-page_profile_inner {
	margin: 0 auto;
	width: 1180px;
    max-width: calc(100vw - 30px);
}

}

/* -----
	My Page Sidebar
------------------------------ */

@media screen and (min-width: 781px) {

.my-page_sidebar_wrap {}

.my-page_sidebar_wrap .my-page_sidebar_inner {
	display: flex;
	max-width: 1180px;
	margin: 0 auto;
}

.my-page_sidebar_wrap .my-page_sidebar_inner .my-page_sidebar {
    width: 22.88%;
    padding: 0 30px 0 0;
}

.my-page_sidebar_wrap .my-page_sidebar_inner .my-page_sidebar_contents {
    width: 77.12%;
    padding: 0 0 0 30px;
}

}

/* -----
	My Page - Profile & Edit Form
------------------------------ */

.my-page_profile_list_inner {
	padding: 0 15px;
}

.my-page_profile_list_section {
	padding: 20px 0 30px;
	border-bottom: solid 1px #ddd;
	margin-bottom: 15px;
}

.my-page_profile_list_section h2 {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 900;
}

.my-page_profile_list_section .my-page_profile_note {
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 3px;
}

.my-page_profile_list {
	margin-top: 20px;
}

.my-page_profile_list .my-page_profile_list_title h3 {
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.my-page_profile_list_title .required {
    display: inline-block;
    color: #fff;
    font-size: 10px;
    font-size: 1rem;
    font-weight: 700;
	line-height: 1;
    background: #E1251B;
    padding: 3px 10px;
    border-radius: 2px;
    margin-left: 7px;
}

.my-page_profile_list .continuous input:not(:last-child) {
	margin-bottom: 10px;
}

.my-page_profile_list .my-page_profile_list_contents .edit_comp {
	display: inline-block;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 500;
	background: #F4F6F8;
	padding: 10px;
	border-radius: 2px;
}

.my-page_profile_list .my-page_profile_list_contents .edit_comp.year {
	margin-right: 10px;
}

.my-page_profile_list_contents.icon_edit {
	display: flex;
	align-items: flex-start;
	margin-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.my-page_profile_list_contents.image_upload {
	margin-top: 0px !important;
}

.my-page_profile_icon_edit {
	min-width: 50px;
    min-height: 50px;
    border: solid 1px #ddd;
    margin-right: 15px;
    border-radius: 50%;
    overflow: hidden;
}

.my-page_profile_save_btn,
.my-page_profile_edit_btn {
	text-align: right;
	margin-top: 15px;
}

.my-page_profile_add_btn {
	margin-top: 15px;
}

.my-page_profile_save_btn a,
.my-page_profile_edit_btn a {
	display: inline-block;
    height: 30px;
    font-size: 1.3rem;
    font-weight: 500;
	line-height: 30px;
    padding: 0 15px;
	color: #fff;
    background: #344154;
    border-radius: 15px;
}

.my-page_profile_edit_btn a {
	color: #344154;
    background: none;
	border: solid 1px #344154;
}

.my-page_profile_add_btn a {
	display: inline-block;
    height: 30px;
	width: 30px;
    font-size: 1.3rem;
    font-weight: 500;
	line-height: 30px;
	text-align: center;
	color: #344154;
    border: solid 1px #344154;
    border-radius: 50%;
}

.my-page_profile_add_btn a i {
	position: relative;
	top: -1px;
}

.my-page_profile_icon_comp {
	width: 150px;
    height: 150px;
    border: solid 1px #ddd;
    border-radius: 50%;
    overflow: hidden;
	margin: 15px auto 0;
}

.my-page_profile_up-load .my-page_profile_up-load_head {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 900;
	margin-bottom: 15px;
}

.my-page_profile_up-load .my-page_profile_up-load_btn {
    display: block;
    height: 35px;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    line-height: 35px;
    padding: 0 15px;
	border: solid 1px #344154;
    border-radius: 2px;
	margin-bottom: 15px;
}

.my-page_profile_bg_edit {
    border: solid 1px #ddd;
    border-radius: 5px;
    overflow: hidden;
	margin-top: 15px;
	margin-bottom: 15px;
}

.my-page_profile_bg {
    border: solid 1px #ddd;
    border-radius: 5px;
    overflow: hidden;
	margin-top: 15px;
}

.my-page_profile_list input[type="text"],
.my-page_profile_list input[type="tel"],
.my-page_profile_list input[type="email"],
.my-page_profile_list input[type="url"] {
    display: block;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
	background: #fff;;
    border: solid 1px #ddd;
    border-radius: 2px;
}

.my-page_profile_list textarea {
    display: block;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
    border: solid 1px #ddd;
    border-radius: 2px;
}

.my-page_profile_list .form_select_wrap {
	position: relative;
}

.my-page_profile_list .form_select_wrap::before {
    display: block;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: '\f0dd';
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    top: 40%;
    right: 15px;
    transform: translateY(-50%);
	z-index: 0;
}

.my-page_profile_list select {
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
    padding-right: 20px;
    border: solid 1px #ddd;
    border-radius: 2px;
    cursor: pointer;
}

.my-page_profile_list .date_select_wrap {
	display: flex;
}

.my-page_profile_list .date_select_wrap .form_select_wrap {
	width: 100%;
	margin-right: 10px;
}

.company_profile_edit {
    width: 250px;
    height: 140px;
    border: solid 1px #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.form_address_wrap .form_address_row {
	margin-bottom: 10px;
}

.form_address_wrap .form_address_row .form_address_row_head {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
	margin-bottom: 5px;
}

.form_address_wrap .form_address_row.post-code {
	display: flex;
	align-items: center;
}

.my-page_profile_list .post-code_auto {
    display: block;
    height: 30px;
    color: #fff;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    line-height: 30px;
	background: #344154;
    padding: 0 15px;
    border-radius: 20px;
	margin-left: 10px;
	cursor: pointer;
}

.my-page_profile_list .form_address_cities {
	margin-top: 10px;
}

.my-page_profile_submit {
	padding: 20px 0 40px;
}

.my-page_profile_submit input[type="submit"] {
    display: block;
    width: 100%;
    height: 50px;
    color: #fff;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 50px;
    background: #344154;
    border-radius: 25px;
    margin: 0 auto;
	cursor: pointer;
	transition: all .5s cubic-bezier(.215,.61,.355,1);
}

.my-page_profile_list_input_set {
	padding: 10px;
	background: #F4F6F8;
	border-radius: 5px;
}

.my-page_profile_list_input_set_label {
	font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.my-page_profile_list_input_set:not(:last-child) {
	margin-bottom: 10px;
}

.my-page_profile_list_input_set input[type="text"]  {
	margin-bottom: 10px;
}

@media screen and (min-width: 781px) {

.my-page_profile_list_wrap {}

.my-page_profile_list_inner {
	max-width: 1180px;
	padding: 0;
	margin: 0 auto;
}

.my-page_profile_list_section {
	padding: 0 0 40px 0;
	border-bottom: solid 1px #ddd;
	margin-bottom: 40px;
}

.my-page_profile_list {
	display: flex;
	margin-top: 30px;
}

.my-page_profile_list .my-page_profile_list_title {
    flex: 0 0 30%;
	padding-right: 20px;
}

.my-page_profile_list .my-page_profile_list_title h3 {
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.my-page_profile_list .my-page_profile_list_contents {
	width: 100%;
	padding-left: 20px;
    flex: 0 0 70%;
}

.my-page_profile_list .my-page_profile_list_contents h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.my-page_profile_list .my-page_profile_list_contents .edit_comp {
	display: inline-block;
	padding: 10px 15px;
}

.my-page_profile_list_contents.icon_edit {
	align-items: center;
	margin-top: 20px;
}

.my-page_profile_icon_edit {
	min-width: 150px;
	max-width: 150px;
    min-height: 150px;
    max-height: 150px;
    margin-right: 30px;
}

.my-page_profile_icon_comp {
	margin: 15px auto 0 0;
}

.my-page_profile_up-load .my-page_profile_up-load_head {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 900;
	margin-bottom: 15px;
}

.my-page_profile_up-load .my-page_profile_up-load_btn {
	max-width: 150px;
	margin-bottom: 15px;
	cursor: pointer;
}

.my-page_profile_bg_edit {
    border: solid 1px #ddd;
    border-radius: 5px;
    overflow: hidden;
	margin-top: 15px;
	margin-bottom: 15px;
}

.my-page_profile_list .date_select_wrap {
	display: flex;
}

.my-page_profile_list .date_select_wrap .form_select_wrap {
	width: 100%;
	margin-right: 10px;
}

.my-page_profile_list .date_select_wrap .form_select_wrap:last-child {
	margin-right: 0;
}

.form_address_wrap .form_address_row.post-code input {
	max-width: 150px;
}

.my-page_profile_list .form_select_wrap.year {
    max-width: 100px;
}

.my-page_profile_list .form_select_wrap.month {
    max-width: 75px;
}

.my-page_profile_list .form_address_cities {
	margin-top: 10px;
}

.my-page_profile_submit input[type="submit"] {
    color: #344154;
	border: solid 1px #344154;
    background: #fff;
}

.my-page_profile_submit input[type="submit"]:hover {
    color: #fff;
    background: #344154;
}

}

/* -----
	My Page - Like
------------------------------ */

.my-page_like_list_wrap {
	padding: 20px 0;
}

.my-page_like_list_head {
	padding: 0 15px;
	margin-bottom: 20px;
}

.my-page_like_list_head h2 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 900;
}

.my-page_like_list_inner {
	padding: 0 15px;
}

@media screen and (min-width: 781px) {

.my-page_like_list_head {
	padding: 0;
	margin-bottom: 20px;
}

.my-page_like_list_head h2 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 900;
}

.my-page_like_list_inner {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
}

.my-page_like_list_inner .i-post_list {
    width: 33.33333%;
    max-width: 280px;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 15px;
}

.my-page_like_list_inner .i-post_list:nth-child(3n) {
    margin-right: 0;
}

}

/* -----
	My Page - Manegement
------------------------------ */

.my-page_manegement_inner {
	padding: 20px 15px;
}

.my-page_manegement_inner > h2 {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 20px;
}

.my-page_manegement_tab-list {
	display: flex;
	margin-bottom: 15px;
	border-bottom: solid 1px #344154;
}

.my-page_manegement_tab-list .my-page_manegement_cat {
	width: 16.66666%;
    height: 35px;
    color: #344154;
    font-size: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 35px;
    margin-right: 5px;
    border-radius: 2px 2px 0 0;
    background: #EAEDF2;
}

.my-page_manegement_tab-list .my-page_manegement_cat:last-child {
	margin-right: 0;
}

.my-page_manegement_tab-list .my-page_manegement_cat.active {
	color: #fff;
	background: #344154;
}

.my-page_manegement-list > li {
	position: relative;
	padding: 20px;
	box-shadow: 0px 0px 20px 0px rgb(52 65 84 / 25%);
	border-radius: 2px;
	margin-bottom: 20px;
}

.my-page_manegement-list.user-status > li {
	margin-bottom: 30px;
}

.my-page_manegement-list .manegement-list_title {
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 700;
}

.manegement-list_tag-list_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 10px;
}

.manegement-list_tag-list {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.manegement-list_tag-list:last-child {
	margin-bottom: 0;
}

.manegement-list_tag-list .manegement-list_tag-list_head {
	display: inline-block;
	height: 18px;
	font-size: 10px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 18px;
	padding: 0 10px;
	background: #EAEDF2;
	border-radius: 20px;
	margin-right: 5px;
}

.manegement-list_tag-list ul {
	display: flex;
	margin-right: 10px;
}

.manegement-list_tag-list ul li:not(:last-child)::after  {
	content: '/';
	margin-left: 5px;
}

.manegement-list_tag-list ul li,
.manegement-list_tag-list ul li a {
	color: #344154;
	font-size: 10px;
	font-size: 1rem;
	font-weight: 700;
}

.manegement-list_data {
	display: flex;
	font-size: 10px;
	font-size: 1rem;
	font-weight: 700;
	margin-top: 15px;
}

.manegement-list_data .manegement-list_client {
	margin-right: 10px;
}

.manegement-list_data .manegement-list_client a {
	text-decoration: underline;
}

.manegement-list_data .manegement-list_client a i {
	color: #344154;
	margin-right: 3px;
}

.manegement-list_data .manegement-list_like,
.manegement-list_data .manegement-list_user,
.manegement-list_data .manegement-list_start-date {
	display: flex;
	margin-right: 10px;
}

.manegement-list_data i {
	margin-right: 3px;
}

.manegement-list_data a {
	margin-left: 3px;
}

.manegement-list_data .manegement-list_like i {
	color: #E1251B;
}

.manegement-list_data .manegement-list_user {
	display: flex;
	margin-right: 10px;
}

.manegement-list_data .manegement-list_start-date span {
	margin-right: 3px;
}

/* Mobile responsive: 2 rows of 3 tabs each */
@media screen and (max-width: 768px) {
    .my-page_manegement_tab-list {
        flex-wrap: wrap;
        gap: 0;
    }
    
    .my-page_manegement_tab-list .my-page_manegement_cat {
        width: 33.33333%;
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 9px;
        font-size: 0.9rem;
    }
    
    /* First row: Status-based tabs */
    .my-page_manegement_cat[data-tab_type="editing"],
    .my-page_manegement_cat[data-tab_type="applying"], 
    .my-page_manegement_cat[data-tab_type="rejected"] {
        order: 1;
    }
    
    /* Second row: Date-based tabs */
    .my-page_manegement_cat[data-tab_type="under_recruitment"],
    .my-page_manegement_cat[data-tab_type="in_progress"],
    .my-page_manegement_cat[data-tab_type="end"] {
        order: 2;
    }
}

@media screen and (min-width: 781px) {

.my-page_manegement_tab-list .my-page_manegement_cat {
    font-size: 12px;
    font-size: 1.2rem;
}

}

/* -----
	My Page User Management
------------------------------ */

.my-page_manegement-list_user-status {
	position: relative;
}

.my-page_manegement-list_user-status_current {
	position: absolute;
	width: 150px;
	height: 26px;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	line-height: 26px;
	background: #E1251B;
	border-radius: 15px;
	top: -33px;
	left: -5px;
}

.my-page_manegement-list_user-status_current .user-status_change {
	position: absolute;
	right: 10px;
	top: 0;
}

.user-status_select_wrap {
	display: none;
	position: absolute;
	width: 150px;
	padding: 10px;
	background: #fff;
	top: -3px;
	left: -5px;
	box-shadow: 0px 0px 20px 0px rgb(52 65 84 / 25%);
	border-radius: 2px;
}

.user-status_select_wrap.is_active {
	display: block;
}

.user-status_select_wrap ul li {
	height: 26px;
	color: #344154;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	line-height: 26px;
	padding: 0 15px;
	border: solid 1px #EAEDF2;
	border-radius: 15px;
}

.user-status_select_wrap ul li.active {
	color: #fff;
	background: #E1251B;
	border: 0;
}

.user-status_select_wrap ul li:not(:last-child) {
	margin-bottom: 7px;
}

.user-status_select_button {
	margin-top: 7px;
}

.user-status_select_button a {
	display: block;
	font-size: 1.3rem;
	font-weight: 500;
	text-align: center;
}

.manegement-list_plofile_info_wrap {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.manegement-list_plofile_icon {
    width: 75px;
    height: 75px;
    border: solid 1px #ddd;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
}

.manegement-list_plofile_id {
	display: flex;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 500;
	margin-bottom: 7px;
}

.manegement-list_plofile_id span {
	height: 15px;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	line-height: 15px;
	padding: 0 7px;
	background: #344154;
	margin-right: 7px;
	border-radius: 2px;
}

.manegement-list_plofile_name {
	display: flex;
	line-height: 1;
	align-items: flex-end;
	margin-bottom: 7px;
}

.manegement-list_plofile_name a {
	display: block;
	color: #344154;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
}
.manegement-list_plofile_sex {
	height: 15px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 15px;
	padding: 0 7px;
	background: #EAEDF2;
	margin-left: 7px;
	border-radius: 2px;
}

.manegement-list_plofile_school {
	display: flex;
	align-items: center;
}

.manegement-list_plofile_school-name {
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
}

.manegement-list_plofile_school-graduation {
	height: 15px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 15px;
	padding: 0 7px;
	background: #EAEDF2;
	margin-left: 5px;
	border-radius: 2px;
}

.manegement-list_plofile_connect {}

.manegement-list_plofile_connect_list {
	display: flex;
	align-items: flex-start;
	margin-bottom: 7px;
}

.manegement-list_plofile_connect_list:last-child {
	margin-bottom: 0;
}

.manegement-list_plofile_connect_list dt,
.manegement-list_plofile_connect_list dd {
	font-size: 1.2rem;
	line-height: 1.25;
}

.manegement-list_plofile_connect_list dt {
	min-width: 85px;
	font-weight: 700;
}

.manegement-list_plofile_connect_list dt i {
	margin-right: 2px;
}

.manegement-list_plofile_connect_list dd {
	font-weight: 500;
}

.manegement-list_join_internship {
	padding: 15px;
	border: solid 1px #ddd;
	border-radius: 2px;
}

@media screen and (min-width: 781px) {

.manegement-list_plofile {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.manegement-list_plofile_info_wrap {
	width: 50%;
	margin-bottom: 0;
}

.manegement-list_plofile_connect {
	width: 50%;
}

}

/* -----
	My Page Menu
------------------------------ */

.my-page_wrap .my-page_menu_sp {
	background: #F4F6F8;
	padding: 20px 15px;
}

.my-page_wrap  .my-page_menu_sp_head {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 900;
	margin-bottom: 10px;
}

.my-page_wrap .my-page_menu_sp ul:not(:last-child) {
	border-bottom: solid 1px #ddd;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.my-page_wrap .my-page_menu_sp ul li a {
    display: block;
    height: 45px;
    color: #344154;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    line-height: 45px;
	background: #fff;
    padding: 0 20px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.my-page_wrap .my-page_menu_sp ul li:last-child a {
    margin-bottom: 0;
}

.my-page_wrap .my-page_menu_sp ul li a i {
	margin-right: 5px;
}

.my-page_wrap .my-page_menu_sp ul li.my-page_message a i {}

@media screen and (min-width: 781px) {

.my-page_wrap  .my-page_menu_pc_head {
	color: #ddd;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 900;
	padding: 0 15px;
	margin-bottom: 10px;
}

.my-page_wrap .my-page_menu_pc ul:not(:last-child) {
	border-bottom: solid 1px #ddd;
	margin-bottom: 10px;
}

.my-page_wrap .my-page_menu_pc ul li a {
    display: block;
    color: #344154;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 10px 15px;
	margin-bottom: 10px;
	border-radius: 5px;
	transition: all .5s cubic-bezier(.215,.61,.355,1);
}

.my-page_wrap .my-page_menu_pc ul li a.current {
	background: #EAEDF2;
}

.my-page_wrap .my-page_menu_pc ul li a:hover {
	opacity: 1;
	background: #EAEDF2;
}

.my-page_wrap .my-page_menu_pc ul li a i {
	margin-right: 5px;
}

}

/* -----

	Footer

------------------------------ */

#footer {
	color: #fff;
	background: #344154;
}

/* -----
	Footer SNS List
------------------------------ */

#footer .footer_share {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
	border-top: solid 1px #ddd;
	background: #fff;
}

#footer .footer_share .footer_share_head {
	color: #344154;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	margin-right: 20px;
}

#footer .footer_share .footer_share_head i {
	margin-right: 5px;
}

#footer .footer_share ul.footer_share_sns-list {
	display: flex;
	align-items: center;
}

#footer .footer_share ul.footer_share_sns-list li:not(:last-child) {
	margin-right: 10px;
}

#footer .footer_share ul.footer_share_sns-list li a {
	color: #344154;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
}

/* -----
	Footer Contents
------------------------------ */

#footer .footer_contents {
	padding: 40px 15px 56px;
}

#footer .footer_contents_inner {}

#footer .footer_sitemap {
	margin-bottom: 30px;
}

#footer .footer_sitemap .footer_sitemap_title {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 10px;
}

#footer .footer_sitemap ul li a {
	display: block;
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

#footer .footer_sitemap ul li a::before {
	font-family: 'Font Awesome 5 Free';
	content: '\f35a';
	font-weight: 400;
	margin-right: 5px;
}

#footer .footer_navi .s-navi ul li a {
	display: block;
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

#footer .footer_navi .s-navi ul li a::before {
	font-family: 'Font Awesome 5 Free';
	content: '\f0da';
	font-weight: 700;
	margin-right: 5px;
}

#footer .footer_copy {
	display: flex;
	align-items: center;
	font-size: 10px;
	font-size: 1rem;
	font-weight: 500;
	margin-top: 40px;
}

#footer .footer_copy img {
	width: auto;
	height: 25px;
	margin-right: 10px;
}

@media screen and (min-width: 781px) {

#footer .footer_contents {
	padding: 40px 0;
	margin: 0 auto;
    width: 1200px;
    max-width: calc(100vw - 30px);
}

#footer .footer_contents_inner {
	display: flex;
	justify-content: space-between;
}

#footer .footer_sitemap {
	margin-bottom: 0;
}

#footer .footer_navi .s-navi ul {
	display: flex;
	align-items: flex-end;
}

#footer .footer_navi .s-navi ul li a {
	margin-bottom: 0;
	margin-left: 10px;
}

#footer .footer_copy {
	justify-content: flex-start;
}

}

/* -----

	Form Page Design

------------------------------ */

.form_page_wrap {
	background: #F4F6F8;
}

.form_page_inner {
	padding: 0 15px 40px;
}

.form_page_inner .form_page_head h1 {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    padding: 30px 0;
}

.form_page_inner .form_comment {
	max-width: 600px;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
	margin: 0 auto 30px;
}

.form_step {
	max-width: 580px;
	margin: 0 auto 40px;
}

.form_step-list_wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form_step-list {
    position: relative;
    text-align: center;
    width: 33.333%;
}

.form_step-list::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: #fff;
	top: 15px;
	left: -50%;
	z-index: 0;
}

.form_step-list:first-child::before {
    content: none;
}

.form_step-list.active::before,
.form_step-list.complete::before {
    background-color: #344154;
}

.form_step-list .form_step-list_num {
	position: relative;
	width: 30px;
	height: 30px;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	background: #fff;
	margin: 0 auto;
	z-index: 1;
}

.form_step-list.active .form_step-list_num,
.form_step-list.complete .form_step-list_num {
	color: #fff;
	background: #344154;
}

.form_step-list .form_step-list_status {
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
	margin-top: 10px;
}

.form_page_inner .form_wrap {
	padding: 40px 15px;
	background: #fff;
	border-radius: 2px;
	box-shadow: 0px 0px 20px 0px rgb(52,65,84,.25);
}

.contact_form .form_row {
	margin-bottom: 20px;
}

.contact_form .form_row label {
	display: block;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.contact_form .form_row .form_row_head {
	font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact_form .form_row label .required {
	display: inline-block;
	color: #fff;
	font-size: 10px;
	font-size: 1rem;
	font-weight: 700;
	background: #E1251B;
	padding: 3px 10px;
	border-radius: 2px;
	margin-left: 7px;
}

.contact_form .form_row label .label_note {
	display: block;
	font-size: 10px;
	font-size: 1rem;
	font-weight: 400;
	margin-top: 7px;
}

.contact_form .form_row input[type="text"],
.contact_form .form_row input[type="tel"],
.contact_form .form_row input[type="email"],
.contact_form .form_row input[type="password"] {
	display: block;
	width: 100%;
	font-size: 16px;
	font-size: 1.6rem;
	padding: 10px;
	border: solid 1px #ddd;
	border-radius: 2px;
}

.contact_form .form_row textarea {
	width: 100%;
	height: 8em;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.75;
	padding: 10px;
	border: solid 1px #ddd;
	border-radius: 2px;
}

.contact_form .form_row .form_row_textarea_check {
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.75;
	padding: 10px;
	border: solid 1px #ddd;
	border-radius: 2px;
}

.contact_form .form_row select {
	width: 100%;
	font-size: 16px;
	font-size: 1.6rem;
	padding: 10px 20px 10px 10px;
	border: solid 1px #ddd;
	border-radius: 2px;
	cursor: pointer;
}

.contact_form .form_row select::-ms-expand {
    display: none;
}

.contact_form .form_select_wrap {
	position: relative;
}

.contact_form .form_select_wrap::before {
	display: block;
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	content: '\f0dd';
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
	top: 40%;
	right: 15px;
	transform: translateY(-50%);
	z-index: 0;
}

.contact_form .date_select_wrap {
	display: flex;
}

.contact_form .date_select_wrap .form_select_wrap {
	width: 100%;
	margin-right: 10px;
}

.contact_form .date_select_wrap .form_select_wrap:last-child {
	margin-right: 0;
}

.contact_form .form_submit {
	display: flex;
	gap: 20px;
}

.contact_form .form_submit input[type="submit"],
.contact_form .form_submit button[type="submit"],
.contact_form .form_submit button[type="button"] {
    display: block;
	width: 100%;
    height: 50px;
    color: #fff;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 50px;
    background: #344154;
    border-radius: 25px;
    margin: 0 auto;
}

.contact_form .form_submit input.back[type="submit"] {
    color: #344154;
    background: none;
	border: solid 1px #344154;
}

.contact_form .form_password_forgot {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
	text-decoration: underline;
	margin-top: 20px;
}

.form_wrap .form_complete_message h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.form_wrap .form_complete_message p {
    font-size: 1.4rem;
    margin-bottom: 30px;
}
.form_wrap .form_complete_message .txt_center {
		text-align: center;
}
.form_wrap .form_complete_message .txt_underline {
		text-decoration: underline;
}
.form_wrap .form_complete_message .form_complete_back-btn a {
    display: block;
    width: 100%;
    height: 50px;
    color: #fff;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 50px;
    background: #344154;
    border-radius: 25px;
    margin: 0 auto;
}

@media screen and (min-width: 781px) {

.form_page_inner {
	padding: 0 0 40px;
}

.form_page_inner .form_page_head h1 {
    font-size: 24px;
    font-size: 2.4rem;
    padding: 40px 0;
}

.form_page_inner .form_wrap {
	max-width: 580px;
	padding: 40px 60px;
	margin: 0 auto;
}

.contact_form .form_row label .label_note {
	display: inline-block;
	margin-top: 0;
	margin-left: 7px;
}

.contact_form .form_select_wrap.year {
    max-width: 100px;
}

.contact_form .form_select_wrap.month {
    max-width: 75px;
}

}

/* -----
	Form Page - Internship Info
------------------------------ */

.form_internship_details {
	margin-bottom: 30px;
}

.form_user_info {}

.form_internship_details_head {
	color: #fff;;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	background: #344154;
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 2px;
}

.form_user_info-list dl:not(:last-child) {
	margin-bottom: 15px;
}

.form_user_info-list dt {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.form_user_info-list dd {
	font-size: 1.4rem;
	font-weight: 500;
	padding: 10px 0;
	border-bottom: solid 1px #ddd;
}

.form_user_info-list dd span {
	height: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 20px;
    padding: 0 7px;
    background: #EAEDF2;
    margin-left: 7px;
    border-radius: 2px;
}

.form_internship_info {
	margin-top: 30px;
}

/* -----

	Error Page Design

------------------------------ */

.error_page_wrap {
	background: #F4F6F8;
}

.error_page_inner {
	padding: 0 15px 40px;
}

.error_page_inner .error_page_head h1 {
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 900;
    text-align: center;
    padding: 30px 0;
}

.error_page_inner .error_page_head h1 span {
	display: block;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 900;
}

.error_page_inner .error_comment {
	max-width: 600px;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
	margin: 0 auto 30px;
}

.error_page_inner .error_wrap {
	padding: 40px 15px;
	background: #fff;
	border-radius: 2px;
	box-shadow: 0px 0px 20px 0px rgb(52,65,84,.25);
}

@media screen and (min-width: 781px) {

.error_page_inner {
	padding: 0 0 40px;
}

.error_page_inner .error_page_head h1 {
    font-size: 24px;
    font-size: 2.4rem;
    padding: 40px 0;
}

.error_page_inner .error_wrap {
	max-width: 580px;
	padding: 40px 60px;
	margin: 0 auto;
}

}

/* -----

	Copmpany Page Button

------------------------------ */

.more_btn_type_01 {
	margin: 40px 0;
}

.more_btn_type_01 a {
	display: block;
	max-width: 400px;
	height: 50px;
	color: #fff;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	line-height: 50px;
	background: #344154;
	border-radius: 25px;
	margin: 0 auto;
}


/* -----

	Tab

------------------------------ */

.tab_list {}

.tab_list .cat {
	cursor: pointer;
}

.tab_area .contents {
    display: none;
  }

.tab_area .contents.active {
    display: block;
}

.my-page_profile_icon_edit.constraint-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-page_profile_bg_edit.constraint-image {
    width: 100%;
    max-height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company_profile_edit.constraint-image {
    max-width: 250px;
    max-height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-btn-default {
    display: block;
    height: 35px;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    line-height: 35px;
    padding: 0 15px;
	border: solid 1px #344154;
    border-radius: 2px;
	margin-bottom: 15px;
    color: #000;
}

.border-radius-md {
    border-radius: 5px !important;
}

/* --- START for custom width of input size to half */
.wp_input_half_width {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wp_input_half_width input {
    max-width: 150px;
 }
 .wp_input_half_width span {
    font-size: 14px;
  }
  .custom-input-half-width {
      width: 390px !important;
      display: block;
  }
  @media screen and (max-width: 780px){
    .custom-input-half-width {
        width: 100% !important;
        display: block;
    }
  }
/* --- END for custom width of input size to half */
