@charset "shift_jis";
@import url("./css/tables.css");
@import url("./css/commonstyles.css");

/* ****    2022年1月17日 ***    */
/*
==================================================
基本スタイル   
==================================================
*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
progress {
  vertical-align: baseline;
}
template,
[hidden] {
  display: none;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:active,
a:hover {
  outline-width: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: inherit;
}
b,
strong {
  font-weight: bolder;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
png:not(:root) {
  overflow: hidden;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}
optgroup {
  font-weight: bold;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/*
==================================================
基本スタイル
==================================================
*/
body{
  background-color: #f2f4f6;
  color: #333333;
  font-family: 'メイリオ',Helvetica,'Hiragino Kaku Gothic Pro',sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6, .title, dt {
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Verdana,'ＭＳ Ｐゴシック',sans-serif;
  font-weight: 700;
}
h2,h3,h4,h5,h6{
	overflow:hidden;
}
.clear {
  clear: both;
  font-size: 1px;
  line-height: 0;
}
p {
  margin: 0;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  body {
	background-color: #fff;
  }
}
/* リスト
==================================================
*/
#main ul{
  list-style: outside none none;
  margin: 10px 0 10px 0px;
  padding: 0;
}
#main ul > li {
  color: #10345d;
  font-weight: 700;
  line-height: 1.7;
  margin: 12px 0;
  padding: 0 0 0 23px;
  position: relative;
}

#main ul > li:before {
  background-color: #fff;
  border: 3px solid #4b7fbb;
  border-radius: 50%; /*丸くする*/
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
  height: 9px;
  left: 6px;/*点の位置*/
  position: absolute;/*絶対配置*/
  top: 7px;/*点の位置*/
  width: 9px;
 
}
/*   リストにメモを追加      */

ul.memo li {
   list-style: none;
}
ul.memo li::before {
   content: "※";
   padding-right: 5px;
   color: red;
}
.memo {
   list-style: none;
}
.memo .new::after {
   content: "new";
   margin-left: 5px;
   color: #fff;
   background: red;
   padding: 1px 3px;
   font-size:12px;
}
.memo .pdf::after {
   content: "PDF";
   margin-left: 5px;
   color: red;
   border:1px solid red;
   padding: 1px 3px;
   font-size:12px;
}
.memo .docx::after {
   content: "Word";
   margin-left: 5px;
   color: blue;
   border:1px solid blue;
   padding: 1px 3px;
   font-size:12px;
}
.memo .xlsx::after {
   content: "Excel";
   margin-left: 5px;
   color: green;
   border:1px solid green;
   padding: 1px 3px;
   font-size:12px;
}
/*   リストにメモを追加 終わり     */



/****          追加           **********/


@media screen and (min-width: 768px) {
  #main ul{
  }
  #main .grayline ul, #main .graybg ul, #main .grayline ul, #main .graybg ul {
	margin: 24px 0 24px 12px;
  }
  #main ul > li {
	padding: 0 0 0 24px;
  }
  #main ol {
	margin: 24px 0 24px 7px;
  }
  #main ol > li {
	padding: 0 0 0 32px;
  }
  #main ol > li::before {
	font-size: 13px;
	height: 20px;
	line-height: 20px;
	top: 3px;
	width: 20px;
  }
}
/* リンク
==================================================
*/
a {
  color: #3598d9;
}
a img{background: none;}
@media screen and (min-width: 1000px) {
  a:hover {
	color: #44b4fd;
	text-decoration: none;
  }
  #main a:hover, #menu a:hover, #rmenu a:hover, #pagetop a:hover {
	left: 1px;
	position: relative;
	top: 1px;
  }
}
/*
==================================================
全体
==================================================
*/
/* レイアウト
==================================================
*/
#wrapper {
  overflow: hidden;
  position: relative;
}
#contents {
  padding: 0 8px;
  position: relative;
}
#siteNavi {
  color: #4d4d4d;
  font-size: 10px;
  line-height: 1.6;
  padding: 10px 0;
}
#siteNavi a {
  color: #004E82;
}
@media screen and (min-width: 768px) {
  #contents {
	padding: 10px;
  }
  #contents::after {
	clear: both;
	content: '';
	display: block;
  }
  #siteNavi {
	margin: 0 0 8px;
	padding: 4px 0 0;
  }
}
@media screen and (min-width: 1000px) {
  #wrapper {
	min-width: 1000px;
	overflow: visible;
  }
  #contents {
	margin: 0 auto;
	padding: 24px 0 50px;
	width: 1000px;
  }
  #siteNavi {
	margin: 0 0 12px;
  }
  #siteNavi a:hover {
	color: #4db2f4;
  }
}
/* ページ上部へ戻る
==================================================
*/
#pagetop a {
  background-color: #047ab7;
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  color: #fff;
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0 12px 12px;
  padding: 18px 0 18px 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
}
#pagetop a::before {
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  content: '';
  height: 10px;
  left: 50%;
  margin-left: -36px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 10px;
}
@media screen and (min-width: 768px) {
  #pagetop::after {
	clear: both;
	content: '';
	display: block;
  }
  #pagetop a {
	float: right;
	height: 42px;
	margin: 0 10px 10px 0;
	overflow: hidden;
	padding: 0;
	text-indent: 200%;
	white-space: nowrap;
	width: 42px;
  }
  #pagetop a::before {
	height: 13px;
	left: 14px;
	margin: 0;
	top: 18px;
	width: 13px;
  }
}
@media screen and (min-width: 1000px) {
  #pagetop {
	margin: 0 auto;
	width: 1000px;
  }
  #pagetop a {
	height: 49px;
	margin-right: 0;
	width: 49px;
  }
  #pagetop a:hover {
	background-color: #5797C2;
  }
  #pagetop a::before {
	height: 15px;
	left: 16px;
	top: 21px;
	width: 15px;
  }
}

/* 回り込み・回り込み解除
==================================================
*/
.txt-img img {
  margin: 0 8px 8px 8px;
}
.center {
  margin: 5px 0;
  text-align: center;
}
.float-l {
  float: left;
}
.float-r {
  float: right;
}
.float-l img,
.float-r img {
  margin-bottom: 20px;
}
.float-l img {
  margin-right: 20px;
}
.float-r img {
  margin-left: 20px;
}
.clear, .FloatEnd {
  clear: both;
  font-size: 1px;
  height: 0;
  line-height: 0;
}

/*
==================================================
トップ部分
==================================================
*/
/* トップ
==================================================
*/
#top {
  background-color:#f4f4f4;
  border-bottom: 1px solid #ddd;
  display: table;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}
