.footer-sitemap {
  display: flex;                  /* 横並び */
  justify-content: space-around;  /* 均等に配置 */
  flex-wrap: wrap;                /* 横幅が足りなければ折り返す */
  padding: 20px;
  background-color: #f2f2f2;
}

.sitemap-title {
  width: 100%;                      /* 横幅いっぱい */
  text-align: center;               /* 中央揃え */
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.sitemap-item {
  margin: 10px;
  text-align: center;
  min-width: 120px;               /* 横幅が狭すぎないように */
  font-size: 16px;
}

.sitemap-item a {
  text-decoration: none;          /* 下線を消す */
  color: #333;                    /* 文字色 */
  transition: color 0.3s;
}

.sitemap-item a:hover {
  color: #007acc;                 /* ホバー時の色 */
}

/* スマホ（幅600px以下）の場合 */
@media (max-width: 600px) {
  .footer-sitemap {
    flex-direction: column;       /* 縦並び */
    align-items: center;          /* 中央揃え */
  }

  .sitemap-item {
    width: 100%;                  /* 幅いっぱいに */
    margin: 5px 0;
  }
}



/* サイド追従目次のデザイン */
.side-toc {
  position: fixed;
  top: 100px;
  right: 0px;
  width: 400px;   /* サイドバーの横幅に合わせる（テーマに応じて調整） */
  max-width: 100%;  /* レスポンシブ対応の保険 */
  max-height: 70vh;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  overflow: hidden;
}

/* 目次タイトル部分（クリックで開閉） */
.side-toc-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f5f5f5;
  cursor: pointer;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.toc-title {
  font-size: 14px;
}

.toggle-text {
  font-size: 12px;
  color: #555;
}


<div class="side-toc-header">
  目次 <span class="toggle-icon">▲</span> <span class="toggle-text"></span>
</div>
  display: flex;
  gap: 4px;              /* アイコンと文字の間隔 */



<div class="side-toc-content">
  <!-- 目次の中身 -->
</div>

}

/* サイド目次の箇条書きマーカーを確実に消す */
.side-toc-content ul,
.side-toc-content ol {
  list-style-type: none !important; /* 強制的に消す */
  padding-left: 0 !important;
  margin-left: 0 !important;
}


/* 目次リスト部分 */
.side-toc-content {
  padding: 10px;
  display: block;  /* 初期状態は表示 */
  max-height: 60vh;
  overflow-y: auto;
}


/* スマホでは非表示 */
@media screen and (max-width: 1023px) {
  .side-toc { display: none; }
}

.toggle-icon, .toggle-text {
  margin-left: 5px;
  font-size: 12px;
  color: #555;
}

.side-toc-header {
  display: flex;
  justify-content: space-between; /* 右端に寄せたい場合 */
  align-items: center;
}



/* メニューの全体ラッパー */
.gmenu {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f5f5f5;

  /* 👇 ここを追加 👇 */
  max-width: 1000px; /* お好みで横幅調整（例: 1000px, 1100pxなど） */
  margin-left: auto;
  margin-right: auto;
}

/* 大カテゴリーのリンク */
.gmenu-item {
  position: relative;
}

.gmenu-item > a {
  display: flex; /* ← 修正ポイント */
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  color: inherit;
  text-decoration: none;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', 'メイリオ', sans-serif;
  font-size: 18px;
  font-weight: bold;
}

/* 疑似リンクをリンクに見せない処理 */
.gmenu-item > a[href="#"] {
  pointer-events: none;
  cursor: default;
  color: inherit;
  text-decoration: none;
}


/* 小カテゴリーのリンク */
.submenu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;

  font-family: 'Noto Sans JP', 'メイリオ', sans-serif; /* ←ここを追加 */
  font-size: 16px; /* 小カテゴリーのサイズも調整 */
}




/* 最後のアイテムの右線を消す */
.gmenu-item:last-child {
  border-right: none;
}

/* ホバー時の効果 */
.gmenu-item:hover {
  background: #e0e0e0;
}



/* 子メニュー（プルダウン） */
.gmenu-item .submenu {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  min-width: 160px;     /* 👈 追加：最小幅 */
  width: auto;          /* 👈 追加：自動サイズ */
  left: 0;
  top: 100%;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 👈 見た目もアップするおまけ */
　list-style: none;
  padding-left: 0; /* インデントもリセット（任意） */
  margin: 0;        /* 余白も消して整える（任意） */
}

/* 小カテゴリのリストマーカーを消す */
.submenu {
  list-style: none;
  padding-left: 0; /* 左の余白も消す */
  margin: 0;
}

.submenu li {
  list-style: none; /* li自体にも効かせる */
}



.gmenu-item:hover .submenu {
  display: block;
}

/* 子メニュー項目 */
.submenu li {
  padding: 0; /* li自体にはpaddingなし */
  border-bottom: 1px solid #eee;
}

/* 小カテゴリーのリンクをli全体に広げる */
.submenu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
}

/* ホバー時の背景色など（任意） */
.submenu li a:hover {
  background-color: #f0f0f0;
}


.submenu li:last-child {
  border-bottom: none;
}
/* ハンバーガーアイコンを常に非表示にする（デフォルト） */
.hamburger {
  display: none;
}

/* スマホサイズ（〜767px）で表示されるハンバーガーメニュー */
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    cursor: pointer;
    width: 40px;
    height: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); /* 影で立体感 */


    /* 背景色を追加（半透明・黒っぽい） */
    background-color: rgba(0, 0, 0, 0.5); /* 透明な黒 */
    border-radius: 6px; /* 角丸で柔らかく */
    padding: 5px;
  }

  .hamburger span {
    display: block;
    height: 4px;
    margin: 4px 0;
    background-color: #fff; /* 白い線でコントラストを強調 */
    border-radius: 2px;
  }
}

