@charset "UTF-8";


/* html,
body {
	position: relative;
	background: url('../images/index/bg.jpg') center/cover;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 1020px) {
    html,
    body {
		background: url('../images/index/bg.jpg') center right/cover;
    }
} */

/* ----------------------------------------
	main
---------------------------------------- */
#main {
  position: relative;
  background: url('../images/index/bg.jpg') center/cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1020px) {
  #main {
    background: url('../images/index/bg.jpg') center right/cover;
  }
}

@media screen and (max-height: 800px) {
  #main {
    background: url('../images/index/bg.jpg') center/contain;
  }
}


/* ----------------------------------------
	contentHeader
---------------------------------------- */
.topRead01 {
  margin: 0 0 10px 0;
}

.topRead02 {
  margin: 0 0 10px 0;
}

@media screen and (max-width: 1020px) {
  .topRead01 {
    width: 70%;
    margin: 0 15% 15px 15%;
    z-index: 10 !important;
  }

  .topRead02 {
    width: 70%;
    margin: 0 15% 10px 15%;
    z-index: 10 !important;
  }
}

.topLogo {
  margin: 0 0 10px 0;
}

@media screen and (max-width: 1020px) {
  .topLogo {
    width: 80%;
    margin: 0 10% 0 10%;
    z-index: 10 !important;
  }
}

.topSub01 {
  margin: 0 0 0 0;
}

.topSub02 {
  margin: 10px 0 10px 10px;
}

@media screen and (max-width: 1020px) {
  .topSub01 {
    width: 80%;
    margin: 0 10% 10px 10%;
    z-index: 10 !important;
  }

  .topSub02 {
    width: 80%;
    margin: 0 10% 10px 10%;
    z-index: 10 !important;
  }
}

.main-inner p {
  width: 560px;
  margin: 20px 0 0 20px;
  color: #fff;
  font-size: 14px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 1.0);
}

@media screen and (max-width: 1020px) {
  .main-inner p {
    width: 80%;
    margin: 60px 10% 0 10%;
    font-size: 28px;
    font-weight: bold;
  }
}


.btn {
  position: absolute;
  bottom: 13%;
  left: 15%;
}

@media screen and (max-width: 1020px) {
  .btn {
    bottom: 12%;
    left: 1%;
    width: 80%;
    margin: 400px 10% 0 10%;
    z-index: 10 !important;
  }
}

@media screen and (max-height: 600px) {
  .btn {
    display: none;
  }
}






/* ----------------------------------------
	scroll
---------------------------------------- */
.ca3-scroll-down-arrow {
  background-image: url(../images/index/down.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.ca3-scroll-down-link {
  position: absolute;
  cursor: pointer;
  height: 30px;
  width: 40px;
  bottom: 10%;
  left: 48%;
  text-align: center;
  z-index: 100;
  text-decoration: none;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);

  -webkit-animation: ca3_fade_move_down 2s ease-in-out infinite;
  -moz-animation: ca3_fade_move_down 2s ease-in-out infinite;
  animation: ca3_fade_move_down 2s ease-in-out infinite;
}

@media screen and (max-width: 1020px) {
  .ca3-scroll-down-link {
    height: 60px;
    width: 80px;
    left: 46%;
  }
}

/*animated scroll arrow animation*/
@-webkit-keyframes ca3_fade_move_down {
  0% {
    -webkit-transform: translate(0, -20px);
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
}

@-moz-keyframes ca3_fade_move_down {
  0% {
    -moz-transform: translate(0, -20px);
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    -moz-transform: translate(0, 20px);
    opacity: 0;
  }
}

@keyframes ca3_fade_move_down {
  0% {
    transform: translate(0, -20px);
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 20px);
    opacity: 0;
  }
}










/*追加*/
#colorbox#colorbox {
  overflow: visible;
}

#cboxClose2 {
  cursor: pointer;
  position: absolute;
  top: -70px;
  right: 10px;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  background: none;
  border: none;
}

#cboxClose2:before,
#cboxClose2:after {
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
  width: 100%;
  background: #fff;
}

#cboxClose2:before {
  transform: rotate(45deg);
}

#cboxClose2:after {
  transform: rotate(-45deg);
}