@charset "UTF-8";
/* 中田屋 上書き（2/3）CSS Document */

/* 共通要素を設定
--------------------------------------------------------------------------------------- */
:root {
--MainColor: #000;
--SubColor: #009882;
--BGColor: #EEE;
--BG-Label-New: #FE0000;
--AccentColor: #999;
--A-Color: #37339C;
--A-Hover-Color: #262376;
--navbar-Top-Line: 5px solid #000;
--Border: 1px solid #DEE2E6;
--BorderDotted: 1px dotted rgba(0, 0, 0, 0.1);
--BodyText: rgb(33, 37, 41);
--navbar-BG-Color-01: rgba(255, 255, 255, 0.01);
--navbar-BG-Color-02: #336F2A;
--navbar-BG-Color-03: #3D3F7D;
--Footer-BG-Color-01: #A5BEC4;
--Footer-BG-Color-02: #222;
--Footer-BG-Color-03: #000;
--Footer-BG-Color-04: #000;
--Footer-a: #CCC;
--Footer-ListLine: 1px solid rgba(255,255,255,0.2);
}
.hoge {
	color: rgba(222,184,135,1.00);
}

/* ページ左部の黒い帯
------------------------------------------------------------------------------------------------- */
#Left-BANNER {
z-index: 1040;
display: block;
width: 80px;
height: 100%;
position: fixed;
background-color: #000;
box-shadow: 8px 0 24px 0 #000;
background-image: url(../img_com/Logo-Left-BANNER.svg);
background-position: center bottom;
background-repeat: no-repeat;
text-indent: -9999px;
top: 0;
transition: all  0.3s ease;
}
#Left-BANNER:hover {
background-color: #1B1B1B;
}

#Left-BANNER img { /* ありがとう。かりんとう。の白文字 */
position: absolute;
top: 30px;
width: 50%;
right: 25%;
}

/* 1300px以下で細くなる */
@media (max-width: 1300px) {
	#Left-BANNER {
	width: 4%;
	background-size: 80% auto;
	}
}
/* デスクトップ以下で非表示 */
@media (max-width: 991.98px) {
	#Left-BANNER {
	display: none;
	}
}

/* nav/footerのバリエーションを選択
------------------------------------------------------------------------------------------------- */
#Header-01 {
display: block;
/*background-image: url(../img_com/BG_Header-2.png);*/
background-color: rgba(255, 255, 255, 0.95);
}
#Header-02 {display: block;}
#Header-03 {display: block;}

/* フッタ上部のページナビ表示/非表示
------------------------------------------------------------------------------------------------- */
#PageNavi {
display: block;
margin-top: 2rem;
}

/* フッタのバリエーションを選択
------------------------------------------------------------------------------------------------- */
#Footer-01 {display: none;}
#Footer-02 {display: none;}
#Footer-03 {display: none;}
#Footer-04 {
display: block;
color: #CCC;
}

/* PageTopのバリエーションを選択
------------------------------------------------------------------------------------------------- */
#PageTop-01 {display: none;} /* 半透明白背景（丸）に黒い矢印 */
#PageTop-02 {display: none;} /* 半透明グレー背景（角丸矩形）に白い文字 */
#PageTop-03 {display: block;} /* 半透明グレー背景（丸）に白い矢印 */

/* nav
------------------------------------------------------------------------------------------------- */
.navbar {
padding-top: 0;
}
.navbar-Top-Line {
border-top: var(--navbar-Top-Line);
}
.navbar-BG-Color-01 {background-color: var(--navbar-BG-Color-01);}
.navbar-BG-Color-02 {background-color: var(--navbar-BG-Color-02);}
.navbar-BG-Color-03 {background-color: var(--navbar-BG-Color-03);}

/* 別言語に対する装飾 */
.nav-item .Nav-Lang {
display: block;
font-size: 0.8rem;
color: #999;
text-align: center;
}
/* デスクトップ以下 */
@media (max-width: 991.98px) {
	/* 別言語に対する装飾 */
	.nav-item .Nav-Lang {
	display: inline-block;
	padding-left: 10px;
	}
}

