@charset "utf-8";
/* CSS Document */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
   	content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*リセットCSS*/
/*▼リンク*/
a{
	font-size: 0.95em;
	color: #167ac6;
	text-decoration: none;
	}
a:hover{
	color:#F4C94A;
  text-decoration:none;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
	
}
/*▲リンク*/
/*▼全体レイアウト*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
body{
	font-family:Verdana, "ＭＳ Ｐゴシック", sans-serif;
}
.home{
	width: 100%;
	margin: 0 auto;
	background: url(../images/icon/bg.gif);
}
#header{
	width: 100%;
	height: 100px;
	margin: 0 auto;
	background: rgba(233,80,89,0.85);
}
#show,#hide{
	display: none;
}
#nav{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
}
.main{
	width: 1200px;
	margin: 0 auto;
}
.breadcrumbs{
	width: 1200px;
	margin: 0 auto;
}
.breadcrumbs-in{
	display: flex;
	flex-direction: row;
}

.wppewr{
	width: 1200px;
	margin: 0 auto;
}
#article{
	width:  880px;
	float: left;
	margin: 0 auto;
	margin-bottom: 20px;
	background: #fff;
	padding-left:4%;
	padding-right:4%;
	padding-bottom: 80px;
	padding-top: 20px;
	border-radius: 5px;
    background-color: #FFF;
    box-shadow: 0 0 6px rgba(80, 44, 8, 0.14);
}

#aside{
float:right;
width:300px;
margin-left: 20px;
}

#footer{
clear:both;
	width: 100%;
	margin: 0 auto;
	background: rgba(233,80,89,0.85);
} 
.pr{
	width: 100%;
	height: 100px;
	position: fixed;
	bottom: 0;
	left: 0;
	background: rgba(255,255,255,0.9);
	}
.pr-in{
	width: 200px;
	height: 50px;
	background: #e95059;
	margin: 0 auto;
	margin-top: 5px;
}
.pr-in a{
	color: #fff;
	font-size: 1.1em;
	font-weight: bold;
	display: inline-block;
    width: 200px;
    height: 50px;
    text-align: center;
}
.mic-copy{
	text-align: center;
	font-size: 0.85em;
	font-weight: bold;
	color:#555;
	padding-top: 20px;
}
.low-pr{
	color: #fff;
	font-size: 0.9em;
	text-align: center;
}
/*▲全体レイアウト*/
/*▼ヘッダー微調整*/
.logo{
	margin: 0 auto;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
/*▲ヘッダー微調整*/

/*▼ナビ微調整*/
#nav ul{
	width: 1200px;
	padding-top: 25px;
	padding-bottom: 25px;
	display: flex;
	flex-direction: row;
}
#nav ul li{
	list-style: none;
	padding: 0 22px 0 22px;
	border-left: solid 1px #3E3E3E;
}
#nav ul li:first-child{
	border-left: none;
	}

#nav ul li a{
	font-size: 13px;
	color: #361d1f;
	font-weight: bold;
	text-decoration: none;
}
#nav ul li a:hover{
  color:#F4C94A;
  text-decoration:none;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
/*▲ナビ微調整*/
/*▼パンくず微調整*/
.breadcrumbs-in span{
	display: block;
}
.breadcrumbs-in li{
	font-size: 0.75em;
	padding: 20px 0 20px 20px;
}
.bcl-first{
	background: url(../images/icon/pankuzu.png) no-repeat left center;
}
.bcl-first,.bcl-last{
	font-size: 0.75em;
	padding: 20px 0 20px 20px;
}
.bcl-first a,.blc-last a{
	color: #167ac6;
	text-decoration: none;
}
.bcl-first,.bcl-last a:hover{
  color:#F4C94A;
  text-decoration:none;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
/*▲パンくず微調整*/
/*▼コンテンツ微調整*/
#article h1,h2,h3,h4,p{
	letter-spacing: 0.05em;
	line-height : 1.75em;
}
#article h1{
	margin: 20px 0 20px;
    padding: 10px 0 10px 0;
    color: #3E3E3E;
    font-size: 1.1em;
    font-weight: bold;
}
h1:first-letter {
  font-size: 1.9em;
  color: #e95059;
}
#article h2{
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  margin-bottom: 10px;
  color: #3E3E3E;/*文字色*/
  font-size: 1.1em;
  font-weight: bold;
  background: transparent;/*背景透明に*/
  border-left: solid 5px #e95059;/*左線*/
}
#article h3{
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  margin-bottom: 10px;
  color: #3E3E3E;/*文字色*/
  font-size: 1.1em;
	font-weight: bold;
  background: transparent;/*背景透明に*/
  border-left: solid 5px #e95059;/*左線*/
}

