@charset "UTF-8";
#container {
  position: relative;
  background-color: white;
  height: 100%;
  z-index: 2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.Main-title h1 {
  font-size: 18px;
}

.sentence1 h2 {
  font-size: 13px;
}

.header {
  background-color: white;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 4;
  width: 100%;
  -webkit-box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.5);
}

.header-logo {
  margin-left: 30px;
}

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

.mobile-menu {
  position: fixed;
  right: 0;
  top: 60px;
  width: 300px;
}

.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s;
  transition: 1s;
  cursor: pointer;
}

.mobile-menu__main {
  padding: 0;
  -webkit-perspective: 2000px;
          perspective: 2000px;
  -webkit-transform: preserve-3d;
          transform: preserve-3d;
}

.mobile-menu__item {
  list-style: none;
  display: block;
  -webkit-transform: translate3d(0, 0, -1000px);
          transform: translate3d(0, 0, -1000px);
  padding: 0 40px;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s, -webkit-transform 0.3s;
  opacity: 0;
}

.mobile-menu__link {
  display: block;
  margin-top: 30px;
  color: black;
  text-decoration: none;
}

.mobile-menu .main-title {
  font-weight: 600;
  font-size: 25px;
}

.mobile-menu .sub-title {
  display: block;
  font-size: 14px;
  color: #535353;
}

.mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}

.mobile-menu__btn > span {
  background-color: black;
  width: 35px;
  height: 2px;
  display: block;
  margin-bottom: 9px;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}

.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}

.menu-open #container {
  -webkit-transform: translate(-300px, 60px);
          transform: translate(-300px, 60px);
  -webkit-box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
          box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
}

.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}

.menu-open .mobile-menu__item {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.menu-open .mobile-menu__item:nth-child(1) {
  -webkit-transition-delay: 0.07s;
          transition-delay: 0.07s;
}

.menu-open .mobile-menu__item:nth-child(2) {
  -webkit-transition-delay: 0.14s;
          transition-delay: 0.14s;
}

.menu-open .mobile-menu__item:nth-child(3) {
  -webkit-transition-delay: 0.21s;
          transition-delay: 0.21s;
}

.menu-open .mobile-menu__item:nth-child(4) {
  -webkit-transition-delay: 0.28s;
          transition-delay: 0.28s;
}

.menu-open .mobile-menu__btn > span {
  background-color: black;
}

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

.menu-open .mobile-menu__btn > span:nth-child(2) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: translateX(-18px) scaleX(0);
          transform: translateX(-18px) scaleX(0);
}

.menu-open .mobile-menu__btn > span:nth-child(3) {
  -webkit-transition-delay: 140ms;
          transition-delay: 140ms;
  -webkit-transform: translateY(-11px) rotate(-135deg);
          transform: translateY(-11px) rotate(-135deg);
}

#global-container {
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.pace-running #global-container {
  opacity: 0;
  visibility: hidden;
}

.pace {
  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
}

.pace .pace-progress {
  -webkit-transform: none !important;
          transform: none !important;
  text-align: center;
}

.pace .pace-progress::after {
  content: attr(data-progress-text);
  display: block;
  font-weight: 100;
  font-size: 2em;
  font-family: 'Helvetica Neue', 'Yu Gothic', 'Meiryo', sans-serif;
  color: #535353;
}

.pace.pace-inactive {
  display: none;
}

.pace-progress-inner {
  width: 40px;
  height: 40px;
  background-color: #fa772b;
  margin: 0 auto;
  -webkit-animation-name: sk-rotateplane;
          animation-name: sk-rotateplane;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
            transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
            transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
  }
}

#content {
  padding-top: 100px;
}

.swiper-slide {
  height: 500px;
  overflow: hidden;
}

.swiper-slide > img {
  width: 100%;
  height: 400px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: -webkit-transform 1.9s ease;
  transition: -webkit-transform 1.9s ease;
  transition: transform 1.9s ease;
  transition: transform 1.9s ease, -webkit-transform 1.9s ease;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 125, 0.1);
}

.swiper-slide-active > img {
  -webkit-transform: none;
          transform: none;
}

.swiper-slide-active .hero__title {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% + 20px));
          transform: translate(-50%, calc(-50% + 20px));
  color: white;
  font-size: 25px;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 1s, -webkit-transform 0.3s ease 1s;
  transition: opacity 0.3s ease 1s, -webkit-transform 0.3s ease 1s;
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s;
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s, -webkit-transform 0.3s ease 1s;
}

