/*

Tooplate 2113 Earth

https://www.tooplate.com/view/2113-earth

*/

@import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');

@keyframes seq-preloader {
  50% {
    opacity: 1;
  }
  
  100% {
    opacity: 0;
  }
}

.seq-preloader {
  background: white;
  visibility: visible;
  opacity: 1;
  position: absolute;
  z-index: 99999999;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.seq-preloader.seq-preloaded {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s .5s, opacity .5s;
}

.seq-preload-indicator {
  overflow: visible;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.seq-preload-circle {
  display: inline-block;
  height: 12px;
  width: 12px;
  fill: #7a7a7a;
  opacity: 0;
  animation: seq-preloader 1.25s infinite;
}

.seq-preload-circle-2 {
  animation-delay: .15s;
}

.seq-preload-circle-3 {
  animation-delay: .3s;
}

.seq-preload-indicator-fallback {
  width: 42px;
  overflow: visible;
}

.seq-preload-indicator-fallback .seq-preload-circle {
  width: 8px;
  height:8px;
  background-color: #f4f4f4;
  border-radius: 100%;
  opacity: 1;
  display: inline-block;
  vertical-align: middle;
}

.seq-preload-indicator-fallback .seq-preload-circle-2 {
  margin-left: 3px;
  margin-right: 3px;
  width: 12px;
  height: 12px;
}

.seq-preload-indicator-fallback .seq-preload-circle-3 {
  width: 16px;
  height: 16px;
}


/* MAIN CSS */

@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #fff;
  }
}
@keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #fff;
  }
}
@-webkit-keyframes fillColour {
  0% {
    color: #fff;
  }
  50% {
    color: #fff;
  }
  100% {
    color: #333;
  }
}
@keyframes fillColour {
  0% {
    color: #fff;
  }
  50% {
    color: #fff;
  }
  100% {
    color: #333;
  }
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html {
	overflow: hidden;
}

body {
  overflow: hidden;
  font-size: 100%;
}
#humberger div{
	display: none;
}
.drawer_hidden{
	display: none;
}
.drawer_open{
	display: none;
}
nav {
  top: 10%;
  text-align: center;
  background: rgba(250,245,178,0.35);
  position: fixed;
  z-index: 100;
  height: 90%;
  left: 0;
  width: 15%;
  font-weight: 300;
  font-size: 1rem;
  overflow-y: scroll;
}
.nav_content::-webkit-scrollbar {
  width: 5px;
}
.nav_content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
}
.nav_content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
nav em {
	font-style: normal;
	font-size: 13px;
	text-transform: none;
	display: block;
	margin-top: 15px;
	color: #000000;
}

nav ul li a {
	text-align: center;
}

