/* ---------------------------------------------------------------
start COMMON CSS
--------------------------------------------------------------- */

@font-face {
	font-family: 'Noto Serif JP';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: local("Noto Serif JP"),
		url(../fonts/NotoSerifJP-Light.woff2) format('woff2'),
		url(../fonts/NotoSerifJP-Light.woff) format('woff'),
		url(../fonts/NotoSerifJP-Light.otf) format('opentype');
}

@font-face {
	font-family: 'Noto Serif JP';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local("Noto Serif JP"),
		url(../fonts/NotoSerifJP-Regular.woff2) format('woff2'),
		url(../fonts/NotoSerifJP-Regular.woff) format('woff'),
		url(../fonts/NotoSerifJP-Regular.otf) format('opentype');
}
@font-face {
	font-family: 'Noto Serif JP';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: local("Noto Serif JP"),
		url(../fonts/NotoSerifJP-Medium.woff2) format('woff2'),
		url(../fonts/NotoSerifJP-Medium.woff) format('woff'),
		url(../fonts/NotoSerifJP-Medium.otf) format('opentype');
}


* {
	box-sizing : border-box ;
}

body {
	width: 100%;
	margin: 0;
	padding: 0;
	color: #000;
	font-family: 'Noto Serif JP', serif;
	font-size: 15px;
	line-height: 1.85;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
	z-index: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

a {
	outline: none;
	color: #0096b0;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
	cursor: pointer;
}

button {
	outline: none;
}

img {
	vertical-align: bottom;
}

p {
	margin: 0 0 15px 0;
	padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0px;
}

.aligncenter {
	text-align: center;
}

.alignright {
	text-align: right;
}

.alignjust {
	text-align: justify;
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}

.w100{
	width: 100%;
}

.fleft {
	float: left;
}

.fright {
	float: right;
}

.red {
	color: #e60012;
}

.orange {
	color: #ed7200;
}

.under {
	text-decoration: underline;
}

.iblock {
	display: inline-block;
}

.indent1 {
	padding-left: 1em;
	text-indent: -1em;
}

.indent1 * {
	text-indent: 0;
}

#wrap {
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}



/* --------------- header --------------- */

header {
	width: 100%;
	height: 60px;
	margin: 0;
	padding: 0;
	background-color: transparent;
	box-shadow: 1px 1px 7px -4px transparent;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	transition: .2s;
}

header.scrolled {
	background-color: #fff;
	box-shadow: 1px 1px 7px -4px #000;
}

header.subpage {
	background-color: #fff;
}