/* デフォルトでは非表示 */
@media screen and (max-width: 767px) {
  .gmenu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
　　background-color: rgba(0, 0, 0, 0.6); /* ダークな背景 */
    background-color: rgba(255, 255, 255, 0.9); /* ← 背景色白＋90%不透明 */
    z-index: 9998;
  }

  .gmenu.active {
    display: flex;
  }
}




/* <system section="theme" selected="10328749687176077456"> */
@charset "utf-8";
/*
  Theme: Mnimal Green
  Author: syofuso
  Description:
  2カラムでミニマルなレスポンシブデザインのテーマです
  Responsive: yes
  License:CC BY 2.1 JP
  license URI: https://creativecommons.org/licenses/by/2.1/jp/
  Based on: https://github.com/hatena/Hatena-Blog-Theme-Boilerplate
 */

html {
	font-family: sans-serif;
	/* 1 */

	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	/* 2 */
}
/**
 * Remove default margin.
 */

body {
	margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio, canvas, progress, video {
	display: inline-block;
	/* 1 */

	vertical-align: baseline;
	/* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
	display: none;
	height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

[hidden], template {
	display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */

a {
	background: transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active, a:hover {
	outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
	border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b, strong {
	font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
	font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */

mark {
	background: #ff0;
	color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
	font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
	border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
	overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
	margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */

hr {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}
/**
 * Contain overflow in all browsers.
 */

pre {
	overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code, kbd, pre, samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button, input, optgroup, select, textarea {
	color: inherit;
	/* 1 */

	font: inherit;
	/* 2 */

	margin: 0;
	/* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
	overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button, select {
	text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button, html input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
	/* 2 */

	cursor: pointer;
	/* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */

button[disabled], html input[disabled] {
	cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
	line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
	/* 1 */

	padding: 0;
	/* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */

	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	/* 2 */

	box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
	border: 0;
	/* 1 */

	padding: 0;
	/* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
	overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
	font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */

table {
	border-collapse: collapse;
	border-spacing: 0;
}
td, th {
	padding: 0;
}
/*  import mixin */

.clearfix {
	display: block;
	*zoom: 1;
}
.clearfix:after {
	display: block;
	visibility: hidden;
	font-size: 0;
	height: 0;
	clear: both;
	content: ".";
}
.inline-block {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
.ellipsis {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
/*  import variable */
/* Common */

html, body {
	font-family: '“Lucida Grande”', '“segoe UI”', '“ヒラギノ丸ゴ ProN W4”', '“Hiragino Maru Gothic ProN”', “メイリオ”, Meiryo, Verdana, Arial, sans-serif;
	color: #454545;
}
a {
	color: #47a89c;
	text-decoration: none;
}
a:hover {
	color: #95C7A4;
	text-decoration: underline;
}
a:visited {
	color: #789dae;
}
.entry-content a {
	text-decoration: underline;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited {
	color: #333333;
	text-decoration: none;
}
a.keyword {
	text-decoration: none;
	border-bottom: 1px dotted #dddddd;
	color: #454545;
}
/* Buttons */

.btn {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding: 4px 10px 4px;
	margin-bottom: 0;
	line-height: 18px;
	color: #454545;
	background-color: #ffffff;
	text-align: center;
	vertical-align: middle;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	border-radius: 2px;
	background-clip: padding-box;
	cursor: pointer;
	font-size: 12px;
	font-weight: bold;
	border: 1px solid rgba(0, 0, 0, 0.2);
	text-decoration: none !important;
}
.btn:hover {
	background-color: #f5f5f5;
	text-decoration: none !important;
}
.btn-small {
	padding: 2px 10px !important;
	font-size: 11px !important;
}
.btn-large {
	padding: 13px 19px;
	font-size: 17px;
	line-height: normal;
	font-weight: bold;
}
/* ヘッダ（グローバルヘッダ）
  グローバルヘッダの中はiframeですが、
  #globalheader-container に背景色や文字色を指定することでirameの中にも色が反映されます。
*/

#globalheader-container {
	background-color: transparent;
	color: #4e4e4e;
	top: 0;
	left: 0;
	width: 100%;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
}
/* container */

#container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}
#container #content {
	width: 1000px;
	margin: 0 auto;
	padding-right: 40px;
	padding-left: 40px;
	padding-top: 48px;
	display: block;
	*zoom: 1;
	background-color: #fff;
}
#container #content:after {
	display: block;
	visibility: hidden;
	font-size: 0;
	height: 0;
	clear: both;
	content: ".";
}
.globalheader-off #container {
	padding-top: 0;
}
/* 2カラムレイアウト */

#main {
	width: 624px;
	float: left;
}
#box2 {
	width: 336px;
	float: right;
}
/* header */

#blog-title {
	margin: 0 auto;
	/*背景に合わせるときは100px*/
	padding: 40px 0;
}
#blog-title-inner {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1000px;
	box-sizing: border-box;
}
#title {
	margin: 0;
}
#title a {
	color: #454545;
}
#title a:hover {
	color: #666;
	opacity: 0.7;
}
#blog-description {
	font-weight: normal;
	font-size: 80%;
	margin: 5px 0 0 0;
}
/* ヘッダ画像を設定したとき */

.header-image-enable #title {
	padding-top: 70px;
}
.header-image-enable #title, .header-image-enable #blog-description {
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
}
/* Header-Image */