#top .inner {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: table-cell;
  height: 45px;
  padding: 8px;
  width: 100%;
}
#top h1 {
  color: #b7b9bf;
  font-size: 7px;
  font-weight: normal;
  line-height: 1.6;
  margin: 0;
}
#top h2 {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.4;
  margin: 0;
}
#top h2 a {
  color: #004E82;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
	#top {
		background-color: #fff;
		background-image: none;
		border-top: 5px solid #047ab7;
		border-bottom: 1px solid #bbbbbb;
		-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14), 0 0 5px rgba(0, 0, 0, 0.15);
		-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14), 0 0 5px rgba(0, 0, 0, 0.15);
		box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14), 0 0 5px rgba(0, 0, 0, 0.15);
		position: relative;
		z-index: 1;
	}
	#top::before {
		background-image: url('data:image/png	+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI	+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YyZjJmMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
		background-size: 100%;
		background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f2f2f2));
		background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
		background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
		background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
		bottom: 0;
		content: '';
		height: 39%;
		left: 0;
		position: absolute;
		right: 0;
		z-index: -1;
	}
	#top::after {
		background-image: url('data:image/png+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2FkYWRhZCIvPjxzdG9wIG9mZnNldD0iMjAlIiBzdG9wLWNvbG9yPSIjZDZkNmQ2Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
		background-size: 100%;
		background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #adadad), color-stop(20%, #d6d6d6), color-stop(100%, #ffffff));
		background-image: -moz-linear-gradient(top, #adadad 0%, #d6d6d6 20%, #ffffff 100%);
		background-image: -webkit-linear-gradient(top, #adadad 0%, #d6d6d6 20%, #ffffff 100%);
		background-image: linear-gradient(to bottom, #adadad 0%, #d6d6d6 20%, #ffffff 100%);
		content: '';
		height: 4px;
		left: 0;
		position: absolute;
		right: 0;
		top: 1px;
		z-index: -1;
	}
  #top .inner {
	display: block;
	height: auto;
	padding: 12px 290px 12px 10px;
  }
  #top h1 {
	font-size: 14px;
  }
  #top h2 {
	font-size: 22px;
	line-height: 1.5;
  }
}
@media screen and (min-width: 1000px) {
  #top .inner {
	left: 50%;
	margin-left: -500px;
	padding: 24px 0;
	position: relative;
	width: 668px;
  }
}
/* ヘッダー
==================================================
*/
#header {
  background-color: #fff;
  height: auto !important;
}
#header > img {
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #headerbox {
	background-color: #f1f1f1;
	padding: 10px;
  }
}
@media screen and (min-width: 1000px) {
  #headerbox {
	padding: 24px 0;
  }
  #header {
	margin: 0 auto;
	width: 1000px;
  }
}
/* トップメニュー
==================================================
*/
#topmenubtn {
  background-color: #f2f2f2;
  border-left: 1px solid #ddd;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: table-cell;
  line-height: 1;
  overflow: hidden;
  position: relative;
  right: 0;
  text-indent: 200%;
  top: 0;
  white-space: nowrap;
  width: 50px;
}
#topmenubtn::before, #topmenubtn::after {
  content: '';
  position: absolute;
  right: 15px;
  width: 19px;
}
#topmenubtn::before {
  border-bottom: 2px solid #004E82;
  border-top: 2px solid #004E82;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 5px;
  top: 15px;
}
#topmenubtn::after {
  border-top: 2px solid #004E82;
  height: 0;
  top: 29px;
}
#topmenubox {
  display: table-row;
}
#topmenubox::after {
  background-color: rgba(0, 0, 0, 0.8);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}
#topmenubox #topmenubox-inner {
  background-color: #f2f2f2;
  display: block;
  position: absolute;
  width: 100%;
}
#topmenubox #topmenubox-inner::before {
  border-top: 1px solid #ddd;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
input#panel[type="checkbox"] {
  display: none;
}
input#panel[type="checkbox"] ~ #topmenubox::after,
input#panel[type="checkbox"] ~ #topmenubox #topmenubox-inner {
  -moz-transition: opacity 0.05s ease 0s;
  -o-transition: opacity 0.05s ease 0s;
  -webkit-transition: opacity 0.05s ease;
  -webkit-transition-delay: 0s;
  transition: opacity 0.05s ease 0s;
  opacity: 0;
  z-index: -1;
}
input#panel[type="checkbox"]:checked + #topmenubtn::before, input#panel[type="checkbox"]:checked + #topmenubtn::after {
  border-top: 2px solid #004E82;
  right: 14px;
  top: 21px;
  width: 21px;
}
input#panel[type="checkbox"]:checked + #topmenubtn::before {
  border-bottom: none;
  height: 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
input#panel[type="checkbox"]:checked + #topmenubtn::after {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
input#panel[type="checkbox"]:checked ~ #topmenubox::after {
  opacity: 1;
  z-index: 99;
}
input#panel[type="checkbox"]:checked ~ #topmenubox #topmenubox-inner {
  opacity: 1;
  z-index: 100;
}
#topmenu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#topmenu ul li {
  border-top: 1px solid #e6e6e6;
}
#topmenu ul a {
  color: #333;
  display: block;
  font-size: 14px;
  line-height: 1.6;
  padding: 13px 16px 13px 32px;
  position: relative;
  text-align: left;
  text-decoration: none;
}
#topmenu ul a::before {
  border: 4px solid transparent;
  border-left: 6px solid #047ab7;
  content: '';
  left: 19px;
  position: absolute;
  top: 19px;
}
#topsubmenu {
  background-color: #eaeaea;
}
#topsubmenu span {
  border-top: 1px solid #e6e6e6;
  display: block;
}
#topsubmenu span a {
  color: #333;
  display: block;
  font-size: 14px;
  line-height: 1.6;
  padding: 13px 16px 13px 32px;
  position: relative;
  text-align: left;
  text-decoration: none;
}
#topsubmenu span a::before {
  border: 4px solid transparent;
  border-left: 6px solid #a3a3a3;
  content: '';
  left: 19px;
  position: absolute;
  top: 19px;
}