.hero__footer {
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  height: 68px;
  width: 22px;
  overflow: hidden;
}

.hero__downarrow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  -webkit-animation-name: kf-arrow-anime;
          animation-name: kf-arrow-anime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.hero__scrolltext {
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.7);
  left: -8px;
  top: 11px;
  font-size: 1.2em;
}

@-webkit-keyframes kf-arrow-anime {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  30% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes kf-arrow-anime {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  30% {
    -webkit-transform: none;
            transform: none;
  }
}

.containerw {
  margin: 0 auto;
}

.mainWrapper {
  background-color: rgba(235, 236, 238, 0.904);
  padding-top: 30px;
}

.main-info {
  margin: 0 4%;
  margin-top: 80px;
}

.main-info .info-title {
  text-align: center;
}

.main-info .info-title h1 {
  color: #fa772b;
}

.main-info .info-title h2 {
  border-bottom: rgba(0, 0, 0, 0.5) 2px solid;
}

.information-details {
  margin: 60px 4% 4% 0;
}

.information-details dt {
  border-bottom: 1px rgba(0, 0, 0, 0.3) solid;
  display: block;
  width: 100%;
}

.information-details dd {
  padding: 15px 0;
}

.googleMap {
  width: 100%;
  border: rgba(0, 0, 0, 0.3) 2px solid;
  display: block;
  -webkit-box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.4);
}

.googleMap iframe {
  width: 100%;
  display: block;
  margin: 0 auto;
  border: rgba(0, 0, 0, 0.3) 2px solid;
}

.explain {
  position: relative;
  padding-top: 0px;
  width: 94%;
  margin: 0 auto;
}

.explain img {
  width: 100%;
  -webkit-box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
          box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
}

.imageOut {
  margin: 15px 0;
  width: 94%;
  margin: 0 auto;
}

.imageOut img {
  width: 100%;
}

.Menu-exp {
  margin: 0 auto;
  width: 94%;
}

.Menu-exp p {
  text-align: center;
}

#btn-container {
  text-align: center;
  padding: 30px;
}

.mbtn {
  display: block;
  margin: 0 auto;
}

.mbtn .btn {
  position: relative;
  display: block;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 300px;
          perspective: 300px;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
}

.mbtn .btn.cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 48px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: center center -25px;
          transform-origin: center center -25px;
}

.mbtn .btn.cubic .hovering {
  background-color: black;
  color: white;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}

.mbtn .btn.cubic .default {
  background-color: #535353;
  color: white;
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}

.mbtn .btn.cubic:hover .hovering {
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}

.mbtn .btn.cubic:hover .default {
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
}

.insta {
  margin: 4% 4%;
  text-align: center;
  height: 350px;
  overflow: hidden;
}

.insta iframe {
  width: 100%;
}

.valuable-info {
  padding: 80px 4%;
  margin: 0 auto;
}

.valuable-info__content {
  color: red;
}

.footer {
  padding: 5px 0;
}

.footer a {
  color: #352f2f;
}

.header-logo img {
  width: 150pxpx;
  height: 60px;
}

a {
  text-decoration: none;
  color: black;
}

li {
  list-style-type: none;
}

body {
  margin: 0;
  font-family: 'Kameron','Noto Sans JP', sans-serif;
}

.subcontainer {
  margin: 0 auto;
  width: 90%;
}

.subcontainer2 {
  margin: 0 auto;
  width: 90%;
}

.video-subcontainer {
  width: 100%;
  height: 40vh;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

video {
  display: block;
  position: absolute;
  top: 57%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 500px;
  overflow: hidden;
}

#global-container {
  background-color: white;
  height: 100%;
}

#container {
  position: relative;
  background-color: rgba(88, 115, 150, 0.479);
  height: 100%;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}

.cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header {
  background-color: white;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 4;
  width: 100%;
  -webkit-box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.5);
}

.header-logo {
  position: absolute;
  left: 10px;
}

.header-logo-img {
  height: 30px;
  width: 110px;
}

.menu {
  background-color: transparent;
  border: none;
  outline: none;
  position: fixed;
}

.menu > span {
  width: 35px;
  height: 2px;
  background-color: black;
  display: block;
  margin-bottom: 9px;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.menu > span:nth-child(3) {
  margin-bottom: 0;
}

.menu-list {
  position: fixed !important;
  position: absolute;
  top: 60px;
  right: 90px;
}

.menu-list .main-btn {
  display: block;
  padding-bottom: 20px;
  opacity: 0;
}

.menu-open #container {
  -webkit-transform: translate(-300px, 60px);
          transform: translate(-300px, 60px);
  -webkit-box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
          box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
}

