﻿@charset "utf-8";
/* CSS Document */
@import "clear.css";

.container {
	margin: auto;
	max-width: 1920px;
}

.float_menu {
	display: flex;
	position: fixed;
	top: 20px;
	right: 3%;
	z-index: 9999;
}

.float_menu dt a {
	align-items: center;
	background: #005e7c;
    border-radius: 50vh;
	color: #fff;
	display: flex;
	justify-content: center;
	height: 52px;
	margin-right: 20px;
	width: 120px;
}

.openbtn1 {
	border: solid #000 1px;
    border-radius: 50vh;
	cursor: pointer;
	position: relative; /*ボタン内側の基点となるためrelativeを指定*/
	width: 90px;
	height: 52px;
}

/*ボタン内側*/
.openbtn1 span {
	display: inline-block;
	transition: all 0.4s; /*アニメーションの設定*/
	position: absolute;
	left: 33%;
	height: 2px;
	background: #000;
	width: 35%;
}

.openbtn1 span:nth-of-type(1) {
	top: 15px;
}

.openbtn1 span:nth-of-type(2) {
	top: 25px;
}

.openbtn1 span:nth-of-type(3) {
	top: 35px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active {
	background: #000;
}

.openbtn1.active span {
	background: #fff;
}

.openbtn1.active span:nth-of-type(1) {
	top: 20px;
	left: 33%;
	transform: translateY(6px) rotate(-45deg);
	width: 35%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0; /*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3) {
	top: 32px;
	left: 33%;
	transform: translateY(-6px) rotate(45deg);
	width: 35%;
}

.menu_wrap {
	background: #fff;
	height: 100vh;
	position: fixed;
	top: -200%;
	left: 0;
	transition: top 0.4s;
	overflow: hidden;
	width: 100%;
	z-index: 999;
}

.menu_wrap.active {
	top: 0;
}

header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}

header h1 {
	position: fixed;
	top: 30px;
	left: 3%;
	z-index: 999;
}

nav ul {
	display: flex;
	align-items: center;
	height: 90px;
	justify-content: flex-end;
	margin-right: calc(250px + 3%);
	position: relative;
	z-index: 99;
}

nav li {
	margin: 0 15px;
}

h4 {
	/*color: #86bbbd;*/
	font-size: 3rem;
	/*font-weight: 600;*/
}



/*h4 span {
	color: #86bbbd;
	display: block;
	font-size: 1.4rem;
	font-weight: 600;
}*/


#menu_header_contact a {
	position: relative;
}

#menu_header_contact a .arrow_1 {
	position: absolute;
	display: inline-block;
	width: 45px;
	height: 1px;
	margin-top: 10.6px;
	border-radius: 9999px;
	background-color: #fff;
	top: 37%;
	right: 35px;
}

#menu_header_contact a .arrow_1::before {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	width: 16px;
	height: 1px;
	border-radius: 9999px;
	background-color: #fff;
	transform: rotate(45deg);
	transform-origin: calc(100% - 0.5px) 50%;
}

footer {
	background: #050517;
	color: #fff;
	font-weight: 300;
	font-size: 0.9rem;
	padding: 45px 3% 15px;
	position: relative;
}

footer a {
	color: #fff;
}

#foot_company_info dd {
	margin-top: 15px;
}

#index_main {
	background: #ccc;
	height: 70vh;
	overflow: hidden;
	position: relative;
	text-align: center;
}

#index_main p {
	position: absolute;
	width: 100%;
	text-align: center;
	font-family: "IBM Plex Serif", serif;
	font-weight: 400;
	font-size: 4.2rem;
	top: 47%;
}

.page_link,
.page_link_1 {
	background: #005e7c;
	border-radius: 50vh;
	color: #fff;
	display: inline-block;
	position: relative;
	text-align: center;
}

.page_link_1 {
	font-size: 1.6rem;
	margin: 15px 0;
	padding: 5px 90px 9px;
}

.page_link {
	font-size: 1.2rem;
	padding: 5px 45px 7px;
}

#idx_search ul {
	text-align: center;
}

#idx_search ul span {
	display: inline-block;
	border-bottom: solid #2f3739 1px;
	font-size: 1.4rem;
	font-weight: 600;
	padding-bottom: 5px;
	margin-bottom: 5px;
}

#idx_search li {
	background: #f5f5f5;
}

.bg_1 {
	background: #f2f2f2;
}

.view_more a {
	background: #005e7c;
	border-radius: 50vh;
	color: #fff;
	display: inline-block;
	font-size: 0.95rem;
	font-weight: 200;
	text-align: center;
	position: relative;
	padding: 3px 45px 7px;
}

.view_more .arrow {
	position: absolute;
	display: inline-block;
	width: 16px;
	height: 1px;
	margin-top: 5.7px;
	border-radius: 9999px;
	background-color: #fff;
	top: 35%;
	right: 17px;
}

.view_more .arrow::before {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	width: 7px;
	height: 1px;
	border-radius: 9999px;
	background-color: #fff;
	transform: rotate(45deg);
	transform-origin: calc(100% - 0.5px) 50%;
}

.page_link .arrow {
	position: absolute;
	display: inline-block;
	width: 16px;
	height: 1px;
	margin-top: 5.7px;
	border-radius: 9999px;
	background-color: #fff;
	top: 35%;
	right: 20px;
}

.page_link .arrow::before {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	width: 7px;
	height: 1px;
	border-radius: 9999px;
	background-color: #fff;
	transform: rotate(45deg);
	transform-origin: calc(100% - 0.5px) 50%;
}

.page_link_1 .arrow {
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 1px;
	margin-top: 5.7px;
	border-radius: 9999px;
	background-color: #fff;
	top: 38%;
	right: 30px;
}