@media screen and (min-width: 768px) {
  #topmenubtn {
	display: none;
  }
  #topmenubox {
	display: inline;
  }
  #topmenubox::after {
	display: none;
  }
  #topmenubox #topmenubox-inner {
	background-color: transparent;
	display: inline;
	opacity: 1 !important;
	position: static;
  }
  #topmenubox #topmenubox-inner::before {
	display: none;
  }
	#topmenu {
		overflow: hidden;
		position: relative;
		z-index: 0;
	}
	#topmenu::before {
		background-color: #e5e5e5;
		-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25) inset;
		-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25) inset;
		box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25) inset;
		bottom: 0;
		content: '';
		height: 5px;
		left: -10px;
		position: absolute;
		right: -10px;
		z-index: -1;
	}
	#topmenu ul {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		display: table;
		table-layout: fixed;
		width: 100%;
	}
	#topmenu ul li {
		border: none;
		border-left: 1px solid rgba(255, 255, 255, 0.75);
		border-right: 1px solid #e4e3e2;
		display: table-cell;
		position: relative;
	}
	#topmenu ul li:first-child {
		border-left: 1px solid #e4e3e2;
	}
	#topmenu ul a {
 		color: #503e3e;
		font-size: 15px;
		padding: 10px 10px 16px;
		position: static;
		text-align: center;
	}
	#topmenu ul a::before, #topmenu ul a::after {
			display: none;
	}
  #topsubmenu {
	background-color: transparent;
	position: absolute;
	right: 10px;
	text-align: right;
	top: 40px;
  }
  #topsubmenu span {
	border: none;
	display: inline;
  }
  #topsubmenu span:first-of-type::before {
	border-right: 1px solid #d1d5d9;
	content: '';
	display: inline-block;
	height: 16px;
	vertical-align: middle;
  }
  #topsubmenu span::after {
	border-right: 1px solid #d1d5d9;
	content: '';
	display: inline-block;
	height: 16px;
	vertical-align: middle;
  }
  #topsubmenu span a {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.1em;
	margin: 0 1em;
	padding: 0;
  }
  #topsubmenu span a::before {
	display: none;
  }
}
@media screen and (min-width: 1000px) {
  #topmenu ul {
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	margin: 0 auto;
	width: 1000px;
  }
  #topmenu ul li {
	padding-bottom: 0;
  }
  #topmenu ul a:hover {
    color: #047ab7;
  }
  #topmenu ul a:hover::after {
    background-color: #047ab7;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25) inset;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25) inset;
    border: none;
    content: "";
    bottom: 0;
    display: block;
    height: 4px;
    position: absolute;
    left: 0;
    margin-top: auto;
    right: 0;
  }
  #topsubmenu {
	left: 50%;
	right: auto;
	top: 58px;
	width: 500px;
  }
  #topsubmenu span a {
	margin: 0 1.8em;
  }
  #topsubmenu span a:hover {
	color: #3598d9;
	text-decoration: underline;
  }
}
/*
==================================================
メインコンテンツ
==================================================
*/
/* 記事領域
==================================================
*/
#main {
  text-align: left;
}
#main .text, #text1, #text2, #text3, #text4, #text5, #text6, #text7, #text8, #text9, #text10, #space1, #space2 {
  background-color: #fff;
  margin-bottom: 8px;
  overflow: hidden;
  padding: 12px;
}
@media screen and (min-width: 768px) {
  #main {
	float: right;
  }
  #main .text, #text1, #text2, #text3, #text4, #text5, #text6, #text7, #text8, #text9, #text10, #space1, #space2 {
	margin: 0 0 24px;
	padding: 10px;
  }
}
/* 見出し
==================================================
*/
#main h2,
#main h3 {
  background-color: #fff;
  border: 1px solid #d9d4d4;
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1;
  margin: 20px auto 0;
  padding: 0;
  position: relative;
  z-index: 1;
  clear:both;
}
#main h2:before, #main h3:before {
    background-color: #047ab7;
    content: "";
    width: 4px;
    height: 85%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
}
#main h2 span,
#main h3 span {
  background-image: linear-gradient(to bottom, #f3f3f3, #ffffff);
  display: block;
  font-size: 19px;
  line-height: 1.5;
  margin: 0;
  padding: 14px 10px 14px 20px;
}
#main .text h3, #main #text1 h3, #main #text2 h3, #main #text3 h3, #main #text4 h3, #main #text5 h3, #main #text6 h3, #main #text7 h3, #main #text8 h3, #main #text9 h3, #main #text10 h3, #main #space1 h3, #main #space2 h3 {
  margin: 8px 0;
}
#main h4 {
  background-color: #fbfbfb;
  border: 1px solid #d3d3cf;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  color: #1C1E21;
  font-size: 18px;
  line-height: 1.5;
  margin: 20px 0 16px;
  padding: 12px 16px;
  position: relative;
  z-index: 0;
  clear:both;
}
#main h4:before {
  content: "";
  border-top: 2px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  width:  100%;
  margin: auto;
  padding:  0;
}
#main h4:after {
  content: "";
  border: 1px solid #047ab7;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  padding: 0;
  width: 100%;
}
#main h5 {
  font-size: 17px;
  line-height: 1.5;
  margin: 20px 0 10px;
  overflow: hidden;
  padding: 0 0 0 14px;
  position: relative;
}
#main h5::before {
  background-color: #047ab7;
  -moz-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.15);
  bottom: 2px;
  content: '';
  left: 0;
  position: absolute;
  top: 2px;
  width: 4px;
}
#main h6 {
  font-size: 16px;
  line-height: 1.8;
  margin: 10px auto;
  overflow: hidden;
  padding: 0 0 0 24px;
  position: relative;
}
#main h6::before {
  background-color: #047ab7;
  background-image: url(img/h6.png);
  background-position: 3px center;
  background-repeat: no-repeat;
  background-size: 50%;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  content: '';
  height: 15px;
  left: 2px;
  position: absolute;
  top: 6px;
  width: 15px;
}
#main blockquote {
  background-color: #f7f7f7;
  border: 2px solid #cccccc;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin: 24px 0;
  //padding: 12px 10px 12px 38px;
  padding: 12px 10px 12px 10px;
  position: relative;
}
#main blockquote::before {
/*
  content: '\203b';
  font-size: 16px;
  font-weight: 500;
  left: 16px;
  position: absolute;
  top: 10px;
*/
}
@media screen and (min-width: 768px) {
  #main h2,
  #main h3 {
	margin: 0 0 10px;
	padding: 0;
  }
  #main h2 span,
  #main h3 span {
	font-size: 22px;
	line-height: 1.4;
  }
  #main .text h3, #main #text1 h3, #main #text2 h3, #main #text3 h3, #main #text4 h3, #main #text5 h3, #main #text6 h3, #main #text7 h3, #main #text8 h3, #main #text9 h3, #main #text10 h3, #main #space1 h3, #main #space2 h3 {
	margin: 20px 0;
  }
  #main h4 {
	font-size: 19px;
	padding: 10px 10px 8px 15px;
  }
  #main h5 {
	font-size: 19px;
	padding: 0 0 0 16px;
  }
  #main h6 {
	font-size: 17px;
	line-height: 1.5;
	padding: 0 0 0 26px;
  }
  #main h6::before {
	top: 5px;
  }


}
/*
==================================================
画像付きボックス
==================================================
*/
#main .alert, #main .accept, #main .attention, #main .thint {
  background-position: 12px 15px;
  background-repeat: no-repeat;
  background-size: 17px auto;
  font-size: 16px;
  line-height: 1.8;
  margin: 15px 0;
  padding: 12px 10px 12px 38px;
  position: relative;
  z-index: 0;
}
#main .alert.noimage, #main .accept.noimage, #main .attention.noimage, #main .thint.noimage {
  background-image: none;
  padding: 12px 10px;
}
#main .attention {
  background-color: #fffff8;
  background-image: url(img/attention.png);
  border: 2px solid #d3b806;
  color: #B09B09;
}
#main .accept {
  background-color: #f8fbf8;
  background-image: url(img/accept.png);
  border: 2px solid #5ca25e;
  color: #5ba15d;
}
#main .alert {
  background-color: #fdf6f5;
  background-image: url(img/alert.png);
  border: 2px solid #d6272e;
  color: #d5262d;
}
#main .thint {
  background-color: #f6f9fd;
  background-image: url(img/thint.png);
  border: 2px solid #3284cb;
  color: #3183ca;
}
@media screen and (min-width: 768px) {
  #main .alert, #main .accept, #main .attention, #main .thint {
	background-position: 22px 20px;
	background-size: auto auto;
	margin: 20px 0;
	padding: 25px 16px 25px 78px;
  }
  #main .alert.noimage, #main .accept.noimage, #main .attention.noimage, #main .thint.noimage {
	padding: 18px 16px;
  }
}
#main .user1,
#main .user2 {
  background-color: #fff;
  background-position: 7px 7px;
  background-repeat: no-repeat;
  background-size: 65px auto;
  border: none;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-shadow: 0 0 7px #c9c9c9 inset;
  -webkit-box-shadow: 0 0 7px #c9c9c9 inset;
  box-shadow: 0 0 7px #c9c9c9 inset;
  font-size: 16px;
  line-height: 1.8;
  margin: 24px 0;
  min-height: 79px;
  overflow: hidden;
  position: relative;
  padding: 20px 12px 20px 82px;
  _height: auto;
  z-index: 0;
}
#main .user1.noimage,
#main .user2.noimage {
  background-image: none;
  min-height: 0;
  padding: 14px 12px;
}
#main .user1 {
  background-image: url(img/user1.png);
}
#main .user2 {
  background-image: url(img/user2.png);
}
@media screen and (min-width: 768px) {
  #main .user1,
  #main .user2 {
	background-position: 10px 10px;
	background-size: 130px auto;
	margin: 30px 0;
	min-height: 150px;
	padding: 35px 20px 35px 170px;
  }
  #main .user1.noimage,
  #main .user2.noimage {
	padding: 20px 18px;
  }
}


