

html {
	position: relative;
	margin: 0;
	padding: 0;
}


body {
	position: relative;
	margin: 0;
	padding: 100px 0 0;
	font-family: "Noto Sans Japanese", sans-serif;
	transition: 0.5s;
}



/* common
--------------------------------------------------*/
.common_wraper {
	max-width: 1000px;
	margin: 0 auto;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex_between{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex_around{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.flex_center{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.flex_50 {
	width: 50%;
}

.flex_49_5 {
	width: 49.5%;
}

.flex_47_5 {
	width: 47.5%;
}

.flex_45 {
	width: 45%;
}

.flex_33 {
	width: 33%;
}

.flex_30 {
	width: 30%;
}

.flex_32_5 {
	width: 32.5%;
}


.flex_25 {
	width: 25%;
}

section.hide_target {
	opacity: 0;
	transform: translateY(120px);
}
section.scroll_target {
	transition: all 1s;
}



section.contents_title_section {
	width: 100%;
	/* max-width: 1400px; */
	margin: 0 auto;
}

div.contents_title_area {
	padding: 1.7rem;
	text-align: center;
	background: #006a8f;
	background: -moz-linear-gradient(left, rgba(0, 104, 143, 1) 0%, rgba(0, 135, 143, 1) 100%);
	background: -webkit-linear-gradient(left, rgba(0, 104, 143, 1) 0%, rgba(0, 135, 143, 1) 100%);
	background: linear-gradient(to right, rgba(0, 104, 143, 1) 0%, rgba(0, 135, 143, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006a8f', endColorstr='#00878f',GradientType=0 );
}

div.contents_title_inner {
	padding: 5rem 0;
	background-color: #FFF;
}

h1.contents_title {
	margin: 0 0 1rem;
	padding: 0;
	font-size: 33px;
	letter-spacing: 0.8rem;
}

h5.contents_sub_title {
	margin: 0;
	padding: 0;
	margin-bottom: 1%;
}

div.contents_title_hr {
	position: relative;
	z-index: 0;
	margin: 0 auto 1rem auto;
	padding: 0;
	width: 22rem;
	height: 10px;
	background-color: #FFF;
	border-bottom: solid 2px #333;
}

div.contents_title_hr:after {
	position: relative;
	top: 6px;
	display: block;
	content: "▼";
	transform: scale(1.5, 1);
	margin-left: 5%;
	font-size: 1rem;
	color: #333;
}


h5.contents_description {
	margin: 0;
	padding: 0;
	margin: 2% 0 0;
  line-height: 150%;
}





/* header
--------------------------------------------------*/

header {
	position: relative;
	z-index: 1000;
	background-color: #FFF;
	height: 100px;
}



a.recruit_button {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 14rem;
	padding: 1rem 4rem;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	border-radius: 3rem;
	background: #006a8f;
	background: -moz-linear-gradient(left, #006a8f 0%, #00878f 100%);
	background: -webkit-linear-gradient(left, #006a8f 0%,#00878f 100%);
	background: linear-gradient(to right, #006a8f 0%,#00878f 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006a8f', endColorstr='#00878f',GradientType=0 );
	transition: all .5s;
}

a.recruit_button:hover {
	opacity: 0.7;
}

a.recruit_button > span {
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	transition: .2s;
}



div.menu_button_sp {
	display: none;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	padding: 1rem 0.7rem 0.7rem 0.7rem;
	background: #006a8f;
	background: -moz-linear-gradient(left, #006a8f 0%, #00878f 100%);
	background: -webkit-linear-gradient(left, #006a8f 0%,#00878f 100%);
	background: linear-gradient(to right, #006a8f 0%,#00878f 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006a8f', endColorstr='#00878f',GradientType=0 );
	cursor: pointer;
}

a.menu_button_sp_a,
a.menu_button_sp_a span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

a.menu_button_sp_a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

a.menu_button_sp_a span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fff;
	border-radius: 3px;
}
a.menu_button_sp_a span:nth-of-type(1) {
	top: 0;
}
a.menu_button_sp_a span:nth-of-type(2) {
	top: 12px;
}
a.menu_button_sp_a span:nth-of-type(3) {
	top: 24px;
}

a.menu_button_sp_a p {
	position: absolute;
	bottom: 0;
	width: 100%;
	margin: 0;
	font-size: 1.2rem;
	line-height: 1rem;
	text-align: center;
	color: #FFF;
}

a.menu_button_sp_a.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
  transform: translateY(12px) rotate(-45deg);
}
a.menu_button_sp_a.active span:nth-of-type(2) {
  opacity: 0;
}
a.menu_button_sp_a.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
  transform: translateY(-12px) rotate(45deg);
}





/* footer
--------------------------------------------------*/
footer {
	position: relative;
	padding: 4rem 0;
	background: #006a8f;
	background: -moz-linear-gradient(left, #006a8f 0%, #00878f 100%);
	background: -webkit-linear-gradient(left, #006a8f 0%,#00878f 100%);
	background: linear-gradient(to right, #006a8f 0%,#00878f 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006a8f', endColorstr='#00878f',GradientType=0 );
}
div.footer_wraper {
	max-width: 1000px;
	margin: 0 auto;
}

div.footer_catchphrase {
	width: 50%;
}
img.footer_catchphrase_img {
	display: block;
	width: 80%;
}

div.footer_menu {
	width: 50%;
}

ul.footer_menu_ul {
	height: 100%;
	margin: 0;
	padding: 0 0 0 2rem;
	color: #FFF;
	text-align: right;
}
ul.footer_menu_ul > li {
	display: inline-block;
	height: 100%;
	width: 10rem;
}
ul.footer_menu_ul > li:last-child {
	display: inline-block;
	position: relative;
	height: 100%;
	width: calc(100% - 32rem);
	border: none;
}

ul.footer_menu_ul > li:hover > div {
	height: auto;
	padding: 4rem 0;
	opacity: 1;
}

a.footer_menu_a {
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 0.5rem;
	text-decoration: none;
	color: #FFF;
	border-left: solid 2px #FFF;
}
a.footer_menu_a:hover {
	opacity: 0.7;
}
span.footer_menu_ja {
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
}
span.footer_menu_en {
	display: block;
  font-size: 1.1rem;
  text-align: left;
}

a.recruit_button_footer {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 14rem;
	padding: 1rem 0;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	border: solid 2px #FFF;
	border-radius: 3rem;
	transition: all .5s;
}

a.recruit_button_footer:hover {
	opacity: 0.7;
}

a.recruit_button_footer > span {
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	transition: .2s;
}

div.scroll_top {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	text-align: center;
	color: #006a8f;
	cursor: pointer;
	transition: all .5s;
}

div.scroll_top:hover {
	opacity: 0.7;
}

div.scroll_top > div {
	width: 100%;
	height: 100%;
	padding: 12px 0 0 0;
	border-radius: 50%;
	background-color: #FFF;
	box-shadow: 0px 0px 4px #aaa;
}
div.scroll_top > div > span {
	display: block;
	font-size: 1rem;
	font-weight: 500;
	padding: 0 0 0 2px;
  letter-spacing: 0.05rem;
}
div.scroll_top > div > span.glyphicon {
    position: relative;
    top: -1px;
}

div.copyright {
	position: relative;
	width: 100%;
	background-color: #333;
	padding: 2rem 0;
	color: #FFF;
	font-size: 1.2rem;
}

div.copyright_wraper {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 0 auto;
}

div.copyright_left {
	width: 50%;
}
div.copyright_right {
	width: 50%;
	text-align: right;
}

div.copyright_right_1,
div.copyright_right_2,
div.copyright_right_3 {
	display: inline-block;
	text-align: right;
	padding: 0 0 0 2em;
}
div.copyright a {
	text-decoration: none;
	color: #FFF;
}
div.copyright a:active {
	color: #FFF;
}
div.copyright a:visited {
	color: #FFF;
}
div.copyright a:hover {
	opacity: 0.7;
}

/* NEWS
--------------------------------------------------*/
section.news_section{
	margin: 8rem 0 12rem 0;
	padding: 2rem 0;
}

h1.news_main_title {
	height: 80px;
	margin-bottom: 8%;
	text-align: center;
}
h1.news_main_title:after {
	content: "";
	display: block;
	width: 80px;
	height: 2px;
	margin: 2% auto;
	background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
}

h1.news_main_title img{
	vertical-align: bottom;
	height: 100%;
}
/* h1.news_main_title > span {
	background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: rgba(0, 0, 0, 0);
} */

/*
div.news_sub_title_area {
	position: relative;
	width: 10rem;
	margin: 0 auto;
	padding-bottom: 2px;
	text-align: center;
	background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
}

div.news_sub_title {
	width: 100%;
	height: 100%;
	padding: 1rem 0;
	background-color: #FFF;
}

div.news_sub_title > span {
	display: block;
	font-size: 1.2em;
	font-weight: 800;
	letter-spacing: 0.3rem;
	background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: rgba(0, 0, 0, 0);
} */


div.news_area{
	position: relative;
	margin-top: 5rem;
	padding: 4rem 0;
	background-color: #DDD;
}
ul.latest_news_ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.news_ul {
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
}
li.news_li {
	padding: 1rem 0;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
}

div.news_toggle {
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	text-align: center;
	color: #FFF;
}
div.news_toggle > div {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	border-radius: 50%;
	box-shadow: 0px 0px 2px #555;
	cursor: pointer;
}
div.news_toggle > div > span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-49%) translateY(-50%);
	transition: all .5s;
}
div.news_toggle.news_open > div > span {
	transform:  translateX(-53%) translateY(-50%) rotate(180deg);
}


/* contents
--------------------------------------------------*/

section.top_contents {
	margin-bottom: 10rem;
}

article.top_article {
}
div.top_article_left {
	position: relative;
	width: 50%;
	padding: 3rem 3rem 1rem 3rem;
	background-color: #DDD;
}

div.top_article_left > h3 {
	position: relative;
	margin: 0 0 2.5%;
	font-size: 1.4rem;
  font-weight: 800;
	letter-spacing: 0.2rem;
}
div.top_article_left > h3 > span {
	background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: rgba(0, 0, 0, 0);
}

div.top_article_left > h1 {
	position: relative;
	margin: 0;
	font-size: 2.3rem;
	font-weight: 800;
	letter-spacing: 0.4rem;
}
div.top_article_left > h1 > span {
	background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: rgba(0, 0, 0, 0);
}

hr.top_article_hr {
	margin: 2.2rem 0 2.4rem;
	width: 7rem;
	height: 2.5px;
	border: none;
	background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
}
a.header_menu_a {
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 0.5rem;
	text-decoration: none;
	color: #777;
	border-left: solid 2px #777;
}

div.top_article_a_area {
	/* position: relative;
	width: 16rem; */
	/* margin: 2rem auto 1rem auto; */
	background-color: rgba(255,255,255,0.75);
	text-align: center;
}
a.top_article_a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 1rem 0;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	/* background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
	color: rgba(0, 0, 0, 0);
	font-size: 0.8rem;
	font-weight: bold;
	letter-spacing: 0.1rem;
	transition: 0.3s;
}
a.top_article_a:active {
	color: #006a8f;
}

div.top_article_a_area a.top_article_a > span.link_box{
	display: block;
	width: 16rem;
	position: absolute;
	bottom: 8%;
	left:15%;
	padding: 1.5rem 0;
	background: rgba(255,255,255,0.75);
}
div.top_article_a_area a.top_article_a > span.link_box.t_m_position{
	left:33%;
	bottom: 5%;
}
div.top_article_a_area a.top_article_a > span.link_box.t_c_i_position{
	left:26%;
	bottom: 5%;
}
div.top_article_a_area a.top_article_a > span.link_box > span.read_more{
	display: block;
	width: 55%;
	position: absolute;
	top: 25%;
	left:20%;
	font-weight: bold;
	text-align: center;
	/* text-decoration: none;
	background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
}
div.top_article_a_area a.top_article_a > span.link_box > span.read_more img{
	width: 80%;
}
a.top_article_a > span.link_box > span.arrow {
	display: block;
	position: absolute;
	top: 50%;
	right: 0.5rem;
	transform: translateY(-50%);
	transition: .5s;
}
a.top_article_a:hover > span.link_box > span.arrow {
	right: -1rem;
}
a.top_article_a:hover{
	background: rgba(255,255,255,0.3);
	transition: 1s;
}



div.top_article_right {
	position: relative;
	width: 50%;
}
div.top_article_interview,
div.top_article_number,
div.top_article_story,
div.top_article_holdings {
	background-position: center center;
	background-size: cover;
}
div.top_article_interview {
	background-image: url(../img/top/interview.png);
}
div.top_article_number {
	background-image: url(../img/top/number.png);
}
div.top_article_story {
	background-image: url(../img/top/story.png);
}
div.top_article_holdings {
	background-image: url(../img/top/holdings.png);
}
p.top_article_txt{
	margin-top: 5%;
	margin-bottom: 15%;
	font-size: 1.3rem;
	font-weight: bold;
	letter-spacing: 0.03rem;
	line-height: 220%;
}
p.top_article_txt{
	margin-top: 10%;
	margin-bottom: 26%;
	font-size: 1.3rem;
	font-weight: bold;
	letter-spacing: 0.03rem;
	line-height: 220%;
}
p.top_article_txt_02{
	margin-top: 14%;
	margin-bottom: 17%;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 0.03rem;
	line-height: 220%;
}
.hoge{
    position: relative;
}
.hoge a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* messages
--------------------------------------------------*/
article.message_article {
	position: relative;
	width: 47.5%;
}

div.message_image_1 {
	position: relative;
	width: 100%;
	padding-top: 56%;
	background-image: url(../img/top/message_1.png);
	background-position: center center;
	background-size: cover;
}
div.message_image_2 {
	position: relative;
	width: 100%;
	padding-top: 56%;
	background-image: url(../img/top/message_2.png);
	background-position: center center;
	background-size: cover;
}

div.top_message_info {
	position: relative;
	width: 100%;
	padding: 3rem 3rem 2rem 3rem;
	background-color: #DDD;
}

div.top_message_info > h3 {
	position: relative;
	margin: 0 0 2.5%;
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: 0.2rem;
}

div.top_message_info > h3 > span {
	background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: rgba(0, 0, 0, 0);
}
.top_index_info_title:after,
.top_index_info_title_small:after {
	content: "";
	display: block;
	height: 3px;
	width: 80px;
	margin:5% 0 0 0;
	background: #0068a5;
	background: -moz-linear-gradient(top, #0068a5 0%, #009fa5 100%);
	background: -webkit-linear-gradient(top, #0068a5 0%,#009fa5 100%);
	background: linear-gradient(to bottom, #0068a5 0%,#009fa5 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0068a5', endColorstr='#009fa5',GradientType=0 );
}
.top_index_info_title {
    margin: 0;
    height: 23px;
}
.top_index_info_sub {
    margin: 0 0 5%;
    height: 12px;
}
.top_index_info_title_small {
    margin: 0;
    height: 17px;
}
.top_index_info_sub_small {
    margin: 0 0 5%;
    height: 10px;
}
.top_index_info_sub img,
.top_index_info_title img,
.top_index_info_sub_small img,
.top_index_info_title_small img {
    vertical-align: bottom;
    height: 100%;
}
div.top_message_info > h1 {
	position: relative;
	margin: 0;
	font-size: 2.3rem;
	font-weight: 800;
	letter-spacing: 0.4rem;
}
div.top_message_info > h1 > span {
	background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: rgba(0, 0, 0, 0);
}







/* company info
--------------------------------------------------*/
article.company_article {
	position: relative;
	width: 31.5%;
}

div.company_image_company {
	position: relative;
	width: 100%;
	padding-top: 60%;
	background-image: url(../img/top/company.png);
	background-position: center center;
	background-size: cover;
}
div.company_image_recruit {
	position: relative;
	width: 100%;
	padding-top: 60%;
	background-image: url(../img/top/recruit.png);
	background-position: center center;
	background-size: cover;
}
div.company_image_faq {
	position: relative;
	width: 100%;
	padding-top: 60%;
	background-image: url(../img/top/faq.png);
	background-position: center center;
	background-size: cover;
}


div.top_company_info {
	position: relative;
	width: 100%;
	padding: 2rem 2rem 1rem 2.5rem;
	background-color: #DDD;
}




div.top_company_info > h3 {
	position: relative;
	margin: 0 0 2%;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.2rem;
}
div.top_company_info > h3 > span {
	background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: rgba(0, 0, 0, 0);
}

div.top_company_info > h1 {
	position: relative;
	margin: 0 0 5%;
	font-size: 1.8rem;
	font-weight: 800;
	letter-spacing: 0.3rem;
}

div.top_company_info > h1 > span {
	background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: rgba(0, 0, 0, 0);
}

div.top_company_info > hr {
	margin: 1rem 0;
}
/*
div.top_company_info > p {
	margin: 0 0 20%;
	font-size: 1.2rem;
	line-height: 2.5rem;
} */



/* recruit link
--------------------------------------------------*/
div.recruit_link {
	display: block;
	margin-bottom: 1rem;
	padding: 0.3rem;
	background-color: #006a8f;
	background: -moz-linear-gradient(left, #006a8f 0%, #00878f 100%);
	background: -webkit-linear-gradient(left, #006a8f 0%,#00878f 100%);
	background: linear-gradient(to right, #006a8f 0%,#00878f 100%);
	border-radius: 0.6rem;
	transition: all .5s;
}
div.recruit_link:hover {
	opacity: 0.5;
}
/* div.recruit_link:nth-child(1) {
	width: calc(50% - 5px);
}
div.recruit_link:nth-child(2) {
	width: calc(50% - 5px);
}
div.recruit_link:nth-child(3) {
	width: calc(33% - 3px);
}
div.recruit_link:nth-child(4) {
	width: calc(33% - 3px);
}
div.recruit_link:nth-child(5) {
	width: calc(33% - 3px);
} */



a.recruit_a {
	display: block;
	padding: 1rem 0 2rem;
	text-align: center;
	background-color: #FFF;
	border-radius: 0.4rem;
	text-decoration: none;
	letter-spacing: 0.4rem;
}
a.recruit_a > span {
	font-weight: bold;
	font-size: 1.8rem;
	display: block;
	height:20px;
	/* background: -moz-linear-gradient(left, #066398 0%, #119499 100%);
	background: -webkit-linear-gradient(left, #066398 0%,#119499 100%);
	background: linear-gradient(to right, #066398 0%,#119499 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: rgba(0, 0, 0, 0); */
}

a.recruit_a > span img{
	vertical-align: bottom;
	height: 100%;
}




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

}

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

	/* header
	--------------------------------------------------*/
	header {
		position: fixed;
		top:0;
		width: 100%;
		z-index: 1000;
	}

	header > div {
		height: 100%;
	}

	div.header_logo_area {
		position: relative;
		width: 40%;
		height: 100%;
	}

	div.header_logo_area > a {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	img.main_logo {
		display: block;
		width: 100%;
		max-height: 60px;
		margin: 0;
	}

	div.header_menu_area {
		width: 45%;
		padding: 0 0 0 2rem;
	}

	ul.header_menu_ul {
		display: flex;
		flex-wrap: wrap;
		height: 100%;
		margin: 0;
		padding: 0;
	}
	ul.header_menu_ul > li {
		display: block;
		height: 100%;
		width: 10rem;
	}
	ul.header_menu_ul > li:last-child {
		display: block;
		position: relative;
		height: 100%;
		width: calc(100% - 30rem);
		border: none;
	}

	ul.header_menu_ul > li:hover > div {
		height: auto;
		padding: 4rem 0;
		opacity: 1;
	}

	a.header_menu_a {
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		padding-left: 0.5rem;
		text-decoration: none;
		color: #333;
		border-left: solid 2px #333;
		box-sizing: border-box;
	}
	span.header_menu_ja {
		display: block;
		font-size: 1.3rem;
		font-weight: bold;
	}
	span.header_menu_en {
		display: block;
		font-size: 1.1rem;
	}

	div.dropdown_menu_area {
		position: absolute;
		z-index: 1001;
		top: 100%;
		left: 0;
		width: 100%;
		height: 0;
		background: rgba(0, 104, 143, 0.9);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006a8f', endColorstr='#00878f',GradientType=0 );
		overflow: hidden;
		opacity: 0;
		transition: .2s;
	}

	div.dropdown_menu_title_area {
		width: 26rem;
		padding: 2rem;
		border-right: solid 3px #FFF;
		color: #FFF;
	}

	h3.dropdown_menu_title {
		font-size: 3rem;
		margin: 0 0 0.2rem 0;
		padding: 0
	}

	div.dropdown_menu_title_area > span {
		font-size: 1.5rem;
		font-weight: bold;
	}

	ul.dropdown_menu {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		width: calc(100% - 36rem);
		height: 160px;
		list-style: none;
		color: #FFF;
	}

	ul.dropdown_menu > li {
		width: 50%;
		padding: 1rem 0;
		font-size: 1.6rem;
	}
	ul.dropdown_menu > li.only_sp {
		display: none;
	}

	ul.dropdown_menu a {
		text-decoration: none;
		color: #FFF;
	}
	ul.dropdown_menu a:visited {
		color: #FFF;
	}
	ul.dropdown_menu a:active {
		color: #FFF;
		opacity: 0.7;
	}
	ul.dropdown_menu a:hover {
		color: #FFF;
		opacity: 0.7;
	}






}

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

	body {
		padding-top: 90px;
	}

	/* common
	--------------------------------------------------*/
	.common_wraper {
		max-width: 90%;
	}
	.flex_50 {
		width: 100%;
	}

	.flex_49_5 {
		width: 100%;
	}

	.flex_47_5 {
		width: 100%;
	}

	.flex_45 {
		width: 100%;
	}

	.flex_33 {
		width: 100%;
	}

	.flex_30 {
		width: 100%;
	}

	.flex_32_5{
	width: 100%;
	}

	.flex_25 {
		width: 100%;
	}
	.flex_reverse {
		flex-direction: column-reverse;
	}


	/* header
	--------------------------------------------------*/
	header {
		position: fixed;
		top: 0;
		width: 100%;
		height: 90px;
	}
	header > div.common_wraper {
		position: relative;
		height: 100%;
	}

	div.header_logo_area {
		position: relative;
		width: calc(100% - 60px);
		height: 100%;
	}

	img.main_logo {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 95%;
		max-width: 440px;
		max-height: 80px;
	}

	div.header_menu_area {
		display: none;
		position: fixed;
		top: 90px;
		right: 0;
		width: 100%;
		height: calc(100vh - 70px);
		background-color: rgba(0,0,0,0.5);
		transition: .5s all;
	}

	div.header_menu_area.active {
		display: block;
	}

	ul.header_menu_ul {
		position: absolute;
		top: 0;
		right: -80%;
		width: 80%;
		min-height: 100%;
		padding: 0 2rem 2rem;
		background-color: #FFF;
		transition: -4.9s all;	
	}

	ul.header_menu_ul > li {
		display: block;
		position: relative;
		width: 100%;
		height: auto;
		padding: 1rem 0 0;
		border: none;
		border-bottom: solid 1px #DDD;
	}
	ul.header_menu_ul > li:last-child {
		border-bottom: none;
	}


	a.header_menu_a {
		display: block;
		top: auto;
		transform: none;
		position: relative;
		padding: 1rem 0 2rem 0.5rem;
		text-decoration: none;
		color: #777;
		border: none;
	}
	span.header_menu_ja {
		font-size: 1.6rem;
		font-weight: bold;
	}
	span.header_menu_en {
		font-size: 1.1rem;
	}


	div.dropdown_menu_area {
		display: none;
		position: relative;
		left: 0;
		width: 100%;
		height: auto;
		background-color: #F5F5F5;
		overflow: hidden;
	}

	div.dropdown_menu_title_area {
		display: none;
	}

	h3.dropdown_menu_title {
		font-size: 5rem;
		margin: 0 0 0.2rem 0;
		padding: 0
	}

	div.dropdown_menu_title_area > span {
		font-size: 3rem;
		font-weight: bold;
	}


	ul.dropdown_menu {
		padding-left: 0;
		width: 100%;
		list-style: none;
		color: #777;
	}

	ul.dropdown_menu > li {
		width: 100%;
		padding: 1.2rem 0;
		font-size: 1.6rem;
	}

	ul.dropdown_menu a {
		text-decoration: none;
		color: #777;
	}
	ul.dropdown_menu a:visited {
		color: #777;
	}
	ul.dropdown_menu a:active {
		color: #777;
		opacity: 0.7;
	}


	a.recruit_button {
		display: block;
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: 16rem;
		padding: 1rem 4rem;
		color: #FFF;
		text-align: center;
		text-decoration: none;
		border-radius: 3rem;
		background: #006a8f;
		background: -moz-linear-gradient(left, #006a8f 0%, #00878f 100%);
		background: -webkit-linear-gradient(left, #006a8f 0%,#00878f 100%);
		background: linear-gradient(to right, #006a8f 0%,#00878f 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006a8f', endColorstr='#00878f',GradientType=0 );
	}
	a.recruit_button > span {
		position: absolute;
		top: 50%;
		right: 1rem;
		transform: translateY(-50%);
		transition: .2s;
	}


	div.menu_button_sp {
		display: block;
	}



	/* footer
	------------------------------------------------------------*/
	footer {
		padding: 3rem 0 0 0;
	}

	div.footer_wraper {
		width: 100%;
	}

	div.footer_catchphrase {
		width: 100%;
		padding: 0 0 3rem 0;
		border-bottom: solid 1px #FFF;
	}
	img.footer_catchphrase_img {
		display: block;
		width: 80%;
		margin: 0 auto;
	}

	div.footer_menu {
		width: 100%;
		padding: 0;
	}

	ul.footer_menu_ul {
		height: auto;
		padding: 0;
	}
	ul.footer_menu_ul > li {
		display: block;
		width: 100%;
		height: auto;
	}

	ul.footer_menu_ul > li:last-child {
		display: block;
		position: relative;
		height: auto;
		width: 100%;
		border: none;
	}

	a.footer_menu_a {
		display: block;
		position: relative;
		top: auto;
		transform: none;
		padding: 1rem 0;
		text-align :center;
		text-decoration: none;
		color: #FFF;
		border: none;
		border-bottom: solid 1px #EEE;
	}

	span.footer_menu_ja {
		display: block;
		font-size: 1.8rem;
		font-weight: bold;
	}
	span.footer_menu_en {
		display: none;
		font-size: 1.1rem;
	}

	a.recruit_button_footer {
		display: block;
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: 100%;
		padding: 1rem 0;
		color: #FFF;
		text-align: center;
		text-decoration: none;
		font-weight: bold;
		border-radius: initial;
		border: none;
		background: #006a8f;
		background: -moz-linear-gradient(left, #006a8f 0%, #00878f 100%);
		background: -webkit-linear-gradient(left, #006a8f 0%,#00878f 100%);
		background: linear-gradient(to right, #006a8f 0%,#00878f 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006a8f', endColorstr='#00878f',GradientType=0 );
	}
	a.recruit_button_footer > span {
		display: none;
	}

	div.scroll_top {
		top: -18px;
		width: 36px;
		height: 36px;
	}
	div.scroll_top > div {
		padding: 6px 0 0 0;
	}

	div.copyright {
		padding: 0 0 2rem 0;
	}

	div.copyright_wraper {
		flex-direction: column-reverse;
	}

	div.copyright_left {
		width: 100%;
		padding: 2rem 0 1rem 0;
		text-align: center;
	}

	div.copyright_right {
		width: 100%;
		text-align: center;
	}
	div.copyright_right_1,
	div.copyright_right_2,
	div.copyright_right_3 {
		text-align: center;
		width: 100%;
		padding: 1.6rem 0;
		background-color: #777;
		border-top: solid 1px #EEE;
	}



	article.message_article {
		position: relative;
		width: 100%;
		margin-bottom: 2rem;
	}

	article.company_article {
		position: relative;
		width: 100%;
		margin-bottom: 2rem;
	}
	div.top_article_a_area a.top_article_a > span.link_box > span.read_more {
	    left: 20%;
	}
	div.top_article_a_area a.top_article_a > span.link_box {
	    width: 24%;
	    bottom: 9%;
	    left: 13%;
	}
	div.top_article_a_area a.top_article_a > span.link_box.t_m_position,
	div.top_article_a_area a.top_article_a > span.link_box.t_c_i_position{
		left:40%;
	}
		p.top_article_txt{
			font-size: 1.5rem;
		}
		p.top_article_txt_02{
			font-size: 1.7rem;
			line-height: 220%;
		}
		/* div.top_company_info > p {
			margin: 0 0 20%;
			font-size: 1.7rem;
			line-height: 3rem;
		} */
		section.hide_target.news_section{
			opacity: 1;
			transform: translateY(0);
		}
		.top_contents br{
			display: none;
		}
}

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

	html {
		font-size: 0.5rem;
	}
	body {
		padding-top: 70px;
	}

	.common_wraper {
		max-width: 95%;
	}



	/* header
	--------------------------------------------------*/
	header {
		height: 70px;
	}

	div.header_menu_area {
		display: none;
		position: fixed;
		top: 70px;
		right: 0;
		width: 100%;
		height: calc(100vh - 70px);
		background-color: rgba(0,0,0,0.5);
		transition: .5s all;
		overflow: scroll;
	}

	div.menu_button_sp {
		top: 50%;
		right: 1rem;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		padding: 0.7rem 0.4rem 0.4rem 0.4rem;
	}
	div.menu_button_sp p {
		display: none;
	}




	article.top_article {
		flex-flow: row-reverse wrap-reverse;
	}


	div.top_article_left {
		width: 100%;
	}
	div.top_article_right {
		width: 100%;
		padding-top: 50%;
	}
	div.contents_title_inner {
    padding: 4rem 0;
}
	h1.contents_title {
	    font-size: 30px;
	}
	div.top_article_a_area a.top_article_a > span.link_box {
	    width: 55%;
	    bottom: 5%;
	    left: 23%;
	}
	div.top_article_a_area a.top_article_a > span.link_box.t_m_position,
	div.top_article_a_area a.top_article_a > span.link_box.t_c_i_position{
		left:23%;
    bottom: 5%;
	}
	.top_index_info_title {
	    margin: 0;
	    height: 17px;
	}
	.top_index_info_sub {
	    margin: 0 0 5%;
	    height: 11px;
	}
	.top_index_info_title_small {
	    margin: 0;
	    height: 17px;
	}
	.top_index_info_sub_small {
	    margin: 0 0 5%;
	    height: 10px;
	}
	p.top_article_txt{
		font-size: 1.7rem;
	}
	/*news*/
	h1.news_main_title {
		height: 60px;
		margin-bottom: 8%;
		text-align: center;
	}
	/*recruit*/
	a.recruit_a {
		padding: 1rem 0 1.8rem;
	}
	a.recruit_a > span {
		height:18px;
	}
}



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

	img.main_logo {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		/*width: 95%;*/
		/* max-width: 240px; */
		max-height: 80px;
	}
}
