@charset "UTF-8";

/* CSS Document */

/*-------------------------------------
				共通
---------------------------------------*/
html {
  scroll-behavior: smooth;
}

body{
	font-family: "yu-gothic-pr6n", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    font-style: normal;
	font-optical-sizing: auto;
	font-size:16px;
	line-height: 1.7;
	letter-spacing: 0.1em;
	color:#fff;
	background-color: #000;
}



img {
  -webkit-touch-callout: none;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

a {
	word-break: break-all;
	color: #e4c402;
	text-decoration: underline;
	transition: 0.8s;
	-webkit-transition: 0.8s;
}

a:hover {
	opacity: 0.6;
}

p {
	word-break: break-all;
}

ul li {
	list-style: none;
}

.wb_all {
  word-break: break-all;
}

.wrap {
	width: 100%;
	margin: 0 auto 0;
	padding: 0;
/*
	background:#000 url(../images/top/bg_sp.png) no-repeat  fixed center;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
*/

}


@media(min-width:768px){
	.wrap {
		background-color: #000;
/*
    background:#000 url(../images/top/bg.png) no-repeat  fixed center / 100% auto;
	
*/
	}		
	
.second .wrap {
	padding: 80px 0 35px;
}	
 	
.second .wrap {
	padding: 100px 0 45px;
}
	
}

/*-------------------------------------
			PC/SP出し分け
---------------------------------------*/

.pcOnly{display:; !important}
.spOnly{display:none;}
.spOnlyTxt{display:none;}

@media(max-width:768px){
	.pcOnly{display:none;}
	.spOnly{display:block;}
	.spOnlyTxt{display:inline;}
}


/*-------------------------------------
			navi
---------------------------------------*/
#g-nav{
    position:fixed;
    z-index: 10001;
  top:0;
    right: -120%;
  width:80%;
    height: 100vh;
	background:rgba(0,158,159,0.85);
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 80%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    position: absolute;
  z-index: 999;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
}

/*リストのレイアウト設定*/
#g-nav li{
  list-style: none;
}

#g-nav li a{
  color: #fff;
  font-family: "futura-pt-condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-decoration: none;
  padding:15px 0 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
	font-size: 1.15rem;
}
/*SNSアイコン*/
#g-nav li.sns-icon {
	display: flex;
	margin-top: 20px;
}

#g-nav li.sns-icon a {
	width: 30px;
	padding: 0 10px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
    z-index: 10002;/*ボタンを最前面に*/
  right: 0;
  cursor: pointer;
    width: 50px;
    height:50px;
	background:rgba(0,158,159,1);
}
.second .openbtn1{
	margin-top: -3%;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
  background-color: #fff;
    width: 50%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

@media(min-width:768px){
#g-nav li a{
	font-size: 1.6rem;
}
}



/*-------------------------------------
			アニメーション
---------------------------------------*/

.blur{
	animation-name:blurAnime;
	animation-duration:.7s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}

/* アニメーションの回数を決めるCSS*/

.count2{  
	animation-iteration-count: 2;/*この数字を必要回数分に変更*/
}

.countinfinite{  
	animation-iteration-count: infinite;/*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time05{  
	animation-delay: 0.5s;
}

.delay-time1{  
	animation-delay: 1s;
}

.delay-time15{  
	animation-delay: 1.5s;
}

.delay-time2{  
	animation-delay: 2s;
}

.delay-time25{  
	animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/

.change-time05{  
	animation-duration: 0.5s;
}

.change-time1{  
	animation-duration: 1s;
}

.change-time15{  
	animation-duration: 1.5s;
}

.change-time2{  
	animation-duration: 2s;
}

.change-time25{  
	animation-duration: 2.5s;
}

