@charset "UTF-8";
/* Variables
****************************************************************************/
/* Media Queries
****************************************************************************/
/* Utilities
****************************************************************************/
/*ブロック要素のセンタリング*/
/*ブロック要素の右寄せ*/
/*
リンクアンダーライン非表示、ホバーで表示
a要素の親に設定
*/
/*
リンクアンダーライン非表示
a要素の親に設定
*/
/*
リンクカラー設定
a要素の親に設定
*/
/*ブロック要素内テキスト非表示*/
/*font-smoothing*/
/*clearfix*/
/*要素へホバーエフェクト追加*/
/* set some element's line-height to 1em because of adjust text margin */
/*set fontfamily*/
/* 縦書きテキスト */
/* ボックス下の3pxシャドー*/
/* ==========================================================================

   Style.css

   ========================================================================== */
/* ==========================================================================
   Base
   リセットcssとhtml要素の定義
   ========================================================================== */
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
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,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font: inherit;*/
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  padding-top: 0 !important;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

body.common {
  padding-top: 0;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media print {
  body {
    -webkit-print-color-adjust: exact;
  }
}
/* ==========================================================================

   preset.scss
   プリミティブ要素の設定

   ========================================================================== */
html {
  font-size: 62.5%;
}

html.scroll-off {
  overflow: hidden;
  height: 100%;
}

body {
  background: #fff;
  font-family: "Open Sans", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  color: #1a1a1a;
}

body.scroll-off {
  overflow: hidden;
  height: 100%;
}

a:link,
a:visited,
a.touchend {
  color: #1a1a1a;
  outline: none;
}

a:active,
a:hover,
a.touchstart {
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
dt,
dd,
th,
td {
  font-weight: normal;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  vertical-align: bottom;
}

sup {
  font-size: 0.4em;
  vertical-align: top;
}

hr {
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid #fff;
}

/* reset form elements */
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/* for Print
****************************************************************************/
@media print {
  body {
    top: 0 !important;
    left: 0 !important;
    width: 172mm !important;
  }
}
/* ==========================================================================
   Layout
   レイアウト用css
   ========================================================================== */
/* ==========================================================================

   l_base
   サイトの骨組みレイアウト要素

   ========================================================================== */
/*ページ全体のwrap*/
.l-page-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-width: 1000px;
}

/*幅固定センタリング用wrapper*/
.l-fixed-width {
  min-width: 1000px;
  max-width: 1440px;
  padding-right: 3%;
  padding-left: 3%;
  margin-left: auto;
  margin-right: auto;
}

@media print {
  .l-fixed-width {
    padding: 0;
  }
}
/*メインエリアのwrap*/
.l-main-wrapper {
  position: relative;
}

/* -------------------------------------------------------------------------
	段組みコンテナ
   -------------------------------------------------------------------------*/
.l-container:after,
.l-container--col2:after,
.l-container--col3:after {
  content: "";
  clear: both;
  display: block;
}

/*50% 50% 中央マージン80px*/
.l-container--col2 .l-box {
  width: 47%;
  float: left;
}

.l-container--col2 .l-box:first-child {
  /*margin-right: 3%;*/
}

.l-container--col2 .l-box:last-child {
  float: right;
}

/*33% 33% 33% 中央マージン40px*/
.l-container--col3 .l-box {
  width: 28.8%;
  float: left;
  margin-right: 6%;
}

.l-container--col3 .l-box:last-child {
  margin-right: 0;
}

/* ==========================================================================

   l_header
   ヘッダレイアウト

   ========================================================================== */
.l-header {
  position: absolute;
  z-index: 100;
  width: 100%;
  top: 0;
}

.header__logo {
  position: absolute;
  z-index: 101;
  top: 0;
  left: 3%;
}

.header__logo a {
  display: block;
  background: #000;
}

.header__logo a:hover {
  transition-duration: 0.2s;
  background: #3f464f;
}

.header__logo img {
  width: 180px;
}

.header__logo .logo-ld {
  display: block;
  width: 114px;
  margin: 25px auto;
  display: none;
}

.header__logo .logo-ld img {
  width: 100%;
}

.header__logo .logo-ld.active {
  display: block;
}

.header__logo--print {
  display: none;
  width: 40mm;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
}

.header__logo--print img {
  width: 40mm;
}

@media print {
  .header__logo {
    display: none;
  }

  .header__logo--print {
    display: block;
  }
}
@media screen {
  .header__logo {
    transition-duration: 0.4s;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}
@media screen and (min-width: 1440px) and (max-width: 99999px) {
  .header__logo {
    left: calc(50% - 720px);
  }
}
@media screen {
  .header__logo img {
    transition-duration: 0.4s;
    transition-delay: 0.4s;
  }

  .header__logo.ef-scroll {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }

  .header__logo.ef-scroll img {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
.l-header-gnav {
  position: absolute;
  right: 0;
  z-index: 100;
}

.header-gnav {
  background: #000;
  display: table;
  font-size: 0;
  transition-duration: 0.4s;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.header-gnav.ef-scroll {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.header-gnav.ef-scroll .header-gnav__item {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.header-gnav__item {
  display: table-cell;
  vertical-align: top;
  transition-duration: 0.4s;
  transition-delay: 0.4s;
}

.header-gnav__item a:link {
  text-decoration: none;
}

.header-gnav__item a:hover {
  text-decoration: none;
}

.header-gnav__item a:visited {
  text-decoration: none;
}

.header-gnav__item a {
  display: table-cell;
  vertical-align: middle;
  padding: 0 40px;
  height: 80px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4em;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  transition-duration: 0.2s;
}

.header-gnav__item a:hover {
  background: #3f464f;
}

.header-gnav__item.crnt a {
  color: #1a1a1a;
  background: #eef0f3;
  border-bottom: 1px solid #ccc;
}

.header-gnav__item.soft a {
  padding-left: 20px;
  padding-right: 20px;
}

.header-gnav__item .font-l {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (min-width: 0px) and (max-width: 1270px), print {
  .header-gnav__item a {
    font-size: 1.3rem;
    padding: 0 20px;
  }

  .header-gnav__item.soft a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.l-header-b {
  min-width: 1000px;
  -webkit-transform: translateY(-80px);
  transform: translateY(-80px);
  transition-duration: 0.4s;
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  background: #000;
  height: 75px;
}

.l-header-b.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.l-header-b.active .header__logo img {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.l-header-b.active .l-header-gnav {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.l-header-b .header__logo {
  left: 0;
  width: 26%;
  transition-duration: 0s;
}

.l-header-b .header__logo a {
  height: 74px;
  padding: 10px 10px 0;
  text-align: center;
  transition-duration: 0s;
}

.l-header-b .header__logo img {
  transition-duration: 0.3s;
  transition-delay: 0.4s;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 280px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.l-header-b .header__logo .logo-a {
  display: none;
}

.l-header-b .header__logo .logo-b {
  display: block;
}

.l-header-b .l-header-gnav {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  width: 74%;
  transition-duration: 0.3s;
  transition-delay: 0.4s;
  background: #efefef;
}

@media screen and (min-width: 1440px) and (max-width: 99999px), print {
  .l-header-b .l-header-gnav {
    right: 0;
  }
}
.l-header-b .header-gnav {
  width: 100%;
  transition-duration: 0s;
  border-left: 1px solid #666;
}

.l-header-b .header-gnav__item {
  border-right: 1px solid #666;
  text-align: center;
  transition-duration: 0s;
  /*width: calc(100%/6);*/
  width: 14.2857142857%;
}

.l-header-b .header-gnav__item a {
  transition-duration: 0s;
  display: block;
  padding-top: 26px;
  height: 74px;
}

.l-header-b .header-gnav__item:nth-child(6) a,
.l-header-b .header-gnav__item:nth-child(7) a {
  padding-top: 17px;
}

/* ==========================================================================

   l_footer
   フッタレイアウト

   ========================================================================== */
.footer__pagetop {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  position: fixed;
  z-index: 10;
  bottom: 50px;
  right: 3%;
  display: none;
}

.footer__pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  background: url(/product_carpet/ga100/common/img/foot_pagetop.png) no-repeat left top;
  background-size: 50px 50px;
  transition-duration: 0.2s;
}

.footer__pagetop a:hover {
  background-image: url(/product_carpet/ga100/common/img/foot_pagetop_on.png);
}

.l-footer {
  position: relative;
}

.l-footer-banner {
  padding: 40px 0;
  background: url(/product_carpet/ga100/common/img/bg_tile_a.png);
}

.footer-banner {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

.footer-banner:after {
  content: "";
  clear: both;
  display: block;
}

.footer-banner__item {
  float: left;
  width: 475px;
}

.footer-banner__item img {
  width: 100%;
}

.footer-banner__item:first-child {
  margin-right: 10px;
}

.l-footer-nav {
  background: #000;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}

.footer-nav {
  width: 866px;
  margin-left: auto;
  margin-right: auto;
}

.footer-nav:after {
  content: "";
  clear: both;
  display: block;
}

.footer-nav__item {
  float: left;
  position: relative;
  width: 286px;
  border-right: 2px solid #333;
}

.footer-nav__item a {
  text-align: center;
  display: block;
  padding-top: 75px;
  height: 200px;
  transition-duration: 0.2s;
}

.footer-nav__item a:hover {
  background: #3f464f;
}

.footer-nav__item .en,
.footer-nav__item .jp {
  display: inline-block;
  line-height: 1em;
}

.footer-nav__item .en {
  font-size: 14px;
  font-size: 1.4rem;
  color: #ccc;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-nav__item .jp {
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
}

.footer-nav__item:first-child {
  border-left: 2px solid #333;
}

.footer-nav__item.ic-newwin:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  background: url(/product_carpet/ga100/common/img/ic_newwin.png) no-repeat left top;
  background-size: 14px 10px;
  width: 14px;
  height: 10px;
}

.l-footer-copyright {
  background: url(/product_carpet/ga100/common/img/bg_tile_b.png);
  text-align: center;
}

.footer-copyright {
  margin-left: auto;
  margin-right: auto;
  padding: 65px 0;
  text-align: center;
  width: 526px;
  display: table;
}

.footer-copyright__ci {
  width: 163px;
  display: table-cell;
  text-align: right;
  vertical-align: middle;
}

.footer-copyright__text {
  display: table-cell;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  padding-bottom: 7px;
  padding-left: 16px;
  vertical-align: middle;
}

@media screen {
  .transition-mask:before {
    position: absolute;
    z-index: 11;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    transition-duration: 0.5s;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  .transition-mask.ef-scroll-in:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  .transition-mask.ef-scroll:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  .transition-opacity-y,
.transition-opacity-x,
.transition-opacity-x--invert {
    transition-duration: 0.5s;
  }

  .transition-opacity-y.ef-scroll,
.ef-scroll.transition-opacity-x,
.ef-scroll.transition-opacity-x--invert {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  .transition-opacity-y.ef-scroll-in,
.ef-scroll-in.transition-opacity-x,
.ef-scroll-in.transition-opacity-x--invert {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  .transition-opacity-x.ef-scroll,
.ef-scroll.transition-opacity-x--invert {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }

  .transition-opacity-x.ef-scroll-in,
.ef-scroll-in.transition-opacity-x--invert {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }

  .transition-opacity-x--invert.ef-scroll {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  .transition-opacity-x--invert.ef-scroll-in {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
/* ==========================================================================

   l_subpage_common
   下層ページ共通レイアウト

   ========================================================================== */
/* -------------------------------------------------------------------------
	メインビジュアル・トップ共通
   -------------------------------------------------------------------------*/
.l-sec-mv {
  position: relative;
  background: url(/product_carpet/ga100/common/img/bg_tile_c.png);
}

#prg-mv {
  transition-duration: 1s;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#prg-mv.active {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.mv__main,
.mv__main--sub {
  position: relative;
  overflow: hidden;
  height: 900px;
}

@media print {
  .mv__main,
.mv__main--sub {
    height: auto;
  }

  .mv__main .item02,
.mv__main--sub .item02,
.mv__main .item03,
.mv__main--sub .item03,
.mv__main .item04,
.mv__main--sub .item04,
.mv__main .item05,
.mv__main--sub .item05,
.mv__main .item06,
.mv__main--sub .item06,
.mv__main .item07,
.mv__main--sub .item07,
.mv__main .item08,
.mv__main--sub .item08,
.mv__main .item09,
.mv__main--sub .item09 {
    display: none;
  }
}
@media print {
  .mv__main:before,
.mv__main--sub:before {
    display: block;
    content: "";
    padding-top: 55.5%;
  }
}
.mv__main .mv-item,
.mv__main--sub .mv-item {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 2;
  overflow: hidden;
  height: 900px;
}

.mv__main .mv-item.transition-fade,
.mv__main--sub .mv-item.transition-fade {
  transition-duration: 0s;
}

@media print {
  .mv__main .mv-item,
.mv__main--sub .mv-item {
    height: auto;
    display: block !important;
    opacity: 1 !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}
.mv__main .mv-item .inner,
.mv__main--sub .mv-item .inner {
  -webkit-transform: scale(1.2) translateY(40px);
  transform: scale(1.2) translateY(40px);
  height: 900px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.mv__main .mv-item .inner.move,
.mv__main--sub .mv-item .inner.move {
  /*transition-timing-function: linear;
  		transition-duration: 8s;
  		transform: scale(1.2) translateY(-40px);*/
}

@media print {
  .mv__main .mv-item .inner,
.mv__main--sub .mv-item .inner {
    height: auto;
  }
}
.mv__main .mv-item .photo,
.mv__main--sub .mv-item .photo {
  width: 100%;
  display: none;
}

@media print {
  .mv__main .mv-item .photo,
.mv__main--sub .mv-item .photo {
    display: block;
  }
}
.mv__main .mv-item .caption,
.mv__main--sub .mv-item .caption {
  position: absolute;
  z-index: 10;
  right: 3%;
  bottom: 3%;
}

@media print {
  .mv__main .mv-item .caption,
.mv__main--sub .mv-item .caption {
    bottom: 13%;
  }
}
.mv__main .mv-item--top .inner,
.mv__main--sub .mv-item--top .inner {
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  height: 999px;
  background-size: auto;
  background-position: center top;
}

.mv__main .mv-item--top .inner.move,
.mv__main--sub .mv-item--top .inner.move {
  /*transition-timing-function: linear;
  		transition-duration: 8s;
  		transform: scale(1) translateY(-90px);*/
}

@media print {
  .mv__main .mv-item--top .inner,
.mv__main--sub .mv-item--top .inner {
    height: auto;
  }
}
.mv__main--sub {
  /*&::before {
  	padding-top: calc(41.6% + 30px);
  }*/
  height: 600px;
}

.mv__main--sub .mv-item {
  height: 600px;
}

.mv__main--sub .mv-item .inner {
  height: 600px;
}

@media print {
  .mv__main--sub {
    margin-top: 60px;
  }
}
.mv__caption {
  position: absolute;
  display: none;
  right: 10px;
  bottom: 0;
  z-index: 1000;
}

.mv__caption li {
  position: absolute;
  right: 0;
  bottom: 20px;
}

@media print {
  @-moz-document url-prefix() {
    .mv__caption li {
      bottom: 70px;
    }
  }
}
.mv__nav,
.mv__nav--sub {
  position: absolute;
  z-index: 7;
  right: 3%;
  bottom: 12%;
  text-align: right;
  font-size: 0;
}

.mv__nav li,
.mv__nav--sub li {
  cursor: pointer;
  padding: 10px 0;
  display: inline-block;
  margin-right: 10px;
}

.mv__nav li span,
.mv__nav--sub li span {
  display: block;
  width: 35px;
  height: 4px;
  border: 1px solid #666;
  background: #3f4853;
}

.mv__nav li:last-child,
.mv__nav--sub li:last-child {
  margin-right: 0;
}

.mv__nav li.active,
.mv__nav--sub li.active {
  cursor: default;
}

.mv__nav li.active span,
.mv__nav--sub li.active span {
  background: #fff;
}

.mv__nav--sub {
  right: 3%;
  bottom: -6%;
}

@media print {
  .mv__nav,
.mv__nav--sub,
.mv__nav--sub {
    display: none;
  }
}
/* -------------------------------------------------------------------------
	下層見出し
   -------------------------------------------------------------------------*/
.l-subpage-top {
  position: relative;
}

.subpage-top {
  background: url(/product_carpet/ga100/common/img/bg_tile_c.png);
  height: 210px;
  padding-top: 122px;
  text-align: center;
}

@media print {
  .subpage-top {
    padding-top: 40px;
    height: 120px;
  }
}
.subpage-top__title .main,
.subpage-top__title .sub {
  display: block;
  font-weight: 600;
  color: #fff;
  line-height: 1em;
}

@media print {
  .subpage-top__title .main,
.subpage-top__title .sub {
    color: #1a1a1a;
  }
}
.subpage-top__title .main {
  font-size: 36px;
  font-size: 3.6rem;
}

.subpage-top__title .sub {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

@media print and (-webkit-min-device-pixel-ratio: 0) {
  .subpage-top__title .main,
.subpage-top__title .sub {
    color: #ffffff;
  }
}
/* -------------------------------------------------------------------------
	MV下アンカーリンク
   -------------------------------------------------------------------------*/
.l-upper-anchor {
  background: url(/product_carpet/ga100/common/img/bg_tile_c.png);
  padding: 65px 0 15px;
}

.l-upper-anchor-list,
.l-upper-anchor-list--col3,
.l-upper-anchor-list--col2 {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e5e2e2;
  background: #fff;
  width: 939px;
}

.l-upper-anchor-list:after,
.l-upper-anchor-list--col3:after,
.l-upper-anchor-list--col2:after {
  content: "";
  clear: both;
  display: block;
}

/*.l-upper-anchor-list--col4 {
	@extend .l-upper-anchor-list;
	max-width: 1280px;
	width: 94%;
	min-width: 940px;
	.upper-anchor__item {
		width: 25%;
	}
}*/
.l-upper-anchor-list--col3 .upper-anchor__item {
  width: 33.33%;
}

.l-upper-anchor-list--col2 {
  width: 626px;
}

.l-upper-anchor-list--col2 .upper-anchor__item {
  width: 50%;
}

.upper-anchor__item {
  float: left;
  border-right: 1px solid #e5e2e2;
  /*&:last-child {
  	border-right: none;
  }*/
}

.upper-anchor__item a:link {
  text-decoration: none;
}

.upper-anchor__item a:hover {
  text-decoration: none;
}

.upper-anchor__item a:visited {
  text-decoration: none;
}

.upper-anchor__item a {
  position: relative;
  z-index: 10;
  display: block;
  padding: 18px;
  height: 98px;
  transition-duration: 0.2s;
}

.upper-anchor__item a:after {
  content: "";
  clear: both;
  display: block;
}

.upper-anchor__item a:after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  content: "";
  background: url(/product_carpet/ga100/common/img/ic_anchor.png) no-repeat right bottom;
  background-size: 12px 12px;
}

.upper-anchor__item a:hover {
  background: #eef0f3;
}

.upper-anchor__item .thumb {
  width: 64px;
  float: left;
}

.upper-anchor__item .title {
  padding-left: 80px;
  padding-top: 12px;
}

.upper-anchor__item .title .jp,
.upper-anchor__item .title .en {
  line-height: 1em;
  white-space: nowrap;
}

.upper-anchor__item .title .jp {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.upper-anchor__item .title .en {
  font-size: 14px;
  font-size: 1.4rem;
}

.upper-anchor__item:nth-child(3n) {
  border-right: none;
}

.upper-anchor__item:nth-child(n+4) {
  border-top: 1px solid #e5e2e2;
}

/* -------------------------------------------------------------------------
	プロダクトメイン
   -------------------------------------------------------------------------*/
.l-protype-main {
  margin-bottom: 100px;
}

.protype__title {
  background: url(/product_carpet/ga100/common/img/bg_tile_d.png) repeat center top -30px;
  padding: 55px 0;
  text-align: center;
  margin-bottom: 35px;
}

.protype__title .model,
.protype__title .jp,
.protype__title .en {
  display: block;
  text-align: center;
  line-height: 1em;
}

.protype__title .model {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.protype__title .en {
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 17px;
}

.protype__title .jp {
  font-weight: bold;
  font-size: 30px;
  font-size: 3rem;
}

.protype__lead {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8em;
  margin-bottom: 80px;
}

.l-lineup-list:after {
  content: "";
  clear: both;
  display: block;
}

.lineup__item {
  /*width: 180px;*/
  width: calc(14.2% - 12px);
  float: left;
  margin-right: 15px;
  margin-bottom: 80px;
  position: relative;
}

.lineup__item:nth-child(7n) {
  margin-right: 0;
}

.lineup__item .thumb {
  margin-bottom: 15px;
}

.lineup__item .thumb img {
  width: 100%;
}

.lineup__item .model,
.lineup__item .color {
  display: block;
  line-height: 1em;
  white-space: nowrap;
}

.lineup__item .model {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.lineup__item .sub {
  display: inline-block;
  margin-left: 12px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  font-family: "Fjalla One", sans-serif;
  color: #666;
}

.lineup__item .color {
  color: #333;
  font-size: 14px;
  font-size: 1.4rem;
}

.lineup__item .icon {
  position: absolute;
  bottom: -35px;
}

@media screen and (min-width: 0px) and (max-width: 1180px), print {
  .lineup__item {
    width: calc(14.2% - 13px);
  }

  .lineup__item .model {
    font-size: 1.4rem;
  }

  .lineup__item .sub {
    font-size: 1.3rem;
  }

  .lineup__item .color {
    font-size: 1.25rem;
  }
}
.protype-data__price {
  position: relative;
  padding: 25px 0;
  margin-bottom: 30px;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}

.protype-data__price dt,
.protype-data__price dd {
  line-height: 1.5em;
}

.protype-data__price dt {
  float: left;
  width: 50%;
  font-size: 20px;
  font-size: 2rem;
  padding-left: 20px;
}

.protype-data__price dd {
  padding-left: 50%;
}

.protype-data__price .price {
  font-weight: bold;
  font-size: 30px;
  font-size: 3rem;
}

.protype-data__price .unit {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

.protype-data__price .sub {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
}

.protype-data-list {
  margin-bottom: 30px;
}

.protype-data-list li {
  margin-bottom: 1em !important;
  line-height: 1.5em !important;
}

/*
$modal_in_duration: .5s;
$modal_out_duration: .5s;
html {
	overflow: auto;
	height: 100%;
}
body.modal {
	overflow: hidden;
	height: 100%;
}

.l-modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100vh;
	background: #fff;
	display: none;
	opacity: 0;
	overflow: hidden;
}
.modal-content {
	height: 100vh;
	overflow-y: hidden;
	overflow-x: hidden;
	opacity: 0;
	transition-duration: .5s;
	&.active {
		opacity: 1;
		overflow-y: scroll;
	}
}
.l-modal.active {
	display:block;
	opacity: 1;
	animation: anim-modal-active $modal_in_duration;
	animation-fill-mode: forwards;
}

.l-modal.close {

	animation: anim-modal-close $modal_out_duration;
	animation-fill-mode: forwards;
}
.btn-close-modal {
	position: absolute;
	right: 40px;
	top: 30px;
	width: 37px;
	height: 37px;

	z-index: 2000;
	cursor: pointer;
	background: url(/common/img/ic_modal_close.png) no-repeat right top;
	background-size: contain;
	opacity: 1;
	@include mq-sp {
		top: 15px;
		right :15px;
	}
	@include mq-default {
		&:hover {
			opacity: $hover_opacity;
		}
	}
}

.modal-btm-close {

	text-align: center;
	padding-bottom: 80px;


}


@keyframes anim-modal-active {
	0% {
		display: block;
		opacity: 0;
		transform: scale(.9);
	}
	1% {
		opacity: 0;
		display: block;
		transform: scale(.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes anim-modal-close {
	0% {
		display: block;
		opacity: 1;
		transform: scale(1);
	}
	99% {
		opacity: 0;
		display: block;
		transform: scale(.9);
	}
	100% {
		display: none;
		opacity: 0;
		transform: scale(.9);
	}
}*/
/* ==========================================================================
   Object
   再利用パーツやユーティリティ
   ========================================================================== */
/* module
--------------------------------------------------*/
/* ==========================================================================

   m_button.scss
   ボタンモジュール

   ========================================================================== */
/* -------------------------------------------------------------------------
	ボタンベース
   -------------------------------------------------------------------------*/
.m-btn,
.m-btn-white,
.m-btn-white--arrow-b-right,
.m-btn-flat,
.m-btn-framed,
.m-btn-framed--s {
  display: inline-block;
}

.m-btn a:link,
.m-btn-white a:link,
.m-btn-white--arrow-b-right a:link,
.m-btn-flat a:link,
.m-btn-framed a:link,
.m-btn-framed--s a:link {
  text-decoration: none;
}

.m-btn a:hover,
.m-btn-white a:hover,
.m-btn-white--arrow-b-right a:hover,
.m-btn-flat a:hover,
.m-btn-framed a:hover,
.m-btn-framed--s a:hover {
  text-decoration: none;
}

.m-btn a:visited,
.m-btn-white a:visited,
.m-btn-white--arrow-b-right a:visited,
.m-btn-flat a:visited,
.m-btn-framed a:visited,
.m-btn-framed--s a:visited {
  text-decoration: none;
}

.m-btn .btn-inner,
.m-btn-white .btn-inner,
.m-btn-white--arrow-b-right .btn-inner,
.m-btn-flat .btn-inner,
.m-btn-framed .btn-inner,
.m-btn-framed--s .btn-inner {
  display: block;
}

.m-btn .icon,
.m-btn-white .icon,
.m-btn-white--arrow-b-right .icon,
.m-btn-flat .icon,
.m-btn-framed .icon,
.m-btn-framed--s .icon {
  display: inline-block;
  line-height: 1em;
}

/* -------------------------------------------------------------------------
	背景白ボタン
   -------------------------------------------------------------------------*/
.m-btn-white,
.m-btn-white--arrow-b-right {
  background: #fff;
  line-height: 1em;
}

.m-btn-white .btn-inner,
.m-btn-white--arrow-b-right .btn-inner {
  padding: 15px 15px;
}

.m-btn-white--arrow-b-right .icon {
  background: url(/common/img/ic_arrow_b_right.svg) no-repeat right center #fff;
  background-size: 7px 11px;
  padding-right: 20px;
}

/* -------------------------------------------------------------------------
	フレームボタン
   -------------------------------------------------------------------------*/
.m-btn-flat .btn-inner {
  /*border: 1px solid #fff;*/
  line-height: 1em;
  position: relative;
  background: #000;
  color: #fff;
  padding: 18px 45px;
  font-size: 16px;
  font-size: 1.6rem;
  transition-duration: 0.2s;
  text-align: center;
}

.m-btn-flat .btn-icon {
  display: inline-block;
  padding-right: 16px;
  background: url(/product_carpet/ga100/common/img/ic_arrow_a_r.svg) no-repeat right center;
  background-size: 9px 14px;
}

.m-btn-flat:hover .btn-inner {
  background: #3f464f;
}

/* -------------------------------------------------------------------------
	フレームボタン
   -------------------------------------------------------------------------*/
.m-btn-framed,
.m-btn-framed--s {
  position: relative;
}

.m-btn-framed .btn-inner,
.m-btn-framed--s .btn-inner {
  /*border: 1px solid #fff;*/
  line-height: 1em;
  position: relative;
  background: #fff;
  padding: 18px 45px;
  font-size: 16px;
  font-size: 1.6rem;
}

.m-btn-framed .btn-icon,
.m-btn-framed--s .btn-icon {
  display: inline-block;
  padding-right: 8px;
  background: url(/product_carpet/ga100/common/img/ic_arrow_a_r.svg) no-repeat right center;
  background-size: 4px 7px;
}

.m-btn-framed:before,
.m-btn-framed--s:before,
.m-btn-framed:after,
.m-btn-framed--s:after {
  width: 1px;
  position: absolute;
  background: #fff;
  display: block;
  content: "";
  z-index: 2;
  left: 0;
  top: 0;
  transition-duration: 0.3s;
}

.m-btn-framed:before,
.m-btn-framed--s:before {
  width: 1px;
  height: 100%;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.m-btn-framed:after,
.m-btn-framed--s:after {
  top: 0;
  height: 1px;
  width: 100%;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.m-btn-framed .btn-wrapper:before,
.m-btn-framed--s .btn-wrapper:before,
.m-btn-framed .btn-wrapper:after,
.m-btn-framed--s .btn-wrapper:after {
  width: 1px;
  position: absolute;
  background: #fff;
  display: block;
  content: "";
  z-index: 2;
  right: 0;
  bottom: 0;
  transition-duration: 0.3s;
}

.m-btn-framed .btn-wrapper:before,
.m-btn-framed--s .btn-wrapper:before {
  width: 1px;
  height: 100%;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.m-btn-framed .btn-wrapper:after,
.m-btn-framed--s .btn-wrapper:after {
  height: 1px;
  width: 100%;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.m-btn-framed:hover:before,
.m-btn-framed--s:hover:before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.m-btn-framed:hover:after,
.m-btn-framed--s:hover:after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.m-btn-framed:hover .btn-wrapper:before,
.m-btn-framed--s:hover .btn-wrapper:before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.m-btn-framed:hover .btn-wrapper:after,
.m-btn-framed--s:hover .btn-wrapper:after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.m-btn-framed--s .btn-inner {
  border: none;
  background: none;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 7px 30px;
}

.m-btn-framed--s .btn-inner:after {
  background: #fff;
}

.m-btn-framed--s:before,
.m-btn-framed--s:after {
  background: #fff;
}

.m-btn-framed--s .btn-wrapper:before,
.m-btn-framed--s .btn-wrapper:after {
  background: #fff;
}

/* -------------------------------------------------------------------------
	インラインリンクボタン
   -------------------------------------------------------------------------*/
.m-btn-inline,
.m-btn-inline--arrow-e {
  display: inline-block;
}

.m-btn-inline:link,
.m-btn-inline--arrow-e:link,
.m-btn-inline:hover,
.m-btn-inline--arrow-e:hover,
.m-btn-inline:visited,
.m-btn-inline--arrow-e:visited,
.m-btn-inline:active,
.m-btn-inline--arrow-e:active {
  color: #000;
}

.m-btn-inline--arrow-e {
  background: url(/common/img/ic_arrow_e_right.svg) no-repeat left center;
  background-size: 5px 9px;
  padding-left: 15px;
}

/* ==========================================================================

   m_heading.scss
   見出しモジュール

   ==============================================.m-head-b {
	font-size: 1.8rem;
	font-weight: bold;
}============================ */
.m-head-a {
  text-align: center;
  margin-bottom: 50px;
}

.m-head-a .inner {
  display: inline-block;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.m-head-a .inner:after {
  content: "";
  display: block;
  height: 2px;
  background: #1a1a1a;
  margin: 24px auto 0;
  width: 114px;
}

.m-head-a .thin {
  font-weight: normal;
}

.m-head-b {
  color: #a58b33;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
}

.m-head-c {
  font-size: 18px;
  font-size: 1.8rem;
}

/* ==========================================================================

   m_headding.scss
   テキストモジュール

   ========================================================================== */
/* -------------------------------------------------------------------------
	テキストサイズ
   -------------------------------------------------------------------------*/
.u-text-base,
.u-text-p0,
.u-text-p1,
.u-text-p2,
.u-text-p3,
.u-text-p4,
.u-text-p5,
.u-text-p6,
.m-text-m1 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8em;
  margin-bottom: 1em;
}

/* プラスサイズ */
.u-text-p1 {
  font-size: 18px;
  font-size: 1.8rem;
}

.u-text-p2 {
  font-size: 20px;
  font-size: 2rem;
}

.u-text-p3 {
  font-size: 24px;
  font-size: 2.4rem;
}

.u-text-p4 {
  font-size: 28px;
  font-size: 2.8rem;
}

.u-text-p5 {
  font-size: 30px;
  font-size: 3rem;
}

.u-text-p6 {
  font-size: 36px;
  font-size: 3.6rem;
}

/* マイナスサイズ */
.m-text-m1 {
  font-size: 14px;
  font-size: 1.4rem;
}

/* -------------------------------------------------------------------------
	テキスト装飾
   -------------------------------------------------------------------------*/
.u-font-bold {
  font-weight: bold;
}

.u-font-normal {
  font-weight: normal;
}

.u-col-black {
  color: #1a1a1a;
}

.u-col-attention {
  color: #e70000;
}

/* -------------------------------------------------------------------------
	囲み記事
   -------------------------------------------------------------------------*/
.m-boxed-article {
  border: 4px solid #eef0f3;
}

.m-boxed-article .title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  padding: 10px 10px 14px;
  background: #eef0f3;
}

.m-boxed-article .inner {
  padding: 25px 40px;
}

/* ==========================================================================

   m_tab.scss
   タブモジュール

   ========================================================================== */
/*

.l-tab-wrapper {

}
.m-tab-btn {
	@include clearfix;
	border-bottom: 3px solid #e8e8e8;
	margin-bottom: 20px;
}
.m-tab-btn__item {
	font-size: 1.6rem;
	font-weight: bold;
	color: $col_key_green;
	float: left;
	margin-right: 40px;
	border: 3px solid #e8e8e8;
	border-bottom: none;
	padding: 20px;
	line-height: 1em;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
	&.active {
		color: #fff;
		background: $col_key_green;
		border: 3px solid $col_key_green;
		border-bottom: none;
		cursor: default;
	}

	@include mq-sp {
		margin-right: 20px;
	}
}
.m-tab-btn__item:last-child {
	margin-right: 0;
}
.m-tab-content {

}
.m-tab-content__item {
	display: none;
	&.active {
		display: block;
	}
}

.m-tab-btn--c2 {
	.m-tab-btn__item {
		width: calc(50% - 20px);
	}
	@include mq-sp {
		.m-tab-btn__item {
			width: calc(50% - 10px);
		}
	}
}*/
/* ==========================================================================

   m_table.scss
   テーブルモジュール

   ========================================================================== */
.l-table-wrapper {
  margin-bottom: 40px;
}

.m-table-a,
.table-noborder {
  width: 100%;
}

.m-table-a tr,
.table-noborder tr {
  border-bottom: 2px solid #ccc;
}

.m-table-a th,
.table-noborder th,
.m-table-a td,
.table-noborder td {
  line-height: 1.5em;
  border-right: 2px solid #ccc;
  text-align: left;
  vertical-align: middle;
  font-size: 16px;
  font-size: 1.6rem;
}

.m-table-a th,
.table-noborder th {
  background: #eef0f3;
  font-weight: bold;
  padding: 12px 20px;
}

.m-table-a .th-large,
.table-noborder .th-large {
  font-size: 20px;
  font-size: 2rem;
}

.m-table-a td,
.table-noborder td {
  padding: 18px;
}

.m-table-a th:last-child,
.table-noborder th:last-child,
.m-table-a td:last-child,
.table-noborder td:last-child {
  border-right: 0;
}

.m-table-a .th2,
.table-noborder .th2 {
  background: #f8f8fb;
}

.table-noborder th {
  border-right: none;
}

.table-noborder td {
  border-right: none;
}

.table-centering th,
.table-centering td {
  text-align: center;
}

/* ==========================================================================

   m_list.scss
   リストモジュール

   ========================================================================== */
.m-list-basic li,
.m-list-indent li,
.m-list-dot li,
.m-list-decimal li {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3em;
  margin-bottom: 0.5em;
}

.m-list-indent li {
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 1.25em;
  text-indent: -1.25em;
}

.m-list-table:after {
  content: "";
  clear: both;
  display: block;
}

.m-list-table dt,
.m-list-table dd {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 20px 0;
}

.m-list-table dt:first-child,
.m-list-table dd:nth-child(2) {
  padding-top: 0;
}

.m-list-table dt {
  width: 25%;
  float: left;
  font-weight: bold;
}

.m-list-table dd {
  padding-left: 25%;
  border-bottom: 1px solid #e8e8e8;
}

.m-list-dot li {
  margin-left: 1em;
  list-style-type: disc;
}

.m-list-decimal li {
  margin-left: 1em;
  list-style-type: decimal;
}

/* ==========================================================================

   m_input.scss
   input要素モジュール

   ========================================================================== */
/* -------------------------------------------------------------------------
	基本スタイル
   -------------------------------------------------------------------------*/
input,
textarea,
select {
  background: #f3f3f3;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 12px;
  border-radius: 5px;
}

input.error,
textarea.error,
select.error {
  background-color: #fbdbd5;
}

button {
  cursor: pointer;
}

/* -------------------------------------------------------------------------
	テキストボックス
   -------------------------------------------------------------------------*/
input::-webkit-input-placeholder {
  color: #999;
}

input:-ms-input-placeholder {
  color: #999;
}

input::-moz-placeholder {
  color: #999;
}

input[type=radio],
input[type=checkbox] {
  display: none;
  margin: 0;
  line-height: 1em;
}

/* -------------------------------------------------------------------------
	セレクトボックス
   -------------------------------------------------------------------------*/
select {
  background-image: url(/common/img/ic_arrow_a_bottom.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 19px 10px;
}

/* -------------------------------------------------------------------------
	チェックボックス
   -------------------------------------------------------------------------*/
/* input[type=checkbox] + label:before {
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: -4px;
  margin-right: 5px;
  content: "";
  background: #fff;
  width: 24px;
  height: 24px;
  border: 2px solid #ccc; } */
/* input[type=checkbox]:checked + label:before {
  background: url(/common/img/ic_checked.png) no-repeat center center #ec492c; } */
/* -------------------------------------------------------------------------
	サイズユーティリティ
   -------------------------------------------------------------------------*/
.u-input-s {
  width: 30%;
}

.u-input-m {
  width: 50%;
}

.u-input-l {
  width: 90%;
}

.u-textarea-m {
  height: 200px;
}

/* -------------------------------------------------------------------------
	フォーム用モジュール
   -------------------------------------------------------------------------*/
.m-input-wrapper {
  position: relative;
}

.m-notice-balloon {
  position: absolute;
  z-index: 10;
  left: 0;
  display: none;
  bottom: -34px;
  color: #ec492c;
  background: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 6px 10px;
  line-height: 1em;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(236, 73, 44, 0.4);
}

.m-notice-balloon:before {
  display: block;
  position: absolute;
  top: -6px;
  left: 10px;
  -webkit-transform: scaleX(1.5);
  transform: scaleX(1.5);
  font-size: 5px;
  color: #fff;
  content: "▲";
  text-shadow: 0 -4px 3px rgba(236, 73, 44, 0.1);
}

.m-notice-balloon.active {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  display: block;
  -webkit-animation: anime__notice-balloon 0.5s;
  animation: anime__notice-balloon 0.5s;
}

@-webkit-keyframes anime__notice-balloon {
  0% {
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  1% {
    display: block;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(0.01);
    transform: scale(0.01);
  }
  100% {
    display: block;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes anime__notice-balloon {
  0% {
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  1% {
    display: block;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(0.01);
    transform: scale(0.01);
  }
  100% {
    display: block;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* ==========================================================================

   m_utilis.scss
   ユーティリティモジュール

   ========================================================================== */
img.u-fit {
  width: 100%;
}

.u-align-l {
  text-align: left;
}

.u-align-r {
  text-align: right;
}

.u-align-c {
  text-align: center;
}

.u-vertical-text {
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.u-cf:after {
  content: "";
  clear: both;
  display: block;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt1 {
  margin-top: 1em !important;
}

.u-mt2 {
  margin-top: 2em !important;
}

.u-mt3 {
  margin-top: 3em !important;
}

.u-mt4 {
  margin-top: 4em !important;
}

.u-mt5 {
  margin-top: 5em !important;
}

.u-mt6 {
  margin-top: 6em !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb1 {
  margin-bottom: 1em !important;
}

.u-mb2 {
  margin-bottom: 2em !important;
}

.u-mb3 {
  margin-bottom: 3em !important;
}

.u-mb4 {
  margin-bottom: 4em !important;
}

.u-mb5 {
  margin-bottom: 5em !important;
}

.u-mb6 {
  margin-bottom: 6em !important;
}

.u-inlineblock {
  display: inline-block;
}

.u-list-annotation li {
  font-size: 12px;
  font-size: 1.2rem;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.3em;
  margin-bottom: 0.3em;
}

.u-list-disc li {
  list-style-type: disc;
  margin-bottom: 1em;
  margin-left: 1.2em;
}

/* ==========================================================================
   Animation
   アニメーション設定用css
   ========================================================================== */
@media screen {
  .transition-mask:before {
    position: absolute;
    z-index: 11;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    transition-duration: 0.5s;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  .transition-mask.ef-scroll-in:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  .transition-mask.ef-scroll:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  .transition-opacity-y,
.transition-opacity-x,
.transition-opacity-x--invert {
    transition-duration: 0.5s;
  }

  .transition-opacity-y.ef-scroll,
.ef-scroll.transition-opacity-x,
.ef-scroll.transition-opacity-x--invert {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  .transition-opacity-y.ef-scroll-in,
.ef-scroll-in.transition-opacity-x,
.ef-scroll-in.transition-opacity-x--invert {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  .transition-opacity-x.ef-scroll,
.ef-scroll.transition-opacity-x--invert {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }

  .transition-opacity-x.ef-scroll-in,
.ef-scroll-in.transition-opacity-x--invert {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }

  .transition-opacity-x--invert.ef-scroll {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  .transition-opacity-x--invert.ef-scroll-in {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
/* ==========================================================================
	print
   ========================================================================== */
/* ==========================================================================

	印刷共通スタイル

   ========================================================================== */
@media print {
  .l-header-gnav {
    display: none;
  }

  .header-gnav {
    display: none;
  }

  .l-header-b {
    display: none;
  }

  .l-footer-nav {
    display: none;
  }
}
