.leftbar.leftbar.leftbar.leftbar.leftbar.leftbar@charset "utf-8";
/* CSS Document */


/* =======================================================================================


	サイト共通パーツ用CSS

	@author    K.Sekioka of HEVIZ Co.,Ltd.
	@copyright HEVIZ Co.,Ltd.

	@version   1.0 2021.02.24  New
	@version   1.1 2021.07.05  body.leftNav .siteNav 追加
	@version   2.0 2021.10.04  reset.cssに合わせて改修
	@version   2.1 2022.02.03  パンくず、２列構成（左）追加

	@history   2021.4.5 littaitomari.jp実装


	[ CSS構成 ]
	.menubtn       ナビ共通パーツ : ハンバーガーメニュー
	.mainNav       ナビ共通パーツ : メインナビ
	.subNav        ナビ共通パーツ : サブナビ
	.contactNav    ナビ共通パーツ : お問い合わせナビ
	.snsNav        ナビ共通パーツ : SNSナビ

	.siteHeader    サイト共通ヘッダー     (z-index:1000)
	.siteFooter    サイト共通フッター
	.siteNav       サイト共通ナビ        (z-index:1100)
	.siteBread     パンくずリスト        2022年2月3日追加

	.siteMain      メインコンテンツ部分
	.siteContent                      (1列構成、真ん中寄せ)
	.siteContent.hasSidebar           (右ナビ2列構成、真ん中寄せ)
	.siteContent.hasSidebar.leftbar   (左ナビ2列構成、真ん中寄せ)

	.siteBlock     ブロック共通
	.pageTop       ページTOPボタン      (z-inde:900)

	.siteLoading   ローディング表示     (z-index:2000)
	.siteGDPR      GDPR確認ダイアログ   (z-index:1200)

	body.headerNav   PCで見たとき、ナビがヘッダーで横並びになる
	body.leftNav     PCで見たとき左側にメニューが開いた状態で表示される
	body.rightNav    PCで見たとき右側にメニューが開いた状態で表示される

　　※TB, SPの時はsiteNavと同じハンバーガーメニューになる


========================================================================================== **/



/** ---------------------------------------------------------------------------


	1. body, html


------------------------------------------------------------------------------- **/

/* ローディングあり      */
/* メニューが開いている間 */
body.loading {
	overflow: hidden;
}



/** ==========================================================================


	ナビ共通パーツ : ハンバーガーメニュー


============================================================================== **/

.menubtn a {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 10px 0 0 0;
    box-sizing: border-box;
    cursor: pointer;

    font-size: 8px;
    font-weight: 400;
    text-align: center;
    line-height: 1;
	color: #ffffff;
    text-decoration: none;

	background-color: #333333;

	transition: all 0.5s;
}
.menubtn a::after {
    content: "MENU";
}

.menubtn .bars {
    display: block;
    position: relative;
    width: 25px;
    height: 25px;
    margin: 0 auto 8px;
    padding: 0;
}


.menubtn .bars span {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    transition: all 0.3s;
}
.menubtn .bars span:nth-of-type(1) { transform: translateY(-9px); }
.menubtn .bars span:nth-of-type(2) { transform: translateY( 0px); }
.menubtn .bars span:nth-of-type(3) { transform: translateY( 9px); }


/* メニューが開いている時 */
body.openSiteNav .menubtn a::after {
    content: "CLOSE";
}
body.openSiteNav .menubtn .bars span:nth-of-type(1) { transform: translateY( 0px) rotate( 45deg); }
body.openSiteNav .menubtn .bars span:nth-of-type(2) { transform: translateY( 0px); opacity: 0;    }
body.openSiteNav .menubtn .bars span:nth-of-type(3) { transform: translateY( 0px) rotate(-45deg); }




/** ===============================================================================


	.mainNav    ナビ共通パーツ : メインナビ

	[想定タグ]
	<nav id="" class="mainNav">
	<ul>
	<li><a href="#">メニュー 1</a></li>
	<li class="hasChild"><a href="#">メニュー 2(第2階層がある場合)</a>
		<div><ul>
		<li><a href="#"><a href="">メニュー 2-1</a></li>
		</ul></div>
	</li>
	</ul>
	</nav>


=================================================================================== **/

.mainNav {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
}

.mainNav a {
	text-decoration: none;
	transition: all 0.3s;
}

/* 第一階層 */
.mainNav ul {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	list-style-type: none;
	box-sizing: border-box;
}

.mainNav li {
	display: block;
	position: relative;
	margin: 10px 0;
	padding: 0;
}

.mainNav li a {
	display: block;
	margin: 0;
	padding: 10px;
}


/* 第2階層 */
.mainNav li div {
	width: 100%;
	margin: -5px 0 0 0;
	box-sizing: border-box;
}

.mainNav ul ul {
	display: block;
	position: relative;
	margin: 5px 0 0 0;
	padding: 5px;
	border:1px solid #f0f0f0;
	border-radius: 5px;
	background-color: #ffffff;
}
.mainNav ul ul::before {
	content: "";
	display: block;
	position: absolute;
	width: 6px;
	height: 6px;
	left: 30px;
	top:-5px;
	margin: 0;
	padding: 0;
	border-top:1px solid #f0f0f0;
	border-right: 1px solid #f0f0f0;
	background-color: #ffffff;
	transform: rotate(-45deg);
}

.mainNav li li {
	margin: 0;
	font-size: smaller;
}

/* 子要素がある場合 */
.mainNav li.hasChild {
}	



/** ===========================================================================


	.subNav     ナビ共通パーツ : サブナビ

	[想定タグ]
	<nav id="" class="subNav">
	<ul>
	<li><a href="">メニュー1</a></li>
	<li><a href="">メニュー2</a></li>
	</ul>
	</nav>


=============================================================================== **/

.subNav {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	font-size: smaller;
	line-height: 1.3;
}

.subNav a {
	text-decoration: none;
	transition: all 0.3s;
}

.subNav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.subNav li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.subNav li a {
	display: block;
	padding: 5px 10px;
}



/** ===========================================================================


	.contactNav    ナビ共通パーツ : お問い合わせナビ

	[想定タグ]
	<nav id="" class="contactNav">
	<ul>
	<li class="phone"><a href="tel:000-000-0000" title="電話番号">
		<dl>
		<dt><svg viewBox="0 0 40 40"><use xlink:href="#svg-tel"></use></svg></dt>
		<dd>000-000-0000<span>平日午前0:00 ～ 午後0:00</span></dd>
		</dl>
	</a></li>
	<li class="fax">
		<dl>
		<dt><svg viewBox="0 0 40 40"><use xlink:href="#svg-fax"></use></svg></dt>
		<dd>000-000-0000</dd>
		</dl>
	</li>
	<li class="email"><a href="mailto:aaa@bbb.ccc">
		<dl>
		<dt><svg viewBox="0 0 40 40"><use xlink:href="#svg-email"></use></svg></dt>
		<dd>aaa@bbb.ccc</dd>
		</dl>
	</li>
	<li class="contact"><a href="#" title="お問い合わせフォーム">
		<dl>
		<dt><svg viewBox="0 0 40 40"><use xlink:href="#svg-mailtel"></use></svg></dt>
		<dd>お問い合わせフォーム</dd>
		</dl>
	</a></li>
	</ul>
	</nav>


=============================================================================== **/

