@charset "UTF-8";

/*～～～～～～～～～～～～～～～～～～～～
 □  @   ＠ルール（全体の設定） 
 □  *{  全称セレクタ（すべての要素に適用）
 □  .{  classセレクタ（クラス名の要素に適用）
 □  #{  idセレクタ（id属性を持つ要素にひとつだけ適用）
 □  margin: padding: ㊤ ㊨ ㊦ ㊧
 ～～～～～～～～～～～～～～～～～～～～*/
/*■max-width=360px■*/

/*=== CSSリセット ===*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*■ 一般・共通設定 ■*/
body {
  font-size:14px;
  font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  line-height:1.2;
}
a {
  color: midnightblue;
  text-decoration: none;
}
a:hover {
  color: tomato;
}
/* ★htmlタイトル★ */
h1 {
  font-size: 15px;
  color: white;
  height: 20px;
  letter-spacing: 1px;
  padding: 4px 0 0 6px;
  background: #98623c;/*灰茶色*/
}
/* ★タイトル★ */
h2 {
  font-size: 12px;
/*  font-weight:600;*/
  color: white;/*白*/
  height: 15px;
  letter-spacing: 1px;
  padding: 3px 0 0 6px;
  text-align: left;
  background: #d8a373;/*伽羅色*/
}
/* ★タイトル補足★ */
h3 {
  font-size: 11px;
  color: #0d0015;/*漆黒*/
  height: 10px;
  letter-spacing: 0;
  margin: 1px 0 0 0;
  padding: 1px 0 0 0;
  text-align: right;
  background:#d6e9ca;/*白緑*/
}
/* ★ブログ本文★ */
h4 {
  font-size: 16px;
  color: #191970;
  margin-bottom:0.1em;
}
/* ★ブログ文(2)★ */
h5 {
  font-size: 11px;
  margin-bottom: 0.25em;
  padding-left: 3px;
}
h6 {
  font-size: 12px;
  padding-left: 2px;
}
/* ★説明･補足★ */
h7 {
  font-size: 12px;
  font-weight: 700;
  background: #fae9fd;
}
h9{
  font-size: 5px;
  color: red;
  height: 6px;
}
/* ★区切り線★ */
h10{
  font-size: 18px;
  font-weight: 700;
  color: blanchedalmond;
}
p {
  margin: 0 0 0.4em 0;
}
img {
  vertical-align:bottom;
}
em {
  font-weight: bold;
}
strong {
  font-weight: bold;
/*  color: tomato; */
}
pre {
	margin:1em 0;
	padding:1em;
}
/*★ footer ★*/
footer {
  clear:both;
  box-sizing: border-box;
  width: 360px;
  margin:0 auto;
  padding: 2px 0 0 2px;
  font-size:9px;
  text-align:center;
  color: #e8ba6a;
  background: blanchedalmond;
}

/*◆ エリア&テキスト ◆*/
.wrapper {
  max-width: 360px;
  margin: 0 auto 0 auto;
}
/*★ blog-tx ★*/
.blog-tx {
  box-sizing: border-box;
  position: relative;
  width:100%;
  font-size: 1em;
  line-height:1.6;
  color: navy;
  text-align: left;
  padding: 0 4px 0 6px;
/*  border: 1px dotted cyan;*/
}
/*★ blog-menu ★*/
.blog-menu {
  position: relative;
  width:100%;
  font-size: 12px;
  line-height:1.3;
  color: saddlebrown;
  padding: 0 4px 0 6px;

}
/*★ txt-deco ★*/
.txt-deco {
  text-decoration:none;
}

/*◆ naviHz（横固定メニュー）◆*/
.navHz {
  position: fixed;
  width: 360px;
  background: #783c1d;/*唐茶*/
  font-size:12px;
  padding: 12px 0 2px 0;
  top:0;
  z-index:10;
}
.navHz ul {
  position: relative;
  float: left;
  left: 50%;
  margin:0;
}
.navHz li {
  position:relative;
  left:-50%;
  float:left;
  list-style:none;
  padding: 2px 9px 0 0;
/*  border: 1px dotted lightblue;*/
}
.navHz li a {
  color: white;
  text-decoration: none;
}
.navHz li a:hover {
  color: black;
  text-decoration: none;
  border-radius: 9px 9px 0 0;
  background: wheat;
}

/*★ 外部リンクメニュー ★*/
.navV {
  position: relative;
  overflow: hidden;
}
/* .navV ul {
  margin: 0;
  padding:0;
} */
.navV li {
  list-style: none;
  font-size: 11px;
  padding: 0 0 3px 2px;
  text-decoration:none;
}
.navV li a {
  display: block;
  color: maroon;
  text-decoration: none;
}
.navV li a:hover {
  color: blue;
  background: aliceblue;
}
/*
 .navV li a:visited {
  color: darksalmon;
} */

/*◆ ニューススクロール ◆*/
.news-scroll {
  display: block;
  width: 97%;
  max-height: 124px;
  overflow-y: auto;
  margin: 8px 0 36px 4px;
  list-style-type: none;
}
.news li a:hover {
  color:orangered;
  text-decoration:none;
}

/*◆ スライドショー ◆*/
.slide {
	position:relative;
/*	width: 100%;
	width: 360px; */
	overflow:hidden;
/*	margin-bottom:2px; */
}
.slideInner {
	list-style:none;
	margin:0 0 1px 0;
	padding:0;
}
.slideInner li {
	position:absolute;
	width: 100%;
	background: ivory;
	margin:0;
	padding:0;
}
.slideInner li img {
	width:100%;
}
.slidePrev {
	position:absolute;
	display:block;
	width:40px;
	height:40px;
	left:2px;
	cursor:pointer;
	z-index:100;
}
.slideNext {
	position:absolute;
	display:block;
	width:40px;
	height:40px;
	right:-14px;
	cursor:pointer;
	z-index:100;
}
.controlNav {
	position:relative;
	float:left;
	left:50%;
}
.controlNav span {
	position:relative;
	left:-50%;
	float:left;
	margin:5px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:5px;
	width:7px;
	height:7px;
	overflow:hidden;
	background: lavender;
	text-indent:-9999px;
	vertical-align:middle;
}
.controlNav span:hover {
	background: hotpink;
	cursor:pointer;
}
.controlNav span.current {
	background: plum;
}

/*◆ container-flex ◆*/
.container-flex {
  display:flex;
  justify-content:space-around;
}
.flex-itemL {
  text-align:left;
  line-height:1.3;
  width: 200px;
  border: 2px dotted blue;
}
.flex-itemM{
  text-align: left;
  width: 60px;
  border: 2px dotted red;
}
.flex-itemR {
  text-align:left;
  font-size: 12px;
  line-height:1;
  width:auto;
  border: 2px dotted green;
}

/*◆ 中央寄せ ◆*/
.imgC {
  clear:both;
  overflow:hidden;
  width:100%;
/*  margin-bottom:50px; */
  text-align:center;
/*  border:1px solid skyblue;★*/
}

/*◆ 左寄せ ◆*/
.imgL {
	clear:both;
	overflow:hidden;
	margin-bottom:2px;
}
.imgL img {
	float:left;
	margin:0 0.2em 0 0.2em;
	border-radius:5px;
/*  border:1px dotted yellow;★*/
}

/*◆ 右寄せ ◆*/
.imgR {
	clear:both;
	overflow:hidden;
	margin-bottom:2px;
}
.imgR img {
	float:right;
	margin:0 0.2em 0 0.2em;
	border-radius:5px;
/*  border:1px dotted yellow;★*/
}

/*-- EoF --*/