@charset "UTF-8";
.mobile-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  text-align: center;
  color: #fff;
  top: 0;
  right: 0;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.mobile-menu .inner {
  width: 100%;
  height: 100%;
  padding: 100px 100px 40px 20px;
}

@media (min-width: 960px) {
  .mobile-menu .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 80%;
    max-width: 1070px;
    margin: 0 auto;
    padding: 100px 0 40px 0;
  }
}

.mobile-menu .upper {
  text-transform: uppercase;
}

.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #142C4D;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.mobile-menu__main {
  text-align: left;
}

@media (min-width: 960px) {
  .mobile-menu__main {
    margin: 0 40px 0 0;
  }
}

.mobile-menu__main a:link {
  color: #FFFFFF;
  text-decoration: none;
}

.mobile-menu__main a:visited {
  color: #FFFFFF;
}

.mobile-menu__main a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-menu__main a:active {
  color: #FFFFFF;
}

.mobile-menu__title, .mobile-menu__title2 {
  display: block;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin: 2em 0 0.5em 0;
}

.mobile-menu__title a.line, .mobile-menu__title2 a.line {
  display: block;
  position: relative;
  margin: 0 0 1em 0;
}

.mobile-menu__title a.line::before, .mobile-menu__title2 a.line::before {
  display: block;
  content: "";
  background-color: #FFFFFF;
  width: 50px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -7px;
}

.mobile-menu__title ul li, .mobile-menu__title2 ul li {
  list-style: disc;
  font-size: 1.4rem;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin: 0 0 0 2em;
}

@media (min-width: 960px) {
  .mobile-menu__title2 {
    margin: 2.8em 0 0.5em 0;
  }
}

.mobile-menu__little {
  display: block;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-bottom: 1.5em;
}

.mobile-menu__little.mt {
  margin-top: 3em;
}

.mobile-menu__sns {
  margin-top: 1em;
}

.mobile-menu__sns img {
  width: 30px;
  height: auto;
  margin-right: 15px;
  -webkit-transition: .2s;
  transition: .2s;
}

.mobile-menu__sns img:hover {
  opacity: 0.8;
}

#wrapper.menu-open header .logo {
  opacity: 0;
  visibility: hidden;
}

#wrapper.menu-open header .call {
  opacity: 0;
  visibility: hidden;
}

#wrapper.menu-open header.smaller {
  background-color: rgba(255, 255, 255, 0);
  -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0);
          box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0);
}

#wrapper.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}

#wrapper.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}

#wrapper.menu-open .mobile-menu__btn span:nth-child(1) {
  -webkit-transition-delay: 70ms;
          transition-delay: 70ms;
  -webkit-transform: translateY(7px) rotate(135deg);
          transform: translateY(7px) rotate(135deg);
}

#wrapper.menu-open .mobile-menu__btn span:nth-child(2) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: translateX(-10px) scaleX(0);
          transform: translateX(-10px) scaleX(0);
  margin: 0 0 5px 0 !important;
}

#wrapper.menu-open .mobile-menu__btn span:nth-child(3) {
  width: 23px !important;
  -webkit-transition-delay: 140ms;
          transition-delay: 140ms;
  -webkit-transform: translateY(-7px) rotate(-135deg);
          transform: translateY(-7px) rotate(-135deg);
  margin: 0 0 0 0 !important;
}

/******************************************************************

Stylesheet: ベーススタイル

******************************************************************/
html {
  background-color: #fff;
  font-size: 62.5%;
  /*ルートのフォントサイズを10pxに*/
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body {
  font-size: 1.6em;
  /* ルートのフォントサイズを1.6em（16pxと同等のサイズ）に chrome対策のためemを使用 */
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}


.sp {
  display: block;
}

.pc {
  display: none;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.fade-in.inview {
  opacity: 0;
  -webkit-animation-name: kf-fadein;
          animation-name: kf-fadein;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.2;
          animation-delay: 0.2;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes kf-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes kf-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in-up.inview {
  opacity: 0;
  -webkit-animation-name: kf-fade-in-up;
          animation-name: kf-fade-in-up;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.2;
          animation-delay: 0.2;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes kf-fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes kf-fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

header {
  width: 100%;
  height: 88px;
  padding: 28px 0 0 0;
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header .inner {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

header .logo {
  width: 150px;
  -webkit-transform: 0.2s;
          transform: 0.2s;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

header .logo img {
  width: 150px;
  height: auto;
}

header #menubox {
  width: 106px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header #menubox .call {
  background-color: #142C4D;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  -webkit-transform: 0.2s;
          transform: 0.2s;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

header #menubox .call img {
  width: 100%;
  height: auto;
}

header #menubox .mobile-menu__btn {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #034799;
  padding: 18px 0 0 13px;
  cursor: pointer;
}

header #menubox .mobile-menu__btn span {
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}

header.smaller {
  background-color: white;
  -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
  padding: 0px 0 0 0;
  height: 70px;
}

header.smaller .logo {
  margin-top: 10px;
  width: 150px;
}

header.smaller .logo img {
  width: 150px;
  height: auto;
}

header.smaller #menubox .call {
  margin-top: 10px;
}

header.smaller #menubox .mobile-menu__btn {
  margin-top: 10px;
}


article {
  padding: 88px 0 0 0;
}

#top-img {
  width: 100%;
  position: relative;
}

#top-img .inner {
  width: 90%;
  margin: -88px auto 0 auto;
  position: relative;
}

#top-img .inner h2 {
  width: 14em;
  color: #999999;
  font-size: 1rem;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1px;
  text-align: left;
  position: absolute;
  top: 88px;
  left: 0px;
  z-index: 2;
}

#top-img .inner .txt-box {
  position: absolute;
  width: 100%;
  bottom: 27%;
  left: 0px;
  z-index: 2;
}

@media (max-height: 665px) {
  #top-img .inner .txt-box {
    bottom: 32%;
    left: 4%;
  }
}

#top-img .inner .banner {
  position: absolute;
  bottom: 90px;
  right: 0px;
  z-index: 3;
}

#top-img .inner .banner a {
  display: block;
  width: 200px;
  height: 70px;
  background: url("../images/king-logo-yoko.svg"), -webkit-linear-gradient(top, #D4F4FF 0%, #ffffff 100%);
  background-size: cover;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.29);
  border-radius: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5vw;
  text-align: left;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: 5px;
  -webkit-transition: .2s;
  transition: .2s;
}

#top-img .inner .banner a:hover {
  opacity: 0.8;
  text-decoration: none;
}

#top-img .inner #main-copy {
  padding-left: 4em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 5vw;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
  text-align: left;
  color: #FFFFFF;
  position: relative;
}

#top-img .inner #main-copy small {
  display: block;
  font-size: 4vw;
  margin-top: 0.5em;
}

#top-img .inner #main-copy small br {
  display: none;
}

#top-img .inner #main-copy .read {
  bottom: -90px;
  left: 2.5em;
  text-align: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#top-img .inner #main-copy .read strong {
  display: inline-block;
  width: auto;
  position: relative;
  z-index: 3;
}

#top-img .inner #main-copy .read strong::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  opacity: 0;
}

#top-img .inner #main-copy .read strong.inview span {
  opacity: 0;
  -webkit-animation-name: kf-readcopy;
          animation-name: kf-readcopy;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#top-img .inner #main-copy .read strong.inview::after {
  opacity: 1;
  -webkit-animation-name: kf-readcopy-base;
          animation-name: kf-readcopy-base;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#top-img .inner #main-copy .read strong span br {
  display: block;
}

#top-img .inner #main-copy .read strong br {
  display: block;
}

#top-img .inner #main-copy .read:nth-child(2).inview::after {
  -webkit-animation-name: kf-readcopy-base;
          animation-name: kf-readcopy-base;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#top-img .top-slider {
  position: absolute;
  top: 0;
  left: 30px;
  width: 100%;
  max-width: 1070px;
  height: 100%;
  z-index: 1;
}

#top-img .top-slider .slide {
  position: relative;
  width: 100%;
  max-width: 1070px;
  height: 100%;
  margin: 0;
  z-index: -1;
  -webkit-transform: skew(-20deg) translateX(18%);
          transform: skew(-20deg) translateX(18%);
  overflow: hidden;
}

#top-img .top-slider .slide img {
  max-width: 225%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) skew(20deg);
          transform: translate(-50%, -50%) skew(20deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#top-img .top-slider .slide::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 1070px;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.spot {
  padding: 35px 0;
  background-color: #94D3E0;
}

.spot .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
}

.spot .inner h3 {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0 0 15px 0;
}

.spot .inner .video {
  width: 100%;
  max-width: 680px;
  margin: 30px auto 0 auto;
}

.spot .inner .video .video-box {
  position: relative;
  padding-bottom: 56.25%;
}

.spot .inner .video .video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topics {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  background-color: #FFFFFF;
  padding: 10px 15px;
  width: 100%;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}

.topics.inview {
  opacity: 0;
  -webkit-animation-name: kf-topics;
          animation-name: kf-topics;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.topics .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: url("../images/topics-arrow.svg") no-repeat right bottom;
}

.topics .box .img {
  width: calc( ( 100% - 15px ) * 0.2);
}

.topics .box .img img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.topics .box .txt {
  width: calc( ( 100% - 15px ) * 0.8);
  text-align: left;
}

.topics .box .txt h3 {
  display: inline-block;
  width: 86px;
  height: 15px;
  background-color: #142C4D;
  color: #FFFFFF;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 15px;
  border-radius: 10px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.topics .box .txt p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.1;
}

.topics .box .txt p a {
  color: #000000;
  -webkit-transition: .2s;
  transition: .2s;
  opacity: 1;
}

.topics .box .txt p a:hover {
  opacity: 0.75;
  text-decoration: none;
}

@-webkit-keyframes kf-topics {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes kf-topics {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

#our-service {
  position: relative;
}

#our-service .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
  padding: 55px 0 35px 0;
}

#our-service .inner h3 {
  color: #142C4D;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1.4;
  margin: 0 0 20px 0;
  text-transform: capitalize;
}

#our-service .inner .sevice-menu .service-menu-type2 {
  margin: 0 auto 30px auto;
}

#our-service .inner .sevice-menu .service-menu-type2 a {
  display: inline-block;
  width: 100%;
  padding: 20px 20px 20px 20px;
  background: #034799 url("../../images/link-arrow-right-w.svg") no-repeat center right;
  background-size: 20px 20px;
  border-radius: 3px;
  white-space: nowrap;
  text-align: left;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  -webkit-transition: .2s;
  transition: .2s;
}

#our-service .inner .sevice-menu .service-menu-type2 a .en {
  color: #C9CACA;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 3vw;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}

#our-service .inner .sevice-menu .service-menu-type2 a .jp {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.8vw;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

#our-service .inner .sevice-menu .service-menu-type2 a:hover {
  background-color: #045ecb;
  text-decoration: none;
}

#our-service .inner .sevice-menu .service-menu-type3 {
  margin: 0 auto 30px auto;
}

