/***********************
  お決まり
************************/
@charset "shift_jis";

* {
	margin: 0px;
	padding: 0px;
}

a {
	color: white;
	text-decoration: none;
}

a:hover {
	color: white;
	text-decoration: none;
}

img {
	border: none;
	vertical-align: text-bottom;
}

table {
	table-layout: fixed;
	border-collapse: collapse;
}

ul {
	list-style-type: none;
}
/***********************
  全体
************************/
html {
	overflow-y: scroll;	/*スクロールバーを常に表示*/
}
body {
	color: #444;
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	font-size: 90%;
	line-height: 2;
	/*background-image: url(../images/bg.png);
	background-repeat: repeat-x;
	background-position: 0 97px;
	-webkit-text-size-adjust: 100%;*/
}
/***********************
  ヘッダ
************************/
#head {
	padding-top: 20px;
	margin-bottom: 30px;
	background: #3f4360;
	padding-bottom: 18px;
}
.logo {
	/*height: 70px;*/
	margin-right: 10px;
	filter: drop-shadow(2px 2px 3px white);
}
h1 {
	font-size: 25px;
	font-weight: bold;
	color: white;
	line-height: 100%;
}
h1 span {
	margin-top: 12px;
	margin-bottom: 9px;
	line-height: 100%;
	font-size: 17px;
	display: block;
	/*color: #dc143c;*/
	color: #fff799;
}
.hinner {
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
}
.hinner ul {
	margin-left: auto;
	display: flex;
}
.hinner li {
	width: 100px;
	margin-left: 10px;
	padding-top: 15px;
	padding-bottom: 10px;
	text-align: center;
	background: #202f55;
	border-radius: 5px;
	line-height: 120%;
	color: white;
}
.hinner li:hover {
	background: #292d48;
}
#menu span {
	display: block;
	font-size: 70%;
}
/**********************
  メイン
***********************/
#main {
}
.minner {
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
}
.headline {
	position: relative;
	padding-top: 20px;
	padding-bottom: 0px;
	font-size: 26px;
	text-align: center;
	letter-spacing: 2px;
	/*background: #f9f4ff;*/
	background: linear-gradient(180deg, #fff 0%, #fff 50%, #f9f4ff 50%, #f9f4ff 100%);
}
.headline::before {
	content: attr(data-en);
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translate(-50%, -50%);
	color: rgba(41, 45, 72, 0.3);
	color: rgba(0, 51, 255, 0.2);
	font-size: 80px;
	font-style: italic;
}
.headline::after {
	content: '';
	background-color: #f9f4ff;
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: -6px;
	left: 0;
}
/**********************
  フッタ
***********************/
#foot {
	margin-bottom: 40px;
	display: flex;
}
.finner {
	width: 1000px;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-right: auto;
	margin-left: auto;
	background: #3f4360;
	color: white;
	text-align: center;
}
.flogo {
	font-size: 150%;
	font-weight: bold;
}
.finner ul {
	margin-top: 10px;
	display: flex;
	justify-content: center;
	padding-bottom: 20px;
}
.finner li {
	/*width: 100%;*/
	padding: 0px 10px;
	background: #202f55;
	border-radius: 5px;
	margin-left: 10px;
}
.finner li:first-child {
	margin-left: 0px;
}
.finner li:hover {
	background: #292d48;
}

/**********************
  レスポンシブ設定
***********************/
/* モニター幅960px以下 */
@media only screen and (max-width:1040px) {
	.hinner,
	.minner {
		width: 96%;
	}
	.logo {
		/*display: none;*/
	}
	.hinner {
		display: block;
		text-align: center;
	}
	.logo {
		/*margin-bottom: 5px;*/
	}
	.hinner ul {
		justify-content: space-around;
		margin-left:0;
	}
	.hinner li {
		flex: 1;
		margin-left: 10px;
	}
	.hinner li:last-child {
		margin-right: 10px;
	}
	h1 {
		margin-bottom: 20px;
	}
}
@media only screen and (max-width:890px) {
	.hinner {
		display: block;
		text-align: center;
	}
	.logo {
		/*margin-bottom: 10px;*/
	}
	.hinner ul {
		justify-content: space-around;
		margin-left:0;
	}
	.hinner li {
		flex: 1;
		margin-left: 10px;
	}
	.hinner li:last-child {
		margin-right: 10px;
	}
	h1 {
		margin-bottom: 20px;
	}
}
/* iPad 縦 */
@media only screen and (max-width:768px) {
}
/* スマートフォン 横(ランドスケープ) */
@media only screen and (max-width:640px) {
}
@media only screen and (max-width:720px) {
	.headline::before {
		font-size: 60px;
	}
}
/* スマートフォン 縦(ポートレート) */
@media only screen and (max-width:430px) {
	h1 {
		font-size: 20px;
	}
}
@media only screen and (max-width:362px) {
	h1 {
		font-size: 15px;
	}
	h1 span {
		font-size: 12px;
	}
	.hinner .logo {
		height: 50px;
	}
	.copyr span {
		display: inline-block;
	}
}