.header-image-enable #blog-title #title a {
	color: #fff;
	-webkit-text-shadow: 0 1px 2px #000;
	text-shadow: 0 1px 2px #000;
}
.header-image-enable #blog-title #blog-description {
	color: rgba(255, 255, 255, 0.9);
	font-weight: normal;
	-webkit-text-shadow: 0 1px 2px #000;
	text-shadow: 0 1px 2px #000;
}
/*****グローバルメニュー****/

#menu {
	width: 100%;
	margin: 0 auto;
	background: #47a89c;
	/*７*/
}
#menu-inner {
	width: 100%;
	height: 40px;
	/*２*/

	margin: 0 auto;
	background: #47a89c;
	/*８*/
}
#menu-btn {
	display: none;
}
#menu-content {
	padding-left: 0;
	margin: 0 auto;
	width: 1000px;
	/*１*/

	height: 100%;
	list-style-type: none;
}
#menu-content > li {
	position: relative;
	float: left;
	height: 100%;
	text-align: center;
}
#menu-content > li > a {
	position: relative;
	display: block;
	height: 100%;
	padding-left: 15px;
	/*３*/

	padding-right: 15px;
	/*３*/

	line-height: 40px;
	/*２*/

	background: #47a89c;
	/*９*/

	color: #fff;
	/*10*/

	font-size: 80%;
	text-decoration: none;
	z-index: 2;
}
#menu-content > li > a:hover {
	background: #95C7A4;
	/*11*/

	color: #fff;
	/*12*/

	opacity: 0.8;
}
#menu-content > li > a > .blogicon-chevron-down {
	margin-right: 5px;
}
/*２階層目*/

#menu-content > li > ul.second-content {
	visibility: hidden;
	position: absolute;
	top: 0;
	margin: 0;
	padding-left: 0;
	list-style-type: none;
	z-index: -1;
}
#menu-content > li:hover > ul.second-content {
	visibility: visible;
	top: 40px;
	/*2*/

	z-index: 1;
	transition: all .3s;
}
#menu-content > li > ul.second-content > li {
	text-align: center;
	width: 200px;
	/*４*/

	height: 40px;
	/*５*/
}
#menu-content > li > ul.second-content > li > a {
	display: block;
	line-height: 40px;
	/*５*/

	background: #47a89c;
	/*13*/

	color: #fff;
	/*14*/

	font-size: 80%;
	text-decoration: none;
}
#menu-content > li > ul.second-content > li > a:hover {
	background: #95C7A4;
	/*15*/

	color: #fff;
	/*16*/
}
/*******トグルメニュ*********/

@media screen and (max-width: 960px) {
	/*19*/

	#menu-inner {
		width: 100%;
		height: auto;
	}
	#btn-content {
		text-align: right;
	}
	/*20*/

	#menu-btn {
		display: inline-block;
		padding: 8px 15px;
		margin: 5px;
		cursor: pointer;
		background: #47a89c;
		/*17*/

		color: #fff;
		/*18*/

		font-size: 70%;
	}
	#menu-content {
		display: none;
		width: 100%;
	}
	#menu-content > li {
		width: 100%;
		height: 40px;
		/*６*/

		float: none;
	}
	#menu-content > li > a {
		width: 100%;
		line-height: 40px;
		/*６*/

		padding: 0;
		text-decoration: none;
	}
	/*２階層目*/

	#menu-content > li:hover > ul.second-content {
		display: none;
	}
	#menu-content > li > a > .blogicon-chevron-down {
		display: none;
	}
}
/*グローバルメニューCSSここまで*/
/* パンくず（カテゴリーページで表示されます） */

#top-box {
	font-size: 90%;
}
.breadcrumb {
	width: 1000px;
	margin: 0 auto;
	padding: 10px 0;
	text-align: left;
	text-decoration: none;
}
.page-entry .breadcrumb {
	margin-bottom: 0;
}
/* entry */

.entry {
	position: relative;
	margin-bottom: 100px;
}
.entry-header {
	padding: 0 0 4px 0;
	margin-bottom: 28px;
	border-bottom: 2px solid #454545;
	position: relative;
	background-color: #fff;
}
.entry-title {
	margin: 0 0 10px 0;
	line-height: 1.5;
	font-size: 160%;
	color: #454545;
}
.entry-title a {
	color: #454545;
}
.entry-title a:hover {
	color: #666;
	opacity: 0.7;
}
/* 日付 */

.hyphen {
	display: none;
}
.date a {
	text-decoration: none;
}
.entry-header .date {
	position: absolute;
	top: 5px;
	left: -75px;
	width: 60px;
	height: 40px;
	padding: 10px 0;
	border: 3px solid #47a89c;
	border-radius: 50%;
	background: #fff;
	color: #47a89c;
	text-align: center;
	line-height: 20px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 11px;
}
.date-month::after {
	content: '/';
}
.date-year {
	display: block;
}
.date-month, .date-day {
	display: inline-block;
	font-weight: bold;
	font-size: 18px;
}
.archive-entry .date a {
	color: #47a89c;
	line-height: 20px;
	font-family: Helvetica, Arial;
	font-size: 12px;
	text-decoration: none;
}
/* カテゴリー */

.categories {
	margin-top: 10px;
	margin-bottom: 0;
}
.categories a {
	margin: 0 4px 4px 0;
	padding: 6px 10px;
	font-size: 87.5%;
	border: 1px solid #47a89c;
	border-radius: 2px;
	color: #47a89c;
	text-decoration: none;
}
.categories a:hover {
	color: #47a89c;
	background-color: #f8f8f8;
}
/* 「編集する」ボタン */

