@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&family=Noto+Serif+JP:wght@100;300;400;500;600;700;900&display=swap');

body {
	color: #333;
	background-color: #FFF;
	font-size: 16px;
	line-height: 1.875;
	font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	outline: none;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	min-width: 1030px;
	position: relative;
}

a {
	transition-property: background, background-color, color, opacity;
	transition-duration: 0.5s;
}

.inner {
	width: 100%;
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 15px;
}

.vis-sp,
.vis-tb {
	display: none;
}

.cmn_btn {
	margin-top: 60px;
	text-align: center;
}

.cmn_btn a {
	display: inline-block;
	color: #FFF;
	background: #9B4E15;
	border: 2px solid #9B4E15;
	padding: 18px 95px;
	line-height: 1;
	font-weight: bold;
}

.cmn_btn a:hover {
	color: #9B4E15;
	background: #FFF;
}

.cmn_pagettl {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	position: relative;
	line-height: 1;
	padding-bottom: 30px;
}

html.IE .cmn_pagettl {
	padding-top: 10px;
}

.cmn_pagettl::after {
	position: absolute;
	content: "";
	width: 120px;
	height: 2px;
	background: #333;
	bottom: 0;
	left: 50%;
	margin-left: -60px;
}

.cmn_pagewrap {
	max-width: 1200px;
	margin: 85px auto 130px;
}

/* ヘッダー・グロナビ */
.head {
	position: fixed;
	min-width: 1030px;
	width: 100%;
	z-index: 30;
	background: #fff;
	padding: 25px 0;
}

.head_wrap {
	display: flex;
	justify-content: space-between;
}

.head_logo {
	display: inline-block;
}

.head_logo a {
	display: block;
}

.head_news {
	display: flex;
	align-items: center;
	margin-right: 150px;
}

.head_news_ttl {
	font-size: 16px;
	font-weight: bold;
}

.head_news_cts {
	width: 400px;
}

.head_news_cts p.-no_post {
	margin-left: 24px;
}

.head_news a {
	display: flex;
	align-items: center;
	margin-left: 24px;
}

.head_news a time {
	width: 85px;
}

