@charset "UTF-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,b, u, i, center,figure,nav,footer,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: normal;
	line-height: 1.6;
	font-size: 18px;
	font-family: "M PLUS Rounded 1c", serif;
	color: #333300;
}
body {
	background: #FFF;
}
ol,ul,li,dl,dt,dd {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: underline;
	color: #1A5FAD;
	outline: none;
	cursor: pointer;
}
a:hover {
	text-decoration: underline;
}
img {
	vertical-align: bottom;
	border: none;
	-webkit-backface-visibility: hidden;
	width: 100%;
}
small {
	font-size: 70%;
	font-weight: inherit;
}
#wrapper {
	overflow: hidden;
	width: 100%;
}
a:hover img {
	filter: brightness(120%);
	transition: all .3s;
}
section {
	clear: both;
}
/* テキストの装飾---------------------------------------------------------------------------------------------*/
.red {
	color: #ff0000;
}
.tx_Dred {
	color: #cc0000;
}
.gold {
	color: #E9D200;
}
.yellow {
	color: #ffff00;
}
.tx_white {
	color: #ffffff;
}
.tx_whiteLine { /* 白枠文字 */
	text-shadow:
		 2px  2px 1px #ffffff,
		-2px  2px 1px #ffffff,
		 2px -2px 1px #ffffff,
		-2px -2px 1px #ffffff,
		 2px  0px 1px #ffffff,
		 0px  2px 1px #ffffff,
		-2px  0px 1px #ffffff,
		 0px -2px 1px #ffffff;
}
.tx_blackLine { /* 黒枠文字 */
	text-shadow:
		 2px  2px 1px #333300,
		-2px  2px 1px #333300,
		 2px -2px 1px #333300,
		-2px -2px 1px #333300,
		 2px  0px 1px #333300,
		 0px  2px 1px #333300,
		-2px  0px 1px #333300,
		 0px -2px 1px #333300;
}
.tx_shadow {
    text-shadow:
		0px 0px 0 #ffffff,
		1px 1px 0 #ffffff,
		2px 2px 0 #ffffff,
		3px 3px 0 #cccccc;
}
.red, .tx_Dred, .gold, .blue, .tx_blue, .yellow, .orange, .tx_orange, .tx_Lred, .tx_white {
    font-size:inherit;
	font-weight: inherit;
}
.material-symbols-outlined {
	color: #ffffff;
	/* <span class="material-symbols-outlined">magic_button</span>は★ */
	font-variation-settings: 'FILL' 0, 'wght' 0, 'GRAD' 0, 'opsz' 0;
}
/* テキスト下線装飾----------------------------------------------------------------------------------------- */
mark {
	font-size:inherit;
	font-weight: inherit;
	color: inherit;
}
.mark_sakura {
    background: linear-gradient(transparent 50%, #ffccff 80%);
}
.mark_green {
    background: linear-gradient(transparent 60%, #33cc33 100%);
}
.mark_yellow {
    background: linear-gradient(transparent 50%, #ffff00 107%);
}
.mark_red {
    background: linear-gradient(transparent 80%, #ff6666 90%);
}
.mark_blue {
    background: linear-gradient(transparent 50%, #003f98 120%);
}
.mark_orange {
	background: linear-gradient(transparent 60%, #ff9900 100%);
}
.mark_line {
	background: linear-gradient(transparent 90%, #ff3300 95%);
}
.lead {
	padding: 20px 0px;
	font-size: 130%;
}
.txt {
	font-size: 145%;
	line-height: 190%;
}
.tel-txt .inner {
	width: 780px;
	margin: 0px auto;
	padding: 40px 0px;
}
.tel-txt .inner p {
	margin: 0px auto;
	padding: 10px;
	border: 1px solid #0D2137;
	font-size: 110%;
	line-height: 180%;
}
.tel-txt .inner span.tel {
	font-size: 140%;
	color: #E9D200;
}
/* 見出し装飾------------------------------------------------------------------------------ */
.tx_Uline {
	position: relative;
	margin-bottom: 1em;
}
.tx_Uline:before {
	content: '';
	position: absolute;
	bottom: -5px;
	display: inline-block;
	width: 60px;
	height: 5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: black;
	border-radius: 2px;
}
.midashi_slash { /* \見出し/ */
	position: relative;
	display: inline-block;
	width: fit-content;
	max-width: 750px;
}
.midashi_slash:before, .midashi_slash:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 15%;
	height: 6px;
	background-color: #666666;
}
.midashi_slash:before {
	left:0;
	transform: rotate(60deg);
}
.midashi_slash:after {
	right: 0;
	transform: rotate(120deg);
}
/* レイアウトの装飾-----------------------------------------------------------------------------------------*/
.col { /* 横並びレイアウト真ん中寄揃え */
	width: fit-content;
	max-width: 750px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.row { /* 縦並びレイアウト左揃え */
	width: fit-content;
	max-width: 750px;
	margin: 0 auto;
	display: flex;
}
.column {
	margin: 0px auto;
	margin-bottom: 40px;
	text-align: center;
}
.center {
	text-align: center;
	margin: 0px auto;
}
/* リンクボタンの装飾-----------------------------------------------------------------------------------------*/
.push { /* ボタンの装飾 */
	/*display: inline-block;*/
	position: relative;
	padding: 0;
	text-decoration: none;
	border-radius: 15px;
	border-bottom: solid 5px #000033;/*ボタン色より暗めに*/
	border-right: solid 5px #666699;/*ボタン色より暗めに*/
}
.push:before {
	bottom: -5px;
	left: -1px;
	border-color: transparent;
	border-bottom-color: #FFF;
}
.push:after {  
	top: -1px;
	right: -5px;
	border-color: #FFF;
	border-bottom-color: transparent;
}
.push:before, .push:after {
	content: " ";
	position: absolute;
	width: 0;
	height: 0;
	border-width: 0px 6px 6px 0px;
	/*border-style: solid;*/
}
.push:active {
	/*ボタンを押したとき*/
	border:none;
	-webkit-transform: translate(6px,6px);
	transform: translate(6px,6px);
}
.push:active:after, .push:active:before {
	content: none;/*ボタンを押すと線が消える*/
}
/* header ---------------------------------------------------------------------------------------------*/
header {
	width: 100%;
	overflow: hidden;
	margin: 0px auto;
	padding: 5px 0px;
	position: fixed;
	top:0px;
	background: #FFF;
	z-index: 4000;
	border-bottom: 1px solid #eee;
}
header .inner {
	width: 100%;
	max-width: 750px;
	margin: 0px auto;
	display:flex;/*横並び*/
	align-items:center;/*天地センター*/
	flex-wrap:wrap;
	justify-content:space-between;
}
header .logo {
	float: left;
    width: 380px;
	padding-top: 0px;
}
.logo img {
    width: 60%;
}
header .inner .right {
	/*width: 300px;*/
	width: fit-content;
}
header .inner .right img {
	width: 100%;
}
header h1 {
	width: 1100px;
	margin: 0px auto;
	font-size: 70%;
}
#contents {
	padding-top: 90px;
}
/* スライダーんとこ---------------------------------------------------------------------------------------------*/
.main {
	width: 100%;
	height: auto;
	overflow: hidden;
	padding-top: 15px;
	background: url(../images/main-back.png) repeat-x;
	background-position-y: -120px;
}
.main .inner {
    width: 1100px;
    text-align: center;
	overflow: hidden;
	margin: 1.25em auto 0 auto;
}
.main .inner img {
	width: auto;
	margin: 0 auto;
}
.main section.bnr {
	padding: 10px 0 60px;
}
/* ハンバーガーメニュー ------------------------------------------------------------------------------*/
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
	position: fixed; /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	z-index: 999;
	/*ナビのスタート位置と形状*/
	top: 0;
	right: -120%;
	width: 100%;
	height: 100vh;/*ナビの高さ*/
	background: #000066;
	transition: all 0.6s;/*動き*/
}
#g-nav.panelactive { /*アクティブクラスがついたら位置を0に*/
	right: 0;
}
#g-nav.panelactive #g-nav-list { /*ナビゲーションの縦スクロール*/
	/*ナビの数が増えた場合縦スクロール*/
	position: fixed;
	z-index: 999; 
	width: 100%;
	height: 100vh;/*表示する高さ*/
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#g-nav ul { /*ナビゲーション*/
	position: absolute; /*ナビゲーション天地中央揃え*/
	z-index: 999;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 85%;
}
#g-nav li { /*リストのレイアウト設定*/
	list-style: none;
	text-align: center;
	padding-top: 1.5em;
	border-bottom: 1px solid #ffff00;
}
#g-nav li a {
	color: #ffff00;
	text-decoration: none;
	padding: 0.5em 0;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: 135%;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
	position: fixed;
	z-index: 9999;/*ボタンを最前面に*/
	top: 10px;
	right: 10px;
	cursor: pointer;
	width: 80px;
	height: 70px;
}
.openbtn span { /*×に変化*/
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background-color: #cc6600;
	width: 45%;
}
.openbtn span:nth-of-type(1) {
	top: 15px;	
}
.openbtn span:nth-of-type(2) {
	top: 30px;
}
.openbtn span:nth-of-type(3) {
	top: 45px;
}
.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 50%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 50%;
}
/* bnr--------------------------------------------------------------------------------------------*/
.bnr {
	width: 100%;
	margin: 0 auto;
	padding: 70px 0px;
}
.bnr img {
	width: 100%;
	margin: 0 auto;
}
.bnr .inner {
	width: fit-content;
	margin: 0 auto;
}
.bnr .inner img {
	border-radius: 10px;
	border: 3px solid #ffff00;
}
/* 共通パーツ ------------------------------------------------------------------------------------------------*/
section#stock, section#pro, section#shop {
	padding-top: 2em;
	padding-bottom: 1em;
}
h2 span.tx_Uline {
	font-size: 150%;
}
section h2, section h2 span {
	color: #333300;
	text-align: center;
	width: fit-content;
	margin: 0 auto 1em auto;
	line-height: 2em;
}
section h2 span.tx_Uline:before {
	background: #000033;
}
/* 専門店として --------------------------------------------------------------------------------------------*/
section#pro {
	background: #000066;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	align-content: stretch;
}
section#pro .inner ul.pro {
	width: fit-content;
	max-width: 1000px;
	margin: 0 auto;
}section#pro h2, section#pro h2 span {
	color: #ffffff;
	text-align: center;
	width: fit-content;
	margin: 0 auto;
}
section#pro h2 span.tx_Uline:before {
	background: #ccffff;
}
section#pro {
	padding-bottom: 3em;
}
/*** YouTube **************************************************/
.youtube {
	width: 80%;
	margin: 1.5em auto 0 auto;
	height: 0;
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
}
.youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	text-align: center;
}
/* 在庫情報 ------------------------------------------------------------------------------------------------*/
section#pro .inner,
section#stock .inner {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}
section.stock .inner .stock {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin-bottom: 5em;
}
section.stock .inner .stock iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
section.stock a.push { /*『在庫情報をもっと見る』*/
	background-color: #0000ff;
	color: #ffff00;
	font-weight: bold;
	padding: 0.5em;
	border-radius: 10px;
	letter-spacing: 0.1em;
	font-size: 175%;
}
/* 専門店として --------------------------------------------------------------------------------------------*/
section#pro .inner ul.pro li { /* 横並び表示 */
	width: 95%;
	margin: 2em auto 0 auto;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}
