@charset "utf-8";
* {
  box-sizing: border-box;
}
#mbl {
  margin: 0;
  padding: 0;
}
/***** teaser *****/
#mbl #teaser-wrapper {
  padding: 3em 0;
}
#mbl #teaser-wrapper h2 {
  font-size: 18px;
  color: #bbb8b8;
}
#mbl #teaser-wrapper h3 img {
  width: 60%;
  text-align: center;
}
/***/
#mbl #teaser-wrapper-full {
  width: 100%;
  height: calc(100vh - 70px);
  position: relative;
}
#mbl #teaser-wrapper-full #main-copy {
  background: #111;
  width: 120px;
  height: 100%;
  padding: 2em 1.5em;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
#mbl #teaser-wrapper-full #main-copy img {
  width: 100%;
}
#mbl #teaser-wrapper-full #movie {
  width: 90%;
  height: auto;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  padding-left: 120px;
  box-sizing: border-box;
  z-index: 2;
}
#mbl #teaser-wrapper-full #movie video {
  max-width: 100%;
  max-height: 80vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, .4);
  z-index: 4;
}
#mbl #teaser-wrapper-full #movie-bg {
  content: "";
  display: block;
  background: url('/img/mbl/movie-bg.gif') no-repeat;
  background-position: left top;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
