@charset "UTF-8";
/* =======================================
共通設定
======================================= */
html {
  font-size: 2.6vw;
}

body {
  width: 100%;
  height: auto;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
}

a:link, a:visited, a:active, a:hover {
  text-decoration: none;
  color: inherit;
}

img {
  height: auto;
}

#container {
  width: 100%;
}

.pc {
  display: none !important;
}

/* 基本ボックス設定 */
.wrap_out, .wrap_main {
  width: 100%;
  height: auto;
}

.wrap_in {
  width: 90%;
  height: auto;
  margin: 0 auto;
}

/* 横並びリスト */
ul.many_rows {
  display: block;
  height: auto;
  overflow: hidden;
}
ul.many_rows > li {
  display: block;
  height: auto;
  float: left;
}
ul.two_rows {
  display: block;
  height: auto;
  overflow: hidden;
}
ul.two_rows > li {
  display: block;
  height: auto;
  float: left;
}
ul.two_rows > li:nth-child(2n+2) {
  float: right;
}
ul.three_rows {
  display: block;
  height: auto;
  overflow: hidden;
}
ul.three_rows > li {
  display: block;
  height: auto;
  float: left;
}
ul.three_rows > li:nth-child(3n+2) {
  margin-right: 0;
}
ul.three_rows > li:nth-child(3n+3) {
  float: right;
  margin-right: 0;
}

/* 2カラム横並びリスト */
/* 3カラム横並びリスト */
/*テーブルブロック*/
.table_block {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.table_block > .cell_block {
  display: table-cell;
  width: 50%;
  text-align: center;
  vertical-align: middle;
}
.table_block.sp_tate {
  display: block;
  table-layout: auto;
}
.table_block.sp_tate > .cell_block {
  display: block;
  width: 100%;
}

/* スクローラー */
#scroller {
  position: fixed;
  bottom: 2vw;
  right: 2vw;
  width: 10vw;
}

/* 	header
------------------------------- */
.header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header_wrap .header_wrap_inA {
  background-color: #999999;
  border-bottom: 2vw solid #404041;
}
.header_wrap .header_wrap_inA .wrap_in {
  text-align: center;
  height: 12vw;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  /*縦方向（Safari用）*/
  align-items: center;
  /* 縦方向*/
  -webkit-justify-content: center;
  /*横方向（Safari用）*/
  justify-content: center;
  /*横方向*/
}
.header_wrap .header_wrap_inA .wrap_in .header_logo {
  display: block;
  width: 50vw;
}
.header_wrap .header_wrap_inB {
  background-color: #404041;
  position: absolute;
  top: 12vw;
  left: 0;
  width: 100%;
  height: -webkit-calc(100vh - 12vw);
  height: calc(100vh - 12vw);
}
.header_wrap .header_wrap_inB .wrap_in {
  font-size: 0;
  overflow: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 10vw 10vw;
}
.header_wrap .header_wrap_inB .wrap_in a {
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.05em;
  display: block;
  padding: 4vw 0;
}

.drawer {
  display: none;
}

#menu_btn {
  position: absolute;
  top: 3.8vw;
  right: 3vw;
  width: 7vw;
  height: 4.5vw;
  background-color: transparent;
  z-index: 1010;
  border-bottom: 0.6vw solid #000;
  border-top: 0.6vw solid #000;
  z-index: 2001;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

#menu_btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.6vw;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.3vw;
  background-color: #000;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

#menu_btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.6vw;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.3vw;
  background-color: #000;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

#menu_btn.open::before {
  transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#menu_btn.open::after {
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

#menu_btn.open {
  border-color: rgba(0, 0, 0, 0);
}

#top {
  height: 12vw;
}

