@charset "UTF-8";

/*～～～～～～～～～～～～～～～～～～～
 □  @   ＠ルール（全体の設定） 
 □  *{  全称セレクタ（すべての要素に適用）
 □  .{  classセレクタ（クラス名の要素にだけ適用）
 □  #{  idセレクタ（id属性を持つ要素にだけ適用）
 □  margin: padding: ㊤ ㊨ ㊦ ㊧
 ～～～～～～～～～～～～～～～～～～～*/
/*■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{vertcal-align:middle}

/*◆一般・共通設定◆*/
body {
font-size:15px;line-height:1.6;font-family:"メイリオ",Meiryo,"Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
header {
  width:100%;
  height: 250px;
  position:relative;
}
main {
  width:100%;
}
a {
/*  color: paleturquoise;*/
/*  color: royalblue;*/
  color: blue;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:link, a:visited {
  text-decoration: none;
}
a:hover, a:active {
  color: tomato;
}

/* ★htmlタイトル★ */
h1 {
  font-size: 12px;
  color:white;
  background:white;
}
/* ★タイトル★ */
h2 {
  font-size: 16px;
/*  font-weight:600;*/
  color: white;/*白*/
  height: 22px;
  letter-spacing: 1px;
  margin-top: 16px;
  padding: 0 0 0 6px;
  text-align: left;
  background:#007bbb;/*紺碧*/
/*  border:1px solid #4c6cb3;/*群青色*/*/
}
/* ★タイトル補足★ */
h3 {
  font-size: 15px;
  color: blue;
  font-weight: 500;
  height: 20px;
  letter-spacing: 1px;
  margin-top: 5px;
  padding: 0 0 0 5px;
  background:#c1e4e9;/*白藍*/
}
/* ★ブログ本文★ */
h4 {
  font-size: 14px;
  color: midnightblue;
  margin-bottom:0.1em;
}
/* ★補助文★ */
h5 {
  font-size: 12px;
  color: blueviolet;
  margin-bottom:0.5em;
  padding-left:10px;
}
/*【脚注】*/
h6 {
  font-size: 12px;
  color: royalblue;
  line-height: 1.3;
}
/* ★写真下説明文★ */
h7 {
  font-size: 11px;
  color: mediumblue;
/*  line-height: 100%; */
}
/*★ news-scroll ★*/
h8 {
  font-size: 11px;
  color: midnightblue;
  background:#ebf6f7;/*藍白*/
}
/*★小文字補足文★*/
h10 {
  font-size: 9px;
  color: mediumblue;
  background: ghostwhite;
}
p {
  margin: 0 0 0.4em 0;
}
img {
  vertical-align:bottom;
  margin-bottom: 2px;
}
em {
  font-weight: bold;
}

/*◆エリア&テキスト◆*/
/*★wrapper★*/
.wrapper {
  margin: 0 auto 0 auto;
  max-width: 360px;
}

/*★ navH (menu)【Horizon】★*/
.navH {
  width: 360px;
  font-size: 14px;
  background: #274a78;/*青藍*/
  padding-top: 12px;
  border-bottom: 2px solid  lightsteelblue;
  top:0;
}
.navH ul {
  position:relative;
  text-align: left;
/*  margin-left: 8px;*/
}
.navH li {
  display: inline;
/*  padding: 0 2x;*/
  list-style-type: none;
}
.navH a {
  color: white;
  padding: 4px 4px 0 0;
  text-decoration: none;
}
.navH a:hover {
  color: midnightblue;
/*  font-weight: bold;*/
  text-decoration:none;
  border-radius: 12px 12px 0 0;
  background: lightskyblue;
}

/*★ブログ記事（<h4></h4>）★*/
.blog-tx {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  line-height: 1.5;
  color: navy;
  text-align: left;
  padding: 0 4px 0 6px;
/*  border: 1px dotted cyan;*/
}
/*★リンク名表示★*/
.d-link {
  font-size: 0.86em;
  color: blue;
  background: linear-gradient(transparent 40%, lightcyan 40%);
}

/*★中央寄せ★*/
.imgC {
  clear:both;
  overflow:hidden;
  text-align:center;
/*  border:2px dotted skyblue;*/
/*  border:1px dotted skyblue;■*/
}
/*★左寄せ★*/
.imgL {
  clear:both;
  overflow:hidden;
/*  border:2px dotted skyblue;*/
}
.imgL img {
  float:left;
  margin-right:15px;
/*  border:2px dotted red;■*/
/*  border-radius:5px;*/
}
/*★右寄せ★*/
.imgR {
  clear:both;
  overflow:hidden;
/*  border:2px dotted skyblue;*/
/*  border:1px dotted skyblue;■*/
}
.imgR img {
  float:right;
  margin-left:10px;
/*  border:2px dotted red;■*/
/*  border-radius:5px;*/
}

/*★grid container★*/
.grid-c {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
/*  justify-content:space-between;*/
  background-color:white;
/*  border: 1px dotted blue;*/
}
.grid-c section {
  margin:0;
  padding:0;
  font-size: 8px;
  background-color: white;
/*  border: 1px dotted cyan;*/
}
section.item-08{width: 84px;}
section.item-10{width:100px;}
section.item-11{width:116px;}
section.item-12{width:128px;}


/*- EoF -*/