@charset "utf-8";
@font-face {
	font-display: swap;
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 400;
	src: url('/files/css/font/noto-sans-jp-v52-japanese-regular.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 500;
	src: url('/files/css/font/noto-sans-jp-v52-japanese-500.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 700;
	src: url('/files/css/font/noto-sans-jp-v52-japanese-700.woff2') format('woff2');
}
/* ******************************************************************

	--style.css--

	1. Style setting
		1-1. Base styles
		1-2. Structure styles
		1-3. Information Bar styles

	2. Layout setting
		2-1. Header styles
			2-1_1. SEARCH（検索ボックス）
		2-2. GlobalNavi styles
			2-2_1. SubNavi styles
			2-2_2. TitleBlock styles
		2-3. Main styles
		2-4. SideBar styles
		2-5. Footer styles
		2-6. Page styles
		
	98. AD setting（広告）

****************************************************************** */

/*==================================================================
	1. Base setting
===================================================================*/
/* ------------------------------------------------------------------
	1-1. Base styles
-------------------------------------------------------------------*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	/*line-height: 1.3;*/
	color: #333;
	min-width: 1240px;
	font-weight: 400;/* Noto Sans JP Regular */
}

a { color: #00418F; text-decoration: none; outline: none;}
a:hover { color: #0480ff;}

a.underline { text-decoration: underline;}
a.underline:hover { text-decoration: none;}

/* ------------------------------------------------------------------
	1-2. Structure styles
-------------------------------------------------------------------*/
.container {
	background: #F9F5F2;
	padding: 15px 0;
}
.block {
	padding: 30px 0;
}
.main {
	background: #FFF;
	border-radius: 8px;
	float: left;
	width: 690px;
	padding: 20px 15px;
}
.main.no_bg {
	background: none;
	border-radius: 0;
	padding: 0 !important;
}
.sidebar {
	background: #FFF;
	border-radius: 8px;
	float: right;
	width: 340px;
	padding: 20px;
}
.main_1col {
	background: #FFF;
	border-radius: 8px;
	width: 100%;
	padding: 20px 15px 0 15px;
	margin-bottom: 40px;
}
.wrapper {
	width: 1040px;
	margin: 0px auto;
}
.container > .wrapper:not(:first-child) {
	margin-top: 30px;
}
.container_wide .wrapper {
	width: 1240px;
}
.container_wide .main {
	width: 886px;
	padding: 20px;
}

/*==================================================================
	2. Layout setting
===================================================================*/

/* ------------------------------------------------------------------
	2-1. Header styles
-------------------------------------------------------------------*/
.header {
	background: #FFF;
	padding: 40px 0 25px;
}
.header .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 1200px;
	margin: 0 auto;
}
.logo img {
	max-height: 24px;
}

/* 天気・占い */
.header_parts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 30px;
}
.header_parts li {
	margin-right: 10px;
}
.header_parts li a {
	color: #737373;
}
.header_area {
	font-size: 13px;
	font-weight: 700;
}
.header_weather_icon span:first-child:after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f0da";
	margin: 0 5px;
	color: #D5D5D5;
	text-align: center;
}
.header_weather_icon img {
	height: 30px;

}
.header_weather_temperature {
	font-size: 12px;
	font-weight: 700;
}
.header_weather_temperature span:first-child {
	color: #E27961;
}
.header_weather_temperature span:last-child {
	color: #7EB8E5;
}
.header_weather {
	border-right: 1px solid #B1B1B1;
	padding: 0 10px 0 5px;
	text-align: center;
}
.header_fortune {
	text-align: center;
	font-size: 10px;
}
.header_fortune a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header_fortune_icon {
	margin-right: 5px;
}
.header_fortune_text span {
	font-size: 12px;
	font-weight: 500;
}

/* ナビアイコン */
.header_nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: auto;
}
.header_nav_item {
	width: 80px;
	text-align: center;
	line-height: 1;
}
.header_nav_item a {
	display: block;
}
.header_nav_title {
	display: inline-block;
	vertical-align: top;
	padding: 0 5px;
	margin-top: 5px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: -0.1em;
	color: #3362B5;
	position: relative;
	z-index: 1;
}
.header_nav_title:after {
	background: #DDF0F8;
	content: '';
	display: block;
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	height: 7px;
	border-radius: 50px;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
}
.header_nav_item a:hover .header_nav_title:after,
.header_nav_title.active:after {
	opacity: 1;
	visibility: visible;
}

