@charset "UTF-8";
/* CSS Document */

/*=================================================
 * ブラウザのデフォルトのスタイルをリセットする
 * ================================================= */

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, header, hgroup, section, article, aside, hgroup, footer, figure, figcaption, nav {
	margin: 0;
	padding: 0;
	font-size: 100%;
}
body {
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
img {
	border: 0;
	vertical-align: bottom;
}
ul, ol {
	list-style: none;
}
li {
	list-style: none;
}
dl {
}
dt {
	margin: 0 0 0.5em 0;
}
dd {
	margin: 0 0 3em 2em;
}
table {
	border-spacing: 0;
	empty-cells: show;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
th {
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
td {
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.relative {
	position: relative;
}
.sp_only{
	display: none;
}

/* フォーム */

input {
    border-radius: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type="number"] {
    width: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

textarea {
    overflow: auto;
    resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
}

optgroup {
    font-weight: bold;
}

button {
    overflow: visible;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: 0;
    padding: 0;
}

button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button,
select {
    text-transform: none;
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none;
    color: inherit;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

select::-ms-expand {
    display: none;
}

select::-ms-value {
    color: currentColor;
}

legend {
    border: 0;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

/*=================================================
 * サイト全体の基本スタイル
 * ================================================= */

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	line-height: 1.6em;
	background:#FFFFFF;
	color:#000000;
}
#container {
	text-align:center;
}
#main {
	margin: 0 auto;
	width: 100%;
	max-width: 1024px;
	padding-top: 50px;
	padding-bottom: 60px;
}
a {
	text-decoration: none;
	color: #000;
}
a:hover {
	color: #999;
	text-decoration: underline;
}
a:visited {
	color: #666;
}
a:link {
	color: #000;
}

/*ヘッダ部
----------------------------------------------------*/
header:after {
    content: "";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}
#globalheader {
	width: 100%;
	background: #000;
	background: #fff;
	border-bottom: 1px solid #c60000;
	text-align: left;

}
#globalheader:after {
    content: "";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}


h1.head_logo{
	display: inline-block;
	padding-top: 0.3rem;
	padding-bottom: 0.5rem;
	padding-left: 0.5rem;
}
.sp_only{
	display:inherit;
}
#globalnavi{
	display: none;
}
.dropmenu {
	display: none;
}
/* スマホメニュー */

.nav-content {
    background: #fff;
}

.nav-content ul {}

.nav-content ul li {}

.nav-content ul li a {
    text-align: left;
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    background: #f3f1e9;
    background: #fff;
    color: #000;
    position: relative;
    font-size: 16px;
    text-decoration: none;
}

.nav-content ul li a:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 6px;
    height: 6px;
    margin: -4px 0 0 0;
    border-top: solid 2px #666;
    border-right: solid 2px #666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*dropdown*/

.nav-content ul li.dropdown span {
    text-align: left;
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    background: #f3f1e9;
    background: #fff;
    position: relative;
    font-size: 16px;
    cursor: pointer;
}

.nav-content ul li.dropdown span:after {
    content: '';
    display: block;
    position: absolute;
    background: url(../images/plus.png) no-repeat;
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    top: 16px;
    right: 8px;
}

.nav-content ul li.dropdown.opened span {
    background: #dbd9d1;
}

.nav-content ul li.dropdown.opened span:after {
    background: url(../images/minus.png) no-repeat;
    top: 11px;
    right: 9px;
}

.nav-content ul li .dropdown-menu {
    display: none;
}

.nav-content ul li .dropdown-menu li a {
    /*background: #dbd9d1;*/
    padding-left: 25px;
}

.nav-content ul li .dropdown-menu li a.undercon {
    padding-left: 40px;
}


/*パンくず
---------------------------------------------------------------*/
#pankuzu {
	width:90%;
	max-width:1000px;
	text-align:left;
	font-size:12px;
	margin:10px auto 0 auto;
	padding-left: 0;
	color:#ccc;
}
#pankuzu a {
	color:#ccc;
}

