﻿@charset "utf-8";


/*PC・タブレット・スマホ(全端末)共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	-webkit-text-size-adjust: none;
	color: #FFFFFF;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #1432B1;	/*背景色*/
	background-image: url("http://99cafe.sakura.ne.jp/ksrg/ksrg_background.png");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: left bottom;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}


/* 真ん中の部分 */
div {
  background-color: rgba(0, 0, 0, 0.6);
	width: 900px;
	padding: 70px;
	text-align: left;
	margin: 0px auto;
	font-size:100%
	line-height: 2;
}


/* 段落 */
p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}

/* リンク */
a {
	color:#65BBE9;
}

a:hover{
  color : #fff;
}

/* スクロールバー */
::-webkit-scrollbar {
	width: 15px;
	height: 15px;
}
::-webkit-scrollbar-track {
	background: rgba(0,0,0,1);
}
::-webkit-scrollbar-thumb {
	background: #FFFFFF;
}

/* 見出し */
h1 {
	font-weight: bold;
	font-size: 26px;
  color: #000;/*文字色*/
  background: #FFF;/*背景色*/
  padding: 0.1em;/*文字まわり（上下左右）の余白*/
}

h2 {
  padding-left:30px;
	font-weight: bold;
	font-size: 22x;
	border-bottom: solid 3px #fff;
	padding: 2px 0;
}

h3 {
  margin-bottom: 0.2rem;
	padding-left: 10px;
  border-left: 5px solid;
  color: #fff;
  font-weight: bold;
}


/* インラインブロック */
.inline-block {
	display: inline-block;
	background-color:  #000;
	height:  200px;
	width: 40%;
	padding: 35px;
	margin: 10px;
	border-radius: 0 30px 0 30px;
}

/* ボタン */
.btn {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 0.25em 0.5em;
	text-decoration: none;
 	color: #000000;
 	background: #FFFFFF;
	transition: .4s;
}

.btn:hover {
	background: #1432B1;
	color: white;
}


/* ポップアップ */
.popup:focus, .popup:active {
 position: fixed;
 top:0;
 left:0;
 right:0;
 bottom:0;
 margin:auto;
 height: auto;
 z-index: 100;
 background: #fff;
 padding: 20px;
 outline: 1px solid #aaa;
 max-width:55vw;/* 画像が大きい場合は、適宜調整 */
}
.popup {
 height: 200px;
 width:auto;
 cursor: pointer;
 display: inline;
}