@charset "utf-8";

body.menu_active {
	overflow: hidden;
}

/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s;
	height: 0.80rem;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 1080px;
	z-index: 100;
}

@media screen and (max-width: 640px) {
	header {
		min-width: 100%;
		height: 0.60rem;
	}
}

/* PC時のホバースタイル */
@media (hover: hover) {
	.elememts {
		/* 内容を記述 */
	}
}

/* --------- 以下、必要に応じて有効化 ---------- */

/* ヘッダーが上に消える
header.hide {
	transform: translateY(-1.50rem);
}
*/

/* スクロールで表示された状態
header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
*/

/* ロゴ */
header .logo {
	width: 1.90rem;
	position: absolute;
	top: 50%;
	left: 0.20rem;
	transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
	header .logo {
		width: 1.50rem;
	}
}

header .logo img {
	display: block;
}

@media (hover: hover) {
	header .logo a:hover {
		opacity: 0.7;
	}
}

header .logo .color {
	display: none;
}

/* ナビゲーション */
header .main_navi {
	position: absolute;
	top: 50%;
	right: 1.10rem;
	transform: translateY(-50%);
	text-shadow: 0 0 0.10rem rgba(0,0,0,0.3);
}
@media screen and (max-width: 640px) {
	header .main_navi {
		display: none;
	}
}

header .main_navi .list {
	display: flex;
	align-items: center;
	gap: 0 0.40rem;
}

header .main_navi .list .link a {
	font-size: 0.16rem;
	font-weight: 700;
	color: #FFF;
	text-decoration: none;
}

header .main_navi .list .link a span {
	position: relative;
}

header .main_navi .list .link a span::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #FFF;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

@media (hover: hover) {
	header .main_navi .list .link a:hover span::after {
		transform-origin: left top;
		transform: scale(1, 1);
	}
}

header #SPnaviBtn {
	width: 0.80rem;
	height: 0.80rem;
}
@media screen and (max-width: 640px) {
	header #SPnaviBtn {
		width: 0.60rem;
		height: 0.60rem;
	}
}

header #SPnaviBtn.menu-trigger span {
	background-color: #FFF;
}

header #SPnaviBtn.menu-trigger.active span {
	background-color: #FFF;
}

/* 反転時 */
header.-rev {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

header.-rev .logo .color {
	display: block;
}

header.-rev .logo .white {
	display: none;
}
header.-rev .main_navi {
	text-shadow: none;
}

header.-rev .main_navi .list .link a {
	color: #1a1a1a;
}

header.-rev .main_navi .list .link a span::after {
  background: #1a1a1a;
}

header.-rev #SPnaviBtn {
	background-color: #50BED2;
}

/*============================
展開メニュー
============================*/
#global_menu {
	background-color: rgba(0, 152, 184, 0.9);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

@media screen and (max-width: 640px) {
	#global_menu {
		height: 100vh;
		height: 100svh;
		height: 100dvh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: env(safe-area-inset-bottom);
		box-sizing: border-box;
		overscroll-behavior: contain;
	}
}

#global_menu.active {
	opacity: 1;
	visibility: visible;
}

body.menu_active header {
	background-color: transparent;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

body.menu_active header .logo .color {
	display: none;
}
body.menu_active header .logo .white {
	display: block;
}

body.menu_active header .main_navi {
	display: none;
}

body.menu_active header #SPnaviBtn {
	background-color: transparent;
}

#global_menu .ph {
	width: 40%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 640px) {
	#global_menu .ph {
		display: none;
	}
}

#global_menu .link_wrap {
	width: 60%;
	position: absolute;
	top: 50%;
	left: 40%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: baseline;
	padding: 0 0.50rem;
	box-sizing: border-box;
}
@media screen and (max-width: 640px) {
	#global_menu .link_wrap {
		width: 100%;
		top: auto;
		left: auto;
		position: relative;
		padding: 0.60rem 0 calc(0.01rem + env(safe-area-inset-bottom));
		transform: none;
	}
}


#global_menu .link_wrap .link_box {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	gap: 0.30rem 0;
}
@media screen and (max-width: 640px) {
	#global_menu .link_wrap .link_box {
		width: 100%;
		gap: 0;
	}
}

#global_menu .link_wrap .link_box .box {
	width: 100%;
}

#global_menu .link_wrap .link_box .box a {
	color: #FFF;
	display: block;
}

#global_menu .link_wrap .link_box .box .acc_toggle {
	display: none;
}

