@charset "UTF-8";
/*!
 * ress.css • v1.1.1
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  overflow-y: scroll;
  /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%;
  /* iOS 8+ */
  font-size: 62.5%;
}

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

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

/* Remove margin, padding of all elements and set background-no-repeat as default */
* {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements */
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
  color: #000;
  font-style: normal;
  font: 13px/200% "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 1.3rem;
}

/* # =================================================================
   # General elements
   # ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
}

/*
* 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
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted;
  /* Add a bordered underline effect in all browsers */
  text-decoration: none;
  /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder;
  /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
  font-style: italic;
  /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/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;
}

li {
  list-style-type: none;
}

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

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"]
[role="button"] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

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

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

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

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
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 */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

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

/* 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 */
select {
  -moz-appearance: none;
  /* Firefox 36+ */
  -webkit-appearance: none;
  /* Chrome 41+ */
}

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

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

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

[type="search"] {
  -webkit-appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

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

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

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

/* 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 */
::-moz-selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

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

body{
margin:0;
padding:0}

div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,figure,input,textarea,p,blockquote,table,th,td,address{
margin:0;
padding:0;
color:$main_color;
font-style:normal;
font:13px/160% verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",  Osaka, sans-serif;
font-size: 1.3rem
}

select,
input,
button,
textarea{
font-size:99%;
}

table{
border-collapse:collapse;
border-spacing:0;
font-size:inherit;
font:100%}

textarea,input{margin:0;padding:0}

caption,th{text-align:left}
td,th{vertical-align: top}

fieldset,img,abbr{border:none}
li{list-style-type:none}
hr{display:none}

strong{font-weight:bold}


*/
main div,
main p,
main ul,
main dl,
main ol,
main h2,
main h3,
main h4,
main table {
  margin: 0 0 20px;
}

main div,
main p,
main ul,
main dl,
main ol,
main h2,
main h3,
main h4,
main table {
  margin: 0;
}

@-webkit-keyframes loadingRotate {
  0% {
    -webkit-transform: rotate(0deg) scaleX(1.2) scaleY(0.2);
            transform: rotate(0deg) scaleX(1.2) scaleY(0.2);
  }
  50% {
    -webkit-transform: rotate(180deg) scaleX(1.2) scaleY(0.8);
            transform: rotate(180deg) scaleX(1.2) scaleY(0.8);
  }
  100% {
    -webkit-transform: rotate(360deg) scaleX(1.2) scaleY(0.2);
            transform: rotate(360deg) scaleX(1.2) scaleY(0.2);
  }
}

@keyframes loadingRotate {
  0% {
    -webkit-transform: rotate(0deg) scaleX(1.2) scaleY(0.2);
            transform: rotate(0deg) scaleX(1.2) scaleY(0.2);
  }
  50% {
    -webkit-transform: rotate(180deg) scaleX(1.2) scaleY(0.8);
            transform: rotate(180deg) scaleX(1.2) scaleY(0.8);
  }
  100% {
    -webkit-transform: rotate(360deg) scaleX(1.2) scaleY(0.2);
            transform: rotate(360deg) scaleX(1.2) scaleY(0.2);
  }
}

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

#wrapper {
  min-width: 1080px;
  height: 100%;
  width: 100%;
  position: relative;
}

#wrapper #opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 999;
  font-size: 0;
}

#wrapper #opening #loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 2px solid #ddd;
  border-radius: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  display: block;
}

#wrapper #opening #loading:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 140%;
  height: 100%;
  transition-duration: 400ms;
  background-color: #fff;
  -webkit-animation-name: loadingRotate;
          animation-name: loadingRotate;
  -webkit-animation-duration: 2000ms;
          animation-duration: 2000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-delay: 0ms;
          animation-delay: 0ms;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

#wrapper #opening #loading:after {
  position: relative;
  content: 'LOADING';
  font-size: 10px;
  display: block;
  line-height: 116px;
  text-align: center;
  z-index: 99;
  letter-spacing: 1px;
}

#wrapper > header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1080px;
  overflow: hidden;
  background: linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 888;
}

#wrapper > header .inner {
  margin: 0 auto;
  height: 140px;
  position: relative;
}

#wrapper > header .inner #line {
  position: absolute;
  top: 35px;
  right: 50px;
  border-top: #fff 2px solid;
  width: 40px;
  height: 26px;
}

#wrapper > header .inner #line a {
  display: block;
  position: relative;
  width: 40px;
  height: 26px;
  overflow: hidden;
  cursor: default;
}

#wrapper > header .inner #line a:before {
  content: '';
  position: absolute;
  display: block;
  border-top: #fff 2px solid;
  height: 2px;
  width: 24px;
  right: -24px;
  top: 12px;
  transition: 0.1s all ease 0s;
}

#wrapper > header .inner #line a:after {
  content: '';
  position: absolute;
  display: block;
  border-top: #fff 2px solid;
  height: 2px;
  width: 10px;
  right: -10px;
  top: 24px;
  transition: 0.1s all ease 0s;
}

#wrapper > header .inner .menuHide {
  position: relative;
  transition-duration: 400ms;
}

#wrapper > header .inner #logo {
  position: absolute;
  top: 45px;
  left: 60px;
  transition-duration: 400ms;
}

#wrapper > header .inner #logo a {
  display: block;
  transition-duration: 200ms;
  text-decoration: none;
}

#wrapper > header .inner #logo a:hover {
  opacity: .8;
}

#wrapper > header .inner #logo dl dt, #wrapper > header .inner #logo dl dd {
  display: inline-block;
  vertical-align: middle;
}

#wrapper > header .inner #logo dl dt {
  margin-right: 30px;
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  letter-spacing: 3px;
}

#wrapper > header .inner #logo dl dd {
  color: #fff;
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 3px;
}

#wrapper > header .inner #volume {
  position: absolute;
  top: 94px;
  right: 48px;
}

#wrapper > header .inner #volume a {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/common/btn_volume.png);
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 20px;
  height: 12px;
  display: block;
}

#wrapper > header .inner #volume a.on {
  background-position: 0 -12px;
}

#wrapper > header .inner nav {
  position: absolute;
  top: 87px;
  right: 162px;
}

#wrapper > header .inner nav ul {
  font-size: 0;
}

#wrapper > header .inner nav ul li {
  display: inline-block;
  margin-left: 20px;
}

#wrapper > header .inner nav ul li a {
  position: relative;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1.3px;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-size: 1.3rem;
  display: inline-block;
  padding: 3px 0;
}

#wrapper > header .inner nav ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 2px;
  display: block;
  background-color: #fff;
  transition-duration: 400ms;
}

#wrapper > header .inner nav ul li a:hover:after {
  width: 100%;
}

#wrapper > header .inner .lang {
  position: absolute;
  top: 87px;
  right: 86px;
}

#wrapper > header .inner .lang li {
  display: inline-block;
  vertical-align: middle;
}

#wrapper > header .inner .lang li:first-child:after {
  content: '/';
  margin: 0 5px;
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
}

#wrapper > header .inner .lang li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
  transition-duration: 200ms;
}

#wrapper > header .inner .lang li a:hover {
  opacity: .8;
}

#wrapper > header .inner .lang li.current a {
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
}

#wrapper > header .inner .social {
  position: absolute;
  top: 55px;
  right: 48px;
}

#wrapper > header .inner .social dt, #wrapper > header .inner .social dd {
  display: inline-block;
  vertical-align: middle;
}

#wrapper > header .inner .social dt {
  font-family: 'Avenir Next W00';
  font-weight: 500;
  font-style: normal;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
}

#wrapper > header .inner .social dt:after {
  content: '/';
  margin: 0 10px;
  font-size: 12px;
  font-size: 1.2rem;
}

#wrapper > header .inner .social dd ul {
  zoom: 1;
}

#wrapper > header .inner .social dd ul:before, #wrapper > header .inner .social dd ul:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: "\0020";
}

#wrapper > header .inner .social dd ul:after {
  clear: both;
}

#wrapper > header .inner .social dd ul li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  transition-duration: 200ms;
}

#wrapper > header .inner .social dd ul li:hover {
  opacity: .8;
}

#wrapper > header.shrink .menuHide {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

#wrapper > header.shrink #line a {
  cursor: pointer;
}

#wrapper > header.shrink #line a:before {
  right: 0;
  transition: right 0.1s ease 0.2s, width 0.1s ease 0.05s;
}