/* お申し込み／ログインボタン */
.header_tools {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 20px;
}
.header_btn:not(:first-child) {
	margin-left: 10px;
}
.header_btn a {
	background: #F58220;
	border: 1px solid #F58220;
	border-radius: 4px;
	display: block;
	padding: 5px 20px;
	font-size: 12px;
	font-weight: 500;
	color: #FFF;
	position: relative;
	-webkit-transition: .3s;
	transition: .3s;
}
.header_btn a:hover {
	background: #FFF;
	border: 1px solid #F58220;
	color: #F58220;
}
.header_btn.login a {
	background: #FFF;
	border: 1px solid #8B6F65;
	color: #8B6F65;
}
.header_btn.login a:hover {
	background: #8B6F65;
	color: #FFF;
}

/* コースへの申し込み案内 */
#cource_guidance{
	display: none;
}

.display_when_bunbunapp{
	display: none;
}

.no_display_when_bunbunapp{
	display: none;
}

/* ------------------------------------------------------------------
	2-1_1. SEARCH（検索ボックス）
-------------------------------------------------------------------*/
.search_item {
	border: 1px solid #3362B5;
	border-radius: 2px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
input.search_text {
	background: #F1F7FB;
	border: none;
	width: 100%;
	padding: 5px;
	font-size: 12px;
}
.search_button {
	background: #FFF;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: 1px solid #3362B5;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 40px;
	flex: 0 0 40px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f002";
	color: #3362B5;
	font-size: 18px;
	cursor: pointer;
	height: 30px;
}

/* ------------------------------------------------------------------
	2-2. GlobalNavi styles
-------------------------------------------------------------------*/
.gnav {
	background: #FFF;
	border-bottom: 4px solid #DBD3C5;
}
.gnav .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 1200px;
	margin: 0 auto;
}
.gnav_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.gnav_item {
	text-align: center;
	font-weight: 700;
	line-height: 24px;
	position: relative;
}
.gnav_item::after {
	background: #D9D3C5;
	content: '';
	width: 1px;
	height: 16px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.gnav_item:first-child::after {
	display: none;
}
.gnav_item > a {
	border-radius: 6px 6px 0 0;
	display: block;
	width: 86px;
	padding: 8px 0;
	margin: 0 5px;
	color: #595959;
	position: relative;
}
.gnav_item:first-child a {
	margin: 0 5px 0 0;
}
.gnav_item.active > a {
	background: #5388E6;
	color: #FFF;
}
.gnav_item.active > a::after {
	background: #00418F;
	content: '';
	width: 86px;
	height: 4px;
	position: absolute;
	bottom: -4px;
	left: 0;
}
.gnav_item > a:hover {
	background: #5388E6;
	color: #FFF;
}
.gnav_item > a:hover::after{
	background: #00418F;
	content: '';
	width: 86px;
	height: 4px;
	position: absolute;
	bottom: -4px;
	left: 0;
}
.gnav_sub {
	background: #FFF;
	border-radius: 0 0 6px 6px;
	box-shadow: 0 6px 6px rgba(0,0,0,0.3);
	position: absolute;
	top: 44px;
	left: 5px;
	padding: 19px 24px;
	visibility: hidden;
	opacity: 0;
	z-index: 100;
	width: 340px;/* サブメニューの文字量によっては変更が必要 */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.gnav_sub a {
	color: #333;
}
.gnav_sub a:hover {
	color: #00418F;
	text-decoration: underline;
}
.gnav_item:hover .gnav_sub {
	visibility: visible;
	opacity: 1;
}
.gnav_sub li {
	text-align: left;
	width: calc( 100% / 2 );/* 並びを変更する場合はgnav_subのwidth変更してからここで分割数を指定する */
	padding: 5px 0;
	font-weight: 500;
}

/* ------------------------------------------------------------------
	2-2_1. SubNavi styles
-------------------------------------------------------------------*/
.sub_nav {
	background: #FFF;
	border-bottom: 1px solid #CCC;
	padding: 12px 0;
}
.sub_nav .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.sub_nav_wide .wrapper {
	width: 1200px;
}
.sub_nav_title {
	margin-right: 10px;
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
}
.sub_nav_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.sub_nav_list li {
	margin: 2px 1px;
}
.sub_nav_list a {
	background: #FFF;
	border-radius: 50px;
	padding: 0 9px;
	color: #000;
	line-height: 1.4;
}
.sub_nav_list li.active a,
.sub_nav_list a:hover {
	background: #5388E6;
	color: #FFF;
	font-weight: 700;
}

/* ------------------------------------------------------------------
	2-2_2. TitleBlock styles
-------------------------------------------------------------------*/
.title_block {
	background: #FFF;
	border-bottom: 1px solid #CCC;
	padding: 15px 0;
}
.title_block .wrapper {
	width: 1000px;
}

/* ------------------------------------------------------------------
	2-3. Main styles
-------------------------------------------------------------------*/
.contents_wrap {
	background: #FFF;
	border-radius: 10px;
	padding: 20px 15px;
	margin-bottom: 30px;
}
.container_wide .contents_wrap {
	padding: 20px;
}
.section {
	margin-bottom: 30px;
}
.section:last-child {
	margin-bottom: 0;
}
.section_wrap {
	padding: 0 15px;
}

/*-------------------------------*/
/*	カラムレイアウト
/*-------------------------------*/
.flex_col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

/* 2カラム */
.flex_col_2 {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flex_col_2 .flex_col_item {
	width: calc( ( 100% - 28px ) / 2 );
}
/* 3カラム */
.flex_col_3 .flex_col_item {
	margin-right: 28px;
	width: calc( ( 100% - 56px ) / 3 );
}
/* 4カラム */
.flex_col_4 .flex_col_item {
	margin-right: 28px;
	width: calc( ( 100% - 84px ) / 4 );
}
/* 5カラム */
.flex_col_5 .flex_col_item {
	margin-right: 25px;
	width: calc( ( 100% - 100px ) / 5 );
}

.flex_col_3 .flex_col_item:nth-child(3n),
.flex_col_4 .flex_col_item:nth-child(4n),
.flex_col_5 .flex_col_item:nth-child(5n) {
	margin-right: 0;
}

.flex_col_2 .post_item:nth-last-child(-n+2) {
    border-bottom: none;
    margin-bottom: 0;
}

/* ------------------------------------------------------------------
	2-4. SideBar styles
-------------------------------------------------------------------*/
.section_side {
	margin-bottom: 20px;
}
.section_side .scroll_area {
	padding-right: 8px;
	/*height: 240px;*/
  height: 356px;
	overflow-y: scroll;
}
.sidePr{
    margin-top: 20px;
}
.sidePrHead{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}
.sidePrList{
    border-top: 1px solid #e5e5e5;
}
.sidePrItem{
    border-bottom: 1px solid #e5e5e5;
}
.sidePrItem a{
    display: block;
    overflow: hidden;
    padding: 5px 0;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.sidePrItem a:hover{
    opacity: 0.7;
}
.sidePrItemImage{
    float: left;
    margin-right: 10px;
    font-size: 0;
    line-height: 0;
}
.sidePrItemTextHead{
    font-size: 14px;
    font-weight: bold;
}
.sidePrItemTextBody{
    font-size: 12px;
}

/* --------------------------------
	わたしのニュース
--------------------------------*/
.my_news_box {
	background: #FFF;
	border: 1px solid #3362B5;
	border-radius: 8px;
	padding: 12px 15px 0 15px;
}
.my_news_head {
	border-bottom: 2px solid #3362B5;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 12px;
	margin-bottom: 15px;
}
.my_news_title {
	font-size: 13px;
	font-weight: 700;
	color: #3362B5;
}
.my_news_text {
	font-size: 12px;
	color: #00418F;
}
.my_news_more {
	font-size: 10px;
	font-weight: 700;
}
.my_news_more a {
	background: #F4EDE1;
	border-radius: 50px;
	display: block;
	padding: 5px 10px;
	color: #5D503B;
	-webkit-transition: .3s;
	transition: .3s;
}
.my_news_more a:after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f054";
	margin-left: 5px;
	color: #3362B5;
	-webkit-transition: .3s;
	transition: .3s;
}
.my_news_more a:hover {
	background: #99877A;
	color: #FFF;
}
.my_news_more a:hover:after {
	color: #FFF;
}
.my_news_box .post_date {
	color: #595959;
}

/* 未ログイン時の切り替えパーツ */
.my_news_box.no_login {
	padding: 15px;
	text-align: center;
}
.my_news_box.no_login .my_news_title {
	margin-bottom: 5px;
	font-size: 20px;
}

/* ------------------------------------------------------------------
	2-5. Footer styles
-------------------------------------------------------------------*/
.footer {
	font-size: 14px;
}
.footer_section_01 {
	background: #F9F5F2;
	padding-top: 10px;
}
.footer_section_02 {
	background: #00418F;
	padding: 30px 0;
	margin: 0 auto;
	color: #FFF;
}
.fnav {
	width: 1200px;
	margin: 0 auto;
}
.footer_section_02 .fnav {
	border-bottom: 2px solid #7F90B5;
}
.fnav_item {
	padding-bottom: 20px;
}
.footer_section_01 .fnav_item:not(:first-child) {
	border-top: 2px solid #D4CCB8;
	padding: 20px 0;
}
.fnav_flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.fnav_col_01 {
	width: 230px;
}
.fnav_col_02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 970px;
}
.fnav_title {
	font-size: 14px;
	font-weight: 700;
	color: #534A46;
}
.footer_section_02 .fnav_title {
	color: #FFF;
}
.fnav_title a {
	color: inherit;
}
.fnav_title a:after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f054";
	margin-left: 10px;
	color: #00418F;
}
.fnav_site {
	font-size: 0;
}
.fnav_site li {
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 1.2;
}
.fnav_site a {
	color: inherit;
}
.fnav_site a:hover {
	text-decoration: underline;
}
.fnav_list {
	font-size: 0;
}
.fnav_list li {
	border-right: 1px solid #FFF;
	padding-right: 15px;
	margin: 0 15px 10px 0;
	display: inline-block;
	font-size: 12px;
	line-height: 1.2;
}
.fnav_list li:last-child {
	border: none;
}
.fnav_list a {
	color: inherit;
}
.fnav_list a:hover {
	text-decoration: underline;
}
.footer_text {
	padding: 25px 0 20px 0;
	font-size: 10px;
	text-align: center;
}
.copyright {
	text-align: center;
	font-size: 10px;
}

/*-------------------------------*/
/*	PAGETOP
/*-------------------------------*/
.page_top {
	position: fixed;
	bottom: 260px;
	right: 10px;
	z-index: 99;
	background: #333;
	border-radius: 5px;
	padding: 15px;
	color: #FFF;
	text-align: center;
	opacity: 0.8;
}
.page_top i {
	font-size: 20px;
}


/* ------------------------------------------------------------------
	2-6. Page styles
-------------------------------------------------------------------*/

/* ▼▼▼ここに各コーダーが別途作成したCSS内のスタイルをドッキングしていく▼▼▼ */
/* ------------------------------------
	404ページここから
------------------------------------*/
/* ------------------------------------
	404ページここまで
------------------------------------*/
/* --------------------------------
	トップニュース
--------------------------------*/
.section_top_main .post_list-type_thm_bg-l .post_thm {
	width: 400px;
	margin-right: 16px;
}
.section_top_main .post_list-type_thm_bg-l .post_thm_bg {
	padding-top: 56.25%;
}

/* --------------------------------
	注目の連載
--------------------------------*/
.series_head {
	border-top: 2px solid #3362B5;
	border-bottom: 2px solid #3362B5;
	padding: 15px;
	margin-bottom: 30px;
}
.series_head .post_list-type_thm_bg-l .post_item:only-child {
	border-bottom: none;
	padding-bottom: 15px;
	margin-bottom: 0;
}
.series_head .contents_btn_link a {
	border: 1px solid #FFF;
	color: #5D503B;
}
.series_head .contents_btn_link a:hover {
	background: #99877A;
	border: 1px solid #99877A;
	color: #FFF;
}
.series_head .contents_btn_link a:after {
	color: #679CDB;
}
.series_head .contents_btn_link a:hover:after {
	color: #FFF;
}

/* --------------------------------
	ビューティフル北海道
--------------------------------*/
.block_beautiful {
	/*padding: 30px 0;*/
	overflow: hidden;
}
.container_top .block_beautiful .wrapper {
	width: 1200px;
}
.beautiful_catch {
	color: #000;
}
.beautiful_catch:before {
	content: "";
	background: #292624;
	position: relative;
	top: -4px;
	margin-right: 10px;
	display: inline-block;
	width: 42px;
	height: 1px;
}

#photo_slide {
	padding: 0 20px;
	overflow: initial;
}
#photo_slide .post_item {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
	/* ▼ページ読み込み時に横に伸びる現象を回避するために記載▼ */
	width: 275px;
	margin-right: 20px;
}
#photo_slide .post_thm {
	margin: 0;
	position: relative;
}
#photo_slide .post_thm_fit img {
	width: 100%;
	height: 220px;
	/*object-fit: contain;*/
}
#photo_slide .post_thm_movie:before {
	background: url(../img/play.svg) 94% 10% no-repeat;
	-webkit-background-size: 15%;
	background-size: 15%;
}
#photo_slide .post_body {
	background: rgba(0,0,0,.5);
	border-radius: 0 0 5px 5px;
	padding: 10px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}