.contactNav {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	
	font-size: smaller;
	line-height: 1.3;
}

.contactNav a {
	text-decoration: none;
	transition: all 0.3s;
}

.contactNav ul {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	list-style-type: none;
	box-sizing: border-box;
}

.contactNav li {
	display: block;
	position: relative;
	margin: 5px 0;
	padding: 0;
	list-style-type: none;
	box-sizing: border-box;
}

.contactNav dl {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
	padding: 0;
}

.contactNav dt {
	width: 20px;
	margin: 0 10px 0 0;
	padding: 0;
	box-sizing: border-box;
}

.contactNav dd {
	width: auto;
	max-width: calc( 100% - 30px );
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.contactNav svg {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	fill:#888888;
	transition: all 0.3s;
}

.contactNav a:hover svg {
	fill:#e56767;
}



/** ===========================================================================


	.snsNav     ナビ共通パーツ : SNSナビ

	[想定タグ]
	<nav class="snsNav"><ul>
	<li class="twitter"><a href="#" target="_blank" title="Twitter"><dl><dt><svg viewBox="0 0 40 40"><use xlink:href="#svg-twitter"></use></svg></dt><dd>Twitter</dd></dl></a></li>
	<li class="facebook"><a href="#" target="_blank" title="Facebook"><dl><dt><svg viewBox="0 0 40 40"><use xlink:href="#svg-facebook"></use></svg></dt><dd>Facebook</dd></dl></a></li>
	<li class="instagram"><a href="#" target="_blank" title="Instagram"><dl><dt><svg viewBox="0 0 40 40"><use xlink:href="#svg-instagram"></use></svg></dt><dd>Instagram</dd></dl></a></li>
	<li class="youtube"><a href="#" target="_blank" title="YouTube"><dl><dt><svg viewBox="0 0 40 40"><use xlink:href="#svg-youtube"></use></svg></dt><dd>YouTube</dd></dl></a></li>
	<li class="line"><a href="#" target="_blank" title="LINE"><dl><dt><svg viewBox="0 0 40 40"><use xlink:href="#svg-line"></use></svg></dt><dd>LINE</dd></dl></a></li>
	<li class="note"><a href="#" target="_blank" title="note"><dl><dt><svg viewBox="0 0 40 40"><use xlink:href="#svg-note"></use></svg></dt><dd>note</dd></dl></a></li>
	<li class="voicy"><a href="#" target="_blank" title="Voicy"><dl><dt><svg viewBox="0 0 40 40"><use xlink:href="#svg-voicy"></use></svg></dt><dd>Voicy</dd></dl></a></li>
	</ul></nav>


=============================================================================== **/

.snsNav {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	color: inherit;
}

.snsNav a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}
.snsNav a:link,
.snsNav a:visited { color: inherit; }
.snsNav a:hover,
.snsNav a:active { color: #E80685; }

.snsNav ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	margin: 0;
	padding: 0;
	list-style-type: none;
	box-sizing: border-box;
}

.snsNav li {
	margin: 10px;
	padding: 0;
	list-style-type: none;
	box-sizing: border-box;
}

