@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;
}

body {
  background: #000;
}

a, a:link {
  color: #4059b3;
}

a:visited {
  color: #4059b3;
}

a:hover {
  color: #4059b3;
}

@-webkit-keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: block;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: block;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

#wrapper {
  min-width: 1080px;
}

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

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

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

#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;
  padding: 35px 48px 0 60px;
  right: 0;
  top: 0;
}

#wrapper > header .inner #logo {
  position: absolute;
  top: 45px;
  left: 60px;
}

#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(../png/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 li {
  display: inline-block;
  margin-left: 20px;
}

#wrapper > header .inner nav ul li a {
  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;
  position: relative;
}

#wrapper > header .inner nav ul li a:after {
  content: ' ';
  border-bottom: #fff 2px solid;
  width: 0;
  height: 2px;
  display: block;
  transition: 0.4s width ease 0s;
}

#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 {
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
  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 #line a {
  cursor: pointer;
}

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

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

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

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

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

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

#wrapper main .footerNav ul:after {
  clear: both;
}

#wrapper main .footerNav ul li {
  float: left;
  width: 33.3333%;
  position: relative;
  overflow: hidden;
}

#wrapper main .footerNav ul li a {
  display: block;
  transition-duration: 0.3s;
}

#wrapper main .footerNav ul li a:hover {
  opacity: .7;
}

#wrapper main .footerNav ul li a:hover figure img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

#wrapper main .footerNav ul li:after {
  content: url(../png/arrow_white.png);
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#wrapper main .footerNav ul li figure img {
  transition-duration: 0.3s;
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%\9;
  width: 100%;
  height: 100%;
}

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

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

#wrapper main .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 main .footerNav ul li dl dd {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 1.4px;
}

#wrapper main .footerNav02 {
  background: #000;
}

#wrapper main .footerNav02 ul {
  margin-bottom: 0;
  zoom: 1;
}

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

#wrapper main .footerNav02 ul:after {
  clear: both;
}

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

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

#wrapper main .footerNav02 ul li a:hover {
  opacity: .7;
}

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

#wrapper main .footerNav02 ul li:after {
  content: url(../png/arrow_black.png);
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#wrapper main .footerNav02 ul li dl {
  margin-bottom: 0;
}

#wrapper main .footerNav02 ul li dl dt {
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
  line-height: 100%;
}

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

#wrapper footer {
  background: #fff;
  text-align: center;
  padding: 60px 0;
  font-size: 11px;
  font-size: 1.1rem;
}

#index #bgvid {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  background-size: cover;
}

#index #wrapper #contentWrap {
  background: rgba(0, 0, 0, 0.5);
  padding-bottom: 1px;
  margin-bottom: 0;
}

#index #wrapper section .inner {
  max-width: 1280px;
  min-width: 1080px;
  margin: 0 auto;
}

#index #wrapper section#first .inner {
  position: relative;
  padding: 0 100px;
  max-width: 1480px;
}

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

#index #wrapper section#first .inner .hgroup h1 {
  color: #fff;
  font-size: 54px;
  font-size: 5.4rem;
  margin-bottom: 28px;
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  line-height: 63px;
  letter-spacing: 8.1px;
}

#index #wrapper section#first .inner .hgroup .sub {
  color: #fff;
  line-height: 180%;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1.56px;
}

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

#index #wrapper section#second {
  position: relative;
  overflow: hidden;
  margin-bottom: 115px;
}

#index #wrapper section#second .outer {
  position: relative;
  margin-bottom: 0;
}

#index #wrapper section#second .outer #svg {
  width: 95%;
  height: auto;
}

#index #wrapper section#second .contentInner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

#index #wrapper section#second .contentInner .block {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 220px;
}

#index #wrapper section#second .contentInner .block h2 {
  font-size: 42px;
  font-size: 4.2rem;
  margin-bottom: 35px;
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
  line-height: 35px;
  letter-spacing: 6.3px;
}

#index #wrapper section#second .contentInner .block p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.2em;
  letter-spacing: 0.06em;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 500;
  font-style: normal;
}

#index #wrapper section#third {
  margin-bottom: 188px;
  overflow: hidden;
}

#index #wrapper section#third .inner2 {
  position: relative;
  padding-left: 204px;
  margin: 0 0 0 auto;
  max-width: calc(100% / 2 + 640px);
  min-width: calc(100% / 2 + 540px);
}

#index #wrapper section#third .inner2 h2 {
  color: #fff;
  left: 0;
  top: 27px;
  font-size: 17px;
  font-size: 1.7rem;
  position: absolute;
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
  letter-spacing: 3.4px;
}

#index #wrapper section#third .inner2 ul li {
  margin-bottom: 25px;
}

#index #wrapper section#third .inner2 ul li a {
  display: block;
  text-decoration: none;
  height: 140px;
  position: relative;
  padding-top: 20px;
}

#index #wrapper section#third .inner2 ul li a:after {
  content: ' ';
  border-bottom: #fff 2px solid;
  width: 40px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.4s all ease 0s;
}

#index #wrapper section#third .inner2 ul li a:before {
  content: url(../png/arrow_white.png);
  position: absolute;
  left: 822px;
  top: 64px;
}

#index #wrapper section#third .inner2 ul li a:hover:after {
  width: 80px;
}

#index #wrapper section#third .inner2 ul li a:hover image {
  opacity: .8;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

#index #wrapper section#third .inner2 ul li a h3 {
  color: #fff;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 100%;
  line-height: 48px;
  margin-bottom: 15px;
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  position: relative;
  z-index: 100;
  letter-spacing: 8.64px;
}

#index #wrapper section#third .inner2 ul li a p {
  overflow: hidden;
}

#index #wrapper section#third .inner2 ul li a p span {
  background: #ddd;
  display: inline-block;
  position: relative;
}