#photo_slide .post_title {
	font-size: 14px;
	color: #FFF;
	font-weight: 500;
}

/* 前ページ、次ページボタンのスタイル */
#photo_slide .swiper-button-prev,
#photo_slide .swiper-button-next {
	width: 30px;
	height: 30px;
	margin-top: -15px;
	outline: none;
}
#photo_slide .swiper-button-prev:after,
#photo_slide .swiper-button-next:after {
	display: none;
}
#photo_slide .swiper-button-next {
	background: url(../img/button_next.svg) no-repeat left center;
	background-size: 30px 30px;
	right: -40px;
}
#photo_slide .swiper-button-prev {
	background: url(../img/button_prev.svg) no-repeat left center;
	background-size: 30px 30px;
	left: -40px;
}

/* --------------------------------
	最新の連載記事
--------------------------------*/
.block_latest_post {
	margin-top: 30px;
}
.block_latest_post .wrapper {
	width: 1000px;
}
.block_latest_post .post_list-type_grid .post_item {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* ------------------------------------
	タグ系ここから
------------------------------------*/
.tag_info {
	border-bottom: 1px solid #D9D3C5;
	padding-bottom: 30px;
	margin-bottom: 25px;
}
.tag_thm {
	padding: 30px 0;
	text-align: center;
}
.tag_name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.tag_name h1 {
	font-size: 20px;
	font-weight: 700;
	color: #000;
}
.tag_exp {
	margin-top: 5px;
}
.tag_btn {
	margin-left: 15px;
}
.tag_btn.hidden {
	display: none;
}
.tag_btn a {
	background: #FFF;
	border: 1px solid #3362B5;
	border-radius: 4px;
	padding: 2px 10px;
	display: block;
	font-size: 13px;
	color: #3362B5;
}
.tag_btn.active a {
	background: #1B408A;
	border: 1px solid #1B408A;
	color: #FFF;
}
.tag_btn a:hover {
	background: #3362B5;
	border: 1px solid #3362B5;
	color: #FFF;
}

/* ------------------------------------
	タグ系ここまで
------------------------------------*/

/* ------------------------------------
	地域ページここから
------------------------------------*/
.neighbors_town {
    font-weight: bold;
    font-size: 15px;
    border-bottom: dotted 2px #aaaaaa;
}
/* ------------------------------------
	地域ページここまで
------------------------------------*/

/* ------------------------------------
	○○○ここから
------------------------------------*/
/* ------------------------------------
	○○○ここまで
------------------------------------*/

/* ▲▲▲ここに各コーダーが別途作成したCSS内のスタイルをドッキングしていく▲▲▲ */








/*==================================================================
	98. AD setting（広告）
===================================================================*/
.ad_space {
	text-align: center;
}
.ad_space_side {
	margin-bottom: 10px;
}



/* pageError */
.pageError{
    min-width: 600px;
    margin: 40px auto 0;
    padding: 0 0;
}
.pageErrorHead{
    text-align: center;
    color: #ff0000;
    font-weight: bold;
    font-size: 24px;
}
.pageErrorHead.pageErrorHeadBlue{
    color: #0a4b9b;
}
.pageErrorBody{
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
}
.pageErrorLinkBlock{
    margin-top: 40px;
    text-align: center;
}
.pageErrorLink{
    font-size: 18px;
}
.pageErrorLink:hover{
    text-decoration: underline;
}
.pageErrorBottonBlock{
    margin: 40px auto 0;
    text-align: center;
}
.pageErrorBottonBlock .button{
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
}
