
@charset "UTF-8";

/*
Theme Name: Jamo associates 2025
Author: HEVIZ Co.,Ltd.
Author URI: https://heviz.jp/
Description: for Jamo associates corporate site
Requires at least: 6.7.1
Requires PHP: 7.1
Version: 1.0
*/


/** ================================================================================================


	Jamo associates CSS

	@version  1.0   2024.12.10
	@author   K.Sekioka of HEVIZ Co.,Ltd.


==================================================================================================== **/



:root {
	--gothic-font-family : "Avenir Next","Lato","Noto Sans JP","YuGothic","Yu Gothic",sans-serif;
/*	--mincho-font-family : "Times New Roman","Noto Serif JP","YuMincho","Yu Mincho",serif; */
	--mincho-font-family : "Frank Ruhl Libre","Noto Serif JP","YuMincho","Yu Mincho",serif;
	--background-color: #e4e4e4;
	--text-color: #231815;
	--text-link-color: #444444;
	--text-hover-color: #880000;
}


/** Responsive for Mobile Phone --------------------------- **/

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

	:root {
	}
}



/** ===========================================================================


    Basic Tag Resets


=============================================================================== **/



body {
	padding: 120px 0 0 0;
	color: var(--text-color);
	font-family: var(--gothic-font-family);
	font-size: 12px;
	letter-spacing: 0.2em;
	background-color: var(--background-color);
}

body.home:not(.paged) {
	padding: 0;
}

a {
	text-decoration: none;
	transition: all 0.3s;
}
a:link, a:visited  { color: var(--text-link-color);  }
a:hover, a:active  { color: var(--text-hover-color); }



/** Responsive for tablet --------------------------------- **/

@media screen and (max-width:1024px) and (min-width:768px) {
	
	body {
		padding: 55px 0 0 0;
	}
}

/** Responsive for Mobile Phone --------------------------- **/

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

	body {
		padding: 55px 0 0 0;
	}
}


/** Responsive for Print ---------------------------------- **/

@media print {
	
	body {
		padding: 55px 0 0 0;
	}
}


/** ===========================================================================


	Loading


=============================================================================== **/


.siteLoading {
    background-color: inherit;
}

.siteLoadingLogo img, .siteLoadingLogo svg {
    width: 70%;
	max-width: none;
	fill: #000000;
}


/** Responsive for tablet --------------------------------- **/

@media screen and (max-width:1024px) and (min-width:768px) {
}


/** Responsive for Mobile Phone --------------------------- **/

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

	.siteLoadingLogo {
	    left: 15%;
		width: 70%;
	}
	
	.siteLoadingLogo img, .siteLoadingLogo svg {
	    width: 100%;
	}
}



/** ===========================================================================


	ヘッダー


=============================================================================== **/



.siteHeader {
    background-color: inherit;
}

.siteHeaderTitle {
    width: 250px;
    height: 50px;
	margin-top: 15px;
	transition: all 0.5s;
}

.siteHeaderTitle svg {
	fill: var(--text-color);
}


/* ヘッダーメニュー */
.siteMenu.header {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;

	opacity: 1;
	transition: all 0.5s;
}

.siteNav.header {}

.siteNav.header ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

.siteNav.header li {
	margin: 0 0.75em;
}

.siteNav.header a::before {
    display: none;
}

.siteNav.header a {
	padding: 10px;
	color: var(--text-color);
}

.siteNav.header svg {
	width: 15px;
	height: 15px;
	vertical-align: bottom;
	fill: var(--text-color);
}


/* ハンバーガーメニュー */
.siteHumberger {
	right: 25px;
	top: 25px;
}

.siteHumberger span {
    width: 25px;
    height: 25px;
}

.siteHumberger span span {
    height: 1px;
    background-color:var(--text-color);
}


.siteMenu.humberger {
	padding-top: 150px;
	background-color: inherit;
}

.siteMenu.humberger .siteNav {
	max-width: 400px;
	margin: 50px auto;
}

.siteNav.projects .siteNavTitle {
	padding: 0 5px;
	font-size: larger;
	font-weight: 400;
}

.siteNav.projects ul,
.siteNav.abouts ul {
	border-top: 1px dotted #aaa;
}

.siteNav.projects li,
.siteNav.abouts li {
	border-bottom: 1px dotted #aaa;
}

.siteNav.sns a::before {
	display: none;
}

.siteNav.sns svg {
	width: 15px;
	height: auto;
	fill: var(--text-color);
}



/* TOPだけ、色を変える */
body.home:not(.paged):not(.openHumbergerMenu) .siteHeader {
    background-color: transparent;
}

