@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header {
  background: #000;
}

aside {
  position: absolute;
  right: 0;
  top: 330px;
  height: auto;
  width: 266px;
  overflow: hidden;
  z-index: 5;
}
aside.lightisfuture {
  top: 725px;
}
aside .btnHamburger-side {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.75);
  right: 0;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}
aside .btnHamburger-side.is-active {
  opacity: 0;
  visibility: hidden;
}
aside .btnHamburger-side .line {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 28px;
  /* 横幅 */
  height: 3px;
  /* 1本辺りの高さ */
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: #414141;
}
aside .btnHamburger-side .line_01 {
  top: 10px;
}
aside .btnHamburger-side .line_02 {
  top: 17px;
}
aside .btnHamburger-side .line_03 {
  top: 24px;
}
aside .btnHamburger-side .text {
  position: absolute;
  bottom: 5px;
  left: 0;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: #414141;
}
aside .btnClose-side {
  position: absolute;
  width: 32px;
  height: 32px;
  background: #414141;
  top: 0;
  left: 0;
  display: none;
  cursor: pointer;
}
aside .btnClose-side::before, aside .btnClose-side::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
aside .btnClose-side::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
aside .btnClose-side::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
aside nav {
  margin: 0 0 0 auto;
  display: none;
}
aside .sub-menu {
  min-width: 50px;
  min-height: 50px;
  position: relative;
  margin-bottom: 35px;
}
aside .sub-menu nav {
  width: 234px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 0 20px 30px;
}
aside .sub-menu h3 {
  font-size: 18px;
  color: #000;
  border-bottom: 2px solid #C60012;
  margin-bottom: 15px;
  line-height: 1.7;
}
aside .sub-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
aside .sub-menu ul li {
  line-height: 1;
}
aside .sub-menu ul li span.current {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
}
aside .sub-menu ul li span.current::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #C60012;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
aside .sub-menu ul li span.current::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
aside .sub-menu ul li a {
  display: inline-block;
  padding-left: 20px;
  color: #666;
  font-size: 12px;
  font-weight: bold;
}
aside .sub-menu ul li a:hover {
  color: #000;
}
aside .other-menu {
  position: relative;
  height: 100%;
  min-height: 50px;
  -webkit-transform: translateX(266px);
          transform: translateX(266px);
  -webkit-transition: .5s;
  transition: .5s;
}
aside .other-menu .btnHamburger-side .line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 16px;
  height: 2px;
  /* 1本辺りの高さ */
}
aside .other-menu .btnHamburger-side .line_02 {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
aside .other-menu.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
aside .other-menu .btnClose-side {
  display: block;
}
aside .other-menu nav {
  display: block;
  width: 234px;
  background: #fff;
}
aside .other-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
aside .other-menu ul li a:hover {
  opacity: .8;
}
aside .other-menu ul li a img {
  width: 100%;
}

.page-title {
  height: 220px;
  background: #000;
  margin-bottom: 60px;
}
.page-title::before {
  content: "";
  width: calc(50% + 100px);
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #800303), to(#c60012));
  background: linear-gradient(to right, #800303 25%, #c60012 100%);
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
  position: absolute;
  right: 50%;
  top: 0;
  z-index: 2;
}
.page-title h2 {
  position: relative;
  max-width: 900px;
  height: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  z-index: 3;
}
.page-title h2 .en {
  font-family: "henderson-sans-basic", sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 40px;
  margin-bottom: 15px;
  letter-spacing: -0.1em;
}
.page-title h2 .ja {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 22px;
  letter-spacing: .3em;
}
.page-title .title-img {
  position: absolute;
  left: calc(50% - 100px);
  top: 0;
  height: 100%;
}
.page-title .title-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.page-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  padding-bottom: 110px;
}
.page-links ul li a, .page-links ul li span.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
}
.page-links ul li a:hover, .page-links ul li span.current:hover {
  color: #000;
  background: #fff;
}
.page-links ul li span.current {
  color: #000;
  background: #fff;
}