.entry-header-menu {
	position: absolute;
	bottom: 0px;
	left: -60px;
}
.entry-header-menu a {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding: 4px 10px 4px;
	margin-bottom: 0;
	line-height: 18px;
	color: #454545;
	background-color: #ffffff;
	text-align: center;
	vertical-align: middle;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	border-radius: 2px;
	background-clip: padding-box;
	cursor: pointer;
	font-size: 12px;
	font-weight: bold;
	border: 1px solid rgba(0, 0, 0, 0.2);
	text-decoration: none !important;
}
.entry-header-menu a:hover {
	background-color: #f5f5f5;
	text-decoration: none !important;
}
/* entry-content の中の書式 */

.entry-content {
	font-size: 100%;
	line-height: 1.9;
	padding-bottom: 10px;
	border-bottom: 1px solid #dddddd;
}
.entry-content p {
	margin: 0 0 1em 0;
}
.entry-content img {
	max-width: 100%;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
	margin: 1.3em 0 0.8em 0;
	line-height: 1.5;
}
.entry-content h1 {
	font-size: 160%;
	padding: .75em 0;
	border-top: 2px solid #454545;
	border-bottom: 2px solid #454545;
}
.entry-content h2 {
	font-size: 150%;
	padding: .5em .75em;
	background-color: #f6f6f6;
	border-left: 6px solid #47a89c;
}
.entry-content h3 {
	font-size: 140%;
	position: relative;
	padding: 0 0 .5em .75em;
	border-left: 3px solid #47a89c;
}
.entry-content h3::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 2px solid #454545;
}
.entry-content h4 {
	font-size: 130%;
	position: relative;
	padding: 0 .5em .5em 2em;
	border-bottom: 2px solid #454545;
}
.entry-content h4::before, .entry-content h4::after {
	position: absolute;
	content: '';
	border-radius: 100%
}
.entry-content h4::before {
	top: .2em;
	left: .2em;
	z-index: 2;
	width: 18px;
	height: 18px;
	background: #47a89c;
}
.entry-content h4::after {
	top: .7em;
	left: .7em;
	width: 13px;
	height: 13px;
	background: #C2E0CB;
}
.entry-content h5 {
	font-size: 110%;
}
.entry-content h6 {
	font-size: 100%;
}
.entry-content table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 1em;
}
.entry-content table img {
	max-width: none;
}
.entry-content table th, .entry-content table td {
	border: 1px solid #ddd;
	padding: 5px 10px;
}
.entry-content table th {
	background: #f5f5f5;
}
.entry-content blockquote {
	border: 1px solid #dddddd;
	margin: 0 0 10px;
	padding: 20px;
}
.entry-content blockquote p {
	margin-top: 0;
	margin-bottom: 0;
}
.entry-content pre {
	border: 1px solid #dddddd;
	margin: 0 0 10px;
	padding: 20px;
	white-space: pre;
}
.entry-content pre > code {
	margin: 0;
	padding: 0;
	white-space: pre;
	border: 0;
	background: transparent;
	font-family: 'Monaco', 'Consolas', 'Courier New', Courier, monospace, sans-serif;
}
.entry-content code {
	font-size: 90%;
	margin: 0 2px;
	padding: 0 5px;
	border: 1px solid #eaeaea;
	background-color: #f8f8f8;
	border-radius: 3px;
	font-family: 'Monaco', 'Consolas', 'Courier New', Courier, monospace, sans-serif;
}
.entry-content .hatena-asin-detail li {
	line-height: 1.4;
}
/*目次*/

.table-of-contents {
	border: 1px solid #e4e4e4;
	padding: 20px 10px 20px 40px;
	list-style-type: decimal;
	border-radius: 5px;
	font-size: 90%;
}
.table-of-contents:before {
	content: "目次";
	font-size: 120%;
}
.table-of-contents li, .table-of-contents ul {
	list-style-type: decimal;
}
/* entry-footer */

.entry-footer {
	margin-top: 10px;
}
.entry-footer-section {
	font-size: 80%;
	color: #999999;
}
.entry-footer-section a {
	color: #999999;
}
.social-buttons, .entry-footer-html {
	margin: 10px 0;
}
/* コメント */

.comment-box ul {
	list-style: none;
	margin: 0 0 15px 0;
	padding: 0;
	font-size: 95%;
	line-height: 1.7;
}
.comment-box li {
	padding: 10px 0 10px 60px;
	border-bottom: 1px solid #dddddd;
	position: relative;
}
.comment-box li:first-child {
	border-top: 1px solid #dddddd;
}
.comment-box .read-more-comments {
	padding-left: 0;
}
.comment-box .hatena-id-icon {
	position: absolute;
	top: 10px;
	left: 0;
	width: 50px !important;
	height: 50px !important;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	border-radius: 3px;
	background-clip: padding-box;
}
.comment-user-name {
	margin: 0 0 10px 0;
	font-weight: bold;
}
.comment-content {
	font-size: 90%;
	margin: 0 0 10px 0;
	word-wrap: break-word;
}
.comment-content p {
	margin: 0 0 10px 0;
}
.comment-metadata {
	font-size: 80%;
	color: #999999;
	margin: 0;
}
.comment-metadata a {
	color: #999999;
}
.leave-comment-title {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding: 4px 10px 4px;
	margin-bottom: 0;
	line-height: 18px;
	color: #454545;
	background-color: #ffffff;
	text-align: center;
	vertical-align: middle;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	border-radius: 2px;
	background-clip: padding-box;
	cursor: pointer;
	font-size: 12px;
	font-weight: bold;
	border: 1px solid rgba(0, 0, 0, 0.2);
	text-decoration: none !important;
}
.leave-comment-title:hover {
	background-color: #f5f5f5;
	text-decoration: none !important;
}
/*続きを読む*/

