@media (min-width: 835px) {
  @-webkit-keyframes zoomUp {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1.15);
              transform: scale(1.15);
    }
  }
  @keyframes zoomUp {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1.15);
              transform: scale(1.15);
    }
  }
  #contents .cover {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    overflow: hidden;
  }
  #contents .cover .slideshow li {
    height: 100vh;
  }
  #contents .cover .slideshow li img {
    max-width: none;
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #contents .cover .slideshow li.addanim {
    -webkit-animation: zoomUp 10s linear 0s normal both;
            animation: zoomUp 10s linear 0s normal both;
  }
  #contents .cover .scroll {
    height: 40px;
    position: absolute;
    right: 3vw;
    bottom: 3vw;
    border-left: 1px solid #fff;
    font-size: 0;
    text-indent: -9999px;
  }
  #contents .cover .scroll::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
  }
  main {
    margin-top: 100vh;
  }
  main .chapter .inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  main .chapter .details * {
    color: #fff;
  }
  main .chapter .details h2 {
    font-size: 2rem;
    position: relative;
  }
  main .chapter .details h2 img {
    display: block;
    height: 46px;
    margin-bottom: 20px;
  }
  main .chapter .details h2::before {
    content: "";
    display: block;
    width: 50px;
    border-top: 1px solid #fff;
    position: absolute;
    top: 23px;
  }
  main .chapter .details .note {
    margin-top: 20px;
  }
  main .chapter .details .note p {
    font-size: 1.6rem;
  }
  main .chapter .details .more {
    margin-top: 50px;
  }
  main .chapter .details .more a {
    position: relative;
    display: inline-block;
    padding: 15px 0 15px 70px;
    border-bottom: 1px solid #fff;
  }
  main .chapter .details .more a::before, main .chapter .details .more a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transition: left 0.3s ease-out;
    transition: left 0.3s ease-out;
  }
  main .chapter .details .more a::after {
    width: 6px;
    height: 6px;
    left: 35px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
  main .chapter .details .more a::before {
    width: 40px;
    border-bottom: 1px solid #fff;
    left: 0;
  }
  main .chapter .details .more a:hover::before {
    left: 5px;
  }
  main .chapter .details .more a:hover::after {
    left: 40px;
  }
  main .service {
    background: rgba(51, 46, 46, 0.9);
    position: relative;
  }
  main .service .movie {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    overflow: hidden;
  }
  main .service .movie::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(51, 46, 46, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }
  main .service .movie video {
    width: 100%;
    display: block;
    position: absolute;
    left: 50%;
    top: 30%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  main .service .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-left: 7%;
    position: relative;
    z-index: 3;
  }
  main .service .inner figure {
    width: 38.5%;
    margin-right: 10%;
  }
  main .service .inner figure img {
    border-top-right-radius: 80px;
  }
  main .service .inner .details {
    padding-right: 3%;
  }
  main .service .inner .details > * {
    padding-left: 75px;
  }
  main .service .inner .details h2::before {
    left: 0;
  }
  main .service .inner .details .more {
    text-align: right;
  }
  main .about {
    background: #A3A8AC;
  }
  main .about .inner {
    padding-left: 7%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  main .about .inner figure {
    width: 49.5%;
    margin-left: 7%;
  }
  main .about .inner figure img {
    border-top-left-radius: 80px;
  }
  main .about .inner .details {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    min-width: 20em;
  }
  main .about .inner .details h2::before {
    right: 0;
  }
}
@media (max-width: 834px) {
  @-webkit-keyframes zoomUp {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1.15);
              transform: scale(1.15);
    }
  }
  @keyframes zoomUp {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1.15);
              transform: scale(1.15);
    }
  }
  #contents .cover {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    overflow: hidden;
  }
  #contents .cover .slideshow li {
    height: 100vh;
  }
  #contents .cover .slideshow li img {
    max-width: none;
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #contents .cover .slideshow li.addanim {
    -webkit-animation: zoomUp 10s linear 0s normal both;
            animation: zoomUp 10s linear 0s normal both;
  }
  #contents .cover .scroll {
    height: 40px;
    position: absolute;
    right: 7vw;
    bottom: 10vw;
    border-left: 1px solid #fff;
    font-size: 0;
    text-indent: -9999px;
  }
  #contents .cover .scroll::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
  }
  main {
    margin-top: 100vh;
  }
  main .chapter .inner {
    padding: 100px 0;
  }
  main .chapter .details * {
    color: #fff;
  }
  main .chapter .details h2 {
    font-size: 2rem;
    position: relative;
  }
  main .chapter .details h2 img {
    display: block;
    height: 40px;
    margin-bottom: 20px;
  }
  main .chapter .details .note {
    margin-top: 20px;
  }
  main .chapter .details .note p {
    font-size: 1.6rem;
  }
  main .chapter .details .more {
    margin-top: 50px;
    text-align: right;
  }
  main .chapter .details .more a {
    position: relative;
    display: inline-block;
    padding: 15px 0 15px 70px;
    border-bottom: 1px solid #fff;
  }
  main .chapter .details .more a::before, main .chapter .details .more a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transition: left 0.3s ease-out;
    transition: left 0.3s ease-out;
  }
  main .chapter .details .more a::after {
    width: 6px;
    height: 6px;
    left: 35px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
  main .chapter .details .more a::before {
    width: 40px;
    border-bottom: 1px solid #fff;
    left: 0;
  }
  main .chapter .details .more a:hover::before {
    left: 5px;
  }
  main .chapter .details .more a:hover::after {
    left: 40px;
  }
  main .service {
    background: rgba(51, 46, 46, 0.9);
    position: relative;
  }
  main .service .movie {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    overflow: hidden;
  }
  main .service .movie::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(51, 46, 46, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }
  main .service .movie video {
    width: auto;
    max-width: none;
    min-width: 100vw;
    min-height: 100%;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  main .service .inner {
    position: relative;
    z-index: 3;
  }
  main .service .inner figure {
    width: 90%;
  }
  main .service .inner figure img {
    border-top-right-radius: 80px;
  }
  main .service .inner .details {
    width: 80%;
    margin: 60px auto 0;
  }
  main .about {
    background: #A3A8AC;
    padding-left: 10%;
  }
  main .about .inner figure img {
    border-top-left-radius: 80px;
  }
  main .about .inner .details {
    margin-top: 50px;
    padding-right: 10%;
  }
}