#wrapper > header.shrink #line a:after {
  right: 0;
  transition: right 0.1s ease 0.3s, width 0.1s ease 0s;
}

#wrapper > header.shrink #line a:hover:before {
  width: 40px;
  transition: 0.1s all ease 0s;
}

#wrapper > header.shrink #line a:hover:after {
  width: 40px;
  transition: 0.1s all ease 0.05s;
}

#wrapper > header.shrink #logo {
  opacity: 0;
  pointer-events: none;
}

#wrapper > video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  background-size: cover;
}

#wrapper .pageTop {
  position: fixed;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 10;
}

#wrapper .pageTop a img {
  display: block;
}

#wrapper #stage {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 990;
  pointer-events: none;
}

#wrapper #contents {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

#wrapper #contents main {
  width: 100%;
  height: 100%;
}

#wrapper #contents main #fullpage {
  position: relative;
  width: 100%;
  height: 100%;
}

#wrapper #contents main > nav {
  position: fixed;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

#wrapper #contents main > nav ul li a {
  position: relative;
  font-size: 0;
  display: block;
  padding: 8px;
}

#wrapper #contents main > nav ul li a:before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid #b1b1b1;
  border-radius: 50%;
  transition-duration: 200ms;
}

#wrapper #contents main > nav ul li a:hover:before {
  border: 1px solid #000;
  background-color: #000;
}

#wrapper #contents main > nav ul li a.active:before {
  border: 1px solid #000;
  background-color: #000;
}

#wrapper #contents .section {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
}

#wrapper #contents .section.active {
  display: block;
}

#wrapper #contents .section#first {
  position: relative;
}

#wrapper #contents .section#first .fp-tableCell {
  position: relative;
  background: none;
}

#wrapper #contents .section#first .hgroup {
  position: absolute;
  left: 104px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#wrapper #contents .section#first .hgroup h1 {
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  color: #fff;
  font-size: 54px;
  font-size: 5.4rem;
  line-height: 58.71px;
  letter-spacing: 9.72px;
  margin-bottom: 20px;
}

#wrapper #contents .section#first .hgroup h1 span {
  display: block;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 3.24px;
}

#wrapper #contents .section#first .hgroup p {
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0;
}

#wrapper #contents .section#first .process {
  position: absolute;
  margin-bottom: 0;
  right: 45px;
  top: 54%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#wrapper #contents .section#first .process dl {
  display: table;
  width: 100%;
  margin-bottom: 0;
}

#wrapper #contents .section#first .process dl dt, #wrapper #contents .section#first .process dl dd {
  display: table-cell;
  vertical-align: top;
  color: #fff;
}

#wrapper #contents .section#first .process dl dt {
  padding-right: 30px;
  padding-top: 3px;
  font-family: Roboto, serif;
  font-weight: 300;
  letter-spacing: 1.3px;
  font-size: 12px;
}

#wrapper #contents .section#first .process dl dd {
  width: 247px;
}

#wrapper #contents .section#first .process dl dd ul {
  margin-bottom: 0;
}

#wrapper #contents .section#first .process dl dd ul li {
  border-bottom: rgba(255, 255, 255, 0.4) 1px solid;
}

#wrapper #contents .section#first .process dl dd ul li a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  transition-duration: 500ms;
}

#wrapper #contents .section#first .process dl dd ul li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transition-duration: 200ms;
}

#wrapper #contents .section#first .process dl dd dl {
  margin-bottom: 0;
}

#wrapper #contents .section#first .process dl dd dl dt {
  font-family: Roboto, serif;
  font-weight: 300;
  font-size: 15px;
  white-space: nowrap;
  padding-top: 0;
  padding-left: 0;
  padding-right: 25px;
  width: 1%;
  line-height: 150%;
}

#wrapper #contents .section#first .process dl dd dl dd {
  font-family: 'AXIS Font Japanese W55';
  font-weight: 300;
  font-style: normal;
  line-height: 150%;
}

#wrapper #contents .section#first .down {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 0;
  text-align: center;
}

#wrapper #contents .section#first .down a {
  display: inline-block;
}

#wrapper #contents .section#first .down a img {
  transition-duration: 400ms;
}

#wrapper #contents .section#first .down a:hover img {
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
}

#wrapper #contents .section#section01, #wrapper #contents .section#section02, #wrapper #contents .section#section03, #wrapper #contents .section#section04, #wrapper #contents .section#section05, #wrapper #contents .section#section06, #wrapper #contents .section#section07, #wrapper #contents .section#section08, #wrapper #contents .section#section09, #wrapper #contents .section#section10, #wrapper #contents .section#section11, #wrapper #contents .section#section12, #wrapper #contents .section#section13, #wrapper #contents .section#section14, #wrapper #contents .section#section15, #wrapper #contents .section#section16 {
  margin-bottom: 0;
  background-color: #fff;
}

#wrapper #contents .section#section01 .fp-tableCell, #wrapper #contents .section#section02 .fp-tableCell, #wrapper #contents .section#section03 .fp-tableCell, #wrapper #contents .section#section04 .fp-tableCell, #wrapper #contents .section#section05 .fp-tableCell, #wrapper #contents .section#section06 .fp-tableCell, #wrapper #contents .section#section07 .fp-tableCell, #wrapper #contents .section#section08 .fp-tableCell, #wrapper #contents .section#section09 .fp-tableCell, #wrapper #contents .section#section10 .fp-tableCell, #wrapper #contents .section#section11 .fp-tableCell, #wrapper #contents .section#section12 .fp-tableCell, #wrapper #contents .section#section13 .fp-tableCell, #wrapper #contents .section#section14 .fp-tableCell, #wrapper #contents .section#section15 .fp-tableCell, #wrapper #contents .section#section16 .fp-tableCell {
  position: relative;
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/bg_cont.png) repeat-y 100% 0;
}

#wrapper #contents .section#section01.showStart .figBlock, #wrapper #contents .section#section02.showStart .figBlock, #wrapper #contents .section#section03.showStart .figBlock, #wrapper #contents .section#section04.showStart .figBlock, #wrapper #contents .section#section05.showStart .figBlock, #wrapper #contents .section#section06.showStart .figBlock, #wrapper #contents .section#section07.showStart .figBlock, #wrapper #contents .section#section08.showStart .figBlock, #wrapper #contents .section#section09.showStart .figBlock, #wrapper #contents .section#section10.showStart .figBlock, #wrapper #contents .section#section11.showStart .figBlock, #wrapper #contents .section#section12.showStart .figBlock, #wrapper #contents .section#section13.showStart .figBlock, #wrapper #contents .section#section14.showStart .figBlock, #wrapper #contents .section#section15.showStart .figBlock, #wrapper #contents .section#section16.showStart .figBlock {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  transition-timing-function: cubic-bezier(0, 0, 0, 1);
}

#wrapper #contents .section#section01.showStart .cont .inner .label, #wrapper #contents .section#section02.showStart .cont .inner .label, #wrapper #contents .section#section03.showStart .cont .inner .label, #wrapper #contents .section#section04.showStart .cont .inner .label, #wrapper #contents .section#section05.showStart .cont .inner .label, #wrapper #contents .section#section06.showStart .cont .inner .label, #wrapper #contents .section#section07.showStart .cont .inner .label, #wrapper #contents .section#section08.showStart .cont .inner .label, #wrapper #contents .section#section09.showStart .cont .inner .label, #wrapper #contents .section#section10.showStart .cont .inner .label, #wrapper #contents .section#section11.showStart .cont .inner .label, #wrapper #contents .section#section12.showStart .cont .inner .label, #wrapper #contents .section#section13.showStart .cont .inner .label, #wrapper #contents .section#section14.showStart .cont .inner .label, #wrapper #contents .section#section15.showStart .cont .inner .label, #wrapper #contents .section#section16.showStart .cont .inner .label {
  transition-delay: 300ms;
}