/* お問い合せのバナー
------------------------------------------------------------------------------------------------- */
.Nav-Tel  {
position: absolute;
top: 0.5rem;
right: 1rem;
}
/* デスクトップ以下 */
@media (max-width: 991.98px) {
	.Nav-Tel  {
	top: 1.8rem;
	right: 15%;
	}
}

.Nav-Tel a {
	display: block;
	width: 243px;
	height: 52px;
	background-image: url(../img_com/Nav-Tel.svg);
	background-repeat: no-repeat;
	text-indent: -9999px;
	background-size: 100% auto;
}
/* デスクトップ以下 */
@media (max-width: 991.98px) {
	.Nav-Tel a {
	width: 180px;
	height: 40px;	
	}
}

.Nav-Tel a:hover {
opacity: 0.5;
}

/* TOGGLER
------------------------------------------------------------------------------------------------- */
.navbar-toggler {
padding: 0;
font-size: 1.25rem;
line-height: 1;
background-color: transparent;
border: none;
border-radius: 0;
}
.navbar-dark .navbar-toggler-icon {
background-image: url("../img_com/btn_MainMenu_Open.svg");
}

.navbar-toggler-icon {
width: 2em;
height: 2em;
}

/*--------- アニメーション▽ ---------- */
.navbar-dark .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 0px;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  position: relative;
}
.navbar-dark .navbar-toggler-icon {
  background-image:none; /* この行で背景画像を無効化 */
  background-color: #000; /* 3本線の色 */
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  transition: ease .8s;
}

/* 3本のバーそれぞれの座標を設定 */
.navbar-toggler-icon:nth-of-type(1) {top: 7px;}
.navbar-toggler-icon:nth-of-type(2) {top:14px;}
.navbar-toggler-icon:nth-of-type(3) {top:21px;}

/* メニューが開いている時の　3本のバーそれぞれの座標および角度を設定 */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1) {
top:13px;
transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(2) {
opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3) {
top:13px;
transform: rotate(-45deg);
}
/*---------- アニメーション△ ----------*/

/* ハイライト */
#HOME .nav-HOME a,
#KODAWARI .nav-KODAWARI a,
#PRODUCTS .nav-PRODUCTS a,
#COMPANY .nav-COMPANY a,
#ACCESS .nav-ACCESS a,
#CONTACT .nav-CONTACT a,
#INFORMATION .nav-INFORMATION a,
#BLOG .nav-BLOG a {
background-color: rgba(0, 0, 0, 1.00);
color: #FFF!important;
}

/* ロゴ --------------------------------------------------------------------------------------- */
/* ヘッダ内のロゴ */
.navbar-brand {
display: block;
margin: 0.5rem 0;
text-indent: -9999px;
/*
width: 73px;
height: 95px;
*/
width: 50px;
height: 65px;
background-position: center center;
background-image: url(../img_com/LogoMark.svg);
background-size: 100% auto;
background-repeat: no-repeat;
}
.navbar-brand a {
}
.navbar-brand:hover {
opacity: 0.7;
}

/* モバイル（縦）以下 */ 
@media (max-width: 991.98px) {
	.navbar-brand {
	width: 31px!important;
	height: 40px!important;
	}
}
/* フッタ内のロゴ */
footer .navbar-brand {
	display: block;
	text-indent: -9999px;
	width: 200px!important;
	height: 200px!important;
	background-position: center center;
	/*background-image: url("../img_com/WebClipIcon.png");*/
	background-image: url("../img/Logo.jpg");
	background-size: 100% auto;
	background-repeat: no-repeat;
/*	border: 1px solid #2D2D2D;*/
	-webkit-box-shadow: 0 0 20px 0 #FFF;
	box-shadow: 0 0 20px 0 #FFF;
	margin-bottom: 2rem;
}
/* モバイル（縦）以下 */ 
@media (max-width: 575.98px) {
	footer .navbar-brand {
	width: 30vw!important;
	height: 30vw!important;
	}
}

