@charset "utf-8";

}/* --------------------------------
  0：base
  レイアウトのベーススタイル
-------------------------------- */
body {
  font-family:"メイリオ",Meiryo,"Hiragino kaku Gothic pro","ヒラギノ角ゴ pro W3","ＭＳ Ｐゴシック","Lucida Sans Unicode",Arial,Verdana,sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

.container {
  margin: 0 auto;
  width: 1200px;
}

.contents-main {
  margin-top: 100px;
}

a {
  text-decoration:none; 
  color:#808080;
}

ul {
  list-style: none;
}
/* --------------------------------
  1：swiper
  スライダーのスタイル
-------------------------------- */

.swiper-wrapper .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  opacity: 0;
  overflow: hidden;
  scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/  
  -ms-overflow-style: none;/*Internet Explore対応のスクロールバー非表示コード*/  }

/* Chrome, Safari 対応 */
.swiper-wrapper .swiper-slide::-webkit-scrollbar {
 display:none;
}
/* ------ catch area ------- */
.catch-area {
  color: white;
  position:relative;
  text-align: center;
  top: 45%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 100%;
}

.catch-title {
  font-size: 40px;
  margin: 0 auto;
  padding-bottom: 10px;
}

.catch-text {
  color: #808080;
  font-size: 18px;
  line-height: 2.0;
}

.nav {
  position:relative;
  text-align: center;
}

.nav > .active > a, .nav > .active > a:hover, .nav > .active > a:focus {
  color: #ffc0cb;
  background-color: transparent;
  margin: 0 auto;
}

.nav > li > a {
  color: #808080;
  line-height: 40px;
  margin-left: -30px;
}

.nav > li > a:hover, .nav > li > a:focus {
  color: #fff;
}


/* ------ Transparent layer ------- */
.swiper-slide::before {
  background: rgba(0, 0, 0, 0.2);
  bottom: 0;
  content: "";
  height: 100vh;
  left: 0;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}

.swiper-slide.swiper-slide-active::before {
  opacity: 1;
}

/* --------------------------------
  ２：Top Lazy Load
  遅延ロード用スタイル
-------------------------------- */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}

#loader {
  background-color: #808080;
  height: 100vh;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

#loader.loaded {
  animation: fadeOut 0.5s forwards;
}

/*==========================================================================
Footer
============================================================================*/
footer {
	background:#fff;
	padding:10px 0 10px;
	font-size:0.9rem;
	color:#808080;
}

footer p {
	text-align:center;
}
