@charset "utf-8";

/*---------------------------------------------------------------
		ページ共通
--------------------------------------------------------------- */
body {
	background-color: #ffdde1;
	font-family: "Century Gothic","arial","メイリオ","YuGothic";
}

/** リンク　ベース **/
a {
	text-decoration: none;
}
a:link {
	color: #000;
}
a:visited {
	color: #000;
}
a:hover {
	background-color: #ffb6c1;
	color: #000;
}
a:active {
	color: #000;
}

/** pとかhrとか **/
p {
	margin: 10px 60px 20px ;
	padding: 0;
	color: #000;
	line-height:115%;
	text-indent: 1em;
}


ul, ol, li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

h1 {
	margin: 0;
	padding: 0;
	line-height: 0;

}

h2 {
	margin: 15px 15px;
  padding: 0.4em 0.5em;/*文字の上下 左右の余白*/
	border-left: solid 5px #7db4e6;/*左線*/
  border-bottom: solid 3px #d7d7d7;/*下線*/
  background: #f4f4f4;/*背景色*/
	color: #494949;/*文字色*/
	font-size: 22px;

}

h3 {
	margin: 20px 30px;
	padding: 0;
	border-bottom: solid 3px #1e90ff;
	color: #1e90ff;
	font-size: 20px;
	line-height: 120%;
}

h4 {
	margin: 15px 40px;
	padding: 0;
	line-height: 110%;
	font-size: 18px;
}
h5 {
	margin: 10px 55px;
	padding: 0;
	line-height: 100%;
	font-size: 15px;
}
h6 {
	margin: 0;
	padding: 0;
	line-height: 100%;
}

img {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: none;
}

section {
	width: 100%;
	height: 100%;
	margin: 0 auto 20px;
	padding: 0;
	border: none;
}

/* ▼表全体の装飾 */

table {
	width: 80%;
	margin: 3px auto;
	border: 2px solid #ea553a;  /* 表の罫線(=セルの枠線) */
	font-size: 15px;
	text-align: center;
  border-collapse: collapse;
}
table th {
  width: 22%;
	padding: 10px;
  border: 1px solid #ea553a;
  box-sizing: border-box;
	background:  #f3a68c;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
  vertical-align: middle;
}
table td {
	padding: 5px;
  border: 1px solid #ea553a;
  box-sizing: border-box;
  background: #fff;
	text-align: center;
  vertical-align: middle;
}

@media all and (max-width: 700px) {
  table th, table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  table tr:last-child td:last-child {
    border-bottom: 1px solid #ccc;
  }
}

/*---------------------------------------------------------------
		id
--------------------------------------------------------------- */
#header {
	display: table;
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	table-layout: fixed;
}

#nav {
	margin: 0;
	padding:10px;
	background: #b0c4de;
	font-weight: bold;
	font-size: 16px;
}
	#nav ul {
		margin: 0;
		padding:0;
		text-align: center;
	}
	#nav li {
		display: -moz-inline-box;
		display: inline-block;
		*display: inline;
		*zoom: 1;
		padding: 0 10px;
		}

#aisatsu, #gaiyou,#program,
#sanka, #enja, #contact, #footer {
			margin: 10px auto;
			padding:10px;
				}

#footer {
	display: table;
	text-align: center;
	table-layout: fixed;
}

#aisatsu p {
	margin: 10px 80px;
	padding: 0;
	line-height:115%;
	text-indent: 1em;
}

#sanka ul {
	margin: 0;
	padding:0;
	text-align: center;
}
#sanka li {
	display: -moz-inline-box;
	display: inline-block;
	*display: inline;
	*zoom: 1;
		margin: 10px;
	padding: 0 10px;
}
#sanka a:link {
	color: #fff;
	font-weight: bold;
}
#sanka a:visited {
	color: #fff;
}
#sanka a:hover {
	color: #fff;
}
#sanka a:active {
	color: #fff;
}

#enja a:link {
	color: #fff;
	font-weight: bold;
}
#enja a:visited {
	color: #fff;
}
#enja a:hover {
	color: #fff;
}
#enja a:active {
	color: #fff;
}

#contact p {
	margin: 5px 60px;
	padding: 0;
	line-height:115%;
	text-indent: 1em;
}


/*---------------------------------------------------------------
		class
--------------------------------------------------------------- */
.box {
	display: table;
	margin: 40px auto;
	text-align: center;
}


.box2 {
	display: table;
	margin: 0 auto 20px;
	padding: 0 0 10;
	overflow: hidden;
}

.wbic {
	margin: 0 5px;
	line-height: -3px;
}

span{
  display: block;
	margin: 0 80px;
  text-align: right;
}

/*---------------------------------------------------------------
		ボタン
--------------------------------------------------------------- */

.floating {
	position: fixed;
	right: 8px;
	bottom: 8px;
	display: none;
}
.floating a {
	display: block;
	color: #fff;
	background: #000;
	padding: 9px;
	text-decoration: none;
	opacity: 0.6;
}
.floating a:hover {
	opacity: 1;
}

.btn {
	display: inline-block;
	position: relative;
  width: 250px;
  height: 40px;
	padding: 10px;
	border-radius: 10px;
  border: none;
  box-shadow: 0 5px #4433ff;
	background: #3a86ff;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}
.btn:hover {
	background-color: #000080;
  box-shadow: 0 3px #4433ff;
  top: 1px;
}
.btn:active {
  box-shadow: 0 0 #4433ff;
  top: 5px;
}

.btn2 {
	display: inline-block;
	position: relative;
  width: 250px;
  height: 65px;
	padding: 10px;
	border-radius: 10px;
  border: none;
  box-shadow: 0 5px #008b8b;
	background: #20b2aa;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}
.btn2:hover {
	background-color: #2f4f4f;
  box-shadow: 0 3px #008b8b;
  top: 1px;
}
.btn2:active {
  box-shadow: 0 0 #008b8b;
  top: 5px;
}