/*
==================================================
サイドメニュー
==================================================
*/
/* メニュー
==================================================
*/
#menu,
#rmenu {
  text-align: left;
}
#menu h4,
#menu .title,
#rmenu h4,
#rmenu .title {
  font-size: 14px;//?
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#menu h4 + .menubox,
#menu .title + .menubox,
#rmenu h4 + .menubox,
#rmenu .title + .menubox {
  margin-top: -1px;
}
#menu h4,#rmenu h4, #menu .title, #rmenu .title {
  background: #f5f5f5;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
  background: -webkit-linear-gradient(top, #fff, #fafafa);
  background: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  background: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  background: -o-linear-gradient(top, #ffffff, #f5f5f5);
  border-top: 3px solid #047ab7;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #dedede;
  color: #333;
  padding: 10px 12px;//12px 15px;
}
#menu .menubox,
#rmenu .menubox {
  background-color: #eee;
  border: 1px solid #dedede;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 7px;
}
#menu .menulist,
#rmenu .menulist {
  background-color: #eee;
  padding: 4px;
}
#menu .menulist ul,
#rmenu .menulist ul, #submenu li {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
#menu .menulist li,
#rmenu .menulist li {
  background-color: #fff;
  border-bottom: 1px solid #eceff1;
  margin-bottom: 1px;//3px;
}
#menu .menulist li:last-child,
#rmenu .menulist li:last-child {
  margin-bottom: 0;
}
#menu .menulist li a,
#rmenu .menulist li a {
  color: #333333;
  display: block;
  font-size: 10px;//14px
  line-height: 1.6;
  padding: 13px 16px 13px 28px;//10px 12px 10px 15px;
  position: relative;
  text-decoration: none;
}
#menu .menulist li a::before,
#rmenu .menulist li a::before {
  border: 4px solid transparent;
  border-left: 6px solid #047ab7;
  content: '';
  left: 15px;
  position: absolute;
  top: 19px;
}
#menu .menulist .l2,
#menu .menulist .l3,
#rmenu .menulist .l2,
#rmenu .menulist .l3 {
  background-color: #fafafa;
  margin-top: -3px;
}
#menu .menulist .l2 a,
#menu .menulist .l3 a,
#rmenu .menulist .l2 a,
#rmenu .menulist .l3 a {
  font-size: 12px;
}
#menu .menulist .l2 a::before, #menu .menulist .l2 a::after,
#menu .menulist .l3 a::before,
#menu .menulist .l3 a::after,
#rmenu .menulist .l2 a::before,
#rmenu .menulist .l2 a::after,
#rmenu .menulist .l3 a::before,
#rmenu .menulist .l3 a::after {
  border: none;
  border-right: 1px solid #484848;
  border-top: 1px solid #484848;
  content: '';
  height: 5px;
  left: 30px;
  position: absolute;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 20px;
  width: 5px;
}
#menu .menulist .l2 a::after,
#menu .menulist .l3 a::after,
#rmenu .menulist .l2 a::after,
#rmenu .menulist .l3 a::after {
  left: 34px;
}
#menu .menulist .l2 a,
#rmenu .menulist .l2 a {
  padding-left: 48px;
}
#menu .menulist .l3 a,
#rmenu .menulist .l3 a {
  padding-left: 68px;
}
#menu .menulist .l3 a::before,
#rmenu .menulist .l3 a::before {
  left: 50px;
}
#menu .menulist .l3 a::after,
#rmenu .menulist .l3 a::after {
  left: 54px;
}
#menu .rankbox,
#rmenu .rankbox {
  border-bottom: 1px dashed #cfcfcf;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  #menu h4,
  #menu .title,
  #rmenu h4,
  #rmenu .title {
	font-size: 14px;// 右側メニュータイトル
	font-weight: 700;//
	line-height: 1.6;
  }
  #menu h4,
  #rmenu h4 {
	padding: 15px 16px;
  }
  #menu .title,
  #rmenu .title {
	padding: 14px 15px;
  }
  #menu .menulist,
  #rmenu .menulist {
	padding: 7px;
  }
  #menu {
	float: left;
  }
}
@media screen and (min-width: 1000px) {
  #menu h4,
  #rmenu h4 {
	padding: 16px 20px;
  }
  #menu .title,
  #rmenu .title {
	padding: 15px 19px;
  }
  #menu .menubox,
  #rmenu .menubox {
	margin-bottom: 16px;
  }
  #menu .menulist li a:hover,
  #rmenu .menulist li a:hover {
	color: #3598d9;
	text-decoration: underline;
  }
  #menu .menulist li a:hover::before,
  #rmenu .menulist li a:hover::before {
	border-left-color: #3598d9;
  }
  #menu .menulist .l2 a:hover::before, #menu .menulist .l2 a:hover::after,
  #menu .menulist .l3 a:hover::before,
  #menu .menulist .l3 a:hover::after,
  #rmenu .menulist .l2 a:hover::before,
  #rmenu .menulist .l2 a:hover::after,
  #rmenu .menulist .l3 a:hover::before,
  #rmenu .menulist .l3 a:hover::after {
	border-right-color: #3598d9;
	border-top-color: #3598d9;
  }
}
/* バナー領域
==================================================
*/
.bannerbox {
  position: relative;
}
.bannerbox ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.bannerbox li {
  margin-bottom: 10px;
  text-align: center;
}
.bannerbox li a img {
  vertical-align: bottom;
}
/* 最新記事・アーカイブ
==================================================
*/
ul#newEntry, ul#entryarchive {
  background-color: #fff;
  list-style: outside none none;
  margin: -7px 0;
  padding: 0;
}
ul#newEntry li, ul#entryarchive li {
  border-bottom: 1px solid #ededed;
  font-size: 14px;
  line-height: 1.6;
  padding: 14px 0 14px 22px;
  position: relative;
}
ul#newEntry li:last-child, ul#entryarchive li:last-child {
	border-bottom: 5px solid #f5f5f5;
}
ul#newEntry li::before, ul#entryarchive li::before {
  border: 4px solid transparent;
  border-left: 6px solid #3598d9;
  content: '';
  left: 9px;
  position: absolute;
  top: 20px;
}
ul#newEntry li a, ul#entryarchive li a {
  color: #004E82;
}
@media screen and (min-width: 768px) {
  ul#newEntry, ul#entryarchive {
  }
}
@media screen and (min-width: 1000px) {
  ul#newEntry li a:hover, ul#entryarchive li a:hover {
	color: #4db2f4;
  }
}
/*
==================================================
フッター
==================================================
*/
#footer {
  background-color: #047ab7;
  overflow: hidden;
  position: relative;
}
#footer .inner {
  letter-spacing: -.4em;
  padding: 16px 20px 0;
}
#footer span::before {
  border-left: 1px solid #fff;
  content: '';
  display: inline-block;
  height: 12px;
  margin: 0 0.7em;
  vertical-align: middle;
}
#footer span:first-of-type::before {
  display: none;
}
#footer span a {
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  letter-spacing: normal;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
#footer .desc {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 0 0 16px;
  text-align: left;
}
#footer span + .desc {
  margin-top: 16px;
}
#footer small {
  color: #fff;
  display: block;
  font-size: 10px;
  letter-spacing: 0.05em;
  margin: -16px 0 0;
  padding: 10px 0;
  text-align: center;
}
#footer span + small,
#footer .desc + small {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  #footer .desc {
	text-align: center;
  }
  #footer small {
	padding: 16px 0;
  }
}
@media screen and (min-width: 1000px) {
  #footer .inner {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 24px 0 0;
	width: 1000px;
  }
  #footer span::before {
	height: 18px;
	margin: 0 1.2em;
  }
  #footer span a {
	font-size: 13px;
  }
  #footer span a:hover {
	opacity: 0.8;
	text-decoration: underline;
  }
  #footer .desc {
	font-size: 12px;
	margin: 0 0 24px;
  }
  #footer span + .desc {
	margin-top: 24px;
  }
  #footer small {
	font-size: 11px;
	margin: 0;
	padding: 0 0 24px;
  }
  #footer span + small,
  #footer .desc + small {
	margin-top: 24px;
  }
}
/*
==================================================
トップページ
==================================================
*/
#whatsnew {
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	margin-bottom: 8px;
	overflow: hidden;
}
#whatsnew .title {
  background-color: #047ab7;
  border-bottom: 1px solid #dedede;
  overflow: hidden;
  padding: 13px 15px;
}
#whatsnew .title span {
  color: #fff;
  display: block;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.5;
}
#whatsnew .title span::after {
  color: #fff;
  content: '\00a0\00a0/\00a0\00a0update\00a0record';
  font-size: 12px;
  letter-spacing: 0.05em;
}
#whatsnew ul {
  list-style: outside none none;
  margin: 0;
  padding: 0 7px;
}
#whatsnew ul li {
	background-color: #fff;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #f5f5f5;
	font-size: 14px;
	line-height: 1.6;
	margin: auto;
	padding: 16px 8px;
	width: auto;
}
#whatsnew ul li:first-child {
	border-top: 5px solid #f5f5f5;
}
#whatsnew ul li:last-child {
}
#whatsnew ul li span {
  display: block;
}
#whatsnew ul li span:first-of-type {
  color: #8e9bac;
  font-size: 12px;
  line-height: 1;
  margin: 0 0 5px;
}
#whatsnew ul li a {
  color: #004E82;
}
@media screen and (min-width: 768px) {
  #whatsnew {
	margin-bottom: 20px;
  }
  #whatsnew .title {
	border-bottom: none;
	padding: 14px 20px;
  }
  #whatsnew .title span {
	font-size: 18px;
  }
  #whatsnew .title span::after {
	font-style: italic;
	font-weight: lighter;
	letter-spacing: 0.1em;
  }
  #whatsnew ul {
	padding: 0;
  }
  #whatsnew ul li {
	padding: 15px 20px;
	width: 92%;
  }
  #whatsnew ul li:last-child {
	border-bottom: 5px solid #f5f5f5;
  }
  #whatsnew ul li span:first-of-type {
	margin: 0 0 8px;
  }
}
@media screen and (min-width: 1000px) {
  #whatsnew ul li a:hover {
	color: #4db2f4;
  }
}
/*
==================================================
カテゴリーページ
==================================================
*/
#categorylist {
  background-color: #fff;
  margin: 8px 0;
  overflow: hidden;
  padding: 8px;
}
#categorylist .catbox {
  background-color: #fff;
  border: 1px solid #d2d7dc;
  margin: 0 0 8px;
  padding: 3px 0 0;
  position: relative;
  text-align: center;
  z-index: 0;
}
#categorylist .catbox::before {
  border-top: 4px solid #047ab7;
  content: '';
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
}
#categorylist .catbox:last-of-type {
  margin-bottom: 0;
}
#categorylist .title {
  padding: 10px 12px;
  position: relative;
  text-align: left;
}
#categorylist .title::before {
  background-color: #047ab7;
  bottom: 13px;
  content: '';
  left: 12px;
  position: absolute;
  top: 13px;
  width: 4px;
}
#categorylist .title a {
  color: #004E82;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  padding: 0 0 0 14px;
  position: relative;
  text-decoration: none;
}
#categorylist .body {
  border: 5px solid #eee;
  padding: 12px;
  text-align: center;
}
#categorylist .body::after {
  clear: both;
  content: '';
  display: block;
}
#categorylist .thumb {
  margin-bottom: 12px;
  position: relative;
  text-align: center;
}
#categorylist .thumb img{
  display:block;
  margin:0 auto 10px auto;
}
#categorylist p {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 12px;
  overflow: hidden;
  text-align: left;
}
#categorylist .more {
  margin: 0 -12px -12px;
  padding: 11px;
}
#categorylist .more a {
  background-color: #047ab7;
  color: #fff;
  display: block;
  font-size: 15px;
  line-height: 1;
  padding: 14px 0;
  position: relative;
  text-decoration: none;
}
#categorylist .more a::after {
  border: 4px solid transparent;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  bottom: 3px;
  content: '';
  position: absolute;
  right: 3px;
}
#main #pagelist {
  margin: 15px 0 5px;
  text-align: center;
}
#main #pagelist ul {
  letter-spacing: -.4em;
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
#main #pagelist li {
  display: inline-block;
  letter-spacing: normal;
  margin: 0 3px 10px !important;
  padding: 0 !important;
}
#main #pagelist li::before {
  display: none;
}
#main #pagelist a {
  background-color: #f0f3f5;
  color: #004E82;
  display: inline-block;
  font-family: Arial;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  padding: 7px 11px;
  text-align: center;
  text-decoration: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  #categorylist {
	background-color: transparent;
	margin: 20px 0;
	padding: 0;
  }
  #categorylist .catbox {
	margin: 0 0 16px;
  }
  #categorylist .catbox:last-of-type {
	margin-bottom: 16px;
  }
  #categorylist .title {
	padding: 14px 15px;
  }
  #categorylist .title::before {
	bottom: 16px;
	left: 15px;
	top: 16px;
  }
  #categorylist .title a {
	font-size: 20px;
	line-height: 1.5;
	padding: 0 0 0 16px;
  }
  #categorylist .body {
	background-color: #fff;
	border: 5px solid #eee;
	padding: 18px 24px;
  }
  #categorylist p {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 14px;
  }
  #categorylist .more {
	background-color: transparent;
	margin: 0;
	padding: 0;
  }
  #categorylist .more a {
	font-size: 15px;
	height: 40px;
	line-height: 40px;
	padding: 0;
  }
  #main #pagelist {
	margin: 20px 0 10px;
  }
  #main #pagelist li {
	margin: 0 2px 10px !important;
  }
}
@media screen and (min-width: 1000px) {
  #categorylist .title a:hover {
	color: #3598d9;
	text-decoration: underline;
  }
  #categorylist .more a:hover {
	background-color: #97AFCA;
  }
  #main #pagelist a:hover {
	background-color: #3598d9;
	color: #fff;
  }
}
/*

/*
==================================================
リンク集
==================================================
*/
#linklist {
  background-color: #fff;
  margin: 8px 0;
  overflow: hidden;
  padding: 12px;
}
#linklist dt {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  margin: 0 0 5px;
}
#linklist dd {
  border-bottom: 1px dashed #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
  padding: 0 0 14px;
}
#linklist dd:last-of-type {
  border-bottom: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  #linklist {
	margin: 0 0 20px;
	padding: 10px 0;
  }
  #linklist dt {
	padding: 0 10px;
  }
  #linklist dd {
	margin: 0 0 20px;
	padding: 0 10px 20px;
  }
  #linklist dd:last-of-type {
	border-bottom: 1px dashed #cfcfcf;
	margin: 0 0 20px;
	padding: 0 10px 20px;
  }
}
/*
==================================================
ポイント
==================================================
*/
#main .point1, #main .point2, #main .point3, #main .point4, #main .point5, #main .point6, #main .point7, #main .point8, #main .point9, #main .point10, #menu .point1, #rmenu .point1, #menu .point2, #rmenu .point2, #menu .point3, #rmenu .point3, #menu .point4, #rmenu .point4, #menu .point5, #rmenu .point5, #menu .point6, #rmenu .point6, #menu .point7, #rmenu .point7, #menu .point8, #rmenu .point8, #menu .point9, #rmenu .point9, #menu .point10, #rmenu .point10 {
  border: none;
}
#main .point1, #main .point2, #main .point3, #main .point4, #main .point5, #main .point6, #main .point7, #main .point8, #main .point9, #main .point10 {
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 48px auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  height: auto;
  line-height: 1.5;
  margin: 15px 0 5px;
  min-height: 32px;
  padding: 2px 0 0 56px;
}
#menu .point1, #rmenu .point1, #menu .point2, #rmenu .point2, #menu .point3, #rmenu .point3, #menu .point4, #rmenu .point4, #menu .point5, #rmenu .point5, #menu .point6, #rmenu .point6, #menu .point7, #rmenu .point7, #menu .point8, #rmenu .point8, #menu .point9, #rmenu .point9, #menu .point10, #rmenu .point10 {
  padding: 0 2px 0 40px;
  background-position:  left top;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  #main .point1, #main .point2, #main .point3, #main .point4, #main .point5, #main .point6, #main .point7, #main .point8, #main .point9, #main .point10 {
	background-size: auto auto;
	font-size: 20px;
	margin: 20px 0 10px;
	min-height: 40px;
	padding: 4px 0 0 70px;
  }
}
.point1 {
  background-image: url(img/point1.png);
}
.point2 {
  background-image: url(img/point2.png);
}
.point3 {
  background-image: url(img/point3.png);
}
.point4 {
  background-image: url(img/point4.png);
}
.point5 {
  background-image: url(img/point5.png);
}
.point6 {
  background-image: url(img/point6.png);
}
.point7 {
  background-image: url(img/point7.png);
}
.point8 {
  background-image: url(img/point8.png);
}
.point9 {
  background-image: url(img/point9.png);
}
.point10 {
  background-image: url(img/point10.png);
}