.head_news a em {
	/* margin-left: 0.5em; */
	/* width: calc(100% - 85px); */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gnav_btn {
	position: absolute;
	z-index: 40;
	overflow: hidden;
	top: 0;
	right: 0;
	width: 160px;
	height: 160px;
	user-select: none;
	/* CSS3 */
	-moz-user-select: none;
	/* Firefox */
	-webkit-user-select: none;
	/* Safari、Chromeなど */
	-ms-user-select: none;
	/* IE10かららしい */
	transition: all .3s;
}

.gnav_btn.-open {
	width: 100vw;
	min-width: 1030px;
	height: 100vh;
}

.gnav_btn_inner {
	position: absolute;
	z-index: 50;
	top: 0;
	right: 0;
	-webkit-transform: translate(40px, -40px);
	transform: translate(40px, -40px);
	background: #9B4E15;
	width: 200px;
	height: 200px;
	border-radius: 100% 0% 100% 100%;
	cursor: pointer;
	transition: all .3s;
}

.gnav_btn.-open .gnav_btn_inner {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	width: 100%;
	height: 100%;
	border-radius: 0% 0% 0% 0%;
	transition: all .3s;
}

.gnav_btn_cts {
	position: absolute;
	z-index: 40;
	width: 54px;
	height: 54px;
	top: 50px;
	right: 40px;
	overflow: hidden;
	cursor: pointer;
}

.gnav_btn_cts span {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	content: "";
	height: 2px;
	width: 34px;
	background: #FFF;
	transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.gnav_btn_cts span:first-child {
	top: 0;
}

.gnav_btn_cts span:nth-child(2) {
	top: 20%;
	width: 21px;
}

.gnav_btn_cts span:nth-child(3) {
	top: 40%;
}

.gnav_btn_cts p {
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: 16px;
	text-align: center;
	color: #FFF;
}

.gnav {
	position: fixed;
	z-index: 70;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 30px 20px;
	background: #9B4E15;
	overflow: scroll;
	display: none;
	user-select: none;
	/* CSS3 */
	-moz-user-select: none;
	/* Firefox */
	-webkit-user-select: none;
	/* Safari、Chromeなど */
	-ms-user-select: none;
	/* IE10かららしい */
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.gnav::-webkit-scrollbar {
	display: none;
}

.gnav_close {
	position: absolute;
	z-index: 80;
	width: 54px;
	height: 54px;
	text-align: center;
	top: 50px;
	right: 40px;
	overflow: hidden;
	cursor: pointer;
}

.gnav_close span {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	content: "";
	height: 2px;
	width: 34px;
	background: #FFF;
	transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.gnav_close span:first-child {
	top: 0;
}

.gnav_close span:nth-child(2) {
	top: 20%;
}

.gnav_close span:first-child {
	-webkit-transform: translate(-16px, 12px) rotate(-135deg);
	transform: translate(-16px, 12px) rotate(-135deg);
	-webkit-transform-origin: center;
	transform-origin: center;
}

.gnav_close span:nth-child(2) {
	-webkit-transform: translate(-16px, 0px) rotate(135deg);
	transform: translate(-16px, 0px) rotate(135deg);
	-webkit-transform-origin: center;
	transform-origin: center;
}

.gnav_close p {
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: 16px;
	text-align: center;
	color: #FFF;
}

.gnav_cts {
	margin: 0 auto;
	line-height: 1;
	max-width: 1000px;
	width: 100%;
	display: block;
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
}

.gnav_cts * {
	line-height: inherit;
	font-weight: inherit;
	box-sizing: border-box;
	position: relative;
}

.gnav_cts *::before,
.gnav_cts *::after {
	box-sizing: border-box;
	font-family: icomoon;
}

.gnav_cts a {}

.gnav_logo {
	margin-bottom: 90px;
}

.gnav_logo a:hover {
	opacity: 0.5;
}

.gnav_rowsec {
	margin-bottom: 35px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
}

.gnav_rowsec:last-child {
	margin-bottom: 0;
}

.gnav_head,
.gnav_contact {
	align-items: center;
}

.gnav_main {
	margin-bottom: 60px;
	justify-content: space-between;
}

.gnav_main>.gnav_list {
	width: 30%;
}

.gnav_list {}

.gnav_list.-pctop {
	min-width: 100px;
}

.gnav_list>li {
	margin-top: 25px;
}

.gnav_list>li:first-child {
	margin-top: 0;
}

.gnav_list a {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.gnav_list a:hover {
	opacity: 0.5;
}

.gnav_list>li>a::before,
.gnav_list>li>p>a::before {
	content: "";
	width: 0;
	height: 0;
	border-width: 0.2em 0.6em 0.2em 0.4em;
	border-style: solid;
	border-color: transparent transparent transparent #ffffff;
	display: block;
	transition: border-width 0.5s;
}

.gnav_list>li>a:hover::before,
.gnav_list>li>p>a:hover::before {
	border-width: 0.3em 0.4em 0.3em 0.6em;
}

.gnav_sublist_head {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}

.gnav_sublist_head::after {
	content: "\e900";
	margin-left: 0.5em;
	display: none;
}

.gnav_sublist_head.-open::after {
	content: "\e901";
}

.gnav_sublist {
	margin-top: 25px;
	padding-left: 1em;
}

.gnav_sublist>li {
	margin-top: 20px;
}

.gnav_sublist>li:first-child {
	margin-top: 0;
}

.gnav_sublist a::before {
	content: "";
	width: 1em;
	height: 1px;
	padding: 0 0.2em;
	background-color: #ffffff;
	background-clip: content-box;
	display: block;
}

.gnav_sublist a:hover::before {
	height: 2px;
}

.gnav_sublist a[target="_blank"]::after {
	content: "";
	margin-left: 5px;
	height: 10px;
	width: 13px;
	background-color: #ffffff;
	display: inline-block;
	-webkit-mask: url("/common/img/path-blank.svg");
	mask: url("/common/img/path-blank.svg");
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	vertical-align: middle;
}

.gnav_row {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}

.gnav_col {
	max-width: 320px;
	width: 30%;
	flex: none;
	padding: 0 10px;
}

.gnav_col a {
	width: 100%;
	height: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border: 2px solid #fff;
	border-radius: 25px;
}

.gnav_col a.-color {
	background-color: #FFF;
	color: #9B4E15;
}

.gnav_col a:hover {
	background-color: #FFF;
	color: #9B4E15;
}

.gnav_col a.-color:hover {
	background-color: #9B4E15;
	color: #FFF;
}

.gnav_col a.-color::before {
	content: "";
	width: 0;
	height: 0;
	border-width: 0.2em 0.6em 0.2em 0.4em;
	border-style: solid;
	border-color: transparent transparent transparent #9B4E15;
	display: block;
	transition: border 0.5s;
}

.gnav_col a.-color:hover::before {
	border-width: 0.3em 0.4em 0.3em 0.6em;
	border-color: transparent transparent transparent #FFF;
}

.gnav_col.-tel a::before {
	content: "\e906";
	margin-right: 0.5em;
}

.gnav_col.-form a::before {
	content: "\e905";
	margin-right: 0.5em;
}

.gnav_sns {
	width: 30%;
	margin-left: auto;
}

.gnav_sns li {
	margin-top: 15px;
}

.gnav_sns li:first-child {
	margin-top: 0;
}

.gnav_sns a {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.gnav_sns a:hover {
	opacity: 0.5;
}

.gnav_sns a::before {
	display: block;
	margin-right: 0.5em;
}

.gnav_sns a.-inst::before {
	content: "\e902";
}

.gnav_sns a.-face::before {
	content: "\e907";
}

.pbody {
	padding-top: 80px;
	overflow: hidden;
}

.mainimage {
	height: 500px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.cmn_intro {
	padding: 60px 0 50px;
}

.cmn_intro_ttl {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	padding-bottom: 32px;
	position: relative;
}

.cmn_intro_ttl::after {
	position: absolute;
	content: "";
	width: 120px;
	height: 2px;
	background: #333;
	bottom: 0;
	left: 50%;
	margin-left: -60px;
}

.cmn_intro_catch {
	margin-top: 32px;
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
}

.cmn_intro_txt {
	margin: 45px auto 0;
	max-width: 710px;
	font-size: 16px;
	line-height: 1.875;
}

/* 梶間幸建の家づくりメニュー */
.menu {
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	padding: 44px 0;
	max-width: 1200px;
	margin: 70px auto 0;
}

.menu_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.menu_list a {
	width: 24.2%;
	text-align: center;
	color: #9B4E15;
	border: 1px solid #9B4E15;
	padding: 20px;
	font-size: 16px;
	line-height: 1.4;
	transition: color 0.3s, background 0.3s, box-shadow 0.3s;
}

.menu_list a:hover,
body.-index .menu_list a.-index,
body.-method .menu_list a.-method,
body.-echizen .menu_list a.-echizen,
body.-activity .menu_list a.-activity {
	color: #FFF;
	background: #9B4E15;
	box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.15);
}

.contact_bg {}

.contact_cts {
	color: #FFF;
	height: 100%;
	padding: 85px;
	text-align: center;
	position: relative;
	z-index: 0;
	background-image: url(/common/img/bg-contact.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.contact_cts::before {
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(0, 0, 0, 0.72);
}

.contact_ttl {
	display: inline-block;
	font-size: 34px;
	font-weight: bold;
	line-height: 1.5;
	padding-bottom: 5px;
	border-bottom: 4px solid #ffd800;
}

.contact_txt {
	font-size: 16px;
	margin-top: 30px;
}

.contact_link {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 850px;
	margin: 30px auto 0;
}

.contact_link a {
	width: 48%;
	text-align: center;
	background: #638C0B;
	font-size: 28px;
	font-weight: bold;
	border-radius: 100px;
	line-height: 1;
	padding: 30px 10px;
}

html.IE .contact_link a {
	padding: 35px 10px 20px;
}

.contact_link a:hover {
	opacity: 0.8;
}

.contact_link a.-form {
	font-size: 24px;
}

.contact_link a span {
	position: relative;
	padding-left: 35px;
	line-height: 1;
}

html.IE .contact_link a span {
	padding-top: 10px;
}

.contact_link a span::before {
	position: absolute;
	font-family: icomoon;
	top: 50%;
	left: 0;
	font-size: 30px;
	margin-top: -15px;
}

.contact_link a.-tel span::before {
	content: "\e906";
}

.contact_link a.-form span::before {
	content: "\e905";
}

/* ページトップ・フッター */
.foot {}

.foot>.inner {
	position: relative;
}

.foot_pagetop {
	position: absolute;
	top: -50px;
	right: 0;
}

.foot_pagetop a {
	display: block;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.foot_pagetop a:hover {
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg);
}

.foot_pagetop a span {}

.foot_wrap {
	padding: 70px 0 0;
	display: flex;
}

.foot_company {
	width: 28%;
}

.foot_company_logo {}

.foot_company_txt {
	margin-top: 25px;
}

.foot_company_txt span.-fax {
	display: inline-block;
	margin-left: 1em;
}

.foot_company_bnr {
	margin-top: 20px;
}

.foot_nav {
	width: 72%;
	border-left: 1px solid #ccc;
	display: flex;
	justify-content: center;
}

.foot_nav_list {
	margin: 0 2%;
}

.foot_nav_list li a {
	display: inline-block;
	position: relative;
}

.foot_nav_list li a::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 2px;
	background: #333;
	-webkit-transform: scale(0, 0);
	transform: scale(0, 0);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.foot_nav_list li a:hover::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.foot_nav_list li a[target="_blank"]::after {
	content: "";
	margin-left: 5px;
	height: 10px;
	width: 13px;
	background-color: #333333;
	display: inline-block;
	-webkit-mask: url("/common/img/path-blank.svg");
	mask: url("/common/img/path-blank.svg");
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	vertical-align: middle;
}

.foot_nav_list>li {
	font-weight: bold;
	line-height: 2.15;
}

.foot_nav_sublist {
	margin-left: 1em;
}

.foot_nav_sublist>li {
	line-height: 2.15;
}

.foot_nav_sublist>li a {}

.copyright {
	background: url("/common/img/bg-foot.jpg") no-repeat;
	background-position: center;
	background-size: cover;
	padding: 194px 0 240px;
	color: #FFF;
	text-align: center;
	font-size: 12px;
	margin-top: -80px;
}

.fixed {
	position: fixed;
	z-index: 10;
	top: 320px;
}

.fixed.-insta {
	left: 0;
}

.fixed.-form {
	right: 0;
}

.fixed a {
	display: block;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.fixed a:hover {
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1)
}

.spfixnav {
	width: 100%;
	line-height: 1;
	background-color: #FED839;
	display: none;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	color: #9C4E18;
	font-size: 16px;
	font-weight: bold;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 10;
}

.spfixitem {
	height: 75px;
	width: 25%;
	border-right: 1px solid #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.spfixitem:last-child {
	border-right: none;
}

.spfixitem svg {
	margin-bottom: 5px;
	width: 32px;
	height: 32px;
	fill: currentcolor;
}

/* All SP & Tablet */
@media screen and (max-width:1350px) {
	img {
		max-width: 100%;
		height: auto;
	}

	.vis-tb {
		display: block;
	}

	.hide-tb {
		display: none;
	}

	.gnav_list.-pctop {
		min-width: 150px;
	}

	/* footer */
	.foot_pagetop {
		right: 20px;
	}

	.foot_company_txt span.-fax {
		display: block;
		margin-left: 0;
	}

	.foot_nav_list>li {
		font-size: 14px;
	}
}

/* PC & TB */
@media screen and (min-width:641px) {
	.gnav_list>li.-top {
		display: none;
	}

	.gnav_list>li.-concept {
		margin-top: 0;
	}

	.gnav_sublist_head {
		pointer-events: none;
	}

	.gnav_sublist_head a {
		pointer-events: auto;
	}

	.gnav_sublist>li:first-child {
		display: none;
	}

	.gnav_col a span.-sp {
		display: none;
	}
}

/* All SP */
@media screen and (max-width:640px) {
	body {
		min-width: 360px;
	}

	.vis-sp {
		display: block;
	}

	.hide-sp {
		display: none;
	}

	.head {
		padding: 15px 0;
		min-width: 360px;
	}

	.head_logo {
		width: 200px;
	}

	.gnav_btn {
		width: 100px;
		height: 100px;
	}

	.gnav_btn_inner {
		width: 140px;
		height: 140px;
	}

	.gnav_btn_cts {
		top: 20px;
		right: 15px;
	}

	.gnav {
		padding: 30px 20px 100px;
	}

	.gnav_close {
		top: 20px;
		right: 15px;
	}

	.gnav_logo {
		margin-bottom: 50px;
		width: 200px;
	}

	.gnav_cts {}

	.gnav_row,
	.gnav_head,
	.gnav_main {
		display: block;
	}
	.gnav_main {
		margin-bottom: 35px;
	}

	.gnav_contact {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.gnav_list.-pctop {
		display: none;
	}

	.gnav_main>.gnav_list {
		margin-top: 25px;
		width: 100%;
	}

	.gnav_main>.gnav_list:first-child {
		margin-top: 0;
		width: 100%;
	}

	.gnav_sublist_head::after {
		display: inline-block;
	}

	.gnav_col {
		width: 100%;
		margin-top: 10px;
	}

	.gnav_col:first-child {
		margin-top: 0;
	}

	.gnav_head .gnav_col {
		margin: 10px auto 0;
		padding: 0;
	}

	.gnav_head .gnav_col a {
		padding: 0 25px;
		justify-content: flex-start;
	}

	.gnav_contact .gnav_col {
		width: 47.5%;
		padding: 0;
	}

	.gnav_contact .gnav_col:nth-of-type(2) {
		margin-top: 0;
	}

	.gnav_col a {}

	.gnav_col a span.-pc {
		display: none;
	}

	.gnav_sublist_head a {
		pointer-events: none;
	}

	.gnav_sublist {
		background: #FFF;
		padding: 1em;
		display: none;
	}

	.gnav_sublist a {
		color: #9B4E15;
	}

	.gnav_sublist a::before,
	.gnav_sublist a[target="_blank"]::after {
		background-color: #9B4E15;
	}

	.gnav_sns {
		margin-bottom: 20px;
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		order: -1;
	}

	.gnav_sns li {
		margin-top: 0;
		margin-right: 1em;
	}

	.gnav_sns li:last-child {
		margin-right: 0;
	}

	.pbody {
		padding-top: 60px;
	}

	.contact>.inner {
		padding: 0;
	}

	.contact,
	.contact_bg {
		height: auto;
	}

	.contact_cts {
		padding: 30px;
	}

	.contact_ttl {
		font-size: 24px;
	}

	.contact_link {
		display: block;
	}

	.contact_link a {
		display: block;
		width: 100%;
		margin-top: 10px;
		padding: 20px 10px;
		font-size: 22px !important;
	}

	.contact_link a:first-child {
		margin-top: 0;
	}

	.foot_pagetop {
		top: -30px;
		right: 5px;
	}

	.foot_pagetop a {
		width: 70px;
	}

	.foot_wrap {
		display: block;
	}

	.foot_company {
		width: 100%;
		text-align: center;
	}

	.copyright {
		padding: 50px 0 90px;
		margin: 0 0 70px;
	}

	body.-contact .copyright {
		margin: 0;
	}

	.fixed.-insta,
	.fixed.-form {
		display: none;
	}

	.spfixnav {
		display: flex;
	}

	.mainimage {
		height: 300px;
	}

	.cmn_pagewrap {
		margin: 50px 0;
	}

	.cmn_intro {
		padding: 40px 0;
	}

	.menu {
		margin-top: 50px;
		padding: 30px 0;
	}

	.menu_list a {
		width: 49%;
		padding: 10px;
	}

	.menu_list a:nth-child(n+3) {
		margin-top: 10px;
	}

	.cmn_intro_ttl {
		font-size: 20px;
		padding-bottom: 20px;
	}

	.cmn_intro_catch {
		margin-top: 26px;
		font-size: 26px;
		line-height: 1.3;
	}

	.cmn_intro_txt {
		margin-top: 30px;
	}
}