.page_link_1 .arrow::before {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	width: 10px;
	height: 1px;
	border-radius: 9999px;
	background-color: #fff;
	transform: rotate(45deg);
	transform-origin: calc(100% - 0.5px) 50%;
}

#news_contents dt {
	color: #86bbbd;
	font-size: 0.9rem;
	margin-bottom: 5px;
}

#news_contents dd {
	border-bottom: solid #bfbfbf 1px;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

#news_wrap #news_contents a {
	color: #86bbbd;
}

#news_wrap #news_contents a:hover {
	border-bottom: solid #86bbbd 1px;
}

#idx_service {
	text-align: center;
	padding-top: 75px;
}

#idx_service ul {
	background: #f6f8fa;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.4rem;
	font-weight: 600;
	margin: 60px 0;
}

#idx_service li div span {
	display: block;
	font-weight: 400;
	font-size: 0.9rem;
}

#idx_contact_wrap {
	text-align: center;
}

#idx_tel {
	display: flex;
	align-items: center;
}

#idx_tel span {
	display: block;
	font-size: 3.4rem;
	line-height: 3.6rem;
	font-weight: 600;
}

#idx_tel dd {
	margin-left: 10px;
}

#menu_header {
	background: #86bbbd;
}

.menu li a {
	border-bottom: solid #86bbbd 1px;
	display: block;
	color: #333;
	font-size: 1.4rem;
	font-weight: 500;
}

#menu_header_contact a {
	background: #040f16;
	display: block;
	color: #fff;
	border-radius: 50vh;
	text-align: center;
	font-weight: 200;
}

#idx_search h2 {
	font-size: 4rem;
	font-weight: 200;
	text-align: center;
	margin-bottom: 15px;
}

#idx_search h2 span {
	display: block;
	font-size: 1rem;
	font-weight: 400;
}

#idx_tel dt {
	display: flex;
	align-items: center;
}

.menu li a:hover {
	color: #86bbbd !important;
}

#bene_main {
	background: #f3f8f8;
}

#bene_main img {
	display: none;
}

#bene_menu {
	background: #2f3739;
	padding: 60px 0;
}

#bene_menu a {
	border-bottom: solid #fff 1px;
	display: block;
	color: #fff;
	width: 240px;
	margin: 0 30px;
	padding: 15px 0;
	position: relative;
}

#bene_menu .arrow {
	position: absolute;
	display: inline-block;
	width: 22px;
	height: 1px;
	margin-top: 5.7px;
	border-radius: 9999px;
	background-color: #86bbbd;
	top: 46%;
	right: 0;
}

#bene_menu .arrow::before {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	width: 11px;
	height: 1px;
	border-radius: 9999px;
	background-color: #86bbbd;
	transform: rotate(45deg);
	transform-origin: calc(100% - 0.5px) 50%;
}

#staff_establish h2 {
	color: #005e7c;
}

#staff_establish h2,#staff_establish h3 {
	font-weight: 600;
}

#staff_establish h3 {
	font-size: 2.4rem;
}

#staff_establish li::before {
	content: '・';
	color: #005e7c;
	margin: 0 5px;
}

.detail_view,
.detail_view.close {
    background-color: #005e7c;
    border-radius: 100vh;
    color: #fff;
	cursor: pointer;
    display: inline-block;
    height: 40px;
	position: absolute;
	top: calc(50% - 20px);
	right: 0;
    width: 40px;
}

.detail_view::before,
.detail_view.close::before {
    border-top: solid 2px;
    border-right: solid 2px;
    content: '';
    display: block;
    height: 12px;
    margin: auto;
    position: absolute;
	bottom: 0;
    left: 0;
	right: 0;
    width: 12px;
}

.detail_view::before {
    transform: rotate(135deg);
    top: 0;
}

.detail_view.close::before {
    transform: rotate(-45deg);
    top: 10px;
}

.detail_title {
	color: #4c4c4c;
	position: relative;
}

.detail_title h5 {
	color: #050517;
}

.detail_contents {
	display: none;
	margin: 30px 0;
}

.detail_contents .view_more {
	margin-top: 15px;
}

.inner_tbl,.inner_tbl dl {
	margin-top: 15px;
}

.detail_contents dt {
	width: 16%;
}

.inner_tbl > dt {
	border: solid #005e7c 1px;
	color: #005e7c;
	text-align: center;
	padding: 7px 0;
	margin-top: 4px;
}

.detail_contents dd {
	margin-bottom: 10px;
}

.detail_contents > dd {
	margin-bottom: 20px;
}
/*
.detail_sub_title {
	margin: 10px 0;
}*/

#staff_voice {
	text-align: center;
	padding: 90px 0;
}

#staff_voice dl {
	display: flex;
	flex-wrap: wrap;
	text-align: left;
	justify-content: space-between;
}

#staff_voice dt {
	width: 20%;
}

#staff_voice dd {
	width: 78%;
}

.staff_name {
	font-weight: 600;
	margin: 15px 0;
}

.staff_name span {
	display: block;
}

.sub_page_main {
	background-size: cover !important;
	display: flex;
	align-items: center;
}

#bene_main {
	justify-content: center;
}

#staff_establish li {
	font-weight: 600;
	border-bottom: solid #d1d1d1 1px;
}

.benefits_detail_inner {
	border-bottom: solid #bfbfbf 1px;
	display: flex;
}

.type_1 {
	color: #005e7c;
}

.type_2 {
	color: #86bbbd;
}

.detail_title h5 {
	font-weight: 600;
}

.page_link a {
	padding: 5px 30px 7px 30px;
}

#work_information {
	background: url("../images/main_2.gif") no-repeat center center;
}

#support_main {
	background: url("../images/main_4.png") no-repeat center center;
}

#company {
	background: url("../images/main_5.png") no-repeat center center;
}