/***/
#mbl #teaser-wrapper-full-2 {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: left;
}
#mbl #teaser-wrapper-full-2 #main-copy {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
#mbl #teaser-wrapper-full-2 #main-copy::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#mbl #teaser-wrapper-full-2 #main-copy h1 {
  display: inline-block;
  background: rgba(255, 255, 255, .8);
  width: 360px;
  margin: 3em 0 0;
  padding: 5px 40px 5px 40px;
  box-sizing: border-box;
}
#mbl #teaser-wrapper-full-2 #main-copy h1 img {
  width: 100%;
}
#mbl #teaser-wrapper-full-2 #main-copy .tagline {
  margin: 10px 0 0;
  padding: 0 0 0 40px;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .3)
}
#mbl #teaser-wrapper-full-2 #main-copy h2 {
  margin: 30px 0 0;
  padding: 0 0 0 40px;
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .3)
}
#mbl #teaser-wrapper-full-2 #main-copy a.movie-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 4em;
}
#mbl #teaser-wrapper-full-2 #main-copy a.movie-btn::before {
  content: "\f04b";
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}
#mbl #teaser-wrapper-full-2 #main-copy a.movie-btn {
  text-decoration: none;
}
#mbl #teaser-wrapper-full-2 #main-copy a.movie-btn:hover p {
  color: #181A1C;
}
#mbl #teaser-wrapper-full-2 #main-copy a.movie-btn:hover::before {
  color: #181A1C;
  border: 3px solid #181A1C;
}
#mbl #teaser-wrapper-full-2 #movie {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  background: url('/movie/poster.jpg') no-repeat;
  background-size: cover;
}
#mbl #teaser-wrapper-full-2 #movie video {
  max-width: 100%;
  max-height: 100%;
}
/*modal内*/
.myModal {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 2em;
  box-sizing: border-box;
  display: block;
}
.myModal_popUp, input[name="myModal_switch"], #myModal_open + label ~ label {
  display: none;
}
#myModal_open + label, #myModal_close-button + label {
  cursor: pointer;
}
.myModal_popUp {
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}
#myModal_open:checked ~ #myModal_close-button + label {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#myModal_open:checked + label ~ .myModal_popUp {
  background: transparent;
  display: block;
  width: 90%;
  height: 80%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 998;
}
#myModal_open:checked + label ~ .myModal_popUp > .myModal_popUp-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
#myModal_open:checked + label + #myModal_close-overlay + label {
  background: rgba(0, 0, 0, 0.70);
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  z-index: 997;
}
#myModal_open:checked ~ #myModal_close-button + label {
  display: block;
  text-align: center;
  font-size: 25px;
  line-height: 44px;
  width: 90%;
  height: 44px;
  position: fixed;
  bottom: 20%;
  left: 5%;
  z-index: 999;
}
#myModal_open:checked ~ #myModal_close-button + label::before {
  content: '×';
}
#myModal_open:checked ~ #myModal_close-button + label::after {
  content: 'CLOSE';
  margin-left: 5px;
  font-size: 80%;
}
#mbl #teaser-wrapper-full-2 #main-copy .movie-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 4em;
}
#mbl #teaser-wrapper-full-2 #main-copy .movie-btn::before {
  content: "\f04b";
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}
#mbl #teaser-wrapper-full-2 #main-copy a.movie-btn {
  text-decoration: none;
}
#mbl #teaser-wrapper-full-2 #main-copy a.movie-btn:hover p {
  color: #181A1C;
}
#mbl #teaser-wrapper-full-2 #main-copy a.movie-btn:hover::before {
  color: #181A1C;
  border: 3px solid #181A1C;
}
#myModal_open:checked + label ~ .myModal_popUp > .myModal_popUp-content video {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
}
@media (min-width: 481px) {
  #myModal_open:checked + label ~ .myModal_popUp {
    width: 90%;
    height: 80vh;
  }
  #myModal_open:checked ~ #myModal_close-button + label {
    width: 44px;
    height: 44px;
    right: 5%;
    top: 5%;
    overflow: hidden;
  }
  #myModal_open:checked ~ #myModal_close-button + label::after {
    display: none;
  }
}
/***************************/
@media (max-width: 480px) {
  #mbl #teaser-wrapper-full-2 {
    height: calc(100vh - 250px);
  }
  #mbl #teaser-wrapper h2 {
    font-size: 16px;
    line-height: 1.3;
    padding: 0 5%;
    box-sizing: border-box;
  }
  #mbl #teaser-wrapper h3 img {
    width: 90%;
  }
  /***/
  #mbl #teaser-wrapper-full-2 #main-copy h1 {
    width: 210px;
    margin: 3em 0 0;
    padding: 0 20px 0 10px;
  }
  #mbl #teaser-wrapper-full-2 #main-copy .tagline {
    padding: 0 0 0 10px;
    margin: 5px 0 0;
    font-size: 13px;
  }
  #mbl #teaser-wrapper-full-2 #main-copy h2 {
    padding: 0 0 0 10px;
    margin: 7px 0 0;
    font-size: 18px;
  }
  #mbl #teaser-wrapper-full-2 #movie video {
    max-width: none;
    max-height: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit- transform: translateX(-50%);
  }
  /***/
  #mbl #teaser-wrapper-full {
    height: 240px;
  }
  #mbl #teaser-wrapper-full #main-copy {
    background: transparent;
    width: 70%;
    height: auto;
    padding: 2em .5em;
  }
  #mbl #teaser-wrapper-full #movie {
    width: 95%;
    padding-left: 0;
    top: 120px;
  }
  .myModal {
    padding: 0 2em 2em 2em;
  }
  #mbl #teaser-wrapper-full-2 #main-copy .movie-btn {
    margin-top: 0;
  }
  #mbl #teaser-wrapper-full-2 #main-copy {
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: calc(100vh - 250px);
  }
}
/***************************/
/***** contents *****/
#mbl .title {
  border-bottom: 1px solid #181A1C;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
}
#mbl .first-section {
  background: #e4dec7;
}
#mbl .second-section {
  background: #F5F5F5;
}
#mbl .third-section {
  background-color: #e4dec7;
  background-image: none;
  border-top: none;
  margin: 0;
  padding-top: 50px;
}
#mbl .container {
  text-align: left;
  margin-bottom: 3em;
}
#mbl .container .title h2.title_02:before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background: url(/img/mbl/mk.png) no-repeat;
  background-size: contain;
  margin: 0 auto;
}
#mbl .container p {
  color: #2A3F00;
  text-align: left;
  line-height: 1.8;
}
@media (min-width: 481px) {
  #mbl .container p {
    font-size: 16px;
  }
}
#mbl .container h3 {
  margin: 0;
  padding: 0;
}
#mbl .container h3 span.number {
  display: inline-block;
  color: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 31px;
  background: rgb(19, 75, 105);
  border-radius: 50%;
  margin-right: 0.2em;
  font-size: 16px;
  font-weight: bold;
  vertical-align: middle;
}
#mbl .container h3 span.mds {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  color: rgb(19, 75, 105);
  width: calc(100% - 50px);
  vertical-align: middle;
  line-height: 1.3;
}
@media (min-width: 481px) {
  #mbl .container h3 span.mds {
    font-size: 16px;
  }
}
#mbl .content-02 .flex-container .left-box {
  width: 60%;
  padding: 0 1em 0;
}
#mbl .content-02 .flex-container .right-box {
  width: 40%;
  text-align: center;
}
#mbl .content-02 .flex-container .right-box img {
  width: 100%;
  min-width: 100%;
}
@media (max-width: 480px) {
  #mbl .content-02 .flex-container {
    display: block;
  }
  #mbl .content-02 .flex-container .left-box, #mbl .content-02 .flex-container .right-box {
    width: 100%;
  }
  #mbl .content-02 .flex-container .left-box {
    padding: 0;
  }
}
#mbl .third-section .flex-container {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#mbl .third-section .left-box, #mbl .third-section .right-box {
  width: 40%;
}
#mbl .third-section .btn {
  font-size: 120%;
  color: #fff;
  background: #134b69;
  width: 100%;
  padding: 1em;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mbl .third-section .btn:hover {
  background: #739aaf;
}
#mbl .third-section .btn .fas, #mbl .third-section .btn .far {
  font-size: 140%;
  margin-right: 0.2em;
}
@media (max-width: 480px) {
  #mbl .third-section .left-box, #mbl .third-section .right-box {
    width: 100%;
  }
  #mbl .third-section .btn {
    margin-bottom: 1em;
  }
}
#mbl .flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/****************** modal ******************/
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}
.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}
.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}
.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 600px;
  padding: 30px 30px 15px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}