#wrapper #contents .section#section01.showStart .cont .inner h2, #wrapper #contents .section#section02.showStart .cont .inner h2, #wrapper #contents .section#section03.showStart .cont .inner h2, #wrapper #contents .section#section04.showStart .cont .inner h2, #wrapper #contents .section#section05.showStart .cont .inner h2, #wrapper #contents .section#section06.showStart .cont .inner h2, #wrapper #contents .section#section07.showStart .cont .inner h2, #wrapper #contents .section#section08.showStart .cont .inner h2, #wrapper #contents .section#section09.showStart .cont .inner h2, #wrapper #contents .section#section10.showStart .cont .inner h2, #wrapper #contents .section#section11.showStart .cont .inner h2, #wrapper #contents .section#section12.showStart .cont .inner h2, #wrapper #contents .section#section13.showStart .cont .inner h2, #wrapper #contents .section#section14.showStart .cont .inner h2, #wrapper #contents .section#section15.showStart .cont .inner h2, #wrapper #contents .section#section16.showStart .cont .inner h2 {
  transition-delay: 500ms;
}

#wrapper #contents .section#section01.showStart .cont .inner .sub, #wrapper #contents .section#section02.showStart .cont .inner .sub, #wrapper #contents .section#section03.showStart .cont .inner .sub, #wrapper #contents .section#section04.showStart .cont .inner .sub, #wrapper #contents .section#section05.showStart .cont .inner .sub, #wrapper #contents .section#section06.showStart .cont .inner .sub, #wrapper #contents .section#section07.showStart .cont .inner .sub, #wrapper #contents .section#section08.showStart .cont .inner .sub, #wrapper #contents .section#section09.showStart .cont .inner .sub, #wrapper #contents .section#section10.showStart .cont .inner .sub, #wrapper #contents .section#section11.showStart .cont .inner .sub, #wrapper #contents .section#section12.showStart .cont .inner .sub, #wrapper #contents .section#section13.showStart .cont .inner .sub, #wrapper #contents .section#section14.showStart .cont .inner .sub, #wrapper #contents .section#section15.showStart .cont .inner .sub, #wrapper #contents .section#section16.showStart .cont .inner .sub {
  transition-delay: 700ms;
}

#wrapper #contents .section#section01.showStart .cont .inner p, #wrapper #contents .section#section02.showStart .cont .inner p, #wrapper #contents .section#section03.showStart .cont .inner p, #wrapper #contents .section#section04.showStart .cont .inner p, #wrapper #contents .section#section05.showStart .cont .inner p, #wrapper #contents .section#section06.showStart .cont .inner p, #wrapper #contents .section#section07.showStart .cont .inner p, #wrapper #contents .section#section08.showStart .cont .inner p, #wrapper #contents .section#section09.showStart .cont .inner p, #wrapper #contents .section#section10.showStart .cont .inner p, #wrapper #contents .section#section11.showStart .cont .inner p, #wrapper #contents .section#section12.showStart .cont .inner p, #wrapper #contents .section#section13.showStart .cont .inner p, #wrapper #contents .section#section14.showStart .cont .inner p, #wrapper #contents .section#section15.showStart .cont .inner p, #wrapper #contents .section#section16.showStart .cont .inner p {
  transition-delay: 900ms;
}

#wrapper #contents .section#section01.showStart .cont .inner .label,
#wrapper #contents .section#section01.showStart .cont .inner h2,
#wrapper #contents .section#section01.showStart .cont .inner .sub,
#wrapper #contents .section#section01.showStart .cont .inner p, #wrapper #contents .section#section02.showStart .cont .inner .label,
#wrapper #contents .section#section02.showStart .cont .inner h2,
#wrapper #contents .section#section02.showStart .cont .inner .sub,
#wrapper #contents .section#section02.showStart .cont .inner p, #wrapper #contents .section#section03.showStart .cont .inner .label,
#wrapper #contents .section#section03.showStart .cont .inner h2,
#wrapper #contents .section#section03.showStart .cont .inner .sub,
#wrapper #contents .section#section03.showStart .cont .inner p, #wrapper #contents .section#section04.showStart .cont .inner .label,
#wrapper #contents .section#section04.showStart .cont .inner h2,
#wrapper #contents .section#section04.showStart .cont .inner .sub,
#wrapper #contents .section#section04.showStart .cont .inner p, #wrapper #contents .section#section05.showStart .cont .inner .label,
#wrapper #contents .section#section05.showStart .cont .inner h2,
#wrapper #contents .section#section05.showStart .cont .inner .sub,
#wrapper #contents .section#section05.showStart .cont .inner p, #wrapper #contents .section#section06.showStart .cont .inner .label,
#wrapper #contents .section#section06.showStart .cont .inner h2,
#wrapper #contents .section#section06.showStart .cont .inner .sub,
#wrapper #contents .section#section06.showStart .cont .inner p, #wrapper #contents .section#section07.showStart .cont .inner .label,
#wrapper #contents .section#section07.showStart .cont .inner h2,
#wrapper #contents .section#section07.showStart .cont .inner .sub,
#wrapper #contents .section#section07.showStart .cont .inner p, #wrapper #contents .section#section08.showStart .cont .inner .label,
#wrapper #contents .section#section08.showStart .cont .inner h2,
#wrapper #contents .section#section08.showStart .cont .inner .sub,
#wrapper #contents .section#section08.showStart .cont .inner p, #wrapper #contents .section#section09.showStart .cont .inner .label,
#wrapper #contents .section#section09.showStart .cont .inner h2,
#wrapper #contents .section#section09.showStart .cont .inner .sub,
#wrapper #contents .section#section09.showStart .cont .inner p, #wrapper #contents .section#section10.showStart .cont .inner .label,
#wrapper #contents .section#section10.showStart .cont .inner h2,
#wrapper #contents .section#section10.showStart .cont .inner .sub,
#wrapper #contents .section#section10.showStart .cont .inner p, #wrapper #contents .section#section11.showStart .cont .inner .label,
#wrapper #contents .section#section11.showStart .cont .inner h2,
#wrapper #contents .section#section11.showStart .cont .inner .sub,
#wrapper #contents .section#section11.showStart .cont .inner p, #wrapper #contents .section#section12.showStart .cont .inner .label,
#wrapper #contents .section#section12.showStart .cont .inner h2,
#wrapper #contents .section#section12.showStart .cont .inner .sub,
#wrapper #contents .section#section12.showStart .cont .inner p, #wrapper #contents .section#section13.showStart .cont .inner .label,
#wrapper #contents .section#section13.showStart .cont .inner h2,
#wrapper #contents .section#section13.showStart .cont .inner .sub,
#wrapper #contents .section#section13.showStart .cont .inner p, #wrapper #contents .section#section14.showStart .cont .inner .label,
#wrapper #contents .section#section14.showStart .cont .inner h2,
#wrapper #contents .section#section14.showStart .cont .inner .sub,
#wrapper #contents .section#section14.showStart .cont .inner p, #wrapper #contents .section#section15.showStart .cont .inner .label,
#wrapper #contents .section#section15.showStart .cont .inner h2,
#wrapper #contents .section#section15.showStart .cont .inner .sub,
#wrapper #contents .section#section15.showStart .cont .inner p, #wrapper #contents .section#section16.showStart .cont .inner .label,
#wrapper #contents .section#section16.showStart .cont .inner h2,
#wrapper #contents .section#section16.showStart .cont .inner .sub,
#wrapper #contents .section#section16.showStart .cont .inner p {
  opacity: 1;
}

#wrapper #contents .section#section01.hideStart, #wrapper #contents .section#section02.hideStart, #wrapper #contents .section#section03.hideStart, #wrapper #contents .section#section04.hideStart, #wrapper #contents .section#section05.hideStart, #wrapper #contents .section#section06.hideStart, #wrapper #contents .section#section07.hideStart, #wrapper #contents .section#section08.hideStart, #wrapper #contents .section#section09.hideStart, #wrapper #contents .section#section10.hideStart, #wrapper #contents .section#section11.hideStart, #wrapper #contents .section#section12.hideStart, #wrapper #contents .section#section13.hideStart, #wrapper #contents .section#section14.hideStart, #wrapper #contents .section#section15.hideStart, #wrapper #contents .section#section16.hideStart {
  overflow: hidden;
  -webkit-transform: scale(0.85);
      -ms-transform: scale(0.85);
          transform: scale(0.85);
  transition-duration: 900ms;
  -webkit-animation-timing-function: cubic-bezier(1, 0, 1, 1);
          animation-timing-function: cubic-bezier(1, 0, 1, 1);
}