#article h2.second{
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  margin-bottom: 10px;
  color: #3E3E3E;/*文字色*/
  font-size: 1.1em;
  font-weight: bold;
  background: transparent;/*背景透明に*/
	border-left: solid 5px #313193;/*左線*/
}
#article h3.second{
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  margin-bottom: 10px;
  color: #3E3E3E;/*文字色*/
  font-size: 1.1em;
	font-weight: bold;
  background: transparent;/*背景透明に*/
  border-left: solid 5px #313193;/*左線*/
}
#article p{
	margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1em;
    color: #3E3E3E;
}
#article p b{
	font-size: 1em;
    color: #3E3E3E;
	font-weight: bold;
}
#article ul li{
	margin: 15px;
	font-size: 1em;
    color: #3E3E3E;
	letter-spacing: 0.05em;
    line-height: 1.75em;
}
.etc{
	background: url(../images/icon/botan.png) no-repeat left center;
	padding: 0 0 0 25px;
}
.etc2{
	padding: 0;
}
.etc2 ::before{
	content: "・";
	color:#4A2517;
}
.kutikomi-cover{
	width: 100%;
	background: url("../reputation/images/kutikomi-rep.png") no-repeat right center;
	
}
.kutikomi{
	width: 85%;
	background: #fbecec;
	border-radius: 10%;
	padding: 20px;
}

.button_wrap {
    width: 200px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
}
.button {
    display: inline-block;
    text-align: center;
	text-decoration: none;
    width: 200px;
    height: 40px;
    line-height: 43px;
    color: #fff;
    letter-spacing: 1px;
    border-radius: 5px;
    background-color: #EC6B72;
    box-shadow: 0 5px #c1575c;
    position: absolute;
	position: relative;
}
.button a{
	color: #fff;
	font-weight: bold;
	font-size: 1.1em;
	position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.button:hover {
    color: #fff;
    font-weight: bold;
    box-shadow: none;
    top: 5px;
}

.area-btn{
	width: 80%;
	height: 50px;
	background-color: #e43d46;
	margin: 0 auto;
	margin-bottom: 60px;
	border-radius: 5px;
	text-align: center;
	box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .2);
	position: relative;
}
.area-btn a{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
    height: 100%;
	line-height: 50px;
	font-size: 1.1em;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}
att{
	font-size: 0.95em;
    color: #3E3E3E;
    background: linear-gradient(transparent 80%, #ff99ff 60%);
}
.search{
	position: relative;
    padding: 8px 15px;
	display: inline-block;
    background-color: #e95059;
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.search:before{
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #e95059;
}

.schoolSearch{
	padding: 20px;
	border: #e95059 solid 2px;
	border-radius: 5px;
	border-top-left-radius: 0px;
	margin-bottom: 15px;
}
.schoolSearch ul{
	display: flex;
}
.schoolSearch b{
	font-size: 14px;
	color: #3E3E3E;
	font-weight: bold;
	margin: 15px 15px 0 0;
	padding: 8px 0 0 10px;
}
#article .schoolSearch ul li{
	border-left:#3E3E3E solid 1px;
	margin: 15px 0 0 0;
	padding: 0 10px 0 10px;
}
.schoolSearch a{
	font-size: 14px;
	color: #167ac6;
	text-decoration: none;
}
.schoolSearch a:hover{
	color: aqua;
}
/*▼テーブル*/
.kajyougaki{
	width: 100%;
	margin: 15px 0px 15px 0;
	padding: 8px 15px;
	display: inline-block;
    background-color: #fbecec;
    border-radius: 5px;
	border: solid 2px #e95059;
}

#article ul.kajyougaki li{
	list-style: circle;
	margin: 15px 0 15px 15px;
	padding: 0 10px 0 10px;
	font-weight: bold;
}
.table-cover{
	 overflow-x: scroll;
}
.table-cover table{
	white-space: nowrap;
}
table{
border: 1px #dcdcdc	solid;
	box-shadow: #dcdcdc	 2px 5px 10px 1px;
margin:20px 0px 30px 0px;
}