#page-lightisfuture {
  position: relative;
  padding-top: 50px;
  background: #000;
  color: #fff;
}
#page-lightisfuture .mv {
  position: relative;
  width: 100%;
  height: 558px;
  margin-bottom: 80px;
  z-index: 2;
  background: #fff;
}
#page-lightisfuture .mv::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/lightisfuture/mv.jpg") no-repeat center bottom;
  background-size: cover;
  z-index: -1;
  -webkit-animation-name: mvFadeIn;
          animation-name: mvFadeIn;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  opacity: 0;
}
#page-lightisfuture .mv h2 {
  max-width: 900px;
  margin-inline: auto;
  padding-top: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #C60012;
  text-shadow: 1px 1px 1px white;
  -webkit-animation-name: mvFadeIn;
          animation-name: mvFadeIn;
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  opacity: 0;
}
#page-lightisfuture .mv h2 .en {
  font-family: "henderson-sans-basic", sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 72px;
  letter-spacing: -.05em;
  line-height: 1;
}
#page-lightisfuture .mv h2 .ja {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  font-weight: bold;
  margin-left: -120px;
  letter-spacing: .06em;
}
@-webkit-keyframes mvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#page-lightisfuture .content-main {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding-bottom: 80px;
}
#page-lightisfuture .content-main .copy {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  line-height: 2.5;
  z-index: 2;
}
#page-lightisfuture .content-main .img {
  position: absolute;
  right: 20px;
  top: 180px;
}

#page-technology {
  position: relative;
  padding-top: 50px;
  background: #000;
  color: #fff;
}
#page-technology h2.sec-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 30px;
}
#page-technology p.copy {
  font-size: 18px;
  font-weight: bold;
  line-height: 2.3;
  margin: 0;
}
#page-technology #intro {
  position: relative;
  max-width: 900px;
  margin: 0 auto 160px;
}
#page-technology #intro .img {
  position: absolute;
  right: 0;
  bottom: 100px;
}
#page-technology #quality {
  position: relative;
  max-width: 900px;
  margin: 0 auto 100px;
  padding-left: 260px;
}
#page-technology #quality .img {
  position: absolute;
  left: -120px;
  bottom: 10px;
}

#page-world {
  position: relative;
  padding-top: 50px;
  background: #000;
  color: #fff;
}
#page-world .page-title {
  background: #FEBDA1;
}
#page-world .content-main {
  max-width: 900px;
  margin-inline: auto;
}
#page-world .content-main .lead {
  font-size: 18px;
  font-weight: bold;
  line-height: 2.3;
  margin-bottom: 60px;
}
#page-world .content-main .world-list {
  margin-bottom: 120px;
}
#page-world .content-main .world-list li {
  width: 100%;
  height: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  margin-bottom: 40px;
}
#page-world .content-main .world-list li .thumb {
  position: relative;
  width: 230px;
  height: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
#page-world .content-main .world-list li .thumb .img {
  position: absolute;
  left: 0;
  top: 0;
}
#page-world .content-main .world-list li .thumb .title-en {
  position: relative;
  font-family: "henderson-sans-basic", sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 1.5px 1.5px 1.5px black;
  margin: 0;
}
#page-world .content-main .world-list li .text {
  width: calc(100% - 230px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #414141;
  padding-left: 30px;
}
#page-world .content-main .world-list li .text h3 {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  border-bottom: 4px solid #BB1B21;
  letter-spacing: .05em;
  padding-bottom: 3px;
  margin: 0;
}
#page-world .content-main .world-list li .text .copy {
  padding-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

#page-support {
  position: relative;
  padding-top: 50px;
  background: #000;
  color: #fff;
}
#page-support #support {
  max-width: 900px;
  margin: 0 auto 120px;
}
#page-support #support h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 30px;
}
#page-support #support .copy {
  font-size: 18px;
  font-weight: bold;
  line-height: 2.5;
  margin-bottom: 2.5em;
}
#page-support #support .link-office {
  position: relative;
  width: 100%;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #4d4d4d), color-stop(50%, #4d4d4d), to(black));
  background: linear-gradient(to right, #4d4d4d 50%, #4d4d4d 50%, black 100%);
  margin-top: 80px;
}
#page-support #support .link-office::before {
  content: "";
  width: calc(50% + 100px);
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #800303), to(#c60012));
  background: linear-gradient(to right, #800303 25%, #c60012 100%);
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
  position: absolute;
  right: 50%;
  top: 0;
  z-index: 1;
}
#page-support #support .link-office h3 {
  position: relative;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 60px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  z-index: 2;
  margin: 0;
}
#page-support #support .link-office .btn {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../images/lightisfuture/support/link_office_bg.png") no-repeat center;
  background-size: 338px;
}
#page-support #support .link-office .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: 170px;
  height: 40px;
  font-size: 19px;
  font-weight: bold;
  background: rgba(255, 2, 0, 0.75);
  color: #fff;
  border-radius: 1000px;
}
#page-support #support .link-office .btn a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 17px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
#page-support #support .link-office .btn a:hover {
  background: rgba(255, 255, 255, 0.75);
  color: #FF0200;
}
#page-support #support .link-office .btn a:hover::after {
  background: #FF0200;
}