/*トップへ戻る
---------------------------------------------------------------*/
#totop {
	position: fixed;
	right: 16px;
	bottom: 16px;
	display: none;
}
#totop a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
/*フッター
---------------------------------------------------------------*/
footer {
	width:100%;
	clear:both;
}
#globalfooter {
	margin: 0em auto 0 auto;
}
#copyright {
	font-size: 13px;
	padding-bottom: 12px;
	padding-top: 10px;
	text-align:center;
}
#footernav {
	padding-top: 25px;
	padding-bottom: 15px;
}
#footernav ul li {
	display: inline;
	font-size: 16px;
	margin: 0px;
}
#footernav ul li a {
	padding-top: 2px;
	padding-right: 16px;
	padding-bottom: 0px;
	padding-left: 14px;
}
#footernav ul li a {
	color: #fff;
}
#footernav ul li a:hover {
	color: #fff;
}

/*各ページ
---------------------------------------------------------------*/
/* 共通 */

.block {
	margin-bottom: 50px;
}
.all {
}
.all:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.left {
	float: left;
}
.right {
	float: right;
}

/*bxslider
---------------------------------------------------------------*/
.box {
	clear:both;
	width: 100%;
	max-width:900px;
	margin:0 auto;
}
.bxslider .slide {
	position:relative;
	z-index:1;
	text-align:center;
	margin:0;
	padding:0;
}
.bxslider .slide img {
	text-align:center;
}
.bxslider .slide .add_img {
	position: absolute;
	z-index:2;
	top:80px;
	left:50px;
}

#bx-pager img {
	margin:0 0 0.5em 0;
	border:#212121 solid 1px;
}

#bx-pager a img {  
opacity: 0.5;  
filter: alpha(opacity=50);  
}  
#bx-pager a.active img {  
opacity: 1;  
filter: alpha(opacity=100);  
}

/*ラインナップ
---------------------------------------------------------------*/
/* 一覧 */
.box_list {
	width:448px;
	border:#ccc solid 1px;
	text-align:left;
	padding:1em 0 1em 0;
	margin:1em 1.6em 2em 2em;
	float:left;
}
.box_list:nth-child(2){
	margin:1em 0 2em 2em;
}
.listimg {
	margin:1em 0 1em 1em;
}
.box_list p {
	margin:0 0.5em 0 1em;
}
.box_list section {
	margin:0 auto 0 auto;
}

/*詳細 */

.lineup_tit {
	text-align:left;
	display:block;
	float:left;
	margin:0 0 0.2em 0;
	font-size:36px;
}
.lineup {
	width:900px;
	margin:0 auto;
}

ul.lineupnavi {
	float:right;
	display: block;
	margin:25px auto 0 auto;
}
ul.lineupnavi li {
	display: inline-block;
	float:left;
	margin:0 1em;
}
ul.lineupnavi li a {
	display: block;
	color:#fff;
}
ul.lineupnavi li a:link {
	color:#fff;
}
ul.lineupnavi li a:hover {
	color:#666;
}
.box_layout {
	clear:both;
	width:900px;
	margin:0 auto;
	padding:1em 0 0 0;
}
.box_layout:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.car_layout {
	width:450px;
	float:left;
}
.lists {
	width:500px;
	float: left;
	margin:0 0 0 0;
}
.lists h2, .lists2 h2, .box_layout h2 {
	font-size:21px;
	margin:2em 0 0.5em 0;
	font-weight:normal;
}
.lists table {
	border-color:#666;
}
.lists th {
	padding:0.7em;
	text-align:left;
	border-color:#666;
}
.lists td {
	padding:0.7em;
	text-align:right;
	border-color:#666;
}
table.ex td {
	text-align:left;
}
.lists dl {
	width:100%;
	border-bottom:#ccc dotted 1px;
	display:block;
	padding: 0.5em 0;
	margin:0 0 0 0;
}
.lists dl dt {
	width:6em;
	float:left;
	display:block;
	padding:0 0.5em;
	font-weight:bold;
	border-left:#ccc solid 10px;
	border-right:#ccc solid 2px
}
.lists dd {
	padding:0 ;
	width:auto;
	margin:0 0 0 8.5em;
}

.lists2 {
	width:350px;
	float: right;
	margin:0 0 0 0;
}
.lists2 ul {
	margin:0 0 0 1.5em;
	clear:both;
}
.lists2 ul li {
	list-style:outside disc;
	/*width:45%;
	float:left;*/
}
.lists:after, .lists2:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}


