@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700|Damion');
@font-face {
  font-family: 'Custom Yu Gothic';
  src: local('Yu Gothic Medium');
}
@font-face {
  font-family: 'Custom Yu Gothic';
  src: local('Yu Gothic Bold');
  font-weight: bold;
}

/* Base
-------------------------------------- */
html {
  overflow: auto;
}
body {
  position: relative;
  min-width: 1200px;
  background-color: #F5F5F5;
  color: #333;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', HelveticaNeue, Arial, '游ゴシック体', YuGothic, 'Custom Yu Gothic', '游ゴシック Medium', 'Yu Gothic Medium', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN W3', HiraKakuProN-W3, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
a {
  color: #333;
  text-decoration: underline;
  -webkit-transition: color .3s ease-in-out 0s;
  transition: color .3s ease-in-out 0s;
}
a:hover {
  color: #E61810;
  text-decoration: none;
}
a[href^="tel:"] {
  pointer-events: none;
}
img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity .3s ease-in-out 0s;
  transition: opacity .3s ease-in-out 0s;
}
a:hover img {
  opacity: 0.7;
}

/* Layout
-------------------------------------- */
.l-header {
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.25);
  box-shadow: 0 0 2px rgba(0,0,0,0.25);
  z-index: 9999;
}
.l-footer {
  width: 100%;
  background-color: #F5F5F5;
}
.l-content {
  position: relative;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #FFF;
}
.l-inner {
  position: relative;
  width: 1180px;
  margin: auto;
}
.l-header .l-inner {
  width: 1200px;
}
.l-section {
  margin-bottom: 80px;
}
.l-section:last-child {
  margin-bottom: 0;
}
.l-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  width: -webkit-calc(100% + 40px);
  width: calc(100% + 40px);
  margin: 0 -40px -40px 0;
}
.l-grid._col2 .l-col {
  width: -webkit-calc(100% / 2 - 40px);
  width: calc(100% / 2 - 40px);
  margin: 0 40px 40px 0;
}
.l-grid._col3 .l-col {
  width: -webkit-calc(100% / 3 - 40px);
  width: calc(100% / 3 - 40px);
  margin: 0 40px 40px 0;
}
*::-ms-backdrop, .l-grid._col3 .l-col { /* IE11 */
  width: -webkit-calc(33.33% - 40px);
  width: calc(33.33% - 40px);
  margin: 0 40px 40px 0;
}
.l-grid._col4 .l-col {
  width: -webkit-calc(100% / 4 - 40px);
  width: calc(100% / 4 - 40px);
  margin: 0 40px 40px 0;
}
.l-grid._col5 .l-col {
  width: -webkit-calc(100% / 5 - 40px);
  width: calc(100% / 5 - 40px);
  margin: 0 40px 40px 0;
}
.l-grid._col6 .l-col {
  width: -webkit-calc(100% / 6 - 40px);
  width: calc(100% / 6 - 40px);
  margin: 0 40px 40px 0;
}

/* Header
-------------------------------------- */
.c-header_logo a {
  display: block;
  position: absolute;
  top: 0;
  left: 10px;
  width: 230px;
  height: 100px;
  background: url('/assets/img/header_logo_01.png') no-repeat 0 center;
  -webkit-background-size: 230px auto;
  background-size: 230px auto;
  text-indent: -9999px;
}
.c-header_nav {
  display: block !important;
  position: absolute;
  top: 0;
  right: 10px;
  height: 100px;
}
.c-header_nav-list {
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.c-header_nav-list li {
  position: relative;
  margin-left: 40px;
}
.c-header_nav-list li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100px;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 100px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}
.c-header_nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #E61810;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transition: transform .3s ease-in-out 0s;
  transition: transform .3s ease-in-out 0s;
}
.c-header_nav-list li a:hover::after,
.c-header_nav-list li a:focus::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/* Footer
-------------------------------------- */
.c-footer_nav {
  display: -webkit-flex;
  display: flex;
  position: relative;
  padding: 80px 0;
}
.c-footer_nav-list {
  width: 390px;
}
.c-footer_nav-list li {
  margin-bottom: 15px;
}
.c-footer_nav-list a {
  display: block;
  text-decoration: none;
}
.c-footer_nav-list a:first-child {
  font-weight: bold;
}