#curriculum {
	background: url("../images/main_3.png") no-repeat center center;
	background-size: cover;
	display: flex;
	align-items: center;
}

#saurus_inner h2 {
	font-weight: 600;
}

#idx_search {
	text-align: center;
}

#saurus_head {
	/*background: url("../images/img_1.png") no-repeat right top;*/
}

.detail_tbl dt {
	border: solid #005e7c 1px;
	color: #005e7c;
	padding: 5px 0;
	text-align: center;
	width: 20%;
	font-weight: 600;
}

.detail_tbl dd {
	width: 78%;
}

#saurus_copy {
	color: #005e7c;
	font-weight: 600;
	font-size: 1.8rem;
}

#publish {
	align-items: flex-end;
	color: #001242;
	display: flex;
	font-size: 1.4rem;
	margin-bottom: 20px;
}

#publish dt {
	background: #001242;
	border-radius: 50vh;
	color: #fff;
	text-align: center;
	padding: 7px 35px 9px;
	margin-right: 30px;
}

#publish dd {
	font-size: 2.2rem;
	margin-right: 30px;
}

#publish dd span {
	font-size: 4.4rem;
	line-height: 2.2rem;
	font-weight: 600;
}

#work_info li {
	border: solid #86bbbd 1px;
	background: #fff;
}

#work_info li h3 {
	color: #005e7c;
	font-size: 1.4rem;
	font-weight: 600;
	text-align: center;
}

#curriculum p {
	font-weight: 600;
	font-size: 1.2rem;
	margin: 10px 0;
}

#curriculum_sub {
	align-items: center;
	background: #005e7c;
	color: #fff;
	display: flex;
	justify-content: center;
	text-align: center;
	font-size: 3rem;
}

#curriculum_sub span {
	display: block;
		font-size: 2.2rem;
		line-height: 2.2rem;
}

#recruitment dt {
	color: #005e7c;
	font-weight: 600;
	border: solid #005e7c 2px;
	text-align: center;
	padding: 10px 0;
}

#curriculum_detail {
	background: #f2f2f2;
}

#curriculum_detail h2 {
	text-align: center;
	font-size: 3rem;
}

#curriculum_detail h3 {
	color: #005e7c;
	font-size: 2rem;
	text-align: center;
}

#curriculum_detail h3 span {
	border: solid #005e7c 1px;
	padding: 10px 45px;
}

#flow_img {
	text-align: center;
	margin: 60px 0 30px;
}

#student_voice {
	text-align: center;
}

#student_head {
	text-align: center;
}

#student_head p {
	font-size: 2rem;
	margin: 30px 0;
}

.slider dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 320px;
}

.slider dt {
	width: 20%;
}

.slider dd {
	width: 78%;
}

.detail_tbl {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

#curriculum_tbl {
	align-items: flex-start;
}

#curriculum_detail dt,#curriculum_detail dd {
	border-right: solid #a0a0a0 1px;
	border-bottom: solid #a0a0a0 1px;
}
	
#curriculum_detail dt {
	background: #e5e5e5;
}

#curriculum_detail dl {
	border-left: solid #a0a0a0 1px;
	border-top: solid #a0a0a0 1px;
	background: #fff;
}

.student_voice_wrap {
	border: solid #86bbbd 1px;
	text-align: left;
}

.student_voice_wrap dt {
	color: #005e7c;
	font-weight: 600;
}

.student_voice_wrap dt p {
	color: #2f3739;
}

#support_main p {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 15px 0;
}

#merit li h3 {
	color: #005e7c;
	font-size: 1.4rem;
	font-weight: 600;
	text-align: center;
	margin:  60px 0 30px;
}

#support_footer {
	font-size: 1.4rem;
	padding: 90px 0;
	text-align: center;
}

#greeting_head {
	font-size: 1.4rem;
}

#greeting h2 {
	font-size: 2.4rem;
	font-weight: 600;
	margin: 30px 0;
}

#sign {
	text-align: right;
}

#sign span {
	font-size: 2.4rem;
}

.company_pdf_link {
	text-align: center;
	padding-top: 60px;
}

#company_profile h3 {
	color: #005e7c;
	border: solid #005e7c 1px;
	display: inline-block;
	padding: 7px 20px;
}

#company_profile dl {
	border-top: solid #bfbfbf 1px;;
	margin: 30px 0 90px;
	display: flex;
	flex-wrap: wrap;
}

#company_profile dl:last-child {
	margin-bottom: 0;
}

#company_profile dt,#company_profile dd {
	border-bottom: solid #bfbfbf 1px;
	padding: 25px 0;
}

#company_profile dt {
	padding-left: 15px;
	width: calc(30% - 15px);
}

#company_profile dd {
	width: 70%;
}

#history dl {
	display: flex;
	flex-wrap: wrap;
}

#history dt,#history dd {
	padding: 15px 25px;
}

#history dt {
	background: #f2f2f2;
	text-align: right;
	width: calc(30% - 50px);
}

#history dd {
	width: calc(70% - 50px);
}

#rule {
	background: #005e7c;
	color: #fff;
	text-align: center;
	padding: 60px 0;
	line-height: 2rem;
}

#rule h3 {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 15px;
}

#contact {
	padding-top: 120px;
}

#contact dl {
	color: #005e7c;
	font-weight: 600;
}

#contact dt {
	border: solid #005e7c 1px;
	text-align: center;
	padding: 5px 0;
}

#contact dt span {
	display: block;
	font-size: 1.4rem;
}

#contact dd {
	align-items: center;
	display: flex;
	font-size: 3rem;
}

#contact dd img {
	margin-right: 15px;
	width: 100px;
}

#form_wrap {
	background: #f2f2f2;
	padding: 90px 0;
}

#form_wrap h2 {
	font-size: 2.4rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 60px;
}