body.home:not(.paged):not(.openHumbergerMenu) .siteHeaderTitle svg {
	fill: #ffffff;
}

body.home:not(.paged) .siteNav.header a,
body.home:not(.openHumbergerMenu) .siteNav.header a {
	color: #ffffff;
}

body.home:not(.paged):not(.openHumbergerMenu) .siteHumberger span span {
    background-color: #ffffff;
}

body.home:not(.paged):not(.openHumbergerMenu) .siteNav.header svg {
	fill: #ffffff;
}


/* スクロールした時 */
body.scrolled .siteHeader {
    background-color: inherit !important;
}


body.scrolled .siteHeaderTitle {
}

body.scrolled .siteHeaderTitle svg {
	fill: var(--text-color) !important;
}

body.scrolled .siteNav.header a {
	color: var(--text-color) !important;
}

body.scrolled .siteHumberger span span {
    background-color: var(--text-color) !important;
}

body.scrolled .siteNav.header svg {
	fill: var(--text-color) !important;
}


/* ハンバーガーメニューが表示されている時は、ヘッダーメニューを消す */
body.openHumbergerMenu .siteMenu.header {
	opacity: 0;
}


/** Responsive for tablet --------------------------------- **/

@media screen and (max-width:1024px) and (min-width:768px) {

	.siteHeaderTitle {
		margin-top: 0;
		margin-bottom: 4px;
	}
	
	
	/* ヘッダーメニュー */
	.siteMenu.header {
		display: none;
	}
	
	/* ハンバーガーメニュー */
	.siteHumberger {
	    top: 15px;
		right: 15px;
	}
	
	.siteMenu.humberger {
		padding-top: 100px;
	}

	/* TOPだけ、色を変える */

	/* スクロールした時 */

	/* ハンバーガーメニューが表示されている時は、ヘッダーメニューを消す */
}


/** Responsive for Mobile Phone --------------------------- **/

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

	.siteHeaderTitle {
		margin-top: 0;
		margin-bottom: 4px;
	}

	/* ヘッダーメニュー */
	.siteMenu.header {
		display: none;
	}

	/* ハンバーガーメニュー */
	.siteHumberger {
		top: 15px;
		right: 15px;
	}

	.siteHumberger span span {
	    height: 1px;
	    background-color:var(--text-color);
	}

	/* メニュー中身 */
	.siteMenu.humberger .siteNav {
		max-width: none;
		margin: 50px 30px;
	}

	/* TOPだけ、色を変える */

	/* スクロールした時 */
	body.scrolled .siteHeaderTitle {
	    width: 250px;
	    height: 50px;
	}

	/* TOPページだけ、位置を下げる */
	body.home .siteHeader {
		padding-top: 30px;
	}

	/* ハンバーガーメニュー */
	body.home .siteHumberger {
		top: 45px;
	}
	
	/* TOPページだけ、位置を下げる */
	body.home.scrolled .siteHeader {
		padding-top: 0;
	}

	/* ハンバーガーメニュー */
	body.home.scrolled .siteHumberger {
		top: 15px;
	}
}


/** Responsive for Print ---------------------------------- **/

@media print {

}





/** ===========================================================================


	メインブロック


=============================================================================== **/




/** ===========================================================================


	フッター


=============================================================================== **/



.siteFooterTitle {
	text-align: center;
}

.siteFooterTitle a {}

.siteFooterTitle svg {
	width: 200px;
	height: auto;
	fill: var(--text-color);
}


.siteNav.footer {
	font-size: smaller;
}

.siteNav.footer ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style-type: none;
}

.siteNav.footer li {
	margin: 0;
	padding: 0;
	box-sizing: border-box;	
}
.siteNav.footer li::after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 8px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: var(--text-color);
	transform: translateY(-50%);
}
.siteNav.footer li:last-child::after {
	display: none;
}


.siteNav.footer a {
	padding: 0 1em;
}

.siteNav.footer a::before {
	display: none;
}



/* PAGE TOP */

.sitePageTop a {
	right: 7px;
}

.sitePageTop a {
	color: var(--text-color);
    background-color: transparent;
}

.sitePageTop a::before {
    width: 30%;
    padding: 0 0 30% 0;
    border-top-color: var(--text-color);
    border-right-color: var(--text-color);
}

.sitePageTop a:hover {
	color: var(--text-color);
	opacity: 0.7;
}



/** ===========================================================================


	カルーセル共通


=============================================================================== **/



.hvSlider.fade .hvSliderRow {
    display: block;
    position: relative;
    width: 100%;
	height: 100vh;
    margin: 0;
    padding: 0;
}