/* modal parts */
.modal-content {
  height: auto;
  max-height: 85%;
  max-width: 80%;
  top: 50%;
  left: 50%;
  position: fixed;
  display: none;
  z-index: 992;
  margin: 0;
  padding: 60px 0 30px;
  overflow: visible;
  background-color: #fff;
  overflow: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow-scrolling: touch;
}
.modal-content .modal-inner {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.modal-overlay {
  z-index: 990;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-open:hover {
  cursor: pointer;
}

.modal-open:hover {
  cursor: pointer;
}

.modal-close {
  display: table;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: underline;
  font-size: 22px;
}
.modal-close:hover {
  cursor: pointer;
  opacity: .7;
}

.crossbtn {
  position: absolute;
  width: 19px;
  height: 19px;
  top: 20px;
  right: 20px;
}
.crossbtn::before, .crossbtn::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  background: #414141;
  left: 50%;
  top: 50%;
}
.crossbtn::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.crossbtn::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.modal-gmap {
  width: 530px;
}
.modal-gmap .gmap {
  width: 100%;
  height: 380px;
  margin-bottom: 20px;
}
.modal-gmap .gmap iframe {
  width: 100%;
  height: 100%;
}
.modal-gmap .access {
  padding-left: 15px;
}
.modal-gmap .access h4 {
  display: table;
  padding: 0 1em;
  font-size: 16px;
  font-weight: bold;
  background: #BB1B21;
  line-height: 1.8em;
  border-radius: 1000px;
  margin-bottom: 15px;
}
.modal-gmap .access p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 38px;
  font-size: 16px;
  color: #414141;
  padding-left: 1em;
  border-left: 5px solid #BB1B21;
  text-align: left;
  margin: 0;
}

