@charset "UTF-8";
@import url("//fonts.googleapis.com/css?family=Questrial");
@import url("//fonts.googleapis.com/css?family=Muli:300,400");
@import url("//fonts.googleapis.com/css?family=Poppins");
body {
  color: #333;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.87500;
  font-family: 'Poppins', 'Questrial','Muli', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

/*!
 * ress.css • v1.0.1
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
/**
 * 1. All browsers without overlaying scrollbars
 * 2. iOS 8+

 * 1. すべてのブラウザで、スクロールバーのオーバーレイを無し。
 * 2. iOS 8+
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * 1. Inherit text-decoration and vertical align to ::before and ::after pseudo elements

 * 1. 「::before」と「::after」に、「text-decoration」と「vertical-align」を継承。
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
}

/**
 * 1. Set `background-repeat: no-repeat` to all elements
 * 2. Reset `padding` and `margin` of all elements

 * 1. すべての要素に、「background-repeat: no-repeat;」を指定。
 * 2. すべての要素に、「padding」と「margin」をリセット。
 */
* {
  background-repeat: no-repeat;
  /* 1 */
  padding: 0;
  /* 2 */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
/**
 * Add the correct display in iOS 4-7.

 * iOS 4-7に、正しいdisplayを設定。
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * 1. Show the overflow in Edge and IE

 * 1. EdgeとIEに、「overflow: visible;」を定義。
 */
hr {
  overflow: visible;
  /* 1 */
}

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox
 * Correct `block` display not defined for `main` in IE 11

 * IE8/9に、displayプロパティを定義。
 * IE10/11とFirefoxのdetail要素とsummary要素に、displayプロパティを定義。
 * IE11のmain要素に、displayプロパティを定義。
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Set font-size to 80% in `small` elements

 * 1. small要素に、フォントサイズ「80%」を定義。
 */
small {
  font-size: 80%;
  /* 1 */
}

/**
 * 1. Add the correct display in IE

 * 1. IEに、displayプロパティを定義。
 */
[hidden],
template {
  display: none;
  /* 1 */
}

/**
 * 1. Add a bordered underline effect in all browsers
 * 2. Remove text decoration in Firefox 40+

 * 1. すべてのブラウザに、点線を定義。
 * 2. Firefox40+に、テキストの装飾を削除。
 */
abbr[title] {
  border-bottom: 1px dotted;
  /* 1 */
  text-decoration: none;
  /* 2 */
}

/**
 * 1. Remove the gray background on active links in IE 10
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+

 * 1. IE10に、アクティブリンクのグレーの背景を削除。
 * 2. iOS8+とSafari8+に、リンクの下線のギャップを削除。
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the outline when hovering in all browsers

 * 1. すべてのブラウザに、ホバー時のアウトラインを削除。
 */
a:active,
a:hover {
  outline-width: 0;
  /* 1 */
}

/**
 * 1. Specify the font family of code elements

 * 1. コード要素に、フォントファミリーを指定。
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
}

/**
 * 1. Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+

 * 1. Edge12+, Safari6.2+, Chrome18+に、「bold」を適用。
 */
b,
strong {
  font-weight: bolder;
  /* 1 */
}

/**
 * 1. Address styling not present in Safari and Chrome

 * 1. SafariとChromeに、定義。
 */
dfn {
  font-style: italic;
  /* 1 */
}

/**
 * Address styling not present in IE 8/9

 * 1. IE8/9に、定義。
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * https://gist.github.com/unruthless/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/**
 * 1. Firefox 36+

 * 1. Firefox 36+
 */
[type="number"] {
  width: auto;
  /* 1 */
}

/**
 * 1. Safari 8+

 * 1. Safari 8+
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
}

/**
 * 1. Safari 8

 * 1. Safari 8
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* 1 */
}

/**
 * 1. Internet Explorer 11+
 * 2. Specify textarea resizability

 * 1. Internet Explorer 11+
 * 2. textarea要素に、垂直方向のリサイズを指定。
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

/**
 * 1. Specify font inheritance of form elements

 * 1. フォーム要素に、フォントの継承を指定。
 */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* 1 */
}