nav ul {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	text-align: left;
	list-style-type: none;
	height: 70%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
	-ms-flex-pack: distribute;
  justify-content: space-around;
}
nav ul li {
	text-align: center;
	margin: 5px 0px;
}
nav a, nav a:visited, nav a:active {
  color: #fff;
}
nav a {
	text-decoration: none!important;
	display: inline-block;
	width: 140px;
	padding: 15px 0px;
	position: relative;
	z-index: 0;
	transition: all .5s;
}
nav a.active {
  background-color: rgba(243,232,83,0.60);
}
nav a::before {
  content: "";
  position: absolute;
  height: 0%;
  width: 0%;
  bottom: 0;
  left: 0;
  opacity: 1;
  z-index: -1;
}
.logo {
  margin-top: 0px;
  top: 0;
  left: 0;
  z-index: 999999;
  position: fixed;
 	display: inline-block;
  text-align: center;
	background-color: #99ffff;
	height: 15%;
	width: 15%;
}
.logo h1 {
  font-family: 'Krona One', sans-serif;
  font-size: 24px;
  text-transform: none;
  font-weight: 900;
  color: #111;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.logo h2 {
  display: none;
}
.slides {
  /*margin-top: -11px;*/
  width: 700vw;
  height: 100vh;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.slides .slide {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  float: left;
  text-align: center;
  background-size: cover;
}
.slides .slide .content {
  overflow-y: scroll;
  position: relative;
  width: 80%;
  /*height: 80%;*/
  height: 90%;
  left: 20%;
  top: 10%;
}
.content::-webkit-scrollbar {
  display: none!important;
  opacity: 0!important;
  visibility: hidden!important;
}
 Add a thumb 
.content::-webkit-scrollbar-thumb {
  display: none!important;
  opacity: 0!important;
  visibility: hidden!important;
}
.slides .slide {
  background-position: center center fixed;
  background-size: cover;
  /*background-position: fixed;*/
}
.slides .slide:nth-child(1) {

}
.slides .slide:nth-child(2) {
  background-image: url(../images/cos-bg.jpg);
  background-position: fixed;
}
.slides .slide:nth-child(3) {
  background-image: url(../images/htd-bg.jpg);
  background-position: fixed;
}
.slides .slide:nth-child(4) {
  background-image: url(../images/clue_card-bg.jpg);
  background-position: fixed;
}
.slides .slide:nth-child(5) {
  background-image: url(../images/sweet-bg.jpg);
  background-position: fixed;
}
.slides .slide:nth-child(6) {
  background-image: url("../images/Reborn-bg.jpg");
  background-position: fixed;
}
.slides .slide:nth-child(7) {
  background-image: url(../images/contact-bg.jpg);
  background-position: fixed;
}

/* Slide 1 Stlye */
#slider-wrapper{
  max-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
#image-slider {
  width: auto;
  height: auto;
  position: relative;
  overflow: hidden;
  margin: auto;
  display: block;
}
#image-slider ul {
  margin-bottom: 0;
  width: 100%;
  height: 100vh;
  position: relative;
}
#image-slider ul li {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height:100%; 
}
#image-slider ul li {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
#image-slider ul li:nth-child(1) {
  background-image: url(../images/full-bg-cos.jpg);
}
#image-slider ul li:nth-child(2) {
  background-image: url(../images/full-bg-htd.jpg);
}
#image-slider ul li:nth-child(3) {
  background-image: url(../images/clue_top-bg.jpg);
}
#image-slider ul li.active-img{
  left: 0;
}
#thumbnail {
  position: absolute;
  z-index: 99999;
  bottom: 30px;
  right: 30px;
}
#thumbnail ul {
  padding: 0px;
  margin: 0px;
}
#thumbnail ul li {
  display: inline-block;
  max-width: 120px;
  max-height: 120px;
  margin-left: 30px;
  cursor: pointer;
  border: 4px solid transparent;
  transition: all 0.5s;
}
#thumbnail ul li.active {
  border: 5px solid #faf5b2;
}
#thumbnail ul li img {
  max-width: 100%;
  overflow: hidden;
}
.slide-caption {
  text-align: right;
  right: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slide-caption h5 {
  margin-top: 0px;
  font-size: 18px;
  text-transform: none;
  /* -webkit-text-stroke: 0.2px black;
  text-stroke: 0.2px black; */
  font-weight: 700;
  color: #000000;
}
.slide-caption h6 {
  margin-top: 0px;
  font-size: 14px;
  text-transform: none;
  font-weight: 700;
  color: #FF2BB5;
}
.slide-caption h2 {
  font-family: 'Krona One', sans-serif;
  margin-top: 0px;
  font-size: 60px;
  text-transform: none;
  text-shadow:0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff;
  font-weight: 900;
  color: #99ffff;
}
.slide-caption3 h5 {
  color: #ffffff;
}


/* Slide 2 Style */
.second-content {
	top: 40%!important;
	transform: translateY(-40%);
}
#second-tabs {
  float: right;
  margin-right: 0px;
}
#second-tabs ul {
  margin: 0;
  padding: 0;
  float: left;
}
#second-tabs ul li {
  margin-top: 5px;
  margin-bottom: 25px;
  display: block;
  background-color: transparent;
}
#second-tabs ul li:last-child {
  margin-bottom: 0px;
}
#second-tabs ul li a {
  display: block;
  cursor: pointer;
  outline: 0;
  border: none;
  color: #6a6a6a;
  text-decoration: none;
  text-transform: uppercase;
}
#second-tabs ul li span {
  text-align: center; 
  background-color: transparent;
  border: 3px solid #fff;
  color: #fff;
  width: 90px;
  height: 90px;
  font-size: 32px;
  line-height: 84px;
  border-radius: 50%;
}
#second-tabs ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#second-tabs ul .ui-tabs-active a {
  color: #000;
}
#second-tabs ul .ui-tabs-active span {
  color: #1e1e1e;
}
.second-tabs-content {
  margin-left: 60px;
  width: 585px;
  text-align: left;
  display: inline-block;
  background: rgba(255,255,255,0.9);
  margin-right: 30px;
  padding: 30px;
}
.second-tabs-content h2 {
  font-size: 29px;
  text-transform: none;
  font-weight: 900;
  color: #1e1e1e;
  margin-top: 0px;
}
.second-tabs-content span {
  font-size: 15px;
  color: #7a7a7a;
  text-transform: uppercase;
}
.second-tabs-content p {
  font-size: 14px;
  color: #7a7a7a;
  margin-top: 15px;
  margin-bottom: 0px;
}
.youtube {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}
.youtube iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}