a.entry-see-more {
	display: inline-block;
	width: 250px;
	height: 50px;
	margin: 5px 0 5px 0;
	line-height: 50px;
	background-color: #47a89c;
	border-radius: 4px;
	text-align: center;
	color: #fff!important;
	font-size: 16px;
	text-decoration: none;
}
a.entry-see-more:hover {
	color: #fff!important;
	background-color: #47a89c;
	opacity: 0.8;
}
/* sidebar */

#box2 {
	font-size: 85%;
	line-height: 1.5;
}
.hatena-module {
	margin-bottom: 60px;
}
.hatena-module-title {
	font-weight: bold;
	margin-bottom: 15px;
	font-size: 120%;
	color: #47a89c;
}
.hatena-module-title {
	position: relative;
	padding: .25em 0 .25em .75em;
	border-left: 2px solid #454545;
}
.hatena-module-title a {
	color: #47a89c;
	text-decoration: none;
}
.hatena-module-title a:hover {
	text-decoration: underline;
}
/* Profile module */

.hatena-module-profile .profile-icon {
	float: left;
	margin: 0 10px 10px 0;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	border-radius: 5px;
	background-clip: padding-box;
}
.hatena-module-profile .id {
	display: block;
	font-weight: bold;
	font-size: 110%;
	margin-bottom: 5px;
	text-decoration: none;
}
.hatena-module-profile .id a {
	text-decoration: none;
}
.hatena-module-profile .profile-description {
	font-size: 90%;
}
.hatena-module-profile .profile-description p {
	margin-top: 0;
}
/* urllist module
    リンク・最新記事・最近のコメント・月別アーカイブ・カテゴリモジュールは .hatena-urllist という共通の class が振られます
*/

.hatena-urllist {
	list-style: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
.hatena-urllist li {
	padding: 8px 0;
	border-bottom: 1px solid #dddddd;
	line-height: 1.5;
}
.hatena-urllist li a {
	text-decoration: none;
	color: #47a89c;
}
.hatena-urllist li a:hover {
	text-decoration: underline;
	color: #95C7A4;
}
/* Search module */

.hatena-module-search-box .search-form {
	border: 1px solid #dddddd;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	border-radius: 3px;
	background-clip: padding-box;
	width: 100%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
.hatena-module-search-box .search-module-input {
	padding: 5px;
	color: #454545;
	background: none;
	border: none;
	outline: none;
	height: 20px;
	width: 90%;
}
.hatena-module-search-box .search-module-button {
	width: 20px;
	height: 20px;
	background: transparent url(https://cdn.blog.st-hatena.com/images/theme/search.png) no-repeat right center;
	border: none;
	outline: none;
	text-indent: -9999px;
	position: absolute;
	top: 5px;
	right: 5px;
	opacity: 0.5;
}
.hatena-module-search-box .search-module-button:hover {
	opacity: 0.85;
}
/* Pager */

.pager {
	margin: 20px 0;
	text-align: center;
	font-size: 14px;
}
.pager .pager-next, .pager .pager-prev {
	display: inline-block;
	margin: 0 10px;
}
.pager a {
	display: inline-block;
	color: #47a89c;
	text-decoration: none;
}
.pager-next a:before, .pager-prev a:before {
	display: block;
	font-family: "blogicon";
	width: 50px;
	height: 50px;
	margin: 0 auto 10px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	background-color: #47a89c;
	color: #fff;
	font-size: 24px;
	text-align: center;
	line-height: 50px;
}
.pager-next a:before {
	content: "\f006";
}
.pager-prev a:before {
	content: "\f005";
}
.pager-arrow {
	display: none;
}
.category-page {
	padding: 20px;
	margin: 10px 0 10px 0;
	border: 2px solid #47a89c;
	border-radius: 5px;
	text-align: center;
}
.category-page ul {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
}
.category-page a {
	color: #47a89c;
}
/* Footer */

#footer {
	padding: 30px 0;
	text-align: center;
	color: #999999;
	line-height: 1.5;
	font-size: 80%;
}
#footer p {
	margin: 0;
}
#footer a {
	color: #999999;
}
#copyright {
	width: 100%;
	margin: 0 auto;
	background: #47a89c;
	font-size: 12px;
	color: #fff;
	text-align: center;
	line-height: 3;
}
/* social */
.sns-header, .sns-footer {
	padding: 0;
}
.sns-area {
	margin: 10px auto;
	padding: 0;
	overflow: hidden;
	table-layout: fixed;
	display: table;
	width: 100%;
}
.sns-area li {
	list-style-type: none;
	display: table-cell;
	vertical-align: middle;
}
.sns-area li:last-child {
	margin-right: 0
}
.sns-link {
	position: relative;
	display: block;
	color: #fff;
	text-align: center;
	text-decoration: none;
	outline: none;
	overflow: hidden;
	height: 42px;
	line-height: 42px;
}
.sns-link::after {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background-color: rgba(255, 255, 255, .3);
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.sns-link:hover {
	text-decoration: none;
}
a.sns-link:hover {
	color: #fff;
}
.sns-link:hover::after {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	50% {
		opacity: 1;
	}
	100% {
		width: 300px;
		height: 300px;
	}
}
@keyframes circle {
	50% {
		opacity: 1;
	}
	100% {
		width: 300px;
		height: 300px;
	}
}
.sns-twitter {
	color: #fff;
	background: #55acee;
}
.sns-facebook {
	color: #fff;
	background: #3a5795;
}
.sns-bookmark {
	color: #fff;
	background: #00A5DE;
}
.sns-googleplus {
	color: #fff;
	background: #db4a39;
}
.sns-pocket {
	color: #fff;
	background: #EE4256;
}
.blogicon-twitter, .blogicon-facebook, .blogicon-bookmark, .fa fa-google-plus, .blogicon-chevron-down {
	margin-right: 5px;
}
.share-text {
	padding-left: 4px;
}
@media only screen and (max-width: 767px) {
	.share-text, .sns-txt {
		display: none;
	}
	.blogicon-twitter, .blogicon-facebook, .blogicon-bookmark, .fa fa-google-plus, .blogicon-chevron-down {
		margin-right: 0;
	}
}
/*ページ上部へ戻る*/

.pagetop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 55px
}
.pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	background-color: #47a89c;
	border-radius: 50px;
	text-align: center;
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	line-height: 50px;
	-ms-filter: "alpha(opacity=80)";
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8
}
.pagetop a:hover {
	background-color: #47a89c;
	-ms-filter: "alpha(opacity=50)";
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5
}
/* About ページ */