#our-service .inner .sevice-menu .service-menu-type3 a {
  display: inline-block;
  width: 100%;
  padding: 20px 20px 20px 20px;
  background: #034799 url("../../images/link-arrow-right-w.svg") no-repeat center right;
  background-size: 20px 20px;
  border-radius: 3px;
  white-space: nowrap;
  text-align: left;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  -webkit-transition: .2s;
  transition: .2s;
}

#our-service .inner .sevice-menu .service-menu-type3 a .en {
  color: #C9CACA;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 3vw;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}

#our-service .inner .sevice-menu .service-menu-type3 a .jp {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.8vw;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

#our-service .inner .sevice-menu .service-menu-type3 a:hover {
  background-color: #045ecb;
  text-decoration: none;
}

#our-service::before {
  display: block;
  content: "";
  background-color: #142C4D;
  width: 1px;
  height: 50px;
  position: absolute;
  top: 0px;
  left: 50%;
}

#our-service .service-bg {
  background: url("../images/bg-img-top-left.png") no-repeat -100px 0px;
  background-size: cover;
}

#news {
  position: relative;
  background-color: #F4F5F7;
}

#news .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
  padding: 55px 0 35px 0;
}

#news .inner .txt-box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 30px 0;
}

#news .inner .txt-box .flex .news-title {
  text-align: left;
  width: calc( ( 100% - 120px ) / 2);
}

#news .inner .txt-box .flex .news-title h3 {
  color: #747A81;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1;
  margin: 0 0 15px 0;
  text-transform: capitalize;
}

#news .inner .txt-box .flex .news-title p {
  color: #747A81;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  margin: 0 0 0 0;
  white-space: nowrap;
}

#news .inner .txt-box .flex .more li {
  width: 105px;
}

#news .inner .txt-box .flex .more li a {
  display: block;
  width: 105px;
  height: 40px;
  background-color: #142C4D;
  color: #FFFFFF;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 40px;
  text-transform: capitalize;
  -webkit-transition: .2s;
  transition: .2s;
  opacity: 1;
  position: relative;
}

#news .inner .txt-box .flex .more li a:hover {
  opacity: 0.8;
  text-decoration: none;
}

#news .inner .txt-box .flex .more li a::before {
  display: block;
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: #FFFFFF #FFFFFF transparent transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 9px;
  top: 16px;
}

#news .inner .news-list dl {
  text-align: left;
  border-bottom: #A1ABB7 solid 1px;
  padding: 0 0 10px 0;
  margin: 0 0 30px 0;
}

#news .inner .news-list dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#news .inner .news-list dl dt .date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #A1ABB7;
}

#news .inner .news-list dl dt .tag {
  width: 6.5em;
  display: inline-block;
  padding: 0.15em 0.9em 0.1em 0.9em;
  height: 1em;
  margin: 0 0 0 1em;
  text-align: center;
}

#news .inner .news-list dl dt .tag-color1 {
  position: relative;
  background-color: #034799;
  border-radius: 20px;
}

#news .inner .news-list dl dt .tag-color1::before {
  display: block;
  content: "プレスリリース";
  font-size: 1rem;
  line-height: 1;
  color: #FFFFFF;
}

#news .inner .news-list dl dt .tag-color2 {
  position: relative;
  background-color: #47AF11;
  border-radius: 20px;
}

#news .inner .news-list dl dt .tag-color2::before {
  display: block;
  content: "お知らせ";
  font-size: 1rem;
  line-height: 1;
  color: #FFFFFF;
}

#news .inner .news-list dl dt .tag-color3 {
  position: relative;
  background-color: #eea812;
  border-radius: 20px;
}

#news .inner .news-list dl dt .tag-color3::before {
  display: block;
  content: "I　R";
  font-size: 1rem;
  line-height: 1;
  color: #FFFFFF;
}

#news .inner .news-list dl dd {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
}

#news .inner .news-list dl dd a {
  color: #333333;
  opacity: 1;
  -webkit-transition: .2s;
  transition: .2s;
}

#news .inner .news-list dl dd a:hover {
  opacity: 0.75;
  text-decoration: none;
}

.side-icon {
  position: absolute;
  bottom: 50%;
  left: 0;
  z-index: 2;
}

.side-icon__sns {
  margin-bottom: 35px;
}

.side-icon__sns li {
  margin-bottom: 15px;
}

.side-icon__sns li img {
  width: 25px;
  height: auto;
  border-radius: 3px;
  -webkit-transition: .2s;
  transition: .2s;
}

.side-icon__sns li img:hover {
  opacity: 0.5;
}

.scroll {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 1px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  text-transform: uppercase;
}

.scroll::before {
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  width: 80px;
  height: 1px;
  position: absolute;
  right: -90px;
  top: 0.5em;
}

.scroll::after {
  display: block;
  content: "";
  background-color: #FFFFFF;
  width: 80px;
  height: 3px;
  position: absolute;
  right: -90px;
  top: 0.5em;
  -webkit-animation: kf-scroll 3s ease infinite;
          animation: kf-scroll 3s ease infinite;
  -webkit-transform-origin: left;
          transform-origin: left;
}

@-webkit-keyframes kf-scroll {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  20% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  20.1% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  40% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

@keyframes kf-scroll {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  20% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  20.1% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  40% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

#main-img {
  width: 100%;
  min-width: 100vw;
  max-width: 1070px;
  height: calc((100vh - 88px) - 30px);
  min-height: 700px;
  margin-top: -45px;
  position: relative;
}

#main-img .inner {
  width: 90%;
  height: calc((100vh - 88px) - 30px);
  margin: 0 auto;
  position: relative;
}

#main-img .inner .txt-box {
  position: absolute;
  width: 100%;
  min-height: 350px;
  top: 45%;
  left: 18%;
  z-index: 2;
  text-align: left;
}

#main-img #main-copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 6.3vw;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
  position: relative;
}

#main-img #main-copy a {
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: .2s;
  transition: .2s;
}

#main-img #main-copy a:hover {
  opacity: 0.8;
  text-decoration: none;
}

#main-img #main-copy .message-banner {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: none;
}

#main-img #main-copy .message-banner a {
  display: inline-block;
  background: #034799 url("../images/link-arrow-down-w.svg") no-repeat center right;
  background-size: 15px 15px;
  color: #FFFFFF;
  margin-top: 1em;
  padding: 0.5em 2em 0.5em 1em;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
}

#main-img #main-copy .message-banner a:hover {
  background-color: #045ecb;
  text-decoration: none;
}

#main-img ul {
  display: inline-block;
  margin: 0 auto;
  position: absolute;
  left: -5%;
  bottom: 0;
}

#main-img ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.8vw;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: left;
  position: relative;
}

#main-img ul li::before {
  display: block;
  content: "";
  position: absolute;
  width: 15px;
  height: 3px;
  background-color: #000000;
  top: 1em;
  left: -25px;
}

#main-img .product-logo {
  width: 83%;
  text-align: right;
  margin: 28px 0 0 15px;
}

#main-img .product-logo img {
  width: 40%;
  height: auto;
}

#main-img .main-slider {
  position: absolute;
  top: 0;
  left: 10px;
  width: 100%;
  max-width: 1070px;
  z-index: 1;
}

#main-img .main-slider .slide {
  position: relative;
  width: 100%;
  max-width: 1070px;
  height: calc(100vh - 240px);
  margin: 0;
  z-index: -1;
  -webkit-transform: skew(-20deg) translateX(18%);
          transform: skew(-20deg) translateX(18%);
  overflow: hidden;
}

#main-img .main-slider .slide img {
  max-width: 185%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) skew(20deg);
          transform: translate(-50%, -50%) skew(20deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#main-img .main-slider .slide::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  max-width: 1070px;
  height: calc(100vh - 240px);
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

#main-img h1 {
  text-align: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#main-img h1 strong {
  display: inline-block;
  width: auto;
  position: relative;
  z-index: 3;
}

#main-img h1 strong::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  opacity: 0;
}

#main-img h1 strong.inview span {
  opacity: 0;
  -webkit-animation-name: kf-readcopy;
          animation-name: kf-readcopy;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#main-img h1 strong.inview::after {
  opacity: 1;
  -webkit-animation-name: kf-readcopy-base;
          animation-name: kf-readcopy-base;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#main-img h1:nth-child(2).inview::after {
  -webkit-animation-name: kf-readcopy-base;
          animation-name: kf-readcopy-base;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes kf-readcopy-base {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.1% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

@keyframes kf-readcopy-base {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.1% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

@-webkit-keyframes kf-readcopy {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes kf-readcopy {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#prelude {
  margin-top: 30px;
  padding: 35px 0;
  background-color: #F4F5F7;
  position: relative;
}

#prelude .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
  background: url("../images/og-img.svg") no-repeat;
  background-size: 28%;
  background-position: top 0px right 0px;
}

#prelude .inner p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3vw;
  line-height: 1.6;
  text-align: left;
  margin: 0 0 20px 0;
  padding-right: 30%;
}

#prelude .inner h4 {
  color: #034799;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.9vw;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

#prelude .inner h4 strong {
  color: #E60012;
}

#prelude .inner ul {
  width: 100%;
  display: block;
  position: relative;
}

#prelude .inner ul::before {
  content: "";
  display: block;
  padding-top: 38%;
  /* 高さを幅の38%に固定 */
}

#prelude .inner ul li a {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #034799 url("../images/btn-focus-sp@2x.jpg") center center;
  background-size: cover;
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#prelude .inner ul li a:hover {
  opacity: 0.8;
}

#prelude .inner ul li a span {
  display: block;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

#prelude2 {
  margin-top: 30px;
  padding: 35px 0;
  background-color: #E9F9E8;
  position: relative;
}

#prelude2 .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
  background: url("../images/og-img2.svg") no-repeat;
  background-size: 28%;
  background-position: top 0px right 0px;
}

#prelude2 .inner p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3vw;
  line-height: 1.6;
  text-align: left;
  margin: 0 0 20px 0;
  padding-right: 30%;
}

#prelude2 .inner h4 {
  color: #47AF11;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.9vw;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

#prelude2 .inner h4 strong {
  color: #E60012;
}

#prelude2 .inner ul {
  width: 100%;
  display: block;
  position: relative;
}

#prelude2 .inner ul::before {
  content: "";
  display: block;
  padding-top: 38%;
  /* 高さを幅の38%に固定 */
}

#prelude2 .inner ul li a {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #034799 url("../images/btn-focus-sp@2x.jpg") center center;
  background-size: cover;
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#prelude2 .inner ul li a:hover {
  opacity: 0.8;
}

#prelude2 .inner ul li a span {
  display: block;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

#location1 {
  padding: 35px 0;
}

#location1 .inner {
  width: 80%;
  margin: 0 auto;
}