.menu-open .cover {
  opacity: 1;
  visibility: visible;
}

.menu-open .menu > span {
  background-color: black;
}

.menu-open .menu > span:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(405deg);
          transform: translateY(11px) rotate(405deg);
}

.menu-open .menu > span:nth-child(2) {
  -webkit-transform: translateX(-18px) scale(0);
          transform: translateX(-18px) scale(0);
}

.menu-open .menu > span:nth-child(3) {
  -webkit-transform: translateY(-11px) rotate(135deg);
          transform: translateY(-11px) rotate(135deg);
}

.main-title {
  display: block;
  font-size: 25px;
  opacity: 0;
}

.sub-title {
  display: block;
  font-size: 14px;
  padding-bottom: 10px;
  opacity: 0;
}

.menu-open .menu-list {
  -webkit-animation: kf-mnueAnime 1.5s;
          animation: kf-mnueAnime 1.5s;
}

.menu-open .main-btn {
  opacity: 1;
}

.menu-open .main-title {
  display: block;
  font-size: 25px;
  opacity: 1;
}

.menu-open .sub-title {
  display: block;
  font-size: 14px;
  padding-bottom: 10px;
  opacity: 1;
}

@-webkit-keyframes kf-mnueAnime {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  40% {
  }
  60% {
  }
  80% {
  }
  90% {
    -webkit-transform: rotate(380deg);
            transform: rotate(380deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes kf-mnueAnime {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  40% {
  }
  60% {
  }
  80% {
  }
  90% {
    -webkit-transform: rotate(380deg);
            transform: rotate(380deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.main-wrapper {
  margin: 0 auto;
  padding: 25px 0 25px 0;
}

.main-wrapper .subcontainer {
  margin: 0 auto;
}

.main-wrapper .subcontainer .Main-title {
  text-align: center;
}

.main-wrapper .subcontainer .sentence1 {
  text-align: center;
  font-size: 12px;
}

.main-wrapper .subcontainer .sentence2 {
  text-align: center;
}

.service-wrapper {
  padding: 25px 0;
  margin: 0 auto;
  width: 100%;
  background-color: whitesmoke;
}

.service-wrapper h1 {
  text-align: center;
}

.service-wrapper p {
  text-align: center;
}

.service-wrapper .services {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding-top: 15px;
}

.service-wrapper .services .service-icon {
  padding-top: 15px;
}

.btn-group {
  padding-bottom: 30px;
}

.btn-group .btn-sm {
  display: block;
  width: 50px;
  height: 25px;
  -webkit-animation: kf-btn 2.0s infinite;
          animation: kf-btn 2.0s infinite;
}

@-webkit-keyframes kf-btn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  30% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes kf-btn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  30% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.row {
  height: 100%;
  padding-top: 20px;
}

@media screen and (min-width: 481px) {
  /******************************************************************

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

******************************************************************/
  .Main-title h1 {
    font-size: 28px;
  }
  .sentence1 h2 {
    font-size: 20px;
  }
}

@media screen and (min-width: 601px) {
  /******************************************************************

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

******************************************************************/
  .googleMap {
    margin: 0 auto;
    width: 80%;
    height: 60%;
  }
  .imageIn {
    margin: 0 auto;
    width: 100%;
  }
  .imageIn img {
    display: block;
    margin: 0 auto;
    width: 550px;
  }
  .imageIn p {
    display: block;
    margin: 0 auto;
    width: 90%;
    padding: 40px 0;
  }
  .imageOut {
    width: 80%;
  }
  .imageOut img {
    display: block;
    margin: 0 auto;
    width: 70vh;
    height: 50vh;
  }
  .insta {
    display: block;
    margin: 30px 0;
    margin: 0 auto;
    width: 550px;
    height: 60vh;
  }
  .row {
    width: 50%;
  }
  .row img {
    height: 50vh;
    width: 50vh;
  }
}

@media screen and (min-width: 961px) {
  /******************************************************************

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

******************************************************************/
  .valuable-info__content h2 {
    font-size: 25px;
  }
  .valuable-info__content p {
    font-size: 17px;
  }
  .works {
    width: 80vh;
    margin: 0 auto;
  }
  .works .img {
    height: 70;
  }
}

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

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

******************************************************************/
  .googleMap iframe {
    height: 40vh;
  }
}
/*# sourceMappingURL=style.css.map */