#wrapper #contents .section#section01 .figBlock, #wrapper #contents .section#section02 .figBlock, #wrapper #contents .section#section03 .figBlock, #wrapper #contents .section#section04 .figBlock, #wrapper #contents .section#section05 .figBlock, #wrapper #contents .section#section06 .figBlock, #wrapper #contents .section#section07 .figBlock, #wrapper #contents .section#section08 .figBlock, #wrapper #contents .section#section09 .figBlock, #wrapper #contents .section#section10 .figBlock, #wrapper #contents .section#section11 .figBlock, #wrapper #contents .section#section12 .figBlock, #wrapper #contents .section#section13 .figBlock, #wrapper #contents .section#section14 .figBlock, #wrapper #contents .section#section15 .figBlock, #wrapper #contents .section#section16 .figBlock {
  height: 100%;
  float: left;
  width: calc(100% - 440px);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  transition-duration: 2500ms;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"], #wrapper #contents .section#section02 .figBlock[data-role="slide"], #wrapper #contents .section#section03 .figBlock[data-role="slide"], #wrapper #contents .section#section04 .figBlock[data-role="slide"], #wrapper #contents .section#section05 .figBlock[data-role="slide"], #wrapper #contents .section#section06 .figBlock[data-role="slide"], #wrapper #contents .section#section07 .figBlock[data-role="slide"], #wrapper #contents .section#section08 .figBlock[data-role="slide"], #wrapper #contents .section#section09 .figBlock[data-role="slide"], #wrapper #contents .section#section10 .figBlock[data-role="slide"], #wrapper #contents .section#section11 .figBlock[data-role="slide"], #wrapper #contents .section#section12 .figBlock[data-role="slide"], #wrapper #contents .section#section13 .figBlock[data-role="slide"], #wrapper #contents .section#section14 .figBlock[data-role="slide"], #wrapper #contents .section#section15 .figBlock[data-role="slide"], #wrapper #contents .section#section16 .figBlock[data-role="slide"] {
  background: #000 !important;
  overflow: hidden;
  height: 100vh;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section02 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section03 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section04 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section05 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section06 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section07 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section08 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section09 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section10 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section11 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section12 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section13 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section14 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section15 .figBlock[data-role="slide"] .bx-viewport, #wrapper #contents .section#section16 .figBlock[data-role="slide"] .bx-viewport {
  margin: 0;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section02 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section03 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section04 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section05 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section06 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section07 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section08 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section09 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section10 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section11 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section12 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section13 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section14 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section15 .figBlock[data-role="slide"] .bx-controls, #wrapper #contents .section#section16 .figBlock[data-role="slide"] .bx-controls {
  margin-bottom: 0;
  display: none;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section02 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section03 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section04 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section05 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section06 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section07 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section08 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section09 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section10 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section11 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section12 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section13 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section14 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section15 .figBlock[data-role="slide"] .bx-controls a, #wrapper #contents .section#section16 .figBlock[data-role="slide"] .bx-controls a {
  position: absolute;
  top: 50%;
  z-index: 100;
  display: block;
  width: 47px;
  height: 46px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section02 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section03 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section04 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section05 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section06 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section07 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section08 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section09 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section10 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section11 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section12 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section13 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section14 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section15 .figBlock[data-role="slide"] .bx-controls a.bx-prev, #wrapper #contents .section#section16 .figBlock[data-role="slide"] .bx-controls a.bx-prev {
  left: 30px;
  background: transparent url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/back.png) no-repeat;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section02 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section03 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section04 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section05 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section06 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section07 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section08 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section09 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section10 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section11 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section12 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section13 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section14 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section15 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #wrapper #contents .section#section16 .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled {
  display: none;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section02 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section03 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section04 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section05 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section06 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section07 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section08 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section09 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section10 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section11 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section12 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section13 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section14 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section15 .figBlock[data-role="slide"] .bx-controls a.bx-next, #wrapper #contents .section#section16 .figBlock[data-role="slide"] .bx-controls a.bx-next {
  right: 30px;
  background: transparent url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/next.png) no-repeat;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section02 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section03 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section04 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section05 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section06 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section07 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section08 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section09 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section10 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section11 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section12 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section13 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section14 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section15 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #wrapper #contents .section#section16 .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled {
  display: none;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section02 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section03 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section04 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section05 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section06 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section07 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section08 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section09 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section10 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section11 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section12 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section13 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section14 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section15 .figBlock[data-role="slide"] ul, #wrapper #contents .section#section16 .figBlock[data-role="slide"] ul {
  position: relative;
  margin: 0 !important;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section02 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section03 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section04 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section05 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section06 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section07 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section08 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section09 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section10 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section11 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section12 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section13 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section14 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section15 .figBlock[data-role="slide"] ul li, #wrapper #contents .section#section16 .figBlock[data-role="slide"] ul li {
  height: 100vh;
  width: 100%;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section02 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section03 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section04 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section05 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section06 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section07 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section08 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section09 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section10 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section11 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section12 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section13 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section14 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section15 .figBlock[data-role="slide"] ul li img, #wrapper #contents .section#section16 .figBlock[data-role="slide"] ul li img {
  width: 100%;
  display: block;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section02 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section03 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section04 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section05 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section06 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section07 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section08 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section09 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section10 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section11 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section12 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section13 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section14 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section15 .figBlock[data-role="slide"] .btn, #wrapper #contents .section#section16 .figBlock[data-role="slide"] .btn {
  z-index: 100;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section02 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section03 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section04 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section05 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section06 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section07 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section08 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section09 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section10 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section11 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section12 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section13 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section14 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section15 .figBlock[data-role="slide"] .btn a, #wrapper #contents .section#section16 .figBlock[data-role="slide"] .btn a {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/btn_slide.png) no-repeat;
}

#wrapper #contents .section#section01 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section02 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section03 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section04 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section05 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section06 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section07 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section08 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section09 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section10 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section11 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section12 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section13 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section14 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section15 .figBlock[data-role="slide"] .btn a.active, #wrapper #contents .section#section16 .figBlock[data-role="slide"] .btn a.active {
  background-position: 0 -48px;
}

#wrapper #contents .section#section01 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section02 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section03 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section04 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section05 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section06 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section07 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section08 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section09 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section10 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section11 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section12 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section13 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section14 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section15 .figBlock[data-role="movie"] .btn a, #wrapper #contents .section#section16 .figBlock[data-role="movie"] .btn a {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/btn_movie.png) no-repeat;
}

#wrapper #contents .section#section01 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section02 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section03 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section04 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section05 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section06 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section07 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section08 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section09 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section10 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section11 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section12 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section13 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section14 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section15 .figBlock[data-role="movie"] .btn a.active, #wrapper #contents .section#section16 .figBlock[data-role="movie"] .btn a.active {
  background-position: 0 -48px;
}

#wrapper #contents .section#section01 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section02 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section03 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section04 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section05 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section06 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section07 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section08 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section09 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section10 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section11 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section12 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section13 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section14 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section15 .figBlock[data-role="modal"] .modal, #wrapper #contents .section#section16 .figBlock[data-role="modal"] .modal {
  display: none;
  background: #fff;
  width: 722px;
  height: 372px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  zoom: 1;
}

#wrapper #contents .section#section01 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section01 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section02 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section02 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section03 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section03 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section04 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section04 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section05 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section05 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section06 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section06 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section07 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section07 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section08 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section08 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section09 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section09 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section10 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section10 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section11 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section11 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section12 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section12 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section13 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section13 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section14 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section14 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section15 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section15 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section16 .figBlock[data-role="modal"] .modal:before, #wrapper #contents .section#section16 .figBlock[data-role="modal"] .modal:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: "\0020";
}

#wrapper #contents .section#section01 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section02 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section03 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section04 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section05 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section06 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section07 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section08 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section09 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section10 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section11 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section12 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section13 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section14 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section15 .figBlock[data-role="modal"] .modal:after, #wrapper #contents .section#section16 .figBlock[data-role="modal"] .modal:after {
  clear: both;
}

#wrapper #contents .section#section01 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section02 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section03 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section04 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section05 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section06 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section07 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section08 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section09 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section10 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section11 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section12 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section13 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section14 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section15 .figBlock[data-role="modal"] .modal figure, #wrapper #contents .section#section16 .figBlock[data-role="modal"] .modal figure {
  float: left;
}

