@charset "UTF-8";
/*----------------------------------------
 # Import
----------------------------------------*/

@import url(./libs/bootstrap.css);
@import url(./libs/glyphicon.css);
@import url(./libs/slick.css);
@import url(https://use.fontawesome.com/releases/v5.0.6/css/all.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/*----------------------------------------
 # Base
----------------------------------------*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* Body
----------------------------------------*/
body {
  font-size: 1.2rem;
  overflow-wrap: break-word;
  overflow-x: hidden;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

@media (min-width: 768px) {
  body {
    line-height: 2.2;
  }
}

/* Content
----------------------------------------*/
.container {
  width: 100%;
  max-width: 128rem;
}

/*----------------------------------------
 # Typography
----------------------------------------*/
/* Heading
----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6, [class$="-title"],
[class*="-title "],
[class*="_title"],
[class$="-heading"],
[class*="-heading "],
[class*="_heading"] {
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: .5em;
}

/* Suffix
-------------------*/
[class$="-title"],
[class*="-title "],
[class*="_title"],
[class$="-heading"],
[class*="-heading "],
[class*="_heading"] {
  font-size: 1em;
}

/* Link
----------------------------------------*/
a {
  color: inherit;
  text-decoration: underline;
}

a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}

a[href^="mailto:"], a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

a[href^="mailto:"]:hover, a[href^="mailto:"]:focus, a[href^="tel:"]:hover, a[href^="tel:"]:focus {
  color: inherit;
  text-decoration: underline;
}

@media (pointer: none) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* List
----------------------------------------*/
dl {
  margin-bottom: 1em;
}

dl:last-child {
  margin-bottom: 0;
}

dt,
dd {
  line-height: inherit;
}

dd {
  margin-bottom: 1em;
}

dd:last-child {
  margin-bottom: 0;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 1.5em;
}

ol:last-child,
ul:last-child {
  margin-bottom: 0;
}

/* Prefix & Suffix
-------------------*/
[class^="list-"],
[class*="-list"],
[class*="_list"] {
  padding-left: 0;
  list-style: none;
}

/* Paragraph
----------------------------------------*/
p {
  margin-bottom: 2em;
}

p:last-child {
  margin-bottom: 0;
}

p.is-animate {
  transition-delay: .75s;
}

/*----------------------------------------
 # Element
----------------------------------------*/
/* Button
----------------------------------------*/
.button, [class*="button-"] {
  font-size: 1.3rem;
  border-color: #ff355e;
  border-radius: 0;
  box-shadow: none;
  color: #ff355e;
  letter-spacing: .1em;
  line-height: 1.2;
  position: relative;
  text-decoration: none;
  transition: all .6s ease;
  max-width: 100%;
}

@media (min-width: 768px) {
  .button, [class*="button-"] {
    font-size: 1.6rem;
  }
}

.button .b-container, [class*="button-"] .b-container {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.button .b-icon:first-child, [class*="button-"] .b-icon:first-child {
  margin-right: .5em;
}

.button .b-icon:last-child, [class*="button-"] .b-icon:last-child {
  margin-left: .5em;
}

.button:hover, [class*="button-"]:hover {
  background-color: #ff355e;
  color: #fff;
}

/* Prefix
-------------------*/
/* Animation
-------------------*/
.button-animate {
  border-color: transparent;
}

.button-animate .b-hLine::before, .button-animate .b-hLine::after,
.button-animate .b-vLine::before,
.button-animate .b-vLine::after {
  background-color: #ff355e;
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  transition-duration: .6s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.button-animate .b-hLine::before,
.button-animate .b-vLine::before {
  left: 0;
}

.button-animate .b-hLine::before, .button-animate .b-hLine::after {
  -webkit-transform: scale(0);
          transform: scale(0);
  transition-delay: .2s;
  height: 2px;
  right: -2px;
  left: -2px;
}

.button-animate .b-hLine::before {
  -webkit-transform-origin: left center 0;
          transform-origin: left center 0;
  top: -2px;
}

.button-animate .b-hLine::after {
  -webkit-transform-origin: right center 0;
          transform-origin: right center 0;
  bottom: -2px;
}

.button-animate .b-vLine::before, .button-animate .b-vLine::after {
  -webkit-transform: scale(0);
          transform: scale(0);
  transition-delay: 0s;
  width: 2px;
  top: -2px;
  bottom: -2px;
}

.button-animate .b-vLine::before {
  -webkit-transform-origin: center bottom 0;
          transform-origin: center bottom 0;
  left: -2px;
}

.button-animate .b-vLine::after {
  -webkit-transform-origin: center top 0;
          transform-origin: center top 0;
  right: -2px;
}

.button-animate.is-show {
  border-color: #ff355e;
  transition: all .6s ease, border .6s ease .8s;
}

.button-animate.is-show .b-hLine,
.button-animate.is-show .b-vLine {
  visibility: hidden;
  transition-delay: 1.5s;
  transition-property: visibility;
}

.button-animate.is-show .b-hLine::before, .button-animate.is-show .b-hLine::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.button-animate.is-show .b-hLine::before {
  -webkit-transform-origin: left;
          transform-origin: left;
}

.button-animate.is-show .b-vLine::before, .button-animate.is-show .b-vLine::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.button-animate:hover .b-hLine,
.button-animate:hover .b-vLine {
  display: none;
}

/* Type
-------------------*/
.button-link {
  background-color: transparent;
  border-color: transparent;
  padding: 0;
  text-align: left;
  white-space: normal;
}

.button-link:hover {
  background-color: transparent;
  color: #ff355e;
  text-decoration: underline;
}

.button-link .b-icon:first-child {
  margin-right: .5em;
}

.button-link .b-icon:last-child {
  margin-left: .5em;
}

/* Image
----------------------------------------*/
img {
  height: auto;
  max-width: 100%;
}

img.img-animate {
  transition: all .3s ease;
}

img.img-fluid {
  width: 100%;
}

.img-animate {
  overflow: hidden;
}

.img-animate img {
  transition: all .3s ease;
}

.img-animate:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.img-round {
  border-radius: 1rem;
  overflow: hidden;
}

/* Figure
-------------------*/
.figure {
  margin-bottom: 1em;
}

.figure:last-child {
  margin-bottom: 0;
}

/* Table
----------------------------------------*/
table {
  margin-bottom: 1em;
}

table th,
table td {
  vertical-align: top;
}

table th[scope="row"] {
  white-space: nowrap;
  width: 1%;
}

table:last-child {
  margin-bottom: 0;
}

/* Prefix
-------------------*/
/*----------------------------------------
 # Layout
----------------------------------------*/
[class^="layout-"] {
  position: relative;
  width: 100%;
}

/* Header
----------------------------------------*/
.layout-header {
  background-color: #fff;
  border-bottom: 0.1rem solid #fff;
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.05);
  color: inherit;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.layout-header a {
  text-decoration: none;
}

.layout-header > .container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 128rem;
}

.layout-header.is-inverse {
  background-color: rgba(64, 64, 64, 0.5);
  box-shadow: none;
  color: #fff;
}

.layout-header.is-inverse .lh-title {
  background: url(/assets/img/layout/header_title-inverse.svg) no-repeat center;
}

.layout-header.is-inverse .lh-title_object {
  visibility: hidden;
}

.layout-header:not(.is-inverse) {
  -webkit-animation-name: headerFadeInDown;
          animation-name: headerFadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes headerFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes headerFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@media (max-width: 1199px) {
  .layout-header {
    background-color: #fff !important;
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.05) !important;
    color: inherit !important;
  }
  .layout-header > .container {
    height: 5rem;
  }
  .layout-header:not(.is-inverse) {
    -webkit-animation: unset;
            animation: unset;
  }
}

.layout-header .lh-title {
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 auto;
  padding: 0 3rem;
}

.layout-header .lh-title > a {
  display: inherit;
}

.layout-header .lh-toggle {
  background-color: transparent;
  border: none;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 2.2rem;
  margin-left: auto;
  outline: 0;
  padding: 0;
  position: relative;
  width: 2.5rem;
}

.layout-header .lh-toggle_icon {
  background-color: #ff355e;
  height: 0.3rem;
  margin-bottom: 0.65rem;
  position: relative;
  left: 0;
  transition: all .3s ease-out;
  width: 2.5rem;
}

.layout-header .lh-toggle_icon:nth-of-type(1) {
  top: 0;
}

.layout-header .lh-toggle_icon:nth-of-type(3) {
  margin-bottom: 0;
  bottom: 0;
}

.layout-header .lh-toggle_label {
  display: none;
}

.layout-header .lh-toggle[aria-expanded="true"] .lh-toggle_icon:nth-of-type(1) {
  -webkit-transform: translateY(0.95rem) rotate(-45deg);
          transform: translateY(0.95rem) rotate(-45deg);
}

.layout-header .lh-toggle[aria-expanded="true"] .lh-toggle_icon:nth-of-type(2) {
  opacity: 0;
}

.layout-header .lh-toggle[aria-expanded="true"] .lh-toggle_icon:nth-of-type(3) {
  -webkit-transform: translateY(-0.95rem) rotate(45deg);
          transform: translateY(-0.95rem) rotate(45deg);
}

.layout-header .lh-menu {
  height: 8rem;
  min-height: 8rem;
  width: 100%;
  max-width: 96rem;
}

.layout-header .lh-menu_list {
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .layout-header .lh-menu_list {
    font-size: 1.2rem;
  }
}

.layout-header .lh-menu_list[data-list="language"] {
  border-left: 0.1rem solid #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4rem;
  width: 16rem;
}

.layout-header .lh-menu_list[data-list="language"]Item {
  font-style: italic;
}

.layout-header .lh-menu_list[data-list="language"]Item:not(:first-child)::before {
  content: "/";
  margin: 0 .25em;
}

@media (max-width: 1199px) {
  .layout-header .lh-title {
    background: none !important;
    margin-left: 0;
    padding: 0;
  }
  .layout-header .lh-title_object {
    visibility: visible !important;
    width: 10.8rem;
  }
  .layout-header .lh-menu {
    background-color: #FFF;
    color: inherit;
    height: auto;
    position: absolute;
    top: 100%;
    left: 0;
    max-width: 100%;
  }
  .layout-header .lh-menu::before {
    background-color: #fff;
    content: "";
    display: block;
    height: calc(100vh - 5rem);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
  }
  .layout-header .lh-menu_list {
    margin-bottom: 2rem;
    text-align: center;
  }
  .layout-header .lh-menu_listItem {
    margin-bottom: 2rem;
  }
  .layout-header .lh-menu_list[data-list="share"] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .layout-header .lh-menu_list[data-list="share"] .lh-menu_listItem {
    margin-bottom: 0;
    padding-right: 2.1rem;
    padding-left: 2.1rem;
  }
  .layout-header .lh-menu_list[data-list="share"] .lh-menu_itemIcon {
    font-size: 2rem;
    background-color: #ff355e;
    border-radius: 50%;
    color: #fff;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 700;
    height: 5rem;
    width: 5rem;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .layout-header .lh-menu_list[data-list="share"] .lh-menu_itemIcon {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .layout-header .lh-toggle {
    display: none;
  }
  .layout-header .lh-menu {
    display: inherit;
  }
  .layout-header .lh-menu_list {
    display: none;
  }
}

/* Main
----------------------------------------*/
@media (max-width: 1199px) {
  .layout-main {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}

.layout-main .lm-cover {
  background-color: #A5A5A5;
  color: #FFF;
  margin: 0 -1.5rem 10rem;
  overflow: hidden;
  position: relative;
}

.layout-main .lm-cover_object {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 100%;
}

.layout-main .lm-cover_object + .lm-cover_caption {
  height: 38.28125vw;
}

.layout-main .lm-cover_caption {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 26.5625vw;
  padding-top: 6.25vh;
}

.layout-main .lm-cover_title {
  font-size: 2.8rem;
  letter-spacing: .1em;
  position: relative;
  text-align: center;
}

@media (min-width: 768px) {
  .layout-main .lm-cover_title {
    font-size: 6rem;
  }
}

.layout-main .lm-cover_title::before {
  background-color: #fff;
  height: 0.2rem;
  content: "";
  display: block;
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1em;
}

.layout-main .lm-cover_title:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .layout-main .lm-cover {
    margin-bottom: 5rem;
  }
  .layout-main .lm-cover_object {
    height: 100%;
    width: auto;
    max-width: none;
  }
  .layout-main .lm-cover_object + .lm-cover_caption {
    height: 53.3333333333vw;
  }
  .layout-main .lm-cover_caption {
    height: 40vw;
    padding-top: 0;
  }
  .layout-main .lm-cover_title::before {
    width: 2em;
  }
  .layout-main .lm-table[data-table="responsive"] th,
  .layout-main .lm-table[data-table="responsive"] td {
    display: block;
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .layout-main .lm-cover {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
}

@media (min-width: 1280px) and (min-width: 768px) {
  .layout-main .lm-cover {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

/* Article
-------------------*/
.layout-main .lm-article {
  margin: 0 auto 10rem;
  position: relative;
  text-align: justify;
  text-justify: inter-ideograph;
  width: 100%;
  max-width: 96rem;
  word-break: break-all;
}

.layout-main .lm-article:before, .layout-main .lm-article:after {
  content: " ";
  display: table;
}

.layout-main .lm-article:after {
  clear: both;
}

.layout-main .lm-article_header {
  margin-bottom: 4rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.layout-main .lm-article_header::before {
  background-color: #ff355e;
  height: 0.2rem;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4em;
}

.layout-main .lm-article_header .lm-article_title {
  letter-spacing: .1em;
  margin-bottom: 0;
}

.layout-main .lm-article_title {
  font-size: 2rem;
  display: table;
  line-height: 1.6;
  margin-bottom: 3rem;
  text-align: left;
  position: relative;
}

@media (min-width: 768px) {
  .layout-main .lm-article_title {
    font-size: 4rem;
  }
}

.layout-main .lm-article_title + .lm-section.is-collapse {
  margin-top: 10rem;
}

.layout-main .lm-article_titleWrap {
  display: inherit;
  margin-bottom: 0;
  overflow: hidden;
}

.layout-main .lm-article_title.is-animate {
  opacity: 1;
}

.layout-main .lm-article_title.is-animate::before {
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: all 0.5s cubic-bezier(0, 0.98, 0.58, 1);
  transition-delay: .5s;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

.layout-main .lm-article_title.is-animate .lm-article_titleWrap {
  -webkit-transform: translate3d(-100vw, 0, 0);
          transform: translate3d(-100vw, 0, 0);
  transition: all 0.5s cubic-bezier(0, 0.98, 0.58, 1);
}

.layout-main .lm-article_title.is-animate .lm-article_titleWrap .lm-article_titleWrap {
  -webkit-transform: translate3d(100vw, 0, 0);
          transform: translate3d(100vw, 0, 0);
}

.layout-main .lm-article_title.is-animate.is-show::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.layout-main .lm-article_title.is-animate.is-show .lm-article_titleWrap {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.layout-main .lm-article_titleAttention {
  font-size: 1.2rem;
  background-color: #ff355e;
  border-radius: 50%;
  color: #FFF;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 15.3rem;
  letter-spacing: .1em;
  margin: 0;
  position: absolute;
  bottom: .5em;
  left: calc(100% + 1em);
  text-transform: uppercase;
  transition: all 1.5s ease-out .5s;
  width: 15.3rem;
  z-index: 1;
}

@media (min-width: 768px) {
  .layout-main .lm-article_titleAttention {
    font-size: 2.4rem;
  }
}

.layout-main .lm-article_titleAttention::before {
  border-color: transparent #ff355e transparent transparent;
  border-style: solid;
  border-width: 2.35rem 4.7rem 2.35rem 0;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  bottom: 0;
  left: -0.7rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 0;
  z-index: -1;
}

.layout-main .lm-article_lead {
  margin-bottom: 8rem;
  position: relative;
}

.layout-main .lm-article_heading {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .layout-main .lm-article_heading {
    font-size: 2.4rem;
  }
}

.layout-main .lm-article_heading:not(:first-child) {
  margin-top: 1.5em;
}

@media (max-width: 1199px) {
  .layout-main .lm-article {
    margin-bottom: 5rem;
  }
}

@media (max-width: 767px) {
  .layout-main .lm-article_header {
    margin-bottom: 4rem;
  }
  .layout-main .lm-article_header::before {
    bottom: -0.5rem;
  }
  .layout-main .lm-article_header .lm-article_title {
    font-size: 3rem;
    line-height: 1.2;
  }
  .layout-main .lm-article_titleAttention {
    height: 7.7rem;
    width: 7.7rem;
  }
  .layout-main .lm-article_lead {
    margin-bottom: 7rem;
  }
  .layout-main .lm-article_heading {
    line-height: 1.6;
  }
}

/* Section
-------------------*/
.layout-main .lm-section {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  margin-top: 10rem;
  margin-bottom: 10rem;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .layout-main .lm-section {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

.layout-main .lm-section:before, .layout-main .lm-section:after {
  content: " ";
  display: table;
}

.layout-main .lm-section:after {
  clear: both;
}

.layout-main .lm-section .container {
  max-width: 990px;
}

.layout-main .lm-section_title {
  font-size: 3rem;
  display: table;
  letter-spacing: .1em;
  line-height: 1.2;
  margin-bottom: 6rem;
  padding-bottom: 0.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .layout-main .lm-section_title {
    font-size: 4.6rem;
  }
}

.layout-main .lm-section_title::before {
  background-color: #ff355e;
  content: "";
  display: block;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5em;
}

.layout-main .lm-section_titleWrap {
  display: inherit;
  margin-bottom: 0;
  overflow: hidden;
}

.layout-main .lm-section_title.is-animate {
  opacity: 1;
  overflow: hidden;
}

.layout-main .lm-section_title.is-animate::before {
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: all 0.5s cubic-bezier(0, 0.98, 0.58, 1);
  transition-delay: .5s;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

.layout-main .lm-section_title.is-animate .lm-section_titleWrap {
  -webkit-transform: translate3d(-100vw, 0, 0);
          transform: translate3d(-100vw, 0, 0);
  transition: all 0.5s cubic-bezier(0, 0.98, 0.58, 1);
}

.layout-main .lm-section_title.is-animate .lm-section_titleWrap .lm-section_titleWrap {
  -webkit-transform: translate3d(100vw, 0, 0);
          transform: translate3d(100vw, 0, 0);
}

.layout-main .lm-section_title.is-animate.is-show::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.layout-main .lm-section_title.is-animate.is-show .lm-section_titleWrap {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.layout-main .lm-section_lead {
  font-size: 1.3rem;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .layout-main .lm-section_lead {
    font-size: 1.6rem;
  }
}

.layout-main .lm-section_leadTitle {
  font-size: 2rem;
  letter-spacing: .05em;
  line-height: 1.6;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .layout-main .lm-section_leadTitle {
    font-size: 4rem;
  }
}

.layout-main .lm-section_leadTitle small {
  font-size: 1.3rem;
  color: inherit;
  display: block;
  font-weight: 700;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .layout-main .lm-section_leadTitle small {
    font-size: 2.4rem;
  }
}

.layout-main .lm-section_leadTitle:last-child {
  margin-bottom: 0;
}

.layout-main .lm-section_heading {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .layout-main .lm-section_heading {
    font-size: 3rem;
  }
}

.layout-main .lm-section_card {
  width: 100%;
}

.layout-main .lm-section_card > a {
  display: inherit;
  text-decoration: none;
  width: 100%;
}

.layout-main .lm-section_card > a:hover .hs-card_continue::before {
  width: 100%;
}

.layout-main .lm-section_card_cover {
  margin-bottom: 2rem;
  overflow: hidden;
}

.layout-main .lm-section_card_caption {
  font-size: 1.4rem;
  letter-spacing: .1em;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .layout-main .lm-section_card_caption {
    font-size: 1.4rem;
  }
}

.layout-main .lm-section_card_title {
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  .layout-main .lm-section_card_title {
    font-size: 1.6rem;
  }
}

.layout-main .lm-section_card_continue {
  font-size: 1.6rem;
  display: inline-block;
  letter-spacing: .1em;
  padding-bottom: 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .layout-main .lm-section_card_continue {
    font-size: 1.6rem;
  }
}

.layout-main .lm-section_card_continue::before {
  background-color: #ff355e;
  content: "";
  display: block;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .3s ease;
  width: 2.5em;
}
.goto-service ul {
  list-style: none;
  display: flex;
  justify-content:center;
}
.goto-service ul li {
  margin: 0 20px;
}
.layout-main .lm-section_continue {
  margin-top: 10rem;
  text-align: center;
}
.layout-main .lm-section_continue.top {
  top: 52px;
  right: 0;
  position: absolute;
}

.layout-main .lm-section_continue .button, .layout-main .lm-section_continue [class*="button-"],.goto-service [class*="button-"] {
  border-width: 0.2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  width: 100%;
  max-width: 32rem;
}
.layout-main .lm-section_continue.top [class*="button-"],.goto-service [class*="button-"] {
  width: 300px !important;
  color: #ff355e;
}
@media (max-width: 991px) {
  .layout-main .lm-section_continue.top {
    position: relative;
    top: auto;
    right: auto;
    margin: 3rem 0 4rem;
  }
  .layout-main .lm-article_lead {
    margin: 0;
  }
  .layout-main .lm-section_continue [class*="button-"] {
    width: auto;
  }
  .goto-service ul {
  display: block;
  padding: 0;
  text-align: center;
}
.goto-service ul li {
  width: 100%;
  margin: 0 0 30px;
}
}
.layout-main .lm-section:last-child {
  margin-bottom: 0;
}

.layout-main .lm-section.is-darken {
  background-color: #F6F6F6;
  padding-top: 7rem;
}

.layout-main .lm-section.is-parallax {
  background: no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
  padding-top: 10rem;
  padding-bottom: 11rem;
}

.layout-main .lm-section.is-collapse {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .layout-main .lm-section {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
  .layout-main .lm-section_title {
    letter-spacing: .025em;
    margin-bottom: 3.5rem;
  }
  .layout-main .lm-section_title::before {
    width: 1.75em;
  }
  .layout-main .lm-section_lead {
    margin-bottom: 3.5rem;
  }
  .layout-main .lm-section_leadTitle small {
    letter-spacing: .025em;
  }
  .layout-main .lm-section_continue {
    margin-top: 5rem;
  }
  .layout-main .lm-section_continue .button, .layout-main .lm-section_continue [class*="button-"] {
    width: 100%;
    max-width: 29.5rem;
  }
  .layout-main .lm-section.is-darken {
    padding-top: 3.5rem;
  }
}

@media (max-width: 991px) {
  .layout-main .lm-section_continue {
    margin-top: 5rem;
    width: 100%;
  }
  .layout-main .lm-section_continue .button, .layout-main .lm-section_continue [class*="button-"] {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
    max-width: 29.5rem;
  }
  .layout-main .lm-section_continue .button::after, .layout-main .lm-section_continue [class*="button-"]::after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.8rem;
    content: "\f105";
    font-weight: 700;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .layout-main .lm-section_continue .button::after, .layout-main .lm-section_continue [class*="button-"]::after {
    font-size: 1.8rem;
  }
}

/* Footer
----------------------------------------*/
.layout-footer {
  font-size: 1.4rem;
  letter-spacing: .1em;
  line-height: 1.2;
  padding: 3rem 0;
}
.lf-menu {position: relative;}
.lf-privacy img {
  position: absolute;
  top: -10px;
  right: 10px;
}
@media (min-width: 768px) {
  .layout-footer {
    font-size: 1.4rem;
  }
}

.layout-footer a {
  text-decoration: none;
}

.layout-footer .lf-menu {
  font-size: 1.3rem;
  margin-bottom: 5rem;
}

.layout-footer .lf-menu_list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.layout-footer .lf-menu_listItem a:hover {
  text-decoration: underline;
}

.layout-footer .lf-menu_listItem:not(:first-child)::before {
  content: "/";
  margin: 0 1em;
}

.layout-footer .lf-title {
  margin: 5rem 0 0 0;
  text-align: center;
}

.layout-footer .lf-copyright {
  font-size: 1.3rem;
  display: block;
  padding: 5rem 0 3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .layout-footer {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
  .lf-privacy img {position: static;}
  .lf-privacy {text-align: center;}
  .layout-footer .lf-title {margin-top: 3rem;}
}

@media (min-width: 768px) {
  .layout-footer .lf-copyright {
    font-size: 1.2rem;
  }
}

.layout-footer .lf-button {
  display: none;
  position: fixed;
  bottom: 6rem;
  text-decoration: none;
}

.layout-footer .lf-button_icon {
  font-size: 2.4rem;
  background-color: #ff355e;
  border-radius: 50%;
  color: #f6f6f6;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  height: 4.4rem;
  width: 4.4rem;
}

@media (min-width: 768px) {
  .layout-footer .lf-button_icon {
    font-size: 2rem;
  }
}

.layout-footer .lf-button[data-button="scroll"] {
  right: 2rem;
}

.layout-footer .lf-button[data-button="share"] {
  height: 16rem;
  bottom: 0rem;
  left: 2rem;
  width: 3rem;
}

.layout-footer .lf-button[data-button="share"] .lf-button_object {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.layout-footer .lf-button[data-button="share"] .lf-button_list {
  opacity: 0;
  transition: all .3s ease;
  visibility: hidden;
}

.layout-footer .lf-button[data-button="share"] .lf-button_listItem {
  position: absolute;
  top: 50%;
  left: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.layout-footer .lf-button[data-button="share"] .lf-button_listItem a {
  text-decoration: none;
}

.layout-footer .lf-button[data-button="share"] .lf-button_listItem:nth-child(1) {
  margin-top: -5rem;
}

.layout-footer .lf-button[data-button="share"] .lf-button_listItem:nth-child(2) {
  left: 6rem;
}

.layout-footer .lf-button[data-button="share"] .lf-button_listItem:nth-child(3) {
  margin-top: 5rem;
}

.layout-footer .lf-button[data-button="share"]:hover {
  width: 11rem;
}

.layout-footer .lf-button[data-button="share"]:hover .lf-button_list {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .layout-footer .lf-menu {
    margin-bottom: 1.5rem;
  }
  .layout-footer .lf-menu_list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    text-align: center;
  }
  .layout-footer .lf-menu_listItem {
    margin-bottom: 2rem;
    width: 100%;
  }
  .layout-footer .lf-menu_listItem:not(:first-child)::before {
    display: none;
  }
  .layout-footer .lf-title_object {
    width: 10.7rem;
  }
  .layout-footer .lf-copyright {
    padding-top: 4rem;
  }
  .layout-footer .lf-button_icon {
    border-radius: 0;
    height: 6rem;
    width: 100%;
  }
  .layout-footer .lf-button[data-button="scroll"] {
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 100%;
  }
  .layout-footer .lf-button[data-button="share"] {
    display: none !important;
  }
}

/*----------------------------------------
 # Navigation
----------------------------------------*/
[class^="nav-"] {
  position: relative;
  width: 100%;
}

/* Global
----------------------------------------*/
.nav-global {
  font-size: 1.5rem;
  font-weight: 700;
  display: inherit;
  width: auto;
}

@media (min-width: 768px) {
  .nav-global {
    font-size: 1.4rem;
  }
}

@media (max-width: 1199px) {
  .nav-global {
    color: #ff355e;
    margin-bottom: 2.5rem;
  }
}

.nav-global .ng-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.nav-global .ng-listItem {
  border-left: 0.1rem solid #fff;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: .1em;
  position: relative;
  width: 14rem;
}

.nav-global .ng-listItem a {
  display: inherit;
  -webkit-align-items: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  -webkit-justify-content: inherit;
      -ms-flex-pack: inherit;
          justify-content: inherit;
  height: 8rem;
  padding: 0 1rem;
  transition: all .3s ease;
  width: 100%;
  text-align: center;
}

.nav-global .ng-listItem a::before {
  background-color: transparent;
  content: "";
  display: block;
  height: 0.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .3s ease;
  width: 100%;
}

.nav-global .ng-listItem a:hover, .nav-global .ng-listItem a:focus {
  color: #ff355e;
  text-decoration: none;
}

.nav-global .ng-listItem a:hover::before, .nav-global .ng-listItem a:focus::before {
  background-color: #ff355e;
}

.nav-global .ng-listItem:last-child {
  border-right: 0.1rem solid #fff;
}

.nav-global .ng-listItem.is-active a {
  color: #ff355e;
  text-decoration: none;
}

.nav-global .ng-listItem.is-active a::before {
  background-color: #ff355e;
}

@media (max-width: 1199px) {
  .nav-global .ng-list {
    border-top: 0.1rem solid #f2f2f2;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .nav-global .ng-listItem {
    border-bottom: 0.1rem solid #f2f2f2;
    width: 100%;
  }
  .nav-global .ng-listItem a {
    height: 6rem;
  }
  .nav-global .ng-listItem a::before {
    height: 0;
  }
  .nav-global .ng-listItem.is-active a::before {
    height: 0.25rem;
  }
}

/*----------------------------------------
 # Module
----------------------------------------*/
[class^="module-"] {
  position: relative;
  width: 100%;
}

/* Card
----------------------------------------*/
.module-card {
  margin-bottom: 2rem;
}

.module-card > a {
  color: inherit;
  display: inherit;
  text-decoration: none;
  width: 100%;
}

.module-card:last-child {
  margin-bottom: 0rem;
}

.module-card.is-lighten {
  background-color: #FFF;
  padding: 0 3rem 3rem;
}

.module-card.is-lighten .mc-title {
  margin-right: -3rem;
  margin-left: -3rem;
}

@media (max-width: 767px) {
  .module-card.is-lighten {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
  .module-card.is-lighten .mc-title {
    margin-right: -2.5rem;
    margin-left: -2.5rem;
  }
}

.module-card .mc-title {
  background-color: #ff355e;
  color: #fff;
  font-weight: 400;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
}

.module-card .mc-lead {
  font-size: 1.3rem;
  color: #ff355e;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .module-card .mc-lead {
    font-size: 1.8rem;
  }
}

.module-card .mc-caption {
  font-size: 1.2rem;
  line-height: 1.8;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .module-card .mc-caption {
    font-size: 1.2rem;
  }
}

.module-card .mc-cover {
  overflow: hidden;
  text-align: center;
}

.module-card .mc-cover_object {
  width: 100%;
}

@media (max-width: 767px) {
  .module-card .mc-title {
    font-size: 1.3rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .module-card .mc-lead {
    margin-bottom: 1rem;
  }
}

/* Fluid
----------------------------------------*/
.module-fluid {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  margin-bottom: 1rem;
  position: relative;
  width: auto;
}

@media (min-width: 768px) {
  .module-fluid {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

.module-fluid:last-child {
  margin-bottom: 0;
}

.module-fluid.is-darken {
  background-color: #F6F6F6;
  margin-bottom: 0;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.module-fluid.is-darken.is-collapse {
  padding-top: 0;
  padding-bottom: 0;
}

.module-fluid.is-lighten {
  background-color: #FFF;
  margin-bottom: 0;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.module-fluid.is-separate {
  border-bottom: 0.2rem solid #fff;
  margin-bottom: 5rem;
  padding-bottom: 3rem;
}

.module-fluid .mf-object {
  width: 100%;
}

.module-fluid .mf-parallax {
  background: no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  padding-top: 48.4375%;
}

.module-fluid .mf-parallax[data-parallax="consulting-mission"] {
  background-image: url(/assets/img/unique/consulting/section-ourMission_texture.jpg);
}

.module-fluid .mf-parallax[data-parallax*="recruit-benefit"] {
  padding-top: 35.15625%;
}

.module-fluid .mf-parallax[data-parallax="recruit-benefit01"] {
  background-image: url(/assets/img/unique/recruit/benefits/section-01_texture.jpg);
}

.module-fluid .mf-parallax[data-parallax="recruit-benefit02"] {
  background-image: url(/assets/img/unique/recruit/benefits/section-02_texture.jpg);
}

.module-fluid .mf-parallax[data-parallax="recruit-benefit03"] {
  background-image: url(/assets/img/unique/recruit/benefits/section-03_texture.jpg);
}

.module-fluid .mf-parallax[data-parallax="recruit-benefit04"] {
  background-image: url(/assets/img/unique/recruit/benefits/section-04_texture.jpg);
}

.module-fluid .mf-parallax[data-parallax="recruit-benefit05"] {
  background-image: url(/assets/img/unique/recruit/benefits/section-05_texture.jpg);
}

.module-fluid .mf-parallax[data-parallax="recruit-environments"] {
  background-image: url(/assets/img/unique/recruit/engineer/section-environments_texture.jpg);
}

@media (max-width: 767px) {
  .module-fluid .mf-parallax {
    background-attachment: inherit;
    padding-top: 66.6666666667%;
  }
  .module-fluid .mf-parallax[data-parallax*="recruit-benefit"] {
    padding-top: 66.6666666667%;
  }
}

/* Media
----------------------------------------*/
.module-media {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12rem;
  width: 100%;
}

.module-media:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .module-media {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 7.5rem;
  }
}

.module-media .mm-cover {
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.module-media .mm-cover:first-child {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  padding-right: 2rem;
}

.module-media .mm-cover:first-child .mm-cover_fluid .mm-cover_object {
  margin-left: auto;
}

.module-media .mm-cover:last-child {
  margin-right: calc(((100vw - 100%) / 2) * -1);
  padding-left: 2rem;
}

.module-media .mm-cover:last-child .mm-cover_fluid .mm-cover_object {
  margin-right: auto;
}

.module-media .mm-cover_fluid {
  width: 50vw;
}

.module-media .mm-cover_fluid .mm-cover_object {
  display: block;
}

.module-media .mm-caption {
  line-height: 2;
  width: 100%;
}

.module-media .mm-caption_title {
  font-size: 1.8rem;
  letter-spacing: .1em;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .module-media .mm-caption_title {
    font-size: 1.8rem;
  }
}

.module-media .mm-caption_heading {
  color: #ff355e;
}

.module-media .mm-caption_heading.is-inverse {
  background-color: #ff355e;
  color: #fff;
  font-weight: 400;
  line-height: 2.2;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem 0.5rem 2rem;
}

.module-media .mm-caption_continue {
  display: inline-block;
  letter-spacing: .2em;
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  position: relative;
  text-decoration: none;
}

.module-media .mm-caption_continue::after {
  background-color: #ff355e;
  content: "";
  display: block;
  height: 0.2rem;
  margin-top: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .3s ease;
  width: 3em;
}

.module-media .mm-caption_continue:hover::after {
  width: 100%;
}

.module-media .mm-caption:first-child {
  padding-right: 2rem;
}

.module-media .mm-caption:last-child {
  padding-left: 2rem;
}

@media (max-width: 767px) {
  .module-media .mm-cover {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
    width: calc(100% + 3rem);
  }
  .module-media .mm-cover_fluid {
    width: 100%;
  }
  .module-media .mm-cover_object {
    width: 100%;
  }
  .module-media .mm-cover:first-child {
    margin-left: -1.5rem;
    padding-right: 0;
  }
  .module-media .mm-cover:last-child {
    margin-right: -1.5rem;
    padding-left: 0;
  }
  .module-media .mm-caption {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    width: calc(100% + 3rem);
  }
  .module-media .mm-caption_heading.is-inverse {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
  .module-media .mm-caption:first-child {
    padding-right: 1.5rem;
  }
  .module-media .mm-caption:last-child {
    padding-left: 1.5rem;
  }
}

/*----------------------------------------
 # Component
----------------------------------------*/
[class^="component-"] {
  position: relative;
  width: 100%;
}

/* Carousel
----------------------------------------*/
.component-carousel {
  margin-bottom: 1em;
}

.component-carousel:last-child {
  margin-bottom: 0;
}

.component-carousel .cc-list {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}

.component-carousel .cc-listItem {
  padding: 0 1.5rem;
}

.component-carousel .cc-listItem:not(.slick-slide):not(:nth-child(-n+4)) {
  display: none;
}

.component-carousel .cc-list .slick-prev,
.component-carousel .cc-list .slick-next {
  height: 100%;
  width: 2.2rem;
}

.component-carousel .cc-list .slick-prev::before, .component-carousel .cc-list .slick-prev::after,
.component-carousel .cc-list .slick-next::before,
.component-carousel .cc-list .slick-next::after {
  content: "";
  opacity: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.component-carousel .cc-list .slick-prev::before,
.component-carousel .cc-list .slick-next::before {
  background-color: #ff355e;
  height: 0.2rem;
  left: 0;
  width: 2.6rem;
}

.component-carousel .cc-list .slick-prev::after,
.component-carousel .cc-list .slick-next::after {
  border-style: solid;
  height: 0;
  width: 0;
}

.component-carousel .cc-list .slick-prev::after {
  border-color: transparent #ff355e transparent transparent;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  right: 100%;
}

.component-carousel .cc-list .slick-next::after {
  border-color: transparent transparent transparent #ff355e;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  left: 100%;
}

@media (max-width: 767px) {
  .component-carousel .cc-list {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
  .component-carousel .cc-listItem {
    margin: 0 -0.75rem;
  }
}

/* Grid
----------------------------------------*/
.component-grid {
  margin-bottom: 1em;
}

.component-grid:last-child {
  margin-bottom: 0;
}

.component-grid .cg-heading {
  background-color: #ff355e;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
}

.component-grid .cg-heading:not(:first-child) {
  margin-top: 5rem;
}

.component-grid .cg-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.component-grid .cg-column {
  display: inherit;
  -webkit-flex-wrap: inherit;
      -ms-flex-wrap: inherit;
          flex-wrap: inherit;
}

@media (max-width: 767px) {
  .component-grid .cg-heading {
    font-size: 1.3rem;
  }
  .component-grid .cg-heading:not(:first-child) {
    margin-top: 4rem;
  }
}

/* Gutter
-------------------*/
.component-grid[data-grid="gutter"]:not(:last-child) {
  margin-bottom: 5rem;
}

.component-grid[data-grid="gutter"] .cg-row {
  margin-right: -4rem;
  margin-left: -4rem;
}

.component-grid[data-grid="gutter"] .cg-column {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-right: 4rem;
  padding-left: 4rem;
}

@media (max-width: 767px) {
  .component-grid[data-grid="gutter"] .cg-column {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

/*----------------------------------------
 # Utility
----------------------------------------*/
.text-xs {
  font-size: calc(1em - 0.4rem);
}

.text-sm {
  font-size: calc(1em - 0.2rem);
}

.text-md {
  font-size: 1em;
}

.text-lg {
  font-size: calc(1em + 0.2rem);
}

.text-xl {
  font-size: calc(1em + 0.4rem);
}

.text-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.text-notice {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.js-inview {
  opacity: 0;
  transition: opacity 1.3s ease;
}

.js-inview.is-show {
  opacity: 1;
}

@media (max-width: 767px) {
  .mobile-text-sm {
    font-size: calc(1em - 0.1rem);
  }
  .mobile-text-md {
    font-size: 1em !important;
  }
  .mobile-text-lg {
    font-size: calc(1em + 0.1rem);
  }
  .mobile-margin-b50 {
    margin-bottom: 5rem;
  }
}

/*----------------------------------------
 # Unique
----------------------------------------*/
/* Unique Style of 'Home'
----------------------------------------*/
/* Prefix
-------------------*/
[class^="home-"] {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  [class^="home-"] {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

[class^="home-"] > .container {
  max-width: 990px;
}

/* Cover
-------------------*/
.home-cover {
  height: 100vh;
  overflow: hidden;
}

.home-cover .fss-output::before {
  background-color: rgba(255, 255, 255, 0.5);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media (max-width: 1199px) {
  .home-cover {
    height: calc(100vh - 5rem);
  }
}

.home-cover .hc-scene {
  position: relative;
}

.home-cover .hc-caption {
  font-size: 2.8rem;
  color: #ff355e;
  letter-spacing: .2em;
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

@media (min-width: 768px) {
  .home-cover .hc-caption {
    font-size: 2.8rem;
  }
}

.home-cover .hc-title {
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: .25em;
  margin-bottom: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .home-cover .hc-title {
    font-size: 6rem;
  }
}

.home-cover .hc-title_comma {
  margin-left: .25em;
}

.home-cover .hc-title_wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.home-cover .hc-title > .hc-title_wrap {
  margin-left: .5em;
  height: 0;
  white-space: nowrap;
  max-width: 0;
}

.home-cover .hc-title.is-animate {
  opacity: 1;
  overflow: hidden;
}

.home-cover .hc-title.is-animate .hc-title_wrap {
  -webkit-transform: translate3d(-100vw, 0, 0);
          transform: translate3d(-100vw, 0, 0);
  transition: -webkit-transform 1.5s cubic-bezier(0, 0.98, 0.58, 1) 1s;
  transition: transform 1.5s cubic-bezier(0, 0.98, 0.58, 1) 1s;
  transition: transform 1.5s cubic-bezier(0, 0.98, 0.58, 1) 1s, -webkit-transform 1.5s cubic-bezier(0, 0.98, 0.58, 1) 1s;
}

.home-cover .hc-title.is-animate .hc-title_wrap .hc-title_wrap {
  -webkit-transform: translate3d(100vw, 0, 0);
          transform: translate3d(100vw, 0, 0);
}

.home-cover .hc-title.is-animate > .hc-title_wrap {
  transition: max-width 3s ease, -webkit-transform 1.5s cubic-bezier(0, 0.98, 0.58, 1) 1s;
  transition: transform 1.5s cubic-bezier(0, 0.98, 0.58, 1) 1s, max-width 3s ease;
  transition: transform 1.5s cubic-bezier(0, 0.98, 0.58, 1) 1s, max-width 3s ease, -webkit-transform 1.5s cubic-bezier(0, 0.98, 0.58, 1) 1s;
}

.home-cover .hc-title.is-animate.is-show::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.home-cover .hc-title.is-animate.is-show .hc-title_wrap {
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.home-cover .hc-title.is-animate.is-show > .hc-title_wrap {
  height: auto;
  max-width: 100%;
}

.home-cover .hc-guidance {
  height: 7.2rem;
  position: absolute;
  right: 50%;
  bottom: 12.5rem;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 2.6rem;
}

.home-cover .hc-guidance::before, .home-cover .hc-guidance::after {
  background-color: #ff355e;
  content: "";
  position: absolute;
}

.home-cover .hc-guidance::before {
  -webkit-animation: hc-guidanceHorizontal 2s ease-in-out infinite;
          animation: hc-guidanceHorizontal 2s ease-in-out infinite;
  height: 0.2rem;
  top: 1.4rem;
  left: 0;
  width: 100%;
}

.home-cover .hc-guidance::after {
  -webkit-animation: hc-guidanceVertical 2s ease-in-out infinite;
          animation: hc-guidanceVertical 2s ease-in-out infinite;
  height: 100%;
  top: 0;
  left: 1.2rem;
  width: 0.2rem;
}

.home-cover .hc-guidance > a {
  display: block;
  height: 9.5rem;
  margin-left: -3.35rem;
  width: 9.5rem;
}

.home-cover .hc-guidance_icon {
  -webkit-animation: hc-guidanceIcon 2s ease-in-out infinite;
          animation: hc-guidanceIcon 2s ease-in-out infinite;
  border-color: #ff355e transparent transparent transparent;
  border-style: solid;
  border-width: 2.4rem 0 0 1rem;
  height: 0;
  position: absolute;
  top: 100%;
  left: 0.4rem;
  width: 0;
}

@-webkit-keyframes hc-guidanceHorizontal {
  0% {
    width: 0;
    max-width: 0;
  }
  25% {
    width: 100%;
    max-width: 100%;
  }
}

@keyframes hc-guidanceHorizontal {
  0% {
    width: 0;
    max-width: 0;
  }
  25% {
    width: 100%;
    max-width: 100%;
  }
}

@-webkit-keyframes hc-guidanceVertical {
  0% {
    height: 0;
    max-height: 0;
  }
  25% {
    height: 0;
    max-height: 0;
  }
  50% {
    height: 100%;
    max-height: 100%;
  }
}

@keyframes hc-guidanceVertical {
  0% {
    height: 0;
    max-height: 0;
  }
  25% {
    height: 0;
    max-height: 0;
  }
  50% {
    height: 100%;
    max-height: 100%;
  }
}

@-webkit-keyframes hc-guidanceIcon {
  0% {
    border-top-width: 0;
  }
  49.5% {
    border-top-width: 0;
  }
  53.5% {
    border-top-width: 2.4rem;
  }
}

@keyframes hc-guidanceIcon {
  0% {
    border-top-width: 0;
  }
  49.5% {
    border-top-width: 0;
  }
  53.5% {
    border-top-width: 2.4rem;
  }
}

@media (max-width: 767px) {
  .home-cover .hc-guidance {
    height: 3.6rem;
    bottom: 9.8rem;
    width: 1.3rem;
  }
  .home-cover .hc-guidance::before {
    top: 0.7rem;
  }
  .home-cover .hc-guidance::after {
    left: 0.6rem;
  }
  .home-cover .hc-guidance_icon {
    -webkit-animation: hc-guidanceIcon-xs 2s ease-in-out infinite;
            animation: hc-guidanceIcon-xs 2s ease-in-out infinite;
    border-width: 1.2rem 0 0 0.5rem;
    left: 0.3rem;
  }
}

@media (max-width: 991px) {
  .home-cover .hc-title_comma, .home-cover .hc-title_wrap {
    margin: 0 !important;
  }
  .home-cover .hc-title.is-animate {
    letter-spacing: .2em;
  }
}

@-webkit-keyframes hc-guidanceIcon-xs {
  0% {
    border-top-width: 0;
  }
  49.5% {
    border-top-width: 0;
  }
  53.5% {
    border-top-width: 1.2rem;
  }
}

@keyframes hc-guidanceIcon-xs {
  0% {
    border-top-width: 0;
  }
  49.5% {
    border-top-width: 0;
  }
  53.5% {
    border-top-width: 1.2rem;
  }
}

/* Section
-------------------*/
.home-section {
  padding: 11rem 0 7rem;
  position: relative;
}

.home-section:before, .home-section:after {
  content: " ";
  display: table;
}

.home-section:after {
  clear: both;
}

@media (max-width: 991px) {
  .home-section {
    padding-top: 4rem;
  }
}

.home-section .hs-title {
  font-size: 3rem;
  display: table;
  letter-spacing: .1em;
  line-height: 1.2;
  margin-bottom: 7rem;
  padding-bottom: 0.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .home-section .hs-title {
    font-size: 4.6rem;
  }
}

.home-section .hs-title::before {
  background-color: #ff355e;
  content: "";
  display: block;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5em;
}

.home-section .hs-title_wrap {
  display: inherit;
  overflow: hidden;
}

.home-section .hs-title.is-animate {
  opacity: 1;
  overflow: hidden;
}

.home-section .hs-title.is-animate::before {
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: all 0.5s cubic-bezier(0, 0.98, 0.58, 1);
  transition-delay: .5s;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

.home-section .hs-title.is-animate .hs-title_wrap {
  -webkit-transform: translate3d(-100vw, 0, 0);
          transform: translate3d(-100vw, 0, 0);
  transition: -webkit-transform 0.5s cubic-bezier(0, 0.98, 0.58, 1);
  transition: transform 0.5s cubic-bezier(0, 0.98, 0.58, 1);
  transition: transform 0.5s cubic-bezier(0, 0.98, 0.58, 1), -webkit-transform 0.5s cubic-bezier(0, 0.98, 0.58, 1);
}

.home-section .hs-title.is-animate .hs-title_wrap .hs-title_wrap {
  -webkit-transform: translate3d(100vw, 0, 0);
          transform: translate3d(100vw, 0, 0);
}

.home-section .hs-title.is-animate.is-show::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.home-section .hs-title.is-animate.is-show .hs-title_wrap {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.home-section .hs-lead {
  font-size: 2rem;
  display: table;
  line-height: 1.6;
  position: relative;
}

@media (min-width: 768px) {
  .home-section .hs-lead {
    font-size: 4rem;
  }
}

.home-section .hs-lead_wrap {
  display: inherit;
  overflow: hidden;
}

.home-section .hs-lead.is-animate {
  opacity: 1;
}

.home-section .hs-lead.is-animate .hs-lead_wrap {
  -webkit-transform: translate3d(-100vw, 0, 0);
          transform: translate3d(-100vw, 0, 0);
  transition: -webkit-transform 0.5s cubic-bezier(0, 0.98, 0.58, 1);
  transition: transform 0.5s cubic-bezier(0, 0.98, 0.58, 1);
  transition: transform 0.5s cubic-bezier(0, 0.98, 0.58, 1), -webkit-transform 0.5s cubic-bezier(0, 0.98, 0.58, 1);
  transition-delay: .5s;
}

.home-section .hs-lead.is-animate .hs-lead_wrap .hs-lead_wrap {
  -webkit-transform: translate3d(100vw, 0, 0);
          transform: translate3d(100vw, 0, 0);
}

.home-section .hs-lead.is-animate.is-show .hs-lead_wrap {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.home-section .hs-lead_attention {
  font-size: 1.2rem;
  background-color: #ff355e;
  border-radius: 50%;
  color: #FFF;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 15.3rem;
  letter-spacing: .1em;
  line-height: 1.4;
  margin: 0;
  position: absolute;
  bottom: 50%;
  left: calc(100% + 1em);
  text-transform: uppercase;
  transition: opacity 1.25s ease-out 1s;
  width: 15.3rem;
  z-index: 1;
}

@media (min-width: 768px) {
  .home-section .hs-lead_attention {
    font-size: 2.4rem;
  }
}

.home-section .hs-lead_attention::before {
  border-color: transparent #ff355e transparent transparent;
  border-style: solid;
  border-width: 2.35rem 4.7rem 2.35rem 0;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  bottom: 0;
  left: -0.7rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 0;
  z-index: -1;
}

.home-section .hs-continue {
  margin-top: 10rem;
  text-align: center;
}

.home-section .hs-continue_button {
  border-width: 0.2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  width: 100%;
  max-width: 32rem;
}

.home-section .hs-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.home-section .hs-column {
  padding: 2.5rem 2rem;
  position: relative;
  width: 100%;
  max-width: 44rem;
}

.home-section .hs-column_title {
  font-size: 2.5rem;
  letter-spacing: .1em;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .home-section .hs-column_title {
    font-size: 4rem;
  }
}

.home-section .hs-column_title .hs-title_wrap {
  display: inherit;
  overflow: hidden;
}

.home-section .hs-column_title.is-animate {
  opacity: 1;
  overflow: hidden;
}

.home-section .hs-column_title.is-animate .hs-title_wrap {
  -webkit-transform: translate3d(-100vw, 0, 0);
          transform: translate3d(-100vw, 0, 0);
  transition: -webkit-transform 1s cubic-bezier(0, 0.98, 0.58, 1);
  transition: transform 1s cubic-bezier(0, 0.98, 0.58, 1);
  transition: transform 1s cubic-bezier(0, 0.98, 0.58, 1), -webkit-transform 1s cubic-bezier(0, 0.98, 0.58, 1);
  transition-delay: .5s;
}

.home-section .hs-column_title.is-animate .hs-title_wrap .hs-title_wrap {
  -webkit-transform: translate3d(100vw, 0, 0);
          transform: translate3d(100vw, 0, 0);
}

.home-section .hs-column_title.is-animate.is-show .hs-title_wrap {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.home-section .hs-column_object {
  margin-bottom: .5em;
}

.home-section .hs-column_emphasis {
  color: #ff355e;
}

.home-section .hs-column_wrap {
  position: relative;
  z-index: 20;
}

.home-section .hs-column::before, .home-section .hs-column::after {
  background-color: #F2F2F2;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.home-section .hs-column::before {
  height: calc(100% - 12px);
  top: 6px;
  width: 100%;
}

.home-section .hs-column::after {
  height: 100%;
  left: 6px;
  width: calc(100% - 12px);
}

.home-section .hs-column_hLine::before, .home-section .hs-column_hLine::after, .home-section .hs-column_vLine::before, .home-section .hs-column_vLine::after {
  background-color: #ff355e;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  transition-duration: .6s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.home-section .hs-column_hLine::before, .home-section .hs-column_vLine::before {
  left: 0;
}

.home-section .hs-column_hLine::before, .home-section .hs-column_hLine::after {
  -webkit-transform: scale(0);
          transform: scale(0);
  transition-delay: 1.2s;
  height: 1px;
  right: -6px;
  left: -6px;
}

.home-section .hs-column_hLine::before {
  -webkit-transform-origin: left center 0;
          transform-origin: left center 0;
  top: 0;
}

.home-section .hs-column_hLine::after {
  -webkit-transform-origin: right center 0;
          transform-origin: right center 0;
  bottom: 0;
}

.home-section .hs-column_vLine::before, .home-section .hs-column_vLine::after {
  -webkit-transform: scale(0);
          transform: scale(0);
  transition-delay: 1s;
  width: 1px;
  top: -6px;
  bottom: -6px;
}

.home-section .hs-column_vLine::before {
  -webkit-transform-origin: center bottom 0;
          transform-origin: center bottom 0;
  left: 0;
}

.home-section .hs-column_vLine::after {
  -webkit-transform-origin: center top 0;
          transform-origin: center top 0;
  right: 0;
}

.home-section .hs-column.is-show .hs-column_hLine::before, .home-section .hs-column.is-show .hs-column_hLine::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.home-section .hs-column.is-show .hs-column_hLine::before {
  -webkit-transform-origin: left;
          transform-origin: left;
  top: 0;
}

.home-section .hs-column.is-show .hs-column_vLine::before, .home-section .hs-column.is-show .hs-column_vLine::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.home-section .hs-card {
  width: 100%;
}

.home-section .hs-card > a {
  display: inherit;
  text-decoration: none;
  width: 100%;
}

.home-section .hs-card > a:hover .hs-card_continue::before {
  width: 100%;
}

.home-section .hs-card_cover {
  margin-bottom: 2rem;
  overflow: hidden;
}

.home-section .hs-card_object {
  width: 100%;
}

.home-section .hs-card_caption {
  font-size: 1.1rem;
  letter-spacing: .1em;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .home-section .hs-card_caption {
    font-size: 1.4rem;
  }
}

.home-section .hs-card_title {
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .home-section .hs-card_title {
    font-size: 1.6rem;
  }
}

.home-section .hs-card_continue {
  font-size: 1.3rem;
  display: inline-block;
  letter-spacing: .1em;
  padding-bottom: 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .home-section .hs-card_continue {
    font-size: 1.6rem;
  }
}

.home-section .hs-card_continue::before {
  background-color: #ff355e;
  content: "";
  display: block;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .3s ease;
  width: 2.5em;
}

.home-section .hs-carousel_item img {
  width: 100%;
}

.home-section .hs-carousel_item:not(.slick-slide):not(:nth-child(-n+4)) {
  display: none;
}

.home-section .hs-carousel .slick-prev,
.home-section .hs-carousel .slick-next {
  height: 100%;
  width: 2.2rem;
}

.home-section .hs-carousel .slick-prev::before, .home-section .hs-carousel .slick-prev::after,
.home-section .hs-carousel .slick-next::before,
.home-section .hs-carousel .slick-next::after {
  content: "";
  opacity: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.home-section .hs-carousel .slick-prev::before,
.home-section .hs-carousel .slick-next::before {
  background-color: #ff355e;
  height: 0.2rem;
  left: 0;
  width: 2.6rem;
}

.home-section .hs-carousel .slick-prev::after,
.home-section .hs-carousel .slick-next::after {
  border-style: solid;
  height: 0;
  width: 0;
}

.home-section .hs-carousel .slick-prev::after {
  border-color: transparent #ff355e transparent transparent;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  right: 100%;
}

.home-section .hs-carousel .slick-next::after {
  border-color: transparent transparent transparent #ff355e;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  left: 100%;
}

.home-section .hs-timeline_listItem {
  border-bottom: 0.2rem solid #f6f6f6;
  margin-bottom: 4rem;
  overflow: hidden;
  padding-bottom: 3rem;
}

.home-section .hs-timeline_label {
  font-size: 1rem;
  background-color: #f6f6f6;
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1em;
  padding: 0.5rem;
  text-align: center;
  width: 11.5rem;
}

@media (min-width: 768px) {
  .home-section .hs-timeline_label {
    font-size: 1.4rem;
  }
}

.home-section .hs-timeline_date {
  display: inline-block;
  margin-top: 0.2rem;
  overflow: hidden;
}

.home-section .hs-timeline_lead {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-section .hs-timeline_lead a {
  position: relative;
}

@media (max-width: 767px) {
  .home-section .hs-card {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
  .home-section .hs-lead_attention {
    height: 7.7rem;
    width: 7.7rem;
  }
}

@media (max-width: 991px) {
  .home-section .hs-title {
    margin-bottom: 3.5rem;
  }
  .home-section .hs-title::before {
    width: 1.75em;
  }
  .home-section .hs-card_continue {
    display: table;
    margin-left: auto;
  }
  .home-section .hs-column {
    max-width: none;
  }
  .home-section .hs-column:not(:first-child) {
    margin-top: 6.5rem;
  }
  .home-section .hs-continue {
    margin-top: 5rem;
    width: 100%;
  }
  .home-section .hs-continue_button {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
    max-width: 29.5rem;
  }
  .home-section .hs-continue_button::after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.8rem;
    content: "\f105";
    font-weight: 700;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .home-section .hs-continue_button::after {
    font-size: 1.8rem;
  }
}

@media (max-width: 991px) {
  .home-section .hs-row {
    background-color: #F2F2F2;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 -1.5rem;
    padding: 4.5rem 2.2rem;
  }
  .home-section .hs-carousel {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
  .home-section .hs-carousel_item {
    margin: 0 -0.75rem;
  }
  .home-section .hs-timeline_list {
    font-size: 1.3rem;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .home-section .hs-timeline_list {
    font-size: 1.3rem;
  }
}

@media (max-width: 991px) {
  .home-section .hs-timeline_listItem {
    margin-bottom: 3rem;
  }
  .home-section .hs-timeline_label {
    font-size: 1rem;
    display: inline-block;
    float: none;
    margin-bottom: 1rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    vertical-align: middle;
    width: 5.5rem;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .home-section .hs-timeline_label {
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .home-section .hs-timeline_date {
    margin-top: 0;
    margin-bottom: 1rem;
    vertical-align: middle;
  }
  .home-section .hs-timeline_lead {
    white-space: normal;
  }
}

/* About Us */
.home-section[data-section="aboutUs"] {
  background-color: rgba(0, 0, 0, 0.05);
  padding-bottom: 9rem;
}

@media (max-width: 991px) {
  .home-section[data-section="aboutUs"] {
    background-color: #fff;
    padding-bottom: 0;
  }
}

/* Blog */
.home-section[data-section="blog"] {
  padding-top: 4rem;
}

@media (max-width: 991px) {
  .home-section[data-section="blog"] .col-xs-12:not(:last-child) .hs-card {
    margin-bottom: 5rem;
  }
}

/* Consulting */
.home-section[data-section="consulting"] {
  padding-bottom: 11rem;
}

@media (max-width: 991px) {
  .home-section[data-section="consulting"] {
    padding-bottom: 6.5rem;
  }
}

/* Join Us */
.home-section[data-section="joinUs"] {
  background-color: #fff;
  padding-top: 7rem;
}

@media (max-width: 991px) {
  .home-section[data-section="joinUs"] {
    padding-top: 5.5rem;
  }
}

/* Media */
@media (max-width: 991px) {
  .home-section[data-section="medias"] {
    padding-bottom: 0;
  }
}

/* News */
.home-section[data-section="news"] {
  padding-top: 4rem;
}

@media (max-width: 991px) {
  .home-section[data-section="news"] {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }
}

/* Our Product */
.home-section[data-section="ourProduct"] {
  background: url(/assets/img/unique/home/section-ourProduct_texture.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

/* Card
-------------------*/
.home-card {
  background-color: #f2f2f2;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.home-card p:not(:last-child) {
  margin-bottom: 10rem;
}

.home-card .button-link .b-icon .fa-stack-1x {
  font-size: 1.3rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .home-card .button-link .b-icon .fa-stack-1x {
    font-size: 1.6rem;
  }
}

.home-card .button-link .b-label {
  font-size: 1.3rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .home-card .button-link .b-label {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .home-card {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .home-card p:not(:last-child) {
    margin-bottom: 3rem;
  }
  .home-card .button-link {
    display: table;
    margin-left: auto;
  }
}

.home-card .hc-cover {
  width: 100%;
}

.home-card .hc-object {
  width: 100%;
}

.home-card .hc-caption {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.home-card .hc-caption_container {
  margin-left: auto;
  width: 100%;
  max-width: 48rem;
}

.home-card .hc-title {
  font-size: 2.5rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .home-card .hc-title {
    font-size: 4rem;
  }
}

.home-card .hc-title .hc-title_wrap {
  display: inherit;
  overflow: hidden;
}

.home-card .hc-title.is-animate {
  opacity: 1;
  overflow: hidden;
}

.home-card .hc-title.is-animate .hc-title_wrap {
  -webkit-transform: translate3d(-100vw, 0, 0);
          transform: translate3d(-100vw, 0, 0);
  transition: -webkit-transform 1s cubic-bezier(0, 0.98, 0.58, 1);
  transition: transform 1s cubic-bezier(0, 0.98, 0.58, 1);
  transition: transform 1s cubic-bezier(0, 0.98, 0.58, 1), -webkit-transform 1s cubic-bezier(0, 0.98, 0.58, 1);
  transition-delay: .5s;
}

.home-card .hc-title.is-animate .hc-title_wrap .hc-title_wrap {
  -webkit-transform: translate3d(100vw, 0, 0);
          transform: translate3d(100vw, 0, 0);
}

.home-card .hc-title.is-animate.is-show .hc-title_wrap {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@media (max-width: 991px) {
  .home-card .hc-title {
    margin-bottom: 2rem;
  }
  .home-card .hc-caption {
    padding: 3.5rem 1.5rem;
  }
  .home-card .hc-caption_container {
    margin-left: 0;
    max-width: none;
  }
}

/* Unique Style of 'About'
----------------------------------------*/
[class^="about-"] {
  position: relative;
}

/* Executive Officers
-------------------*/
.about-executiveOfficers {
  padding-bottom: 4rem;
  position: relative;
}

.about-executiveOfficers::after {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  background-color: #f4f4f4;
  content: "";
  display: block;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
}

@media (min-width: 768px) {
  .about-executiveOfficers::after {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

.about-executiveOfficers .ae-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 1.5rem -20px;
  width: 990px;
  padding: 0px 30px;
}

.about-executiveOfficers .ae-listItem {
  margin: 0 2rem 2rem;
  /*width: 190px;/*4+3*/
  width: 220px;/*3+3*/
}
@media (max-width: 768px) {
  .about-executiveOfficers .ae-list {width: auto; flex-wrap: nowrap;}
  .about-executiveOfficers .ae-listItem {margin: 0; width: 100%;}
}

.about-executiveOfficers .ae-listItem > a {
  border: 0.2rem solid transparent;
  border-radius: 50%;
  display: inherit;
  overflow: hidden;
  position: relative;
  transition: all .3s ease;
}

.about-executiveOfficers .ae-listItem > a::before {
  content: "";
  display: block;
  transition: all .3s ease;
  width: 100%;
}

.about-executiveOfficers .ae-listItem > a::before {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.about-executiveOfficers .ae-listItem > a:hover, .about-executiveOfficers .ae-listItem > a.active {
  border-color: #ff355e;
}

.about-executiveOfficers .ae-listItem > a:hover::before, .about-executiveOfficers .ae-listItem > a.active::before {
  background-color: transparent;
}

.about-executiveOfficers .ae-listItem > a.active {
  border-color: #ff355e;
}

.about-executiveOfficers .ae-listItem_object {
  width: 100%;
}
@media (min-width: 768px) {
  .about-executiveOfficers .ae-listItem:first-child:nth-last-child(1), .about-executiveOfficers .ae-listItem:first-child:nth-last-child(2),
  .about-executiveOfficers .ae-listItem:first-child:nth-last-child(2) ~ .ae-listItem, .about-executiveOfficers .ae-listItem:first-child:nth-last-child(3),
  .about-executiveOfficers .ae-listItem:first-child:nth-last-child(3) ~ .ae-listItem, .about-executiveOfficers .ae-listItem:first-child:nth-last-child(4),
  .about-executiveOfficers .ae-listItem:first-child:nth-last-child(4) ~ .ae-listItem, .about-executiveOfficers .ae-listItem:first-child:nth-last-child(5),
  .about-executiveOfficers .ae-listItem:first-child:nth-last-child(5) ~ .ae-listItem {
    width: 25%;
  }
}
.about-executiveOfficers .ae-caption_title {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .about-executiveOfficers .ae-caption_title {
    font-size: 2.4rem;
  }
}

.about-executiveOfficers .ae-caption_title span {
  font-size: 1.2rem;
  color: #ff355e;
  display: inline-block;
  font-weight: 400;
  margin-left: 5rem;
  padding-left: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .about-executiveOfficers .ae-caption_title span {
    font-size: 1.8rem;
  }
}

.about-executiveOfficers .ae-caption_title span::before {
  background-color: #ff355e;
  content: "";
  display: block;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.3rem;
}

.about-executiveOfficers .ae-caption:not([aria-hidden]):not(:first-child) {
  display: none;
}

@media (max-width: 768px) {
  .about-executiveOfficers .ae-list {
    margin: 0 -1.5rem 4rem;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .about-executiveOfficers .ae-listItem {
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: 5rem;
    padding-left: 5rem;
    min-width: 11.5rem;
  }
  .about-executiveOfficers .ae-caption_title span {
    margin-left: 1rem;
    padding-left: 1rem;
  }
}

/* Histories
-------------------*/
.about-histories {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}

@media (min-width: 768px) {
  .about-histories {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

.about-histories .ah-table {
  width: 100%;
}

.about-histories .ah-table th,
.about-histories .ah-table td {
  padding: 1.5rem 2.5rem 6rem;
}

.about-histories .ah-table th {
  font-size: 1.4rem;
  border-top: 0.1rem solid #f4f4f4;
  border-bottom: 0.1rem solid #f4f4f4;
  color: #ff355e;
  line-height: 1.4;
  padding-right: 2rem;
  padding-left: 5rem;
  text-align: right;
  white-space: nowrap;
  width: 10.15625%;
}

@media (min-width: 768px) {
  .about-histories .ah-table th {
    font-size: 2.4rem;
  }
}

.about-histories .ah-table td {
  background-color: #f4f4f4;
  border-top: 0.1rem solid #fff;
  border-bottom: 0.1rem solid #fff;
}

.about-histories .ah-table_month {
  color: #a0a0a0;
  display: inline-block;
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .about-histories .ah-table tr th,
  .about-histories .ah-table tr td {
    display: block;
    padding: 1rem 1.5rem;
    text-align: left;
    width: 100%;
  }
  .about-histories .ah-table tr th {
    border-top: none;
    border-bottom: none;
  }
  .about-histories .ah-table tr td {
    font-size: 1.3rem;
  }
}

/* Outlines
-------------------*/
.about-outlines .ao-table tr {
  position: relative;
}

.about-outlines .ao-table tr::before {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  background-color: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  width: 150vw;
}

@media (min-width: 768px) {
  .about-outlines .ao-table tr::before {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

.about-outlines .ao-table tr th,
.about-outlines .ao-table tr td {
  padding: 3rem 0;
  position: relative;
}

.about-outlines .ao-table tr th {
  width: 23rem;
}

.about-outlines .ao-table tr:nth-child(odd)::before {
  background-color: #F4F4F4;
}

@media (max-width: 767px) {
  .about-outlines .ao-table tr th,
  .about-outlines .ao-table tr td {
    display: block;
    padding: 2rem 2.5rem;
    width: 100%;
  }
  .about-outlines .ao-table tr th {
    padding-bottom: 0;
  }
  .about-outlines .ao-table tr td {
    padding-top: 0;
  }
}

/* Unique Style of 'Accessmap'
----------------------------------------*/
[class^="accessmap-"] {
  position: relative;
}

/* Locations
-------------------*/
.accessmap-locations {
  margin-bottom: 3.5rem;
  position: relative;
}

.accessmap-locations .al-map {
  position: relative;
  padding-bottom: 14rem;
}

.accessmap-locations .al-map area {
  outline: none;
}

.accessmap-locations .al-caption {
  margin-top: -8rem;
  padding-top: 8rem;
  position: relative;
}

.accessmap-locations .al-caption [id^="js-GoogleMaps"] {
  height: 50rem;
  margin-left: auto;
  width: 100%;
  max-width: 64rem;
}

.accessmap-locations .al-caption .mm-caption .button, .accessmap-locations .al-caption .mm-caption [class*="button-"],
.accessmap-locations .al-caption .mm-cover .button,
.accessmap-locations .al-caption .mm-cover [class*="button-"] {
  background-color: #FFF;
  border-width: 0.2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: absolute;
  bottom: 5rem;
  left: 6rem;
  width: 100%;
  max-width: 32rem;
  z-index: 1;
}

.accessmap-locations .al-caption .mm-caption .button:hover, .accessmap-locations .al-caption .mm-caption [class*="button-"]:hover,
.accessmap-locations .al-caption .mm-cover .button:hover,
.accessmap-locations .al-caption .mm-cover [class*="button-"]:hover {
  background-color: #ff355e;
}

.accessmap-locations .al-caption .mm-caption {
  padding: 4.5rem 0 4.5rem 6rem;
  position: relative;
}

.accessmap-locations .al-caption_title {
  font-size: 1.6rem;
  color: #ff355e;
}

@media (min-width: 768px) {
  .accessmap-locations .al-caption_title {
    font-size: 2.4rem;
  }
}

.accessmap-locations .al-caption::before, .accessmap-locations .al-caption::after {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  background-color: #f4f4f4;
  content: "";
  display: block;
  height: 0.2rem;
  position: absolute;
  left: 0;
  width: 100vw;
}

@media (min-width: 768px) {
  .accessmap-locations .al-caption::before, .accessmap-locations .al-caption::after {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

.accessmap-locations .al-caption::before {
  top: 8rem;
}

.accessmap-locations .al-caption::after {
  bottom: 0;
}

.accessmap-locations .al-caption:not(:last-child) {
  margin-bottom: 20rem;
}

@media (max-width: 991px) {
  .accessmap-locations .al-caption {
    margin-top: -5rem;
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
    padding-top: 5rem;
  }
  .accessmap-locations .al-caption [id^="js-GoogleMaps"] {
    width: 100%;
    max-width: none;
  }
  .accessmap-locations .al-caption .module-media {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .accessmap-locations .al-caption .mm-caption .button, .accessmap-locations .al-caption .mm-caption [class*="button-"],
  .accessmap-locations .al-caption .mm-cover .button,
  .accessmap-locations .al-caption .mm-cover [class*="button-"] {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 29.5rem;
  }
  .accessmap-locations .al-caption .mm-caption .button::after, .accessmap-locations .al-caption .mm-caption [class*="button-"]::after,
  .accessmap-locations .al-caption .mm-cover .button::after,
  .accessmap-locations .al-caption .mm-cover [class*="button-"]::after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.8rem;
    content: "\f105";
    font-weight: 700;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .accessmap-locations .al-caption .mm-caption .button::after, .accessmap-locations .al-caption .mm-caption [class*="button-"]::after,
  .accessmap-locations .al-caption .mm-cover .button::after,
  .accessmap-locations .al-caption .mm-cover [class*="button-"]::after {
    font-size: 1.8rem;
  }
}

@media (max-width: 991px) {
  .accessmap-locations .al-caption .mm-caption {
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
    padding: 2rem 1.5rem;
  }
  .accessmap-locations .al-caption .mm-cover {
    margin: 0;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    padding: 0;
    width: 100%;
  }
  .accessmap-locations .al-caption .mm-cover_fluid {
    width: 100%;
  }
  .accessmap-locations .al-caption .mm-cover_fluid.is-preparation {
    height: 25rem;
    overflow: hidden;
    position: relative;
  }
  .accessmap-locations .al-caption .mm-cover_object {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
  }
  .accessmap-locations .al-caption .mm-cover .button, .accessmap-locations .al-caption .mm-cover [class*="button-"] {
    margin: 5rem auto 8rem;
  }
  .accessmap-locations .al-caption::before {
    top: 5rem;
  }
  .accessmap-locations .al-caption:not(:last-child) {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .accessmap-locations .al-map {
    padding-bottom: 8rem;
  }
  .accessmap-locations .al-caption {
    margin-right: 0;
    margin-left: 0;
  }
  .accessmap-locations .al-caption [id^="js-GoogleMaps"] {
    height: 25rem;
  }
  .accessmap-locations .al-caption .mm-cover {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
    width: calc(100% + 3rem);
  }
}

/* Unique Style of 'Consulting'
----------------------------------------*/
[class^="consulting-"] {
  position: relative;
}

/* Card
-------------------*/
.consulting-card {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
  position: relative;
}

.consulting-card::before {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  background-color: #FFF;
  content: "";
  display: block;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
}

@media (min-width: 768px) {
  .consulting-card::before {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

@media (max-width: 767px) {
  .consulting-card {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }
}

.consulting-card .cc-cover {
  color: #ff355e;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: center;
  width: 34rem;
}

.consulting-card .cc-cover_caption {
  display: block;
  line-height: 2;
  padding-top: 1.5rem;
  text-align: center;
  width: 100%;
}

.consulting-card .cc-caption {
  padding-left: 5rem;
}

.consulting-card .cc-caption_title {
  color: #ff355e;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 767px) {
  .consulting-card .cc-caption {
    padding-left: 0;
  }
  .consulting-card .cc-cover {
    margin-bottom: 3rem;
    width: 100%;
  }
  .consulting-card .cc-cover_caption {
    padding-top: 2rem;
  }
}

/* Lead
-------------------*/
.consulting-lead {
  display: table;
  margin: 18rem auto 0;
  position: relative;
}

@media (max-width: 767px) {
  .consulting-lead {
    margin-top: 10rem;
  }
}

.consulting-lead .cl-title {
  font-size: 1.9rem;
  border: 0.4rem solid #ff355e;
  border-radius: 50%;
  color: #ff355e;
  display: table-cell;
  height: 38rem;
  margin: 0;
  text-align: center;
  vertical-align: middle;
  width: 38rem;
}

@media (min-width: 768px) {
  .consulting-lead .cl-title {
    font-size: 3.4rem;
  }
}

.consulting-lead .cl-title span::before {
  border-color: #ff355e transparent transparent transparent;
  border-style: solid;
  border-width: 1.6rem 1rem 0 1rem;
  content: "";
  display: block;
  height: 0;
  margin: 0.5rem auto;
  width: 0;
}

.consulting-lead .cl-listItem {
  background-color: #ff355e;
  border-radius: 50%;
  color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 20rem;
  line-height: 1.6;
  padding: 3rem 0;
  position: absolute;
  width: 20rem;
}

.consulting-lead .cl-listItem_caption {
  display: block;
  text-align: center;
  width: 100%;
}

.consulting-lead .cl-listItem_caption span {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .consulting-lead .cl-listItem_caption span {
    font-size: 1.2rem;
  }
}

.consulting-lead .cl-listItem:nth-child(1) {
  top: -25%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.consulting-lead .cl-listItem:nth-child(2) {
  right: -35%;
  bottom: 0;
}

.consulting-lead .cl-listItem:nth-child(3) {
  bottom: 0;
  left: -35%;
}

@media (max-width: 767px) {
  .consulting-lead .cl-title {
    height: 21.1rem;
    width: 21.1rem;
  }
  .consulting-lead .cl-title span::before {
    border-width: 0.9rem 0.5rem 0 0.5rem;
  }
  .consulting-lead .cl-listItem {
    height: 11.1rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    width: 11.1rem;
  }
  .consulting-lead .cl-listItem_caption {
    font-size: 1rem;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  .consulting-lead .cl-listItem_caption span {
    display: inline-block;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  .consulting-lead .cl-listItem_object {
    max-width: 4rem;
  }
}

/* Unique Style of 'Product'
----------------------------------------*/
[class^="product-"] {
  position: relative;
}

/* Client
-------------------*/
.product-client {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  background-color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .product-client {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

.product-client .pc-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 0;
}

.product-client .pc-listItem {
  height: 5rem;
  margin-bottom: 5rem;
  width: 20%;
}

.product-client .pc-listItem svg,
.product-client .pc-listItem image {
  width: 100%;
}

.product-client .pc-listItem image:hover {
  -webkit-filter: none;
          filter: none;
}

@media (max-width: 767px) {
  .product-client .pc-listItem {
    margin-bottom: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    width: 33.3333333333%;
  }
}

/* Data
-------------------*/
.product-data .pd-list {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .product-data .pd-list {
    font-size: 3rem;
  }
}

.product-data .pd-listItem {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 0;
  position: relative;
}

.product-data .pd-listItem img {
  margin-right: 6rem;
}

.product-data .pd-listItem strong {
  font-size: 1.4rem;
  color: #ff355e;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .product-data .pd-listItem strong {
    font-size: 1.8rem;
  }
}

.product-data .pd-listItem::after {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  background-color: #f6f6f6;
  content: "";
  display: block;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
}

@media (min-width: 768px) {
  .product-data .pd-listItem::after {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

.product-data .pd-listItem:first-child::before {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  background-color: #f6f6f6;
  content: "";
  display: block;
  height: 0.1rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
}

@media (min-width: 768px) {
  .product-data .pd-listItem:first-child::before {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

@media (max-width: 767px) {
  .product-data .pd-listItem {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .product-data .pd-listItem::after {
    height: 0.2rem;
  }
  .product-data .pd-listItem img {
    margin: 0 auto;
  }
  .product-data .pd-listItem strong {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
  }
  .product-data .pd-listItem:first-child::before {
    height: calc-rme(2);
  }
  .product-data .pd-list ~ * {
    font-size: 2.9333333333vw;
    text-align: center;
  }
}

/* Unique Style of 'Recruit'
----------------------------------------*/
[class^="recruit-"] {
  position: relative;
}

/* Section
-------------------*/
.layout-main .lm-section[data-section="recruit-benefit"] {
  background-image: url(/assets/img/unique/recruit/section-benefit_texture.jpg);
  min-height: 68rem;
}

/* FAQ
-------------------*/
@media (max-width: 767px) {
  .recruit-faq {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
}

.recruit-faq .rf-question {
  background-color: #F6F6F6;
  margin-bottom: 0.2rem;
}

.recruit-faq .rf-question_button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  font-weight: 700;
  text-align: left;
  outline: none;
  padding: 1.8rem 3.5rem;
  position: relative;
  width: 100%;
}

.recruit-faq .rf-question_button::before {
  content: "Q. ";
}

.recruit-faq .rf-question_button::after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ff355e;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.recruit-faq .rf-question_button[aria-expanded="false"]::after {
  content: "\f078";
}

.recruit-faq .rf-question_button[aria-expanded="true"]::after {
  content: "\f077";
}

.recruit-faq .rf-answer {
  padding: 0 3.5rem;
}

.recruit-faq .rf-answer::before, .recruit-faq .rf-answer::after {
  content: "";
  display: block;
  height: 3rem;
  width: 100%;
}

.recruit-faq .rf-answer p:first-child::before {
  content: "A. ";
}

@media (max-width: 767px) {
  .recruit-faq .rf-question_button {
    padding-left: 1.5rem;
  }
  .recruit-faq .rf-question_button::after {
    right: 1.5rem;
  }
  .recruit-faq .rf-answer {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .recruit-faq .rf-answer::before, .recruit-faq .rf-answer::after {
    height: 2rem;
  }
}

/* Flow
-------------------*/
.recruit-flow {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  background-color: #F4F4F4;
  padding: 7rem 0;
}

@media (min-width: 768px) {
  .recruit-flow {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

@media (max-width: 767px) {
  .recruit-flow {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .recruit-flow .cg-column:last-child .rf-card {
    margin-bottom: 0;
  }
}

.recruit-flow .rf-title {
  font-size: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .recruit-flow .rf-title {
    font-size: 4rem;
  }
}

.recruit-flow .rf-card {
  font-size: 1.3rem;
  background-color: #FFF;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .recruit-flow .rf-card {
    font-size: 1.6rem;
  }
}

.recruit-flow .rf-card_title {
  font-size: 1.3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .recruit-flow .rf-card_title {
    font-size: 1.8rem;
  }
}

.recruit-flow .rf-card_title span {
  font-size: 1.4rem;
  color: #ff355e;
  display: inline-block;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .recruit-flow .rf-card_title span {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .recruit-flow .rf-title {
    margin-bottom: 4rem;
  }
  .recruit-flow .rf-card {
    margin: 0 -1.5rem 4rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    width: calc(100% + 3rem);
  }
  .recruit-flow .rf-card_title {
    margin-bottom: 2rem;
    width: 100%;
  }
  .recruit-flow .rf-card_title span {
    margin-bottom: 1rem;
  }
}

/* Guidelines
-------------------*/
.recruit-guidelines {
  margin-bottom: 10rem;
}

.recruit-guidelines .lm-section_continue {
  margin-top: 5rem;
}

.recruit-guidelines .rg-table tr {
  position: relative;
}

.recruit-guidelines .rg-table tr::before {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  background-color: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  width: 150vw;
}

@media (min-width: 768px) {
  .recruit-guidelines .rg-table tr::before {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

.recruit-guidelines .rg-table tr th,
.recruit-guidelines .rg-table tr td {
  padding: 3rem 0;
  position: relative;
}

.recruit-guidelines .rg-table tr th {
  width: 23rem;
}

.recruit-guidelines .rg-table tr:nth-child(odd)::before {
  background-color: #F4F4F4;
}

@media (max-width: 767px) {
  .recruit-guidelines .rg-table tr th,
  .recruit-guidelines .rg-table tr td {
    display: block;
    padding: 1rem 2.5rem;
    width: 100%;
  }
  .recruit-guidelines .rg-table tr th {
    font-size: 1.4rem;
    padding-bottom: 0;
  }
  .recruit-guidelines .rg-table tr td {
    padding-top: 0;
  }
}

/* Technical Advisor
-------------------*/
.recruit-technicalAdvisor {
  margin-bottom: 7rem;
  padding-bottom: 4rem;
  position: relative;
}

@media (max-width: 768px) {
  .recruit-technicalAdvisor {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
  .home-section {
    padding-bottom: 0;
  }
}

.recruit-technicalAdvisor::after {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  background-color: #f4f4f4;
  content: "";
  display: block;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
}

@media (min-width: 768px) {
  .recruit-technicalAdvisor::after {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

.recruit-technicalAdvisor .rt-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10rem 4rem;
}

.recruit-technicalAdvisor .rt-listItem {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  width: 100%;
}

.recruit-technicalAdvisor .rt-listItem > a {
  border: 0.2rem solid transparent;
  border-radius: 50%;
  display: inherit;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: all .3s ease;
}

.recruit-technicalAdvisor .rt-listItem > a::before {
  content: "";
  display: block;
  transition: all .3s ease;
  width: 100%;
}

.recruit-technicalAdvisor .rt-listItem > a::before {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.recruit-technicalAdvisor .rt-listItem > a:empty {
  background-color: #F6F6F6;
  border-color: transparent;
  height: 100%;
  pointer-events: none;
}

.recruit-technicalAdvisor .rt-listItem > a:empty::before, .recruit-technicalAdvisor .rt-listItem > a:empty::after {
  display: none;
}

.recruit-technicalAdvisor .rt-listItem > a:hover, .recruit-technicalAdvisor .rt-listItem > a.active {
  border-color: #ff355e;
}

.recruit-technicalAdvisor .rt-listItem > a:hover::before, .recruit-technicalAdvisor .rt-listItem > a.active::before {
  background-color: transparent;
}

.recruit-technicalAdvisor .rt-listItem > a.active {
  border-color: #ff355e;
}

.recruit-technicalAdvisor .rt-listItem_object {
  width: 100%;
}

.recruit-technicalAdvisor .rt-listItem:first-child:nth-last-child(1),
.recruit-technicalAdvisor .rt-listItem:first-child:nth-last-child(2),
.recruit-technicalAdvisor .rt-listItem:first-child:nth-last-child(2) ~ .rt-listItem,
.recruit-technicalAdvisor .rt-listItem:first-child:nth-last-child(3),
.recruit-technicalAdvisor .rt-listItem:first-child:nth-last-child(3) ~ .rt-listItem,
.recruit-technicalAdvisor .rt-listItem:first-child:nth-last-child(4),
.recruit-technicalAdvisor .rt-listItem:first-child:nth-last-child(4) ~ .rt-listItem,
.recruit-technicalAdvisor .rt-listItem:first-child:nth-last-child(5),
.recruit-technicalAdvisor .rt-listItem:first-child:nth-last-child(5) ~ .rt-listItem {
  width: 25%;
}

.recruit-technicalAdvisor .rt-caption_title {
  font-size: 1.4rem;
  text-align: left;
}

@media (min-width: 768px) {
  .recruit-technicalAdvisor .rt-caption_title {
    font-size: 2.4rem;
  }
}

.recruit-technicalAdvisor .rt-caption_title a {
  font-size: 1.4rem;
  display: inline-block;
  font-weight: 400;
  margin-left: 1rem;
  padding-left: 0.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .recruit-technicalAdvisor .rt-caption_title a {
    font-size: 1.8rem;
  }
}

.recruit-technicalAdvisor .rt-caption_title span {
  font-size: 1.4rem;
  color: #ff355e;
  display: inline-block;
  font-weight: 400;
  margin-left: 5rem;
  padding-left: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .recruit-technicalAdvisor .rt-caption_title span {
    font-size: 1.8rem;
  }
}

.recruit-technicalAdvisor .rt-caption_title span::before {
  background-color: #ff355e;
  content: "";
  display: block;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.3rem;
}

.recruit-technicalAdvisor .rt-caption:not([aria-hidden]):not(:first-child) {
  display: none;
}

@media (max-width: 1199px) {
  .recruit-technicalAdvisor .rt-list {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
    overflow-x: auto;
  }
  .recruit-technicalAdvisor .rt-listItem {
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    min-width: 11.5rem;
  }
  .recruit-technicalAdvisor .rt-caption_title span {
    margin-left: 1rem;
    padding-left: 1rem;
  }
}

/* Technologies
-------------------*/
.recruit-technologies {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@media (min-width: 768px) {
  .recruit-technologies {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }
}

.recruit-technologies > .container {
  display: inherit;
}

@media (max-width: 767px) {
  .recruit-technologies > .container {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.recruit-technologies .rt-item {
  border-top: 0.2rem solid #f6f6f6;
  border-bottom: 0.2rem solid #f6f6f6;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 17rem;
  margin-bottom: 5rem;
  position: relative;
  width: 100%;
}

.recruit-technologies .rt-item:first-child {
  background-color: #f6f6f6;
}

.recruit-technologies .rt-item:first-child::before {
  border-color: transparent transparent transparent #f6f6f6;
  border-style: solid;
  border-width: 8rem 0 8rem 6rem;
  height: 0;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
}

.recruit-technologies .rt-column {
  border-right: 0.2rem solid #f6f6f6;
  border-left: 0.2rem solid transparent;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.recruit-technologies .rt-column_title {
  text-align: center;
}

.recruit-technologies .rt-column_listItem:not(:last-child) {
  margin-bottom: 1rem;
}

.recruit-technologies .rt-column:first-child {
  border-left-color: #f6f6f6;
}

@media (max-width: 767px) {
  .recruit-technologies .rt-item {
    height: 8.5rem;
    margin-bottom: 2.5rem;
  }
  .recruit-technologies .rt-item:first-child {
    width: calc(100% - 3rem);
  }
  .recruit-technologies .rt-item:first-child::before {
    border-width: 4.5rem 0 4.5rem 3rem;
    right: -3rem;
  }
  .recruit-technologies .rt-item:first-child .rt-item_object {
    width: 8.8rem;
  }
  .recruit-technologies .rt-item:last-child {
    padding-left: 3rem;
  }
  .recruit-technologies .rt-item:last-child .rt-item_object {
    width: 12.5rem;
  }
  .recruit-technologies .rt-column {
    border: none;
    border-top: 0.2rem solid #f6f6f6;
    border-bottom: 0.2rem solid transparent;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .recruit-technologies .rt-column_title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    width: 100%;
  }
  .recruit-technologies .rt-column_list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .recruit-technologies .rt-column_listItem, .recruit-technologies .rt-column_listItem:not(:last-child) {
    margin-bottom: 0;
  }
  .recruit-technologies .rt-column_listItem {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .recruit-technologies .rt-column:last-child {
    border-bottom-color: #f6f6f6;
  }
}

.interview {
  display: flex;
  flex-flow: wrap;
}
.interview-wrapper {
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-font-smoothing: antialiased;
  color: #45494B;
  min-width: 240px;
  max-width: 460px;
  position: relative;
  margin-bottom: 30px;
}
.interview-wrapper:first-child,
.interview-wrapper:nth-child(3) {
    margin-right: 30px;
}

.interview-header {
  padding: 14px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  min-height: 140px;
}
.interview-header span {
  display: block;
  color: #6A6E71;
  font-size: 14px;
  padding-top: 10px;
  font-weight: normal;
}
.interview-image-cover {
    width: 100%;
    height: 156px;
}
.interview-image-cover.oe {
  background: url(/assets/img/unique/recruit/engineer/interview_oe.jpg) no-repeat center center;
  background-size: cover;
  background-position: center center;
}
.interview-image-cover.nakamura {
  background: url(/assets/img/unique/recruit/engineer/interview_nakamura.jpg) no-repeat center center;
  background-size: cover;
  background-position: center center;
}
.interview-image-cover.shibutani {
  background: url(/assets/img/unique/recruit/engineer/interview_shibutani.jpg) no-repeat center center;
  background-size: cover;
  background-position: center center;
}
.interview-image-cover.tarumi {
  background: url(/assets/img/unique/recruit/engineer/interview_tarumi.jpg) no-repeat center center;
  background-size: cover;
  background-position: center center;
}
.interview-image-cover.kadota {
  background: url(/assets/img/unique/recruit/kadota.jpg) no-repeat center center;
  background-size: cover;
  background-position: center center;
}
.interview-image-cover.tsukihara2 {
  background: url(/assets/img/unique/recruit/tsukihara.jpg) no-repeat center center;
  background-size: cover;
  background-position: center center;
}
.interview-image-cover.arai {
  background: url(/assets/img/unique/recruit/arai.jpg) no-repeat center center;
  background-size: cover;
  background-position: center center;
}
.interview-image-cover.sugo {
  background: url(/assets/img/unique/recruit/sugo.jpg) no-repeat center center;
  background-size: cover;
  background-position: center center;
}

.interview-image-cover.imasato {
  background: url(/assets/img/unique/recruit/imasato01.jpg) no-repeat center center;
  background-size: cover;
  background-position: center center;
}
.interview-image-cover.kakuda {
  background: url(/assets/img/unique/recruit/kakuda02.jpg) no-repeat center center;
  background-size: cover;
  background-position: center center;
}
.interview-image-cover.kudo {
  background: url(/assets/img/unique/recruit/kudo.jpg) no-repeat center center;
  background-size: cover;
  background-position: center center;
}
.interview-image-cover.hirai {
  background: url(/assets/img/unique/recruit/hirai.jpg) no-repeat center center;
  background-size: cover;
  background-position: center center;
}

.interview-footer {
  display:flex;
  justify-content:space-between;
  padding: 10px;
}
.interview-footer .wantedly img {
  width: 65px;
}
.interview-button.flex {
  display:flex;
  justify-content:space-between;
  width: 194px;
}
.interview-button a {
  text-decoration: none;
  background: #00A4BB;
  font-size: 12px;
  font-weight: 600;
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
  color: #fff;
  display: block;
  width: 92px;
  border-radius: 2px;
}
.interview-header a {
  text-decoration: none;
  color: #45494B;
}
.interview-button a:hover {
    background: #80c357;
  }
@media (max-width: 768px) {
  .interview-wrapper {
    width: 100%;
    max-width: 100%;
    margin-right: 0 !important;
  }
}

.biz-img {
  width: 100%;
  margin: 32px auto 0;
}
@media (max-width: 768px) {
  .biz-img {
    margin: 46px auto 0;
  }
}
.biz-img > picture {
  width: 100%;
}