/* Footer
------------------------------- */
.footer_wrap {
  background-color: #404041;
}
.footer_wrap .footer_wrap_inA .wrap_in {
  padding: 8vw 0;
}
.footer_wrap .footer_wrap_inA .tbb_footer {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.footer_wrap .footer_wrap_inA .tbb_footer .cell_block {
  text-align: left;
  width: auto;
}
.footer_wrap .footer_wrap_inA .tbb_footer .cellA {
  font-size: 0;
  padding-bottom: 5vw;
}
.footer_wrap .footer_wrap_inA .tbb_footer .cellA a {
  display: block;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.05em;
  padding: 2vw 5vw;
}
.footer_wrap .footer_wrap_inA .tbb_footer .cellB {
  width: 100%;
}
.footer_wrap .footer_wrap_inA .tbb_footer .cellB .cell_block_in {
  height: 40vw;
  background-color: #c5b098;
}
.footer_wrap .footer_wrap_inA .tbb_footer .cellB .sns {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  /*縦方向（Safari用）*/
  align-items: center;
  /* 縦方向*/
  -webkit-justify-content: right;
  /*横方向（Safari用）*/
  justify-content: right;
  /*横方向*/
  padding-top: 6vw;
}
.footer_wrap .footer_wrap_inA .tbb_footer .cellB .sns img {
  display: block;
  width: auto;
  height: 6vw;
  margin-left: 4vw;
}
.footer_wrap .footer_wrap_inB::before {
  content: "";
  display: block;
  width: 100%;
  height: 2vw;
  background-color: #79231d;
}
.footer_wrap .footer_wrap_inB .wrap_in {
  height: 10vw;
  line-height: 10vw;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
}

/* main vis
------------------------------- */
.main_vis img {
  display: block;
  width: 100%;
}
.main_vis .main_vis_ttl {
  background-color: #7c231e;
  min-height: 5vw;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  /*縦方向（Safari用）*/
  align-items: center;
  /* 縦方向*/
  -webkit-justify-content: center;
  /*横方向（Safari用）*/
  justify-content: center;
  /*横方向*/
}

.ttl_h1 {
  min-height: 12vw;
  font-size: 2.5rem;
  padding: 2vw 5vw;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.4;
  display: block;
  width: 100%;
  word-break: break-all;
  word-wrap: break-word;
  text-align: center;
}

/* contents
------------------------------- */
#container {
  background-color: #000;
}
#container .wrap_in {
  background-color: #efefef;
  padding: 8vw 5vw 12vw;
}

.ttl_h2 {
  margin-bottom: 8vw;
}
.ttl_h2 .home_ttl_01 {
  display: block;
  width: 60vw;
  margin-left: auto;
  margin-right: auto;
}

/*NEWS LIST*/
.tpp_post_liist {
  border-bottom: 1px solid #808080;
  border-top: 1px solid #808080;
}
.tpp_post_liist + .tpp_post_liist {
  border-top: 0;
}
.tpp_post_liist .cell_block {
  width: auto;
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 3vw 0;
  vertical-align: top;
}
.tpp_post_liist .cellA {
  text-align: left;
  padding-bottom: 0;
}
.tpp_post_liist .cellB {
  padding-top: 2vw;
  text-align: left;
}

/*Products*/
.products_table {
  table-layout: fixed;
  width: 200vw;
}
.products_table th {
  background-color: #333;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  vertical-align: middle;
  height: 8vw;
  padding: 1vw;
  width: auto;
}
.products_table th:nth-last-child(1), .products_table th:nth-last-child(2) {
  width: 15.7%;
}
.products_table td {
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  width: auto;
  word-break: break-all;
  word-wrap: break-word;
  padding: 1vw;
  height: 10vw;
}
.products_table tr:nth-child(2n+1) td {
  background-color: #e6e6e6;
}

.sp_scroll_side_wrap {
  width: 100%;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

/*Dealers*/
.dealers_table {
  table-layout: fixed;
}
.dealers_table th {
  background-color: #333;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  height: 8vw;
  padding: 1vw;
  width: auto;
}
.dealers_table th:nth-last-child(1) {
  width: 26%;
}
.dealers_table th:nth-last-child(2) {
  width: 50%;
}
.dealers_table td {
  font-size: 1.0rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  width: auto;
  word-break: break-all;
  word-wrap: break-word;
  padding: 1vw;
  height: 10vw;
}
.dealers_table td:nth-child(2) {
  text-align: left;
  padding-left: 1em;
}
.dealers_table tr:nth-child(2n+1) td {
  background-color: #e6e6e6;
}

/* Consent form
------------------------------- */
.btnA {
  display: block;
  width: 80%;
  height: 12vw;
  line-height: 12vw;
  text-align: center;
  font-size: 1.4rem;
  background-color: #000;
  color: #fff !important;
  margin-left: auto;
  margin-right: auto;
}

.consent_wrap {
  /*装飾設定*/
}
.consent_wrap .consent_wrap_in {
  background-color: #fff;
  width: 100%;
  padding: 5vw 5vw 27vw;
  position: relative;
  border: 1px solid #b3b3b3;
}
.consent_wrap .consent_wrap_in + .consent_wrap_in {
  margin-top: 8vw;
}
.consent_wrap .consent_wrap_in h2 {
  text-align: center;
  margin-bottom: 0.6em;
  font-weight: bold;
}
.consent_wrap .consent_wrap_in p {
  line-height: 1.6;
}
.consent_wrap .consent_wrap_in .btn_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 8vw;
}
.consent_wrap .consent_wrap_in::before {
  content: "";
  display: block;
  width: 50vw;
  height: 4px;
  background-color: #7c231e;
  position: absolute;
  top: -5px;
  left: -1px;
}
.consent_wrap .consent_wrap_in::after {
  content: "";
  display: block;
  width: 4px;
  height: 50vw;
  background-color: #7c231e;
  position: absolute;
  top: -5px;
  left: -5px;
}
.consent_wrap .consent_wrap_in .btn_wrap::before {
  content: "";
  display: block;
  width: 50vw;
  height: 4px;
  background-color: #7c231e;
  position: absolute;
  bottom: -5px;
  right: -1px;
}
.consent_wrap .consent_wrap_in .btn_wrap::after {
  content: "";
  display: block;
  width: 4px;
  height: 50vw;
  background-color: #7c231e;
  position: absolute;
  bottom: -5px;
  right: -5px;
}