#wrapper #contents .section#section01 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section02 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section03 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section04 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section05 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section06 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section07 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section08 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section09 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section10 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section11 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section12 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section13 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section14 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section15 .figBlock[data-role="modal"] .modal .modalCont, #wrapper #contents .section#section16 .figBlock[data-role="modal"] .modal .modalCont {
  float: right;
  width: 380px;
  height: 100%;
  overflow: auto;
  padding: 30px 50px;
}

#wrapper #contents .section#section01 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section02 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section03 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section04 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section05 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section06 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section07 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section08 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section09 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section10 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section11 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section12 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section13 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section14 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section15 .figBlock[data-role="modal"] .modal .modalCont h3, #wrapper #contents .section#section16 .figBlock[data-role="modal"] .modal .modalCont h3 {
  font-family: 'AXIS Font Japanese W55';
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
  line-height: 160%;
}

#wrapper #contents .section#section01 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section02 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section03 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section04 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section05 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section06 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section07 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section08 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section09 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section10 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section11 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section12 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section13 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section14 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section15 .figBlock[data-role="modal"] .modal .modalCont p, #wrapper #contents .section#section16 .figBlock[data-role="modal"] .modal .modalCont p {
  font-size: 14px;
  font-size: 1.4rem;
}

#wrapper #contents .section#section01 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section02 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section03 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section04 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section05 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section06 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section07 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section08 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section09 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section10 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section11 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section12 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section13 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section14 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section15 .figBlock[data-role="modal"] .btn a, #wrapper #contents .section#section16 .figBlock[data-role="modal"] .btn a {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/btn_modal.png) no-repeat;
}

#wrapper #contents .section#section01 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section02 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section03 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section04 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section05 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section06 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section07 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section08 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section09 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section10 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section11 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section12 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section13 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section14 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section15 .figBlock[data-role="modal"] .btn a.active, #wrapper #contents .section#section16 .figBlock[data-role="modal"] .btn a.active {
  background-position: 0 -48px;
}

#wrapper #contents .section#section01 .figBlock video, #wrapper #contents .section#section02 .figBlock video, #wrapper #contents .section#section03 .figBlock video, #wrapper #contents .section#section04 .figBlock video, #wrapper #contents .section#section05 .figBlock video, #wrapper #contents .section#section06 .figBlock video, #wrapper #contents .section#section07 .figBlock video, #wrapper #contents .section#section08 .figBlock video, #wrapper #contents .section#section09 .figBlock video, #wrapper #contents .section#section10 .figBlock video, #wrapper #contents .section#section11 .figBlock video, #wrapper #contents .section#section12 .figBlock video, #wrapper #contents .section#section13 .figBlock video, #wrapper #contents .section#section14 .figBlock video, #wrapper #contents .section#section15 .figBlock video, #wrapper #contents .section#section16 .figBlock video {
  position: absolute;
  height: auto;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

#wrapper #contents .section#section01 .figBlock .btn, #wrapper #contents .section#section02 .figBlock .btn, #wrapper #contents .section#section03 .figBlock .btn, #wrapper #contents .section#section04 .figBlock .btn, #wrapper #contents .section#section05 .figBlock .btn, #wrapper #contents .section#section06 .figBlock .btn, #wrapper #contents .section#section07 .figBlock .btn, #wrapper #contents .section#section08 .figBlock .btn, #wrapper #contents .section#section09 .figBlock .btn, #wrapper #contents .section#section10 .figBlock .btn, #wrapper #contents .section#section11 .figBlock .btn, #wrapper #contents .section#section12 .figBlock .btn, #wrapper #contents .section#section13 .figBlock .btn, #wrapper #contents .section#section14 .figBlock .btn, #wrapper #contents .section#section15 .figBlock .btn, #wrapper #contents .section#section16 .figBlock .btn {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

#wrapper #contents .section#section01 .figBlock .btn a, #wrapper #contents .section#section02 .figBlock .btn a, #wrapper #contents .section#section03 .figBlock .btn a, #wrapper #contents .section#section04 .figBlock .btn a, #wrapper #contents .section#section05 .figBlock .btn a, #wrapper #contents .section#section06 .figBlock .btn a, #wrapper #contents .section#section07 .figBlock .btn a, #wrapper #contents .section#section08 .figBlock .btn a, #wrapper #contents .section#section09 .figBlock .btn a, #wrapper #contents .section#section10 .figBlock .btn a, #wrapper #contents .section#section11 .figBlock .btn a, #wrapper #contents .section#section12 .figBlock .btn a, #wrapper #contents .section#section13 .figBlock .btn a, #wrapper #contents .section#section14 .figBlock .btn a, #wrapper #contents .section#section15 .figBlock .btn a, #wrapper #contents .section#section16 .figBlock .btn a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  height: 48px;
  width: 96px;
  display: block;
  margin: 0 auto;
}

#wrapper #contents .section#section01 .cont, #wrapper #contents .section#section02 .cont, #wrapper #contents .section#section03 .cont, #wrapper #contents .section#section04 .cont, #wrapper #contents .section#section05 .cont, #wrapper #contents .section#section06 .cont, #wrapper #contents .section#section07 .cont, #wrapper #contents .section#section08 .cont, #wrapper #contents .section#section09 .cont, #wrapper #contents .section#section10 .cont, #wrapper #contents .section#section11 .cont, #wrapper #contents .section#section12 .cont, #wrapper #contents .section#section13 .cont, #wrapper #contents .section#section14 .cont, #wrapper #contents .section#section15 .cont, #wrapper #contents .section#section16 .cont {
  background: #fff;
  width: 440px;
  height: 100%;
  float: right;
  padding: 0 95px 0 50px;
  position: relative;
  margin-bottom: 0;
}

#wrapper #contents .section#section01 .cont .inner, #wrapper #contents .section#section02 .cont .inner, #wrapper #contents .section#section03 .cont .inner, #wrapper #contents .section#section04 .cont .inner, #wrapper #contents .section#section05 .cont .inner, #wrapper #contents .section#section06 .cont .inner, #wrapper #contents .section#section07 .cont .inner, #wrapper #contents .section#section08 .cont .inner, #wrapper #contents .section#section09 .cont .inner, #wrapper #contents .section#section10 .cont .inner, #wrapper #contents .section#section11 .cont .inner, #wrapper #contents .section#section12 .cont .inner, #wrapper #contents .section#section13 .cont .inner, #wrapper #contents .section#section14 .cont .inner, #wrapper #contents .section#section15 .cont .inner, #wrapper #contents .section#section16 .cont .inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 295px;
}

#wrapper #contents .section#section01 .cont .inner:before, #wrapper #contents .section#section02 .cont .inner:before, #wrapper #contents .section#section03 .cont .inner:before, #wrapper #contents .section#section04 .cont .inner:before, #wrapper #contents .section#section05 .cont .inner:before, #wrapper #contents .section#section06 .cont .inner:before, #wrapper #contents .section#section07 .cont .inner:before, #wrapper #contents .section#section08 .cont .inner:before, #wrapper #contents .section#section09 .cont .inner:before, #wrapper #contents .section#section10 .cont .inner:before, #wrapper #contents .section#section11 .cont .inner:before, #wrapper #contents .section#section12 .cont .inner:before, #wrapper #contents .section#section13 .cont .inner:before, #wrapper #contents .section#section14 .cont .inner:before, #wrapper #contents .section#section15 .cont .inner:before, #wrapper #contents .section#section16 .cont .inner:before {
  content: '';
  border-top: #000 2px solid;
  width: 83px;
  height: 2px;
  display: block;
  margin-bottom: 10px;
}

#wrapper #contents .section#section01 .cont .inner .label, #wrapper #contents .section#section02 .cont .inner .label, #wrapper #contents .section#section03 .cont .inner .label, #wrapper #contents .section#section04 .cont .inner .label, #wrapper #contents .section#section05 .cont .inner .label, #wrapper #contents .section#section06 .cont .inner .label, #wrapper #contents .section#section07 .cont .inner .label, #wrapper #contents .section#section08 .cont .inner .label, #wrapper #contents .section#section09 .cont .inner .label, #wrapper #contents .section#section10 .cont .inner .label, #wrapper #contents .section#section11 .cont .inner .label, #wrapper #contents .section#section12 .cont .inner .label, #wrapper #contents .section#section13 .cont .inner .label, #wrapper #contents .section#section14 .cont .inner .label, #wrapper #contents .section#section15 .cont .inner .label, #wrapper #contents .section#section16 .cont .inner .label {
  position: relative;
  width: 295px;
  font-family: 'Avenir Next W00';
  font-weight: 500;
  font-style: normal;
  margin-bottom: 35px;
  letter-spacing: 2.6px;
}