.inner_header {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 0 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo_header {
	max-width: 258px;
}

.logo_header a {
	line-height: 1;
	display: block;
	transition: .2s;
}

.logo_header a img {
	width: 100%;
	display: block;
}

.nav_header {
	margin: 0 0 0 auto;
	padding: 0;
}

.nav_header ul {
	margin: 0 20px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
}

.nav_header ul > li {
	margin: 0;
	padding: 0 20px;
	position: relative;
	z-index: 0;
}

.nav_header ul > li > a {
	margin: 0;
	padding: 0 3px;
	color: #000;
	text-decoration: none;
	position: relative;
	z-index: 0;
	transition: .2s;
}

.nav_header ul > li > a::after {
	content: "";
	width: 0%;
	height: 2px;
	background-color: #ed743c;
	position: absolute;
	bottom: -6px;
	left: 0;
	transition: .4s;
}

.nav_header ul > li > a.insta{
	padding: 0 0 0 20px;
}

.nav_header ul > li > a.insta::before{
	content: "";
	width: 17px;
	height: 17px;
	background-image: url(../img/icon_instagram_black.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	top: 4px;
	left: 0;
}

.nav_header > ul > li > a.insta:hover::before{
	background-image: url(../img/icon_instagram_orange.svg);
}

.btn_header_contact {
	width: 160px;
	height: 100%;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	background-color: #ed743c;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .2s;
}

.btn_header_contact img {
	width: 26px;
	margin: 0 10px 0 0;
	display: inline-block;
}

#menubtn {
	display: none;
}


/* --------------- footer --------------- */

footer {
	margin: 0;
	padding: 50px 0 35px;
	background-color: #fff;
}

.inner_footer {
	width: 94%;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.logo_footer {
	width: 90%;
	max-width: 292px;
	margin: 0 auto 12px;
	text-align: center;
	display: block;
	transition: .2s;
}

.logo_footer img {
	width: 100%;
}

footer address {
	margin: 0 0 3px;
	text-align: center;
	font-style: normal;
	display: block;
}

.tel_footer {
	margin: 0 auto 22px;
	padding: 0 0 0 24px;
	color: #000;
	font-size: 24px;
	line-height: 1.2;
	text-decoration: none;
	background-image: url(../img/icon_tel.svg);
	background-repeat: no-repeat;
	background-size: 19px auto;
	background-position: left center;
	display: inline-block;
	transition: .2s;
}

.col_footer_link {
	width: 100%;
	max-width: 1116px;
	margin: 0 auto;
	padding: 30px 0 0 0;
	border-top: solid 1px #000;
	display: flex;
	justify-content: center;
}

.col_footer_link ul {
	margin: 0;
	padding: 0;
	text-align: left;
	list-style: none;
	line-height: 1.3;
}

.col_footer_link ul li {
	margin: 0;
	padding: 0;
}

.col_footer_link ul li a {
	color: #322d2b;
	font-weight: 700;
	text-decoration: none;
}

.col_footer_link ul li a.insta{
	padding: 0 0 0 18px;
	position: relative;
}

.col_footer_link ul li a.insta::before{
	content: "";
	width: 14px;
	height: 14px;
	background-image: url(../img/icon_instagram.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	top: 4px;
	left: 0;
}

.col_footer_link ul.left {
	width: 400px;
	margin-right: 90px;
	display: flex;
	flex-wrap: wrap;
}

.col_footer_link ul.left li:not(.sub) {
	width: 100%;
}

.col_footer_link ul.left li.sub {
	width: 195px;
	margin-left: 5px;
}

.col_footer_link ul.left li.sub a {
	padding-left: 15px;
	font-weight: 500;
	position: relative;
	z-index: 0;
}

.col_footer_link ul.left li.sub a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 1px #322d2b;
	border-right: solid 1px #322d2b;
	position: absolute;
	top: 7px;
	left: 0;
	transform: rotate(45deg);
}

.col_footer_link ul.right {
	width: 48%;
	padding: 35px 0 0;
	display: flex;
	flex-wrap: wrap;
}
/*
.col_footer_right {
	width: 48%;
}
*/

.footer_bnr {
	max-width: 792px;
	width: 100%;
	padding: 30px 0 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.footer_bnr .bnr {
	margin: 0 15px 20px 15px;
	transition: .2s;
}



/*
.footer_bnr_sp {
	display: none;
}
*/
.col_footer_link ul.right li {
	width: 33.3%;
	margin: 0 0 28px 0;
}

.copyright {
	padding: 13px 0 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	line-height: 1.2;
	background-color: #000;
}

.pagetop {
	width: 58px;
	height: 58px;
	margin: 0;
	padding: 0;
	text-indent: -9999px;
	background-color: rgba(35,24,21,0.4);
	border-radius: 50%;
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 5;
	cursor: pointer;
	transition: background-color .3s;
	display: none;
}

.pagetop:before {
	content: "";
	width: 16px;
	height: 16px;
	margin: 0;
	padding: 0;
	border-left: solid 1.5px #fff;
	border-top: solid 1.5px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: calc(50% - 4px);
	left: calc(50% - 8px);
	transition: all .3s;
}


/* --------------- reCAPTCHAロゴ位置調整 --------------- */
.grecaptcha-badge {
	bottom: 90px!important;
}




/* --------------- common --------------- */


.fade-in {
	opacity: 0;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	position: relative;
}

.scroll-in,
.fade-in.active {
	opacity : 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.delay01 {
	-webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.delay02 {
	-webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.delay03 {
	-webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.delay04 {
	-webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.delay05 {
	-webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.goTop10 {
	-webkit-transform: translate3d(0,10px,0);
	transform: translate3d(0,10px,0);
}
.goTop15 {
	-webkit-transform: translate3d(0,15px,0);
	transform: translate3d(0,15px,0);
}
.goTop30 {
	-webkit-transform: translate3d(0,30px,0);
	transform: translate3d(0,30px,0);
}
.goLeft30 {
	-webkit-transform: translate3d(30px,0,0);
	transform: translate3d(30px,0,0);
}
.goRight30 {
	-webkit-transform: translate3d(-30px,0,0);
	transform: translate3d(-30px,0,0);
}


/* --------------- subpage --------------- */

.bg_fixed {
	width: 100%;
	height: 625px;
	margin: 0 0 60px;
	padding: 0;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 0 0 150px 0;
}

.col_pagettl {
	width: 100%;
	height: 230px;
	padding: 70px 0 0 0;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.col_pagettl h2 {
	margin: 0;
	padding: 0;
	font-size: 30px;
	font-weight: 500;
	text-align: center;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
}

.col_pagettl h2 img {
	margin: 5px auto 0;
	display: block;
}


/* ---------------------------------------------------------------
	start max 1200px
--------------------------------------------------------------- */

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

/* --------------- header --------------- */


}

/* ---------------------------------------------------------------
	end max 1200px
--------------------------------------------------------------- */
/* ---------------------------------------------------------------
	start max 1155px
--------------------------------------------------------------- */

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

/* --------------- header --------------- */

	.btn_header_contact {
		width: 64px;
	}

	.btn_header_contact img {
		width: 35px;
		margin: 0;
	}

	.btn_header_contact .txt {
		display: none;
	}

	.nav_header > ul {
		margin-right: 10px;
	}

	.nav_header > ul > li {
		padding: 0 10px;
	}
}

/* ---------------------------------------------------------------
	end max 1155px
--------------------------------------------------------------- */

/* ---------------------------------------------------------------
	start min 1034px
--------------------------------------------------------------- */

@media screen and ( min-width: 1034px ) {

	.pc_none {
		display: none;
	}


}

/* ---------------------------------------------------------------
	end min 1034px
--------------------------------------------------------------- */

/* ---------------------------------------------------------------
	start max 1033px
--------------------------------------------------------------- */

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




/* --------------- footer --------------- */

	.col_footer_link ul.left {
		margin-right: 5%;
	}
/*
	 .col_footer_right {
		width: 38%;
	}
*/
	.col_footer_link ul.right {
		width: 38%;
	}

	#overlay {
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0);
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 10;
		transition: all .4s;
		visibility: hidden;
	}

	.open #overlay {
		background: rgba(0,0,0,0.6);
		visibility: visible;
	}
}

/* ---------------------------------------------------------------
	end max 1033px
--------------------------------------------------------------- */

/* ---------------------------------------------------------------
	start max 930px
--------------------------------------------------------------- */

@media screen and ( max-width: 930px ) {
	.nav_header > ul > li{padding: 0 5px;}
	.nav_header ul > li > a{font-size: 13px;}
}


/* ---------------------------------------------------------------
	end max 930px
--------------------------------------------------------------- */


/* ---------------------------------------------------------------
	start min 851px
--------------------------------------------------------------- */

@media print,screen and ( min-width: 851px ) {

	.submenu {
		width: 260px;
		margin: 0;
		padding: 30px 0 0 0;
		position: absolute;
		top: 20px;
		left: calc(50% - 130px);
		visibility: hidden;
		opacity: 0;
		transition: all .2s ease-in-out 0s;
	}
	
	.nav_header ul li:hover .submenu {
		visibility: visible;
		opacity: 1;
	}
	
	.submenu .inner {
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		font-size: 15px;
		font-weight: 400;
		text-decoration: none;
		background-color: #fff;
		border: solid 2px #ed743c;
		position: relative;
		z-index: 0;
		box-shadow: 3px 3px 6px -2px #131313;
	}
	
	.submenu .inner a {
		margin: 0;
		padding: 14px 15px 14px 15px;
		text-align: left;
		line-height: 1.25;
		color: #000;
		font-weight: 500;
		text-decoration: none;
		border-bottom: dashed 1px #ed743c;
		position: relative;
		z-index: 0;
		transition: background-color .2s;
		display: block;
	}
	
	.submenu .inner a:hover {
		background-color: #fff4ef;
	}
	
	.submenu .inner:before {
		content: "";
		width: 0;
		height: 0;
		margin: auto;
		border-style: solid;
		border-width: 0 9px 9px 9px;
		border-color: transparent transparent #ed743c transparent;
		position: absolute;
		top: -11px;
		left: 0;
		right: 0;
		transition: all .2s;
	}
	
	.submenu .inner:after {
		content: "";
		width: 0;
		height: 0;
		margin: auto;
		border-style: solid;
		border-width: 0 8px 8px 8px;
		border-color: transparent transparent #fff transparent;
		position: absolute;
		top: -8px;
		left: 0;
		right: 0;
		transition: all .2s;
	}
	
	.submenu .inner:hover:after {
		border-color: transparent transparent #fff4ef transparent;
	}
	
	.submenu .inner a:after {
		content: "";
		width: 8px;
		height: 8px;
		border-top: solid 2px #ed743c;
		border-right: solid 2px #ed743c;
		transform: rotate(45deg);
		position: absolute;
		top: calc(50% - 4px);
		right: 13px;
	}
	
	.submenu .inner a:last-of-type {
		border-bottom: none;
	}

}

/* ---------------------------------------------------------------
	end min 851px
--------------------------------------------------------------- */
/* ---------------------------------------------------------------
	start max 850px
--------------------------------------------------------------- */

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

/* --------------- header --------------- */

	.open header {
		background-color: #fff;
	}

	.nav_header	{
		width: 100%;
		max-width: 380px;
		height: calc(100vh - 60px);
		padding-bottom: 60px;
		background-color: #fff;
		position: fixed;
		top: 60px;
		right: 0;
		display: none;
		overflow: auto;
	}

	.nav_header ul {
		width: 100%;
		margin: 0;
		display: block;
	}

	.nav_header ul li {
		width: 100%;
		padding: 0;
		border-bottom: solid 1px #000;
	}

	.nav_header ul li:first-of-type {
		border-top: solid 1px #000;
	}

	.nav_header ul li > a {
		padding: 12px 20px;
		font-weight: 500;
		display: block;
		font-size: 15px;
	}
	
	.nav_header ul > li > a.insta{
		padding: 12px 20px 12px 48px;
		font-weight: 500;
		display: block;
		font-size: 15px;
	}
	
	.nav_header ul li > a::after {
		content: none;
	}

	.nav_header ul li:not(.trigger) > a::before,
	.submenu a::after {
		content: "";
		width: 10px;
		height: 10px;
		border-top: solid 2px #ed743c;
		border-right: solid 2px #ed743c;
		position: absolute;
		top: calc(50% - 5px);
		right: 14px;
		transform: rotate(45deg);
	}

	.nav_header ul li.trigger > a:before,
	.nav_header ul li.trigger > a:after {
		content: "";
		width: 17px;
		height: 2px;
		background-color: #ed743c;
		position: absolute;
		top: 26px;
		right: 10px;
		transition: all .3s;
	}
	
	.nav_header ul li.trigger > a:before {
		left: auto;
	}

	.nav_header ul li.trigger > a:after {
		transform: rotate(90deg);
		bottom: auto;
		left: auto;
	}

	.nav_header ul li.trigger.open > a:after {
		transform: rotate(180deg);
	}
	
	.nav_header ul > li > a.insta::before{
		width: 20px;
		height: 20px;
		transform: rotate(0);
		border-top: none;
        border-right: none;
        background-image: url(../img/icon_instagram.svg);
        right: auto;
        top: 17px;
        left: 20px;
	}
	
	.submenu {
		width: 100%;
	}

	.submenu a {
		padding: 12px 25px;
		color: #000;
		font-weight: 500;
		text-decoration: none;
		border-bottom: dashed 1px #000;
		display: block;
		position: relative;
		z-index: 0;
	}

	.submenu a:first-of-type {
		border-top: dashed 1px #000;
	}

	.submenu a:last-of-type {
		border-bottom: none;
	}

	.btn_header_contact {
		width: 60px;
		margin-left: auto;
		flex-shrink: 0;
	}

	.btn_header_contact img {
		width: 37px;
	}
	

	#menubtn {
		width: 60px;
		height: 100%;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.2;
		text-align: center;
		display: block;
		position: relative;
		z-index: 2;
		transition: .2s;
		cursor: pointer;
		flex-shrink: 0;
	}

	#menubtn .btn {
		width: 36px;
		height: 100%;
		margin: 0 auto;
		padding: 0;
		position: relative;
		z-index: 0;
	}

	#menubtn .btn span {
		width: 100%;
		height: 2px;
		margin: auto;
		padding: 0;
		background-color: #000;
		display: inline-block;
		transition: all .4s;
		-moz-transition: all .4s;
		-webkit-transition: all .4s;
		position: absolute;
		left: 0;
		right: 0;
	}

	#menubtn span:nth-child(1) {
		top: calc(100% - 42px);
	}

	#menubtn span:nth-child(2) {
		top: calc(100% - 30px);
	}

	#menubtn span:nth-child(3) {
		top: calc(100% - 18px);
	}

	#menubtn.active span:nth-of-type(1) {
		width: 96%;
		transform: translateY(20px) rotate(-45deg);
		top: calc(100% - 50px);
	}

	#menubtn.active span:nth-of-type(2) {
		opacity: 0;
	}

	#menubtn.active span:nth-of-type(3) {
		width: 96%;
		transform: translateY(-20px) rotate(45deg);
		top: calc(100% - 10px);
	}