#form_wrap dl {
	border-top: solid #bfbfbf 1px;
	margin: auto;
}

#form_wrap dt,#form_wrap dd {
	border-bottom: solid #bfbfbf 1px;
	padding: 15px 20px;
}

#form_wrap dt {
	background: #cedce0;
}

#agree_list li a {
	background: #fff;
	border: solid #005e7c 1px;
	border-radius: 50vh;
	color: #005e7c;
	display: inline-block;
	padding: 7px 45px;
	margin: 0 15px;
	position: relative;
}

#agree_list li a .arrow {
	position: absolute;
	display: inline-block;
	width: 22px;
	height: 1px;
	margin-top: 5.7px;
	border-radius: 9999px;
	background-color: #005e7c;
	top: 40%;
	right: 17px;
}

#agree_list li a .arrow::before {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	width: 11px;
	height: 1px;
	border-radius: 9999px;
	background-color: #005e7c;
	transform: rotate(45deg);
	transform-origin: calc(100% - 0.5px) 50%;
}

#agree {
	text-align: center;
}

.submit {
	text-align: center;
	margin-top: 30px;
}

.submit input {
	border: none;
	background: #005e7c;
	color: #fff;
	cursor: pointer;
	font-size: 1.6rem;
	font-weight: 600;
	padding: 10px 45px;
	border-radius: 6px;
}

.submit input:disabled {
	background: #ccc;
	cursor: default;
}

.totop {
	cursor: pointer;
	display: block;
	position: fixed;
	right: 5%;
	background: #001242;
	border-radius: 100vh;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
	bottom: 45px;
	width: 90px;
	height: 90px;
}

.totop_active{
	opacity: 1;
	visibility: visible;
}

.absolute{
	position: absolute;
	bottom: auto;
	top: -45px;
}

.back2top {
	position: absolute;
	width: 1px;
	height: 20px;
	border-radius: 9999px;
	background-color: #fff;
	top: calc(50% - 10px);
	left: 50%;
}

.back2top::before,
.back2top::after {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% - 0.5px);
	width: 1px;
	height: 15px;
	border-radius: 9999px;
	background-color: #fff;
	transform-origin: 50% 0.5px;
}

.back2top::before {
  transform: rotate(45deg);
}

.back2top::after {
  transform: rotate(-45deg);
}

#yt_inner {
	max-width: 1280px;
	max-height: 720px;
}

#yt_head {
	font-size: 1.2rem;
	font-weight: 600;
	text-align: center;
	padding: 0 3%;
}

#yt_head img {
	margin-top: 15px;
}

#privacy {
	padding-top: 120px;
	margin-bottom: 60px;
	font-size: 0.9rem;
	color: #666;
}

#news_wrap {
	padding-top: 120px;
	padding-bottom: 30px;
}

#news_wrap .title {
	font-weight: 600;
	font-size: 1.2rem;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: dotted #ccc 1px;
}

#news_wrap dd {
	padding-bottom: 60px;
	margin-bottom: 60px;
}

#privacy_header {
	display: flex;
	justify-content: flex-end;
	margin: 60px 0;
	line-height: 1.6rem;
}

.policy_tbl {
	margin: 30px 0;
}

.policy_tbl dt {
	border-top: solid #ccc 1px;
	border-bottom: solid #ccc 1px;
	color: #000;
}

.policy_tbl dt,.policy_tbl dd {
	padding: 15px 0;
	margin: 15px 0;
}

.policy_tbl dd ul {
	margin: 15px 0 15px 2rem;
}

.policy_tbl dd li {
	list-style: disc;
	margin: 5px 0;
}

#privacy .contents h4 {
	font-size: 2rem;
	margin-top: 60px;
}

#inquiry p {
	margin-left: 1rem;
}

.policy_tbl dd p {
	color: #000;
	margin: 15px 0 5px;
}

div#pagenation {
	margin-bottom: 90px;
}

div#pagenation ul {
	display: flex;
	justify-content: center;
	font-size: 1.2rem;
}

div#pagenation li a {
	border: 1px solid #ccc;
	border-radius: 100vh;
	margin: 0 5px;
	display: block;
	line-height: 45px;
	text-align: center;
	width: 45px;
	height: 45px;
}

div#pagenation li.active a,
div#pagenation li a:hover{
	border:solid 1px #005e7c;
	color: #fff;
	background: #005e7c;
}

#staff_only {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	text-align: center;
}

#staff_only input[type="password"] {
	border: solid #ccc 1px;
	line-height: 2rem;
	font-size: 1.4rem;
	width: 12rem;
}

#staff_only h2 {
	font-size: 1.2rem;
	margin-top: 20px;
}

#staff_only p {
	margin: 30px 0;
}

#staff_only li a {
	display: block;
	border: solid #005e7c 1px;
	color: #005e7c;
	text-align: left;
	padding: 15px 55px 15px 15px;
	margin: 15px 0;
	position: relative;
}

#staff_only li a:hover {
	background: #005e7c;
	color: #fff;
}

#staff_only li a .arrow {
	position: absolute;
	display: inline-block;
	width: 22px;
	height: 1px;
	margin-top: 5.7px;
	border-radius: 9999px;
	background-color: #005e7c;
	top: 40%;
	right: 17px;
}

#staff_only li a:hover .arrow::before,
#staff_only li a:hover .arrow {
	background-color: #fff;
}

#staff_only li a .arrow::before {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	width: 11px;
	height: 1px;
	border-radius: 9999px;
	background-color: #005e7c;
	transform: rotate(45deg);
	transform-origin: calc(100% - 0.5px) 50%;
}

#staff_only .att {
	display: block;
	color: #e60012;
}

.map_inner h3 {
	text-align: center;
	margin: 15px 0;
}

.news_img {
	text-align: center;
	margin: 30px 0 15px;
}