/* Slide 3 Style */
.third-content {
	top: 40%!important;
	transform: translateY(-40%);
}
#third-tabs {
  float: right;
  margin-right: 0px;
}
#third-tabs ul {
  margin: 0;
  padding: 0;
  float: left;
}
#third-tabs ul li {
  margin-top: 5px;
  margin-bottom: 25px;
  display: block;
  background-color: transparent;
}
#third-tabs ul li:last-child {
  margin-bottom: 0px;
}
#third-tabs ul li a {
  display: block;
  cursor: pointer;
  outline: 0;
  border: none;
  color: #6a6a6a;
  text-decoration: none;
  text-transform: uppercase;
}
#third-tabs ul li span {
  text-align: center; 
  background-color: transparent;
  border: 3px solid #fff;
  color: #fff;
  width: 90px;
  height: 90px;
  font-size: 32px;
  line-height: 84px;
  border-radius: 50%;
}
#third-tabs ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#third-tabs ul .ui-tabs-active a {
  color: #000;
}
#third-tabs ul .ui-tabs-active span {
  color: #1e1e1e;
}
.third-tabs-content {
  margin-left: 60px;
  width: 585px;
  text-align: left;
  display: inline-block;
  background: rgba(255,255,255,0.9);
  margin-right: 30px;
  padding: 30px;
}
.third-tabs-content h2 {
  font-size: 29px;
  text-transform: uppercase;
  font-weight: 900;
  color: #1e1e1e;
  margin-top: 0px;
}
.third-tabs-content span {
  font-size: 15px;
  color: #7a7a7a;
  text-transform: uppercase;
}
.third-tabs-content p {
  font-size: 14px;
  color: #7a7a7a;
  margin-top: 15px;
  margin-bottom: 0px;
}
.gmap {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}
.gmap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}

/* Slide 4 Style */
.fourth-content {
	top: 40%!important;
	transform: translateY(-40%);
}
#fourth-tabs {
  float: right;
  margin-right: 0px;
}
#fourth-tabs ul {
  margin: 0;
  padding: 0;
  float: left;
}
#fourth-tabs ul li {
  margin-top: 5px;
  margin-bottom: 25px;
  display: block;
  background-color: transparent;
}
#fourth-tabs ul li:last-child {
  margin-bottom: 0px;
}
#fourth-tabs ul li a {
  display: block;
  cursor: pointer;
  outline: 0;
  border: none;
  color: #6a6a6a;
  text-decoration: none;
  text-transform: uppercase;
}
#fourth-tabs ul li span {
  text-align: center; 
  background-color: transparent;
  border: 3px solid #008CFF;
  color: #008CFF;
  width: 90px;
  height: 90px;
  font-size: 32px;
  line-height: 84px;
  border-radius: 50%;
}
#fourth-tabs ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#fourth-tabs ul .ui-tabs-active a {
  color: #000;
}
#fourth-tabs ul .ui-tabs-active span {
  color: #1e1e1e;
}
.fourth-tabs-content {
  margin-left: 60px;
  width: 585px;
  text-align: left;
  display: inline-block;
  background: rgba(255,255,255,0.9);
  margin-right: 30px;
  padding: 60px;
}
.fourth-tabs-content h2 {
  font-size: 29px;
  text-transform: uppercase;
  font-weight: 900;
  color: #1e1e1e;
  margin-top: 0px;
}
.fourth-tabs-content span {
  font-size: 15px;
  color: #7a7a7a;
  text-transform: uppercase;
}
.fourth-tabs-content p {
  font-size: 14px;
  color: #7a7a7a;
  margin-top: 15px;
  margin-bottom: 0px;
}
.gmap {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}
.gmap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}
table{
  width: 100%;
  border-collapse: collapse;
}
table tr{
  position: relative;
  border-bottom: solid 2px white;
}
table tr:last-child{
  border-bottom: none;
}
table th{
  /*position: relative;*/
  width: 30%;
  background-color: #52c2d0;
  color: white;
  text-align: center;
  padding: 10px 0;
}
table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
}
table td{
  width: 40%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
}
table td:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
}
table tr *:nth-child(3){
  background: #52c2d0;
  color: white;
}