#global_menu .link_wrap .link_box .box .cat {
	font-size: 0.18rem;
	font-weight: 700;
}

#global_menu .link_wrap .link_box .box .list {
	padding-top: 0.12rem;
}

#global_menu .link_wrap .link_box .box .list .link a {
	display: block;
	font-size: 0.16rem;
	line-height: 2;
	position: relative;
}
@media screen and (max-width: 640px) {
	#global_menu .link_wrap .link_box .box .list .link a {
		font-size: 0.14rem;
		font-weight: 600;
	}
}

#global_menu .link_wrap .link_box .box .list .link a::before {
	content: "";
	width: 0.07rem;
	height: 1px;
	background-color: #FFF;
	display: inline-block;
	margin-right: 0.07rem;
	position: relative;
	top: -0.03rem;
	transition: all 0.3s;
}

@media (hover: hover) {
	#global_menu .link_wrap .link_box .box .list .link a:hover::before {
		width: 0.10rem;
	}
}

/* スマホ時のみ */
@media screen and (max-width: 640px) {
	#global_menu .link_wrap .link_box .box.-single .cat {
		position: relative;
		border-bottom: 1px solid rgba(255,255,255,0.2);
		padding: 0.15rem 0.20rem;
	}
	#global_menu .link_wrap .link_box .box.-single .cat::after {
		content: "";
		width: 0.20rem;
		height: 0.10rem;
		background-image: url(../img/common/btn_type01_arrow_white.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		right: 0.15rem;
		transform: translateY(-50%);
	}
	#global_menu .link_wrap .link_box .box.-acc .cat {
		position: relative;
		border-bottom: 1px solid rgba(255,255,255,0.2);
		padding: 0.15rem 0.20rem;
	}
	#global_menu .link_wrap .link_box .box.-acc .cat::after {
		content: "";
		width: 0.20rem;
		height: 0.10rem;
		background-image: url(../img/common/btn_type01_arrow_white.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		right: 0.15rem;
		transform: translateY(-50%) rotate(90deg);
		transition: transform 0.3s;
	}
	#global_menu .link_wrap .link_box .box.-acc.-open .cat::after {
		transform: translateY(-50%) rotate(-90deg);
	}
	#global_menu .link_wrap .link_box .box.-acc .cat .acc_toggle {
		position: absolute;
		top: 0;
		right: 0;
		width: 0.50rem;
		height: 100%;
		background: transparent;
		border: 0;
		padding: 0;
		cursor: pointer;
		z-index: 2;
	}
	#global_menu .link_wrap .link_box .box.-acc .list {
		display: none;
		padding: 0.10rem 0 0.10rem 0.30rem;
		background-color: rgba(255,255,255,0.1);
	}
	#global_menu .link_wrap .link_box .box.-acc .list .link a {
		padding: 0.07rem 0;
	}
	#global_menu .link_wrap .link_box .box.-acc .list .link a::before {
		content: none;
	}
	#global_menu .link_wrap .link_box .box.-acc .list .link a::after {
		content: "";
		width: 0.20rem;
		height: 0.10rem;
		background-image: url(../img/common/btn_type01_arrow_white.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		right: 0.15rem;
		transform: translateY(-50%);
	}
	#global_menu .office_info {
		text-align: center;
		color: #FFF;
		padding: 0.20rem;
		line-height: 1.75;
	}
	#global_menu .office_info .office_box {
		padding-bottom: 0.20rem;
	}
	#global_menu .office_info .office_box .office_name {
		font-size: 0.16rem;
		font-weight: 700;
	}
	#global_menu .office_info .office_box .address {
		font-size: 0.13rem;
	}
	#global_menu .office_info .office_box .tel_num {
		font-size: 0.13rem;
	}
	#global_menu .office_info .office_box .tel_num a {
		color: #FFF;
		font-weight: 500;
		text-decoration: underline;
	}
	#global_menu .office_info .office_box .map_btn {
		margin: 0.10rem auto;
		width: 2.40rem;
	}
	#global_menu .office_info .office_box .map_btn a {
		display: block;
		padding: 0.06rem 0;
		text-align: center;
		font-size: 0.13rem;
		color: #FFF;
		border: 1px solid #FFF;
		border-radius: 0.30rem;
	}
	#global_menu .office_info .office_box .map_btn a span::before {
		content: "";
		width: 0.16rem;
		height: 0.13rem;
		background-image: url(../common/img/icon_map_white.svg);
		background-position: left center;
		background-repeat: no-repeat;
		background-size: contain;
		display: inline-block;
		position: relative;
		top: 0.02rem;
	}
}