section#pro .inner ul.pro li:nth-child(odd) { /* 奇数行のみ左に画像 */
	flex-direction: row-reverse;
}
section#pro .inner ul.pro li .col h3 {
	font-size: 130%;
	font-weight: bold;
	margin-bottom: 0.5em;
	margin-right: 0.5em;
}
section#pro .inner ul.pro li:nth-child(odd) .col { /* 奇数行のテキストを左詰め */
	align-items: flex-end;
}
section#pro .inner ul.pro li:nth-child(even) .col { /* 偶数行のテキストを右詰め */
	align-items: flex-start;
}
section#pro .inner ul.pro li:nth-child(even) .col h3:before { /*『◀』*/
	content: "◀";
	margin-left: 0.25em;
}
section#pro .inner ul.pro li:nth-child(odd) .col h3:after { /*『▶』*/
	content: "▶";
	margin-right: 0.25em;
}
section#pro .inner ul.pro li .col p {
	color: #ffffff;
}
section#pro .inner ul.pro ul.kuchikomi { /* Google,csn,Goo */
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
section#pro .inner ul.pro ul.kuchikomi li {
	color: #ffffff;
	width: fit-content;
	margin: 0.15em 0 0 0;
}
section#pro .inner ul.pro ul.kuchikomi li:nth-child(odd) {
	flex-direction: row;
}
section#pro .inner ul.pro ul.kuchikomi li span:nth-of-type(2) {
	color: inherit;
	font-weight: bold;
	margin-left: 1em;
}
section#pro .inner ul.pro ul.kuchikomi li:nth-of-type(2) span:nth-of-type(2) {
	margin-left: 2em;
}
section#pro .inner ul.pro ul.kuchikomi li:nth-of-type(3) span:nth-of-type(2) {
	margin-left: 3em;
}
section#pro .inner ul.pro li .col p small {
	color: inherit;
}
section#pro .inner ul.pro li:nth-child(even) .col { /* 偶数行の見出しとテキスト全体 */
	margin-left: 0.5em;
}
section#pro .inner ul.pro li:nth-child(odd) .col { /* 奇数行の見出しとテキスト全体 */
	margin-right: 0.5em;
}
section#pro .inner ul.pro li img { /* イメージ画像 */
	width: 40%;
}
section#pro .inner ul.pro li .col a.push { /* 春日部工場LPページリンク */
	background: #ff3399;
	color: #ffffff;
	font-weight: bold;
	padding: 0.25em 1em;
	margin: 1.25em; 
}
/* 店舗情報 ------------------------------------------------------------------------------------------------*/
.shop-list {
    width: 100%;
}
.shop-list .inner {
    width: 1100px;
    margin: 0px auto;
}
.shop-list p.shop_logo {
	padding-bottom: 2.5em;
	text-align: center;
	width: fit-content;
	margin: 0 auto;
}
.shop-list p.shop_logo img { /* お客様、社員、社会に必要とされる企業の創造、の画像 */
	width: 70%;
	margin: 0 auto;
}
.shop-block {
	width: 100%;
	margin: 0px auto;
	margin-bottom: 20px;
	display: flex;/*横並び*/
	align-items: center;/*天地センター*/
	flex-wrap: wrap;
	justify-content: space-between;
}
.shop-block .map {
	width: 550px;
}
.shop-block .txt {
	width: 500px;
}
.shop-block .txt p {
    margin-bottom: 15px;
    font-size: 90%;
}
.shop-block .txt p a {
    font-size: inherit;	
}
.shop-block .txt p.notice {
    padding: 10px;
    background: #E70014;
    color: #FFF;
}
.shop-list .bnr {
	padding: 30px 0px 60px 0px;
}
table.shop { /* 店舗情報テーブル */
	margin: 0 auto;
	padding: 0;
}
table.shop tbody tr {
	font-size: 100%;
}
table.shop tr td a { /* 電話番号 */
	font-size: 110%;
}
table.shop tr th {
	vertical-align: top;
	text-align: right;
	font-weight: bold;
}
table.shop tr:nth-child(2) {
	vertical-align: top;
}
table.shop tr td {
	text-align: left;
	padding-left: 0.05em;
}
/* footer ------------------------------------------------------------------------------------------------*/
footer {
	clear: both;
	width: 100%;
	padding: 30px 0px;
    text-align: center;
    background: #333366;
}
footer .inner {
	text-align: center;
	color: #FFF;
}
footer .inner div.copy {
	text-align: center;
	font-size: 85%;
	overflow: hidden;
	color: #FFF;
}
footer .inner div.copy a {
	color: #ffffff;
}
/* page-top ------------------------------------------------------------------------------*/
#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 90%;
}
#page-top a {
    text-decoration: none;
    color: #333;
    padding: 10px 10px;
    text-align: center;
    display: block;
    border-radius: 5px;
    border: none;
    background: #DDD;
}
#page-top a:hover {
    text-decoration: none;
	background: #555;
}
/*slide*/
.container {
	margin: 0 auto;
	padding: 40px;
	width: 80%;
	color: #333;
	background: #419be0;
}
.slick-slide {
	text-align: center;
	color: #419be0;
	background: white;
}
.remodal h3.midashi_slash {
    padding: 0 2.5em;
    font-size: 1.5em;
    line-height: 1.25em;
}
.remodal h3.midashi_slash:before,
.remodal h3.midashi_slash:after {
	top: 30%;
	width: 10%;
	height: 5px;
}
/* キャンペーン ------------------------------------------------------------------------------*/
.campaign {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	border: 2px solid #e70012;
}
.bnr .inner .campaign img {
	border: 0;
	border-radius: 0;
	width: fit-content;
}
.campaign h3 { /*『期間限定のご成約特典』*/
	font-weight: bold;
	font-size: 175%;
	background-color: #ff0000;
	color: #ffffff;
	width: 100%;
	text-align: center;
	padding: 0.15rem 0;
}
.campaign h4 { /* キャンペーン期間 */
	font-weight: bold;
	font-size: 150%;
	line-height: 1.5em;
}
.campaign h4 span {
	color: inherit;
	font-weight: inherit;
	font-size: 75%;
}
.campaign h3::before, .campaign h3::after { /*『★』*/
	content: "★";
	margin: 0.15rem;
}
.campaign p {
	padding: 0.5em 0;
}
.campaign p span { /*『10万円』*/
	font-weight: bold;
	font-size: 115%;
}