.modal-area {
  width: 833px;
}
.modal-area h4 {
  font-weight: bold;
  line-height: 38px;
  font-size: 22px;
  color: #414141;
  padding-left: .6em;
  border-left: 5px solid #BB1B21;
  text-align: left;
  margin-bottom: 20px;
}
.modal-area p.copy {
  font-size: 16px;
  margin: 0;
  color: #414141;
  text-align: left;
}
.modal-area .address {
  margin-top: 20px;
}
.modal-area .address h5 {
  display: table;
  padding: 0 1em;
  font-size: 18px;
  font-weight: bold;
  background: #808080;
  line-height: 1.8em;
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.modal-area .address p.copy {
  line-height: 1.4;
}
.modal-area .address p.copy strong {
  font-size: 1.05em;
}
.modal-area .address.last {
  margin-top: 40px;
}
.modal-area .covering {
  margin-top: 25px;
}
.modal-area .covering h5 {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #414141;
  border-top: 1px solid #414141;
  border-bottom: 1px solid #414141;
  padding: .3em 0;
  margin-bottom: 10px;
}
.modal-area .covering p {
  display: table;
  margin-inline: auto;
  font-size: 18px;
  font-weight: bold;
  color: #414141;
  text-align: left;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  aside {
    position: static;
    height: auto;
    width: 100%;
  }
  aside.philosophy .sub-menu nav {
    background: transparent;
  }
  aside .btnHamburger-side {
    display: none !important;
  }
  aside .btnClose-side {
    display: none !important;
  }
  aside nav {
    display: block !important;
  }
  aside .sub-menu {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
  aside .sub-menu nav {
    width: 100%;
    background: #000;
    padding: 0 0 70px;
  }
  aside .sub-menu h3 {
    display: none;
  }
  aside .sub-menu ul {
    width: 40%;
    max-width: 160px;
    margin-inline: auto;
    gap: 15px;
  }
  aside .sub-menu ul li {
    line-height: 1;
  }
  aside .sub-menu ul li span.current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 3em;
    padding-left: 0;
    color: #414141;
    background: #fff;
    font-size: 12px;
  }
  aside .sub-menu ul li span.current::before {
    content: none;
  }
  aside .sub-menu ul li span.current::after {
    content: none;
  }
  aside .sub-menu ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 3em;
    padding-left: 0;
    color: #fff;
    font-size: 12px;
    border: 1px solid #fff;
  }
  aside .sub-menu ul li a:hover {
    color: #fff;
  }
  aside .other-menu {
    position: relative;
    height: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  aside .other-menu nav {
    width: 60%;
    background: #fff;
    margin-inline: auto;
    padding: 50px 0 70px;
  }
  aside .other-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .page-title {
    height: 110px;
    margin-bottom: 35px;
    overflow: hidden;
  }
  .page-title h2 {
    width: 85%;
  }
  .page-title h2 .en {
    font-family: "henderson-sans-basic", sans-serif;
    font-weight: 100;
    font-style: italic;
    font-size: 21px;
    margin-bottom: 5px;
  }
  .page-title h2 .ja {
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 11px;
    letter-spacing: .1em;
  }
  .page-title .title-img {
    left: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-title .title-img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }

  .page-links ul {
    width: 60%;
    max-width: 180px;
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding-bottom: 65px;
  }
  .page-links ul li a, .page-links ul li span.current {
    width: 100%;
    height: 3em;
    font-size: 12px;
  }

  #page-lightisfuture {
    padding-top: 60px;
  }
  #page-lightisfuture .mv {
    height: 375px;
    margin-bottom: 60px;
  }
  #page-lightisfuture .mv::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../images/lightisfuture/mv.jpg") no-repeat center bottom;
    background-size: cover;
    z-index: -1;
  }
  #page-lightisfuture .mv h2 {
    width: 90%;
    height: 100%;
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 0 auto;
  }
  #page-lightisfuture .mv h2 .en {
    font-family: "henderson-sans-basic", sans-serif;
    font-weight: 100;
    font-style: italic;
    font-size: 62px;
    letter-spacing: -.05em;
    line-height: 1;
  }
  #page-lightisfuture .mv h2 .ja {
    font-size: 21px;
    margin-left: -105px;
  }
  #page-lightisfuture .content-main {
    width: 85%;
    padding-bottom: 80px;
  }
  #page-lightisfuture .content-main .copy {
    font-size: 14px;
    line-height: 2;
  }
  #page-lightisfuture .content-main .img {
    width: 50%;
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0;
  }

  #page-technology {
    padding-top: 60px;
  }
  #page-technology h2.sec-title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  #page-technology p.copy {
    position: relative;
    font-size: 14px;
    line-height: 2;
    z-index: 2;
  }
  #page-technology #intro {
    width: 85%;
    margin: 0 auto 70px;
  }
  #page-technology #intro .img {
    margin-top: 30px;
    position: static;
  }
  #page-technology #quality {
    width: 85%;
    margin: 0 auto;
    padding-left: 0;
  }
  #page-technology #quality .img {
    width: 78%;
    position: relative;
    margin-inline: auto;
    left: auto;
    bottom: auto;
    margin-top: -40px;
  }

  #page-world {
    padding-top: 60px;
  }
  #page-world .page-title {
    background: #FEBDA1;
  }
  #page-world .content-main {
    width: 100%;
  }
  #page-world .content-main .lead {
    width: 85%;
    font-size: 14px;
    line-height: 2;
    margin: 0 auto 90px;
  }
  #page-world .content-main .world-list {
    margin-bottom: 60px;
  }
  #page-world .content-main .world-list li {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 90px;
  }
  #page-world .content-main .world-list li:last-child {
    margin-bottom: 0;
  }
  #page-world .content-main .world-list li .thumb {
    position: absolute;
    width: 30vw;
    height: 30vw;
    top: -10vw;
  }
  #page-world .content-main .world-list li .thumb .img {
    width: 100%;
  }
  #page-world .content-main .world-list li .thumb .title-en {
    position: relative;
    font-family: henderson-sans-basic, sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 15px;
    text-shadow: 0.7px 0.7px 0.7px black;
  }
  #page-world .content-main .world-list li .text {
    width: 100%;
    display: block;
    padding-left: 0;
  }
  #page-world .content-main .world-list li .text h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 20vw;
    width: calc(100% - 30vw - 15px);
    padding-bottom: 3px;
    font-size: 18px;
    border-bottom: 2px solid #BB1B21;
    margin: 0 0 0 auto;
    line-height: 1.3;
  }
  #page-world .content-main .world-list li .text .copy {
    width: 85%;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 12px;
    line-height: 1.8;
  }

  #page-support {
    padding-top: 60px;
  }
  #page-support #support {
    width: 85%;
    margin: 0 auto 70px;
  }
  #page-support #support h2 {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  #page-support #support .copy {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 2em;
  }
  #page-support #support .link-office {
    position: relative;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #4d4d4d), color-stop(50%, #4d4d4d), to(black));
    background: linear-gradient(to right, #4d4d4d 50%, #4d4d4d 50%, black 100%);
    margin-top: 60px;
  }
  #page-support #support .link-office::before {
    content: none;
  }
  #page-support #support .link-office h3 {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: .8em 0;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(25%, #800303), to(#c60012));
    background: linear-gradient(to right, #800303 25%, #c60012 100%);
  }
  #page-support #support .link-office .btn {
    width: 100%;
    padding: 35px 0;
    background: url("../images/lightisfuture/support/link_office_bg.png") no-repeat center;
    background-size: 80%;
  }
  #page-support #support .link-office .btn a {
    gap: 6px;
    width: 150px;
    height: 2.5em;
    font-size: 16px;
  }
  #page-support #support .link-office .btn a::after {
    width: 13px;
    height: 15px;
  }

  /* modal parts */
  .modal-content {
    max-width: none;
    width: 90%;
    padding: 50px 2.5% 30px;
  }
  .modal-content .modal-inner {
    max-width: 94%;
  }

  .modal-close {
    width: auto;
    font-size: 15px;
    font-weight: bold;
  }

  .crossbtn {
    width: 18px;
    height: 18px;
    top: 20px;
    right: 20px;
  }
  .crossbtn::before, .crossbtn::after {
    width: 25px;
    height: 1px;
  }

  .modal-gmap {
    width: 90%;
  }
  .modal-gmap .gmap {
    width: 100%;
    height: 380px;
    margin-bottom: 20px;
  }
  .modal-gmap .gmap iframe {
    width: 100%;
    height: 100%;
  }
  .modal-gmap .access {
    padding-left: 5px;
  }
  .modal-gmap .access h4 {
    display: table;
    padding: 0 1em;
    font-size: 11px;
    line-height: 1.8em;
    border-radius: 1000px;
    margin-bottom: 10px;
  }
  .modal-gmap .access p {
    min-height: auto;
    font-size: 14px;
    padding-left: .5em;
    border-left: 3px solid #BB1B21;
  }

  .modal-area {
    width: 90%;
  }
  .modal-area h4 {
    line-height: 1.5;
    font-size: 16px;
    padding-left: .6em;
    border-left: 6px solid #BB1B21;
    margin-bottom: 15px;
  }
  .modal-area p.copy {
    font-size: 14px;
  }
  .modal-area .address {
    margin-top: 20px;
  }
  .modal-area .address h5 {
    display: block;
    padding: 0 1em;
    font-size: 15px;
    line-height: 2em;
    margin-bottom: 10px;
    letter-spacing: .01em;
    text-align: left;
  }
  .modal-area .address p.copy {
    line-height: 1.5;
  }
  .modal-area .address p.copy strong {
    font-size: 1.05em;
  }
  .modal-area .address.last {
    margin-top: 40px;
  }
  .modal-area .covering {
    margin-top: 15px;
  }
  .modal-area .covering h5 {
    font-size: 15px;
    border: 1px solid #414141;
    padding: .3em 0;
    margin-bottom: 10px;
  }
  .modal-area .covering p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.7;
    margin: 0;
  }
}

/*# sourceMappingURL=lightisfuture.css.map */