.page-about dt {
	font-size: 16px;
	font-weight: bold;
	border-bottom: 1px solid #dfdfdf;
	margin-bottom: 5px;
}
.page-about dd {
	margin-left: 0;
	margin-bottom: 30px;
}
/* archive ページ */

.page-archive .archive-entries .archive-entry {
	margin-bottom: 3em;
}
.page-archive .archive-entries .entry-title {
	font-size: 130%;
	margin: 0 0 .5em;
}
.page-archive .archive-entries .categories {
	margin: 0 0 .5em;
	display: inline-block;
}
.page-archive .archive-entries .entry-description {
	margin: 0 0 1em;
	line-height: 1.7em;
	font-size: 95%;
}
.page-archive .categories a {
	color: #fff;
	font-size: 70%;
	background: #47a89c;
	padding: 3px 5px;
	border-radius: 3px;
	text-decoration: none;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin-right: 2px;
}
body, .entry-title, .entry-content {
	word-break: break-all;
	overflow-wrap: break-word;
}
/* 真ん中寄せ */
.center-inner {
    margin: 0 auto;
    width: 1000px;
    text-align: center;
}

/*  import media queries */
/* Media Queries - Retina Display */

@media (-webkit-min-device-pixel-ratio: 2) {
	.hatena-module-search-box .search-module-button {
		background: transparent url(https://cdn.blog.st-hatena.com/images/theme/search@2x.png) no-repeat right center;
		background-size: 20px 20px;
	}
}
/* Media Queries - Tablet */

@media (min-width: 920px) and (max-width: 1150px) {
	#container #content {
		max-width: 920px;
		margin-left: auto;
		margin-right: auto;
	}
	#main {
		max-width: 550px;
	}
	#box2 {
		max-width: 300px;
	}
	#blog-title-inner {
		width: 920px;
		margin-left: auto;
		margin-right: auto;
	}
  .entry-header .date {
		position: relative;
		top: 0px;
		left: 0;
		width: 60px;
		height: 40px;
		padding: 10px 0;
		border: 3px solid #47a89c;
		border-radius: 50%;
		background: #fff;
		color: #47a89c;
		text-align: center;
		line-height: 20px;
		font-size: 11px;
	}
	/* パンくず（カテゴリーページで表示されます） */

	#top-box {
		font-size: 90%;
	}
	.center-inner, .breadcrumb {
		width: 920px;
		margin-left: auto;
		margin-right: auto;
	}
}
/* Media Queries - Small Tablet & Smartphone */

@media (max-width: 919px) {
	#container #content {
		width: 83.9%;
		word-wrap: break-word;
		overflow: hidden;
		margin-left: auto;
		margin-right: auto;
		padding-top: 20px
	}
	#blog-title-inner {
		margin-left: auto;
		margin-right: auto;
	}
	#title, .header-image-enable #title {
    font-size: 140%;
    padding-left: 40px;
        }
	#blog-description, .header-image-enable #blog-description {
		font-size: 70%;
    padding-left: 40px;
	}
	#main {
		width: 100%;
		float: none;
		border-right: none;
	}
	#box2 {
		width: 100%;
		float: none;
	}
	#box2-inner {
		width: 100%;
	}
	.breadcrumb {
		width: 100%;
	}
	#footer-inner, .center-inner, .breadcrumb-inner {
		width: 83.9%;
		margin-left: auto;
		margin-right: auto;
	}
	.hatena-module {
		width: 100%;
		float: none;
	}
	.entry-header .date {
		position: relative;
		top: 0px;
		left: 0;
		width: 60px;
		height: 40px;
		padding: 10px 0;
		border: 3px solid #47a89c;
		border-radius: 50%;
		background: #fff;
		color: #47a89c;
		text-align: center;
		line-height: 20px;
		font-size: 11px;
	}
	.entry-title {
		margin: 20px 0 6px 0;
	}
}
/* Media Queries - Smartphone */