.hvSlider.fade .hvSliderColumn {
    width: 100%;
    height: 100%;
}

.hvSlider.fade .hvSliderColumn::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
    width: 100%;
    height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: rgba( 0,0,0,0.2 );
}

.hvSlider.fade img {
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
	object-fit: cover;
}


/* 詳細ページ用 */
.hvSlider.simple .hvSliderColumn img {
	width: 100%;
	vertical-align: bottom;
}


.hvSlider.hasDirection .hvSliderScreen {
	margin: 0 -50px;
	padding: 0 50px;
}

.hvSliderDirection a {
    background-color: transparent;
}


.hvSliderDirection {
    width: 50px;
}

.hvSliderDirection a::before {
	width: 50%;
	height: 50%;
	background-color: transparent;
	opacity: 1;
}
.hvSliderDirection.prev a::before {
	clip-path: none;
   	border-top: 1px solid var(--text-color);
	border-left: 1px solid var(--text-color);
	transform: translate(-50%, -50%) rotate(-45deg);
}
.hvSliderDirection.next a::before {
	clip-path: none;
   	border-top: 1px solid var(--text-color);
	border-right: 1px solid var(--text-color);
	transform: translate(-50%, -50%) rotate(45deg);
}
.hvSliderDirection a:hover::before {
	opacity: 0.8;
}

.hvSliderPointer {
    display: block;
    position: absolute;
	left: 10%;
	bottom: 5%;
	width: 80%;
    padding: 0;
}

.hvSliderPointerColumn {
    width: 15px;
}

.hvSliderPointerColumn a::before {
    width: 5px;
    height: 5px;
    background-color: rgba( 255,255,255,0.5 );
}

.hvSliderPointerColumn.dot a::before {
    border-radius: 0;
}

.hvSliderPointerColumn.sel a::before,
.hvSliderPointerColumn a:hover::before,
.hvSliderPointerColumn a:active::before {
    background-color: rgba( 255,255,255,1 );
}



/** Responsive for Mobile Phone --------------------------- **/

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

	.hvSliderDirection {
	    width: 30px;
	}
	
	.hvSliderDirection.prev a::before {
	   	border-top-color: #ffffff;
		border-left-color: #ffffff;
	}

	.hvSliderDirection.next a::before {
	   	border-top-color: #ffffff;
		border-right-color: #ffffff;
	}
	
	.hvSlider.hasDirection .hvSliderScreen {
		margin: 0;
		padding: 0;
	}
	
	.hvSliderPointerColumn a::before {
	    width: 5px;
	    height: 5px;
	}
}



/** ===========================================================================


	POST(記事)　共通パーツ


=============================================================================== **/


/* ディメンション */
.postDims {
	display: block;
	position: relative;
	padding: 0;
	box-sizing: border-box;
	
	font-size: smaller;
	color: #666666;
}
.postDims a {
	color: #666666;
}
.postDims a:hover,
.postDims a:active { color: var(--text-hover-color); }

.postDims ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.postDims li {
	display: block;
	position: relative;
	margin: 0;
	padding: 0 0.5em;
	box-sizing: border-box;
}
.postDims ul li:first-child { padding-left: 0; }
.postDims ul li:last-child  { padding-right: 0; }

.postDims li::after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 10px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: var(--text-color);
	opacity: 0.5;
	
	transform: translateY(-50%);
}
.postDims ul li:last-child::after { display: none; }

.postDims a {}


/* タイトル */
.postTitle {
	font-family: var(--mincho-font-family);
	font-weight: 400;
	line-height: 1.3;
}


/* クレジット */
.postCredits {
	display: block;
	position: relative;
	padding: 15px 0 0 0;
	box-sizing: border-box;
	border-top: 1px solid rgba( 0, 0, 0, 0.3 );
}

.postCredits dl {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.postCredits dt {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--gothic-font-family);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0;
	opacity: 0.5;
	line-height: 1;
}

.postCredits dd {
	margin: 3px 0 8px;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--mincho-font-family);
	font-size: inherit;
	font-weight: 400;
}


/* Back to projects */
.postBack {
	display: block;
	position: absolute;
	right: 5px;
	top: 5px;
	margin: 0 !important;
	padding: 0;
	box-sizing: border-box;
	font-size: 10px;
	letter-spacing: normal;
}

.postBack a {}



/* 編集リンク（管理者のみ） */
.postEdit {
	text-align: right;
	font-size: smaller;
}





/** Responsive for tablet --------------------------------- **/

@media screen and (max-width:1024px) and (min-width:768px) {


}