/*============================
共通
============================*/
.contents_wrap {
	padding-top: 0.85rem;
	position: relative;
}
@media screen and (max-width: 640px) {
	.contents_wrap {
		padding-top: 0.50rem;
	}
}

.contents_wrap::before {
	content: "";
	width: 50%;
	height: 0.10rem;
	background-color: #81BE25;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 640px) {
	.contents_wrap::before {
		height: 0.05rem;
	}
}

.contents_wrap::after {
	content: "";
	width: 50%;
	height: 0.10rem;
	background-color: #50BED2;
	position: absolute;
	top: 0;
	right: 0;
}
@media screen and (max-width: 640px) {
	.contents_wrap::after {
		height: 0.05rem;
	}
}

/* 1000px幅のボックス */
/* inと組み合わせて使用してください。 */
.-in1000 {
	max-width: 10.80rem;
}

/* 画像 */
.-cover {
	overflow: hidden;
}

.-cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	transition: all 0.3s;
}

/* セクションタイトル */
.contents_wrap .sec_ttl_wrap {
	padding-bottom: 0.50rem;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.contents_wrap .sec_ttl_wrap {
		padding-bottom: 0.30rem;
	}
}

.contents_wrap .sec_ttl_wrap.-left {
	text-align: left;
}

.contents_wrap .sec_ttl_wrap .sec_ttl {
	font-size: 0.35rem;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	letter-spacing: 0.09em;
	line-height: 1.85;
}
@media screen and (max-width: 640px) {
	.contents_wrap .sec_ttl_wrap .sec_ttl {
		font-size: 0.24rem;
		letter-spacing: 0;
		line-height: 1.6;
	}
}

.contents_wrap .sec_ttl_wrap .en {
	font-family: "Rubik", sans-serif;
	font-weight: 700;
	color: #81BE25;
	padding-top: 0.10rem;
	letter-spacing: 0.09em;
}
@media screen and (max-width: 640px) {
	.contents_wrap .sec_ttl_wrap .en {
		font-size: 0.12rem;
		padding-top: 0.15rem;
	}
}

.contents_wrap .sec_ttl_wrap .en.-blue {
	color: #0098B8;
}

.contents_wrap .sec_ttl_wrap.-white {
	color: #FFF;
}

.contents_wrap .sec_ttl_wrap.-white .en {
	color: #FFF;
}

/* リンクボタン（タイプ01）下線・矢印つき */
.btn_type01 {
	width: 1.70rem;
	display: block;
	border-bottom: 1px solid #1a1a1a;
	color: #1a1a1a;
	font-size: 0.15rem;
	letter-spacing: 0.075em;
	font-weight: 600;
	position: relative;
	text-align: center;
	padding-bottom: 0.10rem;
}

/* センター寄せ */
.btn_type01.-center {
	margin: 0 auto;
}

/* 白文字 */
.btn_type01.-white {
	color: #FFF;
	border-bottom: 1px solid #FFF;
}

.btn_type01.-white::after {
	background-image: url(../img/common/btn_type01_arrow_white.svg);
}