#staffonly_link {
	color: #050517;
	display: inline-block !important;
	background: #fff;
	border-radius: 100vh;
}

#idx_bene_wrap {
	background: #86bbbd;
	border-radius: 100vh;
}

#idx_bene_wrap h4 {
	font-weight: 600;
}

#idx_bene_wrap a {
	color: #fff;
}

#sns_area ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 90px 0;
}

#sns_area li {
	margin: 0 15px;
	text-align: center;
}

#sns_area li img {
	width: 48px;
}


#sns_area li:last-child a {
	display: inline-block;
	color: #005e7c;
	border: solid #005e7c 1px;
	padding: 5px 15px;
	border-radius: 6px;
}

#sns_area li:last-child a:hover {
	background: #005e7c;
	color: #fff;
}

@media (min-width: 1025px) {
	.pc_none {
		display: none;
	}
	
	.menu {
		align-items: center;
		display: flex;
		justify-content: center;
		height: 100vh;
		width: 63.5%;
	}
	
	#menu_header {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 37.5%;
	}
	
	.menu_header_inner dl {
		margin-top: 30px;
		padding: 0 15px;
	}
	
	.menu_header_inner dt {
		font-size: 1.6rem;
		margin-bottom: 10px;
	}
	
	#menu_header_contact a {
		font-size: 1.8rem;
		padding: 25px 0;
		margin-top: 120px;
	}
	
	.menu ul {
		border-top: solid #86bbbd 1px;
		margin: 0 5%;
		width: 300px;
	}
	
	.menu li a {
		padding: 35px 0;
	}
	
	.menu_wrap {
		display: flex;
		justify-content: space-between;
	}
	
	#footer_wrap {
		display: flex;
		justify-content: space-between;
	}
	
	#foot_menu_wrap {
		display: flex;
		width: 50%;
	}
	
	#foot_menu_wrap ul {
		margin-right: 5%;
	}
	
	#foot_menu_wrap li {
		margin: 10px 0;
	}
	
	#foot_menu_wrap li a:hover {
		color: #86bbbd;
	}
	
	#copyright {
		margin-top: 30px;
		display: flex;
		justify-content: center;
	}
	
	#copyright li {
		margin:  0 15px;
	}
	
	#yt_wrap {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	
	#yt_inner {
		height: 640px;
		width: 80%;
	}
	
	#yt_head {
		width: 14%;
	}
	
	#idx_search {
		background: url("../images/idx_bene_bg.gif") no-repeat;
		background-size: cover;
		padding: 90px 0;
	}
	
	#idx_search ul {
		display: flex;
		justify-content: space-between;
		margin: auto;
		width: 640px;
	}

	#idx_search li {
		border-radius: 6px;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		padding: 15px 2%;
		width: 45%;
	}
	
	#idx_bene_wrap {
		margin: 30px auto 0;
		padding: 15px 0;
		width: 640px;
	}
	
	#idx_bene_wrap h4 {
		font-size: 1.4rem;
	}
	
	#idx_news_wrap {
		display: flex;
		padding: 80px 10%;
		justify-content: space-between;
	}
	
	#news_headline {
		text-align: center;
	}
	
	#news_headline h4 {
		font-size: 4.5rem;
		line-height: 4rem;
		font-weight: 200;
		margin-bottom: 25px;
	}
	
	#news_contents {
		width: 80%;
	}
	
	#idx_service li {
		padding: 60px 0;
		width: 25%;
	}
	
	#idx_service li:hover {
		background: #eceef1;
	}
	
	#idx_service li div {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		height: 70px;
	}
	
	#idx_contact_wrap {
		align-items: flex-end;
		display: flex;
		justify-content: center;
		padding: 30px 0 90px;
	}
	
	#idx_contact_wrap dl {
		margin: 0 15px;
	}
	
	#idx_contact dt {
		font-size: 2.2rem;
	}

	#staff_establish {
		padding: 90px 10%;
	}
	
	#staff_establish dl {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	#staff_establish dt {
		width: 30%;
	}
	
	#staff_establish dd {
		text-align: right;
		width: 60%;
	}

	#staff_establish h2 {
		font-size: 3.4rem;
		margin-bottom: 10px;
	}
	
	#staff_establish ul {
		margin-top: 15px;
	}
	
	#staff_establish li {
		font-size: 1.4rem;
		padding: 20px 0;
	}
	
	.contents_wrap {
		display: flex;
		justify-content: space-between;
		padding: 90px 10%;
	}
	
	.headline {
		width: 23%;
	}
	
	.headline h4 {
		font-size: 2.4rem;
		font-weight: 600;
	}
	
	.contents {
		width: 75%;
	}
	
	.benefits_detail_inner {
		padding: 15px 0;
	}
		
	.benefits_detail_inner .number {
		font-size: 4.2rem;
		line-height: 4.2rem;
		font-weight: 600;
		width: 125px;
	}
	
	.benefits_detail_tbl {
		width: calc(100% - 125px);
	}
	
	.detail_title h5 {
		font-size: 1.4rem;
	}
	
	#staff_voice dl {
		max-width: 1080px;
		margin: 30px auto;
	}
	
	#staff_voice dt,
	#staff_voice dd {
		margin-bottom: 60px;
	}
	
	.sub_page_main {
		height: 100vh;
		overflow: hidden;
		padding: 0 15%;
	}

	#bene_menu ul {
		display: flex;
		justify-content: center;
	}

	#bene_menu li {
		margin: 0 30px;
	}

	.detail_title {
		margin-top: 10px;
	}

	.inner_tbl,.inner_tbl dl {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: space-between;
	}
	
	.detail_contents dt {
		width: 16%;
	}

	.inner_tbl > dt {
		width: calc(15% - 2px);
	}

	.detail_contents dd {
		width: 83%;
	}
	
	#curriculum h2,
	.sub_page_main h2 {
		font-weight: 300;
		font-size: 3.4rem;
	}
	
	#work_info {
		padding: 90px 10%;
	}
	
	#work_info ul {
		display: flex;
		justify-content: space-between;
	}
	
	#work_info li {
		padding: 30px;
		width: calc(30% - 62px);
	}
	
	#work_info li h3 {
		margin-bottom: 30px;
	}
	
	#saurus {
		padding: 90px 10%;
	}
	
	#saurus_inner {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	
	#saurus_inner h2 {
		font-size: 3.4rem;
	}
	
	#saurus_inner h3 {
		font-size: 2rem;
	}
	
	#saurus_head {
		text-align: center;
		margin: auto;
		width: 100%;
	}
	
	#saurus_contents {
		margin-bottom: 60px;
		width: 54%;
	}
	
	.detail_tbl {
		margin: 20px 0;
	}
	
	#curriculum_tbl dd {
		margin-top: 5px;
	}
	
	.detail_tbl dt,.detail_tbl dd {
		margin-bottom: 10px;
	}
	
	#saurus_copy {
		margin: 20px 0;
	}
	
	#curriculum {
		height: 75vh;
		padding: 0 15%;
	}
	
	#curriculum_sub {
		height: 25vh;
	}
	
	#recruitment {
		align-items: center;
		display: flex;
		justify-content: space-between;
		margin: 90px auto 0;
		width: 980px;
	}
	
	#recruitment dt {
		font-size: 2.4rem;
		width: 230px;
	}
	
	#recruitment dd {
		font-size: 1.2rem;
		width: 720px;
	}
	
	#recruitment dd span {
		display: block;
		font-size: 1.8rem;
	}
	
	#curriculum_detail {
		padding: 90px 0;
	}
	
	#curriculum_detail dl {
		display: flex;
		flex-wrap: wrap;
		margin: 30px auto 60px;
		width: 1040px;
	}
	
	#curriculum_detail dt,#curriculum_detail dd {
		padding: 30px 40px;
	}
	
	#curriculum_detail dt {
		display: flex;
		align-items: center;
		width: 294px;
	}
	
	#curriculum_detail dd {
		width: 584px;
	}
	
	#student_voice {
		padding: 90px 0 60px;
	}
	
	.student_voice_wrap {
		padding: 60px 5%;
		margin: 0 10% 60px;
		display: flex;
		justify-content: space-between;
	}
	
	.img_blc {
		width: 30%;
	}
	
	.student_voice_wrap dl {
		width: 68%;
	}
	
	.student_voice_wrap dt {
		font-size: 1.2rem;
		margin-bottom: 25px;
	}
	
	.student_voice_wrap dt p {
		font-size: 1rem;
	}
	
	.sub_text {
		margin:  25px 0;
	}
	
	#slider_wrap {
		margin: 60px auto 90px !important;
		width: 1080px;
	}
	
	#merit {
		padding: 90px 10%;
	}
	
	#merit ul {
		display: flex;
		justify-content: space-around;
	}
	
	#merit li {
		width: 30%;
	}
	
	#greeting {
		width: 1080px;
	}
	
	#history {
		padding-top: 0;
	}

	#access {
		padding-left: 10%;
		display: flex;
	}
	
	#access .headline {
		padding-top: 90px;
	}
	
	#map {
		display: flex;
		justify-content: space-between;
		padding-right: 3%;
		padding-bottom: 15px;
		padding-top: 15px;
		width: 74%;
	}
	
	#map .map_inner {
		height: 640px;
		width: 48%;
	}

	#contact dl {
		display: flex;
		justify-content: space-between;
		margin: 30px 0;
	}
	
	#contact dt {
		width:  30%;
	}

	#contact dd {
		width: 65%;
	}

	#form_wrap dl {
		display: flex;
		flex-wrap: wrap;
		width: 1080px;
	}

	#form_wrap dt {
		width: 260px;
		background: #cedce0;
	}

	#form_wrap dd {
		width: 740px;
	}

	#agree_list {
		display: flex;
		justify-content: center;
		margin: 30px 0;
	}
	
	#work_information {
		height: 70vh;
	}
	
	#staffonly_link {
		padding: 1px 15px 3px;
		margin-top: 3px;
	}
	
	#staffonly_link:hover {
		color: #050517 !important;
	}
	
}