/** Responsive for Mobile Phone --------------------------- **/

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


}


/** Responsive for Print ---------------------------------- **/

@media print {


}



/** ===========================================================================


	一覧ページ共通


=============================================================================== **/



/* 一覧 */
.posts.archive .postsHeader {
	display: none;
}

.posts.archive .postsList {
	width: calc( 100% - 145px + 2% );
	max-width: none;
	margin: 30px auto 0;
}

.postsTitle {
	font-family: var(--mincho-font-family);
	font-weight: 400;
	font-size: larger;
	text-align: center;
}

.postsList .post.tile {
    width: 48%;
    margin: 30px 1%;
}

.postsList .post.tile.verticalImage {
    width: 23%;
    margin: 30px 1%;
}


/* 各タイル */
.post.tile .postRow.image {
	display: block;
	position: relative;
	margin: 0;
	padding: 0 0 66.66%;
	box-sizing: border-box;
	overflow: hidden;
}
.post.tile.verticalImage .postRow.image {
	padding: 0 0 139%;
}

.post.tile .postRow.image img {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	object-fit: cover;
	vertical-align: bottom;
}

.post.tile .postRow.text {
	margin: 15px 0 0;
}

/* ロールオーバーした時に[VIEW]を表示 */
.post.tile .postView {}

.post.tile .postView a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
/*	background-color: rgba( 0,0,0,0.6); */
	background-color: rgba( 255,255,255,0.15);

	opacity: 0;
	transition: all 0.5s;
}
.post.tile .postRow.image:hover .postView a {
	opacity: 1;
}

.post.tile .postView span {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: 0;
	padding: 5px 8px;
	box-sizing: border-box;
	
	border: 1px solid #ffffff;
/*	border-radius: 10px; */
	
	font-size: inherit;
	font-weight: 400;
	line-height: 1;
	white-space: nowrap;
	color: #ffffff;
	text-align: center;
	
	transform: translate(-50%, -50%);
}

/* タイトル */
.post.tile .postTitle {
	font-size: larger;
}


/* ページ送り */
.postsPages {
/*	visibility: hidden; */
	display: none;
}


/* スクロールした時に、tileをふわっと出す */
.post.tile {
	opacity: 0;
	transform: translateY(100px);
	transition: all 2s;
}

.post.tile.enter {
	opacity: 1;
	transform: translateY(0px);
}


/** Responsive for tablet --------------------------------- **/

@media screen and (max-width:1024px) and (min-width:768px) {

	/* 一覧 */
	.posts.archive .postsList {
		width: calc( 100% - 110px + 2% );
	}

	.postsList .post.tile {
	    width: 98%;
	    margin: 30px 1%;
	}

	.postsList .post.tile.verticalImage {
	    width: 48%;
	    margin: 30px 1%;
	}


	/* 各タイル */
	.post.tile .postRow.image {
	}
	.post.tile.verticalImage .postRow.image {
		padding: 0 0 150%;
	}
}


/** Responsive for Mobile Phone --------------------------- **/

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

	/* 一覧 */
	.posts.archive {
/*		padding-top: 50px; */
	}
	
	.posts.archive .postsList {
		width: calc( 100% - 30px );
		margin: 30px auto 0;
	}

	.postsList .post.tile {
	    width: 100%;
	    margin: 30px auto;
	}

	.postsList .post.tile.verticalImage {
/*	    width: calc( 100% * 2 / 3); */
		width: 80%;
		margin: 30px auto;
	}

	/* 各タイル */
	.post.tile.verticalImage .postRow.image {
		padding: 0 0 150%;
	}

	.post.tile .postRow.text {
		margin: 15px 10px 0;
	}

	
	/* ロールオーバーした時に[VIEW]を表示 */
	.post.tile .postRow.image:hover .postView a {
		opacity: 0;
	}
}



/** Responsive for Print ---------------------------------- **/

@media print {
	
	/* 一覧 */
	.posts.archive .postsList {
		width: calc( 100% - 150px );
		margin: 0 -1%;
	}

	.postsList .post.tile {
	    width: 98%;
	    margin: 30px 1%;
	}

	.postsList .post.tile.verticalImage {
	    width: 48%;
	    margin: 30px 1%;
	}


	/* 各タイル */
	.post.tile .postRow.image {
	}
	.post.tile.verticalImage .postRow.image {
		padding: 0 0 150%;
	}
}



/** ===========================================================================


	TOPページ


=============================================================================== **/



.posts.archive.home .postsHeader {
	display: none;
}


.posts.archive.home .hvSlider.fade .hvSliderRow {
    width: 100%;
	height: 100vh;
}