/* Slide 5 Style */
.fifth-content {
	top: 40%!important;
	transform: translateY(-40%);
}
#fifth-tabs {
  float: right;
  margin-right: 0px;
}
#fifth-tabs ul {
  margin: 0;
  padding: 0;
  float: left;
}
#fifth-tabs ul li {
  margin-top: 5px;
  margin-bottom: 25px;
  display: block;
  background-color: transparent;
}
#fifth-tabs ul li:last-child {
  margin-bottom: 0px;
}
#fifth-tabs ul li a {
  display: block;
  cursor: pointer;
  outline: 0;
  border: none;
  color: #6a6a6a;
  text-decoration: none;
  text-transform: uppercase;
}
#fifth-tabs ul li span {
  text-align: center; 
  background-color: transparent;
  border: 3px solid #008CFF;
  color: #008CFF;
  width: 90px;
  height: 90px;
  font-size: 32px;
  line-height: 84px;
  border-radius: 50%;
}
#fifth-tabs ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#fifth-tabs ul .ui-tabs-active a {
  color: #000;
}
#fifth-tabs ul .ui-tabs-active span {
  color: #1e1e1e;
}
.fifth-tabs-content {
  margin-left: 60px;
  width: 585px;
  text-align: left;
  display: inline-block;
  background: rgba(255,255,255,0.9);
  margin-right: 30px;
  padding: 60px;
}
.fifth-tabs-content h2 {
  font-size: 29px;
  text-transform: uppercase;
  font-weight: 900;
  color: #1e1e1e;
  margin-top: 0px;
}
.fifth-tabs-content span {
  font-size: 15px;
  color: #7a7a7a;
  text-transform: uppercase;
}
.fifth-tabs-content p {
  font-size: 14px;
  color: #7a7a7a;
  margin-top: 15px;
  margin-bottom: 0px;
}
.gmap {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}
.gmap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}
.fifth-tabs-content table{
  width: 100%;
  border-collapse: collapse;
}
.fifth-tabs-content table tr{
  position: relative;
  border-bottom: solid 2px white;
}
.fifth-tabs-content table tr:last-child{
  border-bottom: none;
}
.fifth-tabs-content table th{
  /*position: relative;*/
  width: 30%;
  background-color: #52c2d0;
  color: white;
  text-align: center;
  padding: 10px 0;
}
.fifth-tabs-content table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
}
.fifth-tabs-content table td{
  width: 40%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
}
.fifth-tabs-content table td:after{
  display: block;
}