.btn_type01::after {
	content: "";
	width: 0.06rem;
	height: 0.09rem;
	background-image: url(../img/common/btn_type01_arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 30%;
	right: 0.06rem;
	transform: translateY(-50%);
	transition: all 0.3s;
}

@media (hover: hover) {
	.btn_type01:hover::after {
		right: 0.03rem;
	}
}

.btn_type01::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #81BE25;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

@media (hover: hover) {
	.btn_type01:hover::before {
		transform-origin: left top;
		transform: scale(1, 1);
	}
}

.btn_type01 span {
	display: inline-block;
	padding-right: 0.08rem;
}

/* リンクボタン（タイプ02）角丸背景白 */
.btn_type02 {
	display: block;
	width: 2.40rem;
	background-color: #FFF;
	border-radius: 0.40rem;
	line-height: 0;
	padding: 0.24rem 0.27rem 0.26rem;
	box-sizing: border-box;
	position: relative;
	color: #1a1a1a;
	font-size: 0.16rem;
	font-weight: 700;
}

.btn_type02::after {
	content: "";
	width: 0.06rem;
	height: 0.09rem;
	background-image: url(../img/common/btn_type01_arrow_black.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0.20rem;
	transform: translateY(-50%);
	transition: all 0.3s;
}

@media (hover: hover) {
	.btn_type02:hover {
		opacity: 0.8;
	}
	.btn_type02:hover::after {
		right: 0.15rem;
	}
}

/* PDFボタン */
.btn_pdf {
	display: block;
	width: 100%;
	max-width: 3.50rem;
	padding: 0.28rem 0.27rem 0.30rem;
	background-color: #0098B8;
	color: #FFF;
	line-height: 0;
	font-size: 0.16rem;
	text-align: center;
	font-weight: 700;
	border-radius: 0.340rem;
	transition: all 0.3s;
	margin: auto;
}
@media screen and (max-width: 640px) {
	.btn_pdf {
		max-width: 2.5rem;
		font-size: 0.14rem;
		padding: 0.25rem 0.15rem 0.26rem;
	}
}
.btn_pdf span {
	position: relative;
}

.btn_pdf span::after {
	content: "";
	width: 0.16rem;
	height: 0.20rem;
	background-image: url(../img/common/icon_pdf_white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: -0.28rem;
	transform: translateY(-50%);
}

@media (hover: hover) {
	.btn_pdf:hover {
		opacity: 0.8;
	}
}

/* 新しいウィンドウで開くアイコン */
.newwin {
	position: relative;
}
.newwin::after {
	content: "";
	width: 0.20rem;
	height: 0.8em;
	background-image: url(../common/img/icon_newwin_black.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	margin: 0 0.03rem 0 0;
}

/* ダミー素材の場合 */
.-dummy::after {
	content: "ダミー素材";
	font-size: 0.14rem;
	padding: 0.06rem 0.10rem;
	font-weight: 600;
	color: #B8000E;
	background-color: #FFF;
	border: 2px solid #B8000E;
	position: absolute;
	left: 0.30rem;
	bottom: 0.30rem;
	z-index: 2;
}
@media screen and (max-width: 640px) {
	.-dummy::after {
		font-size: 0.12rem;
		padding: 0.04rem 0.08rem;
		left: 0.10rem;
		bottom: 0.10rem;
	}
}

/*============================
採用バナー
============================*/
.recruit_bnr {
	width: 100%;
	max-width: 12.00rem;
	margin: 0.80rem auto 0;
	border-radius: 0.10rem;
	overflow: hidden;
	box-shadow: 0 0.03rem 0.16rem rgba(0,0,0,0.16);
	background-color: #0098B8;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	color: #FFF;
}
@media screen and (max-width: 640px) {
	.recruit_bnr {
		max-width: 100%;
		margin: 0.50rem auto 0;
		align-items: flex-start;
	}
}

.recruit_bnr .ph {
	width: 5.25rem;
}
@media screen and (max-width: 640px) {
	.recruit_bnr .ph {
		width: 100%;
	}
}

.recruit_bnr .txt_box {
	width: calc(100% - 5.70rem);
}
@media screen and (max-width: 640px) {
	.recruit_bnr .txt_box {
		width: 100%;
		padding: 0.20rem;
		box-sizing: border-box;
	}
}

.recruit_bnr .txt_box .ttl {
	font-size: 0.35rem;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	letter-spacing: 0.09em;
	line-height: 1.85;
	display: inline-flex;
	align-items: center;
	gap: 0 0.20rem;
}
@media screen and (max-width: 640px) {
	.recruit_bnr .txt_box .ttl {
		font-size: 0.24rem;
		letter-spacing: 0;
		line-height: 1.2;
		text-align: center;
		display: block;
	}
}

.recruit_bnr .txt_box .ttl .en {
	font-size: 0.20rem;
	font-family: "Rubik", sans-serif;
	font-weight: 700;
	padding-top: 0.10rem;
	letter-spacing: 0.09em;
	position: relative;
	top: -0.02rem;
}
@media screen and (max-width: 640px) {
	.recruit_bnr .txt_box .ttl .en {
		font-size: 0.12rem;
		padding-top: 0;
		position: static;
		display: block;
		text-align: center;
		padding-top: 0.10rem;
	}
}

.recruit_bnr .txt_box .txt {
	padding: 0.15rem 0 0.25rem;
	font-size: 0.15rem;
	font-weight: 500;
	line-height: 2;
	padding-right: 0.35rem;
}
@media screen and (max-width: 640px) {
	.recruit_bnr .txt_box .txt {
		padding: 0.10rem 0 0.20rem;
		font-size: 0.14rem;
		padding-right: 0;
	}
}

.recruit_bnr .txt_box .btn_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 0 0.30rem;
}
@media screen and (max-width: 640px) {
	.recruit_bnr .txt_box .btn_wrap {
		justify-content: center;
		gap: 0.20rem 0;
		padding-bottom: 0.10rem;
	}
}

/*============================
フッター会社情報
============================*/
.footer_company_info {
	padding: 0.80rem;
	position: relative;
	overflow: hidden;
}
@media screen and (max-width: 640px) {
	.footer_company_info {
		padding: 0.40rem 0;
	}
}

.footer_company_info::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(197,234,242,0) 0%,rgba(197,234,242,0.3) 100%);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
}

.footer_company_info::after {
	content: "";
	width: 12.77rem;
	height: 8.40rem;
	background-image: url(../img/common/footer_company_map.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: calc(50% + 1.30rem);
	transform: translateY(-50%);
	z-index: 1;
}
@media screen and (max-width: 640px) {
	.footer_company_info::after {
		content: none;
	}
}

.footer_company_info .in {
	z-index: 2;
}

.footer_company_info .in .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 0.70rem;
	width: 100%;
}

.footer_company_info .in .wrap:last-child {
	padding-bottom: 0;
}

.footer_company_info .in .wrap .ph {
	width: 5.50rem;
	height: 3.60rem;
}
@media screen and (max-width: 640px) {
	.footer_company_info .in .wrap .ph {
		width: 100%;
		height: 60vw;
		margin-bottom: 0.20rem;
	}
}

.footer_company_info .in .wrap .txt_box {
	width: calc(100% - 6.00rem);
	max-width: 6.00rem;
}
@media screen and (max-width: 640px) {
	.footer_company_info .in .wrap .txt_box {
		width: 100%;
		max-width: none;
	}
}

.footer_company_info .in .wrap .txt_box .office_name {
	font-size: 0.35rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	line-height: 1.85;
}
@media screen and (max-width: 640px) {
	.footer_company_info .in .wrap .txt_box .office_name {
		font-size: 0.20rem;
		text-align: center;
		line-height: 1;
	}
}

.footer_company_info .in .wrap .txt_box .address {
	font-size: 0.14rem;
	line-height: 2;
	padding-top: 0.10rem;
}
@media screen and (max-width: 640px) {
	.footer_company_info .in .wrap .txt_box .address {
		text-align: center;
		font-size: 0.13rem;
		list-style: 1.75;
	}
}

.footer_company_info .in .wrap .txt_box .tel_num {
	font-size: 0.14rem;
	line-height: 2;
}
@media screen and (max-width: 640px) {
	.footer_company_info .in .wrap .txt_box .tel_num {
		text-align: center;
		font-size: 0.13rem;
		line-height: 1.75;
	}
}

.footer_company_info .in .wrap .txt_box .access_list {
	padding: 0.20rem 0;
}

.footer_company_info .in .wrap .txt_box .access_list .list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 0.14rem;
	line-height: 2;
}
@media screen and (max-width: 640px) {
	.footer_company_info .in .wrap .txt_box .access_list .list {
		display: block;
		font-size: 0.13rem;
		padding-bottom: 0.20rem;
		text-align: center;
		line-height: 1.75;
	}
}