.posts.archive.home .postsList {
	margin: 100px auto 0;
}


/** Responsive for tablet --------------------------------- **/

@media screen and (max-width:1024px) and (min-width:768px) {

}


/** Responsive for Mobile Phone --------------------------- **/

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

	.posts.archive.home {
		padding-top: 0;
	}

	.posts.archive.home .postsList {
		margin-top: 100px;
		margin-bottom: 100px;
	}	
}


/** Responsive for Print ---------------------------------- **/

@media print {

	.posts.archive.home .postsList {
		width: calc( 100% - 120px );
		max-width: none;
	}
}




/** ===========================================================================


	詳細ページ


=============================================================================== **/




/* TOPをヘッダーの分、開ける */
.post.single .postHeader {
	padding: 0;
}

.post.single .postHeaderInner {
	width: auto;
}

.post.single .postRow.image {
/*	width: calc( 100% - 240px ); */
	width: 65%;
	margin: 0 auto;
}
.post.single .postRow.text {
/*	width: calc( 100% - 240px ); */
	width: 65%;
	margin: 0 auto;
	padding: 15px 0 0 0;
}

.post.single .postRow.text > * {
    margin: 15px 0;
}

.post.single .hvSliderColumn {
	position: relative;
    width: 1%;
    padding: 0 0 calc( 1% *2 / 3 ) 0;
    list-style-type: none;
    box-sizing: border-box;
	overflow: hidden;
}

.post.single .hvSliderColumn img {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	object-fit: contain;
}

.post.single .gallery {
	visibility: hidden;
}

.post.single .postTitle {
    font-size: larger;
}

.post.single .postFooterInner {
	width: calc( 100% - 200px );
	max-width: 1200px;
	margin: 20px auto 0;
}


/** Responsive for tablet --------------------------------- **/

@media screen and (max-width:1024px) and (min-width:768px) {

	.post.single .postRow.image {
		width: calc( 100% - 120px );
	}

	.post.single .postRow.text {
		width: calc( 100% - 180px );
		margin: 0 auto;
	}

	.post.single .postFooterInner {
		width: calc( 100% - 180px );
		max-width: none;
		margin: 20px auto 0;
	}
}


/** Responsive for Mobile Phone --------------------------- **/

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

	.post.single .postHeaderInner {
		margin: 0;
	}

	.post.single .postRow.image {
		width: auto;
	}

	.post.single .postRow.text {
		width: auto;
		margin: 0 30px;
	}

	.post.single .postFooterInner {
		width: auto;
		max-width: none;
		margin: 30px 30px 0;
	}
}


/** Responsive for Print ---------------------------------- **/

@media print {

}



/** ===========================================================================


	固定ページ


=============================================================================== **/


.post.page {
	padding-top: 60px;
}


.post.page .postTitle {
	text-align: center;
	font-size: 1.8em;
}

.post.page .postMainInner {
	width: 65%;
/*	max-width: 1000px; */
	margin: 0 auto;
}


/* 日本語、英語切り替え */
.postLangSwitcher {}

.postLangSwitcher ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.postLangSwitcher li {
	margin: 0;
	padding: 0;
}

.postLangSwitcher li:first-child::after {
	content: " / ";
	display: inline-block;
	vertical-align: middle;
	padding: 0 1em;
}

.postLangSwitcher li.sel {}

.postLangSwitcher a {
	display: inline-block;
	color: var(--text-color);
	opacity: 0.6;
	cursor: pointer;
}
.postLangSwitcher li.sel a {
	opacity: 1;
	text-decoration: underline;
}

.wp-block-group.eng,
.wp-block-group.jpn {
	display: none;
}

.wp-block-group.eng.sel,
.wp-block-group.jpn.sel {
	display: block;
}

.editor-styles-wrapper, .blockEdit {
    font-size: inherit;
}


/* お問い合わせ */

.post.page.page-contact .postMainInner {
    width: calc( 100% - 200px );
    max-width: 600px;
    margin: 150px auto 0;
}




/** Responsive for tablet --------------------------------- **/

@media screen and (max-width:1024px) and (min-width:768px) {


}


/** Responsive for Mobile Phone --------------------------- **/

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

	.post.page {
		padding-top: 50px;
	}
	
	.post.page .postMainInner {
		width: auto;
		max-width: none;
		margin: 0 30px;
	}

	/* 日本語、英語切り替え */

	/* お問い合わせ */
	.post.page.page-contact .postMainInner {
	    width: auto;
	    max-width: none;
	    margin: 50px 50px 0;
	}
}



/** Responsive for Print ---------------------------------- **/

@media print {



}