/* Slide 6 Style */
.six-content {
	top: 40%!important;
	transform: translateY(-40%);
}
#six-tabs {
  float: right;
  margin-right: 0px;
}
#six-tabs ul {
  margin: 0;
  padding: 0;
  float: left;
}
#six-tabs ul li {
  margin-top: 5px;
  margin-bottom: 25px;
  display: block;
  background-color: transparent;
}
#six-tabs ul li:last-child {
  margin-bottom: 0px;
}
#six-tabs ul li a {
  display: block;
  cursor: pointer;
  outline: 0;
  border: none;
  color: #6a6a6a;
  text-decoration: none;
  text-transform: uppercase;
}
#six-tabs ul li span {
  text-align: center; 
  background-color: transparent;
  border: 3px solid #008CFF;
  color: #008CFF;
  width: 90px;
  height: 90px;
  font-size: 32px;
  line-height: 84px;
  border-radius: 50%;
}
#six-tabs ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#six-tabs ul .ui-tabs-active a {
  color: #000;
}
#six-tabs ul .ui-tabs-active span {
  color: #1e1e1e;
}
.six-tabs-content {
  margin-left: 60px;
  width: 585px;
  text-align: left;
  display: inline-block;
  background: rgba(255,255,255,0.9);
  margin-right: 30px;
  padding: 60px;
}
.six-tabs-content h2 {
  font-size: 29px;
  text-transform: uppercase;
  font-weight: 900;
  color: #1e1e1e;
  margin-top: 0px;
}
.six-tabs-content span {
  font-size: 15px;
  color: #7a7a7a;
  text-transform: uppercase;
}
.six-tabs-content p {
  font-size: 14px;
  color: #7a7a7a;
  margin-top: 15px;
  margin-bottom: 0px;
}
.six-tabs-content table{
  width: 100%;
  border-collapse: collapse;
}
.six-tabs-content table tr{
  position: relative;
  border-bottom: solid 2px white;
}
.six-tabs-content table tr:last-child{
  border-bottom: none;
}
.six-tabs-content table th{
  /*position: relative;*/
  width: 30%;
  background-color: #52c2d0;
  color: white;
  text-align: center;
  padding: 10px 0;
}
.six-tabs-content table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
}
.six-tabs-content table td{
  width: 40%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
}
.six-tabs-content table td:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
}

/* Slide 7 Style */
.seven-content {
  top: 40%!important;
  height: 100%;
  transform: translateY(-40%);
}
#seven-tabs {
  float: right;
  margin-right: 0px;
}
/*#contact {
  margin-left: 60px;
  width: 700px;
  text-align: left;
  display: inline-block;
  background: rgba(255,255,255,0.9);
  margin-right: 30px;
  padding: 30px;
}*/
#contact {
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
  margin-bottom: 20px;
  padding: 30px;
  background-color: rgba(255,255,255,0.9);
}
#contact h2 {
  font-size: 29px;
  text-transform: uppercase;
  font-weight: 900;
  color: #000;
  margin-top: 0px;
  margin-bottom: 20px;
}
#contact input,
#contact textarea,
#contact select,
#contact option {
  padding-left: 15px;
  background-color: rgba(0,0,0,0.1);
  border: 1px solid #fff;
  border-radius: 0px;
  height: 40px;
  font-size: 14px;
  color: #FF060A;
  margin-bottom: 10px;
}
#contact input:focus,
#contact textarea:focus,
#contact select:focus,
#contact option:focus {
  color: #000;
  outline: none;
  box-shadow: none;
  border: 1px solid rgba(250,245,178,1);
  background-color: rgba(0,0,0,0.1);
}
#contact .datetime fieldset {
	display: none;
	margin-bottom: 5px;
	padding: 0px 5px 0px;
	border: 1px #000000 dashed;
}
#contact .datetime legend {
	font-size: 18px;
	text-transform: uppercase;
  	font-weight: 900;
}
#contact textarea {
	resize: vertical;
	height: 160px;
	width: 100%;
	margin: 5px;
	padding:10px;
	box-sizing:border-box;
	-moz-box-sizing:border-box; /* Firefox */
	-webkit-box-sizing:border-box; /* Chrome, Safari */
}
#contact button {
  border: 2px solid #fff;
  font-size: 15px;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  background-color: transparent;
  height: 44px;
  line-height: 40px;
  display: inline-block;
  padding: 0px 20px;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
}
#contact button:hover {
  background-color: #faf5b2;
  border-color: #faf5b2;
  color: #1e1e1e;
}