@media (max-width: 480px) {
	#container #content {
		padding: 20px 10px 0 10px;
    width: 93.9%;
		margin-left: auto;
		margin-right: auto;
	}
	#title, #title, .header-image-enable #title {
		font-size: 120%;
    padding-left: 0;
        }
	#blog-description, .header-image-enable #blog-description {
    padding-left: 0;
	}
  #blog-title {
		padding: 20px 0;
	}
	.breadcrumb {
		width: 100%;
	}
	#footer-inner, .center-inner, {
		width: initial;
		margin-left: auto;
		margin-right: auto;
	}
	.entry-content img:hover {
		box-shadow: 0 0;
	}
	.categories a {
		display: inline-block;
		font-size: 70%;
	}
	.entry-header {
		border-bottom: none;
	}
	.entry-header .date {
		position: relative;
		top: 0px;
		left: 0;
		width: 60px;
		height: 40px;
		padding: 10px 0;
		border: 3px solid #47a89c;
		border-radius: 50%;
		background: #fff;
		color: #47a89c;
		text-align: center;
		line-height: 20px;
		font-size: 11px;
	}
	.entry-title {
		margin: 20px 0 6px 0;
	}

  .pagetop a {
	display: block;
	width: 30px;
	height: 30px;
	background-color: #47a89c;
	border-radius: 50px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	line-height: 30px;
	opacity: 0.8
}
  .pagetop {
         right:5px;
}
}
/* 日付リセット */
.page-archive .hyphen {
	display: inline;
}
.page-archive .date a {
	text-decoration: none;
}
.page-archive .entry-header .date {
	position: static;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	border-radius: 0;
	line-height: normal;
	font-size: 14px;
	font-weight: normal;
	text-align: left;
}
.page-archive .date::before, 
.page-archive .date-year::after {
	content: none;
}
.page-archive .date-month::after {
	content: none;
}
.page-archive .date-year, .page-archive .date-month, .page-archive .date-day {
	display: inline;
	font-size: 14px;
	font-weight: normal;
  color: inherit;
}
/* </system> */
/*目次に太いライン*/

/*タイトル下の検索窓*/
.entry-content{
font-size: 17px!important
}

/*タイトル下の検索窓*/
@media only screen and (max-width: 767px){
.entry-content{
font-size: 17px!important
}
}
/**** 行間隔 ****/
.entry-content {
  line-height: 1.7!important
}
/**** 段落間****/
.entry-content p,
.entry-content div{
    margin-bottom: 3px!important
}
.entry-content .table-of-contents {
    position: relative;
    margin: 0;
    padding: 1em 1.2em 1em;
    background: #fff;
    font-size: 100%;
    border-top: solid 40px #85c083;
    border-right: solid 3px #85c083;
    border-bottom: solid 3px #85c083;
    border-left: solid 3px #85c083;
    border-radius: 4px;
}
.entry-content .table-of-contents::before {
    content: "目次";
    position: absolute;
    top: -33px;
    left: 20px;
    margin: 0 0 .8rem;
    padding: 0 0 .4rem;
    color: #fff;
    border: none;
    font-size: 120%;
}
.entry-content .table-of-contents li {
    margin: .2em 0 1em 1em;
    list-style-type: decimal;
    line-height: 1.6em;
}
.entry-content .table-of-contents li ul {
    margin: 0 0 1em .5em;
    padding: 0;
}
.entry-content .table-of-contents li ul li {
    margin: .2em 0 0 1em;
    list-style-type: disc;
}
.entry-content .table-of-contents li ul li ul li {
    list-style-type: circle;
}
.table-of-contents li a {
    line-height: 1.6em;
}
.entry-content .table-of-contents a {
    color: #454545;
    text-decoration: underline;
}
@media (max-width: 480px){
 #blog-title-inner,#title a{
   height:100px!important;   
 }

 #blog-title-inner {
      background-size: contain;
 }
}

/*ヨメレバ・カエレバ（レスポンシブ）*/
.booklink-box, .kaerebalink-box {
 font-family:'Lucida Grande','Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
 padding: 22px 25px 22px 25px;
 width: 94%;
 margin: 0 auto 15px;
 border: 3px solid #dfdfdf;
 box-sizing: border-box;
 text-align: center;
}
.booklink-image, .kaerebalink-image {
 width: 100%;
 margin: 0 0 5px 0;
}
.booklink-image img, .kaerebalink-image img {}
.booklink-info, .kaerebalink-info {
 line-height: 125%;
 width: 100%;
}
.booklink-name, .kaerebalink-name {
 margin: 0 0 4px 0;
}
.booklink-name a, .kaerebalink-name a {
 color: #0066cc;
 text-decoration: underline;
}
.booklink-name > a, .kaerebalink-name > a {
 font-size: 16px;
}
.booklink-name a:hover, .kaerebalink-name a:hover {
 color: #FF9900;
}
.booklink-powered-date, .kaerebalink-powered-date {
 font-size: 8px;
}
.booklink-detail, .kaerebalink-detail {
 color: #333333;
 font-size: 12px;
 margin: 0 0 10px 0;
}
.booklink-link2, .kaerebalink-link1 {}
.booklink-link2 a, .kaerebalink-link1 a {
 width: 90%;
 display: block;
 margin: 0px auto -12px;
 padding: 10px 1px;
 text-decoration: none;
 font-size: 14px;
 font-weight: bold;
 box-shadow: 2px 2px 1px #dcdcdc;
}
.booklink-link2 a:hover, .kaerebalink-link1 a:hover {
 opacity: 0.6;
}