#index #wrapper section#third .inner2 ul li a p span span {
  display: block;
  padding: 0 0 0 5px;
  position: relative;
  z-index: 10;
}

#index #wrapper section#third .inner2 ul li a p 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%;
}

#index #wrapper section#third .inner2 ul li a p span span {
  font-family: 'AXIS Font Japanese W55';
  font-weight: 500;
  font-style: normal;
}

#index #wrapper section#third .inner2 ul li a .bg {
  position: absolute;
  top: 0;
  left: 176px;
  height: 140px;
  overflow: hidden;
  z-index: 1;
}

#index #wrapper section#third .inner2 ul li a .bg image {
  transition: 0.4s all ease 0s;
}

#index #wrapper section#third .inner2 ul li a .bg #nav01mask {
  -webkit-clip-path: url(#nav01path);
          clip-path: url(#nav01path);
}

#index #wrapper section#third .inner2 ul li a .bg #nav02mask {
  -webkit-clip-path: url(#nav02path);
          clip-path: url(#nav02path);
}

#index #wrapper section#third .inner2 ul li a .bg #nav03mask {
  -webkit-clip-path: url(#nav03path);
          clip-path: url(#nav03path);
}

#index #wrapper section#fourth {
  margin-bottom: 146px;
}

#index #wrapper section#fourth .inner {
  max-width: 1080px;
}

#index #wrapper section#fourth .inner .hgroup {
  margin-bottom: 30px;
}

#index #wrapper section#fourth .inner .hgroup h2 {
  color: #fff;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 100%;
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  letter-spacing: 8.64px;
}

#index #wrapper section#fourth .inner .hgroup p {
  overflow: hidden;
}

#index #wrapper section#fourth .inner .hgroup p span {
  background: #ddd;
  display: inline-block;
  position: relative;
}

#index #wrapper section#fourth .inner .hgroup p span span {
  display: block;
  padding: 0 0 0 5px;
  position: relative;
  z-index: 10;
}

#index #wrapper section#fourth .inner .hgroup p 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%;
}

#index #wrapper section#fourth .inner .hgroup p span span {
  font-family: 'AXIS Font Japanese W55';
  font-weight: 500;
  font-style: normal;
}

#index #wrapper section#fourth .inner p.lead {
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
}

#index #wrapper section#fourth .inner ul {
  zoom: 1;
}

#index #wrapper section#fourth .inner ul:before, #index #wrapper section#fourth .inner ul:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: "\0020";
}

#index #wrapper section#fourth .inner ul:after {
  clear: both;
}

#index #wrapper section#fourth .inner ul li {
  float: left;
  margin-left: 15px;
}

#index #wrapper section#fourth .inner ul li:first-child {
  margin-left: 0;
}

#index #wrapper section#fourth .inner ul li .mask01 {
  -webkit-clip-path: url(#process01);
          clip-path: url(#process01);
}

#index #wrapper section#fourth .inner ul li .mask02 {
  -webkit-clip-path: url(#process02);
          clip-path: url(#process02);
}

#index #wrapper section#fourth .inner ul li .mask03 {
  -webkit-clip-path: url(#process03);
          clip-path: url(#process03);
}

#index #wrapper section#fourth .inner ul li .mask04 {
  -webkit-clip-path: url(#process04);
          clip-path: url(#process04);
}

#index #wrapper section#fourth .inner ul li .mask05 {
  -webkit-clip-path: url(#process05);
          clip-path: url(#process05);
}

#index #wrapper section#fourth .inner ul li .mask01:hover, #index #wrapper section#fourth .inner ul li .mask02:hover, #index #wrapper section#fourth .inner ul li .mask03:hover, #index #wrapper section#fourth .inner ul li .mask04:hover, #index #wrapper section#fourth .inner ul li .mask05:hover {
  opacity: .7;
}

#index #wrapper section#fourth .inner ul li a {
  display: block;
  height: 360px;
  width: 204px;
  text-decoration: none;
  position: relative;
  transition-duration: 1s;
}

#index #wrapper section#fifth {
  margin-bottom: 155px;
}

#index #wrapper section#fifth .inner {
  max-width: 1080px;
  position: relative;
}

#index #wrapper section#fifth .inner svg {
  display: block;
  width: 100%;
}

#index #wrapper section#fifth .inner .mask {
  -webkit-clip-path: url(#profilePath);
          clip-path: url(#profilePath);
}

#index #wrapper section#fifth .inner a {
  display: block;
  text-decoration: none;
}

#index #wrapper section#fifth .inner a:hover, #index #wrapper section#fifth .inner a:focus {
  transition-duration: 1s;
  opacity: .8;
}

#index #wrapper section#fifth .inner .profileBox {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  top: 120px;
}

#index #wrapper section#fifth .inner .profileBox .cont {
  width: 374px;
  padding: 0 50px 0 60px;
}

#index #wrapper section#fifth .inner .profileBox .cont .hgroup h2 {
  font-size: 40px;
  font-size: 4rem;
  line-height: 100%;
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  letter-spacing: 6.4px;
}

#index #wrapper section#fifth .inner .profileBox .cont .hgroup p {
  margin-top: -20px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 500;
  font-style: normal;
}

#index #wrapper section#fifth .inner .profileBox .cont p.lead {
  margin-top: 0;
  font-size: 12px;
}

#index #wrapper section#fifth .inner .profileBox .cont p.lead:after {
  content: url(../png/arrow_black.png);
  display: block;
  margin-top: 20px;
}

@media screen and (min-width: 1800px) {
  #index #wrapper section#third .inner2 ul li a .bg {
    left: auto;
    right: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  #index #wrapper section#second .outer #svg {
    width: 1245px;
    height: 368px;
  }
}

