@charset "utf-8";
/* CSS Document */


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

/* ページの先頭に戻る(すべてのページ) */

.pagetop {
  width: 40px;
	height: 50px;
  bottom: 10px;
  right: 10px;
	z-index:998;
  opacity: 0.9;
}
.pagetop a {
  width: 100%;
  height: 100%;
}


/* ページ内アンカー */

.anchor{
    display: block;
    padding-top: 60px;
    margin-top: -60px;
}


/**********************************************************/
/* ベース部分 */
/**********************************************************/

body {
  width: 100%;
  font-size:1.4rem;
  overflow: hidden;
}

img {
	max-width:100%;
	height:auto;
}

.sp_none,.hidden {
	display:none !important;
}


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

header {

	width:100%;
	height:50px;
	position: fixed;
	top:0;
	left:0;
	/*transform: translateX(-50%);*/
	z-index: 999;
}
.header_bar {
	background: var(--navy) url("../images/header/logo.svg") no-repeat left 8% center / 85px;
	width: 95%;
	height: 50px;
	position: fixed;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 30px;
}
.menu_bar_wrap {
	background: #FFF;
	height: 82px;
	position: relative;
}
.menu_bar {
	width: 95%;
	margin: 0 auto;
	background: var(--navy);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 30px;
}
.menu_bar .menu_logo {
	width: 80px;
	display: block;
	margin-left: 6%;
}
.nav_menu {
	display: flex;
	flex-direction: column-reverse;
}
.site_nav {
	padding: 24px 5%;
}
.site_name {
	text-align: center;
}
.headerNav > li {
	display: flex;
	justify-content: space-between;
}
.headerNav .sub_menu {
	width: 42%;
}
.headerNav .sub_menu li {
	border-bottom: none;
	padding: 0;
}
.headerNav .sub_menu li:not(:last-child) {
	margin-bottom: 16px;
}
.headerNav .sub_menu li a {
	font-size: 1.4rem;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	opacity: 0.85;
	padding: 0;
}

 
 
/**********************************************************/
/* メインビュー・キービジュアル */
/**********************************************************/

.kv{
	width: 100%;
	aspect-ratio: 16 / 9;
  padding: 0;
	position: relative;
}
.kv img {
	width: 100%;
	aspect-ratio: 16 / 9;
	transform: scale(1.35);
	position: fixed;
	object-fit: cover;
	object-position: center;
	z-index: -1;
}


.kv_link_btn {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 60px;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 998;
}
.kv_link_btn .right_btn {
	display: flex;
	flex: 1;
}
.kv_link_btn a {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.to_recruit {
	width: 120px;
	color: #000;
	background: var(--sky) url("../images/icon_bg_recruit.svg") no-repeat left 12px center / 24px;
	padding-left: 24px;
}
.to_attachment {
	flex: 1;
	color: #FFF;
	background: var(--navy);
}
.to_attachment span {
	position: relative;
	width: fit-content;
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 24px;
}
.to_attachment span::before {
	content: "";
	display: block;
	width: 20px;
	height: 30px;
	background: url( "../images/icon_bg_attachment.svg") no-repeat center / cover;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.to_tel {
	width: 60px!important;
	color: #FFF;
	background: var(--orange) url( "../images/header/icon_tel.svg") no-repeat center / 36px;
}


/**********************************************************/
/*  メインエリア */
/**********************************************************/

main {
	width:100%;
	display:block;
	position:relative;
}
section {
	width:100%;
	position:relative;
}
.inner{
	width: 87.5%;
	margin: 0 auto;
	position:relative;
}


/* 見出し・本文・リスト設定 */

.page_content h1 {
	width: 90%;
	margin: 0 auto;
	font-size: 2.8rem;
	text-align: center;
	border-bottom: solid 2px #444;
	padding-block: 30px;
	line-height: 1;
}
.page_content h2 {
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
}
main h3 {
}




/**********************************************************/
/* テーブル */
/**********************************************************/

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 10px;
	/*border-block: solid 1px #373737;*/
}

th,td {
    white-space: nowrap;
}

th {
	text-align: center;
  vertical-align: middle;
	border-block: solid 1px #373737;
}

td {
  text-align: center;
  vertical-align: middle;
	border-block: solid 1px #373737;
}


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

footer {
	width:100%;
	background: #FFF;
}
.footer_inner {
	background: var(--navy);
	width: 95%;
	margin: 0 auto;
	padding: 80px 0 100px;
	border-radius: 16px 16px 0 0;
}
.footer_content {
	width: 90%;
	margin: 0 auto;
	color: #FFF;
}
.footer_menu {
	width: 100%;
	border-bottom: solid 1px rgba(255,255,255,0.6);
	padding-bottom: 38px;
}
.footer_content a {
	display: block;
	color: #FFF;
	opacity: 0.85;
}
.footer_logo {
	display: block;
	width: 115px;
	margin: 0 auto 32px;
}
.footer_banner {
	width: 60%;
	margin: 0 auto;
}

.footer_info,
.footer_copy{
	text-align: center;
}
.footer_info {
	padding: 20px 0;
}
.footer_info dl {
 margin-bottom: 24px;
}
.footer_info dl dt {
	font-size: 1.6rem;
}
.footer_info dl dt span {
	font-size: 1.3rem;
	display: inline-block;
	margin-left: 0.5em;
}
.footer_info dl dd {
	font-size: 1.4rem;
	font-weight: 400;
	opacity: 0.8;
}

.footer_copy a {
	font-size: 1.2rem;
	font-weight: 400;
}


}