.c-footer_address {
  width: 400px;
  font-size: 12px;
  text-align: center;
}
.c-footer_address img {
  display: block;
  width: 230px;
  margin: 0 auto 30px auto;
}
.c-footer_copyright {
  display: block;
  padding-bottom: 80px;
  font-size: 12px;
}

.c-footer_pagetop {
  position: absolute;
  top: -30px;
  right: 0;
  text-indent: -9999px;
  z-index: 100;
}
.c-footer_pagetop a {
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #666;
  border-radius: 60px;
  -webkit-transition: background .3s ease-in-out 0s;
  transition: background .3s ease-in-out 0s;
}
.c-footer_pagetop a::before {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 13px;
  height: 13px;
  margin: auto;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-footer_pagetop a:hover {
  background-color: #E61810;
}

/* Component
-------------------------------------- */
.c-topicpath {
  margin: 20px 0 60px 0;
  background: #FFF;
  color: #999;
  font-size: 12px;
}
.c-topicpath ul li {
  position: relative;
  display: inline-block;
}
.c-topicpath ul li:after {
  content: '>';
  margin: 0 8px;
}
.c-topicpath ul li:last-child:after {
  content: '';
  margin: 0;
}
.c-topicpath a {
  text-decoration: none;
}

.c-pagetitle {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 180px;
  border-bottom: 1px solid #E5E5E5;
}
.c-pagetitle::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
  margin: auto;
  background-color: #E61810;
}
.c-pagetitle_inner {
  position: relative;
  width: 1180px;
  margin: auto;
}
.c-heading_l1 {
  color: #E61810;
  font-size: 36px;
  line-height: 1;
  text-align: center;
}
.c-heading_l1 ._sub {
  display: block;
  padding-top: 8px;
  color: #E61810;
  font-size: 24px;
  letter-spacing: 0;
}
.c-heading_l1 span {
  display: block;
  padding-top: 10px;
  color: #666;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.c-heading_l2 {
  position: relative;
  margin-bottom: 40px;
  padding-left: 25px;
  font-size: 28px;
  line-height: 1.4;
}
.c-heading_l2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #E61810;
}
.c-heading_l2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 5px;
  width: 3px;
  height: 100%;
  background-color: #E61810;
}
.c-heading_l2 span {
  display: block;
  font-size: 16px;
}
.c-heading_l3 {
  position: relative;
  margin: 60px 0 20px 0;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
}
.c-heading_l3:first-child {
  margin: 0 0 20px 0;
}