/*
==================================================
矢印アイコン
==================================================
*/

/* メニュー用 画像スタイルサイズ調整 */
#menu .point1, #rmenu .point1, #menu .point2, #rmenu .point2, #menu .point3, #rmenu .point3, #menu .point4, #rmenu .point4, #menu .point5, #rmenu .point5, #menu .point6, #rmenu .point6, #menu .point7, #rmenu .point7, #menu .point8, #rmenu .point8, #menu .point9, #rmenu .point9, #menu .point10, #rmenu .point10, #menu .rank1, #rmenu .rank1, #menu .rank2, #rmenu .rank2, #menu .rank3, #rmenu .rank3, #menu .rank4, #rmenu .rank4, #menu .rank5, #rmenu .rank5, #menu .rank6, #rmenu .rank6, #menu .rank7, #rmenu .rank7, #menu .rank8, #rmenu .rank8, #menu .rank9, #rmenu .rank9, #menu .rank10, #rmenu .rank10{
border:none;
background-size:36px auto;
background-position:top left;
height:auto;
min-height:36px;
}

/*
==================================================
１カラムレイアウト
==================================================
*/
#column1 #menu,
#column1 #main {
  float: none;
  width: 100%;
  box-sizing:border-box;
}
@media screen and (min-width: 768px) {
  #column1 #menu .menulist ul,
  #column1 #rmenu .menulist ul {
	background-color: #fff;
	overflow: hidden;
	padding: 10px 19px 0;
  }
  #column1 #menu .menulist li,
  #column1 #rmenu .menulist li {
	border:none;
  }
  #column1 #menu .menulist li,
  #column1 #menu .menulist .l2,
  #column1 #menu .menulist .l3,
  #column1 #rmenu .menulist li,
  #column1 #rmenu .menulist .l2,
  #column1 #rmenu .menulist .l3 {
	background-color: transparent;
	border-bottom: none;
	float: left;
	margin: 0 20px 10px 0;
  }
  #column1 #menu .menulist li a,
  #column1 #menu .menulist .l2 a,
  #column1 #menu .menulist .l3 a,
  #column1 #rmenu .menulist li a,
  #column1 #rmenu .menulist .l2 a,
  #column1 #rmenu .menulist .l3 a {
	font-size: 13px;
	padding: 0 0 0 14px;
  }
  #column1 #menu .menulist li a::before,
  #column1 #menu .menulist .l2 a::before,
  #column1 #menu .menulist .l3 a::before,
  #column1 #rmenu .menulist li a::before,
  #column1 #rmenu .menulist .l2 a::before,
  #column1 #rmenu .menulist .l3 a::before {
	border-left-width: 7px;
	left: 0;
	top: 6px;
  }
  #column1 #menu .menulist .l2 a::before,
  #column1 #menu .menulist .l3 a::before,
  #column1 #rmenu .menulist .l2 a::before,
  #column1 #rmenu .menulist .l3 a::before {
	border: 4px solid transparent;
	border-left: 7px solid #047ab7;
	height: auto;
	left: 0;
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-webkit-transform: rotate(0);
	transform: rotate(0);
	top: 6px;
	width: auto;
  }
  #column1 #menu .menulist .l2 a::after,
  #column1 #menu .menulist .l3 a::after,
  #column1 #rmenu .menulist .l2 a::after,
  #column1 #rmenu .menulist .l3 a::after {
	display: none;
  }
  #column1 ul#newEntry, #column1 ul#entryarchive {
	overflow: hidden;
	padding: 10px 19px 0;
  }
  #column1 ul#newEntry li, #column1 ul#entryarchive li {
	border: none;
	float: left;
	font-size: 13px;
	margin: 0 20px 10px 0;
	padding: 0 0 0 14px;
  }
  #column1 ul#newEntry li::before, #column1 ul#entryarchive li::before {
	border-left-width: 7px;
	left: 0;
	top: 6px;
  }
  #column1 #categorylist .thumb {
	float: left;
	margin: 0 20px 0 0;
  }
  #column1 #categorylist .thumb img {
	display: block;
	max-width: 200px;
  }
  #column1 #categorylist .more {
	float: right;
  }
  #column1 #categorylist .more a {
	width: 188px;
  }
  #column1 .rank .rank-inner {
	margin-top: 10px;
  }
  #column1 .rank .float-l,
  #column1 .rank .float-r {
	max-width: 200px;
	float: left;
  }
  #column1 .rank .float-l img,
  #column1 .rank .float-r img {
	margin: 0 10px 15px 0;
  }
  #column1 .rank .rank-table {
	clear: both;
	padding: 0 1px;
	margin: 15px 0;
  }
  #column1 .rank .more{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
  }
  #column1 .rank .more span{
	width:46%;
	margin-left:2%;
	margin-right:2%;
  }
}
@media screen and (min-width: 1000px) {
  #column1 #menu .menulist .l2 a:hover::before,
  #column1 #menu .menulist .l3 a:hover::before,
  #column1 #rmenu .menulist .l2 a:hover::before,
  #column1 #rmenu .menulist .l3 a:hover::before {
	border-left-color: #3598d9;
  }
  #column1 .rank .float-l img,
  #column1 .rank .float-r img {
	margin: 0 15px 20px 0;
  }
  #column1 .rank .rank-table {
	margin: 22px 0;
  }

}
/*
==================================================
２カラムレイアウト
==================================================
*/
@media screen and (min-width: 768px) {
  #column2 #main {
	width: 68%;
  }
  #column2 #menu {
	width: 30%;
  }
  #column2 #menu .menulist li a,
  #column2 #rmenu .menulist li a {
	font-size: 13px;
	padding: 16px 12px 16px 29px;
  }
  #column2 #menu .menulist li a::before,
  #column2 #rmenu .menulist li a::before {
	border-left-width: 7px;
	left: 15px;
	top: 22px;
  }
  #column2 #menu .menulist .l2 a::before, #column2 #menu .menulist .l2 a::after,
  #column2 #menu .menulist .l3 a::before,
  #column2 #menu .menulist .l3 a::after,
  #column2 #rmenu .menulist .l2 a::before,
  #column2 #rmenu .menulist .l2 a::after,
  #column2 #rmenu .menulist .l3 a::before,
  #column2 #rmenu .menulist .l3 a::after {
	top: 22px;
  }
  #column2 #menu .menulist .l2 a,
  #column2 #rmenu .menulist .l2 a {
	padding-left: 50px;
  }
  #column2 #menu .menulist .l2 a::before,
  #column2 #rmenu .menulist .l2 a::before {
	left: 30px;
  }
  #column2 #menu .menulist .l2 a::after,
  #column2 #rmenu .menulist .l2 a::after {
	left: 34px;
  }
  #column2 #menu .menulist .l3 a,
  #column2 #rmenu .menulist .l3 a {
	padding-left: 60px;
  }
  #column2 #menu .menulist .l3 a::before,
  #column2 #rmenu .menulist .l3 a::before {
	left: 40px;
  }
  #column2 #menu .menulist .l3 a::after,
  #column2 #rmenu .menulist .l3 a::after {
	left: 44px;
  }
  #column2 ul#newEntry li, #column2 ul#entryarchive li {
	font-size: 13px;
	padding: 14px 12px 14px 29px;
  }
  #column2 ul#newEntry li::before, #column2 ul#entryarchive li::before {
	border-left-width: 7px;
	left: 15px;
	top: 20px;
  }
  #column2 #categorylist .thumb {
	float: left;
	margin: 0 20px 0 0;
  }
  #column2 #categorylist .thumb img {
	display: block;
	max-width: 200px;
  }
  #column2 #categorylist .more {
	float: right;
  }
  #column2 #categorylist .more a {
	width: 188px;
  }
  #column2 .rank .float-l img,
  #column2 .rank .float-r img {
	margin: 0 0 15px;
  }
}
@media screen and (min-width: 1000px) {
  #column2 #main {
	width: 660px;
  }
  #column2 #menu {
	width: 300px;
  }
  #column2 #menu .menulist li:hover,
  #column2 #rmenu .menulist li:hover {
	background-color: #eceff1;
	border-bottom-color: #eceff1;
  }
  #column2 #menu .menulist li a,
  #column2 #rmenu .menulist li a {
	padding: 16px 12px 16px 35px;
  }
  #column2 #menu .menulist li a::before,
  #column2 #rmenu .menulist li a::before {
	left: 19px;
  }
  #column2 #menu .menulist .l2 a,
  #column2 #rmenu .menulist .l2 a {
	padding-left: 54px;
  }
  #column2 #menu .menulist .l2 a::before,
  #column2 #rmenu .menulist .l2 a::before {
	left: 34px;
  }
  #column2 #menu .menulist .l2 a::after,
  #column2 #rmenu .menulist .l2 a::after {
	left: 38px;
  }
  #column2 #menu .menulist .l3 a,
  #column2 #rmenu .menulist .l3 a {
	padding-left: 64px;
  }
  #column2 #menu .menulist .l3 a::before,
  #column2 #rmenu .menulist .l3 a::before {
	left: 44px;
  }
  #column2 #menu .menulist .l3 a::after,
  #column2 #rmenu .menulist .l3 a::after {
	left: 48px;
  }
  #column2 ul#newEntry li, #column2 ul#entryarchive li {
	background-color: #fff;
	border-top: 3px solid #eee;
	padding: 14px 12px 14px 35px;
  }
  #column2 ul#newEntry li:first-child, #column2 ul#entryarchive li:first-child {
  	border-top: 5px solid #eee;
  }
  #column2 ul#newEntry li:last-child, #column2 ul#entryarchive li:last-child {
  	border-bottom: 7px solid #eee;
  }
  #column2 ul#newEntry li::before, #column2 ul#entryarchive li::before {
	left: 19px;
  }
  #column2 .rank .rank-inner {
	margin-top: 10px;
  }
  #column2 .rank .float-l,
  #column2 .rank .float-r {
	max-width: 200px;
	float: left;
  }
  #column2 .rank .float-l img,
  #column2 .rank .float-r img {
	margin: 0 15px 20px 0;
  }
  #column2 .rank .rank-table {
	clear: both;
	padding: 0 1px;
	margin: 22px 0;
  }

}
/*
==================================================
３カラムレイアウト
==================================================
*/
@media screen and (min-width: 768px) {
  #column3 #layoutbox {
	float: left;
	width: 76.5%;
  }
  #column3 #layoutbox::after {
	clear: both;
	content: '';
	display: block;
  }
  #column3 #main {
	width: 69.07895%;
  }
  #column3 #menu {
	width: 28.94737%;
  }
  #column3 #rmenu {
	float: right;
	width: 22%;
  }
  #column3 #menu .menulist li a,
  #column3 #rmenu .menulist li a {
	font-size: 13px;
	padding: 16px 12px 16px 29px;
  }
  #column3 #menu .menulist li a::before,
  #column3 #rmenu .menulist li a::before {
	border-left-width: 7px;
	left: 15px;
	top: 22px;
  }
  #column3 #menu .menulist .l2 a::before, #column3 #menu .menulist .l2 a::after,
  #column3 #menu .menulist .l3 a::before,
  #column3 #menu .menulist .l3 a::after,
  #column3 #rmenu .menulist .l2 a::before,
  #column3 #rmenu .menulist .l2 a::after,
  #column3 #rmenu .menulist .l3 a::before,
  #column3 #rmenu .menulist .l3 a::after {
	top: 22px;
  }
  #column3 #menu .menulist .l2 a,
  #column3 #rmenu .menulist .l2 a {
	padding-left: 50px;
  }
  #column3 #menu .menulist .l2 a::before,
  #column3 #rmenu .menulist .l2 a::before {
	left: 30px;
  }
  #column3 #menu .menulist .l2 a::after,
  #column3 #rmenu .menulist .l2 a::after {
	left: 34px;
  }
  #column3 #menu .menulist .l3 a,
  #column3 #rmenu .menulist .l3 a {
	padding-left: 60px;
  }
  #column3 #menu .menulist .l3 a::before,
  #column3 #rmenu .menulist .l3 a::before {
	left: 40px;
  }
  #column3 #menu .menulist .l3 a::after,
  #column3 #rmenu .menulist .l3 a::after {
	left: 44px;
  }
  #column3 ul#newEntry li, #column3 ul#entryarchive li {
	font-size: 13px;
	padding: 14px 12px 14px 29px;
  }
  #column3 ul#newEntry li::before, #column3 ul#entryarchive li::before {
	border-left-width: 7px;
	left: 15px;
	top: 20px;
  }
  #column3 .blog .thumb img {
	max-width: 150px;
  }
  #column3 .rank .float-l img,
  #column3 .rank .float-r img {
	margin: 0 0 15px;
  }
  #column3 .rank .more span {
	width:100%;
	margin:8px 0;
  }
}
@media screen and (min-width: 1000px) {
  #column3 #layoutbox {
	width: 760px;
  }
  #column3 #main {
	width: 520px;
  }
  #column3 #menu {
	width: 220px;
  }
  #column3 #rmenu {
	width: 220px;
  }
  #column3 #menu .menulist li:hover,
  #column3 #rmenu .menulist li:hover {
	background-color: #eceff1;
	border-bottom-color: #eceff1;
  }
  #column3 #categorylist .thumb {
	float: left;
	margin: 0 20px 0 0;
  }
  #column3 #categorylist .thumb img {
	display: block;
	max-width: 200px;
  }
  #column3 #categorylist .more {
	float: right;
  }
  #column3 #categorylist .more a {
	width: 188px;
  }
  #column3 .blog .thumb img {
	max-width: 160px;
  }
  #column3 .rank .rank-inner {
	margin-top: 10px;
  }
  #column3 .rank .float-l,
  #column3 .rank .float-r {
	max-width: 200px;
	float: left;
  }
  #column3 .rank .float-l img,
  #column3 .rank .float-r img {
	margin: 0 10px 20px 0;
  }
  #column3 .rank .rank-table {
	clear: both;
	padding: 0 1px;
	margin: 22px 0;
  }
  #column3 .rank .more {
	display:block;
  }
}


