@charset "UTF-8";

/* 全称セレクタによる余白の解除------------------------------------------------------------ */

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* 全頁共通------------------------------------------------------------ */

body {
	background-color: floralwhite;
	font-size: 16px;
	line-height: 1.9em;
	color: #403D3C;
}


img {
  max-width: 100%;
}

p {
    margin-top: 20px;
    margin-bottom: 20px;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* 本文　共通スタイル 　------------------------------------------------------- */

ul,
ol {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}


a {
	color: #808080;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #808080;
}
a:hover {
	text-decoration: none;
	color: #999;
}
a:active {
	text-decoration: none;
	color: #999;
}

a img {
    border-style:none;
	margin: 0px;
}


/* タイトル 　---------- */
h1 {
	font-size: xx-large;
	text-align:center;
    font-family: serif;
}

/* サブタイトル 　---------- */
h2 {
    font-family: serif;
   	font-size: x-large; 
    color:#FFCC32;
    text-align:left;
}

/* 見出し 　---------- */
h3 {
	font-size: large;
	color:#8C91C1;
    margin-top: 30px;
    margin-bottom: 30px;
    border-bottom: dashed 2px #8C91C1;
}

/* 推薦図書 　---------- */
h4 {
	font-size: large;
	color:#8C91C1;
}

h5 {
}

h6 {
	font-size: 9px;
}



p.left {
	text-align:left;
	}

p.right {
	text-align:right;
	}


ul.kakomi li {
	list-style:none;
	text-indent:-1.5em;
	padding-left:1.5em;
	}
	
.bold{
    font-weight: bold;
}

.small{
    font-size: medium;
}

/* 本文　基本レイアウト 　------------------------------------------------------------ */


.headermenu {
  max-width: 1200px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex; /* アイテムを横並びにする 　---------- */
  justify-content: space-between;  /* アイテムを左右に寄せる 　---------- */
  align-items: center; /* 天地中央に揃える 　---------- */
}



.main {
	clear:both;
	text-align: left;
	margin: 10px auto;
	width: 950px;
}

.contents {
	float:left;
	width:85%;
    padding-left: 50px;
}



/* ヘッダーロゴ ------------------------------------------------------------ */

.logo{
    clear:both;
	float: left;
    padding-top: 10px;
	border:none;
    width:200px;
	opacity: 1;
}


/* フッター ------------------------------------------------------------ */
.footer {
	clear:both;
	position:fixed;
	bottom: 0px;
	left: 0px;
	width:100%;
	height:50px;
    padding-left: 20px;
	background: #5b3468;
	font-size:x-small;
    color: #fff;
	text-align:left;
}


/* フッターロゴ ----- */

.footer-logo{
	float: right;
	border:none;
    width:120px; 
	opacity: 1;
    padding-top: 10px;
    padding-bottom: 0px;
    padding-right: 20px;
    margin: 0px;
}

.copyright {
   padding: 0px;
   margin: 0px;
   opacity: 0.5;
}


/* ページトップアイコン ------------------------------------------------------------ */

#page-top {
	position:fixed;
	right: 20px;
	font-size: x-small;
}
#page-top a {
	background: #FFBF00;
	text-decoration: none;
	color: #fff;
	width: 65px;
	padding: 15px 0;
	text-align: center;
	display: block;
	border-radius: 5px;
}
#page-top a:hover {
	text-decoration: none;
	background: #C9C;
}