.navbar-brand-Dark a {
background-image: url("../img_com/LogoMark-Dark.svg");
}

.navbar .navbar-nav {
width: 100%;
display: flex;
justify-content: space-between;
}

.navbar .nav-item {
width: auto;
flex-grow: 1;
text-align: center;
}
.navbar .nav-link {
border-radius: 2px;
width: 100%!important;
height: 100%!important;
padding-top: 0.5rem!important;
padding-bottom: 0.5rem!important;
color: #555!important;
font-size: 0.95rem;
}

.navbar .nav-link:hover {
color: rgba(251,251,251,0.50);
background-color:rgba(0,0,0,0.10);
}

/* デスクトップ以下 */
@media (max-width: 991.98px) {
/* プルダウン内 */ 
	.navbar-nav .nav-link {
	margin: 2px 0; 
	text-align: left;
	width: 100%!important;
	height: 100%!important;
	padding: 0.8rem!important;
/*	color: #FFF!important;*/
	}
	.nav-item {
	border-left: none;
	text-align: left;
	border-bottom: 1px solid rgba(255,255,255,0.10);
	}
} 

/* パンくずリストのバリエーション
------------------------------------------------------------------------------------------------- */
.breadcrumb {
margin-top: 110px; /* ヘッダがfixdによるコンテンツ部の余白 */
}
.BreadCrumb-01 {
background-color: transparent!important;
padding: 0!important;
}
.BreadCrumb-01 .breadcrumb-item + .breadcrumb-item::before {
content: "〉";
}

.BreadCrumb-02 li:first-child a:before {
/*家アイコン*/
content: '';
display: inline-block;
width: 1.5rem;
height: 0.9rem;
background-image: url("../img_com/Icon-HOME.svg");
background-size: contain;
background-repeat: no-repeat;
}
.BreadCrumb-02 {
background-color: transparent!important;
padding: 0!important;
}
.BreadCrumb-02 .breadcrumb-item + .breadcrumb-item::before {
/*▶アイコン*/
content: '';
display: inline-block;
width: 1rem;
height: 0.8rem;
background-image: url("../img_com/Icon-Arrow-Gray.svg");
background-size: contain;
background-repeat: no-repeat;
vertical-align: middle;
position: relative;
top: -0.1rem;
left: 0rem;
}

/* コンテンツ --------------------------------------------------------------------------------------- */
.ContentsPadding { /* ヘッダがfixdによるコンテンツ部の余白 */
padding-top: 130px;
}
/* デスクトップ以下 */
@media (max-width: 991.98px) {
	.ContentsPadding { /* ヘッダがfixdによるコンテンツ部の余白 */
	padding-top: 130px;
	}
}

/* アンカーに対する調整 */
.AnchorPadding {
margin-top: -113px;
padding-top: 113px;
}

#Contents-Column {
display: flex;
justify-content: space-between;
margin-bottom: 3rem;
}
#Contents-Narrow {
position: relative;
}
.Contents-NarrowSticky {
position: sticky;
position: -webkit-sticky;
/*top: 1rem;*/
top: 130px;
margin-bottom: 3rem;
}

#Contents-Wide {
margin-bottom: 3rem;
}

/* タブレット以下 */
@media (max-width: 767.98px) {
	#Contents-Column {
	display: flex;
	flex-direction: column-reverse;
	}
	#Contents-Narrow {
	}
	#Contents-Wide {
	padding-bottom: 1rem;
	margin-bottom: 4rem;
	background-image: url(../img_com/Logo-Border.svg);
	background-position: center bottom;
	background-repeat: no-repeat;
	}
}

/* PageTop --------------------------------------------------------------------------------------- */
.PageTop {
position: fixed;
bottom: 20px;
right: 15px;
display: none;
text-align: center;
}

