*, *:before, *:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 150%;
  line-height: 1.4;
}
body {
  font-family: Arial, "Hiragino Kaku Gothic Pro W3", Meiryo, sans-serif;
  background-color: #64666a;
  position: relative;
  color: #efefef;
  text-align: center;
}
body a, body a:visited {
  color: #efefef;
  text-decoration: none;
}
body a:hover {
  color: #fff;
}

.caption, .slick-slide::before, .slick-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slick-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  padding: 0 5%;
  text-align: left;
  z-index: 1;
}
.viewport-logo {
position: relative;
left:50px;
		width: 100%;
	height: 100%;
        top: 0px;

}

.viewport-logo_sw {
position: relative;

		width: 100%;
	height: 100%;
        top: 0px;
  text-align: center;
}
header h1 {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  padding-top: 18px;
}
.viewport-header {
  position: relative;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
	  background-color: #64666a;
}
h3 {
  font-family: "Calibri", sans-serif;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5vw;
  line-height: 1.2;
  font-size: 2vw;
  text-align: center;
}
h3 span {
  display: block;
  font-size: 10vw;
  letter-spacing: -1.3vw;
}
h4 {
  font-family: calibri ;
  color: blue;
	font-weight: bold;
	font-style: Normal;
  letter-spacing: auto;
  line-height: 1.2;
  font-size: 2vw;
  text-align: center;
}
h4 span {
  display: inline;
	  color: white;
  font-size: 1.5vw;
		font-weight: normal;
	font-style: normal;
  letter-spacing: auto;
}
header nav {
  display: inline-block;
  float: right;
}
header nav ul li {
  display: inline-block;
  vertical-align: top;
	font-weight: bold;
  font-size: 25px;
}
header nav ul li a {
  display: block;
  padding: 24px 15px;
}
header nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.18);
}