.snsNav dl {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.snsNav dt {
	width: 20px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	text-align: center;
}

.snsNav dd {
	min-width: 5em;
	margin: 5px 0 0 0;
	padding: 0;
	box-sizing: border-box;
	
	font-size: 8px;
	line-height: 1;
	white-space: nowrap;
	text-align: center;
}

.snsNav svg {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: all 0.3s;
}
.snsNav li.twitter svg   { fill: #1DA1F2; }
.snsNav li.facebook svg  { fill: #32508E; }
.snsNav li.youtube svg   { fill: #FF0000; }
.snsNav li.line svg      { fill: #00B300; }
.snsNav li.note svg      { fill: #41C9B4; }
.snsNav li.voicy svg     { fill: #ff7d32; }



/** ===========================================================================


	.siteHeader      サイト共通ヘッダー

	[想定タグ]
	<header id="" class="siteHeader">
	<h1><a href="#" title="" rel="home"><img src="" alt=""></a></h1>
	</header>


============================================================================== **/


/* ヘッダーに合わせてbodyを調整 */
body {
    padding: 100px 0 0 0;
}

.siteHeader {
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100px;
	margin: 0;
	padding: 10px 0;
	box-sizing: border-box;

	color: inherit;
	background-color: inherit;
	z-index:1000;
	transition: all 0.5s;
}


/* Reset ------------------------------ */

.siteHeader a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}
.siteHeader a:link,
.siteHeader a:visited { color: inherit; }
.siteHeader a:hover,
.siteHeader a:active { color: #32508E; }



/* logo ------------------------------- */

.siteHeader h1 {
	display: block;
	position: relative;
	width: 20%;
	height: 100%;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	
	font-size: inherit;
	text-align: center;
	transition: all 0.5s;
}

.siteHeader h1 img,
.siteHeader h1 svg {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	box-sizing: border-box;
	vertical-align: bottom;
}


/* スクロール時の処理 --------------------- */

body.scrolled {
	padding: 60px 0 0 0;
}

body.scrolled .siteHeader {
	padding: 5px 0;
	height: 60px;
}


/* ロゴを出したくないとき ------------------ */

body.nologo .siteHeader h1 {
	transform: translateY(-120px);
}

body.nologo.scrolled .siteHeader h1 {
	transform: translateY(0px);
}

/** Responsive for Smart Phone ---------------------------- **/

@media all and (max-width:1024px) and (min-width:768px) {
}
	

/** Responsive for Smart Phone ---------------------------- **/

@media all and (max-width:767px) {
	
	/* ヘッダーに合わせてbodyを調整 */
	body {
	    padding: 60px 0 0 0;
	}
	
	.siteHeader {
		height: 60px;
		padding:5px 0;
	}

	/* logo ------------------------------- */

	.siteHeader h1 {
		width: calc( 40% - 20px );
		margin: 0 0 0 10px;
	}
}




/** =============================================================================


	.siteFooter     サイト共通フッター

	[想定タグ]
	<footer id="" class="siteFooter">

	<div class="head">
	<a href="" rel="home">
	<h2><img src="" alt="ロゴ"></h2>
	<h3>組織名称</h3>
	</a>
	</div>

	<nav id="" class="contactNav">[お問い合わせ]</nav>
	<nav id="" class="mainNav">[メインナビ]</nav>
	<nav id="" class="subNav">[サブナビ]</nav>
	<nav id="" class="snsNav">[SNSナビ]</nav>

	<p class="copyright"><span>Copyright </span>&copy; AAAAA Co.,Ltd.<span> All Rights Reserved.</span></p>
	</footer>


================================================================================= **/

.siteFooter {
	display: block;
	position: relative;
	margin: 0;
	padding: 50px 100px;
	
	color: inherit;
	background-color: inherit;
	transition: all 0.5s;
}


/* Reset -------------------------------------------------- */

.siteFooter a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}
.siteFooter a:link,
.siteFooter a:visited { color: inherit; }
.siteFooter a:hover,
.siteFooter a:active { color: #d83a3a; }



/* head --------------------------------------------------- */

.siteFooter .head {
	display: block;
	position: relative;
	margin: 0 0 50px;
	padding: 0;
	box-sizing: border-box;
	text-align: center;
}

.siteFooter h2 {
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: 400;
}

.siteFooter h3 {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 400;
}


/* contact navigation (overwrite) ------------------------- */

.siteFooter .contactNav {
	margin: 0 0 50px;
}

.siteFooter .contactNav dl {
	justify-content: center;
}



/* main nav (overwrite) ----------------------------------- */

.siteFooter .mainNav {
	margin: 0 0 50px;
}

/* 横並びにする */
.siteFooter .mainNav > ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}

.siteFooter .mainNav > ul > li {
	width: 20%;
	max-width: 200px;
	padding: 0 10px;
	box-sizing: border-box;
}



/* sns navigation(overwrite) ------------------------------ */

.siteFooter .snsNav {
	margin: 0 0 50px;
}


/* sub navigation(overwrite) ------------------------------ */

.siteFooter .subNav {
    margin: 0 0 50px;
}

.siteFooter .subNav ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.siteFooter .subNav li {
	display: block;
	position: relative;
    padding: 0 10px;
}
.siteFooter .subNav li::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 10px;
	margin: 0;
	padding: 0;
	background-color:#888888;
	transform: translateY(-50%);
}
.siteFooter .subNav li:first-child::before {
	display: none;
}


/* Copyright */
.siteFooter .copyright {
	clear: both;
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	font-size: smaller;
	text-align: center;
}



/** Responsive for Tablet & Smart Phone ------------------- **/

@media all and (max-width:1024px) and (min-width:768px) {

	.siteFooter {
		padding: 50px;
	}

	/* main nav (overwrite) */
	.siteFooter .mainNav > ul > li {
		width: 33.33%;
	}
}



/** Responsive for Smart Phone ---------------------------- **/

@media all and (max-width:767px) {

	.siteFooter {
		padding: 50px 30px;
	}


	/* head --------------------------------------------------- */

	.siteFooter h2,
	.siteFooter h3 {
		font-size: inherit;
		font-weight: inherit;
	}


	/* contact navigation (overwrite) ------------------------- */

	.siteFooter .contactNav li {
		margin: 10px 0;
	}


	/* main nav (overwrite) ----------------------------------- */

	.siteFooter .mainNav > ul {
		display: block;
	}

	.siteFooter .mainNav > ul > li {
		width: auto;
		padding: 0;
		max-width: none;
	}


	/* sub navigation(overwrite) ------------------------------- */

	.siteFooter .subNav {
		margin: 0 0 50px;
	}

	.siteFooter .subNav ul {
		display: block;
	}

	.siteFooter .subNav li {
		margin: 0;
		text-align: center;
	}
	.siteFooter .subNav li::before {
		display: none;
	}



	/* Copyright */
	.siteFooter .copyright {
		clear: both;
		display: block;
		position: relative;
		margin: 0;
		padding: 0;
		font-size: smaller;
		text-align: center;
	}
	
	.siteFooter .copyright span {
		display: none;
	}
}



/** ===========================================================================


	.siteNav       サイト共通ナビ (z-index:1100)

	[想定タグ]
	<nav id="" class="siteNav">
	<div class="siteNavBg"></div>
	<div class="siteNavInner">

	<nav id="" class="mainNav">[ナビ共通パーツ : メインナビ]</nav>
	<nav id="" class="subNav">[ナビ共通パーツ : サブナビ]</nav>
	<nav id="" class="contactNav">[ナビ共通パーツ : お問い合わせナビ]</nav>
	<nav id="" class="snsNav">[ナビ共通パーツ : SNSナビ]</nav>

	</div>
	<div class="siteNavBar"><ul>
	<li class="menubtn">[ナビ共通パーツ : ハンバーガーメニュー]</li>
	</ul></div>
	</nav>

=============================================================================== **/

.siteNav {
	display: block;
	position: fixed;
	left: 100%;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;	
	z-index:1100;
	transition: all 0.5s;
}


/* link --------------------------------------------------- */

.siteNav a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}
.siteNav a:link,
.siteNav a:visited { color: inherit; }
.siteNav a:hover,
.siteNav a:active { color: #d83a3a; }


/* Clickable Background ----------------------------------- */

.siteNavBg {
	display: block;
	position: absolute;
	left: 0;
	top:0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 0;
	background-color: rgba(0,0,0,0.8);
	cursor: pointer;
}


/* Main Menu Area ----------------------------------------- */

.siteNavInner {
	display: block;
	position: absolute;
	right: 0;
	top:0;
	width: 500px;
	height: 100%;
	margin: 0;
	padding: 10px 30px 30px;
	box-sizing: border-box;
	
	overflow: auto;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: #f0f0f0;
}


/* ナビバー -------------------------------------------------- */

.siteNavBar {
	display: block;
	position: absolute;
	right: calc( 100% + 20px );
	top: 20px;
	margin: 0;
	padding: 0;
	transition: all 0.5s;
}

body.scrolled .siteNavBar {
	top: 0;
}

.siteNavBar ul {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0;
	padding: 0;
}

.siteNavBar li {
	margin: 0 0 0 1px;
	padding: 0;
	list-style-type: none;
}

.siteNavBar a {
	display: block;
	position: relative;
	width: 60px;
	height: 60px;
	margin: 0;
	padding: 10px 0 0 0;
	box-sizing: border-box;
	cursor: pointer;
	
	font-size: 8px;
	font-weight: 400;
	text-align: center;
	line-height: 1;
	color: #ffffff;
	text-decoration: none;

	background-color: #333333;
	transition: all 0.5s;
}
.siteNavBar a:link,
.siteNavBar a:visited,
.siteNavBar a:hover,
.siteNavBar a:active {
	color: #ffffff;
}

.siteNavBar svg,
.siteNavBar img {
	display: block;
	width: 25px;
	height: 25px;
	margin: 0 auto 8px;
	fill:#ffffff;
}

/* Hover */
.siteNavBar a:hover {
	background-color: #E80685;
	color: #ffffff;
}


/* main menu ---------------------------------------------- */

.siteNav .mainNav {
	margin: 0 0 50px;
}


/* sub menu( overwrite ) ---------------------------------- */

.siteNav .subNav {
	margin: 0 0 50px;
}


/* Contact Nav(overwrite) --------------------------------- */

.siteNav .contactNav {
	margin: 0 0 50px;
}


/* SNS Nav(overwrite) ------------------------------------- */

.siteNav .snsNav {
	margin: 0 0 50px;
}


/* close button ------------------------------------------- */

.siteNavClose {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	background-color: #f0f0f0;
}

.siteNavClose a {
	display: block;
	position: relative;
	width: 40px;
	margin: 0 auto;
	padding: 5px 0 0 0;
	box-sizing: border-box;
	cursor: pointer;

	font-size: 8px;
	text-align: center;
	text-decoration: none;
	line-height: 1;
}
.siteNavClose a::after {
	content: "CLOSE";
}

.siteNavClose .bars {
	display: block;
	position: relative;
	width: 25px;
	height: 25px;
	margin: 0 auto 8px;
	padding: 0;
	box-sizing: border-box;
}
	
.siteNavClose .bars span {
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: #231815;
	transition: all 0.3s;
}
.siteNavClose .bars span:nth-of-type(1) { transform: rotate( 45deg); }
.siteNavClose .bars span:nth-of-type(2) { transform: rotate(-45deg); }

/* Hover */
.siteNavClose a:hover { color: #E80685; }
.siteNavClose a:hover .bars span { background-color: #E80685; }



/* Open Navigation ---------------------------------------- */

/* menuが開いている時、bodyをscrollさせない */
body.openSiteNav {
	overflow: hidden;
}

body.openSiteNav .siteNav {
	left: 0;
}

body.openSiteNav .siteNavBar {
	right: 500px;
	top: 0;
}

body.openSiteNav .siteNavBar ul {
	flex-direction: column;
}

body.openSiteNav .siteNavBar li {
    margin: 0 0 1px 0;
}

body.openSiteNav .siteNav .menubtn a {
	background-color: #f0f0f0;
	color:#231815;
}


body.openSiteNav .siteNav .menubtn .bars span {
	background-color: #231815;
}
	

/* Responsive for SP & Mobile ----------------------------- */

@media all and (max-width:1024px) {
}


/** Responsive for Smart Phone ------------------------------- **/

@media all and (max-width:767px) {

	.siteNavInner {
		width: calc( 100% - 70px );
	}
	
	.siteNavBar {
		top: 0;
		right: 100%;
	}
	
	body.openSiteNav .siteNavBar {
		right: calc( 100% - 70px );
	}
}


/** ===========================================================================


	.siteBread      パンくずリスト 2022年2月3日追加

	[想定タグ]
	<div class="siteBread">
	<ul>
	<li class="home"><a href="">ホーム</a></li>
	<li><a href="">階層1</a></li>
	<li><a href="">階層2</a></li>
	<li>名称</li>
	</ul>
	</div>


=============================================================================== **/

.siteBread {
	display: block;
	position: relative;
	width: calc(100% - 100px);
	margin: 0 auto 10px;
	padding: 0;
}

.siteBread a {
	display: block;
	position: relative;
	margin: 0;
	padding: 0 30px 0 0;
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}
.siteBread a::after {
	content: "";
	display: block;
	position: absolute;
	right: 15px;
	top: 50%;
	width: 5px;
	height: 5px;
	margin: 0;
	padding: 0;
	border-top: 1px solid #888888;
	border-right: 1px solid #888888;
	transform: translateY(-50%) rotate(45deg);
}

.siteBread a:link,
.siteBread a:visted { color: inherit; }
.siteBread a:hover,
.siteBread a:active { color: inherit; text-decoration: underline; }


.siteBread ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.siteBread li {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
}

/** for Mobile Phone -------------------------------------- **/

@media all and (max-width:767px) {
	
	.siteBread {
		width: auto;
		margin: 0 30px 10px;
	}
}


/** ===========================================================================


	.siteMain      メインコンテンツ部分
	.siteContent                      (1列構成、真ん中寄せ)
	.siteContent.hasSidebar           (右ナビ2列構成、真ん中寄せ)
	.siteContent.hasSidebar.leftbar   (左ナビ2列構成、真ん中寄せ)


	3-1. 1列構成
	<main id="" class="siteMain">
	[コンテンツ]
	</main>

	3-2. 1列構成(真ん中寄せ)
	<main id="" class="siteMain">
	<div class="siteContent">
	[コンテンツ]
	</div>
	</main>

	3-3. 2列構成(右にサイドバー)
	<main id="" class="siteMain">
	<div class="siteContent hasSidebar">
	<div class="contentBlock">
	[コンテンツ]
	</div>
	<div class="sideBlock">
	[サイドバー]
	</div>
	</div>
	</main>

	3-3. 2列構成(左にサイドバー)
	<main id="" class="siteMain">
	<div class="siteContent hasSidebar leftbar">
	<div class="contentBlock">
	[コンテンツ]
	</div>
	<div class="sideBlock">
	[サイドバー]
	</div>
	</div>
	</main>



=============================================================================== **/

.siteMain {
	display: block;
	position: relative;
	width: auto;
	height: auto;
	min-height: 80vh;
	margin: 0 auto;
	padding: 0;
	transform: all 0.5s;
}

/** コンテンツ部分 ----------------------------------------------- **/

.siteContent {
	display: block;
	position: relative;
	width: calc(100% - 100px);
	max-width: 1500px;
	margin: 0 auto;
	padding: 0;
}

/* サイドバーがある場合(右) */
.siteContent.hasSidebar {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
}

.siteContent.hasSidebar > .contentBlock {
	width: 70%;
}

.siteContent.hasSidebar > .sideBlock {
	display: block;
	position: relative;
    width: 27%;
    margin: 0 0 0 3%;
    padding: 0;
} 


/* サイドバーがある場合(左) */
.siteContent.hasSidebar.leftbar {
	flex-direction: row-reverse;
}

.siteContent.hasSidebar.leftbar > .sideBlock {
    margin: 0 3% 0 0;
} 

@media all and (max-width:1024px) and (min-width:768px) {

	.siteContent {
		width: calc(100% - 80px);
		max-width: none;
	}

}

@media all and (max-width:767px) {

	.siteContent {
		width: auto;
		max-width: none;
	}
	
	.siteContent > .contentBlock {
		margin: 0 20px;
	}
	
	.siteContent.hasSidebar {
		display: block;
	}

	.siteContent.hasSidebar > .contentBlock {
		width: auto;
		margin: 0 20px;
	}

	.siteContent.hasSidebar > .sideBlock {
		width: auto;
		margin: 50px 20px;
		padding: 0;
	} 
}


/** ===========================================================================


	.siteBlock    ブロック共通


============================================================================== **/

.siteBlock {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.siteBlock::after { content:"."; display:block; height:0; clear:both; visibility:hidden; }



/** ===========================================================================


	.pageTop       ページTOPボタン   (z-inde:900)

	[想定タグ]
	<div class="pageTop"><a>PAGE TOP</a></div>


=============================================================================== **/

.pageTop {
	display: block;
	position: fixed;
	right: 20px;
	bottom: -100px;
	margin: 0;
	padding: 0;
	
	opacity: 0;
	transition: all 0.5s;
	z-index: 900;
	
	font-size: smaller;
	text-align: center;
}

.pageTop > a {
	display: block;
	position: relative;
	width: 60px;
	height: 60px;
	margin: 0;
	padding: 35px 0 0 0;
	box-sizing: border-box;
	cursor: pointer;

	color: #f0f0f0;
	text-decoration: none;
	
	background-color: rgba(0,0,0,0.6);
	transition: all 0.3s;
}

.pageTop > a::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 15px;
	width: 40%;
	padding: 0 0 40% 0;
	box-sizing: border-box;
	border-top:1px solid #f0f0f0;
	border-right:1px solid #f0f0f0;
	transform: translateX(-50%) rotate(-45deg);
}

.pageTop > a:hover { background-color: #E80685; }


/* スクロールで出てくる */
body.scrolled .pageTop {
	bottom: 0;
	opacity: 1;
}



/** Responsive for Smart Phone -------------------------- */

@media all and (max-width:767px) {

	.pageTop {
		right: 0;
	}

	.pageTop > a:hover { background-color: rgba(0,0,0,0.6); }
}


/** ===========================================================================


	.siteLoading   ローディング表示 (z-index:2000)

	[想定タグ]
	<!-- start site loading -->
	<div class="siteLoading">
	<div class="logo"><img src="" alt="ロゴ"></div>

	<!-- 読み込みステータスバー表示 -->
	<div class="status"><div class="bar"></div></div>

	<!-- 読み込みクルクル -->
	<div class="circle">
	<svg width="40px" height="40px" viewBox="0 0 40 40">
	<path d="M20,7.5c-0.8,0-1.5-0.7-1.5-1.5V1.5C18.5,0.7,19.2,0,20,0s1.5,0.7,1.5,1.5V6C21.5,6.8,20.8,7.5,20,7.5z"/>
	<path d="M27,9.4c-0.3,0-0.5-0.1-0.7-0.2c-0.7-0.4-1-1.3-0.5-2L28,3.2c0.4-0.7,1.3-1,2-0.5s1,1.3,0.5,2l-2.3,3.9 C28,9.1,27.5,9.4,27,9.4z"/>
	<path d="M32.1,14.5c-0.5,0-1-0.3-1.3-0.8c-0.4-0.7-0.2-1.6,0.5-2l3.9-2.3c0.7-0.4,1.6-0.2,2,0.5c0.4,0.7,0.2,1.6-0.5,2l-3.9,2.3 C32.6,14.4,32.4,14.5,32.1,14.5z"/>
	<path d="M38.5,21.5H34c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5h4.5c0.8,0,1.5,0.7,1.5,1.5S39.3,21.5,38.5,21.5z"/>
	<path d="M36,30.8c-0.3,0-0.5-0.1-0.7-0.2l-3.9-2.3c-0.7-0.4-1-1.3-0.5-2c0.4-0.7,1.3-1,2-0.5l3.9,2.3c0.7,0.4,1,1.3,0.5,2 C37,30.5,36.5,30.8,36,30.8z"/>
	<path d="M29.3,37.5c-0.5,0-1-0.3-1.3-0.8l-2.3-3.9c-0.4-0.7-0.2-1.6,0.5-2c0.7-0.4,1.6-0.2,2,0.5l2.3,3.9c0.4,0.7,0.2,1.6-0.5,2 C29.8,37.5,29.5,37.5,29.3,37.5z"/>
	<path d="M20,40c-0.8,0-1.5-0.7-1.5-1.5V34c0-0.8,0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5v4.5C21.5,39.3,20.8,40,20,40z"/>
	<path d="M10.7,37.5c-0.3,0-0.5-0.1-0.7-0.2c-0.7-0.4-1-1.3-0.5-2l2.2-3.9c0.4-0.7,1.3-1,2-0.5c0.7,0.4,1,1.3,0.5,2L12,36.8 C11.8,37.3,11.3,37.5,10.7,37.5z"/>
	<path d="M4,30.8c-0.5,0-1-0.3-1.3-0.8c-0.4-0.7-0.2-1.6,0.5-2l3.9-2.3c0.7-0.4,1.6-0.2,2,0.5c0.4,0.7,0.2,1.6-0.5,2l-3.9,2.3 C4.5,30.7,4.2,30.8,4,30.8z"/>
	<path d="M6,21.5H1.5C0.7,21.5,0,20.8,0,20s0.7-1.5,1.5-1.5H6c0.8,0,1.5,0.7,1.5,1.5S6.8,21.5,6,21.5z"/>
	<path d="M7.9,14.5c-0.3,0-0.5-0.1-0.7-0.2L3.2,12c-0.7-0.4-1-1.3-0.5-2c0.4-0.7,1.3-1,2-0.5l3.9,2.3 c0.7,0.4,1,1.3,0.5,2C8.9,14.2,8.4,14.5,7.9,14.5z"/>
	<path d="M13,9.4c-0.5,0-1-0.3-1.3-0.8L9.5,4.7C9,4,9.3,3.1,10,2.7c0.7-0.4,1.6-0.2,2,0.5l2.3,3.9c0.4,0.7,0.2,1.6-0.5,2 C13.5,9.3,13.3,9.4,13,9.4z"/>
	</svg>
	</div>

	</div>
	<!-- end site loading -->


=============================================================================== **/

.siteLoading {
	display : block;
	position : fixed;
	left : 0;
	top : 0;
	width : 100%;
	height : 100%;
	margin : 0;
	padding : 0;
	color : #231916;
	background-color : #ffffff;
	z-index : 2000;
	transition: all 0.5s;
}

/* ロゴ等 */
.siteLoading .logo {
	display: block;
	position: absolute;
	left: 25%;
	bottom: 50%;
	width: 50%;
	margin: 0 0 10px 0;
	padding: 0;
	text-align: center;
}

.siteLoading .logo img,
.siteLoading .logo svg {
	max-width: 200px;
	vertical-align: bottom;
	fill:#a0a0a0;
}

/* ステータスバー */
.siteLoading .status {
	display : block;
	position : absolute;
	left : 0;
	top : 50%;
	width : 100%;
	height : 3px;
	margin : 0;
	padding : 0;
	background : #898989;
	overflow : hidden;
	transform: translateY(-50%);
	
	background-color:#f5f5f5;
}

.siteLoading .status .bar{
	display : block;
	position : absolute;
	left: 0;
	top:0;
	width : 1%;
	height : 100%;
	margin : 0;
	padding : 0;
	background-color : #000000;
	transition: all 0.5s;
}

/* Circle */
.siteLoading .circle {
	display: block;
	position: absolute;
	left: 50%;
	top:50%;
	width: 30px;
	height: 30px;
	margin: 10px 0 0 -15px;
	padding: 0;
}

.siteLoading .circle svg {
    display: block;
    position: relative;
    width:100%;
    height: 100%;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

@keyframes loadinganim {
    0%  { opacity:0; }
    70% { opacity:1; }
}

.siteLoading .circle svg path {
    fill:#000000;
    animation-name: loadinganim;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    opacity:1;
}
.siteLoading .circle svg path:nth-of-type(1)  { animation-delay: 0; }
.siteLoading .circle svg path:nth-of-type(2)  { animation-delay: 100ms; }
.siteLoading .circle svg path:nth-of-type(3)  { animation-delay: 200ms; }
.siteLoading .circle svg path:nth-of-type(4)  { animation-delay: 300ms; }
.siteLoading .circle svg path:nth-of-type(5)  { animation-delay: 400ms; }
.siteLoading .circle svg path:nth-of-type(6)  { animation-delay: 500ms; }
.siteLoading .circle svg path:nth-of-type(7)  { animation-delay: 600ms; }
.siteLoading .circle svg path:nth-of-type(8)  { animation-delay: 700ms; }
.siteLoading .circle svg path:nth-of-type(9)  { animation-delay: 800ms; }
.siteLoading .circle svg path:nth-of-type(10) { animation-delay: 900ms; }
.siteLoading .circle svg path:nth-of-type(11) { animation-delay: 1000ms; }
.siteLoading .circle svg path:nth-of-type(12) { animation-delay: 1100ms; }


/* body.readyで引っ込む */
/*
body.ready .siteLoading {
	top:100%;
	transition: all 0.5s ease-out;
}
*/


/** ===========================================================================


	.siteGDPR      GDPR確認ダイアログ (z-index:1200)

	[想定タグ]
	<!-- start GDPR -->
	<div class="siteGDPR">
	<div class="desc">
	<p>当ウェブサイトでは、お客様の利便性の改善やサービス向上などを目的とした、Google Analyticsによるアクセスログ解析のためにクッキーを使用しています。詳細は<a href="#">プライバシー・ポリシー</a>をご参照ください。</p>
	</div>
	<div class="buttons"><ul>
	<li class="accept"><a>承認する</a></li>
	<li class="denied"><a>承認しない</a></li>
	</ul></div>
	<div class="close"><a><svg viewBox="0 0 40 40"><use xlink:href="#svg-close"></use></svg></a></div>
	</div>
	<!-- end GDPR -->


=============================================================================== **/

.siteGDPR {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0;
	top: 100%;
	bottom: auto;
	width: 100%;
	margin: 0;
	padding: 20px 40px;
	box-sizing: border-box;
	
	background-color:#f0f0f0;
	z-index: 1200;
	
	transform: translateY(100%);
	transition: all 1s;
}

.siteGDPR .desc {
	width: 65%;
	padding: 0 20px 0 0;
	box-sizing: border-box;
}

.siteGDPR .desc p {
	margin: 0;
}

.siteGDPR .buttons {
	width: 35%;
	box-sizing: border-box;
}

.siteGDPR .buttons ul {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.siteGDPR .buttons li {
/*	width: 48%; */
	margin: 0 1%;
	padding: 0;
	list-style-type: none;
	box-sizing: border-box;
	flex-grow: 1;
}

.siteGDPR .buttons li.accept {}

.siteGDPR .buttons a {
	display: block;
	padding: 5px 10px;
	
	background-color: #444444;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	
	transition: all 0.3s;
}

.siteGDPR .buttons li.denied a {
	background-color: #c0c0c0;
}

.siteGDPR .buttons li a:hover,
.siteGDPR .buttons li a:active  { 
	color: #fffff;
	background-color: #cc0000;
}

.siteGDPR .close {
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
}

.siteGDPR .close a {
	cursor: pointer;
}

.siteGDPR .close svg {
	width: 20px;
	height: 20px;
	fill: #444444;
	transition: all 0.3s;
}

.siteGDPR .close a svg:hover,
.siteGDPR .close a svg:active  {
	fill: #cc0000;
}


/* 表示 */
.siteGDPR.open {
	top: auto;
	bottom: 0;
	transform: translateY(0%);
}



/** ===========================================================================


	body.headerNav    PCで見たとき、ナビがヘッダーで横並びになる

	※TB, SPの時はsiteNavと同じハンバーガーメニューになる


============================================================================== **/

body.headerNav {
    padding: 145px 0 0 0;
}


/* site header ------------------------------------------------ */

body.headerNav .siteHeader {
	height: 145px;
	padding: 10px 0 0 0;
}

body.headerNav .siteHeader h1 {
    height: calc( 100% - 45px );
}


/* site common nav -------------------------------------------- */

body.headerNav .siteNav {
	left: 0;
	top: 100px;
	height: auto;
}

body.headerNav .siteNavBg {
    display: none;
}

body.headerNav .siteNavInner {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    height: 45px;
    margin: 0;
    padding: 0 20px;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
	background-color: transparent;
}

body.headerNav .siteNav .siteNavBar {
	display: none;
}


/* Main Nav ---------------------------------------------- */

body.headerNav .siteNav .mainNav {
	margin: 0;
}

/* main nav 1st layer */
body.headerNav .siteNav .mainNav ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	margin: 0;
	padding: 0;
}

body.headerNav .siteNav .mainNav li {
	margin: 0;
}

/* main nav 2nd layer */
body.headerNav .siteNav .mainNav li div {
	display: block;
	position: absolute;
	left: 0;
	top: 100%;
	width: auto;
	min-width: 250px;
	max-width: 400px;
	height: auto;
	max-height: 1px;
	overflow:hidden;
	overflow-x: visible;
	overflow-y: hidden;
	
	transition: all 0.5s;
}
body.headerNav .siteNav .mainNav li:hover div {
	max-height: 500px;
}

body.headerNav .siteNav .mainNav ul ul {
	display: block;
	margin: 5px 0 0 0;
}


/* sub nav ----------------------------------------------- */

body.headerNav .siteNav .subNav {
	position: absolute;
	left: 20px;
	bottom: calc( 100% + 65px );
	margin: 0;
}

body.headerNav .siteNav .subNav ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}


/* contact nav ------------------------------------------- */

body.headerNav .siteNav .contactNav {
	display: none;
	position: absolute;
	right: 20px;
	bottom: 100%;
	margin: 0;
}

/* sns nav ------------------------------------------------ */

body.headerNav .siteNav .snsNav {
	position: absolute;
	right: 20px;
	bottom: calc( 100% + 65px );
	margin: 0;
}

body.headerNav .siteNav .snsNav li {
	margin: 0 5px;
}

body.headerNav .siteNav .snsNav dd {
	display: none;
}


/* close button ------------------------------------------- */

body.headerNav .siteNavClose {
    display: none;
}



/* on scrolled -------------------------------------------- */

body.headerNav.scrolled {
    padding: 100px 0 0 0;
}

body.headerNav.scrolled .siteHeader {
	height: 100px;
    padding: 5px 0 0 0;
}

body.headerNav.scrolled .siteNav {
	top: 55px;
}


/** Responsive for Tablet & Smart Phone ------------------- **/

@media all and (max-width:1024px) {
	
	body.headerNav {
		padding: 100px 0 0 0;
	}

	
	/* site header ------------------------------------------------ */

	body.headerNav .siteHeader {
		height: 100px;
		padding: 10px 0;
	}

	body.headerNav .siteHeader h1 {
		height: 100%;
	}
	

	/* site common nav -------------------------------------------- */

	body.headerNav .siteNav {
		left: 100%;
		top: 0;
		height: 100%;
	}
	

	/* ナビが開いている時 */
	body.headerNav.openSiteNav .siteNav {
		left: 0;
	}
	
	body.headerNav .siteNavBg {
		display: block;
	}
	
	body.headerNav .siteNavInner {
		position: absolute;
		right: 0;
		top: 0;
		width: 500px;
		height: 100%;
		margin: 0;
		padding: 10px 30px 30px;
		overflow: auto;
		overflow-x: hidden;
		overflow-y: auto;
		background-color: #f0f0f0;
	}

	body.headerNav .siteNav .siteNavBar {
		display: block;
	}
	
	body.headerNav .siteNav .mainNav {
		margin: 0 0 50px;
	}
	
	body.headerNav .siteNav .mainNav ul {
	    display: block;
	}

	body.headerNav .siteNav .mainNav li {
		margin: 10px 0;
		padding: 0;
	}
	
	body.headerNav .siteNav .mainNav li div {
		position: relative;
		left: auto;
		top: auto;
		min-width: 1px;
		max-width: none;
		max-height: none;
		overflow: visible;
		overflow-x: visible;
		overflow-y: visible;
	}
	
	
	body.headerNav .siteNav .mainNav ul ul {
		padding: 5px;
	}
	
	body.headerNav .siteNav .mainNav li li {
		margin: 0;
	}


	
	/* sub nav */
	body.headerNav .siteNav .subNav {
		position: relative;
		left: auto;
		bottom: auto;
		margin: 0 0 50px;
	}
	
	body.headerNav .siteNav .subNav ul {
		display: block;
	}
	
	body.headerNav .siteNav .subNav li {
		margin: 0;
	}
	
	
	/* contact nav */
	body.headerNav .siteNav .contactNav {
		position: relative;
		right: auto;
		bottom: auto;
		margin: 0 0 50px;
	}
	
	
	/* sns nav */
	body.headerNav .siteNav .snsNav {
		position: relative;
		right: auto;
		bottom: auto;
		margin: 0 0 50px;
	}
	
	body.headerNav .siteNav .snsNav li {
		margin: 10px;
	}
	
	body.headerNav .siteNav .snsNav dd {
		display: block;
	}
	
	/* close button */
	body.headerNav .siteNavClose {
		display: block;
	}
	
	
	/* on scrolled -------------------------------------------- */

	body.headerNav.scrolled {
		padding: 60px 0 0 0;
	}

	body.headerNav.scrolled .siteHeader {
		height: 60px;
		padding: 5px 0;
	}

	body.headerNav.scrolled .siteNav {
		top: 0;
	}
}


/** Responsive for Smart Phone ------------------------------- **/

@media all and (max-width:767px) {
	
	body.headerNav {
		padding: 60px 0 0 0;
	}

	
	/* site header ------------------------------------------- */

	body.headerNav .siteHeader {
		height: 60px;
		padding: 5px 0;
	}

	body.headerNav .siteHeader h1 {
		width: calc( 40% - 20px );
		margin: 0 0 0 10px;
	}
	
	body.headerNav .siteNavInner {
		width: calc( 100% - 70px );
	}
	
}



/** ============================================================================


	body.leftNav　　PCで見たとき左側にメニューが開いた状態で表示される　　

	※TB, SPの時はsiteNavと同じハンバーガーメニューになる


================================================================================ **/

body.leftNav {
    padding: 0;
}



/* site common header --------------------------------------------- */

body.leftNav .siteHeader {
    width: 300px;
}

body.leftNav.scrolled .siteHeader {
    height: 100px;
	padding: 10px 0;
}

body.leftNav .siteHeader h1 {
    width: auto;
    margin: 0 20px;
}


/* site common footer -------------------------------------------- */

body.leftNav .siteFooter {
    padding: 50px 50px 50px 350px;
}




/* site common nav ----------------------------------------------- */

body.leftNav .siteNav {
    left: 0;
    width: 300px;
	z-index: 900;
}

body.leftNav .siteNavBg {
    display: none;
}

body.leftNav .siteNavInner {
	top: 100px;
    width: 100%;
	height: calc( 100% - 100px );
    padding: 0 30px;
	overflow: visible;
	overflow-x: visible;
}

body.leftNav .siteNavBar {
	display: none;
}


/* main nav */
body.leftNav .siteNav .mainNav li div {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
}
body.leftNav .siteNav .mainNav li:hover div {
	display: block;
}

body.leftNav .siteNav .mainNav li ul {
    margin: 0 0 0 5px;
}
body.leftNav .siteNav .mainNav li ul::before {
    left: -4px;
    top: 20px;
    transform: rotate(-135deg);
}

/* sub navigation */

/* contact navigation */

/* sns navigation */

/* close button */
body.leftNav .siteNavClose {
    display: none;
}


/* site main --------------------------------------- */

body.leftNav .siteMain {
    margin: 0 0 0 300px;
}


/* page top ---------------------------------------- */

body.leftNav .pageTop {
	left: 0;
	right: auto;
	z-index: 1200;
}


/** Responsive for Tablet -------------------------- */

@media all and (max-width:1024px) {

	body.leftNav {
		padding: 100px 0 0 0;
	}
	
	body.leftNav.scrolled {
		padding: 60px 0 0 0;
	}


	/* site common header ----------- */

	body.leftNav .siteHeader {
		width: 100%;
		height: 100px;
		padding: 10px 0;
	}
	
	body.leftNav.scrolled .siteHeader {
		height: 60px;
		padding: 5px 0;
	}

	body.leftNav .siteHeader h1 {
		width: 20%;
		margin: 0 auto;
	}


	/* site common footer ------------- */

	body.leftNav .siteFooter {
		padding: 50px;
	}


	/* site common nav ---------------- */

	body.leftNav .siteNav {
		left: auto;
		right: 100%;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 1100;
	}

	body.leftNav .siteNavBg {
	    display: block;
	}

	body.leftNav .siteNavInner {
		right: auto;
		left: 0;
		top: 0;
	    width: 300px;
		height: 100%;
	    padding: 10px 30px 30px;
		overflow: auto;
		overflow-x: hidden;
	}
		
	body.leftNav .siteNavBar {
		display: block;
		right: auto;
		left: calc( 100% + 20px );
	}


	body.leftNav .siteNavBar ul {
		flex-direction: row;
	}
	
	body.leftNav .siteNav .mainNav li div {
		display: block;
		position: relative;
		left: auto;
		top: auto;
		width: auto;
		margin: -5px 0 0 0;
	}

	body.leftNav .siteNav .mainNav ul ul {
		margin: 5px 0 0 0;
	}
	body.leftNav .siteNav .mainNav ul ul::before {
	    left: 30px;
	    top: -5px;
	    transform: rotate(-45deg);
	}
	

	body.leftNav .siteNavClose {
		display: block;
	}



	/* site main --------------------------------------- */

	body.leftNav .siteMain {
		margin: 0;
	}
	

	/* ナビ展開時 ---------------------------------------- */
/*
	body.leftNav.openSiteNav .siteHeader,
	body.leftNav.openSiteNav .siteMain,
	body.leftNav.openSiteNav .siteFooter {
		transform: translateX(300px);
	}	
*/
	
	body.leftNav.openSiteNav .siteNav {
		left: auto;
		right: 0;
	}

	body.leftNav.openSiteNav .siteNavBar {
		display: block;
		right: auto;
		left: 300px;
	}
	
	body.leftNav.openSiteNav .siteNavBar ul {
		flex-direction: column;
	}	
}


/** Responsive for Smart Phone --------------------- */

@media all and (max-width:767px) {

	body.leftNav .siteHeader {
		height: 60px;
		padding: 5px 0;
	}
	
	body.leftNav .siteHeader h1 {
		width: 40%;
		margin: 0 0 0 calc( 60% - 20px );
	}
	
	body.leftNav .siteFooter {
		padding: 50px 30px;
	}
	
	body.leftNav .siteNav .siteNav {
		width: calc( 100% - 70px );
	}
	
	body.leftNav .siteNavBar {
		left: 100%;
	}
}



/** ============================================================================


	body.rightNav   PCで見たとき右側にメニューが開いた状態で表示される

	※TB, SPの時はsiteNavと同じハンバーガーメニューになる


================================================================================ **/

body.rightNav {
    padding: 0;
}



/* site common header --------------------------------------------- */

body.rightNav .siteHeader {
    width: 300px;
	left: auto;
	right: 0;
}

body.rightNav.scrolled .siteHeader {
    height: 100px;
	padding: 10px 0;
}

body.rightNav .siteHeader h1 {
    width: auto;
    margin: 0 20px;
}



/* site common footer -------------------------------------------- */

body.rightNav .siteFooter {
    padding: 50px 350px 50px 50px;
}



/* site common nav ----------------------------------------------- */

body.rightNav .siteNav {
    left: auto;
	right: 0;
    width: 300px;
}

body.rightNav .siteNavBg {
    display: none;
}

body.rightNav .siteNavInner {
	top: 100px;
    width: 100%;
	height: calc( 100% - 100px );
    padding: 0 30px;
	overflow: visible;
	overflow-x: visible;
}

body.rightNav .siteNavBar {
    display: none;
}


/* main nav */
body.rightNav .siteNav .mainNav li div {
	display: none;
	position: absolute;
	right: 100%;
	top: 0;
	width: 100%;
}
body.rightNav .siteNav .mainNav li:hover div {
	display: block;
}

body.rightNav .siteNav .mainNav li ul {
    margin: 0 5px 0 0;
}
body.rightNav .siteNav .mainNav li ul::before {
    left: auto;
	right: -4px;
    top: 20px;
    transform: rotate(45deg);
}

/* sub navigation */

/* contact navigation */

/* sns navigation */

/* close button */
body.rightNav .siteNavClose {
    display: none;
}


/* site main --------------------------------------- */

body.rightNav .siteMain {
    margin: 0 300px 0 0;
}


/* page top ---------------------------------------- */

body.rightNav .pageTop {
	right: 0;
	z-index: 1200;
}


/** Responsive for Tablet & Smart Phone ----------- */

@media all and (max-width:1024px) {
	
	body.rightNav {
		padding: 100px 0 0 0;
	}
	
	body.rightNav.scrolled {
		padding: 60px 0 0 0;
	}
	
	
	/* site common header --------------------------------------------- */

	body.rightNav .siteHeader {
		width: 100%;
		right: 0;
	}
	
	body.rightNav.scrolled .siteHeader {
		height: 60px;
		padding: 5px 0;
	}
	
	body.rightNav .siteHeader h1 {
	    width: 20%;
	    margin: 0 auto;
	}
	
	/* site common footer -------------------------------------------- */

	body.rightNav .siteFooter {
		padding: 50px;
	}

	
	/* site common nav ----------------------------------------------- */

	body.rightNav .siteNav {
		left: 100%;
		right: auto;
		top: 0;
		width: 100%;
		height: 100%;
	}
	
	body.rightNav .siteNavBg {
	    display: block;
	}
	
	body.rightNav .siteNavInner {
		right: 0;
		top: 0;
	    width: 300px;
		height: 100%;
	    padding: 10px 30px 30px;
		overflow: auto;
		overflow-x: hidden;
	}
	
	body.rightNav .siteNavBar {
		display: block;
		left: auto;
		right: calc( 100% + 20px );
	}
	
	body.leftNav .siteNavBar ul {
		flex-direction: row-reverse;
	}
	
	body.rightNav .siteNav .mainNav li div {
		display: block;
		position: relative;
		right: auto;
		top: auto;
		width: auto;
		margin: -5px 0 0 0;
	}
	
	body.rightNav .siteNav .mainNav ul ul {
		margin: 5px 0 0 0;
	}
	
	body.rightNav .siteNav .mainNav ul ul::before {
		left:30px;
		right: auto;
		top: -5px;
		transform: rotate(-45deg);
	}
	
	body.rightNav .siteNavClose {
		display: block;
	}
	
	
	/* site main --------------------------------------- */

	body.rightNav .siteMain {
		margin: 0;
	}
	
	
	/* ナビ展開時 ---------------------------------------- */

	body.rightNav.openSiteNav .siteNav {
		left: 0;
		right: auto;
	}
	
	body.rightNav.openSiteNav .siteNavBar {
		display: block;
		right: 300px;
		left: auto;
	}
	
	body.rightNav.openSiteNav .siteNavBar ul {
		flex-direction: column;
	}
}

/** Responsive for Smart Phone --------------------- */

@media all and (max-width:767px) {

	body.rightNav .siteHeader {
		height: 60px;
		padding: 5px 0;
	}
	
	body.rightNav .siteHeader h1 {
		width: 40%;
		margin: 0 0 0 20px;
	}
	
	body.rightNav .siteFooter {
		padding: 50px 30px;
	}
	
	body.rightNav .siteNav .siteNav {
		width: calc( 100% - 70px );
	}
	
	body.rightNav .siteNavBar {
		right: 100%;
	}	
}
