/* body */
body,html {
	margin: 0; padding:0;
}

body {
	font-size: 13px ;
	line-height:150%;
	color:#333;
	font-family: "Meiryo",sans-serif; 
	background:url(https://isisaset.com/wp-content/uploads/bg-yoake.jpg) #000 no-repeat center top;
	background-size:cover;
}

table {}

/* link */
a:link,a:visited{ color: #236CAD; text-decoration:none;}
a:active,a:hover{ color: #DE0053; text-decoration:none;}
a img{ border: none; }

/* メニュー */
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 20px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
	background:#000;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active-o span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active-o span:nth-child(2),
.hamburger.active-o span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
	position: fixed;
	z-index : 2;
	top  : 0;
	left : 0;
	color: #000;
	background: rgba( 71,70,73,0.7 );
	text-align: center;
	width: 100%;
	transform: translateX(100%);
	transition: all 0.6s;
	padding-top:80px;
}

nav.globalMenuSp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
	background-color: rgba(0,0,0,0.7);
}

nav.globalMenuSp ul li a {
	display: block;
	color: #fff;
	padding: 1em 0;
	text-decoration :none;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active-o {
	opacity: 100;
	display: block;
	transform: translateX(0%);
}


.wrapper {
	width:100%;
	background:#fff;
	padding:50px 0 80px 0;
}
.contents{
	width:700px;
	margin:0 auto;
}

p {
	padding-bottom:15px;
}

.button{
	padding:5px 50px;
	background:#333;
	border-radius:5px;
}
.button-100{
	padding:5px 0 ;
	display:inline-block;
	text-align:center;
	width:100%;
}

a:link.button,a:visited.button{ color: #fff; }
a:active.button,a:hover.button{ color: #fff; background-color:#444;}


/* 配置関係 */
.center { text-align:center;}
.right { text-align:right;} 

.floatleft { float: left; margin:0 20px 20px 0;}
.floatright{ float: right; margin:0 0 20px 20px; }

.clearleft {clear: left;}
.clearright {clear: right;}
.clear {clear:both;}
.clearfix:after{clear: both; content: "."; display: block; height: 0; visibility: hidden}

.i-1 {padding-left:15px;}

/* 文字装飾 */
.bold { font-weight:bold ; }
.font-xl{font-size:21px;}
.font-l{font-size:17px;}
.font-s{font-size:11px;}
em{color:#ccc;}

/* タイトル */
h1 {
	font-size:20px; 
	margin:20px 0 40px 0;
	text-align:center;
	letter-spacing:2px;}

h2 {
	font-size:16px; 
	border-top:solid 1px #000;
	border-bottom:solid 1px #000; 
	margin:20px 0 15px 0;
	padding:8px 0;
}

h3 {
	font-size : 14px ;
	border-bottom:dotted 1px #000;
	margin:20px 0 10px 0;
	margin-left:0;
	}

.single h2 { 
	font-size:14px; 
	border-top:dotted 1px #000;
	border-bottom:dotted 1px #000; 
	margin:20px 0 0px 0;
	padding:5px 0;
}

/* index */
.top{
	width:200px;
	height:260px;
	color:#fff;
	position: absolute;
	top:0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.top-title{
	width:200px;
	height:200px;
	line-height: 200px;
	font-size:25px;
	font-weight:bold;
	border:solid #fff 0px;
	border-radius:50%;
	box-shadow: 0px 0px 7px 1px #fff;

}
.top-title {
  animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-title-text {
  animation: zoomIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.top-message{
	margin-top:30px;
}
.master{
	color:#fff;
	position: absolute;
	bottom: 15px;
	right: 0;
	left: 0;
	margin: 0 auto;
}
.master a:link,.master a:visited{ color: #fff; }
.master a:active,.master a:hover{ color: #ccc; }


/* アーカイブ */
div.archive li{
	padding:0;
	margin:0 0 0 10px;}

div.archive ul {
	padding-bottom:20px;
}

/* キャラ紹介 */
.profile-l {
	width:382px;
	margin:20px 20px 0 0;
	float:left;
}
.profile-l-img{
	border:solid 1px #fff;
	width:380px;
	height:auto;
	background:#fff;
}

.profile-r{
	width:298px;
	margin:20px 0 0 0;
	float:right;
}
.profile-r table{
	width:100%;
}
.profile-r th{
	display:block;
	text-align:left;
}
.profile-r td{
	display:block;
	padding:0 0 10px 10px;
}


@media(max-width:700px){ 
body {
	font-size: 14px ;
	line-height:150%;
	background:url(https://isisaset.com/wp-content/uploads/bg-yoake-sp.jpg) #000 no-repeat center top;
	background-size:cover;
}
img {
	max-width:100%;
	height:auto;
	width:auto\9; /* ie8 */}
.contents{
	width:90%;
	margin:0 auto;
}	
.hamburger {
	display : block;
	position: fixed;
	z-index : 3;
	right : 10px;
	top   : 80px;
	width : 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
}
	
/* キャラ紹介 */
.profile-l {
	width:100%;
	margin:20px 0 0 0;
	float:none;
}
.profile-l-img{
	width:100%;
}

.profile-r{
	width:100%;
	margin:20px 0 0 0;
	float:none;
}
}