@charset "utf-8";
html{
  scrollbar-gutter:stable;
}
.is-fixed{
  overflow: hidden;
  height:100vh;
}
.mbs-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  overflow: hidden;
}
main{
  background:#383f40;
}
html.is-mbs-modal {
  overflow-y: hidden;
}
html.is-mbs-modal body {
  overflow: hidden;
}
#mbs-mv-loading {
  background-color: rgb(0 0 0 / 0.8);
  color: #fff;
  display: grid;
  height: 100%;
  inset: 0;
  opacity: 1;
  place-items: center;
  position: absolute;
  width: 100%;
  z-index: 9999;
}
.mbs-spinner {
  animation: mbs-spin 1s linear infinite;
  border: solid 5px #f3f3f3;
  border-top: solid 5px #3498db;
  border-radius: 50%;
  height: 50px;
  width: 50px;
}
@keyframes mbs-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* 01_MBS */
#mbs-mv {
  position: relative;
  /* セクション１のみヘッダー表示されているため src\animations\scene01.js で動的に高さ調整 */
  min-height: 100vh;
  height: 100vh !important;
}
.mv-bgimage {
  position: absolute;
  width: 100vw;
  /* height:100vh; */
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: url(/-/media/corporate/company/brand/story/mv_bg_01-sp.ashx) center bottom no-repeat;
  background-size: cover;
  z-index: 1;
}
#mbs-mv .mv-ovlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.mv-cnt {
  position: relative;
  padding: 30% 30px 50%;
  text-align: center;
  z-index: 30;
}
.mv-title {
  opacity: 0;
}
.mv-text {
  color: #fff;
  margin-top: 40px;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-shadow: 0px 0px 8px 0px #000000A6;
  opacity: 0;
  text-align: left;
  
}
html[lang=ja-JP] .mv-text-dash{
  font-family: 'Noto Sans JP', sans-serif;
}
html[lang=zh-CN] .mv-text-dash{
  font-family: 'Noto Sans SC', '微软雅黑', sans-serif;
}
@media (min-width: 768px) {
  #mbs-mv {
    position: relative;
  }

  #mbs-mv .mv-bgimage {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: url(/-/media/corporate/company/brand/story/mv_bg_01.ashx) no-repeat;
    background-size: cover;
    background-position: center bottom;
  }


  #mbs-mv .mv-cnt {
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    z-index: 30;

    padding: 0;
  }

  .mv-title {
    width: 80%;
    max-width: 545px;
    margin: 0 auto 20px;
  }

  .mv-title img {
    display: block;
    width: 100%;
  }

  .mv-text {
    font-size: 2rem;
    line-height: 2;
    text-shadow: none;
    margin: 0 20px;
  }
}
@media (min-width: 1025px) {
  #mbs-mv {
    position: relative;
    /* セクション１のみヘッダー表示されているため高さ調整 */
    min-height: 100vh;
  }
}
/* scroll-guide */
.scroll-guide {
  position: fixed;
  right: 2%;
  bottom: calc(20% + 50px);
  writing-mode: vertical-rl;
  z-index: 100;
  color: #fff;
  font-family:FSEmeric;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.06em;
}
.scroll-guide-arrow {
  text-shadow: 3px 5px 4px #00000040;
}
.scroll-guide-arrow::before {
animation: scroll-guide01 2s infinite;
  background-color: #fff;
  bottom: -75px;
  content: "";
  height: 62px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
.scroll-guide-arrow::after {
animation: scroll-guide02 2s infinite;
  bottom: -75px;
  content: "";
  margin: auto;
  position: absolute;
  right: 9px;
  width: 1px;
  height: 15px;
  background-color: #fff;
  transform: rotate(-330deg);
}
@media (min-width: 768px) {
  .scroll-guide {
    font-size: 2rem;
  }
  .scroll-guide-arrow::after {
    right: 13px;
  }
}
@keyframes scroll-guide01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}
@keyframes scroll-guide02 {
  0% {
    height: 0;
    bottom: -60px;
  }
  40% {
    height: 0;
    bottom: -60px;
  }
  100% {
    height: 15px;
    bottom: -75px;
  }
}
/* 02_HISTORY */
:root {
  --base-width: 1512;
  --base-height: 832;
  --scene-width: 7560;
}
#mbs-history {
  background: url(/-/media/corporate/company/brand/story/history/history_bg.ashx) left top repeat;
}
.scroll-container {
  position: relative;
}
.sticky-wrap {
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  overflow: hidden;
}
.horizontal-scroll {
  position: relative;
  top: 0;
  left: 0;
  /* width: 2150vw; */ /*-20のとき*/
  width: 1075vw;  /*-40のとき*/
  height: 100vh;
  min-height: 585px;
  min-width: 7560px;
  will-change: transform;
  overflow: visible;
}
.scroll-contents_position {
  position: absolute;
  /*width: 550vw;*//*-10のとき*/
  width: 100vw;
  height: 100vh;
  z-index: 1;
  top: 0;
  left: 0;
}
.scroll-contents_support-item {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 2;
}
.scroll-contents_support-item_back {
  position: relative;
  width: 550vw;
  height: 100vh;
  z-index: 1;
}
.support-item_intermediate {
  z-index: 2;
}
.support-item_front {
  z-index: 3;
}
.support-item_floor {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: inherit;
  height: calc(100% * (103 / var(--base-height)));
  background: #E8E8E8;
  z-index: 2;
}
.support-item_lights {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/-/media/corporate/company/brand/story/history/light.ashx) left top repeat-x;
  background-size: 14.2% auto;
  z-index: 3;
}
.support-item_handrail {
  display: block;
  position: absolute;
  left: 0;
  bottom: calc(100% * (102 / var(--base-height)));
  width: 100%;
  height: calc(100% * (64 / var(--base-height)));
  background: url(/-/media/corporate/company/brand/story/history/handrail.ashx) left bottom repeat-x;
  background-size: auto 100%;
  z-index: 5;
}
.support-item_gate {
  display: block;
  position: absolute;
  right: calc(100% * (810 / var(--scene-width)));
  bottom: calc(100% * (103 / var(--base-height)));
  width: calc(100% * (266 / var(--scene-width)));
  height: calc(100% * (445 / var(--base-height)));
  background: url(/-/media/corporate/company/brand/story/history/gate_01.ashx) center bottom no-repeat;
  background-size: contain;
  z-index: 4;
}
.support-item_chair {
  display: block;
  position: absolute;
  width: calc(100% * (130 / var(--base-width)));
  height: 74px;
  bottom: calc(100% * (88 / var(--base-height)));
  left: calc(100% * (865 / var(--scene-width)));
  background: url(/-/media/corporate/company/brand/story/history/chair.ashx) center bottom no-repeat;
  background-size: contain;
  z-index: 6;
}
.support-item_chair:last-of-type {
  left: auto;
  left: 27.23%;
}
.scroll-contents_scenes-wrap {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.scroll-scene01,
.scroll-scene02,
.scroll-scene03,
.scroll-scene04,
.scroll-scene05 {
  position: relative;
  display: block;
  width: 100vw;
  height: 100vh;
  min-width: 1512px;
}
.support-item_products {
  position: absolute;
  display: inline-block;
}
.support-item_product01 {
  width: calc(100% * (383 / var(--base-width)));
  height: calc(100% * (250 / var(--base-height)));
  top: calc(100% * (366 / var(--base-height)));
  left: calc(100% * (1129 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/product_01.ashx) center center no-repeat;
  background-size: contain;
}
.support-item_product02 {
  width: calc(100% * (188 / var(--base-width)));
  height: calc(100% * (244 / var(--base-height)));
  top: calc(100% * (304 / var(--base-height)));
  left: calc(100% * (197 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/product_02.ashx) center center no-repeat;
  background-size: contain;
}
.support-item_product03 {
  width: calc(100% * (225 / var(--base-width)));
  height: calc(100% * (142 / var(--base-height)));
  top: calc(100% * (446 / var(--base-height)));
  left: calc(100% * (393 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/product_03.ashx) center center no-repeat;
  background-size: contain;
}
.support-item_product04 {
  width: calc(100% * (110 / var(--base-width)));
  height: calc(100% * (208 / var(--base-height)));
  top: calc(100% * (206 / var(--base-height)));
  right: calc(100% * (-30 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/product_04.ashx) center center no-repeat;
  background-size: contain;
}
.support-item_product05 {
  width: calc(100% * (218 / var(--base-width)));
  height: calc(100% * (146 / var(--base-height)));
  top: calc(100% * (298 / var(--base-height)));
  left: calc(100% * (128 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/product_05.ashx) center center no-repeat;
  background-size: contain;
}
.support-item_product06 {
  width: calc(100% * (223 / var(--base-width)));
  height: calc(100% * (141 / var(--base-height)));
  top: calc(100% * (416 / var(--base-height)));
  right: calc(100% * (240 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/product_06.ashx) center center no-repeat;
  background-size: contain;
}
.support-item_product07 {
  width: calc(100% * (337 / var(--base-width)));
  height: calc(100% * (245 / var(--base-height)));
  top: calc(100% * (275 / var(--base-height)));
  left: calc(100% * (197 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/product_07.ashx) center center no-repeat;
  background-size: contain;
}
.mbs-history-img {
  position: absolute;
  display: inline-block;
}
.mbs-history-photo {
  max-width: 100%;
}
.mbs-history-img01 {
  width: calc(100% * (337 / var(--base-width)));
  height: calc(100% * (245 / var(--base-height)));
  top: calc(100% * (316 / var(--base-height)));
  left: calc(100% * (333 / var(--base-width)));
  z-index: 2;
}
.mbs-history-img02 {
  width: calc(100% * (153 / var(--base-width)));
  height: calc(100% * (148 / var(--base-height)));
  top: calc(100% * (466 / var(--base-height)));
  left: calc(100% * (198 / var(--base-width)));
}
.mbs-history-img03 {
  width: calc(100% * (298 / var(--base-width)));
  height: calc(100% * (198 / var(--base-height)));
  top: calc(100% * (391 / var(--base-height)));
  right: calc(100% * (160 / var(--base-width)));
}
.mbs-history-img04 {
  width: calc(100% * (298 / var(--base-width)));
  height: calc(100% * (198 / var(--base-height)));
  top: calc(100% * (444 / var(--base-height)));
  left: calc(100% * (344 / var(--base-width)));
}
.mbs-history-img05 {
  width: calc(100% * (298 / var(--base-width)));
  height: calc(100% * (198 / var(--base-height)));
  top: calc(100% * (440 / var(--base-height)));
  right: calc(100% * (-76 / var(--base-width)));
  z-index: 10;
}
.mbs-history-img06 {
  width: calc(100% * (341 / var(--base-width)));
  height: calc(100% * (236 / var(--base-height)));
  top: calc(100% * (276 / var(--base-height)));
  left: calc(100% * (22 / var(--base-width)));
}
.mbs-history-img07 {
  width: calc(100% * (341 / var(--base-width)));
  height: calc(100% * (241 / var(--base-height)));
  top: calc(100% * (426 / var(--base-height)));
  right: calc(100% * (-30 / var(--base-width)));
}
.mbs-history-img08 {
  width: calc(100% * (216 / var(--base-width)));
  height: calc(100% * (144 / var(--base-height)));
  top: calc(100% * (470 / var(--base-height)));
  right: calc(100% * (264 / var(--base-width)));
  z-index: 5;
}
.mbs-history-img09 {
  width: calc(100% * (237 / var(--base-width)));
  height: calc(100% * (158 / var(--base-height)));
  top: calc(100% * (357 / var(--base-height)));
  right: calc(100% * (92 / var(--base-width)));
}
.support-item_others {
  position: absolute;
  display: inline-block;
}
.support-item_people01 {
  width: calc(100% * (189 / var(--base-width)));
  height: calc(100% * (274 / var(--base-height)));
  bottom: calc(100% * (50 / var(--base-height)));
  left: calc(100% * (50 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/otherpeople_01.ashx) center center no-repeat;
  background-size: contain;
  max-width: 189px;
}
.scroll-scene04 .support-item_people01 {
  left: calc(100% * (140 / var(--base-width)));
  bottom: calc(100% * (31 / var(--base-height)));
}
.scroll-scene05 .support-item_people01 {
  left: calc(100% * (324 / var(--base-width)));
  left: calc(100% * (100 / var(--base-width)));
  bottom: calc(100% * (31 / var(--base-height)));
}
.support-item_people02 {
  width: calc(100% * (155 / var(--base-width)));
  height: calc(100% * (244 / var(--base-height)));
  bottom: calc(100% * (22 / var(--base-height)));
  right: calc(100% * (211 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/otherpeople_02.ashx) center center no-repeat;
  background-size: contain;
  max-width:155px;
}
.scroll-scene04 .support-item_people02 {
  right: calc(100% * (247 / var(--base-width)));
  bottom: calc(100% * (22 / var(--base-height)));
}
.scroll-scene05 .support-item_people02 {
  right: calc(100% * (260 / var(--base-width)));
  bottom: calc(100% * (22 / var(--base-height)));
}
.support-item_people03 {
  width: calc(100% * (103 / var(--base-width)));
  height: calc(100% * (215 / var(--base-height)));
  bottom: calc(100% * (58 / var(--base-height)));
  left: calc(100% * (446 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/otherpeople_03.ashx) center center no-repeat;
  background-size: contain;
  max-width:103px;
}
.scroll-scene05 .support-item_people03 {
  bottom: calc(100% * (58 / var(--base-height)));
  left: calc(100% * (556 / var(--base-width)));
}
.support-item_people04 {
  width: calc(100% * (96 / var(--base-width)));
  height: calc(100% * (239 / var(--base-height)));
  bottom: calc(100% * (53 / var(--base-height)));
  right: calc(100% * (493 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/otherpeople_04.ashx) center center no-repeat;
  background-size: contain;
  max-width: 96px;
}
.scroll-scene05 .support-item_people04 {
  bottom: calc(100% * (56 / var(--base-height)));
  right: calc(100% * (508 / var(--base-width)));
}
.support-item_people05 {
  width: calc(100% * (113 / var(--base-width)));
  height: calc(100% * (244 / var(--base-height)));
  bottom: calc(100% * (34 / var(--base-height)));
  left: calc(100% * (591 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/otherpeople_05.ashx) center center no-repeat;
  background-size: contain;
  max-width: 113px;
}
.support-item_people06 {
  width: calc(100% * (132 / var(--base-width)));
  height: calc(100% * (256 / var(--base-height)));
  bottom: calc(100% * (14 / var(--base-height)));
  right: calc(100% * (87 / var(--base-width)));
  background: url(/-/media/corporate/company/brand/story/history/otherpeople_06.ashx) center center no-repeat;
  background-size: contain;
  max-width: 132px;
}
/*fix-contents ----------------------------------------*/
.mbs-history-fix-contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  min-height: 585px;
}
.fix-contents-scene-wrap {
  position: relative;
  display: flex;
  width: 100vw;
  height: 100vh;
}
.fix-contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: center;
}
.fix-contents_position-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 11;
}
.fix-contents_mainchara {
  position: absolute;
  left:0;
  right:0;
  bottom: calc(100% * (12 / var(--base-height)));
  width: calc(100% * (174 / var(--base-width)));
  height: calc(100% * (302 / var(--base-height)));
  min-width: 161px;
  margin: auto;
}
.fix-contents_mainchara .mainchara {
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;

}
.fix-contents_mainchara .mainchara_patterns {
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: auto;
  font-size: 0;

  /* デフォルト値 */
  opacity: 0;
}
.fix-contents_mainchara .mainchara-img {
  width: auto;
  height: 100%;
}
.mainchara_scene01 {
  opacity: 1;
}
.mainchara_scene02 {
  opacity: 1;
}
.mainchara_scene03 {
  opacity: 1;
}
.mainchara_scene04 {
  opacity: 1;
}
.mainchara_scene05 {
  opacity: 1;
}
/*scene text ----------------------------------------*/
.mbs-history-title {
  position: absolute;
  top: 8.1%;
  left: 10.3%;
  color: #222222;
  font-weight: bold;
  font-size: 5.6rem;
  line-height: 1.6;
  opacity: 0;
}
html[lang=en] .mbs-history-title,
  html[lang=en-US] .mbs-history-title,
  html[lang=en-GB] .mbs-history-title,
  html[lang=en-SG] .mbs-history-title,
  html[lang=ko-KR] .mbs-history-title {
    line-height: 1.4;
  }
.mbs-history-text {
  position: absolute;
  top: 9.3%;
  right: 10.3%;
  color: #222222;
  font-size: 1.8rem;
  width: 48%;
  opacity: 0;
  text-shadow: 1px 1px 1px #ffffff;
}
.mbs-history-text_line{
  line-height: 2;
}
@media screen and (max-width: 1275px) and (min-width:768px){
  .horizontal-scroll {
    position: relative;
    top: 0;
    left: 0;
    width:13600px;
    height: 100vh;
    min-height: 585px;
    will-change: transform;
    overflow: visible;
  }
  
  .scroll-contents_position {
    position: absolute;
    width:100vw;
    height: 100vh;
    z-index: 1;
    top: 0;
    left: 0;
  }
  
  .scroll-contents_support-item {
    position: relative;
    width:100vw;
    height: 100vh;
    z-index: 2;
  }
  
  .scroll-contents_support-item_back {
    position: relative;
    width: 13600px;
    height: 100vh;
    z-index: 1;
  }
  
    /*写真*/
    .scroll-contents_scenes-wrap{
      width:13000px;
    }
    /*人*/
    .support-item_front{
      width:6200px;
    }
  }
@media screen and (max-width: 1275px) {
  .support-item_gate{
   right: calc(100% * (4120 / var(--scene-width)));
   bottom: calc(100% * (103 / var(--base-height)));
   width: calc(70% * (266 / var(--scene-width)));
   height: calc(70% * (445 / var(--base-height)));
  }

  .mbs-history-img01 {
    top: calc(100% * (405 / var(--base-height)));
  }

  .mbs-history-img02 {
    top: calc(100% * (500 / var(--base-height)));
  }

  .mbs-history-img03 {
    top: calc(100% * (451 / var(--base-height)));
  }

  .mbs-history-img04 {
    top: calc(100% * (464 / var(--base-height)));
  }

  .mbs-history-img05 {
    top: calc(100% * (536 / var(--base-height)));
  }

  .mbs-history-img06 {
    top: calc(100% * (422 / var(--base-height)));
  }

  .mbs-history-img07 {
    top: calc(100% * (446 / var(--base-height)));
  }

  .mbs-history-img08 {
    top: calc(100% * (430 / var(--base-height)));
  }

  .mbs-history-img09 {
    top: calc(100% * (357 / var(--base-height)));
  }

  .support-item_product01 {
    width: calc(100% * (241 / var(--base-width)));
    height: calc(100% * (250 / var(--base-height)));
    top: calc(100% * (366 / var(--base-height)));
    left: calc(100% * (1129 / var(--base-width)));
  }

  .support-item_product02 {
    width: calc(100% * (118 / var(--base-width)));
    height: calc(100% * (244 / var(--base-height)));
    top: calc(100% * (384 / var(--base-height)));
    left: calc(100% * (197 / var(--base-width)));
  }

  .support-item_product03 {
    width: calc(100% * (132 / var(--base-width)));
    height: calc(100% * (142 / var(--base-height)));
    top: calc(100% * (496 / var(--base-height)));
    left: calc(100% * (332 / var(--base-width)));
  }

  .support-item_product04 {
    width: calc(100% * (68 / var(--base-width)));
    height: calc(100% * (208 / var(--base-height)));
    top: calc(100% * (376 / var(--base-height)));
    right: calc(100% * (-30 / var(--base-width)));
  }

  .support-item_product05 {
    width: calc(100% * (138 / var(--base-width)));
    height: calc(100% * (146 / var(--base-height)));
    top: calc(100% * (428 / var(--base-height)));
    left: calc(100% * (128 / var(--base-width)));
  }

  .support-item_product06 {
    width: calc(100% * (140 / var(--base-width)));
    height: calc(100% * (141 / var(--base-height)));
    top: calc(100% * (466 / var(--base-height)));
    right: calc(100% * (240 / var(--base-width)));
  }

  .support-item_product07 {
    width: calc(100% * (207 / var(--base-width)));
    height: calc(100% * (245 / var(--base-height)));
    top: calc(100% * (355 / var(--base-height)));
    left: calc(100% * (197 / var(--base-width)));
  }

  .support-item_people01 {
    bottom: calc(100% * (35 / var(--base-height)));
  }

  .scroll-scene04 .support-item_people01 {
    bottom: calc(100% * (31 / var(--base-height)));
  }

  /* sectionサイズ以下の場合、タイトル・テキスト配置を調整 */
  .mbs-history-title {
    top: 5%;
  }
  html[lang=en] .mbs-history-title,
  html[lang=en-US] .mbs-history-title,
  html[lang=en-GB] .mbs-history-title,
  html[lang=en-SG] .mbs-history-title,
  html[lang=ko-KR] .mbs-history-title {
    top: 8.1%;
  }

  .mbs-history-text {
    top: 16%;
    left: 10.3%;
    width: 80%;
    max-width: none;
  }
  .mbs-history-text_line{
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  html[lang=en] .mbs-history-text,
  html[lang=en-US] .mbs-history-text,
  html[lang=en-GB] .mbs-history-text,
  html[lang=en-SG] .mbs-history-text,
  html[lang=ko-KR] .mbs-history-text {
        top: 9.3%;
        left: auto;
    right: 10.3%;
    width: 48%;
  }
}
@media screen and (max-width: 1100px) {
  .mbs-history-title-br {
    display: none;
  }

  html[lang=en] .mbs-history-title,
  html[lang=en-US] .mbs-history-title,
  html[lang=en-GB] .mbs-history-title,
  html[lang=en-SG] .mbs-history-title,
  html[lang=ko-KR] .mbs-history-title {
    line-height: 1.2;
    padding:0 20px 0 0;
  }
  html[lang=en] .mbs-history-text,
  html[lang=en-US] .mbs-history-text,
  html[lang=en-GB] .mbs-history-text,
  html[lang=en-SG] .mbs-history-text,
  html[lang=ko-KR] .mbs-history-text {
    top: 23%;
    left: 10.3%;
    width: 80%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  

  .horizontal-scroll {
    position: relative;
    top: 0;
    left: 0;
    width:36800px;
    height: 100vh;
    min-height: 585px;
    will-change: transform;
    overflow: visible;
  }
  
  .scroll-contents_position {
    position: absolute;
    width:100vw;
    height: 100vh;
    z-index: 1;
    top: 0;
    left: 0;
  }
  
  .scroll-contents_support-item {
    position: relative;
    width:100vw;
    height: 100vh;
    z-index: 2;
  }
  
  .scroll-contents_support-item_back {
    position: relative;
    width: 10000px;
    height: 100vh;
    z-index: 1;
  }

   .support-item_handrail {
    bottom: calc(100% * (102 / var(--base-height)));
    width: 100%;
    height: calc(100% * (44 / var(--base-height)));
   }
   .support-item_gate{
     right: calc(100% * (1710 / var(--scene-width)));
    bottom: calc(100% * (103 / var(--base-height)));
    width: calc(70% * (266 / var(--scene-width)));
    height: calc(70% * (445 / var(--base-height)));
   }
  
  .mbs-history-img01 {
    width: calc(100% * (210 / var(--base-width)));
    height: auto;
    top: calc(100% * (405 / var(--base-height)));
    left: calc(100% * (283 / var(--base-width)));
  }

  .mbs-history-img02 {
    width: calc(100% * (96 / var(--base-width)));
    height: auto;
    top: calc(100% * (500 / var(--base-height)));
    left: calc(100% * (198 / var(--base-width)));
  }

  .mbs-history-img03 {
    width: calc(100% * (191 / var(--base-width)));
    height: auto;
    top: calc(100% * (451 / var(--base-height)));
    right: calc(100% * (160 / var(--base-width)));
  }

  .mbs-history-img04 {
    width: calc(100% * (188 / var(--base-width)));
    height: auto;
    top: calc(100% * (464 / var(--base-height)));
    left: calc(100% * (344 / var(--base-width)));
  }

  .mbs-history-img05 {
    width: calc(100% * (188 / var(--base-width)));
    height: auto;
    top: calc(100% * (536 / var(--base-height)));
    right: calc(100% * (-196 / var(--base-width)));
    z-index: 10;
  }

  .mbs-history-img06 {
    width: calc(100% * (214 / var(--base-width)));
    height: auto;
    top: calc(100% * (422 / var(--base-height)));
    left: calc(100% * (162 / var(--base-width)));
  }

  .mbs-history-img07 {
    width: calc(80% * (341 / var(--base-width)));
    height: auto;
    top: calc(100% * (446 / var(--base-height)));
    right: calc(100% * (-30 / var(--base-width)));
  }

  .mbs-history-img08 {
    width: calc(86% * (216 / var(--base-width)));
    height: auto;
    top: calc(100% * (550 / var(--base-height)));
    right: calc(100% * (264 / var(--base-width)));
    z-index: 5;
  }

  .mbs-history-img09 {
    width: calc(86% * (237 / var(--base-width)));
    height: auto;
    top: calc(100% * (457 / var(--base-height)));
    right: calc(100% * (92 / var(--base-width)));
  }

  .support-item_product01 {
    width: calc(100% * (241 / var(--base-width)));
    height: calc(100% * (250 / var(--base-height)));
    top: calc(100% * (366 / var(--base-height)));
    left: calc(100% * (1129 / var(--base-width)));
  }

  .support-item_product02 {
    width: calc(100% * (118 / var(--base-width)));
    height: calc(100% * (244 / var(--base-height)));
    top: calc(100% * (384 / var(--base-height)));
    left: calc(100% * (197 / var(--base-width)));
  }

  .support-item_product03 {
    width: calc(100% * (132 / var(--base-width)));
    height: calc(100% * (142 / var(--base-height)));
    top: calc(100% * (496 / var(--base-height)));
    left: calc(100% * (332 / var(--base-width)));
  }

  .support-item_product04 {
    width: calc(100% * (68 / var(--base-width)));
    height: calc(100% * (208 / var(--base-height)));
    top: calc(100% * (376 / var(--base-height)));
    right: calc(100% * (-30 / var(--base-width)));
  }

  .support-item_product05 {
    width: calc(100% * (138 / var(--base-width)));
    height: calc(100% * (146 / var(--base-height)));
    top: calc(100% * (428 / var(--base-height)));
    left: calc(100% * (128 / var(--base-width)));
  }

  .support-item_product06 {
    width: calc(100% * (140 / var(--base-width)));
    height: calc(100% * (141 / var(--base-height)));
    top: calc(100% * (466 / var(--base-height)));
    right: calc(100% * (240 / var(--base-width)));
  }

  .support-item_product07 {
    width: calc(100% * (207 / var(--base-width)));
    height: calc(100% * (245 / var(--base-height)));
    top: calc(100% * (355 / var(--base-height)));
    left: calc(100% * (197 / var(--base-width)));
  }

  .support-item_people01 {
    width: calc(100% * (120 / var(--base-width)));
    height: calc(100% * (274 / var(--base-height)));
    bottom: calc(100% * (50 / var(--base-height)));
    left: calc(100% * (50 / var(--base-width)));
    background-position: center bottom;
  }
  
  .scroll-scene04 .support-item_people01 {
    left: calc(100% * (140 / var(--base-width)));
    bottom: calc(100% * (31 / var(--base-height)));
  }
  
  .scroll-scene05 .support-item_people01 {
    left: calc(100% * (324 / var(--base-width)));
    bottom: calc(100% * (31 / var(--base-height)));
  }
  
  .support-item_people02 {
    width: calc(100% * (106 / var(--base-width)));
    height: calc(100% * (244 / var(--base-height)));
    bottom: calc(100% * (22 / var(--base-height)));
    right: calc(100% * (211 / var(--base-width)));
    background-position: center bottom;
  }
  
  .scroll-scene04 .support-item_people02 {
    right: calc(100% * (247 / var(--base-width)));
    bottom: calc(100% * (22 / var(--base-height)));
  }
  
  .scroll-scene05 .support-item_people02 {
    right: calc(100% * (260 / var(--base-width)));
    bottom: calc(100% * (22 / var(--base-height)));
  }
  
  .support-item_people03 {
    width: calc(100% * (63 / var(--base-width)));
    height: calc(100% * (215 / var(--base-height)));
    bottom: calc(100% * (58 / var(--base-height)));
    left: calc(100% * (446 / var(--base-width)));
    background-position: center bottom;
  }
  
  .scroll-scene05 .support-item_people03 {
    bottom: calc(100% * (58 / var(--base-height)));
    left: calc(100% * (556 / var(--base-width)));
  }
  
  .support-item_people04 {
    width: calc(100% * (62 / var(--base-width)));
    height: calc(100% * (239 / var(--base-height)));
    bottom: calc(100% * (53 / var(--base-height)));
    right: calc(100% * (493 / var(--base-width)));
    background-position: center bottom;
  }
  
  .scroll-scene05 .support-item_people04 {
    bottom: calc(100% * (56 / var(--base-height)));
    right: calc(100% * (508 / var(--base-width)));
  }
  
  .support-item_people05 {
    width: calc(100% * (72 / var(--base-width)));
    height: calc(100% * (244 / var(--base-height)));
    bottom: calc(100% * (34 / var(--base-height)));
    left: calc(100% * (591 / var(--base-width)));
    background-position: center bottom;
  }
  
  .support-item_people06 {
    width: calc(100% * (103 / var(--base-width)));
    height: calc(100% * (256 / var(--base-height)));
    bottom: calc(100% * (14 / var(--base-height)));
    right: calc(100% * (87 / var(--base-width)));
    background-position: center bottom;
  }

  .fix-contents-scene-wrap {
    width:100vw;
  }

  .fix-contents {
    width: 100vw;
  }


  .mbs-history-title{
    left:0;
    padding:0 20px;
    font-size: 4.6rem;
  }
  .mbs-history-text{
    left: 0;
    width:100%;
    padding:0 20px;
    font-size: 1.6rem;
  }
  .mbs-history-text_line{
    line-height: 1.6;
  }
  html[lang=en] .mbs-history-title,
  html[lang=en-US] .mbs-history-title,
  html[lang=en-GB] .mbs-history-title,
  html[lang=en-SG] .mbs-history-title,
  html[lang=ko-KR] .mbs-history-title {
    font-size: 3rem;
    line-height: 1.3;
    padding:0 20px;
  }
  html[lang=en] .mbs-history-text,
  html[lang=en-US] .mbs-history-text,
  html[lang=en-GB] .mbs-history-text,
  html[lang=en-SG] .mbs-history-text,
  html[lang=ko-KR] .mbs-history-text {
    left: 0;
    top: 20%;
    width:100%;
  }
  .support-item_chair{
    height:44px;
  }
  .fix-contents_mainchara{
    bottom:5px;
    min-width:106px;
    left:0;
    right:0;
    margin:auto;
  }

}
/* 03_APPROACH */
.mbs-approach-sp-bg-image {
  background: url(/-/media/corporate/company/brand/story/approach_bg.ashx) no-repeat;
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  height: 100vh;
  position: absolute;
}
.mbs-approach-sp-bg-image .mbs-approach-sp-bg-image-cnt {
  width: 100%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%) rotate(15deg) scale(0.6);
  -webkit-transform: translateX(-50%) rotate(15deg) scale(0.6);
  -ms-transform: translateX(-50%) rotate(15deg) scale(0.6);
}
.mbs-approach-left {
  margin: 0;
  padding:0 20px 18%;
}
.mbs-approach-title {
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  color: #fff;
  height: 100vh;
  justify-content: center;
  display: flex;
  text-align: center;
  padding-top: 40%;
}
.mbs-approach-textbox {
  padding: 0;
  padding-top: 22px;
}
.mbs-approach-text_line{
  line-height: 2.2;
}
.mbs-approach-text {
  position: relative;
  top: 0;
  font-size: 1.6rem;
  line-height: 2;
  color: #fff;
}
.mbs-approach-text + .mbs-approach-text{
  margin-top:25rem;
}
.mbs-approach-bg-blur {
  display: none;
}
.mbs-approach-img {
  display: none;
}
@media (min-width: 768px) {

#mbs-approach {
  background: url(/-/media/corporate/company/brand/story/approach_bg.ashx);
  background-size: auto;
}
.mbs-approach-sp-bg-image {
  display: none;
}
.mbs-approach-cnt {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 700px;
}

/* テキストエリア */
.mbs-approach-left {
  padding:15% 20px 18%;
  max-width: 680px;
}



.mbs-approach-textbox {
  padding: 0 10%;
  z-index: 15;
  position: relative;
}

/* タイトル */
.mbs-approach-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 5.6rem;
  font-weight: bold;
  display: block;
  height: unset;
  text-align: left;
  padding-top: 0;
}

/* 説明テキスト */
.mbs-approach-text {
  color: #fff;
  font-size: 1.8rem;
  max-width: 630px;
  position: absolute;
  z-index: 1;
  top: -120px;
  left: 0;
}
.mbs-approach-text_line{
  line-height: 2;
}
html[lang=en] .mbs-approach-text_line,
html[lang=en-US] .mbs-approach-text_line,
html[lang=en-GB] .mbs-approach-text_line,
html[lang=en-SG] .mbs-approach-text_line,
html[lang=ko-KR] .mbs-approach-text_line {
  line-height: 1.5;
}

.mbs-approach-text + .mbs-approach-text{
  margin-top:auto;
}

.mbs-approach-text p {
  margin-bottom: 16px;
}

/* テキストエリア 背景ぼかし */
.mbs-approach-bg-blur {
  display: block;
  position: absolute;
  z-index: -10;
  width: 100vw;
  height: 100%;
  top: 0;
  left: calc((1200px - 100vw) / 2);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%),
    url(/-/media/corporate/company/brand/story/grainy-gradients.ashx);
  background-size: cover;
  backdrop-filter: blur(16px);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 100%);
  mask-composite: intersect;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .mbs-approach-bg-blur {
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .mbs-approach-bg-blur {
    left: calc((1200px - 100vw) / 2);
  }
}
/* 背景画像 */
.mbs-approach-img {
  display: block;
  position: absolute;
  z-index: -100;
  width: 247px;
  height: 247px;
  transform-style: preserve-3d;
  right: calc(50% - 123px);
  top: calc(50% - 123px);
}
.mbs-approach-img-front2 {
  filter: brightness(1.7)
}
.mbs-approach-img-front,.mbs-approach-img-front2 {
  width: 247px;
}

.mbs-approach-img-back {
  width: 247px;
}

.mbs-approach-img-front,.mbs-approach-img-front2,
.mbs-approach-img-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.mbs-approach-img-back {
  backface-visibility: visible;
}
.mbs-approach-img-front img,.mbs-approach-img-front2 img,
.mbs-approach-img-back img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.mbs-approach-img-front img,
.mbs-approach-img-front2 img,
.mbs-approach-img-back img,
.mbs-approach-img-topside img,
.mbs-approach-img-bottomside img,
.mbs-approach-img-leftside img,
.mbs-approach-img-rightside img{
backface-visibility: hidden;
}
.mbs-approach-img-back img {
  backface-visibility: visible;
}
/* 表面 */
.mbs-approach-img-front img{
  width: 247px;
  height: auto;
  transform: translateZ(1px);
}

/* 裏面 */
.mbs-approach-img-back img{
  width: 247px;
  height: auto;
  transform: rotateY(180deg) translateZ(-1px);
}

/* 側面（厚み）の作成 */
.mbs-approach-img-topside,
.mbs-approach-img-bottomside,
.mbs-approach-img-leftside,
.mbs-approach-img-rightside {
  content: '';
  position: absolute;
  background: #040b1e;
}

/* 上側面 */
.mbs-approach-img-topside {
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  transform-origin: top;
  transform: rotateX(90deg) translateZ(0);
}

/* 下側面 */
.mbs-approach-img-bottomside {
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  transform-origin: bottom;
  transform: rotateX(-90deg) translateZ(0);
}

/* 左側面 */
.mbs-approach-img-leftside {
  width: 2px;
  height: 100%;
  left: 0;
  top: 0;
  transform-origin: left;
  transform: rotateY(-90deg) translateZ(0);
}

/* 右側面 */
.mbs-approach-img-rightside {
  width: 2px;
  height: 100%;
  right: 0;
  top: 0;
  transform-origin: right;
  transform: rotateY(90deg) translateZ(0);
}
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .mbs-approach-left {
    margin: 0 0 0 4%;
  }
}
/* 04_PRODUCTS */
.mbs-products-sp-bg-image {
  background: url(/-/media/corporate/company/brand/story/products/products_bg.ashx) no-repeat;
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  height: 100vh;
  position: absolute;
}
.mbs-products-sp-bg-image-cnt {
  position: absolute;
  width: 150%;
  top: 40%;
    left: 50%;
  transform: translate(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.mbs-products-cnt {
  padding:0 20px 15%;
}
.mbs-products-title {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: #333333;
  height: 100vh;
  justify-content: center;
  display: flex;
  padding-top: 40%;
}
.mbs-products-textbox {
    position: relative;
    transform: translateY(0);
    text-align: left;
    font-size: 1.6rem;
    line-height: 2.2;
  color: #333333;
}
.mbs-products-text {
    position: relative;
    width: 100%;

}
.mbs-products-img {
  display: none;
}
.mbs-products-text01 + .mbs-products-text02{
  margin-top:25rem;
}
.mbs-products-title-br {
  display: none;
}
@media (min-width: 768px) {

  #mbs-products {
  background: url(/-/media/corporate/company/brand/story/products/products_bg.ashx);
  background-size: auto;
}
.mbs-products-sp-bg-image {
  display: none;
}

.mbs-products-cnt {
  display: flex;
  padding:15% 20px 18%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}

.mbs-products-title {
  font-size: 5.6rem;
  font-weight: bold;
  color: #333333;
  z-index: 15;
  display: block;
  height: unset;
  padding-top: 0;
}
.mbs-products-title-br {
  display: block;
}

.mbs-products-textbox {
  font-size: 1.8rem;
  color: #333333;
  line-height: 2;
  max-width: 640px;
  position: absolute;
  min-height: 330px;
  z-index: 15;

  /* 説明テキスト 位置調整 */
  transform: translateY(90px);
}
html[lang=en] .mbs-products-textbox,
html[lang=en-US] .mbs-products-textbox,
html[lang=en-GB] .mbs-products-textbox,
html[lang=en-SG] .mbs-products-textbox,
html[lang=ko-KR] .mbs-products-textbox {
  line-height: 1.5;
}

.mbs-products-text {
  position: absolute;
  width: 100vw;
  max-width: 640px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.mbs-products-text01 + .mbs-products-text02{
  margin-top:auto;
}

.mbs-products-img {
  display: block;
  position: absolute;
  width: 80%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.mbs-products-img-rorate {
  position: relative;
  width: 70%;
  padding-top: 70%;
  margin: 20px auto;
}

.mbs-products-img-rorate-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-cnt {
  position: relative;
  width: 100%;
  height: 100%;
  animation: 100s linear big-circle infinite;
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item {
  position: absolute;
  width: 15%;
  height: 50%;
  transform-origin: 50% 100%;
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item01 {
  left: 50%;
  transform: translate(-50%, 0);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item02 {
  left: 50%;
  transform: translate(-50%, 0) rotate(26deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item03 {
  left: 50%;
  transform: translate(-50%, 0) rotate(52deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item04 {
  left: 50%;
  transform: translate(-50%, 0) rotate(78deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item05 {
  left: 50%;
  transform: translate(-50%, 0) rotate(104deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item06 {
  left: 50%;
  transform: translate(-50%, 0) rotate(130deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item07 {
  left: 50%;
  transform: translate(-50%, 0) rotate(156deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item08 {
  left: 50%;
  transform: translate(-50%, 0) rotate(182deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item09 {
  left: 50%;
  transform: translate(-50%, 0) rotate(208deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item10 {
  left: 50%;
  transform: translate(-50%, 0) rotate(234deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item11 {
  left: 50%;
  transform: translate(-50%, 0) rotate(260deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item12 {
  left: 50%;
  transform: translate(-50%, 0) rotate(286deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item13 {
  left: 50%;
  transform: translate(-50%, 0) rotate(312deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item.mbs-products-img-rorate-item14 {
  left: 50%;
  transform: translate(-50%, 0) rotate(338deg);
}

.mbs-products-img-rorate-box .mbs-products-img-rorate-item .mbs-products-img-rorate-parts {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

.mbs-products-img-rorate-item01 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle01 infinite;
}

.mbs-products-img-rorate-item02 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle02 infinite;
}

.mbs-products-img-rorate-item03 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle03 infinite;
}

.mbs-products-img-rorate-item04 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle04 infinite;
}

.mbs-products-img-rorate-item05 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle05 infinite;
}

.mbs-products-img-rorate-item06 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle06 infinite;
}

.mbs-products-img-rorate-item07 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle07 infinite;
}

.mbs-products-img-rorate-item08 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle08 infinite;
}

.mbs-products-img-rorate-item09 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle09 infinite;
}

.mbs-products-img-rorate-item10 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle10 infinite;
}

.mbs-products-img-rorate-item11 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle11 infinite;
}

.mbs-products-img-rorate-item12 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle12 infinite;
}

.mbs-products-img-rorate-item13 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle13 infinite;
}

.mbs-products-img-rorate-item14 .mbs-products-img-rorate-parts {
  animation: 100.0s linear circle14 infinite;
}

@keyframes big-circle {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes circle01 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes circle02 {
  0% {
    transform: rotate(334deg);
  }

  100% {
    transform: rotate(-26deg);
  }
}

@keyframes circle03 {
  0% {
    transform: rotate(304deg);
  }

  100% {
    transform: rotate(-52deg);
  }
}

@keyframes circle04 {
  0% {
    transform: rotate(282deg);
  }

  100% {
    transform: rotate(-78deg);
  }
}

@keyframes circle05 {
  0% {
    transform: rotate(260deg);
  }

  100% {
    transform: rotate(-104deg);
  }
}

@keyframes circle06 {
  0% {
    transform: rotate(234deg);
  }

  100% {
    transform: rotate(-130deg);
  }
}

@keyframes circle07 {
  0% {
    transform: rotate(208deg);
  }

  100% {
    transform: rotate(-156deg);
  }
}

@keyframes circle08 {
  0% {
    transform: rotate(182deg);
  }

  100% {
    transform: rotate(-182deg);
  }
}

@keyframes circle09 {
  0% {
    transform: rotate(156deg);
  }

  100% {
    transform: rotate(-208deg);
  }
}

@keyframes circle10 {
  0% {
    transform: rotate(130deg);
  }

  100% {
    transform: rotate(-234deg);
  }
}

@keyframes circle11 {
  0% {
    transform: rotate(104deg);
  }

  100% {
    transform: rotate(-260deg);
  }
}

@keyframes circle12 {
  0% {
    transform: rotate(78deg);
  }

  100% {
    transform: rotate(-282deg);
  }
}

@keyframes circle13 {
  0% {
    transform: rotate(52deg);
  }

  100% {
    transform: rotate(-308deg);
  }
}

@keyframes circle14 {
  0% {
    transform: rotate(26deg);
  }

  100% {
    transform: rotate(-334deg);
  }
}

}
/* 05_CONFIDENCE */
.mbs-confidence-sp-bg-image {
  background: url(/-/media/corporate/company/brand/story/confidence_bg-sp.ashx) no-repeat;
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  height: 100vh;
  position: absolute;
}
.mbs-confidence-bg {
  display: none;
}
.mbs-confidence-cnt {
  display: flex;
  overflow-y: scroll;
  flex-direction: column;
  padding:0 20px 18%;
}
.mbs-confidence-title-container {
  position: relative;
  inset: auto;
  margin-bottom: 41px;
}
.mbs-confidence-title {
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  height: 100vh;
  justify-content: center;
  display: flex;
  padding-top: 50%;
}
.mbs-confidence-text {
  position: relative;
  left: auto;
  transform: translateX(0);
  width: 100%;
  text-align: left;
  font-size: 1.6rem;
  line-height: 2.2;
  color: #fff;
}
.mbs-confidence-bg_cover {
  opacity: 0.5;
}
.mbs-confidence-text + .mbs-confidence-text{
  margin-top:25rem;
}
@media (max-width: 767px) {
  .mbs-confidence-title-container {
    transform: translate(0) !important;
  }
}
@media (min-width: 768px) {
#mbs-confidence {
  background-color: #dbdbdb;
  position: relative;
}

.mbs-confidence-cnt {
  display: grid;
  font-size: 5.6rem;
  grid-template-rows: auto;
  height: 100vh;
  place-content: center;
  place-items: center;
  position: relative;
  width: 100%;
  z-index: 20;
  padding:15% 20px 18%;
}

.mbs-confidence-title-container {
  inset: 50% auto auto 50%;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%) translateZ(0);
  z-index: 20;
  width: 80vw;
  margin-bottom: 0;
}

.mbs-confidence-title {
  font-size: inherit;
  font-weight: bold;
  color: #fff;
  display: block;
  height: unset;
  padding-top: 0;
}

.mbs-confidence-textbox {
  width: 100%;
  max-width: 640px;
  position: relative;
  min-height: 400px;
  transform: translateY(calc(0.5em + 48px));
}

.mbs-confidence-text {
  font-size: 1.8rem;
  line-height: 2;
  color: #fff;
  position: absolute;
  width: 80vw;
  max-width: 640px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
html[lang=en] .mbs-confidence-text,
html[lang=en-US] .mbs-confidence-text,
html[lang=en-GB] .mbs-confidence-text,
html[lang=en-SG] .mbs-confidence-text,
html[lang=ko-KR] .mbs-confidence-text {
  line-height: 1.5;
}

.mbs-confidence-bg {
  display: block;
  height: 100vh;
  inset: 0;
  overflow: hidden;
  position: fixed;
  width: 100vw;
  z-index: -1;
}

.mbs-confidence-bg_image {
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  width: 100%;
}

.mbs-confidence-bg_cover {
  background-color: #262626;
  inset: 0;
  position: absolute;
}

.mbs-confidence-text + .mbs-confidence-text{
  margin-top:auto;
}

}
/* 06_TOGETHER */
.mbs-together-sp-bg-image {
  background: url(/-/media/corporate/company/brand/story/together_bg-sp.ashx) no-repeat;
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  height: 100vh;
  position: absolute;
}
.mbs-together-sp-bg-image-filter{
      content: '';
    width: 120%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: -10%;
    right: 0;
    bottom: 0;
    margin: auto;
    background: inherit;
    filter: blur(10px);
    opacity: 0;
}
.mbs-together-cnt {
    padding:0 20px 18%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
.mbs-together-cnt::-webkit-scrollbar {
    display:none;
  }
.mbs-together-title {
    font-size: 4rem;
    font-weight: bold;
    position: relative;
    left:0;
    top: 0;
    padding-bottom: 10%;
    height: 100vh;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 50%;
  }
.mbs-together-textbox {
    position: relative;
    font-size: 1.6rem;
    text-shadow: 1px 1px 1px #FFFFFF;
    left: 0;
    top: 0;
    width: 100%;
    padding-bottom: 2rem;
    line-height: 2.2;
  }
.mbs-together-textbox + .mbs-together-textbox{
    margin-top:25rem;
  }
.mbs-together-text_line{
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
.mbs-together-text-s {
    font-size: 1.2rem;
    line-height: 1.6;
  }
.mbs-together-img {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 200px;
  }
.mbs-together-photo {
  position: relative;
  width: calc(50% - 8px);
  max-width: 290px;
  margin-bottom: 0;
}
.mbs-together-photo:nth-of-type(2n) {
  margin-top: 20px;

}
.mbs-together-title_split {
  display: block;
}
html[lang=zh-CN] .mbs-together-title_split:nth-of-type(1),
html[lang=zh-CN] .mbs-together-title_split:nth-of-type(3){
  margin-left: -4rem;
}
html[lang=zh-CN] .mbs-together-title_split:nth-of-type(2n){
  text-indent: 4rem;
}
@media (min-width: 768px) {
#mbs-together {
  background: url(/-/media/corporate/company/brand/story/together_bg_01.ashx) no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
}
.mbs-together-sp-bg-image {
  display: none;
}
.mbs-together-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.mbs-together-bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.mbs-together-bg-img01 {
  background: url(/-/media/corporate/company/brand/story/together_bg_02.ashx) no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: 15;
}

.mbs-together-bg-img02 {
  background: url(/-/media/corporate/company/brand/story/together_bg_03.ashx) no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: 18;
}

.mbs-together-cnt {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 20;
  padding:15% 20px 18%;
}

.mbs-together-title {
  font-size: 5.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: #222;
  position: absolute;
  top: 15%;
  left: 2%;
  opacity: 0;
  display: block;
  height: unset;
  text-align: left;
  padding-top: 0;
}
html[lang=zh-CN] .mbs-together-title_split:nth-of-type(1),
html[lang=zh-CN] .mbs-together-title_split:nth-of-type(3){
  margin-left: 0;
}
html[lang=zh-CN] .mbs-together-title_split:nth-of-type(2n){
  text-indent: 5.6rem;
}


.mbs-together-textbox {
  font-size: 1.8rem;
  line-height: 2;
  text-shadow: none;
  color: #000;
  position: absolute;
  top: 15%;
  left: 2%;
  width: 50%;
  max-width: 630px;
  opacity: 0;
}
.mbs-together-textbox + .mbs-together-textbox{
    margin-top:auto;
  }
.mbs-together-text_line{
  font-size: 1.8rem;
  margin-bottom:1rem;
}
.mbs-together-text-s {
  font-size: 1.3rem;
  line-height: 1.6;
}
.mbs-together-text_line + .mbs-together-text-s {
  margin-top:24px;
}

.mbs-together-img {
  position: absolute;
  width: 45%;
  right: 0;
  left:auto;
  top: 10%;
  max-width: 620px;
  opacity: 0;
  padding-bottom: 0;
}

}
/* 07_CONTINUE */
#mbs-continue {
  background: url(/-/media/corporate/company/brand/story/continue_bg.ashx) center bottom no-repeat;
  background-size: cover;
}
.mbs-continue-cnt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}
.mbs-continue-effect-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 410px;
  height: 160px;
  left: 0;
  right: 0;
  bottom: 3%;
  margin: auto;
  cursor: pointer;
  border: none;
}
.mbs-continue_effect-title {
  position: absolute;
  font-size: 1.4rem;
  color: #fff;
  z-index: 2;
  width: 100%;
  top: 0;
  text-align: center;
  opacity: 0;
}
.mbs-continue_effect-title::before {
  content: '';
  position: absolute;
  background-color: #fff;
  width: 2px;
  height: 29px;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.mbs-continue_effect-title::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
}
.mbs-continue_js-effect {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 1;
}
#mbs-continue-policy {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  max-width: none;
  max-height: none;
  position: fixed;
}
.mbs-continue_company-policy {
  position: relative;
  display: flex;
  inset: 0;
  align-items: center;
  justify-content: center;
  z-index: 4;
  width: 100vw;
  height: 100vh;
}
.mbs-continue_company-policy-close {
  position: absolute;
  z-index: 5;
  cursor: pointer;
  top: 50px;
  right: 48px;
  width: 47px;
  height: 47px;
  border: none;
}
.mbs-continue_company-policy img {
  z-index: 5;
}
.mbs-continue_company-policy::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  z-index: 3;
}
.mbs-banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.mbs-banner_bg {
  background: #dbdbdb;
  padding: 70px 0 100px;
}
.mms-banner__link {
    position: relative;
    display: block;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
  }
.mbs-banner_title{
    position: absolute;
    inset: 0;
    margin: auto;
    display: inline-block;
    text-align: center;
    line-height: 5.6;
    color:#fff;
    font-size: 4.6rem;
    font-weight: bold;
    z-index:3;
  }
.mms-banner__picture {
  position: relative;
  display: block;
  overflow: hidden;
  max-height: 260px;
}
.mms-banner__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  transform-origin: center center;
  transform: translateZ(0);
}
.mms-banner__link:hover .mms-banner__image {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .mbs-banner_bg {
    padding:54px 25px 60px;
  }
  .mms-banner__link {
    max-width: 300px;
  }

  .mbs-banner_title{
    font-size: 2.4rem;
    line-height: 7.2;
  }

  .mms-banner__picture {
    max-height: 170px;
  }
  .mbs-continue_effect-title {
    opacity: 0;
  }
  .mbs-continue_company-policy {
    padding: 20px;
  }
  .mbs-continue_company-policy-close {
    right: 15px;
    top: 15px;
  }
}
#mbs-continue+.l-container,
main+footer {
  position: relative;
  z-index: 30;
}