.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}
.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}
.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}
.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}
/************************************
PAGE:about-mbl
************************************/
#about-mbl #map_title {
  margin-top: -10px;
}
#about-mbl .first-section {}
#about-mbl .second-section {
  background: #857f6b;
  border-top: 6px solid #FECE1A;
}
#about-mbl .third-section {
  background: none;
}
#about-mbl .fourth-section {
  background: #F5F5F5;
  border-top: 6px solid #FECE1A;
}
#about-mbl .flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#about-mbl h3:before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background: url(../../img/mbl/mk.png) no-repeat;
  background-size: contain;
  margin: 0 auto;
}
#about-mbl .section {
  font-size: 16px;
  line-height: 1.8;
}
#about-mbl p {
  padding: 0 0 1em;
}
#about-mbl .first-section {
  padding-bottom: 8em;
}
#about-mbl #teaser-wrapper h2 img {
  width: 30%;
  margin: 1em 0;
}
#about-mbl h3 {
  margin: 4em 0 0;
}
#about-mbl .txt-theme {
  font-size: 40px;
  margin: .7em 0 1em;
  box-sizing: border-box;
  padding: 0 .5em 1em .5em;
  border-bottom: 1px solid #000;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, .2);
  display: inline-flex;
  box-sizing: border-box;
}
#about-mbl .txt-theme::before {
  content: none;
}
#about-mbl .txt-theme span {
  padding: 0 .5em;
  font-size: 30px;
  position: relative;
  display: inline-block;
  text-shadow: none;
  color: #355587;
}
#about-mbl .txt-theme span::before {
  position: absolute;
  content: "×";
  font-size: 300%;
  color: rgba(0, 0, 0, .2);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#about-mbl .point-wrapper {
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  position: relative
}
#about-mbl .point-wrapper .inbox {
  width: 46%;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  color: #181A1C;
  position: relative;
  padding-bottom: 2em;
}
#about-mbl .point-wrapper .inbox p {
  color: #181A1C;
  font-size: 16px;
  line-height: 1.6;
}
#about-mbl .point-wrapper .inbox p.label {
  position: absolute;
  top: -1em;
  left: -1em;
  padding: 1em;
  font-size: 14px;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-20deg);
  background: #355587;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 4px 4px 4px rgb(0, 0, 0, .3);
}
#about-mbl .point-wrapper .inbox h4 {
  background: #a09a83;
  color: #fff;
  padding: 2em 2em 1em;
  margin: 0;
  border-radius: 5px 5px 0 0;
}
#about-mbl .point-wrapper .inbox h4 p.point {
  font-size: 140% !important;
  font-weight: bold;
  color: #46443b;
  text-align: center;
  margin: .3em 0 0;
  padding: 0;
}
#about-mbl .point-wrapper img {
  width: 80%;
  margin: 2em 0 .5em;
}
#about-mbl .point-wrapper .rotating-animation-inner {
  width: 100%;
  height: 100%;
}
#about-mbl .point-wrapper .rotating-animation-inner::after {
  content: '';
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#about-mbl .point-wrapper .rotating-animation-inner::before {
  content: "×";
  display: block;
  font-size: 100px;
  font-weight: bold;
  color: #a09a83;
  text-shadow: 6px 6px 4px rgb(0 0 0 / 20%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
#about-mbl .point-wrapper .rotating-animation-inner::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../img/mbl/booklet.svg);
  background-size: 160px;
  animation: rotating 20s linear infinite;
  z-index: 1;
}
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#about-mbl .title-02 {
  border-bottom: 1px solid #fff;
  padding: 0 0 1em;
  margin-bottom: 2em;
  font-weight: bold;
}
#about-mbl .flex-container.feature {
  justify-content: space-between;
  align-items: flex-start;
}
#about-mbl .feature ul {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  vertical-align: top;
  list-style: none;
  padding: 0;
  margin: 0;
}
#about-mbl .feature ul li {
  width: 48%;
  display: inline-block;
  padding: 2em;
  margin: 0 0 1em;
  line-height: 1.8;
  vertical-align: top;
  background: rgba(132, 123, 100, .4);
  border-radius: 5px;
}
#about-mbl .feature ul h4 {
  width: 100%;
  border-bottom: 1px solid #fff;
  margin-bottom: 1em;
}
#about-mbl .feature ul h4 img {
  display: inline-block;
  height: 40px;
  width: auto;
  margin-right: 1em;
}
#about-mbl .third-section h4 {
  margin-bottom: 2em;
}
#about-mbl .third-section ol {
  position: relative;
  list-style: none;
  font-weight: bold;
  margin: 0 0 0 1em;
  padding: 2em 0 0;
  text-align: left;
}
#about-mbl .third-section ol li {
  position: relative;
  margin-bottom: 2em;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
}
#about-mbl .third-section ol {
  counter-reset: li;
}
#about-mbl .third-section ol > li:before {
  position: absolute;
  counter-increment: li;
  content: counter(li) "";
  left: -20px;
  top: -8px;
  color: #333333;
  width: 26px;
  height: 26px;
  font-size: 16px;
  text-align: center;
  box-sizing: border-box;
  font-weight: bold;
  line-height: 1;
  background: #ffc33c;
  padding: 6px 0;
  animation: rotating 10s linear infinite;
  box-shadow: 2px 2px 2px rgb(0, 0, 0, .4);
}
#about-mbl .third-section .framework img {
  height: 100%;
  width: auto;
  margin-right: 3em;
}
#about-mbl .third-section .framework h5 {
  background: linear-gradient(90deg, rgba(207, 191, 150, .6) 0%, rgba(207, 191, 150, 0) 80%);
  padding: .5em;
  font-size: 18px;
}
#about-mbl .fourth-section .btn {
  font-size: 120%;
  color: #fff;
  background: #134b69;
  width: 100%;
  padding: 1em;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
