/*
@charset "utf-8";
@import url("ini.css");
*/

html, body {
	width:100%;
	height: 100%;
	margin: 0;
	padding: 0;
	/* font-family:Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif; */
}

/*================================================================▼*/

body {
	font-family: "Helvetica Neue",
	Arial,
	"Hiragino Kaku Gothic ProN",
	"Hiragino Sans",
	Meiryo,
	sans-serif;

	font-feature-settings: "palt";
	/* プロポーショナルメトリクスと旧字体指定 */
	/* font-feature-settings: "palt" 1, "trad" 1; */
	
	
	color:#444;
	background: #FFF;
}


/*================================================================▲*/

/*================================================================▼*/
a {color: #369;text-decoration: none;}
a:link {content: "";}
a:visited {content: "";}
a:hover {text-decoration: underline;}
a:active {content: "";}

div, p, span {margin: 0; padding: 0;}
p {margin-top: 1em; margin-bottom: 1em;}
/*================================================================▲*/


/*================================================================▼*/

/*================================================================▲*/

/*================================================================▼*/
.odd {background:#FFF;}
.eve {background:#F7F7F7;}
/*================================================================▲*/

/*================================================================▼*/
table {
	border-collapse: collapse;
}

th {
	font-weight: bold;
	color: #888;
	white-space: nowrap;
}

td.r {text-align:right;}
td.c {text-align:center;}
td.nw {white-space:nowrap;}
/*================================================================▲*/


/*================================================================▼*/

/*================================================================▲*/

/*================================================================▼*/

input , select , textarea , button{
	box-sizing: border-box;
	font-family: inherit;
	font-size: 1rem;
	
}


input, textarea {
	content: "";

}

input.s[type="text"] {width:8em;}
input.m[type="text"] {width:16em;}
input.l[type="text"], textarea {width:90%;}
textarea {
	height:4em;
	display: block;
}



/*================================================================▲*/


/*================================================================▲*/

/*================================================================▼*/

/*================================================================▼*/

#wrapper {
	margin:0;
}

header, footer {
	content: "";
	color:#FFF;
	background:#D3E9F3;
	background:#0F6A9C;
	text-align: center;
	padding: 0.5em;
}




header {
	content: "";
}

h1 {
	font-size: 180%;
	color: #D3E9F3;
}

nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap; /* もし横幅が足りない場合にアイテムを折り返すために必要 */
	padding: 0; /* リストの余白をリセット */
}

nav ul li {
	flex: 1; /* アイテムを均等に分配 */
	margin: 0 0em; /* アイテム間の間隔を調整（必要に応じて調整） */
	text-align: center; /* アイテム内のテキストを中央揃え（任意） */
	padding: 0; /* アイテムの内部余白（任意） */
}

nav ul li a {
	background: #D3E9F3;
	padding: 0.25rem 0.5rem;
	border-radius: 0.5rem;
}




main {
	content: "";
	margin: 2rem;
}

section {
	margin: 1rem 0;
}

h2 {
	/* display: inline-block; */
	font-size: 150%;
	text-align: center;
	color: #0F6A9C;
	background: #DFF3D4;
	background: #D3E9F3;
	border-radius: 0.5rem;
	padding: 0.5rem;
}

h3 {
	font-size: 120%;
}



footer {
	content: "";
	font-size: 70%;
}



/*================================================================▲*/



/*================================================================▲*/
input[type="button"] {
	padding: 0.25rem 1rem;
}


.btn{
	display:block;
	/**/
	width: 250px;
	height:70px;
	line-height: 70px;
	
	color: #FFF;
	text-decoration: none;
	text-align: center;
	background-color: #0069f3; /*ボタン色*/
	border-radius: 5px; /*角丸*/
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.btn:hover{
	background-color: #007cf9; /*ボタン色*/
}


/*================================================================▼*/