/*
==================================================
レイアウト切り替え用スタイル
==================================================
*/

#headerbox {
  height: auto !important;
}
@media screen and (max-width: 767px) {
  #main,
  #menu,
  #rmenu,
  #layoutbox {
	float: none !important;
  }
}
@media screen and (min-width: 768px) {
  #top .inner {
  }
  #topsubmenu {
	top: 8px;
  }
}
@media screen and (min-width: 1000px) {
  #top .inner {
  }
  #topsubmenu {
	top: 18px;
  }
}
#contents #main .txt-border {
  background-position: left 12px;
  margin: 8px 0;
  padding: 12px !important;
  position: relative;
  z-index: 0;
}
#contents #main .txt-border::before {
  border: 12px solid #fff;
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
#contents #main .txt-grayback {
  background-color: #e6e6e6;
  margin: 8px 0;
}
#contents #main .txt-colorback {
  background-color: #ffe591;
  margin: 8px 0;
}
#contents #main .txt-frame,
#contents #main .txt-colorframe {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin: 8px 0;
}
#contents #main .txt-rndbox {
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  margin: 8px 0;
}
#contents #main .txt-decbox1,
#contents #main .txt-decbox2 {
  margin: 8px 0;
}
#contents #main .txt-decbox1 .top h3,
#contents #main .txt-decbox2 .top h3 {
  box-shadow: none;
}
#contents #main .txt-decbox1 .top h3 span,
#contents #main .txt-decbox2 .top h3 span {
  display: block;
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  #contents #main .txt-border {
	margin: 0 0 20px;
  }
  #contents #main .txt-border::before {
	display: none;
  }
  #contents #main .txt-grayback,
  #contents #main .txt-colorback,
  #contents #main .txt-frame,
  #contents #main .txt-colorframe,
  #contents #main .txt-rndbox {
	margin: 0 0 20px;
  }
  #contents #main .txt-decbox1,
  #contents #main .txt-decbox2 {
	margin: 0 0 20px;
  }
  #contents #main .txt-decbox1 .body h3,
  #contents #main .txt-decbox2 .body h3 {
	margin: 20px 0 !important;
  }
  #contents #main .txt-frame .top {
	background-image: url("img/frame_t.gif"), url("img/frame_t.gif"), url("img/frame_t.gif");
	background-position: left top, 893px top, 1786px top;
  }
  #contents #main .txt-frame .bottom {
	background-image: url("img/frame_b.gif"), url("img/frame_b.gif"), url("img/frame_b.gif");
	background-position: left top, 893px top, 1786px top;
  }
  #contents #main .txt-colorframe .top {
	background-image: url("img/colorframe_t.gif"), url("img/colorframe_t.gif"), url("img/colorframe_t.gif");
	background-position: left top, 893px top, 1786px top;
  }
  #contents #main .txt-colorframe .bottom {
	background-image: url("img/colorframe_b.gif"), url("img/colorframe_b.gif"), url("img/colorframe_b.gif");
	background-position: left top, 893px top, 1786px top;
  }
  #contents #main .txt-rndbox .top {
	background-image: url("img/round_t.gif"), url("img/round_t.gif"), url("img/round_t.gif");
	background-position: left top, 885px top, 1770px top;
  }
  #contents #main .txt-rndbox .bottom {
	background-image: url("img/round_b.gif"), url("img/round_b.gif"), url("img/round_b.gif");
	background-position: left top, 885px top, 1770px top;
  }
  #contents #main .txt-decbox1 .top {
	background-image: url("img/decbox_t.gif"), url("img/decbox_t.gif"), url("img/decbox_t.gif");
	background-position: left top, 850px top, 1700px top;
  }
  #contents #main .txt-decbox1 .bottom {
	background-image: url("img/decbox_b.gif"), url("img/decbox_b.gif"), url("img/decbox_b.gif");
	background-position: left top, 850px top, 1700px top;
  }
  .txt-decbox2 {
	position: relative;
	z-index: 0;
  }
  .txt-decbox2::before, .txt-decbox2::after {
	background-image: url("img/decbox2_r.gif");
	background-position: left bottom;
	background-repeat: repeat-y;
	bottom: 0;
	content: '';
	position: absolute;
	top: 0;
	width: 880px;
	z-index: -2;
  }
  .txt-decbox2::before {
	right: 900px;
  }
  .txt-decbox2::after {
	right: 1780px;
  }
  .txt-decbox2 .body {
	z-index: 1;
  }
  .txt-decbox2 .top,
  .txt-decbox2 .bottom {
	position: relative;
  }
  .txt-decbox2 .top::before, .txt-decbox2 .top::after,
  .txt-decbox2 .bottom::before,
  .txt-decbox2 .bottom::after {
	background-repeat: no-repeat;
	content: '';
	height: 16px;
	position: absolute;
	z-index: -1;
  }
  .txt-decbox2 .top::before,
  .txt-decbox2 .bottom::before {
	right: 900px;
  }
  .txt-decbox2 .top::before, .txt-decbox2 .top::after {
	background-image: url("img/decbox2_tr.gif");
	background-position: left top;
	top: 0;
	width: 890px;
  }
  .txt-decbox2 .top::after {
	right: 1790px;
  }
  .txt-decbox2 .bottom::before, .txt-decbox2 .bottom::after {
	background-image: url("img/decbox2_br.gif");
	background-position: left bottom;
	bottom: 0;
	width: 730px;
  }
  .txt-decbox2 .bottom::after {
	right: 1630px;
  }
}
#main .txt-frame, #main .txt-colorframe,#main .txt-rndbox, #main .txt-decbox1, #main .txt-decbox2{
	padding: 0 !important;
}
body{

font-size: 16px;
}
//#header{ height: 0px;
	display:none;; }