#wrapper #contents .section#section01 .cont .inner .label span, #wrapper #contents .section#section02 .cont .inner .label span, #wrapper #contents .section#section03 .cont .inner .label span, #wrapper #contents .section#section04 .cont .inner .label span, #wrapper #contents .section#section05 .cont .inner .label span, #wrapper #contents .section#section06 .cont .inner .label span, #wrapper #contents .section#section07 .cont .inner .label span, #wrapper #contents .section#section08 .cont .inner .label span, #wrapper #contents .section#section09 .cont .inner .label span, #wrapper #contents .section#section10 .cont .inner .label span, #wrapper #contents .section#section11 .cont .inner .label span, #wrapper #contents .section#section12 .cont .inner .label span, #wrapper #contents .section#section13 .cont .inner .label span, #wrapper #contents .section#section14 .cont .inner .label span, #wrapper #contents .section#section15 .cont .inner .label span, #wrapper #contents .section#section16 .cont .inner .label span {
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  margin-left: 15px;
}

#wrapper #contents .section#section01 .cont .inner h2, #wrapper #contents .section#section02 .cont .inner h2, #wrapper #contents .section#section03 .cont .inner h2, #wrapper #contents .section#section04 .cont .inner h2, #wrapper #contents .section#section05 .cont .inner h2, #wrapper #contents .section#section06 .cont .inner h2, #wrapper #contents .section#section07 .cont .inner h2, #wrapper #contents .section#section08 .cont .inner h2, #wrapper #contents .section#section09 .cont .inner h2, #wrapper #contents .section#section10 .cont .inner h2, #wrapper #contents .section#section11 .cont .inner h2, #wrapper #contents .section#section12 .cont .inner h2, #wrapper #contents .section#section13 .cont .inner h2, #wrapper #contents .section#section14 .cont .inner h2, #wrapper #contents .section#section15 .cont .inner h2, #wrapper #contents .section#section16 .cont .inner h2 {
  position: relative;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 100%;
  margin-bottom: 10px;
}

#wrapper #contents .section#section01 .cont .inner .sub, #wrapper #contents .section#section02 .cont .inner .sub, #wrapper #contents .section#section03 .cont .inner .sub, #wrapper #contents .section#section04 .cont .inner .sub, #wrapper #contents .section#section05 .cont .inner .sub, #wrapper #contents .section#section06 .cont .inner .sub, #wrapper #contents .section#section07 .cont .inner .sub, #wrapper #contents .section#section08 .cont .inner .sub, #wrapper #contents .section#section09 .cont .inner .sub, #wrapper #contents .section#section10 .cont .inner .sub, #wrapper #contents .section#section11 .cont .inner .sub, #wrapper #contents .section#section12 .cont .inner .sub, #wrapper #contents .section#section13 .cont .inner .sub, #wrapper #contents .section#section14 .cont .inner .sub, #wrapper #contents .section#section15 .cont .inner .sub, #wrapper #contents .section#section16 .cont .inner .sub {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

#wrapper #contents .section#section01 .cont .inner .sub span, #wrapper #contents .section#section02 .cont .inner .sub span, #wrapper #contents .section#section03 .cont .inner .sub span, #wrapper #contents .section#section04 .cont .inner .sub span, #wrapper #contents .section#section05 .cont .inner .sub span, #wrapper #contents .section#section06 .cont .inner .sub span, #wrapper #contents .section#section07 .cont .inner .sub span, #wrapper #contents .section#section08 .cont .inner .sub span, #wrapper #contents .section#section09 .cont .inner .sub span, #wrapper #contents .section#section10 .cont .inner .sub span, #wrapper #contents .section#section11 .cont .inner .sub span, #wrapper #contents .section#section12 .cont .inner .sub span, #wrapper #contents .section#section13 .cont .inner .sub span, #wrapper #contents .section#section14 .cont .inner .sub span, #wrapper #contents .section#section15 .cont .inner .sub span, #wrapper #contents .section#section16 .cont .inner .sub span {
  background: #ddd;
  display: inline-block;
  position: relative;
}

#wrapper #contents .section#section01 .cont .inner .sub span span, #wrapper #contents .section#section02 .cont .inner .sub span span, #wrapper #contents .section#section03 .cont .inner .sub span span, #wrapper #contents .section#section04 .cont .inner .sub span span, #wrapper #contents .section#section05 .cont .inner .sub span span, #wrapper #contents .section#section06 .cont .inner .sub span span, #wrapper #contents .section#section07 .cont .inner .sub span span, #wrapper #contents .section#section08 .cont .inner .sub span span, #wrapper #contents .section#section09 .cont .inner .sub span span, #wrapper #contents .section#section10 .cont .inner .sub span span, #wrapper #contents .section#section11 .cont .inner .sub span span, #wrapper #contents .section#section12 .cont .inner .sub span span, #wrapper #contents .section#section13 .cont .inner .sub span span, #wrapper #contents .section#section14 .cont .inner .sub span span, #wrapper #contents .section#section15 .cont .inner .sub span span, #wrapper #contents .section#section16 .cont .inner .sub span span {
  display: block;
  padding: 0 0 0 5px;
  position: relative;
  z-index: 10;
}

#wrapper #contents .section#section01 .cont .inner .sub span span::after, #wrapper #contents .section#section02 .cont .inner .sub span span::after, #wrapper #contents .section#section03 .cont .inner .sub span span::after, #wrapper #contents .section#section04 .cont .inner .sub span span::after, #wrapper #contents .section#section05 .cont .inner .sub span span::after, #wrapper #contents .section#section06 .cont .inner .sub span span::after, #wrapper #contents .section#section07 .cont .inner .sub span span::after, #wrapper #contents .section#section08 .cont .inner .sub span span::after, #wrapper #contents .section#section09 .cont .inner .sub span span::after, #wrapper #contents .section#section10 .cont .inner .sub span span::after, #wrapper #contents .section#section11 .cont .inner .sub span span::after, #wrapper #contents .section#section12 .cont .inner .sub span span::after, #wrapper #contents .section#section13 .cont .inner .sub span span::after, #wrapper #contents .section#section14 .cont .inner .sub span span::after, #wrapper #contents .section#section15 .cont .inner .sub span span::after, #wrapper #contents .section#section16 .cont .inner .sub span span::after {
  content: "　";
  background: #ddd;
  display: block;
  -webkit-transform: skewX(-25deg);
      -ms-transform: skewX(-25deg);
          transform: skewX(-25deg);
  width: 50px;
  position: absolute;
  right: -7px;
  top: 0;
  z-index: -1;
  height: 100%;
}

#wrapper #contents .section#section01 .cont .inner .sub span span, #wrapper #contents .section#section02 .cont .inner .sub span span, #wrapper #contents .section#section03 .cont .inner .sub span span, #wrapper #contents .section#section04 .cont .inner .sub span span, #wrapper #contents .section#section05 .cont .inner .sub span span, #wrapper #contents .section#section06 .cont .inner .sub span span, #wrapper #contents .section#section07 .cont .inner .sub span span, #wrapper #contents .section#section08 .cont .inner .sub span span, #wrapper #contents .section#section09 .cont .inner .sub span span, #wrapper #contents .section#section10 .cont .inner .sub span span, #wrapper #contents .section#section11 .cont .inner .sub span span, #wrapper #contents .section#section12 .cont .inner .sub span span, #wrapper #contents .section#section13 .cont .inner .sub span span, #wrapper #contents .section#section14 .cont .inner .sub span span, #wrapper #contents .section#section15 .cont .inner .sub span span, #wrapper #contents .section#section16 .cont .inner .sub span span {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 500;
  font-style: normal;
  padding-right: 10px;
}

#wrapper #contents .section#section01 .cont .inner p, #wrapper #contents .section#section02 .cont .inner p, #wrapper #contents .section#section03 .cont .inner p, #wrapper #contents .section#section04 .cont .inner p, #wrapper #contents .section#section05 .cont .inner p, #wrapper #contents .section#section06 .cont .inner p, #wrapper #contents .section#section07 .cont .inner p, #wrapper #contents .section#section08 .cont .inner p, #wrapper #contents .section#section09 .cont .inner p, #wrapper #contents .section#section10 .cont .inner p, #wrapper #contents .section#section11 .cont .inner p, #wrapper #contents .section#section12 .cont .inner p, #wrapper #contents .section#section13 .cont .inner p, #wrapper #contents .section#section14 .cont .inner p, #wrapper #contents .section#section15 .cont .inner p, #wrapper #contents .section#section16 .cont .inner p {
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
}