/* --------------- footer --------------- */

	footer {
		padding: 40px 0 35px;
	}

	.col_footer_link {
		display: block;
	}

	.col_footer_link ul.left {
		width: 100%;
		max-width: 600px;
		margin: 0 auto 15px;
		padding: 0;
		justify-content: center;
	}

	.col_footer_link ul.left li {
		margin-bottom: 12px;
	}

/*
	.col_footer_right {
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}
*/
	.col_footer_link ul.right {
		width: 100%;
		max-width: 660px;
		margin: 0 auto;
		padding: 10px 0 0;
		justify-content: center;
	}

	.col_footer_link ul.right li {
		width: auto;
		margin-right: 7%;
		margin-bottom: 0;
	}

	.col_footer_link ul.right li:last-of-type {
		margin-right: 0;
	}

	.footer_bnr {
		padding: 40px 0 0;
	}



}

/* ---------------------------------------------------------------
end max 850px
--------------------------------------------------------------- */

/* ---------------------------------------------------------------
	start min 701px
--------------------------------------------------------------- */

@media print,screen and ( min-width: 701px ) {

	img {
		image-rendering: -webkit-optimize-contrast;
	}

	.tab_none {
		display: none;
	}

	.bg_fixed {
		background-size: cover;
		background-attachment: fixed;
	}


/* --------------- header --------------- */

	.logo_header a:hover {
		opacity: 0.75;
	}

	.nav_header > ul > li > a:hover {
		color: #ed743c;
	}

	.nav_header > ul > li > a:hover:after {
		width: 100%;
	}

	.btn_header_contact:hover {
		background-color: #dd500f;
	}

/* --------------- footer --------------- */

	.logo_footer:hover,
	.tel_footer:hover {
		opacity: 0.75;
	}

	.col_footer_link ul li a:hover {
		text-decoration: underline;
	}

	.pagetop:hover {
		background-color: rgba(35,24,21,0.7);
	}
	
	.footer_bnr .bnr:hover {
		opacity: 0.75;
	}

}