#location1 .inner h3 {
  background-color: #034799;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 4vw;
  line-height: 1.4;
  text-align: left;
  padding: 1em 2em;
  margin: 0 20px 50px 0;
  -webkit-box-shadow: 20px 20px 0px 0px #A1ABB7;
          box-shadow: 20px 20px 0px 0px #A1ABB7;
}

#location1 .inner ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#location1 .inner ol li {
  display: block;
  width: calc((100% - 20px) * 0.5);
  margin-bottom: 20px;
  position: relative;
}

#location1 .inner ol li.blank {
  display: none;
}

#location1 .inner ol li:nth-child(11) {
  display: none;
}

#location1 .inner ol li:nth-child(12) {
  display: none;
}

#location1 .inner ol li .img {
  width: 100%;
}

#location1 .inner ol li .img img {
  width: 100%;
  height: auto;
}

#location1 .inner ol li p {
  color: #142C4D;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 0.5em;
}

#location2 {
  padding: 35px 0 55px 0;
}

#location2 .inner {
  width: 80%;
  margin: 0 auto;
}

#location2 .inner h3 {
  background-color: #034799;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 4vw;
  line-height: 1.4;
  text-align: left;
  padding: 1em 2em;
  margin: 0 20px 50px 0;
  -webkit-box-shadow: 20px 20px 0px 0px #A1ABB7;
          box-shadow: 20px 20px 0px 0px #A1ABB7;
}

#location2 .inner ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#location2 .inner ol li {
  display: block;
  width: calc((100% - 20px) * 0.5);
  margin-bottom: 20px;
  position: relative;
}

#location2 .inner ol li img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

#service1 {
  padding: 55px 0 55px 0;
  background-color: #94D3E0;
  position: relative;
}

#service1 .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
}

#service1 .inner h3 {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

#service1 .inner p {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
  margin: 0 0 20px 0;
}

#service1 .inner h4 {
  background-color: #FFFFFF;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
  padding: 0.5em 1em;
  border-radius: 20px;
  margin: 0 0 20px 0;
}

#service1 .inner h4 small {
  font-weight: 300;
  font-size: 1.2rem;
}

#service1 .inner .flex .wanted {
  width: 80%;
  margin: 0 auto;
  background-color: #034799;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  padding: 0.5em 0;
  border-radius: 10px;
}

#service1 .inner .flex .step-box {
  width: 100%;
  margin-bottom: 30px;
}

#service1 .inner .flex .step-box .box {
  background-color: #FFFFFF;
  margin: 0 10px 15px 0;
  -webkit-box-shadow: 10px 10px 0px 0px #A1ABB7;
          box-shadow: 10px 10px 0px 0px #A1ABB7;
}

#service1 .inner .flex .step-box .box p {
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0 0 0 0;
}

#service1 .inner .flex .step-box .box .img img {
  width: 100%;
  height: auto;
}

#service1 .inner .flex .step-box .box .txt {
  padding: 0.7em 0.5em;
}

#service1 .inner .flex .step-box .box .txt p {
  font-size: 2.1rem;
  font-weight: 400;
  text-align: center;
}

#service1 .inner .flex .step-box .box .txt p em {
  font-family: "Roboto", sans-serif;
  color: #034799;
  font-size: 1.8rem;
  font-style: normal;
}

#faq {
  padding: 35px 0;
}

#faq .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
  border: #034799 dashed 2px;
  border-radius: 20px;
  padding: 30px 20px;
}

#faq .inner h3 {
  color: #034799;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  margin: 0 0 20px 0;
}

#faq .inner h3 small {
  display: inline-block;
  font-size: 4vw;
  line-height: 1.4;
}

#faq .inner dl {
  border-bottom: #034799 dashed 2px;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 0 0 30px 0;
  margin: 0 0 30px 0;
}

#faq .inner dl dt {
  font-weight: 700;
  background: url("../images/icon-q.svg") no-repeat 0px 5px;
  background-size: 25px 25px;
  padding: 0 0 0 30px;
  min-height: 26px;
}

#faq .inner dl dd {
  color: #034799;
  background: url("../images/icon-a.svg") no-repeat 0px 5px;
  background-size: 25px 25px;
  padding: 0 0 0 30px;
  min-height: 26px;
}

#faq .inner dl:last-child {
  border-bottom: none;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}

#products-data {
  padding: 50px 0 5px 0;
  background-color: #EFEFEF;
  position: relative;
}

#products-data .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
}

#products-data .inner h3 {
  color: #034799;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 30px 0;
}

#products-data .inner .flex {
  margin: 0 0 30px 0;
}

#products-data .inner .flex p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
  margin: 0 0 20px 0;
}

#products-data .inner .flex .img {
  width: 100%;
}

#products-data .inner .flex .img img {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}

#products-data .inner .flex .txt h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1.4;
  margin: 0 0 30px 0;
  text-align: left;
  position: relative;
}

#products-data .inner .flex .txt h4::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #bebebe;
  height: 2px;
  width: 100%;
  bottom: -10px;
  left: 0px;
}

#products-data .inner .flex .txt h4::after {
  display: block;
  content: "";
  position: absolute;
  background-color: #034799;
  height: 2px;
  width: 40%;
  bottom: -10px;
  left: 0px;
}

#products-data .inner .flex .txt ul {
  list-style-type: disc;
  margin: 0 0 20px 1.5em;
}

#products-data .inner .flex .txt ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
}

#price1 {
  padding: 35px 0 70px 0;
}

#price1 .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
}

#price1 .inner h3 {
  color: #034799;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

#price1 .inner h3 small {
  font-size: 1.8rem;
}

#price1 .inner .flex .price-box {
  border: #94D3E0 solid 4px;
  position: relative;
  padding: 0 0 1em 0;
}

#price1 .inner .flex .price-box h4 {
  background-color: #94D3E0;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 0.5em 0;
}

#price1 .inner .flex .price-box p {
  display: inline-block;
  color: #142C4D;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  margin: 10px auto 40px auto;
}

#price1 .inner .flex .price-box p strong {
  font-weight: 700;
  font-size: 6rem;
}

#price1 .inner .flex .price-box a {
  width: 80%;
  margin: 1em auto 0 auto;
  background-color: #E60012;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  padding: 0.5em 0;
  display: block;
  border-radius: 10px;
  opacity: 1;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-box-shadow: 3px 2px 3px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 3px 2px 3px 0px rgba(0, 0, 0, 0.4);
}

#price1 .inner .flex .price-box a:hover {
  opacity: 0.75;
  text-decoration: none;
}

#price1 .inner .flex .price-box .sale {
  width: 200px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -100px;
}

#price1 .inner .flex .price-box .sale img {
  width: 100%;
  height: auto;
}

#price1 .inner .flex .contact-box {
  background-color: #142C4D;
  color: #FFFFFF;
  padding: 20px;
  margin: 40px 0 0 0;
}

#price1 .inner .flex .contact-box .box {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}

#price1 .inner .flex .contact-box h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8;
}

#price1 .inner .flex .contact-box p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
}

#price1 .inner .flex .contact-box .call {
  width: 100%;
  margin-top: 10px;
}

#price1 .inner .flex .contact-box .call img {
  width: 100%;
  height: auto;
}

#price1 .message-box {
  width: 100%;
  margin: 40px auto 40px auto;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  background-color: #FFFFFF;
  padding: 30px 30px 20px 30px;
  -webkit-box-shadow: 0 15px 10px rgba(119, 119, 119, 0.644);
          box-shadow: 0 15px 10px rgba(119, 119, 119, 0.644);
}

#price1 .message-box .title {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0 0 2em 0;
  color: #000000;
  position: relative;
}

#price1 .message-box .title::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #000000;
  width: 100px;
  height: 1px;
  left: 0;
  bottom: -7px;
}

#price1 .message-box p {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0 0 1em 0;
  color: #000000;
}

#service2 {
  padding: 0 0 35px 0;
  background-color: #E9F9E8;
}

#service2 .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
}

#service2 .inner h3 {
  color: #47AF11;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.4;
  margin: 0 0 15px 0;
}

#service2 .inner h3 small {
  font-size: 1.8rem;
}

#service2 .inner p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  margin: 0 0 20px 0;
  color: #184D14;
}

#service2 .inner .video {
  width: 100%;
  max-width: 680px;
  margin: 30px auto 0 auto;
}

#service2 .inner .video .video-box {
  position: relative;
  padding-bottom: 56.25%;
}

#service2 .inner .video .video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#service2 .inner .filter-data {
  width: 100%;
  margin: 30px 0;
}

#service2 .inner .filter-data img {
  width: 100%;
  height: auto;
}

#service2 .inner .sales-point h4 {
  background-color: #47AF11;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
  padding: 0.5em 1em;
  border-radius: 20px;
  margin: 0 0 20px 0;
}

#service2 .inner .sales-point .flex {
  padding: 45px 0 0 0;
}

#service2 .inner .sales-point .flex dl {
  display: block;
  border: #47AF11 solid 2px;
  background-color: #FFFFFF;
  padding: 30px 20px;
  margin: 0 0 60px 0;
  position: relative;
}

#service2 .inner .sales-point .flex dl dt {
  color: #47AF11;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 20px 0;
}

#service2 .inner .sales-point .flex dl dd {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
}

#service2 .inner .sales-point .flex dl::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  min-height: 75px;
  background-position: center center;
  background-repeat: no-repeat;
  top: -55px;
  left: 0px;
}

#service2 .inner .sales-point .flex dl.point1::before {
  background-image: url("../images/point1.svg");
}

#service2 .inner .sales-point .flex dl.point2::before {
  background-image: url("../images/point2.svg");
}

#service2 .inner .sales-point .flex dl.point3::before {
  background-image: url("../images/point3.svg");
}

#service2 .inner .sales-point .flex dl.point4::before {
  background-image: url("../images/point4.svg");
}

#service2 .inner .sales-point .flex dl.point5::before {
  background-image: url("../images/point5.svg");
}

#service2 .inner .sales-point .flex dl.point6::before {
  background-image: url("../images/point6.svg");
}

#service2 .inner .sales-point .flex dl.point7::before {
  background-image: url("../images/point7.svg");
}

#service2 .inner .youtube-list .list {
  width: 100%;
  margin-bottom: 30px;
}

#service2 .inner .youtube-list .list a {
  display: block;
  -webkit-transition: .2s;
  transition: .2s;
  opacity: 1;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.4);
}

#service2 .inner .youtube-list .list a .img img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
  height: auto;
}

#service2 .inner .youtube-list .list a .txt {
  background-color: #47AF11;
  color: #FFFFFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 0.7em;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

#service2 .inner .youtube-list .list a:hover {
  opacity: 0.75;
  text-decoration: none;
}

#service2 .inner .youtube-list .list:nth-last-child() {
  margin-bottom: 0;
}

#service2 .inner .message-box {
  width: 100%;
  margin: 40px auto 40px auto;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  background-color: #FFFFFF;
  padding: 30px 30px 20px 30px;
  -webkit-box-shadow: 0 15px 10px rgba(119, 119, 119, 0.644);
          box-shadow: 0 15px 10px rgba(119, 119, 119, 0.644);
}

