@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}

/*■365日記｜基準css■*/

/*◆一般・共通設定◆*/
body {
  background-color: #fff4f4;
}
a {
  color: darkred;
  text-decoration: none;
}
a:hover {
  color: tomato;
  background-color: mistyrose;
}

/* ★htmlタイトル★ */
h1 {
  font-size: 8px;
  color: white;
/*  font-weight: bold;*/
  background: white;
}
/* ★タイトル★ */
h2 {
  font-size: 16px;
/*  font-weight:600;*/
  color: white;/*白*/
  height: 20px;
  letter-spacing: 1px;
  margin-top: 16px;
  padding: 0 0 0 6px;
  text-align: left;
  background:#007bbb;/*紺碧*/
/*  border:1px solid #4c6cb3;/*群青色*/*/
}
/* ★タイトル補足★ */
h3 {
  font-size: 18px;
  color: purple;
  font-weight: 600;
  height: 18px;
  letter-spacing: 1px;
  margin-top: 5px;
  padding: 0 0 0 5px;
/*  background:#c1e4e9;白藍*/
}
/* ★ブログ本文★ */
h4 {
  font-size: 15px;
  color: indigo;
  line-height: 1.6;
  padding: 0 0 0 8px;
}
/* ★ブログ文(2)★ */
h5 {
  font-size: 13px;
  color: indigo;
  line-height: 1.5;
  padding-left: 70px;
  text-decoration: none;
}
/* ★ブログ文(3)★ */
h6 {
  font-size: 14px;
  padding: 3px 0 0 10px;
  background: background:#ebf6f7;/*藍白*/
}
/*★  ★*/
h7 {
  font-size: 13px;
  color: midnightblue;
  background:#ebf6f7;/*藍白*/
}
/*★  ★*/
h8 {
  font-size: 12px;
  color: midnightblue;
  background: ;
}
/* ★写真下説明文★ */
h9 {
  font-size: 11px;
  color: lightcoral;
  line-height: 1.2;
}
/*★ 小文字 ★*/
h10 {
  font-size: 8px;
  color: mediumblue;
  line-height: 1.3;
/*  background: ghostwhite;*/
}
p {
  margin: 0 0 0.4em 0;
}
img {
  vertical-align:bottom;
}
em {
  font-weight: bold;
}

/*◆エリア&テキスト◆*/
/*★wrapper★*/
.wrapper {
  margin: 0 auto 0 auto;
  max-width: 360px;
}
.bg-img {
  background-image: url(backgr0.gif);
}

/*★ navH (menu)【Horizon】★*/
.navH {
  width: 360px;
  font-size: 12px;
  background: #274a78;/*青藍*/
  padding: 8px 0 0 0;
  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: 2px 4px 0 4px;
  text-decoration: none;
}
.navH a:hover {
  color: midnightblue;
  text-decoration: none;
  border-radius: 12px 12px 0 0;
  background: lightskyblue;
}

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

/*★中央寄せ★*/
.imgC {
  clear: both;
  overflow: hidden;
  text-align: center;
/*  border: 1px dotted blue;*/
}
/*★左寄せ★*/
.imgL {
  clear: both;
  overflow: hidden;
}
.imgL img {
  float: left;
  margin-right: 4px;
}
/*★右寄せ★*/
.imgR {
  clear: both;
  overflow: hidden;
}
.imgR img {
  float: right;
  margin-left: 4px;
}

/*- EoF -*/