@charset "UTF-8";
@import url("font-awesome/css/font-awesome.min.css"); 
@import url('https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900');
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);


/****************************************

          General Setting

*****************************************/

body{
color:#555;
background-color:#fff;
margin: 0;
line-height: 1.6;
font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
a {text-decoration: none; color: #555;
-webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
}
a:link {color: #555;}
a:hover {color: #000;text-decoration: none;opacity:.3;}
a:visited {color: #000;}
/* For modern browsers */
.cf:before,
.cf:after {
    content:"";
    display:table;
}
 
.cf:after {
    clear:both;
}
 
/* For IE 6/7 (trigger hasLayout) */
.cf {
    zoom:1;
}

html br.clear {
	height:0px;
	clear:both;
	display: hidden;
	line-height:0;
	font-size:0px;
	zoom:1;
}
.wrapper {
	width: 100%;
	height: 100vh;
	display: flex;
	display: -webkit-flex; /* Safari用 */
	flex-direction: column;
	text-align: center;
	font-size: 13px;
	background:url(img/topslide/001.jpg) no-repeat center center;
	background-size: auto 65%;	
}

.contents {
display: -webkit-flex; /* Safari用 */
display: flex;
-webkit-justify-content: center; /* Safari用 */
justify-content: center;
-webkit-align-items: center; /* Safari用 */
align-items: center;
flex: 1 0 auto;
padding: 0 5%;
flex-wrap:wrap;
}
.contents h1 {
    flex: 0 1 100%;
    align-self: flex-start;
    text-align: center;
    font-size: 22px;
    font-weight: 200;
    margin:30px 0;
}
.contents h1 img {
	width:200px;
	height:auto;	
}
.contents__inner {
    flex: 0 1 100%;
    align-self: flex-end;
    text-align: center;
    font-size: 22px;
    font-weight: 200;
    margin:30px 0 60px;
    letter-spacing:2px;
}
.contents__inner span {
	padding:0 1em;	
}
.copy {
	position: fixed;
	bottom:30px;
	left:30px;
	font-size:11px;
}
.sns {
	position: fixed;
	bottom:30px;
	right:30px;
	font-size:20px;
}
.sns ul {
	margin:0;	
}


/* --------------------------------------------------- side menu */
.menu {
	position: fixed;
	display: table;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.8);
	-webkit-transition: all .5s;
	transition: all .5s;
	visibility: hidden;
	opacity: 0;
}

.side-open .menu {
	cursor: url(img/close.svg),auto;
	-webkit-transition: all .5s;
	transition: all .5s;
	visibility: visible;
	opacity: 1;
}

.menu ul {
	display: table-cell;
	vertical-align: middle;
}

.menu li {
	width: 300px;
	margin: 0 auto;
	text-align: center;
	opacity: 0;
}

.side-open .menu li {
	opacity: 1;
}

.side-open .menu li:nth-child(1) {
	-webkit-transition: opacity 1s ease .5s;
	transition: opacity 1s ease .5s;
}

.side-open .menu li:nth-child(2) {
	-webkit-transition: opacity 1s ease .6s;
	transition: opacity 1s ease .6s;
}

.side-open .menu li:nth-child(3) {
	-webkit-transition: opacity 1s ease .7s;
	transition: opacity 1s ease .7s;
}

.side-open .menu li:nth-child(4) {
	-webkit-transition: opacity 1s ease .8s;
	transition: opacity 1s ease .8s;
}

.side-open .menu li:nth-child(5) {
	-webkit-transition: opacity 1s ease .9s;
	transition: opacity 1s ease .9s;
}

.menu li a {
	display: block;
	padding:30px 0;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	color: #fff;
	font-weight:200;
	letter-spacing:2px;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.menu li a:hover {
	color: #999;
}

/* --------------------------------------------------- menu-btn */
.menu-btn {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 100px;
	height: 50px;
	line-height: 50px;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
	z-index: 1;
}



@-webkit-keyframes anim {
	0% {-webkit-transform:translateY(0px);transform:translateY(0px);}
	50% {-webkit-transform:translateY(-5px);transform:translateY(-5px);}
	100% {-webkit-transform:translateY(0px);transform:translateY(0px);}
}

@keyframes anim {
	0% {-webkit-transform:translateY(0px);transform:translateY(0px);}
	50% {-webkit-transform:translateY(-5px);transform:translateY(-5px);}
	100% {-webkit-transform:translateY(0px);transform:translateY(0px);}
}
.cd-menu-icon {
  /* this span is the central line of the menu icon */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: #000;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  /* these are the upper and lower lines in the menu icon */
}
.cd-menu-icon::before, .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000;
  right: 0;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
  -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s;
}
.cd-menu-icon::before {
  top: -5px;
}
.cd-menu-icon::after {
  top: 5px;
}
.side-open .cd-menu-icon {
  background-color: rgba(255, 255, 255, 0);
}
.side-open .cd-menu-icon::before, .side-open .cd-menu-icon::after {
  background-color: #fff;
}
.side-open .cd-menu-icon::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.side-open .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}


@media (max-width: 1200px) {

}
@media (max-width: 1016px) {

}
@media (max-width: 992px) {

}
@media (max-width: 767px) {
.wrapper {
	width: 100%;
	height: 100vh;
	display: flex;
	display: -webkit-flex; /* Safari用 */
	flex-direction: column;
	text-align: center;
	font-size: 13px;
	background:url(img/topslide/001.jpg) no-repeat right center;
	background-size: cover;	
}
.menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 50px;
    line-height: 50px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
}
.contents__inner {
    font-size: 20px;
    align-self: center;
    margin:0 0 35vh;
}
}
/* YouTube */
.YouTube  {
	overflow: hidden;
	position: relative;
	/* paddingで高さを出している */
	height: 0;
	margin:0;
	padding-top:30px;
	padding-bottom:56.25%;
}
.YouTube iframe,
.YouTube object,
.YouTube embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}