#service2 .inner .message-box .title {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0 0 2em 0;
  color: #000000;
  position: relative;
}

#service2 .inner .message-box .title::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #000000;
  width: 100px;
  height: 1px;
  left: 0;
  bottom: -7px;
}

#service2 .inner .message-box p {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0 0 1em 0;
  color: #000000;
}

#service2 .inner .procedure .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#service2 .inner .procedure .flex .box {
  width: calc( ( 100% - 20px ) / 2);
  background-color: #FFFFFF;
  margin-bottom: 30px;
}

#service2 .inner .procedure .flex .box .img {
  width: 100%;
}

#service2 .inner .procedure .flex .box .img img {
  width: 100%;
  height: auto;
}

#service2 .inner .procedure .flex .box .txt {
  padding: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: left;
}

#service2 .inner .procedure p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: left;
  color: #000000;
}

#price2 {
  padding: 35px 0;
}

#price2 .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
}

#price2 .inner h3 {
  color: #47AF11;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

#price2 .inner h3 small {
  font-size: 1.8rem;
}

#price2 .inner .flex .price-box {
  border: #47AF11 solid 4px;
  position: relative;
}

#price2 .inner .flex .price-box h4 {
  background-color: #47AF11;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  padding: 0.5em 0;
}

#price2 .inner .flex .price-box p {
  display: inline-block;
  color: #184D14;
  font-size: 2.1rem;
  line-height: 1.3;
  font-weight: 400;
  text-align: left;
  margin: 10px auto 30px auto;
}

#price2 .inner .flex .price-box p strong {
  font-weight: 700;
  font-size: 5rem;
}

#price2 .inner .flex .price-box p small {
  font-size: 1.6rem;
}

#price2 .inner .flex .price-box a {
  width: 80%;
  margin: 1em auto 0 auto;
  background-color: #E60012;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  padding: 0.5em 0;
  display: block;
  border-radius: 10px;
  opacity: 1;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-box-shadow: 3px 2px 3px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 3px 2px 3px 0px rgba(0, 0, 0, 0.4);
}

#price2 .inner .flex .price-box a:hover {
  opacity: 0.75;
  text-decoration: none;
}

#price2 .inner .flex .contact-box {
  background-color: #142C4D;
  color: #FFFFFF;
  padding: 20px;
  margin: 20px 0 0 0;
}

#price2 .inner .flex .contact-box .box {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}

#price2 .inner .flex .contact-box h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8;
}

#price2 .inner .flex .contact-box p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
}

#price2 .inner .flex .contact-box .call {
  width: 100%;
  margin-top: 10px;
}

#price2 .inner .flex .contact-box .call img {
  width: 100%;
  height: auto;
}

#other-products {
  padding: 35px 0;
}

#other-products .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
}

#other-products .inner h3 {
  background-color: #034799;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
  padding: 0.5em 1em;
  border-radius: 20px;
  margin: 0 0 20px 0;
}

#other-products .inner p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
  margin: 0 0 20px 0;
  color: #333333;
}

#other-products .inner .flex .other-box:nth-child(1) {
  margin-bottom: 60px;
}

#other-products .inner .flex .other-box .img img {
  width: 100%;
  height: auto;
}

#other-products .inner .flex .other-box .txt p {
  text-align: center;
}

#other-products .inner .flex .other-box .txt p.price {
  font-weight: 700;
  font-size: 2.1rem;
}

#other-products .inner .flex .other-box ul {
  width: 90%;
  margin: 0 auto;
}

#other-products .inner .flex .other-box ul li {
  width: 100%;
  margin-bottom: 15px;
}

#other-products .inner .flex .other-box ul li a img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition: .2s;
  transition: .2s;
  opacity: 1;
}

#other-products .inner .flex .other-box ul li a:hover img {
  opacity: 0.8;
}

#follow {
  padding: 35px 0;
}

#follow .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
}

#follow .inner h3 {
  background-color: #034799;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
  padding: 0.5em 1em;
  border-radius: 20px;
  margin: 0 0 20px 0;
}

#follow .inner .flex .pop {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
}

#follow .inner .flex .pop img {
  width: 100%;
  height: auto;
}

#follow .inner .flex .pop-img .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#follow .inner .flex .pop-img .flex .img {
  width: calc( ( 100% - 20px ) / 2);
}

#follow .inner .flex .pop-img .flex .img img {
  width: 100%;
  height: auto;
  border: #333333 solid 1px;
}

#follow .inner .flex .pop-img p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
  margin: 15px 0 0 0;
  color: #333333;
}

#page-title {
  position: relative;
  min-height: 160px;
  -webkit-transition: .2s;
  transition: .2s;
}

#page-title .title-box {
  position: absolute;
  width: 100%;
  height: 160px;
  top: 0;
  right: 0;
  background: url("../images/title-back.jpg") no-repeat bottom left;
  background-size: 100%;
  -webkit-transition: .2s;
  transition: .2s;
}

#page-title .title-box .box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  color: #FFFFFF;
}

#page-title .title-box .box .en {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 8vw;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.1em;
}

#page-title .title-box .box h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 4vw;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
}

#page-title .title-box .box div {
  display: inline-block;
  width: auto;
  position: relative;
  z-index: 3;
}

#page-title .title-box .box div::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  opacity: 0;
}

#page-title .title-box .box div.inview span {
  opacity: 0;
  -webkit-animation-name: kf-readcopy;
          animation-name: kf-readcopy;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#page-title .title-box .box div.inview::after {
  opacity: 1;
  -webkit-animation-name: kf-readcopy-base;
          animation-name: kf-readcopy-base;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#page-title .title-box .box:nth-child(2).inview::after {
  -webkit-animation-name: kf-readcopy-base;
          animation-name: kf-readcopy-base;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#page-title.company .title-box {
  background: url("../images/title-back-company.jpg") no-repeat bottom left;
  background-size: 100%;
}

#page-title.contact .title-box {
  background: url("../images/title-back-contact.jpg") no-repeat bottom left;
  background-size: 100%;
}

.pages {
  padding: 30px 0 60px 0;
}

.pages .inner {
  width: 80%;
  margin: 0 auto;
}

#outline table {
  width: 100%;
  border-collapse: collapse;
  border-top: #C3C3C3 solid 1px;
}

#outline table th {
  display: block;
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 2em 1em 1em 1em;
  background-color: #EAF1FF;
  text-align: center;
}

#outline table td {
  display: block;
  font-size: 1.4rem;
  line-height: 1.8;
  border-bottom: #C3C3C3 solid 1px;
  padding: 1em 1em 2em 1em;
}

#outline table td ul {
  list-style-type: disc;
  margin-left: 1.5em;
}

#outline table td ul li {
  text-align: left;
}

#bases {
  padding: 60px 0 0 0;
}

#bases h3 {
  width: 100%;
  margin: 0 auto 30px auto;
  background-color: #142C4D;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  padding: 0.5em 0;
  border-radius: 10px;
}

#bases .bases-box {
  margin-bottom: 30px;
  text-align: left;
}

#bases .bases-box h5 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1em;
  padding-left: 20px;
  position: relative;
}

#bases .bases-box h5::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #CCCCCC;
  width: 100%;
  height: 1px;
  bottom: -15px;
  left: 0;
}

#bases .bases-box h5::after {
  display: block;
  content: "";
  position: absolute;
  background-color: #034799;
  width: 3px;
  height: 1.5em;
  top: 0;
  left: 0;
}

#bases .bases-box p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 1em;
}

#bases .bases-box .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  border: #C3C3C3 solid 1px;
}

#bases .bases-box .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#privacy .inner {
  max-width: 960px;
  text-align: left;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.01em;
}

#privacy .inner p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2em;
}

#privacy .inner p.mb {
  margin-bottom: 1em;
}

#privacy .inner p .small {
  display: block;
  margin-top: 0.5em;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666666;
}

#privacy .inner h3 {
  color: #142C4D;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

#privacy .inner h3.title {
  display: inline-block;
  border-bottom: #142C4D solid 1px;
  margin-bottom: 0.8em;
}

#privacy .inner ul {
  list-style-type: disc;
  margin: 0 0 2em 1.5em;
}

#privacy .inner ul.mb {
  margin: 0 0 0 1.5em;
}

#privacy .inner ul li {
  font-size: 1.4rem;
  line-height: 1.8;
}

#privacy .inner .privacy-contact {
  margin: 50px 0 60px 0;
  border: #CCCCCC solid 1px;
  padding: 2em;
}

#privacy .inner .privacy-contact h5 {
  color: #142C4D;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.2;
  display: inline-block;
  border-bottom: #142C4D solid 1px;
  margin-bottom: 0.8em;
}

#privacy .inner .privacy-contact p {
  margin-bottom: 0;
}

#privacy .inner .privacy-contact a {
  display: inline-block;
  margin: 0.7em 0;
  padding: 0.5em 2em 0.5em 1em;
  background: #034799 url("../images/link-arrow-right-w.svg") no-repeat center right;
  background-size: 10px 10px;
  color: #FFFFFF;
  border-radius: 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#privacy .inner .privacy-contact a:hover {
  background-color: #045ecb;
  text-decoration: none;
}

#specified .inner table {
  width: 100%;
  border-collapse: collapse;
  border-top: #C3C3C3 solid 1px;
}

#specified .inner table th {
  display: block;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 2em 1em 1em 1em;
  background-color: #EAF1FF;
}

#specified .inner table td {
  display: block;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8;
  border-bottom: #C3C3C3 solid 1px;
  padding: 1em 1em 2em 1em;
}

#specified .inner table td ul {
  list-style-type: disc;
  margin-left: 1.5em;
}

#specified .inner table td ul li {
  text-align: left;
}

.info-box .info-list li {
  border-bottom: 1px solid #e6e6e6;
}

.info-box .info-list li:first-child {
  border-top: 1px solid #e6e6e6;
}

.info-box .info-list li a {
  display: block;
  text-align: left;
  padding: 14px 0;
  background: url("../../images/link-arrow-right-bk.svg") right 20px center/5px 8px no-repeat;
  background-position: right center;
  color: #000000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
}

.info-box .info-list li a:hover {
  text-decoration: none;
  color: #034799;
  opacity: 0.75;
  background: url("../../images/link-arrow-right-or.svg") right 20px center/5px 8px no-repeat;
  background-position: right center;
}

.info-box .info-list li a .date-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-box .info-list li a .date {
  display: inline-block;
  padding: 0.1em 0 0 0;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #999999;
}

.info-box .info-list li a .tag {
  width: 6.5em;
  display: inline-block;
  padding: 0.15em 0.9em 0.1em 0.9em;
  height: 1em;
  margin: 0 0 0 1em;
  text-align: center;
}

.info-box .info-list li a .tag-color1 {
  position: relative;
  background-color: #034799;
  border-radius: 20px;
}

.info-box .info-list li a .tag-color1::before {
  display: block;
  content: "プレスリリース";
  font-size: 1rem;
  line-height: 1;
  color: #FFFFFF;
}