#index _::-webkit-:not(:root:root), #index #svg {
  width: 1245px !important;
  height: 368px !important;
}

#index _::-webkit-:not(:root:root), #index #fifth a:hover,
#index _::-webkit-:not(:root:root), #index #fifth a:focus {
  transition-duration: 0 !important;
}

#process #wrapper {
  background: #DBDBDB;
}

#process #wrapper main {
  padding-top: 180px;
}

#process #wrapper main .hgroup {
  margin: 0 105px 40px;
}

#process #wrapper main .hgroup h1 {
  letter-spacing: 9.72px;
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  font-size: 54px;
  font-size: 5.4rem;
  line-height: 58.71px;
  margin-bottom: 0;
}

#process #wrapper main .hgroup .sub {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2.8px;
}

#process #wrapper main .hgroup .lead {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 0;
  letter-spacing: 0.06em;
}

#process #wrapper main #mainNav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}

#process #wrapper main #mainNav li {
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 524px;
  margin-left: 10px;
  transition: 0.2s all ease-out 0s;
  -webkit-transform: skewY(-5deg);
      -ms-transform: skewY(-5deg);
          transform: skewY(-5deg);
}

#process #wrapper main #mainNav li:first-child {
  margin-left: 0;
}

#process #wrapper main #mainNav li a {
  background: url(../png/01.png) 50% 0 no-repeat;
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#process #wrapper main #mainNav li a dl {
  -webkit-transform: skewY(5deg);
      -ms-transform: skewY(5deg);
          transform: skewY(5deg);
  position: absolute;
  left: 40px;
  top: 150px;
}

#process #wrapper main #mainNav li a dl:after {
  content: url(../png/arrow_white02.png);
  display: block;
  margin-top: 35px;
}

#process #wrapper main #mainNav li a dl dt {
  font-size: 28px;
  font-size: 2.8rem;
  font-family: 'Avenir Next W00';
  font-weight: 500;
  font-style: normal;
  line-height: 120%;
  letter-spacing: 3.64px;
  color: #fff;
}

#process #wrapper main #mainNav li a dl dd {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 300;
  font-style: normal;
  color: #fff;
}

#process #wrapper main #mainNav li:hover {
  -webkit-flex-grow: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
  transition: 0.2s all ease-out 0s;
}

#process #wrapper main #mainNav li.nav01 a dl {
  top: 200px;
}

#process #wrapper main #mainNav li.nav02 a {
  background: url(../png/02.png) 50% 0 no-repeat;
}

#process #wrapper main #mainNav li.nav02 a dl {
  top: 170px;
}

#process #wrapper main #mainNav li.nav03 a {
  background: url(../png/03.png) 50% 0 no-repeat;
}

#process #wrapper main #mainNav li.nav03 a dl {
  top: 170px;
}

#process #wrapper main #mainNav li.nav04 a {
  background: url(../png/04.png) 50% 0 no-repeat;
}

#process #wrapper main #mainNav li.nav04 a dl {
  top: 210px;
}

#process #wrapper main #mainNav li.nav05 a {
  background: url(../png/05.png) 50% 0 no-repeat;
}

#detail #loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20000;
  text-align: center;
}

#detail #loading .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
}

#detail #loading .loader {
  position: relative;
  display: inline-block;
  margin: auto;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-animation: spin 0.75s infinite linear;
          animation: spin 0.75s infinite linear;
  border-top-color: transparent;
}

#detail #loading .loader:before, #detail #loading .loader:after {
  left: -2px;
  top: -2px;
  display: none;
  position: absolute;
  content: '';
  width: inherit;
  height: inherit;
  border: inherit;
  border-radius: inherit;
}

#detail #loading .loader:after {
  display: block;
  left: -2px;
  top: -2px;
  border: inherit;
  -webkit-transform: rotate(65deg);
      -ms-transform: rotate(65deg);
          transform: rotate(65deg);
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

#detail #bgvid {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  background-size: cover;
}

#detail.en #wrapper main .section .figBlock[data-role="modal"] .modal .modalCont {
  overflow-y: scroll;
  height: 372px;
}

#detail #wrapper main #fullpage {
  margin-bottom: 0;
}

#detail #wrapper main #fullpage .section {
  height: 100vh;
}

#detail #wrapper main #first {
  position: relative;
}

#detail #wrapper main #first .fp-tableCell {
  position: relative;
  background: none;
}

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

#detail #wrapper main #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;
  letter-spacing: 9.72px;
  margin-bottom: 20px;
}

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

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

#detail #wrapper main #first .prosess {
  position: absolute;
  margin-bottom: 0;
  right: 45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#detail #wrapper main #first .prosess dl {
  display: table;
  width: 100%;
  margin-bottom: 0;
}

#detail #wrapper main #first .prosess dl dt, #detail #wrapper main #first .prosess dl dd {
  display: table-cell;
  vertical-align: top;
  color: #fff;
}

#detail #wrapper main #first .prosess dl dt {
  padding-right: 30px;
  padding-top: 10px;
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
}

#detail #wrapper main #first .prosess dl dd {
  width: 247px;
}

#detail #wrapper main #first .prosess dl dd ul {
  margin-bottom: 0;
}

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

#detail #wrapper main #first .prosess dl dd ul li a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
}

#detail #wrapper main #first .prosess dl dd dl {
  margin-bottom: 0;
}

#detail #wrapper main #first .prosess dl dd dl dt {
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
  padding-top: 0;
  padding-left: 0;
  padding-right: 25px;
  width: 1%;
  line-height: 150%;
}

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

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

#detail #wrapper main .section, #detail #wrapper main .lastBlock {
  margin-bottom: 0;
}

#detail #wrapper main .section .fp-tableCell, #detail #wrapper main .lastBlock .fp-tableCell {
  position: relative;
  background: url(../png/bg_cont.png) repeat-y 100% 0;
}