/* Responsive Style */
@media (max-width: 991px) {

  .slides .slide .content {
	width: 100%;
	height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
	left: 0;
  }
  /*.second-content {
	top: 140%!important;
	transform: translateY(-140%);
  }
  .third-content {
	top: 140%!important;
	transform: translateY(-140%);
  }
  .fourth-content {
	top: 140%!important;
	transform: translateY(-140%);
  }
  .fifth-content {
	top: 140%!important;
	transform: translateY(-140%);
  }*/
  /*.fourth-content {
	top: 250%!important;
	transform: translateY(-250%);
  }*/
/*
  .logo {
	  margin-top: 0px;
	  top: 0;
	  left: 0;
	  z-index: 999999;
	  position: fixed;
		display: inline-block;
	  text-align: center;
		background-color: #faf5b2;
		height: 10%;
		width: 10%;
  }
  .logo h1 {
    display: none;
  }
  .logo h2 {
  	margin-top: 0px;
    line-height: 100px;
    height: 100px;
    width: 15vw;
    top: 0;
    left: 0;
    z-index: 999999;
    position: fixed;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
    color: #111;
    display: inline-block;
    text-align: center;
    background-color: #faf5b2;
  }
  nav {
    top: 0vh;
    height: 100px;
    width: 85vw;
    margin-left: 15vw;
  }
*/
  .logo {
	display: none;
  }
  /*nav {
    top: 0vh;
    height: 0px;
    width: 100vw;
  }*/
  /*nav ul {
    flex-direction: row;
  }*/
  /*nav ul li {
    display: inline;
    margin: 0px;
  }*/
  /*nav ul li img {
	width: 70%;
  }*/
  /*nav ul li em {
    display: none;
  }*/
  /*nav a {
  	text-align: center;
	  width: 60px;
	  height: 60px;
    line-height: 30px;
    display: inline-block;
  }*/
/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}
.nav{
	display: inline;
	position: relative;
	width: 100%;
}
/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display:inline;
  top: 3vh;
  height: 30px;
  width: 95vw;
  position:absolute;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  right: 0px;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: rgba(255,255,255,0.90);
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap:15px;
  list-style:none;
  margin: 0px;
  line-height: 10px;
}
.nav_list img{
	width: 30%;
	height: auto;
}
.nav_item{
	flex-grow: 0;
	box-sizing: border-box;
	flex-basis: calc( 30% - ( 15px / 3 * 2 ) );
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}
	
  div ul li img {
	height: auto;
	width: 35%;
  }
  .second-slide {
    margin-left: 0;
    top: 0;
    transform: translateY(0%);
    margin-top: 100px;
  }
/*
  .contact-form {
    padding: 20px;
  }
  .contact-form h2 {
    font-size: 29px;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 20px;
  }
*/
  .slide-caption h2 {
  	font-size: 48px;
  }
  .second-tabs-content {
    width: auto;
    text-align: center;
    margin: 0px 30px;
    padding: 20px;
  }
  .second-tabs-content p {
    margin-top: 20px;
  }
  #second-tabs ul li {
    display: inline-block;
    margin: 100px 10px 0px;
  }
  #second-tabs ul li img{
    width: 60px;
    height: 60px;
  }
  #second-tabs ul {
    float: none;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  #thumbnail ul li {
    max-width: 80px;
    max-height: 80px;
    margin-left: 10px;
  }
  .slide-caption {
    padding-left: 30px;
  }
  #second-tabs ul li span {
    width: 60px;
    height: 60px;
    font-size: 22px;
    line-height: 54px;
  }
  #second-tabs ul .ui-tabs-active span {
    line-height: 60px;
  }
  .featured-item {
    padding: 30px 15px;
  }
  .owl-dots {
    margin-top: 10px;
    padding-bottom: 30px;
  }
  .second-tabs-content h2 {
    font-size: 21px;
  }
  
  .third-slide {
    margin-left: 0;
    top: 0;
    transform: translateY(0%);
    margin-top: 100px;
  }