.info-box .info-list li a .tag-color2 {
  position: relative;
  background-color: #47AF11;
  border-radius: 20px;
}

.info-box .info-list li a .tag-color2::before {
  display: block;
  content: "お知らせ";
  font-size: 1rem;
  line-height: 1;
  color: #FFFFFF;
}

.info-box .info-list li a .tag-color3 {
  position: relative;
  background-color: #eea812;
  border-radius: 20px;
}

.info-box .info-list li a .tag-color3::before {
  display: block;
  content: "I　R";
  font-size: 1rem;
  line-height: 1;
  color: #FFFFFF;
}

.info-box .info-list li a h3.info-title {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 0 0 0;
  margin: 3px 0 0 0;
}

.info-box .info-head {
  text-align: left;
  border-bottom: #e6e6e6 solid 1px;
  margin-bottom: 40px;
}

.info-box .info-head .date {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #034799;
  text-align: right;
  margin-bottom: 0.5em;
}

.info-box .info-head h3.info-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: 0 0 20px 0;
  margin: 0;
}

.info-box .info-contents {
  text-align: left;
  font-size: 1.4rem;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1px;
}

.info-box .info-contents h2, .info-box .info-contents h3 {
  color: #142C4D;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.3em;
}

.info-box .info-contents strong {
  font-weight: bold;
}

.info-box .info-contents em {
  font-style: oblique;
}

.info-box .info-contents p {
  margin-bottom: 1em;
}

.info-box .info-contents ul {
  list-style-type: disc;
  margin: 0 0 1em 1.5em;
}

.info-box .info-contents ol {
  list-style-type: decimal;
  margin: 0 0 1em 1.5em;
}

.info-box .info-contents blockquote {
  margin: 1.5em;
}

.info-box .info-contents img {
  width: 100%;
  max-width: 959px;
  height: auto;
  margin: 1em 0;
}

.info-box .info-contents .video {
  width: 100%;
  max-width: 680px;
  margin: 30px auto 0 auto;
}

.info-box .info-contents .video .video-box {
  position: relative;
  padding-bottom: 56.25%;
}

.info-box .info-contents .video .video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info-box .banner-box {
  border: 1px solid #ccc;
  padding: 1em 0 0 0;
  margin: 2em 0;
}

.info-box .banner-box .title {
  font-size: 3.6vw;
  font-weight: bold;
  margin: 0 0 1.5em 0;
  position: relative;
}

.info-box .banner-box .title::before {
  display: block;
  content: "";
  position: absolute;
  background: #CCCCCC;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -10px;
}

.info-box .banner-box p {
  font-size: 4vw;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 0 0;
}

.info-box .banner-box p .icon-phone img {
  width: 10%;
  height: auto;
}

.info-box .banner-box p .number {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #034799;
  font-size: 6vw;
}

.info-box .banner-box p.small {
  background: #EEEEEE;
  padding: 10px 1em;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: normal;
  margin: 1em auto 0 auto;
}

.info-box .btn-wrap {
  margin-top: 60px;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.info-box .btn-wrap a {
  display: block;
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
}

.info-box .btn-wrap a:hover {
  color: #034799;
  opacity: 0.75;
}

.info-box .btn-wrap .prev {
  padding: 7px 0;
  width: calc(100% / 3);
  font-size: 1.4rem;
}

.info-box .btn-wrap .prev a {
  position: relative;
  padding: 7px 0 7px 10px;
}

.info-box .btn-wrap .prev a::before {
  content: "";
  display: block;
  width: 7px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url("../images/link-arrow-left-bk.svg") no-repeat center center;
}

.info-box .btn-wrap .prev a:hover::before {
  background: url("../images/link-arrow-left-or.svg") no-repeat center center;
}

.info-box .btn-wrap .next {
  padding: 7px 0;
  width: calc(100% / 3);
  font-size: 1.4rem;
}

.info-box .btn-wrap .next a {
  position: relative;
  padding: 7px 10px 7px 0;
}

.info-box .btn-wrap .next a::before {
  content: "";
  display: block;
  width: 7px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url("../images/link-arrow-right-bk.svg") no-repeat center center;
}

.info-box .btn-wrap .next a:hover::before {
  background: url("../images/link-arrow-right-or.svg") no-repeat center center;
}

.info-box .btn-wrap .back_btn {
  font-size: 1.4rem;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  text-align: center;
  padding: 7px 0;
  width: calc(100% / 3);
}

.info-box .btn-wrap .back_btn a {
  position: relative;
  padding: 7px 0;
}

.pagination ul {
  list-style: none;
  padding: 0;
  margin-top: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 960px;
}

.pagination ul li {
  margin: 5px;
}

.page-numbers {
  border: 1px solid;
  padding: 5px 10px;
  text-decoration: none;
  color: #333;
}

.page-numbers:hover {
  background-color: #fcc;
}

.page-numbers
.page-numbers.current {
  background-color: #fcc;
}

.pagination-total {
  margin-top: 2em;
  text-align: center;
}

.form-section {
  margin: 0 auto 40px auto;
}

.form-section h3 {
  font-size: 1.8rem;
  line-height: 1.4;
  background: #142C4D;
  color: #fff;
  margin: 0 0 0.5em 0;
  padding: 0.3em 1em;
  border-radius: 3px;
  text-align: center;
}

.form-section p {
  text-align: left;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1px;
  margin-bottom: 1em;
}

.form-section p.center {
  text-align: left;
}

.form-section .red {
  color: #E60012;
}

.form-section .phone {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 30px;
  height: 30px;
  margin: 10px 0;
}

.form-section .phone span {
  margin-right: 7px;
}

.form-section .phone span img {
  width: 30px;
  height: 30px;
}

.form-section .left-box {
  text-align: left;
}

.form-section .mail {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 30px;
  height: 30px;
  margin: 10px 0;
}

.form-section .mail span {
  margin-right: 7px;
}

.form-section .mail span img {
  width: 30px;
  height: 30px;
}

.form-section .reception {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 1em 0;
}

.form-section .s-box {
  border: #CCCCCC solid 1px;
  border-radius: 3px;
  padding: 1em 2em;
  text-align: left;
}

.form-section .s-box p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 0.5em;
}

.form-section .s-box ul {
  margin-left: 1.5em;
}

.form-section .s-box ul li {
  list-style-type: disc;
  font-size: 1.2rem;
  line-height: 1.8;
}

.required {
  background-color: #E60012;
  color: #FFFFFF;
  font-size: 1.2rem;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  padding: 0.3em 1em;
  margin: 0 0.5em;
  border-radius: 5px;
}

.form-box {
  padding: 40px 20px;
  background-color: #EAF1FF;
  border-radius: 5px;
}

.form-box dl dt {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: left;
  padding: 0 0 0.5em 0;
}

.form-box dl dd {
  font-size: 1.4rem;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: left;
  margin: 0 0 15px 0;
}

.form-box dl dd p {
  font-size: 1.4rem !important;
  letter-spacing: normal !important;
}

.formTable {
  width: 100%;
  margin: 0 auto 20px auto;
}

.formTable th {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: left;
  display: block;
  padding: 1em 1em 0.5em 1em;
}

.formTable td {
  font-size: 1.4rem;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: left;
  display: block;
  padding: 0 1em;
}

.form-type1 input[type="submit"],
.form-type1 input[type="text"],
.form-type1 select,
.form-type1 textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
}

.form-type1 input[type="text"] {
  margin: 0 10px 0 0;
  padding: 0 10px;
  height: 40px;
  border: 1px solid #999;
  border-radius: 2px;
  background-color: #FFFFFF;
}

.form-type1 input[type="text"].large {
  width: 100%;
}

.form-type1 input[type="text"].half {
  width: 50%;
}

.form-type1 textarea {
  margin: 0 10px 0 0;
  padding: 0 10px;
  width: 100%;
  height: 180px;
  border: 1px solid #999;
  border-radius: 2px;
  background-color: #FFFFFF;
}

.form-type1 input[type="text"]:focus,
.form-type1 textarea:focus {
  background: #fffce2;
}

.form-type1 input[type="checkbox"],
.form-type1 input[type="radio"] {
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-type1 input[type="checkbox"] {
  margin-top: 0;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  background: url("../images/checkbox@2x.png") no-repeat left top;
}

.form-type1 input[type="checkbox"]:checked {
  background: url("../images/checkbox-on@2x.png") no-repeat left top;
}

.form-type1 input[type="radio"] {
  margin-top: 0;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  background: url("../images/radio@2x.png") no-repeat left top;
}

.form-type1 input[type="radio"]:checked {
  background: url("../images/radio-on@2x.png") no-repeat left top;
}

.consent-txt {
  width: 100%;
  margin: 40px 0 0 auto;
  padding: 2em;
  border: 1px solid #999;
  border-radius: 2px;
  background-color: #FFFFFF;
}

.consent-txt .title {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: left;
  padding: 0 0 0.5em 0;
}

.consent-txt p {
  font-size: 1.3rem !important;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.consent-txt p.center {
  font-size: 1.4rem !important;
}

#submit-box {
  margin: 40px 0 0 0;
}

@media (min-width: 768px) {
  #submit-box {
    width: 330px;
    margin: 40px auto 0 auto;
  }
}

#submit-box button {
  background-color: #034799;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.5em;
  border-radius: 5px;
}

#not-found {
  padding: 35px 0;
}

#not-found .inner {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
}

#not-found .inner .box2 .en-title {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1em;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1em;
  color: #47AF11;
}

#not-found .inner .box2 h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3em;
  text-align: center;
  letter-spacing: 0.1em;
}


@media (min-width: 480px) {
  /******************************************************************

Stylesheet: 480px以上(スマホの横向き)のモニタで適用

******************************************************************/
}