#wrapper #contents .section#section01 .cont .inner .label,
#wrapper #contents .section#section01 .cont .inner h2,
#wrapper #contents .section#section01 .cont .inner .sub,
#wrapper #contents .section#section01 .cont .inner p, #wrapper #contents .section#section02 .cont .inner .label,
#wrapper #contents .section#section02 .cont .inner h2,
#wrapper #contents .section#section02 .cont .inner .sub,
#wrapper #contents .section#section02 .cont .inner p, #wrapper #contents .section#section03 .cont .inner .label,
#wrapper #contents .section#section03 .cont .inner h2,
#wrapper #contents .section#section03 .cont .inner .sub,
#wrapper #contents .section#section03 .cont .inner p, #wrapper #contents .section#section04 .cont .inner .label,
#wrapper #contents .section#section04 .cont .inner h2,
#wrapper #contents .section#section04 .cont .inner .sub,
#wrapper #contents .section#section04 .cont .inner p, #wrapper #contents .section#section05 .cont .inner .label,
#wrapper #contents .section#section05 .cont .inner h2,
#wrapper #contents .section#section05 .cont .inner .sub,
#wrapper #contents .section#section05 .cont .inner p, #wrapper #contents .section#section06 .cont .inner .label,
#wrapper #contents .section#section06 .cont .inner h2,
#wrapper #contents .section#section06 .cont .inner .sub,
#wrapper #contents .section#section06 .cont .inner p, #wrapper #contents .section#section07 .cont .inner .label,
#wrapper #contents .section#section07 .cont .inner h2,
#wrapper #contents .section#section07 .cont .inner .sub,
#wrapper #contents .section#section07 .cont .inner p, #wrapper #contents .section#section08 .cont .inner .label,
#wrapper #contents .section#section08 .cont .inner h2,
#wrapper #contents .section#section08 .cont .inner .sub,
#wrapper #contents .section#section08 .cont .inner p, #wrapper #contents .section#section09 .cont .inner .label,
#wrapper #contents .section#section09 .cont .inner h2,
#wrapper #contents .section#section09 .cont .inner .sub,
#wrapper #contents .section#section09 .cont .inner p, #wrapper #contents .section#section10 .cont .inner .label,
#wrapper #contents .section#section10 .cont .inner h2,
#wrapper #contents .section#section10 .cont .inner .sub,
#wrapper #contents .section#section10 .cont .inner p, #wrapper #contents .section#section11 .cont .inner .label,
#wrapper #contents .section#section11 .cont .inner h2,
#wrapper #contents .section#section11 .cont .inner .sub,
#wrapper #contents .section#section11 .cont .inner p, #wrapper #contents .section#section12 .cont .inner .label,
#wrapper #contents .section#section12 .cont .inner h2,
#wrapper #contents .section#section12 .cont .inner .sub,
#wrapper #contents .section#section12 .cont .inner p, #wrapper #contents .section#section13 .cont .inner .label,
#wrapper #contents .section#section13 .cont .inner h2,
#wrapper #contents .section#section13 .cont .inner .sub,
#wrapper #contents .section#section13 .cont .inner p, #wrapper #contents .section#section14 .cont .inner .label,
#wrapper #contents .section#section14 .cont .inner h2,
#wrapper #contents .section#section14 .cont .inner .sub,
#wrapper #contents .section#section14 .cont .inner p, #wrapper #contents .section#section15 .cont .inner .label,
#wrapper #contents .section#section15 .cont .inner h2,
#wrapper #contents .section#section15 .cont .inner .sub,
#wrapper #contents .section#section15 .cont .inner p, #wrapper #contents .section#section16 .cont .inner .label,
#wrapper #contents .section#section16 .cont .inner h2,
#wrapper #contents .section#section16 .cont .inner .sub,
#wrapper #contents .section#section16 .cont .inner p {
  opacity: 0;
  transition-duration: 800ms;
}

#wrapper #contents .section#foot {
  background: #ddd;
  position: relative;
  min-height: 600px;
}

#wrapper #contents .section#foot > .wrap {
  height: 100%;
  padding-bottom: 290px;
}

#wrapper #contents .section#foot > .wrap > .wrap {
  display: table;
  width: 100%;
  height: 100%;
}

#wrapper #contents .section#foot > .wrap > .wrap .banner {
  display: table-cell;
  vertical-align: middle;
  background-color: #333;
  text-align: center;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap {
  display: table-cell;
  vertical-align: middle;
  padding: 42px 40px 40px 64px;
  position: relative;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap h2 {
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: 23px;
  left: 40px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav {
  display: table;
  border-spacing: 10px;
  width: 100%;
  height: 100%;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a {
  display: table-row;
  text-decoration: none;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a.razor .wrap:before {
  background-image: url(https://www.kai-group.com/contents_file/global/kai-factory/img/common/footer_image1.png);
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a.kitchen-knives .wrap:before {
  background-image: url(https://www.kai-group.com/contents_file/global/kai-factory/img/common/footer_image2.png);
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a.nail-clippers .wrap:before {
  background-image: url(https://www.kai-group.com/contents_file/global/kai-factory/img/common/footer_image3.png);
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a.scissors .wrap:before {
  background-image: url(https://www.kai-group.com/contents_file/global/kai-factory/img/common/footer_image4.png);
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a.ophthalmic-knives .wrap:before {
  background-image: url(https://www.kai-group.com/contents_file/global/kai-factory/img/common/footer_image5.png);
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a.active .wrap dl {
  border-bottom-width: 3px;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a:hover .wrap dl {
  background-color: #000;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a:hover .wrap dl dt {
  color: #fff;
  -webkit-transform: translateX(20px);
      -ms-transform: translateX(20px);
          transform: translateX(20px);
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a:hover .wrap dl dd {
  color: #fff;
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a:hover .wrap dl dd:after {
  content: url(https://www.kai-group.com/contents_file/global/kai-factory/img/common/arrow_white.png);
  display: inline-block;
  padding-left: 10px;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a .wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0 0 220px;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a .wrap:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: inline-block;
  width: 200px;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a .wrap dl {
  display: table;
  border-spacing: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #000;
  transition-duration: 400ms;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a .wrap dl dt {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  transition-duration: 400ms;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a .wrap dl dd {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  font-weight: bold;
  transition-duration: 400ms;
}

#wrapper #contents .section#foot > .wrap > .wrap > .wrap #mainNav a .wrap dl dd:after {
  content: url(https://www.kai-group.com/contents_file/global/kai-factory/img/common/arrow_black.png);
  display: inline-block;
  padding-left: 10px;
}

#wrapper #contents .section#foot .footerNav {
  background: #000;
  position: absolute;
  bottom: 160px;
  left: 0;
  width: 100%;
  height: 130px;
}

#wrapper #contents .section#foot .footerNav ul {
  margin-bottom: 0;
  background: #000;
  zoom: 1;
}

#wrapper #contents .section#foot .footerNav ul:before, #wrapper #contents .section#foot .footerNav ul:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: "\0020";
}

#wrapper #contents .section#foot .footerNav ul:after {
  clear: both;
}

#wrapper #contents .section#foot .footerNav ul li {
  float: left;
  width: 33.3333%;
  height: 130px;
  position: relative;
  overflow: hidden;
}

#wrapper #contents .section#foot .footerNav ul li a {
  display: block;
  transition-duration: 0.3s;
  width: 100%;
  height: 100%;
  background-color: #000;
}

#wrapper #contents .section#foot .footerNav ul li a:hover figure img {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
      -ms-transform: translateX(-50%) translateY(-50%) scale(1.1);
          transform: translateX(-50%) translateY(-50%) scale(1.1);
  opacity: 0.7;
}

#wrapper #contents .section#foot .footerNav ul li:after {
  content: url(https://www.kai-group.com/contents_file/global/kai-factory/img/common/arrow_white.png);
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#wrapper #contents .section#foot .footerNav ul li figure {
  position: relative;
  width: 100%;
  height: 100%;
}

#wrapper #contents .section#foot .footerNav ul li figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  transition-duration: 0.3s;
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%\9;
  width: 100%;
  height: auto;
}

#wrapper #contents .section#foot .footerNav ul li dl {
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#wrapper #contents .section#foot .footerNav ul li dl dt, #wrapper #contents .section#foot .footerNav ul li dl dd {
  color: #fff;
}

#wrapper #contents .section#foot .footerNav ul li dl dt {
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
  line-height: 100%;
  letter-spacing: 3.9px;
}

#wrapper #contents .section#foot .footerNav ul li dl dd {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 1.4px;
}

#wrapper #contents .section#foot .footerNav02 {
  background: #000;
  position: absolute;
  bottom: 72px;
  left: 0;
  width: 100%;
  height: 88px;
}

#wrapper #contents .section#foot .footerNav02 ul {
  margin-bottom: 0;
  zoom: 1;
}

#wrapper #contents .section#foot .footerNav02 ul:before, #wrapper #contents .section#foot .footerNav02 ul:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: "\0020";
}

#wrapper #contents .section#foot .footerNav02 ul:after {
  clear: both;
}

#wrapper #contents .section#foot .footerNav02 ul li {
  float: left;
  width: 50%;
  position: relative;
}

#wrapper #contents .section#foot .footerNav02 ul li a {
  display: block;
  padding: 20px 40px;
  text-decoration: none;
  background: #C0C0C0;
  transition-duration: 0.3s;
}

#wrapper #contents .section#foot .footerNav02 ul li a:hover {
  opacity: .7;
}

#wrapper #contents .section#foot .footerNav02 ul li:last-child a {
  background: #C3C3C3;
}

#wrapper #contents .section#foot .footerNav02 ul li:after {
  content: url(https://www.kai-group.com/contents_file/global/kai-factory/img/common/arrow_black.png);
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#wrapper #contents .section#foot .footerNav02 ul li dl {
  margin-bottom: 0;
}

#wrapper #contents .section#foot .footerNav02 ul li dl dt {
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: 3px;
}

#wrapper #contents .section#foot .footerNav02 ul li dl dd {
  font-size: 14px;
  font-size: 1.4rem;
}