/*ファンルーチェについて
---------------------------------------------------------------*/
/* こだわり */
.funluce {
	width:900px;
	margin:0 auto 5em auto;
}

.funluce:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

section.funluce {
	margin:0 auto 10em auto;
	text-align:center;
	clear:both;
}
.funluce_box {
	clear:both;
	width:800px;
	margin:0 auto;
}
.funluce_box:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
h2.funluce_tit, h2.funluce_tit2 {
	clear:both;
	display:block;
	margin:0.3em 0 0.5em 0;
	font-size:36px;
	line-height:0.8em;
}
h2.funluce_tit span {
	font-size:16px;
}
.funluce > p {
	margin:1em 0 0 0;
}
h2.funluce_tit2 {
	margin:2em 0 1em 0;
}
h3.funluce_tit3 {
	font-size:24px;
	margin:3em 0 1em 0;
	border:#ccc solid 1px;
	padding:0.5em;
}
.point {
	width:380px;
	float:left;
	text-align:center;
	margin:0 0 0 1em;
}
.point:nth-child(2) {
	margin:0 0 0 1em;
}
.point h4 {
	font-size:16px;
	margin:2em 0 1em 0;
}
.fuct_img {
	width:730px;
	margin:2em auto 0 auto;
}
.fuct_img2 {
	width:770px;
	margin:2em auto 0 auto;
}
.fuct_img2 img {
	margin:0 auto 0.5em auto;
}

/* 構造 */

/* ファクトリー */
div.funluce {
	width:800px;
	margin:1em auto 0 auto;
	text-justify:auto;
	text-align:left;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight:normal;
}
div.funluce > p {
	margin:1em 0 0 0;
}
div.funluce img {
	margin:0 0 1em 0;
}

/* 会社概要 */
.funluce table {
	margin:2em 0 0 0;
	border-right:none;
}
.funluce th {
	padding:0.5em;
	text-align:left;
	font-size:16px;
	font-weight:normal;
	border-left:none;
	border-top:#fff 3px solid;
	vertical-align:top;
	white-space: nowrap;
}
.funluce td {
	padding:0.8em 0 0.5em 0.8em;
	text-align:left;
	font-size:16px;
	border-left:none;
}
.funluce td img {
	margin:1em 1em 1em 0;
}

.googlemapz {
	margin:0 0 3em 0;
	font-size:14px;
	color:#000;
}
#map_canvas {
	margin:1em 0 0 0;
}
.wide {
	width:10%;
}

/*サポート
---------------------------------------------------------------*/
/* 専売店 */

section {
	margin:0em auto 2em auto;
	text-align:left;
}
.support {
	width:500px;
	float:left;
	margin:0 0 0 1em;
}
.support2 {
	width:480px;
	float:right;
	margin:0 1em 0 0;
}


h2.support_tit {
	display:block;
	margin:0.3em 0 1em 0;
	font-size:36px;
	line-height:0.8em;
}
h2.support_tit span {
	font-size:16px;
}
.support > p {
	margin:1em 0 0 0;
}
.support h3 {
	margin: 0 0 0.5em 0;
	font-size:18px;
}
.support ul {
	margin:0 0 0 0;
}

.support ul li {
	margin:0 0 2em 0;
}

/*TOP
---------------------------------------------------------------*/
/* top 最新情報 */
.tit_news {
	font-size:18px;
	border-bottom:1px solid #c60000;
	padding:3em 0 0.2em 0;
	color: #c60000;
}
.box_news {
	margin:1em 0 0 0;
	padding:0.5em;
	border-bottom:#666 1px solid;
	float:left;
}
.box_img {
	margin:0 1em 0 0;
	padding:0;
	width:150px;
	float:left;
}
.box_article {
	margin:0;
	padding:0;
	width:700px;
	float:left;
}
.box_article .data {
	font-size:12px;
	color:#666;
}
.box_article .h2 a {
	color:#fff;
}
.box_articlep p a, .box_articlep p a:link {
	font-size:14px;
	color:#fff;
}