#headerbox {display:none; }
#header h2 ,#header .title {
font-size: 18px;
}
#header h2 a, #header h2 a:visited,#header .title a,#header .title a:visited, #top .title a, #top .title a:visited{}
#headertext {
font-size: 14px;
}

@media screen and (min-width: 768px) {
#main{ float: right; }
#column2 #menu,#column3 #menu{ float: left; }
#column3 #rmenu { float: right; }
#column3 #layoutbox { float: left; }
#column3 #main { float: right; }
}
#header{display:none;}

/* ***写真並べ追加*** */

.card {
  width: relative; //350px;
  display: -ms-flexbox;
  display:flex;
  -ms-flex-direction:colum;
  flex-direction:colum;
  min-width: 0;
  background: #fff;
  background-clip:border-box;
  border:1px solid rgba(0,0,0,0.125);
  border-radius: 5px;
  box-shadow: 0 2px 5px #ccc;
}
.card-img {
    padding-top: (3 / 4 * 100%);// 3 / 4の部分はお好みで調整
    position: relative;
    img {
      position: absolute;
      top: 0;
      left: 0;
      width: 90%;
      height: 90%;
      object-fit: cover;//画像を見切れさせたくない場合はcontain
    }
  }

.card-content {
  padding: 18px;
}
.card-title {
  font-size: 18px;
  margin-bottom: 18px;
  text-align: center;
  color: #333;
}
.card-text {
  color: #777;
  font-size: 14px;
  line-height: 1.5;
}
.card-link {
  text-align: center;
  border-top: 1px solid #eee;
  padding: 20px;
}
.card-link a {
  text-decoration: none;
  color: #0bd;
  margin: 0 10px;
}
.card-link a:hover {
  color: #0090aa;
}