table th{
padding:7px 10px 7px 5px;
border: #c71585 dotted;
border-width: 0 0 1px 1px;
font-weight:bold;
color:#fff;
background:#ddd;
}

table td{
	font-size:0.95em;
	color: #3E3E3E;
padding: 15px;
border: 1px #dcdcdc	solid;
box-shadow: #dcdcdc	 2px 5px 10px 1px;
border-width: 0 0 1px 1px;
background:#fff;
letter-spacing: 0.05em;
    line-height: 1.75em;
}
table td b{
	font-size:0.95em;
	color: #3E3E3E;
	font-weight: bold;
}
dt{font-weight:bold;}

dd{padding-bottom:10px;}

.table2{
border: 1px #dcdcdc	solid;
	box-shadow: #dcdcdc	 2px 5px 10px 1px;
margin:20px 0px 30px 0px;
}


.table2 th{
padding:7px 10px 7px 5px;
border: #c71585 dotted;
border-width: 0 0 1px 1px;
font-weight:bold;
color:#fff;
background:#ddd;
}

.table2 td{
	font-size:0.95em;
	color: #3E3E3E;
padding: 15px;
border: 1px #dcdcdc	solid;
box-shadow: #dcdcdc	 2px 5px 10px 1px;
border-width: 0 0 1px 1px;
background:#fff;
letter-spacing: 0.05em;
    line-height: 1.75em;
}
.table2 td a b{
	font-size:0.95em;
	color: #167ac6;
	font-weight: bold;
}
.table2 td a b{
	font-size:0.95em;
	color: #167ac6;
	font-weight: bold;
}
dt{font-weight:bold;}

dd{padding-bottom:10px;}
.table3{
border: 1px #dcdcdc	solid;
	box-shadow: #dcdcdc	 2px 5px 10px 1px;
margin:20px 0px 30px 0px;
}


.table3 th{
padding:15px 10px 15px 5px;
border: solid 1px #dcdcdc;
border-width: 0 0 1px 1px;
font-weight:bold;
color:#fff;
background:#e87b7b;
}

.table3 td{
	font-size:0.95em;
	color: #3E3E3E;
padding: 15px;
border: 1px #dcdcdc	solid;
box-shadow: #dcdcdc	 2px 5px 10px 1px;
border-width: 0 0 1px 1px;
background:#fff;
letter-spacing: 0.05em;
    line-height: 1.75em;
}
.table3 td a b{
	font-size:0.95em;
	color: #167ac6;
	font-weight: bold;
}
.table3 td a b{
	font-size:0.95em;
	color: #167ac6;
	font-weight: bold;
}
dt{font-weight:bold;}

dd{padding-bottom:10px;}

.table4{
border: 1px #dcdcdc	solid;
	box-shadow: #dcdcdc	 2px 5px 10px 1px;
margin:20px 0px 30px 0px;
}


.table4 th{
padding:15px 10px 15px 15px;
border: solid 1px #dcdcdc;
border-width: 0 0 1px 1px;
	text-align: left;
font-weight:bold;
color:#3E3E3E;
	background: #fff;
}