.PageTop a {
text-indent: -9999px;
display: block;
width: 44px;
height: 44px;
opacity: 0.5;
border-radius: 100px;
background-repeat: no-repeat;
background-position: center center;
}
.PageTop.PageTop-Text a {
width: auto;
height: auto;
color: #FFF;
line-height: 1;
padding: 15px;
text-indent: 0;
white-space: nowrap;
background-color: #000;
border-radius: 4px;
}
.PageTop.PageTop-Dark a {
background-image: url("../img_com/PageTopArrow-Dark.svg");
background-color: #FFF;
}

.PageTop.PageTop-Light a {
background-image: url("../img_com/PageTopArrow-Light.svg");
background-color: #000;
}
.PageTop a:hover {
opacity: 1;
text-decoration: none;
}

/* ページナビ
------------------------------------------------------------------------------------------------- */
.List-PageNavi {
margin: 0;
padding: 0;
}

.List-PageNavi li {
font-size: 0.9em;
display: inline;
white-space: nowrap;
}
.List-PageNavi li:before {
content: "｜";
color: #CCC;
padding-right: 5px;
}
.List-PageNavi li:first-child:before {
content: none;
}
/* タブレット以下 */
@media (max-width: 767.98px) {
	.List-PageNavi li {
	line-height: 2rem;
	}
}

/* フッタ
------------------------------------------------------------------------------------------------- */
.Footer-BG-Color-01 {background-color: var(--Footer-BG-Color-01);}
.Footer-BG-Color-02 {background-color: var(--Footer-BG-Color-02);}
.Footer-BG-Color-03 {background-color: var(--Footer-BG-Color-03);}
.Footer-BG-Color-04 {background-color: var(--Footer-BG-Color-04);}

footer a,
footer a:hover {
text-decoration: none;
color: var(--Footer-a)!important;
}
footer .list-ArrowGray li {
border-bottom: var(--Footer-ListLine);
}
/* コンテンツ
------------------------------------------------------------------------------------------------- */
.Heading-PageTitle {
Heading-PageTitlmargin: 1rem 0 2rem;
padding: 1rem 0 1rem;
text-align: center;
font: normal 1.8rem/1 "正楷書CB1";
border-bottom: var(--Border);
color: var(--MainColor);
/*border-top: var(--Border);*/
}

.Heading-Page-IMG {
margin-bottom: 3rem;
border-bottom: 1px solid #CCC;
}

.Heading-ContentsTitle {
margin-bottom: 2rem;
padding: 0 0 0.3em 1.3em;
line-height: 1.1;
font-size: 1.3em;
background-image: url("../img_com/BG-HeadLine-01.svg");
background-repeat: no-repeat;
background-size: 1em auto;
overflow-y: visible;
border-bottom: var(--Border);
color: var(--MainColor);
font-family: "正楷書CB1";
font-weight: normal;
}

/* サイドナビ
------------------------------------------------------------------------------------------------- */
/* サイドナビの見出し */
.Heading-SideNavi {
padding: 0 0 0.45em 1.3em;
line-height: 1.1;
font-size: 1.2em;
background-image: url("../img_com/BG-HeadLine-01.svg");
background-repeat: no-repeat;
background-size: 1em auto;
overflow-y: visible;
border-bottom: var(--Border);
color: var(--MainColor);
font-family: "正楷書CB1";
font-weight: normal;
}

/* サイト内検索を幅一杯にする */
.cse .gsc-control-cse,
.gsc-control-cse {
padding: 1em 0!important;
}

/* TOPページ
------------------------------------------------------------------------------------------------- */


/* Summaryページ
------------------------------------------------------------------------------------------------- */
.Heading-EntrySummary-Title,
.Heading-EntrySummary-Title a {
font-size: 1.4em;
color: #AC5516;
}

/* serialNavi */
.serialNavi {
width: 100%;
margin: 20px 0;
padding: 20px 0;
display: flex;
list-style: none;
border-top: var(--Border);
border-bottom: var(--Border);
clear: both;
background-color: #F4F4F4;
text-align: center;
}
.serialNavi li {
width: 320px;
}
.serialNavi li:first-child {
text-align: left;
}
.serialNavi li:last-child {
text-align: right;
}