#detail #wrapper main .section .figBlock, #detail #wrapper main .lastBlock .figBlock {
  height: 100%;
  float: left;
  width: calc(100% - 440px);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

#detail #wrapper main .section .figBlock[data-role="slide"], #detail #wrapper main .lastBlock .figBlock[data-role="slide"] {
  background: #000 !important;
  overflow: hidden;
  height: 100vh;
}

#detail #wrapper main .section .figBlock[data-role="slide"] .bx-viewport, #detail #wrapper main .lastBlock .figBlock[data-role="slide"] .bx-viewport {
  margin: 0;
}

#detail #wrapper main .section .figBlock[data-role="slide"] .bx-controls, #detail #wrapper main .lastBlock .figBlock[data-role="slide"] .bx-controls {
  margin-bottom: 0;
  display: none;
}

#detail #wrapper main .section .figBlock[data-role="slide"] .bx-controls a, #detail #wrapper main .lastBlock .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;
}

#detail #wrapper main .section .figBlock[data-role="slide"] .bx-controls a.bx-prev, #detail #wrapper main .lastBlock .figBlock[data-role="slide"] .bx-controls a.bx-prev {
  left: 30px;
  background: transparent url(../png/back.png) no-repeat;
}

#detail #wrapper main .section .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled, #detail #wrapper main .lastBlock .figBlock[data-role="slide"] .bx-controls a.bx-prev.disabled {
  display: none;
}

#detail #wrapper main .section .figBlock[data-role="slide"] .bx-controls a.bx-next, #detail #wrapper main .lastBlock .figBlock[data-role="slide"] .bx-controls a.bx-next {
  right: 30px;
  background: transparent url(../png/next.png) no-repeat;
}

#detail #wrapper main .section .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled, #detail #wrapper main .lastBlock .figBlock[data-role="slide"] .bx-controls a.bx-next.disabled {
  display: none;
}

#detail #wrapper main .section .figBlock[data-role="slide"] ul, #detail #wrapper main .lastBlock .figBlock[data-role="slide"] ul {
  position: relative;
  margin: 0 !important;
}

#detail #wrapper main .section .figBlock[data-role="slide"] ul li, #detail #wrapper main .lastBlock .figBlock[data-role="slide"] ul li {
  height: 100vh;
  width: 100%;
}

#detail #wrapper main .section .figBlock[data-role="slide"] ul li img, #detail #wrapper main .lastBlock .figBlock[data-role="slide"] ul li img {
  width: 100%;
  display: block;
}

#detail #wrapper main .section .figBlock[data-role="slide"] .btn, #detail #wrapper main .lastBlock .figBlock[data-role="slide"] .btn {
  z-index: 100;
}

#detail #wrapper main .section .figBlock[data-role="slide"] .btn a, #detail #wrapper main .lastBlock .figBlock[data-role="slide"] .btn a {
  background: url(../png/btn_slide.png) no-repeat;
}

#detail #wrapper main .section .figBlock[data-role="slide"] .btn a.active, #detail #wrapper main .lastBlock .figBlock[data-role="slide"] .btn a.active {
  background-position: 0 -48px;
}

#detail #wrapper main .section .figBlock[data-role="movie"] .btn a, #detail #wrapper main .lastBlock .figBlock[data-role="movie"] .btn a {
  background: url(../png/btn_movie.png) no-repeat;
}

#detail #wrapper main .section .figBlock[data-role="movie"] .btn a.active, #detail #wrapper main .lastBlock .figBlock[data-role="movie"] .btn a.active {
  background-position: 0 -48px;
}

#detail #wrapper main .section .figBlock[data-role="modal"] .modal, #detail #wrapper main .lastBlock .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;
}

#detail #wrapper main .section .figBlock[data-role="modal"] .modal:before, #detail #wrapper main .section .figBlock[data-role="modal"] .modal:after, #detail #wrapper main .lastBlock .figBlock[data-role="modal"] .modal:before, #detail #wrapper main .lastBlock .figBlock[data-role="modal"] .modal:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: "\0020";
}

#detail #wrapper main .section .figBlock[data-role="modal"] .modal:after, #detail #wrapper main .lastBlock .figBlock[data-role="modal"] .modal:after {
  clear: both;
}

#detail #wrapper main .section .figBlock[data-role="modal"] .modal figure, #detail #wrapper main .lastBlock .figBlock[data-role="modal"] .modal figure {
  float: left;
}

#detail #wrapper main .section .figBlock[data-role="modal"] .modal .modalCont, #detail #wrapper main .lastBlock .figBlock[data-role="modal"] .modal .modalCont {
  float: right;
  width: 380px;
  padding: 30px 50px 0;
}

#detail #wrapper main .section .figBlock[data-role="modal"] .modal .modalCont h3, #detail #wrapper main .lastBlock .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%;
}

#detail #wrapper main .section .figBlock[data-role="modal"] .modal .modalCont p, #detail #wrapper main .lastBlock .figBlock[data-role="modal"] .modal .modalCont p {
  font-size: 14px;
  font-size: 1.4rem;
}

#detail #wrapper main .section .figBlock[data-role="modal"] .btn a, #detail #wrapper main .lastBlock .figBlock[data-role="modal"] .btn a {
  background: url(../png/btn_modal.png) no-repeat;
}

#detail #wrapper main .section .figBlock[data-role="modal"] .btn a.active, #detail #wrapper main .lastBlock .figBlock[data-role="modal"] .btn a.active {
  background-position: 0 -48px;
}

#detail #wrapper main .section .figBlock video, #detail #wrapper main .lastBlock .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;
}

#detail #wrapper main .section .figBlock .btn, #detail #wrapper main .lastBlock .figBlock .btn {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