#about-mbl .fourth-section .flex-container {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#about-mbl .fourth-section .left-box, #about-mbl .fourth-section .right-box {
  width: 40%;
}
#about-mbl .fourth-section .btn:hover {
  background: #739aaf;
}
#about-mbl .fourth-section .btn .fas, #about-mbl .fourth-section .btn .far {
  font-size: 140%;
  margin-right: 0.2em;
}
#about-mbl .footer p {
  padding: 10px;
}
/********************* SP *********************/
@media (max-width: 480px) {
  br.pc-only {
    display: none;
  }
  #about-mbl .first-section {
    padding-bottom: 4em;
  }
  #about-mbl #teaser-wrapper h2 img {
    width: 80%;
  }
  #about-mbl h3 {
    font-size: 18px;
    margin-top: 3em;
  }
  #about-mbl .txt-theme {
    font-size: 30px;
    margin-top: .3em;
  }
  #about-mbl .txt-theme span::before {
    font-size: 250%;
  }
  #about-mbl .point-wrapper {
    display: block;
  }
  #about-mbl .point-wrapper .inbox {
    width: 100%;
    margin-bottom: 4em;
  }
  #about-mbl .point-wrapper .inbox p.label {
    top: -1.5em;
  }
  #about-mbl .point-wrapper .inbox p {
    text-align: left;
    padding: 0 1em;
  }
  #about-mbl .point-wrapper .rotating-animation-inner::before {
    font-size: 50px;
    top: 47%;
    text-shadow: 4px 4px 4px rgb(0, 0, 0, .2);
  }
  /*safariのみ*/
  _:lang(x) + _:-webkit-full-screen-document, #about-mbl .point-wrapper .rotating-animation-inner::before {
    top: 46.5%;
  }
  #about-mbl .point-wrapper .rotating-animation-inner::after {
    background-size: 90px;
    top: -3%;
  }
  #about-mbl .flex-container.feature {
    display: block;
  }
  #about-mbl .feature ul {
    width: 100%;
  }
  #about-mbl .feature ul li {
    padding: .7em;
  }
  #about-mbl .second-section p, #about-mbl .third-section h4 {
    text-align: left;
  }
  #about-mbl .third-section .flex-container {
    display: block;
  }
  #about-mbl .fourth-section .left-box, #about-mbl .fourth-section .right-box {
    width: 100%;
    margin-bottom: 2em;
  }
	#about-mbl .third-section .framework img {
		width: 100%;
		height: auto;
	}
}