
html, body { height: 100%; }

body { 
    padding: 20px;
    line-height: 1.7;
    font-family: "Century Gothic","Futura","Hiragino Kaku Gothic Pro","Meiryo",sans-serif;
    font-size: small;
    text-align: center;
    -webkit-text-size-adjust: 100%; /* ブラウザ側で自動調整しない */
    }

a:link { color: #0cf; text-decoration: none; transition: 0.4s; }
a:visited { color: #999; }
a:hover { color: #0cf; }
a:active { color: #0cf; }


@font-face {
    font-family: "ticktock";
    src: url('../../../font/ticktock.ttf'),
         url('../../../font/ticktock.eot');
}

.logo { font-family: "ticktock"; font-size: 70px; font-weight: normal; margin: -40px 0 -10px 0; }


img { max-width: 100%; height: auto; border: none; margin: 0 5px 5px 0; }

img:hover { opacity: .3; transition: 0.4s; }

ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
    }

li { display: inline-block; }

p { margin: 0; }

#container {
    max-width: 1220px;
    margin: auto;
    line-height: 0;
    }


.credit { vertical-align: top; line-height: 1.5; color: #fff; background: #000; width: 260px; height: 160px; padding: 20px; text-align: left; }

.space { clear: both; height: 60px; }


.video {
    background: #fff url('../img/video.jpg') no-repeat 50% 50%;
    background-size: cover;
    }


footer { padding: 80px 0 30px 0; }


/* ------------------------------------------------------------------------------------------------------------------- 640より小さい場合 */


@media screen and (max-width: 640px) {

.L img { width: 300px; }

}

/* ------------------------------------------------------------------------------------------------------------------- 1220より小さい場合 */

@media screen and (max-width: 1220px) {

#container { max-width: 610px; text-align: center; }

.L { max-width: 610px; width: 100%; }

}

/* ------------------------------------------------------------------------------------------------------------------- 1220より大きい場合 */

@media screen and (min-width: 1220px) {

.L { float: left; max-width: 610px; width: 100%; }  /* float と max-width 併用時 width 100% IE対策  */

}


/* ------------------------------------------------------------------------------------------------------- BACK */


.back-box { max-width: 800px; padding: 30px; margin: auto; margin-top: 60px; }

.back {
	margin-left: 280px;
	width: 40px;
	height: 40px;
	margin: auto;
	border-left: 1px solid #444;
	border-bottom: 1px solid #444;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: 0.4s;
	}

.back-box:hover > .back {
	border-left: 1px solid #0cf;
	border-bottom: 1px solid #0cf;
	}


/* ----------------------------------------------------------------------- 予約ボタン 円 */

.resv2 {
  position: fixed;
  bottom: 60px;
  right: 40px;
  
  width: 100px;
  height: 100px;
  
  color: #fff;
  background: #0cf;
  border: 2px solid #0cf;
  
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  
  transition: 1s;
  z-index: 10;
}

.resv2:hover { color: #0cf; background: rgba(0,0,0,0); border-color: #0cf; transform: rotate(360deg); }

.resv2t {
  width: 100px;
  text-align: center;
  margin-top: 40px;
  font-size: 10px;
  font-weight: bold;
}


/* ----------------------------------------------------------------------- PLAY */


.play {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -30px;
  margin-top: -30px;
  
  width: 60px;
  height: 60px;
  
  color: #fff;
  background: #0cf;
  
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  transition: 1s;
}

.play-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -7px;
  margin-top: -15px;
  
  width: 0px;
  height: 0px;
  
  border-left: 20px solid #fff;
  border-right: 0px solid transparent;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  transition: 1s;
  z-index: 999;
}

.play:hover { opacity: .6; }