@media (min-width: 600px) {
  /******************************************************************

Stylesheet: 600px以上のタブレットやモニタで適用

******************************************************************/
  #top-img .inner .txt-box {
    width: 90%;
    left: 5%;
    z-index: 2;
  }
  #top-img .inner .banner {
    position: absolute;
    bottom: 90px;
    right: 0px;
    z-index: 3;
  }
  #top-img .inner .banner a {
    display: block;
    width: 300px;
    height: 100px;
    background-size: cover;
    font-size: 1.2rem;
    text-align: left;
    padding: 5px;
  }
  #top-img .inner h2 {
    top: 125px;
    font-size: 1.2rem;
  }
  #top-img .inner #main-copy {
    font-size: 4vw;
  }
  #top-img .inner #main-copy small {
    font-size: 2.7vw;
  }
  #top-img .inner #main-copy small br {
    display: block;
  }
  #top-img .inner #main-copy .read strong span br {
    display: none;
  }
  .topics {
    width: 70%;
  }
  .topics .box .txt h3 {
    font-size: 1.2rem;
  }
  .topics .box .txt p {
    font-size: 1.2rem;
  }
  #main-img {
    height: calc(100vh - 45px);
    min-height: 900px;
  }
  #main-img .inner {
    height: calc(100vh - 45px);
  }
  #main-img .inner .txt-box {
    width: calc( 100% - 15%);
    min-height: 480px;
    top: 45%;
    left: 15%;
  }
  #main-img #main-copy {
    margin-bottom: 20px;
    font-size: 5vw;
  }
  #main-img ul {
    left: -5%;
  }
  #main-img ul li {
    font-size: 3vw;
  }
  #main-img .product-logo {
    width: 250px;
    margin: 0;
    position: absolute;
    right: 0;
    bottom: 20%;
  }
  #main-img .product-logo img {
    width: 100%;
    height: auto;
  }
  #main-img .main-slider {
    width: 80%;
  }
  #main-img .main-slider .slide {
    height: calc(100vh - 185px);
    -webkit-transform: skew(-20deg) translateX(20%);
            transform: skew(-20deg) translateX(20%);
  }
  #main-img .main-slider .slide img {
    max-width: 220%;
    -webkit-transform: translate(-50%, -50%) skew(20deg);
            transform: translate(-50%, -50%) skew(20deg);
  }
  #main-img .main-slider .slide::before {
    height: calc(100vh - 185px);
  }
  #prelude .inner, #prelude2 .inner {
    background-size: 25%;
    background-position: top -6px right 0px;
  }
  #prelude .inner p, #prelude2 .inner p {
    font-size: 2vw;
    padding-right: 25%;
  }
  #prelude .inner h4, #prelude2 .inner h4 {
    font-size: 3vw;
    text-align: left;
    padding-right: 25%;
  }
  #prelude .inner ul li a, #prelude2 .inner ul li a {
    font-size: 2.4rem;
  }
  #location1 .inner ol li.blank {
    display: none;
  }
  .info-box .banner-box {
    display: inline-block;
    padding: 1em 0 0 0;
    margin: 2em auto 2em auto;
  }
  .info-box .banner-box .title {
    font-size: 1.8rem;
    margin: 0 0 1.5em 0;
  }
  .info-box .banner-box p {
    font-size: 2rem;
    line-height: 1.5;
    margin: 0 0 0 0;
  }
  .info-box .banner-box p .icon-phone img {
    width: 10%;
    height: auto;
  }
  .info-box .banner-box p .number {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #034799;
    font-size: 2.8rem;
  }
  .info-box .banner-box p.small {
    background: #EEEEEE;
    padding: 10px 1em;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: normal;
    margin: 1em auto 0 auto;
  }
}

@media (min-width: 960px) {
  /******************************************************************

Stylesheet: 960px以上のモニタで適用

******************************************************************/
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  header {
    height: 125px;
    padding: 34px 0 0 0;
  }
  header .logo {
    width: 254px;
  }
  header .logo img {
    width: 254px;
    height: auto;
  }
  header #menubox {
    width: 266px;
  }
  header #menubox .call {
    display: inline-block;
    width: auto;
    height: 70px;
    text-align: left;
    white-space: nowrap;
    padding: 10px 15px 0px 15px;
  }
  header #menubox .call p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  header #menubox .call p strong {
    font-family: "Roboto", sans-serif;
    font-size: 2.5rem;
  }
  header #menubox .mobile-menu__btn {
    width: 70px;
    height: 70px;
    padding: 28px 0 0 23px;
  }
  header.smaller {
    height: 90px;
  }
  header.smaller .logo {
    margin-top: 10px;
    width: 200px;
  }
  header.smaller .logo img {
    width: 200px;
    height: auto;
  }
  
  article {
    padding: 125px 0 0 0;
  }
  #top-img .inner {
    margin: -125px auto 0 auto;
  }
  #top-img .inner h2 {
    top: 140px;
    width: 18em;
  }
  #top-img .inner .txt-box {
    position: absolute;
    width: 90%;
    left: 18%;
    z-index: 2;
  }
  #top-img .inner .banner {
    bottom: 80px;
    right: 0px;
  }
  #top-img .inner .banner a {
    display: block;
    width: 350px;
    height: 125px;
    background-size: cover;
    font-size: 1.2rem;
    text-align: left;
    padding: 5px;
  }
  #top-img .inner #main-copy {
    padding-left: 0;
    font-size: 4.2rem;
  }
  #top-img .inner #main-copy span.en {
    font-size: 8rem;
  }
  #top-img .inner #main-copy small {
    font-size: 2.4rem;
  }
  #top-img .inner #main-copy .read {
    left: 0;
  }
  .spot {
    padding: 50px 0;
  }
  .spot .inner h3 {
    font-size: 3rem;
  }
  .topics {
    width: 50%;
  }
  .topics .box .img {
    width: calc( ( 100% - 15px ) * 0.1);
  }
  .topics .box .txt {
    width: calc( ( 100% - 15px ) * 0.9);
  }
  #our-service .inner h3 {
    font-size: 3rem;
  }
  #our-service .inner .sevice-menu .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #our-service .inner .sevice-menu .service-menu-type2, #our-service .inner .sevice-menu .service-menu-type3 {
    width: calc( ( 100% - 30px ) * 0.5);
    margin: 0;
  }
  #our-service .inner .sevice-menu .service-menu-type2 a .en, #our-service .inner .sevice-menu .service-menu-type3 a .en {
    font-size: 1.8vw;
  }
  #our-service .inner .sevice-menu .service-menu-type2 a .jp, #our-service .inner .sevice-menu .service-menu-type3 a .jp {
    font-size: 2vw;
  }
  #news .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #news .inner .txt-box {
    width: 200px;
  }
  #news .inner .txt-box .flex {
    display: block;
    margin: 0;
  }
  #news .inner .txt-box .flex .news-title {
    width: 100%;
    margin-bottom: 40px;
  }
  #news .inner .txt-box .flex .news-title h3 {
    font-size: 3rem;
  }
  #news .inner .news-list {
    width: calc( 100% - 240px);
  }
  #main-img {
    margin-top: -70px;
    height: calc(100vh - 55px);
    min-height: 650px;
  }
  #main-img .inner {
    height: calc(100vh - 55px);
  }
  #main-img .inner .txt-box {
    position: initial;
  }
  #main-img #main-copy {
    position: absolute;
    bottom: 27%;
    left: 14%;
    font-size: 4rem;
    padding-left: 0;
    margin-bottom: 0;
    z-index: 2;
  }
  #main-img #main-copy .message-banner {
    font-size: 1.8rem;
  }
  #main-img ul {
    position: absolute;
    bottom: 5%;
    left: 20%;
    z-index: 2;
  }
  #main-img ul li {
    font-size: 2rem;
  }
  #main-img .product-logo {
    position: absolute;
    width: 30%;
    bottom: 10%;
    right: 0;
    z-index: 2;
  }
  #main-img .product-logo img {
    width: 100%;
    height: auto;
  }
}

@media all and (min-width: 960px) and (-ms-high-contrast: none) {
  #main-img *::-ms-backdrop, #main-img .product-logo {
    margin-bottom: 160px;
  }
}