#detail #wrapper main .section .figBlock .btn a, #detail #wrapper main .lastBlock .figBlock .btn a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  height: 48px;
  width: 96px;
  display: block;
  margin: 0 auto;
}

#detail #wrapper main .section .cont, #detail #wrapper main .lastBlock .cont {
  background: #fff;
  width: 440px;
  height: 100%;
  float: right;
  padding: 0 95px 0 50px;
  position: relative;
  margin-bottom: 0;
}

#detail #wrapper main .section .cont .inner, #detail #wrapper main .lastBlock .cont .inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 295px;
}

#detail #wrapper main .section .cont .inner:before, #detail #wrapper main .lastBlock .cont .inner:before {
  content: '';
  border-top: #000 2px solid;
  width: 83px;
  height: 2px;
  display: block;
  margin-bottom: 10px;
}

#detail #wrapper main .section .cont .inner .label, #detail #wrapper main .lastBlock .cont .inner .label {
  width: 295px;
  font-family: 'Avenir Next W00';
  font-weight: 500;
  font-style: normal;
  margin-bottom: 35px;
  letter-spacing: 2.6px;
}

#detail #wrapper main .section .cont .inner .label span, #detail #wrapper main .lastBlock .cont .inner .label span {
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  margin-left: 15px;
}

#detail #wrapper main .section .cont .inner h2, #detail #wrapper main .lastBlock .cont .inner h2 {
  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;
}

#detail #wrapper main .section .cont .inner .sub, #detail #wrapper main .lastBlock .cont .inner .sub {
  overflow: hidden;
}

#detail #wrapper main .section .cont .inner .sub span, #detail #wrapper main .lastBlock .cont .inner .sub span {
  background: #ddd;
  display: inline-block;
  position: relative;
}

#detail #wrapper main .section .cont .inner .sub span span, #detail #wrapper main .lastBlock .cont .inner .sub span span {
  display: block;
  padding: 0 0 0 5px;
  position: relative;
  z-index: 10;
}

#detail #wrapper main .section .cont .inner .sub span span::after, #detail #wrapper main .lastBlock .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%;
}

#detail #wrapper main .section .cont .inner .sub span span, #detail #wrapper main .lastBlock .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;
}

#detail #wrapper main .section .cont .inner p, #detail #wrapper main .lastBlock .cont .inner p {
  font-size: 14px;
  font-size: 1.4rem;
}