/* ---------------------------------------------------------------
	end min 701px
--------------------------------------------------------------- */

/* ---------------------------------------------------------------
	start max 700px
--------------------------------------------------------------- */

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


	.sp_none {
		display: none;
	}


	/* --------------- header --------------- */

	.inner_header {
		padding-left: 3%;
	}

	.nav_header	{
		max-width: 280px;
	}



	/* --------------- footer --------------- */

	footer {
		padding: 40px 0 25px;
	}

	.inner_footer {
		width: 90%;
	}

	.col_footer_link {
		display: none;
	}
	
	.footer_bnr_sp {
		width: 100%;
		max-width: 234px;
		margin: 0 auto;
		padding: 20px 0 0;
		display: block;
	}

	.footer_bnr_sp .bnr {
		margin: 0 0 15px;
	}

	footer address {
		margin-bottom: 6px;
	}

	.tel_footer {
		margin-bottom: 0;
	}

	.copyright {
		font-size: 13px;
	}

	.pagetop {
		width: 50px;
		height: 50px;
	}

	.pagetop:before {
		width: 12px;
		height: 12px;
		top: calc(50% - 4px);
		left: calc(50% - 6px);
	}



	/* --------------- subpage --------------- */

	
	.bg_fixed {
		height: 100vw;
		border-radius: 0 0 50px 0;
		background-size: 100%;
	}

	.col_pagettl {
		height: 180px;
		padding-top: 60px;
	}

	.col_pagettl h2 {
		font-size: 27px;
	}

}

/* ---------------------------------------------------------------
	end max 700px
--------------------------------------------------------------- */

/* ---------------------------------------------------------------
	start max 450px
--------------------------------------------------------------- */

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


/* --------------- header --------------- */

	.logo_header {
		width: 60%;
	}


/* --------------- footer --------------- */

	.footer_bnr {
		padding: 30px 0 0;
	}


/* --------------- common sub --------------- */

	.bg_fixed {
		margin: 0 0 35px;
	}


}

/* ---------------------------------------------------------------
	end max 450px
--------------------------------------------------------------- */