@media (min-width: 960px) {
  #main-img .scroll {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 1px;
    z-index: 2;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    text-transform: uppercase;
  }
  #main-img .main-slider {
    width: 60%;
  }
  #main-img .main-slider .slide {
    height: calc(100vh - 200px);
    -webkit-transform: skew(-20deg) translateX(35%);
            transform: skew(-20deg) translateX(35%);
  }
  #main-img .main-slider .slide img {
    max-width: 152%;
    -webkit-transform: translate(-50%, -50%) skew(20deg);
            transform: translate(-50%, -50%) skew(20deg);
  }
  #main-img .main-slider .slide::before {
    height: calc(100vh - 200px);
  }
  #main-img .mainvisual-home {
    position: relative;
    width: 89.644656%;
    height: 100vh;
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
    -webkit-transform: matrix(1, 0, -0.42, 1, 0, 0) translate(50%, 0);
            transform: matrix(1, 0, -0.42, 1, 0, 0) translate(50%, 0);
    z-index: 0;
    position: absolute;
    top: -55px;
    right: 0;
  }
  #main-img .mainvisual-home .mainvisual-home-inner {
    position: relative;
    height: 70%;
    overflow: hidden;
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  #main-img .mainvisual-home .mainvisual-home-inner .mainvisual-home-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/bg-img.jpg") no-repeat center center;
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
    -webkit-transform: matrix(1, 0, 0.42, 1, 0, 0) translate(-50%, 0);
            transform: matrix(1, 0, 0.42, 1, 0, 0) translate(-50%, 0);
  }
  #main-img .mainvisual-home .mainvisual-home-inner .mainvisual-home-bg2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/bg-img2.jpg") no-repeat center center;
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
    -webkit-transform: matrix(1, 0, 0.42, 1, 0, 0) translate(-50%, 0);
            transform: matrix(1, 0, 0.42, 1, 0, 0) translate(-50%, 0);
  }
  #prelude .inner {
    background-size: 230px 230px;
    background-position: top -20px right 0px;
  }
  #prelude .inner p {
    font-size: 2.1rem;
  }
  #prelude .inner h4 {
    font-size: 2.5rem;
    padding-right: 30%;
  }
  #prelude .inner ul::before {
    content: "";
    display: block;
    padding-top: 18%;
    /* 高さを幅の18%に固定 */
  }
  #prelude .inner ul li a {
    font-size: 2.4rem;
    background: #034799 url("../images/btn-focus@2x.jpg") center center;
    background-size: cover;
    text-align: left;
  }
  #prelude .inner ul li a span {
    left: 58%;
  }
  #prelude2 .inner {
    background-size: 200px 200px;
    background-position: top -10px right 0px;
  }
  #prelude2 .inner p {
    font-size: 2.1vw;
  }
  #prelude2 .inner h4 {
    font-size: 2.9vw;
    padding-right: 30%;
  }
  #prelude2 .inner ul::before {
    content: "";
    display: block;
    padding-top: 18%;
    /* 高さを幅の18%に固定 */
  }
  #prelude2 .inner ul li a {
    font-size: 2.4rem;
    background: #034799 url("../images/btn-focus@2x.jpg") center center;
    background-size: cover;
    text-align: left;
  }
  #prelude2 .inner ul li a span {
    left: 58%;
  }
  #location1 {
    padding: 70px 0 40px 0;
  }
  #location1 .inner {
    position: relative;
  }
  #location1 .inner h3 {
    width: 200px;
    height: 200px;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
    padding: 0;
    font-size: 2rem;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: -10px;
    left: -10px;
  }
  #location1 .inner h3 span {
    display: inline-block;
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  #location1 .inner ol li {
    width: calc((100% - 40px) / 3);
  }
  #location1 .inner ol li.blank {
    display: block;
  }
  #location1 .inner ol li:nth-child(11) {
    display: block;
  }
  #location2 {
    padding: 70px 0 40px 0;
  }
  #location2 .inner {
    position: relative;
  }
  #location2 .inner h3 {
    width: 200px;
    height: 200px;
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    padding: 0;
    font-size: 2rem;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: -10px;
    right: -10px;
  }
  #location2 .inner h3 span {
    display: inline-block;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  #location2 .inner ol {
    width: 70%;
  }
  #location2 .inner ol li {
    width: calc((100% - 40px) / 3);
  }
  #service1 .inner h3 {
    font-size: 3rem;
  }
  #service1 .inner p {
    text-align: center;
  }
  #service1 .inner p span {
    display: inline-block;
    padding: 0 2em;
    position: relative;
  }
  #service1 .inner p span::after {
    display: block;
    content: "";
    background: url("../images/kakko-l-bk.svg") no-repeat left center;
    background-size: auto 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  #service1 .inner p span::before {
    display: block;
    content: "";
    background: url("../images/kakko-r-bk.svg") no-repeat right center;
    background-size: auto 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
  }
  #service1 .inner h4 {
    text-align: center;
    font-size: 2.1rem;
    padding: 0.5em 2em;
    border-radius: 30px;
    text-align: left;
  }
  #service1 .inner h4 small {
    font-weight: 300;
    font-size: 1.6rem;
  }
  #service1 .inner .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #service1 .inner .flex .wanted {
    font-size: 3rem;
  }
  #service1 .inner .flex .step-box {
    width: calc( ( 100% - 80px ) * 0.33);
  }
  #faq .inner h3 {
    font-size: 4rem;
  }
  #faq .inner h3 small {
    font-size: 2.4rem;
  }
  #faq .inner dl {
    font-size: 1.8rem;
  }
  #faq .inner dl dt {
    background-size: 35px 35px;
    padding: 0 0 0 45px;
    min-height: 40px;
  }
  #faq .inner dl dd {
    background-size: 35px 35px;
    padding: 0 0 0 45px;
    min-height: 40px;
  }
  #products-data .inner h3 {
    font-size: 3rem;
  }
  #products-data .inner .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 60px 0 60px 0;
  }
  #products-data .inner .flex.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #products-data .inner .flex p {
    font-size: 1.4rem;
  }
  #products-data .inner .flex .txt {
    width: calc( ( 100% - 40px ) * 0.4);
  }
  #products-data .inner .flex .txt ul li {
    font-size: 1.4rem;
  }
  #products-data .inner .flex .img {
    width: calc( ( 100% - 40px ) * 0.6);
  }
  #price1 .inner h3 {
    font-size: 3rem;
  }
  #price1 .inner h3 small {
    font-size: 2rem;
  }
  #price1 .inner .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #price1 .inner .flex .price-box {
    width: 50%;
    padding: 0;
  }
  #price1 .inner .flex .price-box a {
    margin: 0.8em auto 0 auto;
    font-size: 2.5rem;
  }
  #price1 .inner .flex .contact-box {
    width: 50%;
    margin: 0 0 0 0;
  }
  #price1 .message-box {
    width: 80%;
    margin: 80px auto 40px auto;
    padding: 60px 60px 40px 60px;
  }
  #price1 .message-box .title {
    text-align: center;
    font-size: 2rem;
    margin: 0 0 1.5em 0;
  }
  #price1 .message-box .title::before {
    left: 50%;
    margin-left: -50px;
  }
  #price1 .message-box p {
    font-size: 1.6rem;
    line-height: 2;
  }
  #service2 .inner h3 {
    font-size: 3rem;
  }
  #service2 .inner h3 small {
    font-size: 2rem;
  }
  #service2 .inner p {
    text-align: center;
    font-size: 2.2rem;
  }
  #service2 .inner p span {
    display: inline-block;
    padding: 0 2em;
    position: relative;
  }
  #service2 .inner p span::after {
    display: block;
    content: "";
    background: url("../images/kakko-l.svg") no-repeat left center;
    background-size: auto 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  #service2 .inner p span::before {
    display: block;
    content: "";
    background: url("../images/kakko-r.svg") no-repeat right center;
    background-size: auto 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
  }
  #service2 .inner .video {
    width: 680px;
    margin: 40px auto 0 auto;
  }
  #service2 .inner .filter-data {
    width: 580px;
    margin: 40px auto;
  }
  #service2 .inner .sales-point h4 {
    text-align: center;
    font-size: 2.1rem;
    padding: 0.3em 0em;
    border-radius: 30px;
    margin: 0 0 30px 0;
  }
  #service2 .inner .sales-point .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #service2 .inner .sales-point .flex dl {
    width: calc( ( 100% - 30px ) / 2);
  }
  #service2 .inner .youtube-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #service2 .inner .youtube-list .list {
    width: calc( ( 100% - 40px ) / 3);
    margin-bottom: 0;
  }
  #service2 .inner .youtube-list .list a .txt {
    font-size: 1.4rem;
  }
  #service2 .inner .message-box {
    width: 80%;
    margin: 80px auto 40px auto;
    padding: 60px 60px 40px 60px;
  }
  #service2 .inner .message-box .title {
    text-align: center;
    font-size: 2rem;
    margin: 0 0 1.5em 0;
  }
  #service2 .inner .message-box .title::before {
    left: 50%;
    margin-left: -50px;
  }
  #service2 .inner .message-box p {
    font-size: 1.6rem;
    line-height: 2;
  }
  #service2 .inner .procedure .flex .box {
    width: calc( ( 100% - 50px ) / 5);
    margin-bottom: 15px;
  }
  #service2 .inner .procedure .flex .box .txt {
    padding: 10px;
  }
  #price2 .inner h3 {
    font-size: 3rem;
  }
  #price2 .inner h3 small {
    font-size: 2rem;
  }
  #price2 .inner .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #price2 .inner .flex .price-box {
    width: 50%;
  }
  #price2 .inner .flex .price-box a {
    margin: 0.8em auto 0 auto;
    font-size: 2.5rem;
  }
  #price2 .inner .flex .contact-box {
    width: 50%;
    margin: 0 0 0 0;
  }
  #other-products {
    padding: 60px 0;
  }
  #other-products .inner h3 {
    text-align: center;
    font-size: 2.1rem;
    padding: 0.3em 0em;
    border-radius: 30px;
  }
  #other-products .inner p {
    text-align: center;
    font-size: 1.8rem;
  }
  #other-products .inner p span {
    display: inline-block;
    padding: 0 2em;
    position: relative;
  }
  #other-products .inner p span::after {
    display: block;
    content: "";
    background: url("../images/kakko-l.svg") no-repeat left center;
    background-size: auto 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  #other-products .inner p span::before {
    display: block;
    content: "";
    background: url("../images/kakko-r.svg") no-repeat right center;
    background-size: auto 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
  }
  #other-products .inner .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #other-products .inner .flex .other-box {
    width: calc( ( 100% - 40px ) / 2);
  }
  #other-products .inner .flex .other-box:nth-child(1) {
    margin-bottom: 0px;
  }
  #follow {
    padding: 60px 0;
  }
  #follow .inner h3 {
    text-align: center;
    font-size: 2.1rem;
    padding: 0.3em 0em;
    border-radius: 30px;
  }
  #follow .inner .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #follow .inner .flex .pop {
    width: calc( ( 100% - 20px ) * 0.3);
    max-width: 400px;
    margin: 0;
  }
  #follow .inner .flex .pop-img {
    width: calc( ( 100% - 20px ) * 0.7);
  }
  #follow .inner .flex .pop-img p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: left;
    margin: 15px 0 0 0;
    color: #333333;
  }
  #page-title {
    min-height: 245px;
  }
  #page-title .title-box {
    width: 90%;
    height: 245px;
  }
  #page-title .title-box .box {
    position: absolute;
    top: 50%;
    left: 10%;
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    color: #FFFFFF;
    text-align: left;
  }
  #page-title .title-box .box .en {
    font-size: 5.3rem;
  }
  #page-title .title-box .box h2 {
    font-weight: 500;
    font-size: 2.1rem;
  }
  .pages {
    padding: 60px 0 120px 0;
  }
  .pages .inner {
    max-width: 1070px;
  }
  #outline table {
    border-top: none;
    width: 960px;
    margin: 0 auto;
  }
  #outline table th {
    display: table-cell;
    text-align: left;
    font-size: 1.6rem;
    background-color: transparent;
    border-bottom: #c3c3c3 solid 1px;
    padding: 2em 2em 2em 7em;
    white-space: nowrap;
  }
  #outline table td {
    text-align: left;
    display: table-cell;
    font-size: 1.6rem;
    border-bottom: #c3c3c3 solid 1px;
    padding: 2em 2em 2em 0;
  }
  #bases {
    padding: 120px 0 0 0;
  }
  #bases h3 {
    font-size: 2rem;
  }
  #bases .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #bases .bases-box {
    margin-bottom: 50px;
    width: calc( ( 100% - 50px ) / 2);
  }
  #bases .bases-box h5 {
    font-size: 1.8rem;
  }
  #bases .bases-box p {
    font-size: 1.6rem;
  }
  #privacy .inner p {
    font-size: 1.6rem;
  }
  #privacy .inner p .small {
    font-size: 1.4rem;
  }
  #privacy .inner h3 {
    font-style: 2rem;
  }
  #privacy .inner ul li {
    font-size: 1.6rem;
  }
  #privacy .inner .privacy-contact h5 {
    font-style: 2rem;
  }
  #specified .inner table {
    border-top: none;
    width: 960px;
    margin: 0 auto;
  }
  #specified .inner table th {
    display: table-cell;
    text-align: left;
    font-size: 1.6rem;
    background-color: transparent;
    border-bottom: #c3c3c3 solid 1px;
    padding: 2em 2em 2em 7em;
    white-space: nowrap;
  }
  #specified .inner table td {
    text-align: left;
    display: table-cell;
    font-size: 1.6rem;
    border-bottom: #c3c3c3 solid 1px;
    padding: 2em 2em 2em 0;
  }
  #specified .inner table td ol {
    list-style-type: decimal;
    margin-left: 1.5em;
  }
  #specified .inner table td ol li {
    text-align: left;
  }
  #specified .inner table td ul {
    list-style-type: upper-latin;
    margin-left: 3em;
  }
  #specified .inner table td ul li {
    text-align: left;
  }
  .info-box {
    max-width: 800px;
    margin: 0 auto;
  }
  .info-box .info-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 29px 20px;
  }
  .info-box .info-list li a .date {
    width: 120px;
    font-size: 1.3rem;
  }
  .info-box .info-list li a .tag {
    padding: 0.15em 0.9em 0.1em 0.9em;
    margin: 0 1em 0 0;
  }
  .info-box .info-list li a h3.info-title {
    font-size: 1.4rem !important;
    width: calc(100% - 160px);
  }
  .info-box .info-head h3.info-title {
    font-size: 2.1rem;
    line-height: 1.6;
  }
  .info-box .info-contents {
    font-size: 1.6rem;
  }
  .info-box .info-contents h2, .info-box .info-contents h3 {
    font-size: 1.8rem;
  }
  .info-box .info-contents img {
    max-width: 640px;
    height: auto;
    margin: 1em 0;
  }
  .info-box .btn-wrap {
    margin-top: 90px;
  }
  .info-box .btn-wrap .prev {
    padding: 14px 0;
    font-size: 1.6rem;
  }
  .info-box .btn-wrap .prev a {
    padding: 7px 0 7px 10px;
  }
  .info-box .btn-wrap .next {
    padding: 14px 0;
    font-size: 1.6rem;
  }
  .info-box .btn-wrap .next a {
    padding: 14px 20px 14px 0;
  }
  .info-box .btn-wrap .back_btn {
    padding: 14px 0;
    font-size: 1.6rem;
  }
  .info-box .btn-wrap .back_btn a {
    padding: 14px 0;
  }
  .form-section {
    max-width: 800px;
    margin: 0 auto 60px auto;
  }
  .form-section h3 {
    font-size: 1.8rem;
  }
  .form-section p {
    font-size: 1.6rem;
  }
  .form-section p.center {
    text-align: center;
  }
  .form-section .left-box {
    display: inline-block;
    white-space: nowrap;
    text-align: left;
    margin: 0 auto;
  }
  .form-section .phone {
    font-size: 4rem;
    line-height: 45px;
    height: 45px;
  }
  .form-section .phone span {
    margin-right: 15px;
  }
  .form-section .phone span img {
    width: 45px;
    height: 45px;
  }
  .form-section .mail {
    font-size: 3rem;
    line-height: 45px;
    height: 45px;
  }
  .form-section .mail span {
    margin-right: 15px;
  }
  .form-section .mail span img {
    width: 45px;
    height: 45px;
  }
  .form-section .reception {
    font-size: 1.6rem;
  }
  .required {
    margin: 0 0 0 0.5em;
  }
  .form-box {
    max-width: 800px;
    padding: 60px;
    margin: 0 auto 85px auto;
  }
  .form-box dl dt {
    position: relative;
    width: 28%;
    min-height: 12px;
    float: left;
    clear: right;
    text-align: right;
  }
  .form-box dl dd {
    width: 68%;
    min-height: 34px;
    margin: 0 0 25px 0;
    float: right;
  }
  .formTable th {
    display: table-cell;
    width: 30%;
    text-align: right;
    padding: 0.5em 1em;
  }
  .formTable td {
    display: table-cell;
    width: 70%;
    text-align: left;
    padding: 0.5em 1em;
  }
  .consent-txt p {
    font-size: 1.3rem !important;
  }
  .consent-txt p.center {
    font-size: 1.4rem !important;
  }
  #widget-mobile-menu ul {
    margin: 0 40px 0 0;
  }
  #nav_menu-2 ul {
    margin: 0 40px 0 0;
  }
  #nav_menu-2 ul li:first-child {
    margin-top: 2.2em;
  }
}