.Block_News {
width: 100%;
}
.Block_News_Article {
display: flex;
padding: 12px 8px 0;
margin-bottom: 8px;
border-bottom: var(--BorderDotted);
}
.Block_News_Article:nth-child(3n) {
}
.Block_News_Article .Thumbnail {
font-display: block;
max-width: 150px;
width: 150px;
margin-right: 20px;
overflow: hidden;
position: relative;
}
.Block_News_Article .Thumbnail img {
left: 0;
top: 0!important;
width: 150px;
width: 100%;
position: relative;
border-radius: 4px;
}

.Block_News_Article_Text {
width: auto;
width: 514px;
}
.Block_News_Article_Text h3 {
color: #20296F;
font-size: 18px;
}
.Block_News_Article_Text p .Summary {
color: #666;
font-size: 14px;
}

/* お問い合せのフロー
------------------------------------------------------------------------------------------------- */
.ul-Flow {
margin: 0;
padding: 0;
}
.ul-Flow li {
display: inline-block;
padding: 0.3rem 1rem;
margin-right: 0.5rem;
border-radius: 4px;
border: var(--Border);
background-color: #FFF;
}
.ul-Flow li:last-child {
margin-right: 0;
}
.ul-Flow li.Active {
background-color: #EEE;
}
.ul-Flow li.Active-Error {
background-color: #FF0004;
color: #FFF;
}
.ul-Flow li.Active-Success {
background-color: #467CFF;
color: #FFF;
}
.ul-Flow li.Active-Confirm {
background-color: #467CFF;
color: #FFF;
}

/* 必須 */
.LabelReq {
display: inline;
background-color: red;
border-radius: 0.25rem;
font-weight: normal;
padding: 1px 5px;
font-size: 0.7em;
color: #FFF;
margin: 0 5px;
}

/* カレンダー横のアイコン */
.ui-datepicker-trigger {
display: inline;
margin: 0.3rem 0.5rem;
height: 1.5rem;
cursor: pointer;
}

/* 必須のエラーメッセージ */
.ErrorMSG {
margin: 0;
padding: 0.3em 0 0;
font-size: 0.8em;
color: red;
}

.ErrorMSG:before {
content: "★"
}

/* SDGsページ
------------------------------------------------------------------------------------------------- */
.Icon-SDGs {
height: 60px;
float: right;
margin-top: -20px;
}
/* デスクトップ以下 */
@media (max-width: 991.98px) {
	.Icon-SDGs {
/*	height: 40px;*/
	display: block;
	margin-top: 5px;
	float: none;
	}
}

/* タブレット以上、デスクトップ以下で表示。それ以外では非表示 */
.text {
display: none;
}
/* タブレット以上～デスクトップ以下 */ 
@media (min-width: 768px) and (max-width: 991.98px) {
	.text {
	display: block;
	background-color: antiquewhite;
	width: 100%;
	height: 300px;
	}
}

/* Bootstrapに追記 --------------------------------------------------------------------------------------- */
/* デスクトップ以上 */
@media (min-width: 992px) {
	.mt-lg-6 {margin-top: 4.5rem;}
	.mt-lg-7 {margin-top: 6rem;}
	.mt-lg-8 {margin-top: 7.5rem;}
	.mt-lg-9 {margin-top: 9rem;}
	.mt-lg-10 {margin-top: 10.5rem;}
}

/* @media リスト --------------------------------------------------------------------------------------- */
/* モバイル（縦）以下 */ 
@media (max-width: 575.98px) {
}
/* モバイル（横）以上 */
@media (min-width: 576px) {
}
/* タブレット以下 */
@media (max-width: 767.98px) {
}
/* タブレット以上 */
@media (min-width: 768px) {
}
/* デスクトップ以下 */
@media (max-width: 991.98px) {
}
/* デスクトップ以上 */
@media (min-width: 992px) {
}
/* 大画面以下 */
@media (max-width: 1199.98px) {
}
/* 大画面以上 */
@media (min-width: 1200px) {
}