/* お問合せ */
.inquiry_tit {
	margin:0 0 2em 0;
	text-align:center;
	display:block;
	font-size:36px;
	line-height:0.8em;
}
.box_go_inquiry {
	clear:both;
	margin:3em 0 0 0;
	text-align:center;
}
.box_go_inquiry:after, .lists2:after, .lists2:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.privacy_tit {
	margin:0 0 2em 0;
	text-align:center;
	display:block;
	font-size:36px;
	line-height:1.5;
}
.privacy p {
	line-height:1.8;
}

.privacy ul {
	margin:2em 0 2em 2em;
}
.privacy ul li {
	margin:0 0 0 0;
	line-height:1.5;
	list-style:outside decimal;
}

.privacy ol {
	margin:2em 2em 2em 2em;
}
.privacy ol li {
	margin:0 0 0 0;
	line-height:1.5;
	list-style:outside lower-roman;
}

@media screen and (min-width: 769px) {
    .drawer-toggle {
        display: none;
    }
	.drawer-nav{
	display: none;
}
h1.head_logo{
	display: none;
}
#globalnavi {
	display: inherit;
	position: relative;
	z-index: 2;
	width: 100%;
	max-width:1024px;
	margin:0 auto;
}
#globalnavi ul li {
	float: left;
}
#globalnavi ul li a {
}
#globalnavi ul:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
#globalnavi ul li a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
/*ドロップメニュー
---------------------------------------------------------------*/
.dropmenu {
	display: block;
	list-style-type: none;
	height: 54px;
	padding: 0;
	/*background: #1b89d9;*/
	border-radius: 3px 3px 0 0;
}
.dropmenu li {
	position: relative;
	width: 150px;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
	height: 41px;
}
.dropmenu li.snav {
	width: 130px;
}
.dropmenu li.snav2 {
	width: 80px;
}
.dropmenu li span {
	display: block;
	font-size:12px;
}
.dropmenu li#logo  {
	margin:0 210px 0 0;
}
.dropmenu li#logo a {
	padding: 6px 0 5px;
}
.dropmenu li a {
	display: block;
	margin: 0;
	padding: 14px 0 13px;
	color: #000;
	font-size: 16px;
	font-weight: normal;
	line-height: 1;
	text-decoration: none;
}
.dropmenu li ul {
	list-style: none;
	position: absolute;
	/*  top: 100%;*/
	top: 100%;
	left: 0;
	margin: 0;
	padding: 14px 0 0 0;
	border-radius: 0 0 3px 3px;
}
.dropmenu li:last-child ul {
	left: -100%;
	width: 100%
}
.dropmenu li ul li {
	overflow: hidden;
	width: 130%;
	height: 0;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}
.dropmenu li ul li a {
	padding: 13px 15px;
	background: #E0E0E0;
	text-align: left;
	font-size: 13px;
	font-weight: normal;
	color: #000;
}
.dropmenu li:hover > a {
	background: #E0E0E0;
	color: #000;
	/*border-top: 1px solid #333;*/
}
.dropmenu li#logo:hover > a {
	background: #E0E0E0;
	border-bottom: 0;
}
.dropmenu > li:hover > a {
	/*border-radius: 3px 3px 0 0;*/
}
.dropmenu li:hover ul li {
	overflow: visible;
	height: 38px;
	border-top: 1px solid #999;
}
.dropmenu li:hover ul li:first-child {
	border-top: 0;
}
.dropmenu li:hover ul li:last-child {
	border-bottom: none;
}
.dropmenu li:hover ul li:last-child a {
	border-radius: 0 0 3px 3px;
	border-bottom: 0;
}
.sp_only{
	display:none;
}
}

@media all and (-ms-high-contrast: none) {
    header h1 {
        /*IE用*/
        padding-top: 5px;
    }
}
@media screen and (max-width: 639px) {
#blog_content{
	width: 90%;
    margin: 0 auto 2em auto;
    float: none;
	}
#side {
    display: block;
    width: 300px;
	margin: 0 auto;
    float: none;
}
.inquiry_tit, .privacy_tit {
	font-size:21px;
	line-height:1.5;
}
}
@media screen and (max-width: 980px) {
#main {
	width: 90%;
	margin: 20px auto 0 auto;
}
}

/* 202009 kurabiz added */
.inquiry-attention {
	text-align: center;
}
@media screen and (max-width: 639px)  {
	.inquiry-attention {
		text-align: left;
	}
}