/**
 * 1. Restore the font weight unset by the previous rule.

 * 1. 前の指定により、フォントのウェイトを再定義。
 */
optgroup {
  font-weight: bold;
  /* 1 */
}

/**
 * 1. Address `overflow` set to `hidden` in IE 8/9/10/11

 * 1. IE8/9/10/11に、overflow時にhiddenを設定。
 */
button {
  overflow: visible;
  /* 1 */
}

/**
 * Remove inner padding and border in Firefox 4+

 * Firefox4+に、内側のpaddingとborderを削除。
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/**
 * Replace focus style removed in the border reset above

 * 1. フォーカス時のスタイルを定義。
 */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: none;
}

*:focus {
  outline: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`controls in Android 4
 * 2. Correct the inability to style clickable types in iOS

 * 1. Android4に、ネイティブのaudio要素とvideo要素のコントロールのバグを防ぐ。
 * 2. iOSに、クリッカブルなbutton要素のtypeのスタイルを修正。
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * 1. Firefox 40+, Internet Explorer 11-

 * 1. Firefox 40+, Internet Explorer 11-
 */
button,
select {
  text-transform: none;
  /* 1 */
}

/**
 * Remove the default button styling in all browsers

 * すべてのブラウザにおいて、デフォルトのボタンのスタイルを削除。
 */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/**
 * Style select like a standard input
 * 1. Firefox 36+
 * 2. Chrome 41+

 * 標準的なinput要素のスタイルを選択。
 * 1. Firefox 36+
 * 2. Chrome 41+
 */
select {
  -moz-appearance: none;
  /* 1*/
  -webkit-appearance: none;
  /* 2 */
}

/**
 * 1. Internet Explorer 11+

 * 1. Internet Explorer 11+
 */
select::-ms-expand {
  display: none;
  /* 1 */
}

/**
 * 1. Internet Explorer 11+

 * 1. Internet Explorer 11+
 */
select::-ms-value {
  color: currentColor;
  /* 1 */
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11
 * 2. Correct the color inheritance from `fieldset` elements in IE
 * 3. Correct the text wrapping in Edge and IE
 * 4. Correct the text wrapping in Edge and IE
 * 5. Correct the text wrapping in Edge and IE

 * 1. IE 8/9/10/11に、カラーの継承を定義。
 * 2. IEに、fieldset要素からカラーを継承するように定義。
 * 3. EdgeとIEに、テキストのラッピングを修正。
 * 4. EdgeとIEに、テキストのラッピングを修正。
 * 5. EdgeとIEに、テキストのラッピングを修正。
 */
legend {
  border: 0;
  /* 1*/
  color: inherit;
  /* 2 */
  display: table;
  /* 3 */
  max-width: 100%;
  /* 4 */
  white-space: normal;
  /* 5 */
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari
 * 2. Change font properties to `inherit` in Chrome and Safari

 * 1. iOSとSafariに、クリッカブルなtypeのスタイルを修正。
 * 2. ChromeとSafariに、フォントプロパティの継承を変更。
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari

 * Chrome, Edge, Safariに、テキストのスタイルを修正。
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari
 * 2. Correct the outline style in Safari

 * 1. ChromeとSafariに、アピアランスを修正。
 * 2. Safariに、アウトラインを修正。
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10

 * 1. IE8/9/10に、a要素の中にある時にボーダーを削除。
 */
img {
  max-width: 100%;
  border-style: none;
  /* 1 */
  vertical-align: bottom;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera

 * 1. Chrome, Firefox, Operaに、正しいvertical-alignを与える。
 */
progress {
  vertical-align: baseline;
}

/**
 * 1. Internet Explorer 11-

 * 1. Internet Explorer 11-
 */
svg:not(:root) {
  overflow: hidden;
  /* 1 */
}

/**
 * 1. Internet Explorer 11+, Windows Phone 8.1+

 * 1. Internet Explorer 11+, Windows Phone 8.1+
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
}

/* # =================================================================
   # Acessibility
   # ================================================================= */
/**
 * Hide content from screens but not screenreaders

 * コンテンツを隠す時は、スクリーンリーダーからでなく、スクリーンから。
 */

/**
 * Specify the progress cursor of updating elements

 * アップデート中の要素のプログレスのカーソルを指定。
 */
/* */
[aria-busy="true"] {
  cursor: progress;
}

/**
 * Specify the pointer cursor of trigger elements

 * トリガー要素のポインターのカーソルを指定。
 */
[aria-controls] {
  cursor: pointer;
}

/**
 * Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements

 * 使用不可、編集不可の要素のスタイルが無いカーソルを指定。
 */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */
/**
 * Specify text selection background color and omit drop shadow

 * テキスト選択時の背景色を指定し、ドロップシャドウを削除。
 */
/**
 * 1. Required when declaring ::selection

 * 1. 「::selection」を使用する時に必要。
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #fff;
  text-shadow: none;
}

/**
 * 1. Required when declaring ::selection

 * 1. 「::selection」を使用する時に必要。
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #fff;
  text-shadow: none;
}
::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #fff;
  text-shadow: none;
}

html, body {
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%;
}

/**
 * 1. hタグ、ul・liタグ、aタグの定義
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  outline: none;
}

a:active {
  outline: none;
}

a:focus {
  outline: none;
}

/* =================================
  common
================================= */
.wrap {
  padding-top: 138px;
}

/*----------------------------------
  LineMaker
----------------------------------*/
.decolines {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.decolines--fixed {
  position: fixed;
  max-width: 1200px;
  width: 100vw;
  height: 100vh;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.decoline {
  position: absolute;
}

/*----------------------------------
  background
----------------------------------*/
body {
  background-color: #ffffff;
}

body p {
  letter-spacing: .05em;
}

/*----------------------------------
  parts
----------------------------------*/
.ttl--border {
  font-size: 3.9rem;
  font-weight: normal;
  color: #e6e2e2;
  margin-bottom: 65px;
  text-align: center;
  letter-spacing: .1em;
}

.ttl--type--md {
  font-size: 2.4rem;
  color: #e6e2e2;
  line-height: 1;
}

.ttl--category--md {
  font-size: 2.0rem;
  color: #e6e2e2;
  padding: 18px 0 18px 10px;
  line-height: 1;
  border-top: 1px solid #333;
}

.ttl--caption--sm {
  font-size: 1.8rem;
  color: #e6e2e2;
  padding-bottom: 30px;
  line-height: 1.3;
  text-align: center;
}

.ttl--products--sm {
  font-size: 1.8rem;
  color: #e6e2e2;
  margin-top: 20px;
  text-align: center;
}

.ttl--productColors {
  font-size: 1.4rem;
  font-weight: normal;
  color: #e6e2e2;
  text-align: center;
  margin-top: 20px;
  letter-spacing: .05em;
}

.ttl--opList--sub {
  font-size: 1.8rem;
  font-weight: normal;
  color: #7a7a7a;
  letter-spacing: .04em;
  margin: 15px 0 30px;
  line-height: 1;
  text-align: center;
}

.ttl--topTileLayout {
  font-size: 3.4rem;
  font-weight: normal;
  color: #d3d3d3;
  line-height: 1;
  letter-spacing: .1em;
  text-align: center;
  margin: 0 0 72px;
}

.txt--basic--md--white {
  font-size: 1.4rem;
  color: #e6e2e2;
}

.txt--basic--md--gray {
  font-size: 1.4rem;
  color: #a7a7a7;
  line-height: 1.2;
}

.txt--basic--sm {
  font-size: 1.2rem;
  color: #a7a7a7;
  text-align: left;
}

.txt--note--sm {
  font-size: 1.0rem;
  color: #e6e2e2;
  line-height: 1.3;
}

.txt--1col {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/*----------------------------------
  角丸ボタン
----------------------------------*/
.box--btn--round {
  border-radius: 50px;
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.btn--round {
  display: block;
  color: #000;
  background-color: #fff;
  padding: 15px 35px;
  font-size: 1.2rem;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.btn--round:hover {
  background-color: #ea5514;
  opacity: 1;
}

.btn--round:hover::before {
  -webkit-animation: shine .75s;
          animation: shine .75s;
}

.btn--round::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(250, 250, 250, 0)), to(rgba(250, 250, 250, 0.3)));
  background: linear-gradient(to right, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
      transform: skewX(-25deg);
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* =================================
  top
================================= */
.topMainSlider {
  padding: 0 2.5%;
}

.topMainSlider__wrap {
  background: -webkit-gradient(linear, left top, left bottom, from(#292929), to(#000));
  background: -webkit-linear-gradient(#292929, #000);
  background: linear-gradient(#292929, #000);
  max-width: 1336px;
  margin: 0 auto 35px !important;
}

.topMainSlider__wrap .slick-prev {
  left: 1.5%;
}

.topMainSlider__wrap .slick-next {
  right: 1.5%;
}

.topMainSlider__wrap .slick-dots {
  font-size: 0;
  bottom: -35px;
}

.topMainSlider__wrap .slick-dots li {
  width: 40px;
  height: 7px;
}

.topMainSlider__wrap .slick-dots li button {
  width: 40px;
  height: 7px;
  padding: 0;
}

.topMainSlider__wrap .slick-dots li button::before {
  content: "";
  width: 40px;
  height: 7px;
  line-height: 1;
  background: #666;
  opacity: 1;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.topMainSlider__wrap .slick-dots li button:hover::before {
  background: #ea5514;
}

.topMainSlider__wrap .slick-dots li.slick-active button:before {
  background: #ea5514;
  opacity: 1;
}

.topMainSlider__item {
  position: relative;
}

.topMainSlider__item .MainSlider__txtBox {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 99;
  text-align: center;
}

.topMainSlider__item .MainSlider__logo {
  max-width: 314px;
  margin: 0 auto;
}

.topMainSlider__item .MainSlider__caption {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin: 15px 0 0;
}

.topMainSlider__item .MainSlider__thumb {
  max-width: 80%;
  position: absolute;
  right: 6%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.topMainSlider__item .box--btn--round {
  margin: 38px 0 0;
}

.topMainSlider__item .box--btn--round .btn--round.watchVideo {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1;
}

.slideTl {
  max-width: 1336px;
  width: 95%;
  height: 4px;
  margin: -37px auto 0;
  position: relative;
}

.slideTl span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ea5514;
  display: block;
}

.newsListWrap {
  max-width: 1200px;
  margin: 70px auto 0;
  padding: 0 2.5%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.newsList {
  background: #e6e6e6;
  padding: 14px 24px 14px 37px;
}

.newsList .ttl--newslist {
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: .04em;
  border-right: 1px solid #a8a8a8;
  padding: 12px 32px 12px 0;
  float: left;
  width: 5rem;
}

.newsList .newsItemWrap {
  width: -webkit-calc(100% - 12rem);
  width: calc(100% - 12rem);
  padding: 12px 0 12px 32px;
  float: left;
}

.newsList .newsItemWrap .slick-prev {
  display: none !important;
}

.newsList .newsItemWrap .slick-next {
  right: -4%;
}

.newsList .newsItemWrap .slick-prev:before, .newsList .newsItemWrap .slick-next:before {
  color: #000;
  font-size: 4rem;
  opacity: 1;
}

.newsList .newsItem {
  line-height: 1;
  font-size: 1.4rem;
  letter-spacing: .1em;
}

.newsList .newsItem dt {
  color: #999;
  display: inline;
  vertical-align: top;
}

.newsList .newsItem dd {
  width: -webkit-calc(100% - 8em);
  width: calc(100% - 8em);
  margin: 0 0 0 18px;
  display: inline-block;
}

.newsList .newsItem dd a {
  text-decoration: underline;
}

.newsList .newsItem dd a:hover {
  color: #ea5514;
}

.topTileLayout {
  max-width: 1200px;
  margin: 68px auto 130px;
  padding: 0 2.5%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.topTileLayout .TileLayoutItem {
  position: relative;
  display: block;
  overflow: hidden;
}

.topTileLayout .TileLayoutItem .topThumb--off {
  position: relative;
  z-index: 2;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.topTileLayout .TileLayoutItem .topThumb--on {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.topTileLayout .TileLayoutItem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

.topTileLayout .TileLayoutItem .opLinkHover {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  height: -webkit-calc(100% - 40px);
  height: calc(100% - 40px);
  margin: auto;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.topTileLayout .TileLayoutItem .opLinkTxt {
  font-size: 2.4rem;
  font-weight: normal;
  color: #fff;
  line-height: 1.25;
  letter-spacing: .2em;
  width: 25rem;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7), 0px 0px 10px rgba(0, 0, 0, 0.7), 0px 0px 10px rgba(0, 0, 0, 0.7);
}

.topTileLayout .TileLayoutItem .opLinkTxt .opLinkTxt--more {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.14em;
  margin: 20px 0 0;
  display: block;
}

.TileLayout__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.TileLayout__top__left {
  width: 33.333333%;
}

.TileLayout__top__right {
  width: 66.666666%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.TileLayout__top__right > a {
  width: 50%;
}

.TileLayout__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.TileLayout__bottom > a {
  width: 33.333333%;
}

.TileLayout__bottom > a > * {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.TileLayout__bottom .TileLayoutItem.allItem {
  width: 33.333333%;
  position: relative;
  cursor: pointer;
}

.TileLayout__bottom .TileLayoutItem.allItem span {
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: .2em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}

.TileLayout__bottom .TileLayoutItem.allItem::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../product_image/topThumbLineup.jpg);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@-webkit-keyframes circle {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.3;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.3;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

/*

====== 3d unfold ======

*/
.mfp-3d-unfold {
  /* start state */
  /* animate in */
}

.mfp-3d-unfold .mfp-content {
  -webkit-perspective: 2000px;
          perspective: 2000px;
}

.mfp-3d-unfold .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: rotateY(-60deg);
          transform: rotateY(-60deg);
}

.mfp-3d-unfold.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.mfp-3d-unfold.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

.mfp-3d-unfold.mfp-ready.mfp-bg {
  opacity: 0.8;
}

@media screen and (min-width: 0) and (max-width: 783px){
  body{
    font-size: 1.2rem;
  }
}

@media screen{
  [hidden~="screen"]{
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target){
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

@media screen and (min-width: 769px){

  /*----------------------------------
    スクロールで画像がふわっと出てくる
    ----------------------------------*/
  .animation--fadeup{
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    opacity: 0;
    -webkit-transform: translateY(70px);
    -ms-transform: translateY(70px);
    transform: translateY(70px);
  }
  .animation--fadeup.active{
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .animation--fadedown{
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  .animation--fadedown.active{
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  /*----------------------------------
    ズームする
    ----------------------------------*/
  .animation--zoom{
    overflow: hidden;
  }
  .animation--zoom img{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
}

@media screen and (min-width: 768px){

  /* =================================
    hover
  ================================= */
  a{
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  a:hover{
    opacity: .7;
  }

  /*----------------------------------
    header/footer
  ----------------------------------*/
  .header.fixed .contact:hover{
    background: #ea5514;
    color: #fff;
  }
  .header.fixed .contact:hover:before{
    width: 0;
  }
  .header.fixed .contact:hover:after{
    width: 0;
  }
  .gNav__menu__item > a:hover{
    opacity: 1;
  }
  .gNav__menu__item > a:hover:before{
    width: 50%;
  }
  .gNav__menu__item > a:hover:after{
    width: 50%;
  }
  .fNav__menu__item > a:hover{
    opacity: 1;
  }
  .fNav__menu__item > a:hover:before{
    width: 50%;
  }
  .fNav__menu__item > a:hover:after{
    width: 50%;
  }
  .fullMenu__wrap__inner .fullMenu__menu__item a{
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .fullMenu__wrap__inner .fullMenu__menu__item a:hover{
    opacity: 1;
    background: #ea5514;
  }
  .fullMenu__wrap__inner .fullMenu__menu__item a:hover .fullMenu__menu__item__icon{
    margin-right: 36px;
  }
  .box--op li a .ttl--products--sm{
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .box--op li a:hover{
    opacity: 1;
  }
  .box--op li a:hover .ttl--products--sm{
    color: #ea5514;
  }

  /*----------------------------------
    トップページ
  ----------------------------------*/
  .topTileLayout .TileLayoutItem:hover{
    opacity: 1;
  }
  .topTileLayout .TileLayoutItem:hover > .topThumb--off{
    opacity: 0;
  }
  .topTileLayout .TileLayoutItem:hover .opLinkHover{
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .topTileLayout .TileLayoutItem:hover::before{
    -webkit-animation: circle .6s;
    animation: circle .6s;
  }

  /*----------------------------------
    製品一覧
  ----------------------------------*/
  .sliderWrap .slick-dots{
    line-height: 1;
    position: static;
    margin-top: 32px;
  }
  .sliderWrap .slick-dots li:hover{
    border: 1px solid transparent;
  }
  .sliderWrap .slick-dots li:hover .slider--nav__dots{
    width: 17px;
    height: 17px;
  }
  .sliderWrap .productText a:hover{
    color: #ea5514;
    opacity: 1;
  }
  .sliderWrap:hover .btn--more{
    opacity: 1;
  }
  .sliderWrap:hover::before{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #ea5514;
    z-index: -1;
  }

  /*----------------------------------
    animation
  ----------------------------------*/
  .animation--zoom:hover img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@media screen and (max-width: 768px){
  .wrap{
    padding-top: 75px;
  }

  /*----------------------------------
  parts
----------------------------------*/
  .ttl--border{
    font-size: 2.4rem;
    padding-bottom: 12px;
    margin-bottom: 28px;
  }
  .ttl--border:after{
    width: 52px;
    left: -webkit-calc((100% - 52px) / 2);
    left: calc((100% - 52px) / 2);
  }
  .ttl--category--md{
    font-size: 1.0rem;
    padding: 10px 0 10px 6px;
  }
  .ttl--caption--sm{
    padding-bottom: 15px;
  }
  .box--mv .ttl--caption--sm{
    text-align: left;
  }
  .ttl--products--sm{
    font-size: 1.2rem;
  }
  .txt--basic--md--gray{
    text-align: left;
  }
  .decolines{
    display: none;
  }

  /* =================================
    top
  ================================= */
  .topMainSlider{
    padding: 0 2.5%;
  }
  .slideTl{
    margin: 0 auto;
  }
  .topMainSlider__wrap{
    margin: 0 auto !important;
  }
  .topMainSlider__wrap .slick-prev, .topMainSlider__wrap .slick-next{
    top: initial;
    bottom: -60px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .topMainSlider__wrap .slick-prev{
    left: 4%;
  }
  .topMainSlider__wrap .slick-next{
    right: 4%;
  }
  .topMainSlider__wrap .slick-dots{
    font-size: 0;
    bottom: -35px;
  }
  .topMainSlider__wrap .slick-dots li{
    width: 20px;
    height: 4px;
  }
  .topMainSlider__wrap .slick-dots li button{
    width: 20px;
    height: 4px;
  }
  .topMainSlider__wrap .slick-dots li button::before{
    width: 20px;
    height: 4px;
  }
  .topMainSlider__item{
    height: initial !important;
  }
  .topMainSlider__item .MainSlider__txtBox{
    position: static;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    margin-top: 20%;
  }
  .topMainSlider__item .MainSlider__logo{
    width: 50%;
  }
  .topMainSlider__item .MainSlider__caption{
    font-size: 1.1rem;
    margin: 14px 0 0;
  }
  .topMainSlider__item .MainSlider__thumb{
    top: 6px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    z-index: -1;
  }
  .topMainSlider__item .box--btn--round{
    margin: 25% 0 0;
  }
  .topMainSlider__item .box--btn--round .btn--round.watchVideo{
    font-size: 1.4rem;
    padding: 10px 13px;
  }
  .newsListWrap{
    margin: 80px auto 0;
  }
  .newsList{
    padding: 15px 15px 17px;
  }
  .newsList .ttl--newslist{
    font-size: 1.4rem;
    border-right: none;
    border-bottom: 1px solid #a8a8a8;
    padding: 0 0 8px;
    float: none;
    width: 100%;
  }
  .newsList .newsItemWrap{
    width: 100%;
    padding: 15px 4px 0px;
    float: none;
  }
  .newsList .newsItemWrap .slick-prev{
    display: none !important;
  }
  .newsList .newsItemWrap .slick-next{
    right: 0%;
  }
  .newsList .newsItemWrap .slick-prev:before, .newsList .newsItemWrap .slick-next:before{
    font-size: 3rem;
  }
  .newsList .newsItem dt{
    font-size: 1.2rem;
    display: block;
  }
  .newsList .newsItem dd{
    font-size: 1.4rem;
    width: 100%;
    margin: 12px 0 0;
    display: block;
  }
  .topTileLayout{
    margin: 97px auto 74px;
  }
  .topTileLayout .TileLayoutItem{
    background: -webkit-gradient(linear, left bottom, left top, from(black), to(#464646));
    background: -webkit-linear-gradient(bottom, black 0%, #464646 100%);
    background: linear-gradient(0deg, black 0%, #464646 100%);
    display: block;
    height: 112px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #7a7a7a;
  }
  .topTileLayout .TileLayoutItem img{
    width: 112px;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .topTileLayout .TileLayoutItem .opLinkHover{
    background: none;
    text-align: left;
    display: block;
    position: static;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  .topTileLayout .TileLayoutItem .opLinkTxt{
    font-size: 1.6rem;
    font-weight: normal;
    color: #e1e1e1;
    line-height: 1.3;
    letter-spacing: .1em;
    padding-left: 18px;
    margin-left: 112px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .topTileLayout .TileLayoutItem .opLinkTxt .opLinkTxt--more{
    font-size: 1rem;
    color: #777;
    letter-spacing: .14em;
    display: block;
    margin: 11px 0 0;
  }
  .topTileLayout .TileLayoutItem .topThumb--off{
    display: none;
  }
  .topTileLayout .TileLayoutItem::before{
    content: none;
  }
  .TileLayout__top{
    display: block;
    border-top: 1px solid #7a7a7a;
  }
  .TileLayout__top__left{
    width: 100%;
  }
  .TileLayout__top__right{
    width: 100%;
    display: block;
  }
  .TileLayout__top__right > a{
    width: 100%;
  }
  .TileLayout__bottom{
    display: block;
  }
  .TileLayout__bottom > a{
    width: 100%;
  }
  .TileLayout__bottom > a > *{
    display: block;
  }
  .TileLayout__bottom .TileLayoutItem.allItem{
    display: none;
  }
}

/*# sourceMappingURL=maps/op_top.css.map */