.table4 td{
	font-size:0.95em;
	color: #3E3E3E;
padding: 15px;
border: 1px #dcdcdc	solid;
box-shadow: #dcdcdc	 2px 5px 10px 1px;
border-width: 0 0 1px 1px;
background:#fff;
letter-spacing: 0.05em;
    line-height: 1.75em;
}
.table4 td a b{
	font-size:0.95em;
	color: #167ac6;
	font-weight: bold;
}
.table4 td a b{
	font-size:0.95em;
	color: #167ac6;
	font-weight: bold;
}
.table5{
	border-top: 1px #e95059 solid;
	border-bottom: 1px #e95059 solid;
	border-left: none;
	border-right: none;
	box-shadow: none;
margin:40px 0px 40px 0px;
}
.table5 tr{
	padding: 30px 0 30px 0;
}
.table5 td{
	font-size:0.95em;
	color: #3E3E3E;
padding: 30px 15px 30px 15px;
border: none;
background:#fff;
letter-spacing: 0.05em;
    line-height: 1.75em;
	box-shadow: none;
}
.table5 th{
	width: 25%;
	border: none;
	background:#fff8f8;
	text-align: center;
	vertical-align: middle;
}
.table5 th b{
	font-size:0.95em;
	color: #3E3E3E;
	font-weight: bold;
	
}

.area{
border: 1px #dcdcdc	solid;
	box-shadow: #dcdcdc	 2px 5px 10px 1px;
margin:20px 0px 30px 0px;
}


.area th{
padding:15px 10px 15px 15px;
border: solid 1px #dcdcdc;
border-width: 0 0 1px 1px;
	text-align: left;
font-weight:bold;
color:#FFFCFC;
	background: #313193;
}

.area td{
	font-size:0.95em;
	color: #3E3E3E;
padding: 15px;
border: 1px #dcdcdc	solid;
box-shadow: #dcdcdc	 2px 5px 10px 1px;
border-width: 0 0 1px 1px;
background:#fff;
letter-spacing: 0.05em;
    line-height: 1.75em;
}
.area td a b{
	font-size:0.95em;
	color: #167ac6;
	font-weight: bold;
}
.area td a b{
	font-size:0.95em;
	color: #167ac6;
	font-weight: bold;
}
/*▲テーブル*/
/*▲コンテンツ微調整*/
/*▼サブナビ微調整*/
/*position: relative;
    width: 240px;
    margin: 0 0 25px;
    padding: 20px 15px;
    overflow: hidden;
    border-radius: 5px;
    background-color: #FFF;
    box-shadow: 0 0 6px rgba(80, 44, 8, 0.14);
}*/
#aside ul{
	margin: 0 0 25px;
    padding: 20px 15px;
    overflow: hidden;
    border-radius: 5px;
    background-color: #FFF;
    box-shadow: 0 0 6px rgba(80, 44, 8, 0.14);
}
.asideTitle{
	font-size:1.1em;
	font-weight: bold;
	color: #e95059;
	border-bottom: #e95059 2px solid;
	margin:0 10px 15px 10px;
}
#aside ul li{
	padding:0 0 15px 10px;
	list-style: none;
}

#aside ul li a{
	font-size: 0.8em;
	font-weight: bold;
	text-decoration: none;
	color: #361d1f;
}
#aside ul li a:hover{
  color:#F4C94A;
  text-decoration:none;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/*▲サブナビ微調整*/
/*▼ページトップボタン微調整*/
#pagetop{
	position: fixed;
	bottom: 10px;
	right: 20px;
	z-index: 200;
    opacity: 0.8;
    transition: opacity 2s;
}
/*▼フッター微調整*/
.footer{
	font-size: 0.8em;
	color: #fff;
	padding: 20px 0 20px 0;
	text-align: center;
}
.fl{
	font-size: 0.8em;
	padding: 20px 0 20px 0;
	text-align: center;
	list-style: none;
}
.fl{
	font-size: 0.8em;
	color: #fff;
	padding: 20px 0 20px 0;
	text-align: center;
	list-style: none;
}
/*▲フッター微調整*/