@media screen and (min-width: 800px) {

.booklink-box, .kaerebalink-box {
 text-align: left;
 display: table;
}
.booklink-image, .kaerebalink-image {
 vertical-align: top;
 box-sizing: border-box;
 display: table-cell;
 width: 111px;
 text-align: center;
 margin: 0;
}
.booklink-image img, .kaerebalink-image img {
 max-width: 100%
}
.booklink-info, .kaerebalink-info {
 line-height: 125%;
 vertical-align: top;
 box-sizing: border-box;
 display: table-cell;
 padding-left: 25px;
 width: auto;
}
.booklink-name, .kaerebalink-name {
 margin: 0 0 24px 0;
}
.booklink-name > a, .kaerebalink-name > a {
 font-size: 16px;
}
.booklink-powered-date, .kaerebalink-powered-date {
 margin: 6px 0 0 0;
}
.booklink-detail, .kaerebalink-detail {
 margin: 0 0 14px 0;
}
.booklink-link2 a, .kaerebalink-link1 a {
 width: auto;
 text-align: center;
 margin: none;
}
.booklink-link2 > div, .kaerebalink-link1 > div {
 width: 33.33%;
 padding: 0 5px 5px 0;
 box-sizing: border-box;
 float: left;
}
}

.shoplinkamazon a {
 color: #ffffff;
 background: #ff9901;
 border: 2px solid #ff9901;
}
.shoplinkrakuten a {
 color: #ffffff;
 background: #bf0000;
 border: 2px solid #bf0000;
}
.shoplinkkindle a {
 color: #ffffff;
 background: #0074c1;
 border: 2px solid #0074c1;
 <div class="movie-wrap"> 

==YouTube動画の埋め込みコード==

</div>
/** アコーディオン**/
.entry-content .acd-content p{
 margin: 0;
 padding: 10px;
}
.acd-box{
 box-sizing: border-box;
 background-color: #f6f8f9;/*コンテンツボックスの色*/
 border: 1px solid gray;/*ボックスの線の色*/
 border-top-left-radius: 5px;/*左上の角を丸くする */
 border-top-right-radius: 5px;/*右上の角を丸くする */
 margin-top: 30px;
 margin-bottom: 30px;
}
.acd-title{
 background-color: #f3cece;/*タイトルボックスの色*/
 border-top-left-radius: 5px;
 border-top-right-radius: 5px;
 padding: 5px 15px 5px 15px;
 cursor: zoom-in;/*マウスを乗せたときのカーソル形状*/
 margin-bottom: 20px;
}
/*タイトルホバー時*/
.acd-title:hover {
 background :#e9a5a5;
}
.acd-content {
 display: none; /*コンテンツを閉じておくため*/
 background-color: #f6f8f9;
 padding-left: 10px;
 padding-right: 10px;
}
/*アイコンを表示*/
.acd-title:before {
 padding-right: 8px;　
 content: '\f039’; /*アイコンフォントから*/
 font-family: "Font Awesome 5 Free";
}

<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.6/clipboard.min.js'></script>
<link href='//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.2/styles/foundation.min.css' rel='stylesheet' />
<script src='//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.2/highlight.min.js'></script>
<script>hljs.initHighlightingOnLoad();</script>
<style>
  .hljs {
    font-size: 15px;
    max-height: 500px;
    background: #f1f8ff;
    font-family: Consolas, Menlo, sans-serif;
  }

  .code-copy {
    position: relative;
    margin: 1em 0;
  }

  pre::before {
    content: attr(title);
    line-height: 1;
    padding: .3em .5em .3em .5em;
    margin: 0 0 0 0;
    background: #f1f8ff;
    color: #000;
    font-size: 16px;
    font-family: Consolas, Menlo, sans-serif;
  }

  .code-copy-btn {
    position: absolute;
    right: 0;
    top: 0;
    padding: .3em;
    background: #779cff;
    color: #fff;
    border: 0;
    border-radius: 5px;
    font-size: 16px;
    font-family: Consolas, Menlo, sans-serif;
  }

  .code-copy-btn:hover {
    cursor: pointer;
    opacity: 0.9;
  }
</style>
<script>
  $(function () {
    new ClipboardJS('.code-copy-btn');
    $('.code-copy-btn').click(function () {
      var codeText = $(this).siblings().text();
      $(this).attr('data-clipboard-text', codeText);
      $(this).text("Copied!"); //Change text
      //Restore original text after 2s
      setTimeout(function () {
        $('.code-copy-btn').text("Copy");
      }, 2000);
    });
  });
</script>
.copy-button {
  margin-top: 4px;
  padding: 5px 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.9em;
  border-radius: 4px;
}
.copy-button:hover {
  background-color: #45a049;
}
.code-block {
  position: relative;
  margin-bottom: 1em;
}

.copy-button,
.hide-button {
  margin-top: 4px;
  padding: 5px 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.9em;
  border-radius: 4px;
  margin-right: 5px;
}
.copy-button:hover,
.hide-button:hover {
  background-color: #45a049;
}
.code-block {
  position: relative;
  margin-bottom: 1em;
}
.code-block pre {
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 4px;
  overflow-x: auto;
}
#g_navi {
  background: #2e1200;
}
#g_navi ul {
  margin: 0 auto;
  padding: 0 3%;
  width: 94%;
  max-width: 960px; 
  list-style-type: none;
}
  #g_navi ul li {
    position: relative;
    display: inline-block;
    width: 20%;
  }
  #g_navi ul li:first-child::before {
    position: absolute;
    display: block;
    content: "";
    top: 25%;
    left: 0px;
    width: 1px;
    height: 50%;
    background-color: #976d52;
  }
  #g_navi ul li::after {
    position: absolute;
    display: block;
    content: "";
    top: 25%;
    right: 0px;
    width: 1px;
    height: 50%;
    background-color: #976d52;
  }
    #g_navi ul li a {
      display: block;
      padding: 17px 10px;
      color: #fff;
      text-align: center;
      text-decoration: none;
    }
    #g_navi ul li a:hover {
      background-color: #472108;
    }