.main-slider {
  position: relative;
  width: 100%;
  height: 20vw;
  min-height: 5vw;
  margin-bottom: 50px;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s ease;
}
.main-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.slick-slide {
  position: relative;
  height: 20vw;
}
.slick-slide::before {
  background-color: #000;
  opacity: 0.3;
  z-index: 1;
}
.slick-slide video {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
.slick-slide iframe {
  position: relative;
  pointer-events: none;
}
.slick-slide figure {
  position: relative;
  height: 100%;
}
.slick-slide .slide-image {
  opacity: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.8s ease;
}
.slick-slide .slide-image.show {
  opacity: 1;
}
.slick-slide .image-entity {
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.slick-slide .loading {
  position: absolute;
  top: 44%;
  left: 0;
  width: 100%;
}
.slick-slide .slide-media {
  -webkit-animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
          animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}
.slick-slide.slick-active {
  z-index: 1;
}
.slick-slide.slick-active .slide-media {
  -webkit-animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
          animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}
.slick-slide.slick-active .caption {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s;
}

.caption {
  position: absolute;
  top: 44%;
  left: 5%;
  text-align: center;
  padding: 20px;
  border: 3px solid;
  color: #fff;
  margin: 0;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.02em;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
  transform: translateY(100px);
}

.slick-dots {
  text-align: center;
  padding-top: 15px;
}
.slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.slick-dots li button {
  width: 16px;
  height: 16px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 transparent;
  vertical-align: middle;
  color: #fff;
  background-color: #fff;
  transition: all 0.3s ease;
  opacity: 0.4;
}
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover {
  opacity: 1;
}
.slick-dots li.slick-active button {
  border-color: #64666a;
  box-shadow: 0 0 0 2px #fff;
  opacity: 1;
}

.container {
  background-color: #64666a;
  color: #FFFFFF;
  line-height: 1.6;
  padding: 80px 0;
}
.container .content {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
}
.container p {
  margin-bottom: 40px;
}

@-webkit-keyframes slideIn {
  from {
    filter: blur(15px);
  }
  to {
    filter: blur(0);
  }
}

@keyframes slideIn {
  from {
    filter: blur(15px);
  }
  to {
    filter: blur(0);
  }
}
@-webkit-keyframes slideOut {
  from {
    filter: blur(0);
  }
  to {
    filter: blur(15px);
  }
}
@keyframes slideOut {
  from {
    filter: blur(0);
  }
  to {
    filter: blur(15px);
  }
}

.card-image {
	display: block;
	min-height: 25rem; /* layout hack */
	background: #fff center center no-repeat;
	background-size: cover;
	filter: blur(3px); /* blur the lowres image */
}

.card-image > img {
	display: block;
	width: 100%;
	opacity: 0; /* visually hide the img element */
}

.card-image.is-loaded {
	filter: none; /* remove the blur on fullres image */
	transition: filter 1s;
}




/* Layout Styles */
html, body2 {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
	font-family: sans-serif;
}

.card-list {
	display: block;
	margin: 1rem auto;
	padding-left: 300px;
	padding-right: 300px;
	font-size: 0;
	text-align: center;
	list-style: none;
	background: #64666A
}

.card {
	display: inline-block;
	width: 90%;
	max-width: 24rem;
		height: 27rem;
	border-radius: 1rem;
	margin: 1rem;
	font-size: 1rem;
	text-decoration: none;
	overflow: hidden;
	box-shadow: 0 0 6rem -1rem rgba(0,0,0,10);
	transition: transform 0.1s ease-in-out, box-shadow 0.8s;
	background: #B1B1B1
}
.card-icon-box {
	display: inline-block;
	width: 90%;
	max-width: 10rem;
	margin: 1rem;
	font-size: 1rem;
	text-decoration: none;
	/*overflow: hidden;
	box-shadow: 0 0 3rem -1rem rgba(0,0,0,0.5);
	transition: transform 0.1s ease-in-out, box-shadow 0.1s;*/
}
.card-icon-box2 {
	display: inline-block;
	width: 90%;
	max-width: 10rem;
	margin: 1rem;
	font-size: 1rem;
	text-decoration: none;
	/*overflow: hidden;
	box-shadow: 0 0 3rem -1rem rgba(0,0,0,0.5);
	transition: transform 0.1s ease-in-out, box-shadow 0.1s;*/
	
}

.card-icon-box3 {
	display: inline-block;
	width: 90%;
	max-width: 10rem;
	margin: 1rem;
	font-size: 1rem;
	text-decoration: none;
	/*overflow: hidden;
	box-shadow: 0 0 3rem -1rem rgba(0,0,0,0.5);
	transition: transform 0.1s ease-in-out, box-shadow 0.1s;*/
	
}
.card:hover {
	transform: translateY(-0.5rem) scale(1.0125);
	box-shadow: 0 0.5em 3rem -1rem rgba(0,0,0,0.5);
}

.card-description {
	display: block;
	padding: 1em 0.5em;
	color: #fffffff;
	text-decoration: none;
}

.card-description > h2 {
	margin: 0 0 0.5em;
		font-size: 28px;
	font-family: sans-serif;
}

.card-description > p {
	margin: 0;
			font-size: 16px;
}



@media (min-width: 1200px) {
    .container {
        max-width: 1310px;
    }
    .tm-container-2 {
        max-width: 1170px;
    }
}

@media (max-width: 1199px) {
    .tm-video-container {
        max-width: 932px;
        max-height: 466px;
		  border-radius: 20px;
    }
    .tm-video-text-overlay {
        left: 60%;
    }
}

@media (max-width: 991px) {
    #google-map,
    .tm-contact-form {
        max-width: 100%;
    }
    .google-map-iframe {
        width: 100%;
    }
    .tm-video-container {
        max-width: 690px;
        max-height: 345px;
		  border-radius: 10px;
    }
    .tm-video-text-overlay {
        left: 45%;
    }
	.tm-video-text-overlay h1 {
		font-size: 2.8rem;
	}
    .tm-timeline-item {
        margin-left: 25px;
    }
}

@media (max-width: 767px) {
    .tm-timeline-item {
        margin-left: 0;
    }
    .tm-video-container {
        max-width: 510px;
        max-height: 255px;
		  border-radius: 10px;
    }
    .tm-video-container,
    .tm-welcome-video {
        min-height: 220px;
		  border-radius: 25px;
    }
    .tm-video-text-overlay {
        left: 25%;
    }
}

@media (max-width: 584px) {
    .tm-timeline-item-inner {
        flex-direction: column;
    }
    .tm-timeline-connector {
        width: 3px;
        height: 55px;
    }
    .tm-timeline-connector-vertical {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 540px;
    }
    .tm-video-text-overlay {
        left: 30%;
    }
    .tm-video-text-overlay h1 {
        font-size: 1.8rem;
    }
}


@media (max-width: 480px) {
    .tm-video-container {
        overflow-x: hidden;
		  border-radius: 10px;
    }
    .tm-welcome-video {
        min-width: auto;
        max-width: 125%;
		  border-radius: 25px;
    }
}


main {
  position: relative;
  width: 100%;
  min-height: 80%;
  padding: 40px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
}
@media screen and (min-width: 800px) {
  main {
    width: 800px;
    margin: 0 auto;
  }
}
.icon {
  width: 120px;
  height: 120px;
  flex: 1 0 120px;
  cursor: pointer;
}
.icon:hover svg {
  width: 60%;
  height: 60%;
  left: -10%;
  top: 20%;
}
.icon:hover path {
  fill: rgba(255,255,255,0.9);
}
.icon:hover .shadow {
  fill: rgba(0,0,0,0.5);
  box-shadow: 0 0 5px 5px rgba(0,0,0,5);
}


.shadow {
  fill: transparent;
  transform-style: preserve-3d;
  transform-origin: 75% 150%;
  transform: scale(1.2, 1.2) perspective(500px) rotateX(40deg) skew(-45deg);
}

body3 {
  margin: 0;
  min-height: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 300;
}

#grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 290px);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
  justify-content: center;
	width:100%;
  max-width: 1500px;
}
#grid .card {
  background-color: #ccc;
  width: 290px;
  height: 225px;
  transition: all 0.1s ease;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 10);
  overflow: hidden;
  cursor: pointer;
}
#grid .card:hover {
  transform: scale(2);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 10);
}
#grid .card:hover img {
  filter: grayscale(0);
}
#grid .card .reflection {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 0;
  top: 0;
  transition: all 0.1s ease;
  opacity: 0;
  mix-blend-mode: soft-light;
}
#grid .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(0.65);
  transition: all 0.3s ease;
}


body5 {
  font-family: "calibri", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  /*min-height: 100vh;
  background: #f3f8fa;*/
}
body6 {
  font-family: "calibri", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
left;200px;
	rigth:200px;
  align-items: center;
  justify-content: center;
  margin: 10px;
  /*min-height: 100vh;
  background: #f3f8fa;*/
}
body7 {
  font-family: "calibri", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
left;50px;
	rigth:50px;
  align-items: center;
  justify-content: center;
  margin: 5px;
  /*min-height: 100vh;
  background: #f3f8fa;*/
}

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
button.learn-more {
  width: 12rem;
  height: auto;
}
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 5rem;
  height: 5rem;
  background: #282936;
  border-radius: 2.5rem;
}
button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.6rem;
  right: -1.2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0;
  margin: 0 0 0 5rem;
  color: #282936;
  font-weight: 800;
  line-height: 2.5;
  text-align: center;
  text-transform: uppercase;
}
button:hover .circle {
  width: 100%;
}
button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
button:hover .button-text {
  color: #fff;
}