#detail #wrapper main .section#section01 .figBlock, #detail #wrapper main .lastBlock#section01 .figBlock {
  background: url(../png/01-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#section02 .figBlock, #detail #wrapper main .lastBlock#section02 .figBlock {
  background: url(../png/02-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#section03 .figBlock, #detail #wrapper main .lastBlock#section03 .figBlock {
  background: url(../png/03-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#section04 .figBlock, #detail #wrapper main .lastBlock#section04 .figBlock {
  background: url(../png/04-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#section05 .figBlock, #detail #wrapper main .lastBlock#section05 .figBlock {
  background: url(../png/05-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#section06 .figBlock, #detail #wrapper main .lastBlock#section06 .figBlock {
  background: url(../png/06.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#section07 .figBlock, #detail #wrapper main .lastBlock#section07 .figBlock {
  background: url(../png/07.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#section08 .figBlock, #detail #wrapper main .lastBlock#section08 .figBlock {
  background: url(../png/08.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#section09 .figBlock, #detail #wrapper main .lastBlock#section09 .figBlock {
  background: url(../png/09.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#section10 .figBlock, #detail #wrapper main .lastBlock#section10 .figBlock {
  background: url(../png/10.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#section11 .figBlock, #detail #wrapper main .lastBlock#section11 .figBlock {
  background: url(../png/11.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#section12 .figBlock, #detail #wrapper main .lastBlock#section12 .figBlock {
  background: url(../png/12.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#section13 .figBlock, #detail #wrapper main .lastBlock#section13 .figBlock {
  background: url(../png/13.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail #wrapper main .section#foot, #detail #wrapper main .lastBlock#foot {
  background: #ddd;
  height: auto;
}

#detail #wrapper main .section#foot .bannerArea, #detail #wrapper main .lastBlock#foot .bannerArea {
  background: #333333;
  text-align: center;
  padding: 60px 0;
}

#detail #wrapper main .section#foot #mainNav, #detail #wrapper main .lastBlock#foot #mainNav {
  padding-top: 30px;
  width: 1080px;
  zoom: 1;
  margin: 0 auto 30px;
}

#detail #wrapper main .section#foot #mainNav:before, #detail #wrapper main .section#foot #mainNav:after, #detail #wrapper main .lastBlock#foot #mainNav:before, #detail #wrapper main .lastBlock#foot #mainNav:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: "\0020";
}

#detail #wrapper main .section#foot #mainNav:after, #detail #wrapper main .lastBlock#foot #mainNav:after {
  clear: both;
}

#detail #wrapper main .section#foot #mainNav li, #detail #wrapper main .lastBlock#foot #mainNav li {
  float: left;
  margin-left: 15px;
}

#detail #wrapper main .section#foot #mainNav li:first-child, #detail #wrapper main .lastBlock#foot #mainNav li:first-child {
  margin-left: 0;
}

#detail #wrapper main .section#foot #mainNav li a, #detail #wrapper main .lastBlock#foot #mainNav li a {
  display: block;
}

#detail.razor #wrapper #bgvid {
  opacity: .5;
}

#detail.razor #wrapper main .section#section02 ul li:first-child {
  background: url(../png/r_slide01.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.razor #wrapper main .section#section02 ul li:nth-child(2) {
  background: url(../png/r_slide02.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.razor #wrapper main .section#section03 ul li:first-child {
  background: url(../png/r_slide03.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.razor #wrapper main .section#section03 ul li:nth-child(2) {
  background: url(../png/r_slide04.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.razor #wrapper main .section#section09 ul li:first-child {
  background: url(../png/r_slide05.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.razor #wrapper main .section#section09 ul li:nth-child(2) {
  background: url(../png/r_slide06.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.razor #wrapper main .section#foot .lastBlock .figBlock {
  background: url(../png/11.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section01 .figBlock {
  background: url(../png/01-3.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section02 .figBlock {
  background: url(../png/02-3.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section03 .figBlock {
  background: url(../png/03-3.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section04 .figBlock {
  background: url(../png/04-3.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section05 .figBlock {
  background: url(../png/05-3.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section06 .figBlock {
  background: url(../png/06-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section07 .figBlock {
  background: url(../png/07-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section08 .figBlock {
  background: url(../png/08-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section09 .figBlock {
  background: url(../png/09-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section10 .figBlock {
  background: url(../png/10-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section11 .figBlock {
  background: url(../png/11-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section12 .figBlock {
  background: url(../png/12-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section11 ul li:first-child {
  background: url(../png/k_slide01.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#section11 ul li:nth-child(2) {
  background: url(../png/k_slide02.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.kitchen-knives #wrapper main .section#foot .lastBlock .figBlock {
  background: url(../png/12-2.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#section01 .figBlock {
  background: url(../png/01-4.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#section02 .figBlock {
  background: url(../png/02-4.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#section03 .figBlock {
  background: url(../png/03-4.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#section04 .figBlock {
  background: url(../png/04-4.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#section05 .figBlock {
  background: url(../png/05-4.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#section06 .figBlock {
  background: url(../png/06-3.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#section07 .figBlock {
  background: url(../png/07-3.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#section08 .figBlock {
  background: url(../png/08-3.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#section02 ul li:first-child {
  background: url(../png/m_slide01.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#section02 ul li:nth-child(2) {
  background: url(../png/m_slide02.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#section04 ul li:first-child {
  background: url(../png/m_slide03.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#section04 ul li:nth-child(2) {
  background: url(../png/m_slide04.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.ophthalmic-knives #wrapper main .section#foot .lastBlock .figBlock {
  background: url(../png/08-3.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.nail-clippers #wrapper .section#section01 .figBlock {
  background: url(../png/01-5.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.nail-clippers #wrapper .section#section02 .figBlock {
  background: url(../png/02-5.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.nail-clippers #wrapper .section#section03 .figBlock {
  background: url(../png/03-5.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.nail-clippers #wrapper .section#section04 .figBlock {
  background: url(../png/04-5.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.nail-clippers #wrapper .section#section05 .figBlock {
  background: url(../png/05-5.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.nail-clippers #wrapper .section#section06 .figBlock {
  background: url(../png/06-4.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.nail-clippers #wrapper .section#section07 .figBlock {
  background: url(../png/07-4.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.nail-clippers #wrapper .section#section08 .figBlock {
  background: url(../png/08-4.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.nail-clippers #wrapper .section#foot .lastBlock .figBlock {
  background: url(../png/08-4.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.scissorss #wrapper #bgvid {
  opacity: .5;
}

#detail.scissorss #wrapper .section#section01 .figBlock {
  background: url(../png/01-6.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.scissorss #wrapper .section#section02 .figBlock {
  background: url(../png/02-6.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.scissorss #wrapper .section#section03 .figBlock {
  background: url(../png/03-6.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.scissorss #wrapper .section#section04 .figBlock {
  background: url(../png/04-6.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.scissorss #wrapper .section#section05 .figBlock {
  background: url(../png/05-6.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.scissorss #wrapper .section#section06 .figBlock {
  background: url(../png/06-5.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.scissorss #wrapper .section#section07 .figBlock {
  background: url(../png/07-5.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.scissorss #wrapper .section#section08 .figBlock {
  background: url(../png/08-5.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.scissorss #wrapper .section#section09 .figBlock {
  background: url(../png/09-3.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.scissorss #wrapper .section#section10 .figBlock {
  background: url(../png/10-3.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.scissorss #wrapper .section#section11 .figBlock {
  background: url(../png/11-3.png) no-repeat 50% 50%;
  background-size: cover;
}

#detail.scissorss #wrapper .section#foot .lastBlock .figBlock {
  background: url(../png/11-3.png) no-repeat 50% 50%;
  background-size: cover;
}

@media all and (-ms-high-contrast: none) {
  #detail #wrapper main #first .hgroup {
    top: auto;
  }
  #detail #wrapper main #first .prosess {
    top: auto;
  }
}

#story #wrapper main {
  background: #fff;
  padding-bottom: 1px;
}

#story #wrapper main > header {
  margin-bottom: 20px;
}

#story #wrapper main > header #titleBlock {
  position: relative;
  margin-bottom: 0;
}

#story #wrapper main > header #titleBlock .bg {
  margin-bottom: 0;
}

#story #wrapper main > header #titleBlock .bg img {
  display: block;
  width: 100%;
}

#story #wrapper main > header #titleBlock .hgroup {
  position: absolute;
  margin-bottom: 0;
  top: 50%;
  left: 100px;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}

#story #wrapper main > header #titleBlock .hgroup h1 {
  color: #fff;
  font-size: 54px;
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  letter-spacing: 9.72px;
  line-height: 1;
  margin-bottom: 20px;
}

#story #wrapper main > header #titleBlock .hgroup h1 span {
  display: block;
  font-size: 20px;
  letter-spacing: 2.8px;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 500;
  font-style: normal;
  color: #fff;
}

#story #wrapper main > header #titleBlock .hgroup .sub {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

#story #wrapper main > header ul {
  margin-bottom: 0;
  background: #000;
  zoom: 1;
}

#story #wrapper main > header ul:before, #story #wrapper main > header ul:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: "\0020";
}

#story #wrapper main > header ul:after {
  clear: both;
}

#story #wrapper main > header ul li {
  float: left;
  width: 25%;
  background: #000;
  overflow: hidden;
}

#story #wrapper main > header ul li a {
  display: block;
  text-decoration: none;
  position: relative;
  transition-duration: 0.3s;
}

#story #wrapper main > header ul li a:hover {
  opacity: .7;
}

#story #wrapper main > header ul li a:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

#story #wrapper main > header ul li a:after {
  content: url(../png/down_arrow.png);
  position: absolute;
  right: 25px;
  top: 44%;
}

#story #wrapper main > header ul li a img {
  width: 100%;
  height: auto;
  display: block;
  height: 100%;
  transition-duration: 0.3s;
}

#story #wrapper main > header ul li a dl {
  margin-bottom: 0;
  position: absolute;
  top: 25%;
  left: 30px;
}

#story #wrapper main > header ul li a dl dt {
  color: #fff;
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  margin-bottom: 20px;
}

#story #wrapper main > header ul li a dl dt span {
  font-family: 'Avenir Next W00';
  font-weight: 400;
  font-style: normal;
  color: #fff;
}

#story #wrapper main > header ul li a dl dd {
  color: #fff;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 28px;
}

#story #wrapper main section {
  position: relative;
  overflow: hidden;
  padding-top: 115px;
}

#story #wrapper main section .effect {
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}

#story #wrapper main section .effectOn {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
  transition-duration: 1s;
}

#story #wrapper main section.last {
  margin-bottom: 145px;
}

#story #wrapper main section.last:after {
  border-bottom: none;
}

#story #wrapper main section:after {
  content: ' ';
  border-bottom: #D3D3D3 1px solid;
  width: 1080px;
  height: 1px;
  display: block;
  margin: 0 auto;
}

#story #wrapper main section .no {
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  font-size: 164px;
  color: #D3D3D3;
  position: absolute;
  right: -35px;
  top: 115px -20px;
  line-height: 100%;
  text-align: right;
  font-family: 'Avenir Next W00';
  font-weight: 700;
  font-style: normal;
}

#story #wrapper main section.section02 .no {
  right: -11px;
}

#story #wrapper main section.section03 .no {
  right: -17px;
}

#story #wrapper main section.section04 .no {
  right: -30px;
}

#story #wrapper main section h2 {
  width: 845px;
  margin: 0 auto 40px;
  position: relative;
  font-size: 42px;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 500;
  font-style: normal;
  line-height: 58px;
}

#story #wrapper main section h2 .sub {
  position: absolute;
  top: 5px;
  left: -112px;
  width: 64px;
  border-top: #222 2px solid;
  padding-top: 18px;
  line-height: 5px;
  font-family: 'Avenir Next W00';
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2.6px;
}

#story #wrapper main section h2 .sub span {
  display: block;
  font-family: 'Avenir Next W00';
  font-weight: 700;
  font-style: normal;
  margin-top: 5px;
}

#story #wrapper main section p.txt01 {
  width: 845px;
  margin: 0 auto 50px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

#story #wrapper main section figure {
  margin-bottom: 75px;
}

#story #wrapper main section figure img {
  width: 100%;
}

#story #wrapper main section .block {
  width: 845px;
  margin: 0 auto 70px;
  zoom: 1;
}

#story #wrapper main section .block:before, #story #wrapper main section .block:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: "\0020";
}

#story #wrapper main section .block:after {
  clear: both;
}

#story #wrapper main section .block .txt02 {
  width: 545px;
  float: left;
  font-size: 14px;
  line-height: 2.2em;
}

#story #wrapper main section .block .caption {
  float: left;
  width: 210px;
  margin-left: 75px;
}

#story #wrapper main section .block .caption div {
  margin-bottom: 0;
}

#story #wrapper main section .block .caption p {
  color: #666666;
  font-size: 12px;
}

#story #wrapper main section.r .txt02 {
  width: 585px;
  float: right;
  margin-left: 0;
}

#story #wrapper main section.r .caption {
  float: left;
  margin-left: 0;
  margin-right: 50px;
}

#story.challenge #wrapper main .section01 figure {
  background: url(../png/fig01.png) no-repeat 50% 0;
  background-size: auto 100%;
}

#story.challenge #wrapper main .section02 figure {
  background: url(../png/fig02.png) no-repeat 50% 0;
  background-size: auto 100%;
}

#story.challenge #wrapper main .section03 figure {
  background: url(../png/fig03.png) no-repeat 50% 0;
  background-size: auto 100%;
}

#story.challenge #wrapper main .section04 figure {
  background: url(../png/fig04.png) no-repeat 50% 0;
  background-size: auto 100%;
}

#story.challenge #wrapper main section h2 .sub {
  line-height: 1.2;
}

#story.quarity #wrapper main section figure {
  margin-left: 50px;
}

#story.quarity #wrapper main section.r figure {
  margin-right: 50px;
  margin-left: 0;
}

#story.unique #wrapper main section {
  position: relative;
  height: 63.59375%;
}

#story.unique #wrapper main section p.txt02 {
  padding-top: 3.5%;
  padding-left: 528px;
  width: auto;
  float: none;
  margin-bottom: 30px;
}

#story.unique #wrapper main section .caption {
  float: none;
  padding-left: 528px;
  width: auto;
  margin: 0;
  display: table;
  width: 100%;
}

#story.unique #wrapper main section .caption div, #story.unique #wrapper main section .caption p {
  display: table-cell;
  vertical-align: top;
}

#story.unique #wrapper main section .caption div {
  padding-right: 15px;
}

#story.unique #wrapper main section figure {
  width: calc(50% + 36px);
  position: absolute;
}

#story.unique #wrapper main section .block {
  margin-bottom: 120px;
}

#story.unique #wrapper main section.r p.txt02 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 528px;
}

#story.unique #wrapper main section.r .caption {
  padding-left: 0;
  padding-right: 528px;
}

#story.unique #wrapper main section.r figure {
  right: 0;
}

#profile #bgvid {
  position: fixed;
  top: 0;
  left: 0;
  background-image: url('../png/mv.png');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: -1000;
}

#profile.en #wrapper main #mapArea .figBlock ul li.location01 {
  left: 172px;
  top: 132px;
}

#profile.en #wrapper main #mapArea .figBlock ul li.location02 {
  left: 259px;
  bottom: 117px;
}

#profile.en #wrapper main #mapArea .figBlock ul li.location03 {
  left: 538px;
  top: 99px;
}

#profile.en #wrapper main #mapArea .figBlock ul li.location04 {
  left: 538px;
  top: 157px;
}