.c-section_body p {
  margin-bottom: 1.8em;
}
.c-section_body p:last-child {
  margin-bottom: 0;
}
.c-section_body._imgset-r,
.c-section_body._imgset-l,
.c-section_body._product {
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.c-section_body._imgset-r .c-section_body-img {
  width: 400px;
  margin-left: 40px;
}
.c-section_body._imgset-l .c-section_body-img {
  width: 400px;
  margin-right: 40px;
}
.c-section_body._product .c-section_body-img {
  width: 460px;
  margin-right: 40px;
}
.c-section_body._imgset-r .c-section_body-txt,
.c-section_body._imgset-l .c-section_body-txt {
  width: 740px;
}
.c-section_body._product .c-section_body-txt {
  width: 680px;
}
.c-section_body-heading {
  position: relative;
  margin-bottom: 40px;
  font-size: 32px;
  line-height: 1.6;
}

.c-table {
  width: 100%;
  border-top: 1px solid #DDD;
}
.c-table th {
  width: 25%;
  padding: 20px;
  background-color: #F9F9F9;
  border-bottom: 1px solid #DDD;
  font-weight: bold;
  vertical-align: middle;
}
.c-table td {
  width: 75%;
  padding: 20px;
  background-color: #FFF;
  border-bottom: 1px solid #DDD;
}

.c-card_img {
  margin-bottom: 20px;
}
.c-card_heading {
  margin-bottom: 1em;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}

.c-form_input-txt {
  width: 70%;
  height: 40px;
  padding: 5px;
  border: 1px solid #DDD;
  border-radius: 0;
}
.c-form_input-txtarea {
  width: 100%;
  height: 160px;
  padding: 5px;
  border: 1px solid #DDD;
  border-radius: 0;
}
.c-form_input-btn {
  display: block;
  position: relative;
  width: 250px;
  height: 60px;
  margin: 40px auto 0 auto;
  background-color: #E61810;
  border: 3px solid #E61810;
  border-radius: 0;
  color: #FFF;
  line-height: 54px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background .3s ease-in-out 0s, color .3s ease-in-out 0s;
  transition: background .3s ease-in-out 0s, color .3s ease-in-out 0s;
}
.c-form_input-btn:hover {
  background-color: #FFF;
  color: #E61810;
}
.c-form_input-btn-back {
  display: block;
  position: relative;
  width: 100px;
  height: 40px;
  margin: 20px auto 0 auto;
  background-color: #F6F6F6;
  border: 2px solid #DDD;
  border-radius: 0;
  color: #000;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
}

.c-local_nav {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.c-local_nav._col2 {
  width: -webkit-calc(100% + 40px);
  width: calc(100% + 40px);
  margin: 0 -40px -40px 0;
}
.c-local_nav .l-col {
  display: block;
  width: -webkit-calc(100% / 2 - 40px);
  width: calc(100% / 2 - 40px);
  height: 80px;
  margin: 0 auto;
  background-color: #F6F6F6;
  border: 1px solid #DDD;
  font-weight: bold;
  line-height: 80px;
  text-align: center;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}
.c-local_nav._col2 .l-col {
  width: -webkit-calc(100% / 2 - 40px);
  width: calc(100% / 2 - 40px);
  margin: 0 40px 40px 0;
}
.c-local_nav .l-col:hover {
  background-color: #FFF;
  border: 1px solid #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.2);
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.c-local_nav a {
  text-decoration: none;
}

.c-page_nav {
  display: block;
  margin: 0 auto 60px auto;
  text-align: center;
}
.c-page_nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}
.c-page_nav ul li {
  margin-right: -1px;
  padding: 0 20px;
  border-right: 1px solid #DDD;
  border-left: 1px solid #DDD;
  line-height: 1.4;
}
.c-page_nav a {
  text-decoration: none;
}

.c-list_decimal {
  margin-bottom: 40px;
  list-style: decimal;
}
.c-list_decimal li {
  margin: 0 0 0 1.5em;
  padding: 0 0 0 0.5em;
}
.c-list_disc {
  margin-bottom: 40px;
  list-style: disc;
}
.c-list_disc li {
  margin: 0 0 0 1.5em;
  padding: 0 0 0 0.1em;
}
.c-notice {
  position: relative;
  margin-left: 1em;
  text-indent: -1em;
  font-size: 14px;
}
.c-box {
  margin-bottom: 1em;
  padding: 15px;
  border-radius: 4px;
}
.c-box._1 {
  background-color: #FFE8E9;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.c-box._2 {
  background-color: #FFE8E9;
}
.c-box._3 {
  background-color: #F3F3F3;
}

.c-store_nav {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 2000;
}
.c-store_nav a {
  display: block;
  position: relative;
  width: 400px;
  padding: 18px 20px 20px 20px;
  background-color: rgba(0,0,0,0.8);
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  font-feature-settings: 'pkna';
  line-height: 1;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background .3s ease-in-out 0s;
  transition: background .3s ease-in-out 0s;
}
.c-store_nav span {
  display: block;
  margin-top: 15px;
  background-color: #E61810;
  border-radius: 50px;
  font-size: 22px;
  line-height: 50px;
  -webkit-transition: background .3s ease-in-out 0s, color .3s ease-in-out 0s;
  transition: background .3s ease-in-out 0s, color .3s ease-in-out 0s;
}
.c-store_nav b {
  font-weight: 500;
}
.c-store_nav a:hover {
  background-color: #E61810;
}
.c-store_nav a:hover span {
  background-color: #FFF;
  color: #E61810;
}

/* Utility
-------------------------------------- */
.u-tac {
  display: block;
  text-align: center;
}
.u-tar {
  display: block;
  text-align: right;
}
.u-aic {
  -webkit-align-items: center;
  align-items: center;
}
.u-link a {
  display: inline-block;
  position: relative;
  padding-left: 10px;
  text-decoration: none;
}
.u-link a::before {
  content: '';
  display: block;
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #E60012;
}
.u-link_box {
  display: inline-block;
  height: 60px;
  padding: 0 20px;
  background-color: #F6F6F6;
  border: 1px solid #DDD;
  font-weight: bold;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}
.u-link_box:hover {
  background-color: #FFF;
  border: 1px solid #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.2);
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.u-anchor {
  margin-top: -140px;
  padding-top: 140px;
}

/* State
-------------------------------------- */
.is-sp {
  display: none !important;
}
.is-cf::after {
  content: '';
  display: table;
  clear: both;
}
.is-cf {
  zoom: 1;
}
.is-red {
  color: #E00;
}
.is-strong {
  font-weight: bold;
}
.is-auto {
  margin: auto !important;
}
.is-last {
  margin-bottom: 0 !important;
}
.is-underline a {
  display: inline-block;
  position: relative;
}
.is-underline a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #E61810;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transition: transform .3s ease-in-out 0s;
  transition: transform .3s ease-in-out 0s;
}
.is-underline a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.is-transform {
  overflow: hidden;
}
.is-transform img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform .5s ease-in-out 0s;
  transition: transform .5s ease-in-out 0s;
}
a:hover .is-transform img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/* TOP
-------------------------------------- */
.c-heading_top {
  font-size: 16px;
  line-height: 1;
}
.c-heading_top span {
  display: block;
  padding-bottom: 10px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.c-keyvisual {
  position: relative;
  width: 100%;
  min-width: 1180px;
  height: calc(100vh - 100px);
  max-height: 800px;
}
.c-keyvisual_slide {
  position: relative;
  width: 100%;
  height: calc(100vh - 200px);
  max-height: 700px;
  overflow: hidden;
  z-index: 1;
}
.c-keyvisual_slide li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 200px);
  max-height: 700px;
  overflow: hidden;
}
.c-keyvisual_slide li:nth-of-type(1) {
  background: url('/assets/img/top_main_bg_01.jpg') no-repeat center 0;
  -webkit-background-size: cover;
  background-size: cover;
}
.c-keyvisual_slide li:nth-of-type(2) {
  background: url('/assets/img/top_main_bg_02.jpg') no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
}
.c-keyvisual_slide li:nth-of-type(3) {
  background: url('/assets/img/top_main_bg_03.jpg') no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
}
.c-keyvisual_slide li img {
  display: none;
}
.c-keyvisual_slide-img {
  position: absolute;
  right: 26px;
  bottom: 0;
  width: 408px;
  height: 418px;
  z-index: 10;
}