/*
  .contact-form {
    padding: 20px;
  }
  .contact-form h2 {
    font-size: 29px;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 20px;
  }
*/
  .slide-caption h2 {
  	font-size: 48px;
  }
  .third-tabs-content {
    width: auto;
    text-align: center;
    margin: 0px 30px;
    padding: 20px;
  }
  .third-tabs-content p {
    margin-top: 20px;
  }
  #third-tabs ul li {
    display: inline-block;
    margin: 100px 10px 0px;
  }
  #third-tabs ul {
    float: none;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  #thumbnail ul li {
    max-width: 80px;
    max-height: 80px;
    margin-left: 10px;
  }
  .slide-caption {
    padding-left: 30px;
  }
  #third-tabs ul li span {
    width: 60px;
    height: 60px;
    font-size: 22px;
    line-height: 54px;
  }
  #third-tabs ul .ui-tabs-active span {
    line-height: 60px;
  }
  .featured-item {
    padding: 30px 15px;
  }
  .owl-dots {
    margin-top: 10px;
    padding-bottom: 30px;
  }
  .third-tabs-content h2 {
    font-size: 21px;
  }

  .fourth-slide {
    margin-left: 0;
    top: 0;
    transform: translateY(0%);
    margin-top: 100px;
  }
  .slide-caption h2 {
  	font-size: 48px;
  }
  .fourth-tabs-content {
    width: auto;
    text-align: center;
    margin: 0px 10px;
    padding: 10px;
  }
  .fourth-tabs-content p {
    margin-top: 20px;
	text-align: left;
  }
  #fourth-tabs ul li {
    display: inline-block;
    margin: 100px 10px 0px;
  }
  #fourth-tabs ul {
    float: none;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  #thumbnail ul li {
    max-width: 80px;
    max-height: 80px;
    margin-left: 10px;
  }
  .slide-caption {
    padding-left: 30px;
  }
  #fourth-tabs ul li span {
    width: 60px;
    height: 60px;
    font-size: 22px;
    line-height: 54px;
  }
  #fourth-tabs ul .ui-tabs-active span {
    line-height: 60px;
  }
  .featured-item {
    padding: 30px 15px;
  }
  .owl-dots {
    margin-top: 10px;
    padding-bottom: 30px;
  }
  .fourth-tabs-content h2 {
    font-size: 21px;
  }

  .fifth-slide {
    margin-left: 0;
    top: 0;
    transform: translateY(0%);
    margin-top: 100px;
  }
  .fifth-tabs-content {
    width: auto;
    text-align: center;
    margin: 0px 10px;
    padding: 10px;
  }
  .fifth-tabs-content p {
    margin-top: 20px;
	text-align: left;
  }
  #fifth-tabs ul li {
    display: inline-block;
    margin: 100px 10px 0px;
  }
  #fifth-tabs ul {
    float: none;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  #fifth-tabs ul li span {
    width: 60px;
    height: 60px;
    font-size: 22px;
    line-height: 54px;
  }
  #fifth-tabs ul .ui-tabs-active span {
    line-height: 60px;
  }
  .fifth-tabs-content h2 {
    font-size: 18px;
  }
  .six-slide {
    margin-left: 0;
    top: 0;
    transform: translateY(0%);
    margin-top: 100px;
  }
  .six-tabs-content {
    width: auto;
    text-align: center;
    margin: 0px 10px;
    padding: 10px;
  }
  .six-tabs-content p {
    margin-top: 20px;
	text-align: left;
  }
  #six-tabs ul li {
    display: inline-block;
    margin: 100px 10px 0px;
  }
  #six-tabs ul {
    float: none;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  #six-tabs ul li span {
    width: 60px;
    height: 60px;
    font-size: 22px;
    line-height: 54px;
  }
  #six-tabs ul .ui-tabs-active span {
    line-height: 60px;
  }
  .six-tabs-content h2 {
    font-size: 18px;
  }

.seven-slide {
    margin-left: 0;
    top: 0;
    transform: translateY(0%);
    margin-top: 100px;
  }
  .seven-tabs-content {
    width: auto;
    text-align: center;
    margin: 0px 10px;
    padding: 10px;
  }
  .seven-tabs-content p {
    margin-top: 20px;
	text-align: left;
  }
  #seven-tabs ul li {
    display: inline-block;
    margin: 100px 10px 0px;
  }
  #seven-tabs ul {
    float: none;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  #seven-tabs ul li span {
    width: 60px;
    height: 60px;
    font-size: 22px;
    line-height: 54px;
  }
  #seven-tabs ul .ui-tabs-active span {
    line-height: 60px;
  }
  .seven-tabs-content h2 {
    font-size: 18px;
  }

  .container-fluid {
    margin: 100px 0px 0px; 
  }  

}