#profile.en #wrapper main #mapArea .figBlock ul li.location05 {
  left: 538px;
  top: 215px;
}

#profile.en #wrapper main #mapArea .figBlock ul li.location06 {
  left: 538px;
  top: 274px;
}

#profile.en #wrapper main #mapArea .figBlock ul li.location07 {
  left: 802px;
  top: 100px;
}

#profile #wrapper main > header {
  position: relative;
}

#profile #wrapper main > header .hgroup {
  margin-bottom: 0;
  position: absolute;
  left: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#profile #wrapper main > header .hgroup h1 {
  line-height: 58.71px;
  letter-spacing: 9.72px;
  font-size: 54px;
  font-size: 5.4rem;
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  color: #fff;
}

#profile #wrapper main > header .hgroup .sub {
  color: #fff;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 2.8px;
  margin-bottom: 0;
}

#profile #wrapper main > header .down {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 0;
  text-align: center;
}

#profile #wrapper main #mapArea {
  background: #EBEBEB;
  padding: 90px 0 40px;
  margin-bottom: 0;
}

#profile #wrapper main #mapArea h2 {
  font-family: 'Avenir Next W00';
  font-weight: 600;
  font-style: normal;
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 7.2px;
}

#profile #wrapper main #mapArea .figBlock {
  width: 1069px;
  margin: 0 auto;
  position: relative;
}