#wrapper #contents .section#foot footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: #fff;
  text-align: center;
  padding-block: 5px;
  font-size: 11px;
  font-size: 1.1rem;
}

body.razor #wrapper main .section#section01 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/01.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section02 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/02.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section03 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/03.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section04 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/04.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section05 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/05.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section06 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/06.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section07 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/07.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section08 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/08.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section09 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/09.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section10 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/10.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section11 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/11.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section12 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/12.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section13 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/razor/13.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section12 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/11.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section12 ul li:first-child {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/K_slide01.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section12 ul li:nth-child(2) {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/K_slide02.png) no-repeat 50% 50%;
  background-size: cover;
}

body.razor #wrapper main .section#section12 ul li:nth-child(3) {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/11.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section01 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/01.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section02 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/02.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section03 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/03.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section04 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/04.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section05 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/05.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section06 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/06.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section07 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/07.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section08 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/08.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section09 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/09.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section10 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/10.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section11 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/11.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section12 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/12.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section11 ul li:first-child {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/K_slide01.png) no-repeat 50% 50%;
  background-size: cover;
}

body.kitchen-knives #wrapper main .section#section11 ul li:nth-child(2) {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/kitchen-knives/K_slide02.png) no-repeat 50% 50%;
  background-size: cover;
}

body.ophthalmic-knives #wrapper main .section#section01 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/ophthalmic-knives/01.png) no-repeat 50% 50%;
  background-size: cover;
}

body.ophthalmic-knives #wrapper main .section#section02 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/ophthalmic-knives/02.png) no-repeat 50% 50%;
  background-size: cover;
}

body.ophthalmic-knives #wrapper main .section#section03 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/ophthalmic-knives/03.png) no-repeat 50% 50%;
  background-size: cover;
}

body.ophthalmic-knives #wrapper main .section#section04 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/ophthalmic-knives/04.png) no-repeat 50% 50%;
  background-size: cover;
}

body.ophthalmic-knives #wrapper main .section#section05 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/ophthalmic-knives/05.png) no-repeat 50% 50%;
  background-size: cover;
}

body.ophthalmic-knives #wrapper main .section#section06 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/ophthalmic-knives/06.png) no-repeat 50% 50%;
  background-size: cover;
}

body.ophthalmic-knives #wrapper main .section#section07 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/ophthalmic-knives/07.png) no-repeat 50% 50%;
  background-size: cover;
}

body.ophthalmic-knives #wrapper main .section#section08 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/ophthalmic-knives/08.png) no-repeat 50% 50%;
  background-size: cover;
}

body.ophthalmic-knives #wrapper main .section#section02 ul li:first-child {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/ophthalmic-knives/M_slide01.png) no-repeat 50% 50%;
  background-size: cover;
}

body.ophthalmic-knives #wrapper main .section#section02 ul li:nth-child(2) {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/ophthalmic-knives/M_slide02.png) no-repeat 50% 50%;
  background-size: cover;
}

body.ophthalmic-knives #wrapper main .section#section04 ul li:first-child {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/ophthalmic-knives/M_slide03.png) no-repeat 50% 50%;
  background-size: cover;
}

body.ophthalmic-knives #wrapper main .section#section04 ul li:nth-child(2) {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/ophthalmic-knives/M_slide04.png) no-repeat 50% 50%;
  background-size: cover;
}

body.nail-clippers #wrapper main .section#section01 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/nail-clippers/01.png) no-repeat 50% 50%;
  background-size: cover;
}

body.nail-clippers #wrapper main .section#section02 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/nail-clippers/02.png) no-repeat 50% 50%;
  background-size: cover;
}

body.nail-clippers #wrapper main .section#section03 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/nail-clippers/03.png) no-repeat 50% 50%;
  background-size: cover;
}

body.nail-clippers #wrapper main .section#section04 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/nail-clippers/04.png) no-repeat 50% 50%;
  background-size: cover;
}

body.nail-clippers #wrapper main .section#section05 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/nail-clippers/05.png) no-repeat 50% 50%;
  background-size: cover;
}

body.nail-clippers #wrapper main .section#section06 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/nail-clippers/06.png) no-repeat 50% 50%;
  background-size: cover;
}

body.nail-clippers #wrapper main .section#section07 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/nail-clippers/07.png) no-repeat 50% 50%;
  background-size: cover;
}

body.nail-clippers #wrapper main .section#section08 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/nail-clippers/08.png) no-repeat 50% 50%;
  background-size: cover;
}

body.scissorss #wrapper main .section#section01 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/scissors/01.png) no-repeat 50% 50%;
  background-size: cover;
}

body.scissorss #wrapper main .section#section02 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/scissors/02.png) no-repeat 50% 50%;
  background-size: cover;
}

body.scissorss #wrapper main .section#section03 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/scissors/03.png) no-repeat 50% 50%;
  background-size: cover;
}

body.scissorss #wrapper main .section#section04 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/scissors/04.png) no-repeat 50% 50%;
  background-size: cover;
}

body.scissorss #wrapper main .section#section05 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/scissors/05.png) no-repeat 50% 50%;
  background-size: cover;
}

body.scissorss #wrapper main .section#section06 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/scissors/06.png) no-repeat 50% 50%;
  background-size: cover;
}

body.scissorss #wrapper main .section#section07 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/scissors/07.png) no-repeat 50% 50%;
  background-size: cover;
}

body.scissorss #wrapper main .section#section08 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/scissors/08.png) no-repeat 50% 50%;
  background-size: cover;
}

body.scissorss #wrapper main .section#section09 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/scissors/09.png) no-repeat 50% 50%;
  background-size: cover;
}

body.scissorss #wrapper main .section#section10 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/scissors/10.png) no-repeat 50% 50%;
  background-size: cover;
}

body.scissorss #wrapper main .section#section11 .figBlock {
  background: url(https://www.kai-group.com/contents_file/global/kai-factory/img/detail/scissors/11.png) no-repeat 50% 50%;
  background-size: cover;
}

.footer-link-list {
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;

  a {
    color: #000;
    text-decoration: none;
    transition: all .3s;

    &:hover, &:active {
      opacity: .8;
    }
  }
}