.footer_company_info .in .wrap .txt_box .access_list .list .access_ttl {
	width: 1.55rem;
	display: inline-flex;
	align-items: center;
}
@media screen and (max-width: 640px) {
	.footer_company_info .in .wrap .txt_box .access_list .list .access_ttl {
		width: fit-content;
		text-align: center;
		margin: auto;
	}
}

.footer_company_info .in .wrap .txt_box .access_list .list .access_ttl.-train::before {
	content: "";
	width: 0.25rem;
	height: 0.20rem;
	background-image: url(../img/common/footer_compan_icon01.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 0.05rem;
	display: inline-block;
}
@media screen and (max-width: 640px) {
	.footer_company_info .in .wrap .txt_box .access_list .list .access_ttl.-train::before {
		width: 0.20rem;
		height: 0.16rem;
		margin-right: 0.03rem;
	}
}

.footer_company_info .in .wrap .txt_box .access_list .list .access_ttl.-car::before {
	content: "";
	width: 0.25rem;
	height: 0.20rem;
	background-image: url(../img/common/footer_compan_icon02.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 0.05rem;
	display: inline-block;
}
@media screen and (max-width: 640px) {
	.footer_company_info .in .wrap .txt_box .access_list .list .access_ttl.-car::before {
		width: 0.20rem;
		height: 0.16rem;
		margin-right: 0.03rem;
	}
}

@media screen and (max-width: 640px) {
	.footer_company_info .in .wrap .txt_box .gmap_link .btn_type01 {
		margin: auto
	}
}

/*============================
フッター
============================*/
footer {
	position: relative;
	padding-top: 0.60rem;
}
@media screen and (max-width: 640px) {
	footer {
		padding-top: 0.40rem;
	}
}

footer::before {
	content: "";
	width: 50%;
	height: 0.10rem;
	background-color: #81BE25;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 640px) {
	footer::before {
		height: 0.05rem;
	}
}

footer::after {
	content: "";
	width: 50%;
	height: 0.10rem;
	background-color: #50BED2;
	position: absolute;
	top: 0;
	right: 0;
}
@media screen and (max-width: 640px) {
	footer::after {
		height: 0.05rem;
	}
}

/* 上段 リンク */
footer .upper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: baseline;
	padding-bottom: 0.60rem;
}
@media screen and (max-width: 640px) {
	footer .upper {
		padding-bottom: 0.20rem;
	}
}

footer .upper .link_box {
	display: flex;
	flex-wrap: wrap;
	gap: 0.20rem 0;
	min-width: 15%;
}
@media screen and (max-width: 640px) {
	footer .upper .link_box {
		min-width: 100%;
		width: 100%;
		gap: 0;
	}
}

footer .upper .link_box .box {
	width: 100%;
}

@media screen and (max-width: 640px) {
	footer .upper .link_box .box {
		padding-bottom: 0.30rem;
	}
	footer .upper .link_box .box .cat {
		position: relative;
	}
}
footer .upper .link_box .box .cat a {
	font-size: 0.16rem;
	font-weight: 500;
	color: #1a1a1a;
	text-decoration: none;
}
@media screen and (max-width: 640px) {
	footer .upper .link_box .box .cat a {
		font-size: 0.15rem;
	}
}

footer .upper .link_box .box .cat a span {
	position: relative;
}

footer .upper .link_box .box .cat a span::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #1a1a1a;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

@media (hover: hover) {
	footer .upper .link_box .box .cat a:hover span::after {
		transform-origin: left top;
		transform: scale(1, 1);
	}
}

footer .upper .link_box .box .list {
	padding-top: 0.12rem;
}
@media screen and (max-width: 640px) {
	footer .upper .link_box .box .list {
		padding-top: 0.10rem;
		display: flex;
		flex-wrap: wrap;
		gap: 0.05rem 0;
	}
	footer .upper .link_box .box .list .link {
		min-width: 50%;
	}
}

footer .upper .link_box .box .list .link a {
	display: block;
	font-size: 0.14rem;
	color: #1a1a1a;
	line-height: 2;
	position: relative;
}
@media screen and (max-width: 640px) {
	footer .upper .link_box .box .list .link a {
		font-size: 0.13rem;
		letter-spacing: 0;
	}
}

footer .upper .link_box .box .list .link a::before {
	content: "";
	width: 0.07rem;
	height: 1px;
	background-color: #B5B5B5;
	display: inline-block;
	margin-right: 0.07rem;
	position: relative;
	top: -0.03rem;
	transition: all 0.3s;
}
@media screen and (max-width: 640px) {
	footer .upper .link_box .box .list .link a::before {
		width: 0.05rem;
		margin-right: 0.05rem;
	}
}

@media (hover: hover) {
	footer .upper .link_box .box .list .link a:hover {
		color: #81BE25;
	}
	footer .upper .link_box .box .list .link a:hover::before {
		background-color: #81BE25;
	}
}

/* 下段 ロゴとコピーライト */
footer .bottom {
	border-top: 1px solid #B5B5B5;
	padding: 0.25rem 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}

footer .bottom .logo {
	width: 2.30rem;
}
@media screen and (max-width: 640px) {
	footer .bottom .logo {
		width: 1.50rem;
		margin: auto;
		padding-bottom: 0.20rem;
	}
}

@media (hover: hover) {
	footer .bottom .logo a:hover {
		opacity: 0.7;
	}
}

footer .bottom .logo img {
	display: block;
}

footer .bottom .copright {
	font-size: 0.10rem;
}
@media screen and (max-width: 640px) {
	footer .bottom .copright {
		width: 100%;
		text-align: center;
		letter-spacing: 0.05em;
	}
}

/* 404ページ */
.page404_wrap {
	text-align: center;
}

.page404_wrap .txt {
	font-size: 0.16rem;
	line-height: 2;
	padding-bottom: 1.00rem;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.page404_wrap .txt {
		font-size: 0.14rem;
		padding-bottom: 0.50rem;
	}
}