@media (min-width: 1280px) {
  /******************************************************************

Stylesheet: 1280px以上のモニタで適用

******************************************************************/
  
  #top-img .inner {
    position: static;
    padding-bottom: 0;
  }
  #top-img .inner h2 {
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
    top: 60px;
    left: 390px;
    width: auto;
    font-size: 1.5rem;
  }
  #top-img .inner .txt-box {
    width: 90%;
    left: 18%;
  }
  #top-img .inner .banner {
    bottom: 110px;
    right: 5%;
  }
  .spot {
    padding: 60px 0;
  }
  .spot .inner h3 {
    font-size: 4rem;
  }
  .topics {
    max-width: 640px;
  }
  .topics .box .img {
    width: calc( ( 100% - 15px ) * 0.15);
  }
  .topics .box .txt {
    width: calc( ( 100% - 15px ) * 0.85);
  }
  .topics .box .txt h3 {
    font-size: 1.2rem;
  }
  .topics .box .txt p {
    font-size: 1.4rem;
  }
  #main-img {
    margin-top: -70px;
  }
  #main-img .inner {
    height: calc(100vh - 124px);
  }
  #main-img .inner .main-copy {
    font-size: 4rem;
    line-height: 1.4;
    bottom: 5%;
    left: 10%;
  }
  #main-img .inner ul {
    bottom: 0;
    left: auto;
    right: 0;
  }
  #main-img .inner ul li {
    font-size: 2rem;
  }
  #main-img .inner .product-logo {
    width: 330px;
    bottom: 20%;
    right: 3%;
  }
  #main-img .main-slider {
    width: 50%;
  }
  #main-img .main-slider .slide {
    height: calc(100vh - 124px);
    -webkit-transform: skew(-20deg) translateX(29%);
            transform: skew(-20deg) translateX(29%);
  }
  #main-img .main-slider .slide img {
    max-width: 160%;
    -webkit-transform: translate(-50%, -50%) skew(20deg);
            transform: translate(-50%, -50%) skew(20deg);
  }
  #main-img .main-slider .slide::before {
    height: calc(100vh - 124px);
  }
  #main-img .mainvisual-home .mainvisual-home-inner {
    height: 77%;
  }
  #our-service .inner {
    padding: 85px 0 55px 0;
  }
  #our-service .inner h3 {
    font-size: 3.8rem;
    margin-bottom: 35px;
  }
  #our-service .inner .sevice-menu .service-menu-type2, #our-service .inner .sevice-menu .service-menu-type3 {
    width: calc( ( 100% - 60px ) * 0.5);
  }
  #our-service .inner .sevice-menu .service-menu-type2 a .en, #our-service .inner .sevice-menu .service-menu-type3 a .en {
    font-size: 1.6vw;
  }
  #our-service .inner .sevice-menu .service-menu-type2 a .jp, #our-service .inner .sevice-menu .service-menu-type3 a .jp {
    font-size: 1.8vw;
  }
  #our-service .service-bg {
    background: url("../images/bg-img-top-left.png") no-repeat left center;
    background-size: 50%;
  }
  #our-service .service-bg__bg {
    background: url("../images/bg-img-top-rigt.png") no-repeat right center;
    background-size: 50%;
  }
  #news .inner .txt-box {
    width: 300px;
  }
  #news .inner .txt-box .flex .news-title h3 {
    font-size: 3.8rem;
  }
  #news .inner .txt-box .flex .news-title p {
    font-size: 2.4rem;
  }
  #news .inner .news-list {
    width: calc( 100% - 340px);
  }
  #news .inner .news-list dl dt {
    font-size: 1.6rem;
  }
  #news .inner .news-list dl dd {
    font-size: 1.6rem;
  }
  #prelude .inner, #prelude2 .inner {
    background-size: 250px 250px;
  }
  #prelude .inner p, #prelude2 .inner p {
    font-size: 2.4rem;
    line-height: 1.8;
  }
  #prelude .inner h4, #prelude2 .inner h4 {
    font-size: 4rem;
    padding-right: 0;
  }
  #prelude .inner ul li a, #prelude2 .inner ul li a {
    font-size: 3rem;
  }
  #location1 {
    padding: 90px 0 60px 0;
  }
  #location1 .inner h3 {
    width: 250px;
    height: 250px;
    font-size: 2.3rem;
    top: -40px;
    left: -30px;
  }
  #location1 .inner ol li {
    margin-bottom: 40px;
    width: calc((100% - 120px) / 4);
  }
  #location1 .inner ol li.blank {
    display: block;
  }
  #location1 .inner ol li:nth-child(12) {
    display: block;
  }
  #location2 {
    padding: 90px 0 60px 0;
  }
  #location2 .inner h3 {
    width: 250px;
    height: 250px;
    font-size: 2.3rem;
    top: -40px;
    right: -30px;
  }
  #location2 .inner ol {
    width: 70%;
  }
  #location2 .inner ol li {
    margin-bottom: 40px;
    width: calc((100% - 120px) / 4);
  }
  #location2 .inner ol li.blank {
    display: block;
  }
  #location2 .inner ol li:nth-child(3n+2):last-child {
    margin-left: 0;
    margin-right: 0;
  }
  #service1 .inner h3 {
    font-size: 4rem;
  }
  #service1 .inner p {
    font-size: 2.4rem;
  }
  #faq .inner h3 {
    font-size: 4.4rem;
  }
  #faq .inner h3 small {
    font-size: 2.8rem;
  }
  #faq .inner dl {
    font-size: 2rem;
  }
  #faq .inner dl dt {
    background-size: 45px 45px;
    padding: 0 0 0 55px;
    min-height: 50px;
  }
  #faq .inner dl dd {
    background-size: 45px 45px;
    padding: 0 0 0 55px;
    min-height: 50px;
  }
  #products-data .inner h3 {
    font-size: 4rem;
  }
  #products-data .inner .flex p {
    font-size: 1.6rem;
  }
  #products-data .inner .flex .txt h4 {
    font-size: 2.1rem;
  }
  #products-data .inner .flex .txt ul li {
    font-size: 1.6rem;
  }
  #price1 {
    padding: 40px 0 80px 0;
  }
  #price1 .inner h3 {
    font-size: 4rem;
  }
  #price1 .inner h3 small {
    font-size: 2rem;
  }
  #price1 .inner .flex .price-box a {
    margin: 0.6em auto 0 auto;
    font-size: 3rem;
  }
  #service2 .inner h3 {
    font-size: 4rem;
  }
  #service2 .inner h3 small {
    font-size: 2rem;
  }
  #service2 .inner p {
    font-size: 3rem;
  }
  #service2 .inner .filter-data {
    width: 680px;
    margin: 60px auto;
  }
  #service2 .inner .sales-point h4 {
    font-size: 2.4rem;
  }
  #service2 .inner .sales-point .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #service2 .inner .sales-point .flex dl {
    width: 23%;
    margin-left: 10px;
    margin-right: 10px;
  }
  #service2 .inner .youtube-list .list {
    width: calc( ( 100% - 80px ) / 3);
  }
  #service2 .inner .youtube-list .list a .txt {
    font-size: 1.8rem;
  }
  #service2 .inner .procedure .flex .box {
    width: calc( ( 100% - 100px ) / 5);
    margin-bottom: 15px;
  }
  #service2 .inner .procedure .flex .box .txt {
    padding: 10px;
    font-size: 1.4rem;
  }
  #service2 .inner .procedure p {
    font-size: 1.4rem;
  }
  #price2 {
    padding: 40px 0;
  }
  #price2 .inner h3 {
    font-size: 4rem;
  }
  #price2 .inner h3 small {
    font-size: 2rem;
  }
  #price2 .inner .flex .price-box a {
    margin: 0.6em auto 0 auto;
    font-size: 3rem;
  }
  #other-products .inner p {
    font-size: 2.4rem;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /******************************************************************

Stylesheet: Retinaディスプレイで適用

******************************************************************/
  /*

EXAMPLE
.icon {
	background: url(images/test@2x.png) no-repeat;
	background-size: 24px 24px;
}

*/
}

@media print {
  /******************************************************************

Stylesheet: プリンタのみに適用

******************************************************************/
}
/*# sourceMappingURL=style.css.map */
