@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: 8px 0 0 6px;
  background: #98623c;/*灰茶色*/
}
/*【タイトル】*/
h2 {
  font-size: 15px;
/*  font-weight:600;*/
  color: black;
  height: 17px;
  letter-spacing: 1px;
  margin-top: 15px;
  padding: 3px 0 0 6px;
  text-align: left;
  background: #d8a373;/*伽羅色*/
}
/*【タイトル補足】*/
h3 {
  font-size: 14px;
  color: maroon;
/*  color:  #0d0015;漆黒*/
  height: 17px;
  letter-spacing: 0;
  margin-top: 4px;
/*  padding: 1px 0 0 0;*/
  text-align: right;
  background: blanchedalmond;
}
/*【ブログ本文】*/
h4 {
  font-size: 12px;
  color: #191970;
  margin-bottom:0.1em;
}
/* ★ブログ文(2)★ */
h5 {
  font-size: 11px;
  margin-bottom: 0.25em;
  padding-left: 5px;
}
/*【脚注】*/
h6 {
  font-size: 11px;
  color: sienna;
  line-height: 1.5;
}
/*【写真下説明文】*/
h7 {
  font-size: 9px;
  color: #5383c3;/*薄群青*/
  line-height: 1.3;
}
/* ★説明･補足★ */
h8 {
  font-size: 12px;
  font-weight: 700;
  background: #fae9fd;
}
/* 説明 */
h9{
  font-size: 15px;
  color: maroon;
}
/* ★★ */
h10{
  font-size: 18px;
  font-weight: 700;
  color: blanchedalmond;
}
p {
  margin: 0 0 0.4em 0;
}
img {
  vertical-align:bottom;
}
em {
  font-weight: bold;
}

/*◆ エリア&テキスト ◆*/
.wrapper {
  max-width: 360px;
  margin: 0 auto 0 auto;
}
.blog-tx {
  box-sizing: border-box;
  position:relative;
  width:100%;
  font-size:13px;
  line-height:1.6;
  color: navy;
  text-align: left;
  padding: 0 4px 0 6px;
/*  border:1px dotted green;*/
}
.txt-deco {
  text-decoration:none;
}

/*◆ navi top_menu（Fx）◆*/
.navFx {
  position:fixed;
  width: 360px;
  background:#00552e;/*深緑*/
  font-size:0.95rem;
  padding: 8px 0 0 0;
  top:0;
  z-index:10;
}
.navFx ul {
  position:relative;
  float: left;
  left:50%;
  margin:0;
}
.navFx li {
  position:relative;
  left:-50%;
  float:left;
  list-style:none;
  margin:0;
  padding:0 12px;
}
.navFx li a {
  color: white;
  text-decoration: none;
}
.navFx li a:hover {
  color: tomato;
  text-decoration: none;
  background: #e0ebaf;/*わかめいろ*/
}

/*◆ 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;
}

/*◆ navEv（Event_Menu）◆*/
.navEv {
  overflow: hidden;
  position: relative;
}
.navEv ul {
  margin: 0;
  padding:0;
}
.navEv li {
  list-style: none;
  font-size:15px;
  letter-spacing: 1px;
  margin-bottom: 3px;
  padding-left: 40px;  
  text-decoration: none;
}
.navEv li a {
  display: block;
  color: maroon;
/*  color: lightsalmon;*/
  text-decoration:none;
}
.navEv li a:hover {
  color: blue;
  background: aliceblue;
}

/*◆ split（画面分割）◆*/
@media screen and (max-width:960px) {
.split{
  display: block;
}
.split-item{
  display: block;
  width: auto;
}
.split-left__inner{
  position: inherit;
  width: auto;
}
}
.split{
  display: table;
  width: 100%;    
}
.split-item{
  display: table-cell;
  padding: 0 0 0 0;
/*  width: 50%;*/
}
.split-left{
  color:#00552e;/*深緑*/
  background:#d6e9ca;/*白緑*/
  position:relative;
  width: 13%;
}
.split-left__inner{
  height: 810px;
  position: fixed;
/*  border: 1px solid blue;★*/
}
.split-right__inner{
  height: 810px;
/*  border: 1px dotted blue;★*/
}

/*=== container-flex ===*/
.container-flex {
  display:flex;
  justify-content:space-around;
}
.flex-itemL {
  text-align: left;
  width:120px;
/*  border: 2px dotted red;★*/
}
.flex-itemM{
  text-align:left;
  line-height:1.6;
  width:auto;
/*  border: 2px dotted blue;★*/
}
.flex-itemR {
  text-align:left;
  font-size: 1.3rem;
  line-height:1.5;
  width:90px;
/*  border: 2px dotted green;★*/
}

/*=== ３カラム ===*/
.content section {
  border-radius: 0;
}
.content {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
.content section {
  margin: 0;
  padding: 10px 0 4px 15px;
  font-size:1.7rem;
}
section.column1 {width:4%; background: white;}
section.column2 {width:92%; background: white;}
section.column3 {width:4%; background: white;}

/*=== 外部リンク写真(g-link.html) ===*/
.img_href {
  width: 180px;
  height: 60px;
  object-fit: contain;
}

/*=== 写真回り込み解除 ===*/
.clear {
  clear: both;
}

/*=== 中央寄せ ===*/
.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 */