/* Contact
------------------------------- */
.form_wrap h2, .form_wrap .formTable th {
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  min-height: 8vw;
  padding: 1.5vw 4vw 1.5vw;
  border-left: 6px solid #7c231e;
  margin-bottom: 3vw;
}
.form_wrap input[type="text"], .form_wrap input[type="submit"], .form_wrap input[type="button"], .form_wrap textarea {
  -webkit-appearance: none;
}
.form_wrap input[type="text"], .form_wrap textarea {
  display: block;
  width: 100%;
  height: 12vw;
  padding: 2vw 5vw;
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #b3b3b3;
}
.form_wrap input[type="text"] + h2, .form_wrap textarea + h2 {
  margin-top: 8vw;
}
.form_wrap .inp_zip {
  width: 50% !important;
}
.form_wrap textarea {
  height: 50vw;
}
.form_wrap input.btnA {
  border: 0;
}
.form_wrap h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  min-height: 8vw;
  padding: 1.5vw 4vw 1.5vw;
  border-left: 6px solid #7c231e;
  margin-bottom: 3vw;
  margin-top: 5vw;
}
.form_wrap .formTable th {
  margin-top: 5vw;
}
.form_wrap .formTable td {
  padding: 2vw;
  background-color: #ccc;
}

.scroll_wrap {
  padding: 3vw;
  background-color: #fff;
}
.scroll_wrap .scroll_wrap_in {
  height: 40vw;
  overflow: hidden;
  overflow-y: scroll;
  font-size: 1.2rem;
  -webkit-overflow-scrolling: touch;
}

.submit_wrap {
  padding-top: 8vw;
}
.submit_wrap .btnA {
  margin: 2vw auto;
}

span.hiissu_chip {
  display: inline-block;
  background-color: #7c231e;
  padding: 1vw 2vw;
  color: #fff;
  margin-left: 2em;
  font-size: 1rem;
  line-height: 1;
  vertical-align: text-bottom;
}

.input_wrap {
  text-align: center;
  font-size: 1.4rem;
  padding-top: 5vw;
}
.input_wrap input[type="checkbox"] {
  margin-right: 0.5em;
}

/*About*/
.tbb_flex {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.tbb_flex .tbb_flex_ttl_h2 {
  width: 100%;
  text-align: center;
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.tbb_flex .tbb_flex_ttl_h3 {
  width: 40%;
  padding: 0.5em 1em;
  margin-top: 5vw;
  text-align: right;
  border-right: 2px solid #7c231e;
}
.tbb_flex .tbb_flex_contents {
  width: 60%;
  margin-top: 5vw;
  padding: 0.5em 1em;
}

/*article_01*/
.article_01 .article_01_ttl_h2 {
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.3;
  padding-bottom: 0.3em;
  border-bottom: 2px solid #7c231e;
  margin-bottom: 1.5em;
}
.article_01 .article_01_contents {
  text-align: justify;
  text-justify: inter-ideograph;
}
.article_01 .article_01_contents + .article_01_ttl_h2 {
  margin-top: 2em;
}

/*article_02*/
.article_02 .article_02_ttl_h1 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.article_02 .article_02_ttl_h2 {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.article_02 .article_02_contents {
  text-align: justify;
  text-justify: inter-ideograph;
}
.article_02 .article_02_contents + .article_02_ttl_h2 {
  margin-top: 1em;
}

/*# sourceMappingURL=mainSp.css.map */