@media (max-width: 431px){
	.nav_item{
		flex-grow: 0;
		box-sizing: border-box;
		flex-basis: calc( 20% - ( 15px / 2 ) );
	}
	.nav_list img{
		width: 20%;
		height: auto;
	}
	.slide-caption1 {
	  text-align: right;
	  right: 10px;
	  position: absolute;
	  top: 35%;
	  transform: translateY(-35%);
	}
	.slide-caption1 h2 {
	  font-family: 'Krona One', sans-serif;
	  margin-top: 0px;
	  font-size: 30px;
	  text-transform: none;
	  text-shadow:0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff;
	  font-weight: 900;
	  color: #99ffff;
	}
	.slide-caption1 h5 {
	  margin-top: 0px;
	  font-size: 12px;
	  text-transform: none;
	  /* -webkit-text-stroke: 0.2px black;
	  text-stroke: 0.2px black; */
	  font-weight: 700;
	  color: #0099ff;
	}
	.slide-caption1 h6 {
	  margin-top: 0px;
	  font-size: 14px;
	  text-transform: none;
	  font-weight: 700;
	  color: #0099ff;
	}
	
	.slide-caption2 h2 {
	  font-family: 'Krona One', sans-serif;
	  margin-top: 0px;
	  font-size: 30px;
	  text-transform: none;
	  text-shadow:0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff;
	  font-weight: 900;
	  color: #99ffff;
	}
	.slide-caption2 h5 {
	  margin-top: 0px;
	  font-size: 12px;
	  text-transform: none;
	  /* -webkit-text-stroke: 0.2px black;
	  text-stroke: 0.2px black; */
	  font-weight: 700;
	  color: #0099ff;
	}
	.slide-caption2 h6 {
	  margin-top: 0px;
	  font-size: 14px;
	  text-transform: none;
	  font-weight: 700;
	  color: #99ffff;
	}

	.slide-caption3 {
	  text-align: right;
	  right: 10px;
	  position: absolute;
	  top: 10%;
	  transform: translateY(-10%);
	}
	.slide-caption3 h2 {
	  font-family: 'Krona One', sans-serif;
	  margin-top: 0px;
	  font-size: 20px;
	  text-transform: none;
	  text-shadow:0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff,0 0 3px #0099ff;
	  font-weight: 900;
	  color: #99ffff;
	}
	.slide-caption3 h5 {
	  margin-top: 0px;
	  font-size: 12px;
	  text-transform: none;
	  /* -webkit-text-stroke: 0.2px black;
	  text-stroke: 0.2px black; */
	  font-weight: 700;
	  color: #ffffff;
	}
	.slide-caption3 h6 {
	  margin-top: 0px;
	  font-size: 12px;
	  text-transform: none;
	  font-weight: 700;
	  color: #FF2BB5;
	}
	
	.second-tabs-content {
	  background: rgba(255,255,255,0.8);
	}
	.second-tabs-content p {
	  color: black;
	}
	.third-tabs-content {
	  background: rgba(255,255,255,0.8);
	}
	.third-tabs-content p {
	  color: black;
	}
	.fourth-tabs-content {
	  background: rgba(255,255,255,0.8);
	}
	.fourth-tabs-content p {
	  color: black;
	}
	.fifth-tabs-content {
	  background: rgba(255,255,255,0.8);
	}
	.fifth-tabs-content p {
	  color: black;
	}
	.six-tabs-content {
	  background: rgba(255,255,255,0.8);
	}
	.six-tabs-content p {
	  color: black;
	}
	
	#image-slider ul li:nth-child(1) {
	  background-image: url(../images/small/full-bg-cos.jpg);
	}
	#image-slider ul li:nth-child(3) {
	  background-image: url("../images/small/clue_top-bg.jpg");
	}
	.slides .slide:nth-child(2) {
	  background-image: url(../images/small/cos-bg.jpg);
	  background-position: fixed;
	}
	.slides .slide:nth-child(3) {
	  background-image: url("../images/small/htd-bg_sm.jpg");
	  background-position: fixed;
	}
	.slides .slide:nth-child(4) {
	  background-image: url(../images/small/clue_card-bg.jpg);
	  background-position: fixed;
	}
	.slides .slide:nth-child(5) {
	  background-image: url(../images/small/sweet-bg.jpg);
	  background-position: fixed;
	}
	.slides .slide:nth-child(6) {
	  background-image: url("../images/small/Reborn-bg.jpg");
	  background-position: fixed;
	}
	.slides .slide:nth-child(7) {
	  background-image: url(../images/small/contact-bg.jpg);
	  background-position: fixed;
	}
}