.card-body{
-ms-flex:1 1 auto;
flex: 1 1 auto;
padding: 1.25rem;
}
.card-subtitle{
margin-top: -0.375rem;
margin-bottom: 0;
}
.card-text:last-child{
margin-botto: 0;
}

/* ***   写真並べここまで *** */

/*  ***  続きを読むボタンをCSSで実装する     ***   */
.grad-btn {
  /*.grad-btnのCSSは表示/非表示の動作には関係なし。*/
 margin: 10px;/*ボタンの外側余白*/
    padding: 30px;/*ボタンの内側余白*/
    width:50%;/*ボタンの幅*/
    text-align: center;/*文字の位置*/
    transition: 0.5s;
    background-size: 200% auto;
    color: white;/*文字の色*/
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;/*ボタンの角の形*/
    display: block;
}
/*ボタン１の色*/
.grad-btn{background-image: linear-gradient(to right, #00d2ff 0%, #3a7bd5 51%, #00d2ff 100%)}
.grad-btn:hover { background-position: right center; }

.grad-btn::before {
  content: "もっと見る↓"
}
.grad-item {
  position: relative;
  overflow: hidden;
  height: 200px; /*隠した状態の高さ*/
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  content: "";
}
.grad-trigger {
  display: none; /*チェックボックスは常に非表示*/
}
.grad-trigger:checked ~ .grad-btn::before {
  content: "閉じる" /*チェックされていたら、文言を変更する*/
}
.grad-trigger:checked ~ .grad-item {
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad-trigger:checked ~ .grad-item::before {
  display: none; /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}
/*   ***  続きを読むボタンをCSSで実装する  ここまで   ***   */

/*   ***  囲み枠   ***   */
.flame01{
position: relative;
margin: 2em auto;
padding: 1em;
width: 50%;
border: solid 3px #4a41ad;
}
.flame01 .flame01-title{
position: absolute;
display: inline-block;
top: -24px;//枠のタイトルの位置
left: -3px;//枠のタイトルの位置
padding: 0 9px;
height: 20px;//25
line-height: 10px;//25
vertical-align: middle;
font-size: 16px;//17
background: #4a41ad;
color: #222222;
font-weight: bold;
border-radius: 5px 5px 0 0;
}
.flame01 p {
padding: 10px 20px;
margin: 0;
}
.flame02 {
margin: 0.5em auto;
padding: 0.5em;
width: 90%;
color: #000;
background-color: #f5f5f5;
border: 1px solid #ccc;
}
/*   ***  囲み枠  終わり ***   */