.c-top_concept {
  position: relative;
  margin-top: -20px;
  text-align: center;
  line-height: 2;
}
.c-top_product a {
  display: block;
  text-decoration: none;
}
.c-top_product ul {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: -webkit-calc(100% + 1px);
  width: calc(100% + 1px);
  margin: 0 -1px 0 0;
}
.c-top_product ul li {
  position: relative;
  width: -webkit-calc(100% / 2 - 1px);
  width: calc(100% / 2 - 1px);
  margin-right: 1px;
}
.c-top_product h1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  height: 70px;
  margin: auto;
}

.c-top_firsttime {
  padding: 40px 0;
  background: url('/assets/img/top_firsttime_bg_01.jpg') no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
}
.c-top_firsttime-box {
  width: 400px;
  margin: auto;
  background-color: rgba(255,255,255,0.9);
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.2);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  text-align: center;
}
.c-top_firsttime-box a {
  display: block;
  text-decoration: none;
}
.c-top_firsttime h1 {
  padding: 30px 0 15px 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
}
.c-top_firsttime .c-btn_more {
  display: block;
  height: 50px;
  margin-top: 25px;
  border-top: 1px solid #DDD;
  font-size: 16px;
  font-weight: 600;
  line-height: 50px;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}
.c-top_firsttime a:hover .c-btn_more {
  color: #FFF;
  background-color: #E61810;
  border-top: 1px solid #E61810;
}