#profile #wrapper main #mapArea .figBlock ul li {
  position: absolute;
}

#profile #wrapper main #mapArea .figBlock ul li.location01 {
  left: 174px;
  top: 132px;
}

#profile #wrapper main #mapArea .figBlock ul li.location02 {
  left: 261px;
  bottom: 116px;
}

#profile #wrapper main #mapArea .figBlock ul li.location03 {
  left: 540px;
  top: 101px;
}

#profile #wrapper main #mapArea .figBlock ul li.location04 {
  left: 540px;
  top: 159px;
}

#profile #wrapper main #mapArea .figBlock ul li.location05 {
  left: 540px;
  top: 218px;
}

#profile #wrapper main #mapArea .figBlock ul li.location06 {
  left: 540px;
  top: 277px;
}

#profile #wrapper main #mapArea .figBlock ul li.location07 {
  left: 803px;
  top: 103px;
}

#profile #wrapper main #mapArea .figBlock ul li.location08 {
  left: 9px;
  top: 280px;
}

#profile #wrapper main #mapArea .figBlock ul li a {
  display: block;
  transition-duration: 0.3s;
}

#profile #wrapper main #mapArea .figBlock ul li a:hover {
  opacity: .8;
}

#profile .remodal {
  max-width: 710px !important;
  padding: 90px 100px 70px;
}

#profile .remodal .remodal-close {
  right: 40px;
  top: 40px;
}

#profile .remodal .cont {
  padding: 0;
}

#profile .remodal .cont h2 {
  font-size: 44px;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 500;
  font-style: normal;
  letter-spacing: 3.3px;
  margin-bottom: 50px;
  line-height: 44px;
}

#profile .remodal .cont .wrap {
  margin-bottom: 0;
  zoom: 1;
}

#profile .remodal .cont .wrap:before, #profile .remodal .cont .wrap:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: "\0020";
}

#profile .remodal .cont .wrap:after {
  clear: both;
}

#profile .remodal .cont .wrap .main {
  margin-bottom: 0;
  float: none;
}

#profile .remodal .cont .wrap .main p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 30px;
  margin-bottom: 35px;
}

#profile .remodal .cont .wrap .main figure {
  margin-bottom: 35px;
}

#profile .remodal .cont .wrap .main .banner a {
  display: block;
  transition-duration: 0.3s;
}

#profile .remodal .cont .wrap .main .banner a:hover {
  opacity: .8;
}

#profile .remodal .cont .wrap .side {
  margin-bottom: 0;
  float: right;
  width: 185px;
}

#profile .remodal .cont .wrap .side section {
  padding-top: 25px;
  margin-bottom: 30px;
  position: relative;
}

#profile .remodal .cont .wrap .side section:before {
  content: '';
  border-top: #000 2px solid;
  height: 2px;
  width: 26px;
  display: block;
  position: absolute;
  top: 0;
}

#profile .remodal .cont .wrap .side section h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: 'AXIS Font Japanese W55';
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  letter-spacing: 1.35px;
}

#profile .remodal .cont .wrap .side section dl {
  margin-bottom: 0;
}

#profile .remodal .cont .wrap .side section dl dt, #profile .remodal .cont .wrap .side section dl dd {
  font-size: 12px;
  font-size: 1.2rem;
}

#profile .remodal .cont .wrap .side section dl dt {
  font-weight: bold;
  margin-bottom: 0;
}

#profile .remodal .cont .wrap .side section dl dd {
  margin-bottom: 5px;
}

.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;
    }
  }
}