@charset "utf-8";
/* ------------------------------
 リセット
------------------------------ */

* {
border:0;
margin:0;
outline:0;
padding:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
font:inherit;
font-family:inherit;
font-size:100%;
font-style:inherit;
font-weight:inherit;
text-decoration:none;
vertical-align:baseline;
}

html {font-size:62.5%; width:100%; height:100%;}

body {
font-size:10px;
font-size:1.0rem;
line-height:1;
position:relative;
text-align:center;
	-webkit-text-size-adjust:100%;
	/*-moz-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
	-o-text-size-adjust:100%;
	text-size-adjust:100%;*/
-webkit-font-smoothing:antialiased;
/*font-smoothing:antialiased;*/
-moz-osx-font-smoothing:grayscale;
width:100%;
height:100%;
}

article, aside, dialog, figure, footer, header, main, menu, nav, section {display:block;}
audio, canvas, video {display:inline-block;}


hr {display:block;}

ol,
ul {list-style:none;}

blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:''; content:none;}

input,
select {vertical-align:middle;}

table {border-collapse:collapse; border-spacing:0; empty-cells:show;}


/* ------------------------------
 サイト全体（PC用コード）
------------------------------ */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: local('Roboto Thin'), local('Roboto-Thin'), url(../fonts/roboto/Roboto-Thin.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Light'), local('Roboto-Light'), url(../fonts/roboto/Roboto-Light.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(../fonts/roboto/Roboto-Regular.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'), url(../fonts/roboto/Roboto-Medium.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(../fonts/roboto/Roboto-Bold.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local('Roboto Black'), local('Roboto-Black'), url(../fonts/roboto/Roboto-Black.ttf) format('truetype');
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 100;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 200;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 300;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 400;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold");
    font-weight: bold;
}
html, 
body {
	min-width: 1220px;
	margin: 0 auto;
	color: #333;
	font-family: "Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-weight: 500;
	line-height: 1.5;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.contentsPage:after,
.cf:after {
	content: "";
	clear: both;
	display: block;
}

.fl {
	float:left;
}

.fr {
	float:right;
}

.tal {
	text-align:left;
}

.tac,
.pc_tac {
	text-align:center;
}

.tar {
	text-align:right;
}

.vat {
	vertical-align:top;
}

.vam {
	vertical-align:middle;
}

.vab {
	vertical-align:bottom;
}

.vtb {
	vertical-align:text-bottom;
}

s {
	text-decoration: line-through;
}

strong,
.bold {
	font-weight: bold;
}

.nobold {
	font-weight: normal !important;
}

.auto {
	margin-left: auto;
	margin-right: auto;
}

input.none{
	display: none;
}

.sp {
	display:none !important;
}
@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
	.sp {
		display:block !important;
	}
	
}
/* スペース */
.mb0 {
	margin-bottom: 0 !important;
}
.mb5 {
	margin-bottom: 5px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb15 {
	margin-bottom: 15px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.mb40 {
	margin-bottom: 40px !important;
}
.mb50 {
	margin-bottom: 50px !important;
}
.mb60 {
	margin-bottom: 60px !important;
}
.mb70 {
	margin-bottom: 70px !important;
}
.mb80 {
	margin-bottom: 80px !important;
}
.mb90 {
	margin-bottom: 90px !important;
}
.mt50{
	margin-top: 50px !important;
}

/* 行スペース */
.b1 {
	margin-bottom: 1.7em;
}

/************** ▼▼▼ 2018/11/26 参考プラン管理機能 byMizuhori ▼▼▼ **************/
.mr15 { margin-right: 15px;}
/************** ▲▲▲ 2018/11/26 参考プラン管理機能 byMizuhori ▲▲▲ **************/	
/* リンク */
a {
	color: #003366;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

a img {
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
a:hover img {
	opacity: 0.7;
}


/* カラー */
.red {
	color: #B01C1B;
}
.blue {
	color: #1C479A;
}
.orange {
	color: #CC4B1F;
}
.gray {
	color: #82807F;
}

/* フォントサイズ */
.big,
big {
	font-size: 1.8rem;
}
.small,
small {
	font-size: 1.3rem;
}
sup {
	font-size: 62.5%;
	vertical-align:top;
}

.bold { font-weight: bold;}

.f13 { font-size: 1.3rem !important;}
.f14 { font-size: 1.4rem !important;}
.f15 { font-size: 1.5rem !important;}
.f16 { font-size: 1.6rem !important;}
.f17 { font-size: 1.7rem !important;}
.f18 { font-size: 1.8rem !important;}
.f19 { font-size: 1.9rem !important;}
.f20 { font-size: 2rem !important;}
.f21 { font-size: 2.1rem !important;}
.f22 { font-size: 2.2rem !important;}
.f24 { font-size: 2.4rem !important;}
.f26 { font-size: 2.6rem !important;}
.f30 { font-size: 3rem !important;}
/************** ▼▼▼ 2018/11/26 参考プラン管理機能 byMizuhori ▼▼▼ **************/
.f28 {
	font-size: 2.8rem !important;
	line-height: 1.2;
	vertical-align: middle;
}
/************** ▲▲▲ 2018/11/26 参考プラン管理機能 byMizuhori ▲▲▲ **************/	

/* 改行 */
.nobr_pc br {
	display: none;
}


/* ------------------------------
 サイト全体（スマホ用コード）
------------------------------ */
@media screen and (max-width: 767px) {
	html, 
	body {
		min-width: 100%;
		max-width: 100%;
	}
	
	.fl,
	.fr {
		float: none;
	}
	/* ;;edit;;20160215 */
	.site {
		min-width: 0;
	}
	img {
		margin-left: auto;
		margin-right: auto;
	}
	
	.pc_tac {
		text-align:left !important;
	}
	.pc_br br {
		display: none;
	}
	.sp_br br {
		display: block;
	}
	
	/* スペース */
	
	.mb40 {
		margin-bottom: 20px !important;
	}
	.mb50 {
		margin-bottom: 30px !important;
	}
	.mb60 {
		margin-bottom: 35px !important;
	}
	.mb70 {
		margin-bottom: 40px !important;
	}
	.mb80 {
		margin-bottom: 40px !important;
	}
	.mb90 {
		margin-bottom: 45px !important;
	}
	
	.sp_mb30 {
		margin-bottom: 30px;
	}
	.sp_mb50 {
		margin-bottom: 50px;
	}
	
	.f16 { font-size: 1.4rem !important;}
	.f17 { font-size: 1.5rem !important;}
	.f18 { font-size: 1.6rem !important;}
	.f19 { font-size: 1.7rem !important;}
	.f20 { font-size: 1.7rem !important;}
	.f21 { font-size: 1.7rem !important;}
	.f22 { font-size: 1.8rem !important;}
	.f24 { font-size: 1.8rem !important;}
	.f26 { font-size: 2rem !important;}
/************** ▼▼▼ 2018/11/26 参考プラン管理機能 byMizuhori ▼▼▼ **************/
	.f28 { font-size: 2.1rem !important;}
/************** ▲▲▲ 2018/11/26 参考プラン管理機能 byMizuhori ▲▲▲ **************/		
	.f30 { font-size: 2.2rem !important;}
	
	/* 改行 */
	.nobr_pc br {
		display: block;
	}
}

/* ------------------------------
 ヘッダ
------------------------------ */
.header {
	width: 100%;
	margin: 0;
	text-align: center;
	background: #fff;
	position: relative;
	/* なんか消えるの解除 ;;edit;; */
	z-index: 777 !important;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px -7px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px -7px;
	-moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px -7px;
}
.headerBlock  {
	margin: 0 auto;
	text-align: left;
}


/* ロゴの右Block */
.headerBlock_right a {
	color: #333;
}

/* 資料請求・お問合せ */
.headerBlock .gnav > li.contact a {
	color: #fff;
}
.headerBlock .gnav > li.contact a img {
	vertical-align: top;
	margin-top: 0.3em;
	margin-right: 7px;
}
.headerBlock .gnav > li.contact a:hover {
	opacity: .7;
}
.headerBlock .gnav > li.contact a:hover img {
	opacity: 1;
}


/* スマホ時遠鉄ホームロゴ */
.headerBlock .gnav > li.logo_eh_sp {
	display: none;
}


/* -- ふわっと表示 -- */
@keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
@-moz-keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
@-webkit-keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
/* ------------------------------
 PC用限定CSS
------------------------------ */
@media print, screen and (min-width: 768px) {
    .slidemenu-btn,
	.btn-submenu-toggle {
		display: none !important;
	}
	#header-sticky-wrapper {
		z-index: 9999 !important;
		max-height: 70px !important;
	}
	.header {
		height: 82px;
		position: fixed;
		z-index: 600 !important;
	}
	
    .headerBlock {
		width: 1220px;
	}
	
	/* ロゴBlock */
	.headerBlock_logo {
		float: left;
		padding: 14px 0;
	}
	.headerBlock_logo h1 {
		display: table;
		height: 53px;
	}
	.headerBlock_logo span {
		display: table-cell;
		padding: 0 15px;
		vertical-align: middle;
		border-right: solid 1px #E6E6E6;
	}
	.headerBlock_logo .logo {
		border-left: solid 1px #E6E6E6;
	}
	.headerBlock_logo .logo img {
		width: 133px;
	}
	
	
	/* ロゴの右Block */
	.headerBlock_right {
		float: right;
	}
	* + .gnav,
	.gnav:after {
		content: "";
		clear: both;
		display: block;
	}
	
	.headerBlock .gnav {
		display: table;
		vertical-align: middle;
        visibility: visible;
	}
	.headerBlock .gnav > li.contact a,
	.headerBlock .gnav > li p a,
	.headerBlock .gnav > li p a::after {
		-webkit-transition: 0.1s ease-in-out;
		-moz-transition: 0.1s ease-in-out;
		-o-transition: 0.1s ease-in-out;
		transition: 0.1s ease-in-out;
	}
	.headerBlock .gnav > li {
		text-align: center;
		font-size: 1.5rem;
		font-weight: bold;
		vertical-align: middle;
		display: table-cell;
		height: 82px;
	}
	.headerBlock .gnav > li:not(.contact) {
		padding-right: 28px;
	}
    .headerBlock .gnav > li a {
		display: inline-block;
		padding: 0 12px;
		position: relative;
		text-decoration: none;
		height: 38px;
	}
	.headerBlock .gnav > li a span {
		font-size: 1rem;
		color: #999;
		display: block;
	}
	
	.headerBlock .gnav > li p a::after {
		content: "";
		height: 3px;
		position: absolute;
		left: 0;
		right: 0;
		bottom: -23px;
		opacity: 0;
		background: #638C0B;
	}
	
	.headerBlock .gnav > li:hover p a::after,
	.headerBlock .gnav > li.on p a::after {
		opacity: 1;
	}
	
	/* 資料請求・お問合せ */
	.headerBlock .gnav > li.contact a {
		font-size: 1.2rem;
		color: #fff;
		background: #638C0B;
		display: block;
		padding: 0 25px;
		height: 82px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.headerBlock .gnav > li.contact a span {
		color: #fff;
	}
	
	
	.logo-outer {
		display: none;
	}
}
/* ------------------------------
 PC用限定CSS プルダウンメニュー部分
------------------------------ */
@media print, screen and (min-width: 768px) {
	.headerBlock .gnav > li > ul {
		font-size: 0;
		width: 100%;
		position: absolute;
		visibility: hidden;
		text-align: center;
		background: rgba(255, 255, 255, .9);
		opacity: 0;
		padding: 0;
		top: 82px;
		left: 0;
		right: 0;
		border-bottom: solid 1px #ccc;
		z-index: 500;
		-webkit-transition: visibility 0s ease .15s, opacity .15s ease-in-out .15s;
		transition: visibility 0s ease .15s, opacity .15s ease-in-out .15s;
	}
	.headerBlock .gnav > li > ul > li {
		font-size: 1.4rem;
		display: inline-block;
		font-weight: bold;
	}
	.headerBlock .gnav > li > ul > li a {
		line-height: 20px;
		height: auto;
		color: #003366;
		padding: 15px 30px;
		display: block;
		text-decoration: none;
		position: relative;
		-webkit-transition: none;
		transition: none;
		-webkit-transition: 0.1s ease-in-out;
		-moz-transition: 0.1s ease-in-out;
		-o-transition: 0.1s ease-in-out;
		transition: 0.1s ease-in-out;
	}
	.headerBlock .gnav > li > ul > li a.blank {
		background-position: right 10px top 18px;
	}
	.headerBlock .gnav > li > ul > li a:hover {
		color: #fff;
		background: #CC4B1F;
	}
	.headerBlock .gnav > li > ul > li a.blank:hover {
		background: #CC4B1F url(/shared/img/blank_w.gif) no-repeat right 10px top 18px / 12px 11px;
	}
	
	.headerBlock .gnav > li > ul:hover,
	.headerBlock .gnav > li:hover > ul {
		visibility: visible;
		opacity: 1;
	}
}
/* ------------------------------
 スマホ用コード（ヘッダ）
------------------------------ */
@media screen and (max-width: 767px) {
	.header {
		display: block;
		top: 0;
		left: 0;
		height: 65px;
		width: 100%;
		min-width: 100%;
		background: none;
	}
	
	.headerBlock  {
		width: 100%;
		height: auto;
		margin: 0 auto;
	}
	.logo-outer {
		z-index: 10;
		width: 60px;
		height: 75px;
		top: 0;
		right: 0;
		position: absolute;
		z-index: 860;
	}
	body.page-open-slidemenu {
		position: fixed;
	}
	.page-open-slidemenu .logo-outer {
		position: fixed;
	}
	
	/* ロゴ */
	.headerBlock_logo {
		width: 100%;
		height: 65px;
		position: absolute;
		z-index: 850;
		left: 0;
		right: 0;
		margin: auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.page-open-slidemenu .headerBlock_logo {
		position: fixed;
	}
	.headerBlock_logo .logo img {
		max-height: 28px;
	}
	.headerBlock_logo .logo_eh {
		display: none;
	}
	
	
	/* ロゴの右Block */
	.headerBlock_right {
		width: 15%;
		float: left;
		text-align: center;
		padding-top: 0;
	}
	
	/* グローバルナビ */
	/* 開閉メニューボタン */
	.slidemenu-btn {
		display: block;
		width: 60px;
		height: 64px;
		position: absolute;
		right: 0;
		top: 0;
		background: #fff;
	}
	.page-open-slidemenu .slidemenu-btn {
		background: #638C0B;
	}
	.menu-icon,
	.menu-icon:before,
	.menu-icon:after {
		display: block;
		position: absolute;
		width: 30px;
		height: 4px;
		background-color: #638C0B;
	}
	.menu-icon:before,
	.menu-icon:after {
		-webkit-transition: color .25s ease;
		transition: color .25s ease;
	}
	.page-open-slidemenu .menu-icon:before,
	.page-open-slidemenu .menu-icon:after {
		background-color: #fff;
	}
	.menu-icon:before,
	.menu-icon:after {
		content: '';
		-webkit-transform-origin: 50% 50%;
		-o-transform-origin: 50% 50%;
		-ms-transform-origin: 50% 50%;
		-moz-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	.menu-icon {
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		-webkit-transition: all .25s ease-out;
		transition: all .25s ease-out;
	}
	.menu-icon:before {
		top: -10px;
		-webkit-transition: -webkit-transform .1s ease-out;
		transition: -webkit-transform .1s ease-out;
		transition: transform .1s ease-out;
		transition: transform .1s ease-out, -webkit-transform .1s ease-out;
	}
	.menu-icon:after {
		bottom: -10px;
		-webkit-transition: -webkit-transform .1s ease-out;
		transition: -webkit-transform .1s ease-out;
		transition: transform .1s ease-out;
		transition: transform .1s ease-out, -webkit-transform .1s ease-out;
	}
	.page-open-slidemenu .menu-icon {
	  background-color: transparent;
	}
	.page-open-slidemenu .menu-icon,
	.page-open-slidemenu .menu-icon:before,
	.page-open-slidemenu .menu-icon:after {
		width: 20px;
		height: 3px;
	}
	.page-open-slidemenu .menu-icon:before {
		-webkit-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
		-webkit-transition: -webkit-transform .1s ease-out .25s;
		transition: -webkit-transform .1s ease-out .25s;
		transition: transform .1s ease-out .25s;
		transition: transform .1s ease-out .25s, -webkit-transform .1s ease-out .25s;
	}
	.page-open-slidemenu .menu-icon:after {
		-webkit-transform: translateY(-10px) rotate(-45deg);
		transform: translateY(-10px) rotate(-45deg);
		-webkit-transition: -webkit-transform .1s ease-out .25s;
		transition: -webkit-transform .1s ease-out .25s;
		transition: transform .1s ease-out .25s;
		transition: transform .1s ease-out .25s, -webkit-transform .1s ease-out .25s;
	}
	/* 開閉メニューボタン */
	
	
	.headerBlock .headerBlock_right {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: -webkit-transform .3s ease-in-out;
		transition: -webkit-transform .3s ease-in-out;
		transition: transform .3s ease-in-out;
		transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 15%;
		width: 85%;
		height: 100vh;
		padding: 0;
		z-index: 800;
		padding-top: 65px;
		padding-bottom: 50px;
		height: 100vh;
		height: -webkit-calc(100vh - 60px);
		height: calc(100vh - 60px);
		background: rgba(255,255,255, 1);
		border-bottom: 1px solid #ccc;
	}
	
	.page-open-slidemenu .headerBlock .headerBlock_right {
		height: 100vh;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	.headerBlock_right > nav{
		height: 100%;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	.page-open-slidemenu .headerBlock .gnav > li {
		position: relative;
		text-align: left;
		z-index: 1;
	}
	/***/
	.page-open-slidemenu .headerBlock .gnav > li > p {
		position: relative;
	}
	.page-open-slidemenu .headerBlock .gnav > li > p > .btn-submenu-toggle {
		position: absolute;
		z-index: 820;
	}
	
	/* 開閉ボタン 開く処理 */
	/***/
	/* 要検討 */
	.headerBlock .gnav > li > ul {
		position: relative;
		overflow: hidden;
		display: none;
	}
	
	.headerBlock .gnav > li.is-open > ul {
		height: 0;
		visibility: visible;
	}
	.headerBlock .gnav > li a span {
		display: none;
	}
	.headerBlock .gnav > li a:not(.btn-submenu-toggle) {
		font-size: 1.3rem;
		display: block;
		font-weight: bold;
		width: 100%;
		position: relative;
		line-height: 1;
		text-decoration: none;
		padding: 18px 12%;
		border-bottom: solid 1px #CCCCCC;
		background: url(../img/arrow-r.png) no-repeat 5% center / 13px auto;
	}
	
	/* 資料請求・お問合せ */
	.headerBlock .gnav > li.contact:not(.btn-submenu-toggle) {
		padding: 5% 12%;
		border-bottom: none;
	}
	.headerBlock .gnav > li.contact a:not(.btn-submenu-toggle) {
		background: #638C0B;
		text-align: center;
		padding: 20px;
		line-height: 1.5;
		border-radius: 5px;
	}
	.headerBlock .gnav > li.contact a:not(.btn-submenu-toggle) span {
		display: block;
	}
	
	
	/* スマホ時遠鉄ホームロゴ */
	.headerBlock .gnav > li.logo_eh_sp:not(.btn-submenu-toggle) {
		display: block;
	}
	.headerBlock .gnav > li.logo_eh_sp a:not(.btn-submenu-toggle) {
		border-bottom: none;
		background: none;
	}
	.headerBlock .gnav > li.logo_eh_sp a:not(.btn-submenu-toggle) {
		text-align: center;
		padding: 20px;
	}
	
	
	/* -- プルダウンメニュー -- */
	.headerBlock .gnav > li li a:not(.btn-submenu-toggle) {
		background: #F2F5F7;
	}
	
	.headerBlock .gnav > li li a:not(.btn-submenu-toggle):before {
		content: "\f0da";
		font-family: "FontAwesome";
		font-size: 1.2rem;
		font-weight: normal;
		text-align: center;
		color: #1D2C63;
		border-radius: 8px;
		display: inline-block;
		position: absolute;
		left: 7%;
		top: 17px;
		line-height: 14px;
	}
	.headerBlock .gnav > li {
		position: relative;
		text-align: left;
		z-index: 3;
	}
	.headerBlock .gnav > li:before,
	.headerBlock .gnav > li:after {
		content: '';
		display: table;
	}
	.headerBlock .gnav > li:after {
		clear: both;
	}
	
	
	.headerBlock .gnav > li > ul > li > a {
		font-size: 14px;
		font-weight: 400 !important;
		width: 100%;
		text-decoration: none;
		background: #F2F5F7;
	}
	
	/* トグルボタン */
	.btn-submenu-toggle {
		display: block;
		width: 40px;
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		z-index: 10;
	}
	
	.btn-submenu-toggle:before,
	.btn-submenu-toggle:after {
		content: '';
		position: absolute;
		display: block;
		top: 0;
		bottom: 0;
		left: 0;
		right: 25px;
		margin: auto;
		background-color: #1D2C63;
		-webkit-transition: background-color .2s ease-in-out;
		transition: background-color .2s ease-in-out;
	}
	.btn-submenu-toggle:before {
		width: 2px;
		height: 14px;
	}
	.btn-submenu-toggle:after {
		width: 14px;
		height: 2px;
	}
	
	.is-open .btn-submenu-toggle:before {
		background-color: transparent;
	}
	.is-open .btn-submenu-toggle:after {
		background-color: #003366;
	}
}
.menu-layer {
	display: none;
}
@media screen and (max-width: 767px) {
	.menu-layer {
		width: 100%;
		height: 100%;
		position: absolute;
		/* ;;edit;;color */
		background-color: rgba(0,0,0,.2);
		top: 0;
		left: 0;
		z-index: 10;
	}
	.page-open-slidemenu .menu-layer {
		display: block;
		animation-duration: 1.5s;
		animation-name: fade-in;
		-moz-animation-duration: 1.5s;
		-moz-animation-name: fade-in;
		-webkit-animation-duration: 1.5s;
		-webkit-animation-name: fade-in;
	}
	.page-open-slidemenu .site {
		overflow: hidden;
	}
}
/* ------------------------------
 コンテンツ
------------------------------ */
.site {
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 1.5rem;
	overflow: hidden;
	position: relative; 
}
.contents {
	width: 100%;
	position:relative;
	padding-top: 82px;
}
.contentsTop{
	padding: 50px 0 0;
}
.contentsPage{
	padding: 50px 0 100px;
}

.contentsTop,
.contentsPage {
	width: 100%;
	margin: 0 auto;
	text-align: left;
	
}
.contentsTop .cms_block,
.contentsPage .cms_block {
	width: 1220px;
	margin-left: auto;
	margin-right: auto;
}
/************** ▼▼▼ 2018/04/09 ベイリーフ改修 byMizuhori ▼▼▼ **************/
div.main.page_land .cms_block{
	width: 100%;
}
/************** ▲▲▲ 2018/04/09 ベイリーフ改修 byMizuhori ▲▲▲ **************/


/* -- 横幅1220px -- */
.inBlock {
	width: 1220px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.inBlock::after {
	content: "";
	clear: both;
	display: block;
}

/* -- メイン画像 -- */
.mainImg {
	width: 100%;
	height: 350px;
	overflow: hidden;
	position: relative;
	text-align: center;
}
.mainImg img {
	width: 100%;
	height: auto;
	min-width: 1920px;
	position: relative;
	top: 0;
	left: 50%;
	margin-left: 0;
	-webkit-transform: translate(-50%,0%);
	-ms-transform: translate(-50%,0%);
	transform: translate(-50%,0%);
}


.contentsPage {
	width: 1220px;
	margin: 0 auto;
	padding: 60px 0 90px;
	text-align: left;
}

/* メインカテゴリ */
.main {
	width: 910px;

}
/************** ▼▼▼ 2018/04/09 ベイリーフ改修 byMizuhori ▼▼▼ **************/
/* ------------------------------
 ページリンク
------------------------------ */
.pageLink {
	width: 100%;
	font-size: 0;
	text-align: center;
	line-height: 26px;
	padding: 23px 0 16px;
	background: #f3f3f3;
	position: relative;
	z-index: 20;
}
.pageLink.bottom {
	padding: 27px 0 80px;
	background: #fff;
	border-top: solid 4px #003366;
}
.pageLink.bottom:before {
	background: #003366 none repeat scroll 0 0;
	top: -10px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.pageLink li {
	font-size: 1.5rem;
	padding: 0 3px;
	margin: 0 20px;
	position: relative;
	display: inline-block;
}
.pageLink li:after {
	content: '・';
	position: absolute;
	top: 0;
	right: -30px;
}
.pageLink li:last-child:after {
	display: none;
}
.pageLink li.on a {
	color: #cc4c1f;
	border-bottom: solid 2px #cc4c1f;
}
.pageLink li a {
	color: #333;
	display: block;
	text-decoration: none;
}
.pageLink li a:hover {
	color: #cc4c1f;
	border-bottom: solid 2px #cc4c1f;
}
/************** ▲▲▲ 2018/04/09 ベイリーフ改修 byMizuhori ▲▲▲ **************/
.sidecon .main {
	min-height: 350px;
}

/* サイドカテゴリ */
.side {
	width: 280px;
	float: right;
}
.sideBoxOuter {
	display: none;
}
.toggleMenu .toggleMenuText-open {
	display: none;
}
.toggleMenu .toggleMenuText-close {
	display: block;
}
.toggleMenu.is-open .toggleMenuText-open {
	display: block;
}
.toggleMenu.is-open .toggleMenuText-close {
	display: none;
}
.toggleMenu {
	display: none;
}

.sideBoxOuterBg {
	display: none;
	z-index: 8887;
	background-color: rgba(0,0,0,.7);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.lnavhead {
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
	text-align: left;
	padding: 11px 18px;
	background: #003366;
}

/* サイドナビ */
.sideNav {
	background: #F3F3F3;
	border-radius: 0 0 5px 5px;
}
.sideNav li {
	font-weight: bold;
	text-align: left;
}
.sideNav li a {
	color: #333;
	display: block;
	line-height: 1.4;
	padding: 13px 0 13px 40px;
	border-bottom: dotted 1px #A9ACAD;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
	position: relative;
}
.sideNav li:last-child a {
	border-bottom: none;
}
.sideNav li a:before {
	font-family: "FontAwesome";
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	content: "\f105";
	width: 13px;
	border-radius: 8px;
	display: inline-block;
	position: absolute;
	left: 17px;
	top: 17px;
	line-height: 14px;
	padding-left: 1px;
	background: #CC4B1F;
}
.sideNav > ul > li a:hover,
.sideNav > ul > li.on > a,
.sideNav > ul > li > ul li.on a {
	color: #CC4B1F;
}


@media (min-width: 767px) {
	.sidecon .side {
		width: 280px;
		position: absolute;
		left: 50%;
		top: 272px;
		margin-left: 330px;
	}
	.sideBoxOuter {
		display: block !important;
	}
	.sideBoxOuterBg {
		display: none !important;
	}
}


/* ------------------------------
 スマホ用コード（コンテンツ）
------------------------------ */
@media screen and (max-width: 767px) {
	
	#bggr {
		position: relative;
		z-index: 1;
	}
	.contents {
		width: 100%;
		min-height: 100px;
		padding-top: 0;
	}
	.contentsTop,
	.contentsPage {
		width: auto;
		margin: 0 5%;
		padding: 40px 0;
	}
	.contentsTop .cms_block,
	.contentsPage .cms_block {
		width: auto;
	}
	
	/* -- 横幅1220px -- */
	.inBlock {
		width: auto;
		padding-left: 5%;
		padding-right: 5%;
	}
	
	.contentsPage {
		width: auto;
		margin: 0 5%;
		padding: 30px 0 60px;
		text-align: left;
	}
	.main,
	.side {
		width: auto;
		float: none;
	}
	/* サイドカテゴリ */
	.toggleMenu {
		font-size: 1.5rem;
		font-weight: bold;
		text-align: center;
		color: #fff;
		display: block;
		margin: 0 -5.5%;
		padding: 17px 5%;
		background: #003366;
	}
	.toggleMenu .toggleMenuText-open {
		padding-bottom: 10px;
		background: url(../img/arrow04.png) no-repeat center bottom / 19px auto;
	}
	.toggleMenu .toggleMenuText-close {
		padding-bottom: 10px;
		background: url(../img/arrow03.png) no-repeat center bottom / 19px auto;
	}
	
	/* -- メインタイトル -- */
	.mainTitle {
		padding: 0 5%;
	}
	
	
	/* -- メイン画像 -- */
	.mainImg {
		width: 100%;
		height: 140px;
	}
	.mainImg img {
		min-width: 767px;
	}
}
/* ------------------------------
 ページ内リンク
------------------------------ */


/* ------------------------------
 スマホ用コード（コンテンツ）
------------------------------ */
@media screen and (max-width: 767px) {
	
}

/* ------------------------------
 パンくずメニュー
------------------------------ */

/* ------------------------------
 スマホ用コード（コンテンツ）
------------------------------ */
@media screen and (max-width: 767px) {
	
}



/* ------------------------------
 カテゴリーメニュー
------------------------------ */
.categoryBox {
	width: 597px;
	background: #F3F3F3;
	margin-bottom: 26px;
}
.categoryBox:nth-child(2n) {
	margin-left: 26px;
}
.categoryBox:nth-child(2n+1){
	clear: both;
	
}
.categoryBox a {
	color: #3F3B3A;
	text-decoration: none;
	display: table;
}
.categoryBox .img {
	display: table-cell;
	vertical-align: middle;
}
.categoryBox .img div {
	width: 265px;
	/* height: 170px; */
	overflow: hidden;
	position: relative;
	text-align: center;
	vertical-align: bottom;
}
.categoryBox .img img {
	width: 100%;
	height: auto;
	min-width: 289px;
	position: relative;
	top: 0;
	left: 50%;
	margin-left: 0;
	-webkit-transform: translate(-50%,0%);
	-ms-transform: translate(-50%,0%);
	transform: translate(-50%,0%);
}
.categoryBox .text {
	width: 332px;
	padding: 20px 30px;
	display: table-cell;
	vertical-align: middle;
}
.categoryBox .text .title {
	font-weight: bold;
	padding-bottom: 13px;
	margin-bottom: 13px;
	border-bottom: dotted 1px #808080;
}
.categoryBox .text .lead {
	font-family: "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-size: 1.7rem;
	font-weight: bold;
	margin-top: 0;
}
/* -- タイトルが入らない場合に消すCSS -- */
.titleNone .categoryBox .text .title {
	display: none;
}

/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 767px) {
	.categoryBox {
		width: auto;
		margin-bottom: 5%;
	}
	.categoryBox:nth-child(2n) {
		margin-left: 0;
	}
	.categoryBox a {
		display: block;
	}
	.categoryBox .img {
		display: block;
	}
	.categoryBox .img div {
		width: auto;
		height: auto;
	}
	.categoryBox .img img {
		min-width: 10px;
		position: static;
		-webkit-transform: translate(0%,0%);
		-ms-transform: translate(0%,0%);
		transform: translate(0%,0%);
	}
	.categoryBox .text {
		width: auto;
		padding: 8%;
		display: block;
	}
	.categoryBox .text .lead {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 479px) {
	
}



/* ------------------------------
 フッタ
------------------------------ */
.footerNav::after,
.firstBlock::after,
.underNav::after {
	content: "";
	clear: both;
	display: block;
}

.footer {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	position: relative;
	color: #d4d8e0;
	padding-top: 40px;
	background: #1D2E5B;
}
.footer a {
	color: #d4d8e0;
}
.footer .inBlock {
	width: 1220px;
	margin: 0 auto;
}

/* -- フッタナビ -- */
.footerNav {
	width: 855px;
	text-align: left;
	float: left;
}
.firstBlock {
	margin-bottom: 20px;
}

/* -- フッタロゴ -- */
.ft_logo {
	width: 335px;
	float: left;
}
.ft_logo img {
	width: 199px;
}

/* -- フッタナビ -- */
.listNav {
	font-size: 0;
	float: left;
}
.listNav li {
	font-size: 1.3rem;
	font-weight: bold;
	display: inline-block;
}
.listNav li:not(:last-child) {
	margin-right: 30px;
}
.listNav li img {
	vertical-align: middle;
	margin-right: 5px;
	opacity: .9;
}

/* -- フッター会社情報 -- */
.footerAbout {
	font-size: 1.1rem;
	width: 335px;
	float: left;
	text-align: left;
}
.ft_logo_eh {
	margin-bottom: 12px;
}
.ft_logo_eh img {
	width: 151px;
}


/* -- 下層ナビ -- */
.underNav {
	width: 520px;
	font-size: 1.3rem;
	font-weight: bold;
	float: left;
}
.underNav ul {
	width: 150px;
	float: left;
}
.underNav ul li {
	position: relative;
	padding-left: 10px;
}
.underNav ul li::before {
	content: "-";
	position: absolute;
	left: 0;
	top: 0;
}
.underNav ul li + li {
	margin-top: 12px;
}


/* -- フッタースライドバナー -- */
.bottomSlide {
	width: 365px;
	float: left;
}
.bottomSlide .swiper-container {
	width: 365px;
	padding-bottom: 30px;
}


/* NEXT PREV */
.bottomSlide .swiper-button-prev,
.bottomSlide .swiper-button-next {
	width: 8x;
	height: 14px;
	margin-top: -20px;
	background-size: 8px 14px;
}
.bottomSlide .swiper-button-prev,
.bottomSlide .swiper-container-rtl .swiper-button-next {
	left: 7px;
}
.bottomSlide .swiper-button-next,
.bottomSlide .swiper-container-rtl .swiper-button-prev {
	right: 7px;
}

/* PAGINATION */
.bottomSlide .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
.bottomSlide .swiper-pagination-fraction,
.bottomSlide .swiper-pagination-custom,
.bottomSlide .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}
.bottomSlide .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	border: solid 1px #fff;
	background: none;
	opacity: 1;
}
.bottomSlide .swiper-pagination-bullet-active {
	background: #fff;
	position: relative;
}
.bottomSlide .swiper-pagination-bullet-active:before {
	position: absolute;
	top: -6px;
	left: -6px;
	width: 7px;
	height: 7px;
	content: '';
	text-align: center;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: black;
	border-radius: 100%;
	background: #fff;
	border: solid 5px #5A6687;
}



/* -- COPYRIGHT -- */
.footerCopy {
	font-family: 'Roboto', "Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1;
	margin-top: 40px;
	padding: 15px 0;
	border-top: solid 1px rgba(255, 255, 255, .3);
}

/* -- フッタ内広告(冨塚佐鳴湖公園20190614) -- */
.footerAd{
	width: 100%;
	margin: 0 auto;
	text-align: left;
	padding: 50px 0;
}

.footerAd .cms_block{
	margin-left: auto;
	margin-right: auto;
}




/* ------------------------------
 PC用コード
------------------------------ */
@media screen and (min-width: 768px) {
	.header,
	.footer,
	.site {
		min-width: 1366px;
	}
}

/* ------------------------------
 スマホ用コード（フッタ）
------------------------------ */
@media screen and (max-width: 767px) {
	.footer {
		padding-top: 30px;
	}
	.footer .inBlock {
		width: auto;
		margin: 0 0;
	}
	
	/* -- フッタナビ -- */
	.footerNav {
		width: auto;
		float: none;
	}
	.firstBlock {
		margin-bottom: 20px;
	}
	
	/* -- フッタロゴ -- */
	.ft_logo {
		width: auto;
		float: none;
		text-align: center;
		margin-bottom: 20px;
	}
	.ft_logo img {
		width: 160px;
	}
	
	/* -- フッタナビ -- */
	.listNav {
		float: none;
		padding-bottom: 10px;
		border-bottom: solid 1px rgba(255, 255, 255, .3);
	}
	.listNav li:not(:last-child) {
		margin-right: 20px;
		margin-bottom: 10px;
	}
	
	/* -- フッター会社情報 -- */
	.footerAbout {
		width: auto;
		float: none;
		margin-bottom: 23px;
	}
	.ft_logo_eh {
		margin-bottom: 15px;
	}
	
	/* -- 下層ナビ -- */
	.underNav {
		display: none;
	}
	
	/* -- フッタースライドバナー -- */
	.bottomSlide {
		width: auto;
		float: none;
	}
	.bottomSlide .swiper-container {
		width: 100%;
	}
	.bottomSlide .swiper-container .swiper-slide img {
		max-width: 250px;
	}
	.bottomSlide .swiper-button-prev,
	.bottomSlide .swiper-container-rtl .swiper-button-next {
		left: 0;
	}
	.bottomSlide .swiper-button-next,
	.bottomSlide .swiper-container-rtl .swiper-button-prev {
		right: 0;
	}
	
	
	/* -- COPYRIGHT -- */
	.footerCopy {
		font-size: 1rem;
		padding: 10px 5%;
	}
	/* -- フッタ内広告 -- */
	.footerAd{
		width: auto;
		margin: 0 5%;
		padding: 0 0 50px;
	}
	.footerAd .cms_block{
		width: auto;
	}
}
@media screen and (max-width: 479px) {
	
	
}

/* -- PAGE TOP -- */
.js-btn-pagetop {
	width: 45px;
	height: 45px;
	color: #fff;
	text-align: center;
	display: block;
	border-radius: 45px;
	position: fixed;
	bottom: 80px;
	right: 30px;
	z-index: 1111;
	transition: background-color 0.2s ease 0s;
	cursor: pointer;
	background: rgba(28, 71, 154, 1);
	text-decoration: none;
}
.js-btn-pagetop:hover {
	text-decoration: none;
}

.js-btn-pagetop span {
	padding-top: 14px;
	display: block;
	font-size: 3rem;
	line-height: .5;
}

/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 767px) {
	/* -- PAGE TOP -- */
	.js-btn-pagetop {
		bottom: 120px;
		width: 40px;
		height:40px;
		right: 0;
		top: auto;
	}
	.js-btn-pagetop::before {
		left: 15px;
		height:20px;
		width:20px;
		top: 15px;
	}
	.js-btn-pagetop span {
		font-size: 2.4rem;
		padding: 0;
		line-height: 36px;
	}
	.js-btn-pagetop p {
		display: none;
	}
}

/* ------------------------------
 SIDE NAVI
------------------------------ */
.sideMenu {
	width: 40px;
	font-size: 1.3rem;
	color: #fff;
	position: fixed;
	top: 15%;
	right: 0;
	z-index: 2000000;
}
.sideMenu li {
	text-align: center;
	font-weight: bold;
	background: rgba(204,75,31,.9);
	margin-bottom: 1px;
}
.sideMenu li a {
	color: #fff;
	text-decoration: none;
	line-height: 40px;
	padding: 12px 0;
	text-decoration: none;
	position: relative;
}
.sideMenu li img {
	vertical-align: middle;
	margin-bottom: 5px;
	margin-left: -6px;
}
@-moz-document url-prefix() {
	.sideMenu li img {
		margin-left: 0;
	}
}

/* ------------------------------
 PC用コード
------------------------------ */
@media print, screen and (min-width: 768px) {
	.sideMenu li a {
		-ms-writing-mode: tb-rl;
		-webkit-writing-mode: vertical-rl;
		-o-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
	}
	
	/*IE10以降に適用されるCSSハック（一応）*/
	@media all and (-ms-high-contrast:none){
		.sideMenu li {
			height: 185px;
		}
		.sideMenu li:nth-child(3) {
			height: 230px;
		}
		.sideMenu li img {
			margin-left: -9px;
		}
	}
}
/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 767px) {
	.footer {
		padding-bottom: 55px;
	}
	.js-btn-pagetop {
		bottom: 120px;
	}

	.sideMenu {
		width: 100%;
		font-size: 1.1rem;
		text-align: center;
		top: auto;
		bottom: 0;
		right: 0;
		display: flex;
	}
	.sideMenu li span {
		display: none;
	}
	.sideMenu ul {
		width: 100%;
		height: 50px;
		display: flex;
		-webkit-transition: width .2s ease-in-out;
		transition: width .2s ease-in-out;
	}
	.sideMenu li {
		width: calc(100% / 3);
		height: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.sideMenu li:not(:last-child) {
		border-right: solid 1px #fff;
	}
	.page-show-pagetop .sideMenu li:last-child {
		border-right: solid 1px #fff;
	}
	.sideMenu li img {
		display: block;
		margin: 0 auto 3px;
	}
	.sideMenu li a {
		line-height: 1.5;
		padding: 0 5px;
		text-align: center;
		display: block;
	}
}

/* ------------------------------
 ノースクリプト
------------------------------ */
#nojs {
	width: 100%;
	padding: 0;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2000;
	background: #2b435c;
}
#nojs p {
	padding: 3px 0;
	color: #fff;
	font-size: 1.2rem;
}


/* ------------------------------
 印刷用コード
------------------------------ */
@media print {
	html, 
	body {
		background: none;
	}
	
	/* -- 固定footer -- */
	.headerBlock,
	.sideMenu {
		position: absolute;
	}
}


 /* -- 余白 -- */
@page {
	margin: 9.7mm 9.7mm;
}



/* ------------------------------
 Android用アラート
------------------------------ */
.alert-old-android-browser {
	display: none;
}
.alert-old-android-browser.is-show {
	border-top: 1px solid #aaa;
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	color: #222;
	font-size: 16px;
	z-index: 200000;
	padding: 30px 40px 20px 20px;
}
/* android browser */
.page-fixed-header-android .alert-old-android-browser.is-show {
	position: fixed;
	bottom: 0;
	left: 0;
}
.alert-old-android-browser.is-show > .alert-old-android-browser__text {
	margin-bottom: 1em;
	line-height: 18px;
	background-size: 20px 18px;
	margin-bottom: 10px;
}
.alert-old-android-browser.is-show > .alert-old-android-browser__link {
	text-decoration: none;
}
.alert-old-android-browser.is-show > .alert-old-android-browser__close {
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	top: 0px;
	right: 0px;
}
.alert-old-android-browser.is-show > .alert-old-android-browser__close:before,
.alert-old-android-browser.is-show > .alert-old-android-browser__close:after {
	content: '';
    display: block;
    position: absolute;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background-color: #aaa;
    width: 20px;
    height: 2px;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.alert-old-android-browser.is-show > .alert-old-android-browser__close:before {
	-webkit-transform: rotate(45deg);
    transform: rotate(45deg);	
}
.alert-old-android-browser.is-show > .alert-old-android-browser__close:after {
	-webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.alert-old-android-browser.is-show > .alert-old-android-browser__link:before {
    font-family: 'FontAwesome';
    content: "\f138";
    margin-right: 5px;
    color: #b09e71;
    display: inline-block;
}