.c-top_news {
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.c-top_news h1 {
  width: 220px;
}
.c-top_news-list {
  width: 960px;
}
.c-top_news-list li {
  border-bottom: 1px solid #DDD;
}
.c-top_news-list li:first-child {
  border-top: 1px solid #DDD;
}
.c-top_news-list li a,
.c-top_news-list li span {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}
.c-top_news-list li a:hover {
  padding: 20px;
  background-color: #F5F5F5;
}
.c-top_news-list li:last-child {
  margin-bottom: 0;
}
.c-top_news-list time {
  display: block;
  float: left;
  width: 7em;
}
.c-top_news-list p {
  overflow: hidden;
}

/* CONCEPT
-------------------------------------- */
.c-concept {
  height: 620px;
  background: url('/assets/img/concept_img_01.jpg') no-repeat right bottom;
}
.c-concept h2 {
  margin-bottom: 1.8em;
  color: #E61810;
  font-weight: bold;
  line-height: 1.4;
}
.c-concept h2 span {
  display: block;
  font-family: 'Damion', sans-serif;
  font-size: 60px;
  font-weight: normal;
}

/* SOLUTION
-------------------------------------- */
.c-fragrance_list h3 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #DDD;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.c-fragrance_list h3 span {
  display: block;
  font-size: 10px;
  font-weight: normal;
}
.c-fragrance_list p {
  font-size: 14px;
}
.c-fragrance_list-color {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px auto;
  border: 1px solid #DDD;
}

/* DATA
-------------------------------------- */
.c-table_data {
  width: 50%;
  margin-bottom: 20px;
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
}
.c-table_data th {
  width: 50%;
  padding: 5px;
  background-color: #F9F9F9;
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  font-weight: bold;
  text-align: center;
}
.c-table_data td {
  width: 50%;
  padding: 5px;
  background-color: #FFF;
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  text-align: center;
}

/* FAQ
-------------------------------------- */
.c-faq_list {
  background-color: #FFF;
  vertical-align: top;
  border-bottom: 1px solid #DDD;
}
.c-faq_list dt {
  position: relative;
  min-height: 30px;
  padding: 15px;
  cursor: pointer;
}
.c-faq_list dt::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 23px;
  bottom: 0;
  width: 0;
  height: 20px;
  margin: auto;
  border-left: 4px solid #E61810;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}
.c-faq_list dt::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 20px;
  height: 0;
  margin: auto;
  border-top: 4px solid #E61810;
}
.c-faq_list dt.active::before {
  border-left: 4px solid transparent;
}
.c-faq_list dt span {
  display: block;
  position: relative;
  padding-left: 40px;
  font-size: 18px;
  font-weight: bold;
}
.c-faq_list dt span::before {
  content: 'Q';
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #E61810;
  border-radius: 50%;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}
.c-faq_list dd {
  display: none;
  padding: 15px;
  border-top: 1px dotted #CCC;
}
.c-faq_list dd span {
  display: block;
  position: relative;
  padding-left: 45px;
}
.c-faq_list dd span::before {
  content: 'A';
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #EEE;
  border-radius: 50%;
  color: #E61810;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}

/* CONTACT
-------------------------------------- */
.formError {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  cursor: pointer;
  z-index: 999;
}
.formError .formErrorContent {
  position: relative;
  width: 100%;
  min-width: 120px;
  top: -8px;
  padding: 6px 10px;
  background-color: #E00;
  border-radius: 4px;
  color: #FFF;
  font-size: 12px;
  z-index: 1000;
}
.formError .formErrorContent::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 20px;
  width: 0;
  height: 0;
  border-top: 6px solid #E00;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

/* Plugin
-------------------------------------- */
.bx-wrapper {
  position: relative;
  margin: auto;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  display: block;
  max-width: 100%;
}
.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}
.bx-wrapper .bx-loading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  min-height: 50px;
  background: #FFF url('/assets/img/loader_01.gif') no-repeat center center;
}
.bx-pager {
  position: absolute;
  bottom: 20px;
  width: 100%;
  height: 4px;
  text-align: center;
  z-index: 1000;
}
.bx-pager .bx-pager-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}
.bx-pager.bx-default-pager a {
  display: block;
  width: 40px;
  height: 3px;
  margin: 0 5px;
  background-color: #FFF;
  text-indent: -9999px;
  -webkit-transition: background-color .3s ease-in-out 0s;
  transition: background-color .3s ease-in-out 0s;
}
.bx-pager.bx-default-pager a:hover {
  background-color: #E61810;
}
.bx-pager.bx-default-pager a.active {
  background-color: #E61810;
}