@media screen and (max-width: 1024px) {
	body {
		font-size: 0.9rem;
	}
	
	.sp_none,nav {
		display: none;
	}
	
	header {
		min-height: 80px;
		background: #fff;
		z-index: 9999;
		position: fixed;
	}
	
	header h1 {
		max-width: 35%;
		margin-top: 3px;
		top: 25px;
	}
	
	header h1 img {
		width: 100px;
	}
	
	h4 {
		font-size: 2.4rem;
		margin-bottom: 0;
	}
	
	.float_menu dt a {
		font-size: 0.8rem;
		height: 32px;
		margin-right: 10px;
		width: 90px;
	}

	.openbtn1 {
		width: 60px;
		height: 32px;
	}
	
	.openbtn1 span {
		height: 1px;
	}
	
	.openbtn1 span:nth-of-type(1) {
		top: 8px;
	}

	.openbtn1 span:nth-of-type(2) {
		top: 15px;
	}

	.openbtn1 span:nth-of-type(3) {
		top: 22px;
	}

	.openbtn1.active span:nth-of-type(1) {
		top: 8px;
	}

	.openbtn1.active span:nth-of-type(3) {
		top: 20px;
	}
	
	.menu {
		background: #fff;
		padding: 55px 5% 20px;
	}

	.menu li a {
		font-size: 1rem;
		padding: 12px 0;
	}
	
	.menu_wrap {
		background: #86bbbd;
	}
	
	.menu_wrap.active {
		height: 200vh;
	}
	
	.menu_header_inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 20px 5%;
	}
	
	.menu_header_inner p {
		width: 50%;
	}
	
	.menu_header_inner p img {
		margin-top: 5px;
		width: 60%;
	}
	
	.menu_header_inner dl {
		margin-top: 10px;
		width: 90%;
	}
	
	.menu_header_inner dd {
		font-size: 0.8rem;
	}
	
	#menu_header_contact a {
		padding: 5px 0;
	}
	
	#menu_header_contact a .arrow_1 {
		width: 20px;
		margin-top: 5.6px;
	}

	#menu_header_contact a .arrow_1::before {
		width: 10px;
	}
	
	#index_main {
		height: 50vh;
	}
	
	#index_main p {
		font-size: 3rem;
	}
	
	#index_main video {
		position: absolute;
		left: -60%;
		max-height: 100vh;
	}
	
	#idx_search {
		padding: 30px 5%;
	}
	
	#idx_search h2 {
		font-size: 2rem;
		font-weight: 600;
	}
	
	#yt_inner {
		height: 240px;
	}
	
	#yt_head {
		margin: 30px 0 0;
	}
	
	#yt_head img {
		width: 180px;
	}

	h2 {
		font-size: 2rem;
		text-align: center;
	}
	
	#idx_search ul {
		margin: 15px 0;
	}
	
	.page_link_1 {
		font-size: 1.1rem;
		padding: 5px 40px 7px;
		margin: 7px 0;
	}
	
	.page_link_1 .arrow {
		margin-top: 2.8px;
		top: 45%;
		right: 15px;
		width: 20px;
	}

	.page_link_1 .arrow::before {
		width: 10px;
	}
	
	#idx_search li {
		padding: 10px 3%;
		margin: 5px 0;
	}
	
	#idx_news_wrap {
		padding: 15px 5%;
	}
	
	.view_more a {
		font-size: 0.8rem;
		padding: 2px 30px 4px;
	}
	
	.view_more .arrow {
		width: 11px;
		right: 13px;
	}
	
	#news_headline {
		margin-bottom: 15px;
	}
	
	#idx_service {
		padding-top: 30px;
	}
	
	#idx_service ul {
		background: none;
		font-size: 1rem;
		justify-content: space-between;
		margin: 0 3%;
	}
	
	#idx_service li {
		background: #f6f8fa;
		margin: 15px 0;
		padding: 20px 0;
		width: 48%;
	}
	
	#idx_service li img {
		width: 45%;
	}
	
	#idx_service li div {
		margin: 5px 0;
	}
	
	#idx_service li div span {
		font-size: 0.8rem;
	}
	
	#idx_contact {
		margin: 30px auto;
	}
	
	#idx_contact dt {
		font-size: 1.6rem;
	}
	
	#idx_tel {
		margin: 30px 5% 60px;
	}
	
	#idx_tel dt {
		width: 25%;
	}
	
	#idx_tel span {
		font-size: 2.4rem;
		line-height: 2.5rem;
	}
	
	footer {
		font-size: 0.8rem;
	}
	
	#foot_company_info {
		text-align: center;
	}
	
	#foot_company_info dt img {
		max-width: 35%;
	}

	#foot_menu_wrap {
		margin: 10px 10% 30px;
	}
	
	#foot_menu_wrap a {
		display: block;
		padding: 5px 0;
	}
	
	#foot_menu_wrap a:before {
		content: "-　";
	}
	
	#bene_main {
		padding-top: 80px;
		height: 40vh;
	}
	
	.sub_page_main {
		height: 75vh;
	}
	
	#bene_menu {
		padding: 15px 0 30px;
	}
	
	#bene_menu a {
		color: #fff;
		margin: 0 auto;
	}
	
	#staff_establish {
		margin: 30px 3%;
	}
	
	#staff_establish p {
		text-align: center;
	}
	
	#staff_establish li {
		font-size: 1.2rem;
		padding: 10px 0;
	}
	
	#staff_establish dd {
		margin: 15px 0;
	}
	
	#staff_establish p {
		margin: 15px 0;
	}
	
	#staff_establish h3 {
		text-align: center;
		margin: 15px 0;
		font-size: 1.6rem;
	}
	
	.headline h4 {
		line-height: 3rem;
		text-align: center;
	}
	
	.contents_wrap {
		padding: 30px 0;
	}
	
	.benefits_detail_inner .number {
		font-size: 2.4rem;
		line-height: 2.4rem;
		font-weight: 600;
		width: 50px;
	}
	
	.contents {
		margin: 15px 3% 0;
	}

	.benefits_detail_tbl {
		width: calc(100% - 50px);
	}
	
	.detail_title {
		padding-right: 45px;
		padding-bottom: 15px;
	}
	
	.benefits_detail_inner {
		margin-bottom: 15px;
	}

	.detail_contents dt {
		width: 40%;
	}

	#staff_voice {
		margin: 0 3%;
		padding-top: 30px;
	}
	
	#staff_voice dl {
		font-size: 0.9rem;
		margin-top: 20px;
	}
	
	.staff_name {
		font-size: 0.75rem;
		margin-top: 0;
	}
	
	#staff_voice dt, #staff_voice dd {
		margin-bottom: 30px;
	}
	
	.detail_contents {
		margin: 15px 0
	}
	
	.inner_tbl > dt {
		padding: 3px 0;
		margin: 15px 0 5px;
	}
	
	.sub_page_main {
		padding: 0 3%;
	}
	
	#work_info {
		padding: 45px 3%;
	}
	
	#work_info li {
		padding: 15px;
		margin-bottom: 15px;
	}
	
	#work_info li h3 {
		font-size: 1.2rem;
		margin-bottom: 10px;
	}
	
	#saurus {
		margin: 45px 3%;
	}
	
	#saurus_head {
		background-size: 50%;
		background-position: right bottom;
		text-align: center;
		margin-bottom: 15px;
	}
	
	.detail_tbl {
		margin: 15px 0;
	}
	
	.detail_tbl dt {
		margin-bottom: 15px;
		width: 35%;
	}
	
	.detail_tbl dd {
		margin-bottom: 15px;
		width: 62%;
	}
	
	#saurus_copy {
		font-size: 1.4rem;
		margin: 15px 0;
	}
	
	#publish {
		font-size: 1rem;
	}
	
	#publish dt {
		padding: 5px 15px 7px;
		margin-right: 10px;
	}
	
	#publish dd {
		font-size: 1.4rem;
		margin-right: 10px;
	}
	
	#publish dd span {
		font-size: 3.4rem;
	}
	
	#saurus_contents {
		margin-bottom: 30px;
	}
	
	#curriculum {
		padding: 0 5%;
		height: 75vh;
	}
	
	#curriculum_sub {
		height: 15vh;
		font-size: 1.4rem;
		line-height: 1.4rem;
	}
	
	#curriculum_sub span {
		font-size: 1.2rem;
	}
	
	#recruitment {
		margin: 15px 5%;
		text-align: center;
	}
	
	#recruitment dd {
		margin-top: 15px;
	}
	
	#recruitment dd span {
		display: block;
		font-size: 1.2rem;
	}
	
	#curriculum_tbl dd {
		padding-top: 5px;
	}
	
	#curriculum_detail {
		padding: 30px 3%;
	}
	
	#curriculum_detail h2 {
		font-size: 1.6rem;
	}
	
	#curriculum_detail dl {
		margin: 30px 0;
	}
	
	#curriculum_detail dt,#curriculum_detail dd {
		padding: 15px;
	}
	
	#curriculum_detail h3 span {
		padding: 10px 20px;
		font-size: 1.4rem;
	}
	
	#student_voice {
		margin: 30px 5%;
	}
	
	.sub_text {
		margin: 15px 0;
	}
	
	.student_voice_wrap {
		padding: 15px 5%;
		margin: 15px 0;
	}
	
	.img_blc {
		display: flex;
		justify-content: center;
		margin: 15px 0;
	}
	
	.img_blc img {
		margin: 0 3%;
		max-width: 40%;
	}
	
	.student_voice_wrap dt p {
		font-size: 0.8rem;
		margin: 5px 0 15px;
	}
	
	#slider_wrap {
		margin: 30px 0;
		width: 100%;
	}
	
	.slick-prev {
		left: 0 !important;
	}
	
	.slick-next {
		right: 0 !important;
	}
	
	#support_main {
		font-size: 0.9rem;
	}
	
	#support_main p {
		font-size: 1.2rem;
		margin: 10px 0;
	}
	
	#merit {
		padding: 30px 5%;
	}
	
	#merit li {
		margin: 30px 0 60px;
	}
	
	#merit li h3 {
		margin: 30px 0 15px;
	}
	
	#company {
		height: 100vh;
	}
	
	#greeting {
		font-size: 0.85rem;
	}
	
	#greeting_head {
		padding-top: 90px;
		font-size: 0.85rem;
	}
	
	#greeting h2 {
		font-size: 1.1rem;
		margin: 15px 0;
	}
	
	#sign span {
		font-size: 1.6rem;
	}
	
	.company_pdf_link {
		margin: 0 5%;
		padding-top: 30px;
	}
	
	#company_profile dl,#history dl {
		font-size: 0.8rem;
	}
	
	#company_profile dt {
		padding-left: 0;
		padding-right: 15px;
		width: calc(35% - 15px);
	}
	
	#company_profile dd {
		width: 65%;
	}
	
	#history dt {
		padding: 10px 5px;
		width: calc(45% - 10px);
	}
	
	#history dd {
		padding: 10px;
		width: calc(55% - 20px);
	}
	
	#rule {
		padding: 30px 10%;
		margin-bottom: 30px;
	}
	
	#map {
		margin-bottom: 30px;
	}
	
	#contact dl {
		margin-top: 30px;
	}
	
	#contact dd {
		justify-content: center;
		font-size: 2.4rem;
		margin-top: 10px;
	}
	
	#contact dd img {
		width: 80px;
	}
	
	#form_wrap h2 {
		font-size: 1.6rem;
		margin-bottom: 30px;
	}
	
	#form_wrap {
		padding: 30px 5%;
	}

	#form_wrap dt {
		padding: 5px 15px;
	}
	
	#form_wrap dd {
		padding: 10px 0 15px;
	}
	
	#agree_list {
		margin: 15px 0;
	}
	
	#agree_list li a {
		display: block;
		text-align: center;
		margin: 10px 0;
	}

	.totop {
		bottom: 30px;
		width: 60px;
		height: 60px;
	}

	.absolute{
		top: -30px;
	}
	
	#news_wrap {
		margin: 0 5%;
	}
	
	#student_head {
		margin: 0 3%;
	}
	
	#staff_only h1 {
		margin: 0 10%;
	}
	
	#staff_only ul {
		margin: 0 5%;
	}
	
	#company {
		background-position: 70% center;
	}
	
	#staffonly_link {
		padding: 1px 15px !important;
		margin-top: 10px !important;
		margin-left: 1rem !important;
	}
	
	#staffonly_link:before {
		content: '' !important;
	}
	
	#idx_bene_wrap {
		padding: 7px 0;
	}
	
	#idx_bene_wrap h4 {
		font-size: 1.2rem;
	}
	
	#sns_area ul {
		margin: 30px 0;
	}

	#sns_area li img {
		width: 32px;
	}

}