.5charset "UTF-8";
/*
  Skin Name: ダークオレンジ
  Description: 黒色系のダークスキン。
  Skin URI: https://zvalinf.info/skin-check/archives/382?theme-switch=skin-dark-orange
  Author: y.hiroaki
  Author URI: https://zvalinf.info
  Screenshot URI: 
  Version: 0.0.1
  Priority: 9830001999
*/
/* -------------------------------------------------
/    ＜キーカラー＞
/		orangeまたは、255, 165, 0, .X)
/		　※Xは透過率
/* -------------------------------------------------

/* -------------------------------------------
/ 『全体の文字色／背景色』
------------------------------------------- */
.site-name-text-link {
  color: #d3d3d3;
}

body {
  background-color: #121212;
  color: #d3d3d3;
}

.no-scrollable-sidebar .sidebar {
  height: 100%;
}

.no-scrollable-main .main {
  height: 100%;
  color: #d3d3d3;
}

.header-container,
.main,
.sidebar,
.footer {
  background-color: #121212;
}

/* -------------------------------------------
/ 『文字色』
------------------------------------------- */
.tagline,
.rating-number {
  color: #d3d3d3;
}

/* -------------------------------------------
/ 『グローバルメニュー』
------------------------------------------- */
.navi-in > ul .sub-menu a {
  padding-left: 12px;
  padding-right: 12px;
}

#navi .navi-in > .menu-header .sub-menu {
  background-color: #212121;
}

.header-container {
  box-shadow: 0 6px 5px -3px rgba(0, 0, 0, 1), 0 6px 10px -3px rgba(0, 0, 0, .8);
}

.header-container .navi {
  background-color: #212121;
}

.header-container.fixed-header {
  background-color: #212121;
}

#navi .navi-in a {
  position: relative;
  text-decoration: none;
  color: #d3d3d3;
  transition: .3s;
}

#navi .navi-in a:hover {
  background-color: transparent;
}

#navi .navi-in a::after {
  position: absolute;
  content: '';
  bottom: -4px;
  left: calc(3%);
  width: 94%;
  height: 2px;
  background: orange;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}

#navi .navi-in a:hover::after {
  bottom: 2px;
  opacity: 1;
  z-index: 2;
  visibility: visible;
}

/* -------------------------------------------
/  『通知』
------------------------------------------- */
.nt-notice {
  background-color: #007b43;
}

.nt-warning {
  background-color: #c89932;
}

.nt-danger {
  background-color: #a22041;
}

/* -------------------------------------------
/ 『エントリーカード』
------------------------------------------- */
.a-wrap {
  background-color: #121212;
  color: #d3d3d3;
}

.a-wrap:hover {
  background: none;
  color: #d3d3d3;
}

.entry-card-wrap.a-wrap {
  border: outset 2px #949494;
  background-color: #232323;
  transition: all 0.4s ease-in-out;
}

.entry-card-wrap.a-wrap:hover {
  border: 2px outset orange;
  background: none;
  color: #d3d3d3;
}
/* -------------------------------------------
/ 『ブログカード』
------------------------------------------- */
.blogcard-label {
  background-color: #0b683e;
  color: #fff;
}

.entry-card-snippet,
.related-entry-card-snippet,
.blogcard-snippet {
  border-top: 1px solid rgba(147, 147, 147, 0.4);
  padding-top: 5px;
}

.a-wrap .blogcard,
.related-entry-card-wrap,
.pager-post-navi a.prev-post,
.pager-post-navi a.next-post,
.pager-post-navi.post-navi-square a {
  border: 2px outset #444;
  color: #d3d3d3;
  transition: all 0.4s;
}

.a-wrap .blogcard:hover,
.related-entry-card-wrap:hover,
.pager-post-navi a.prev-post:hover,
.pager-post-navi a.next-post:hover,
.pager-post-navi.post-navi-square a:hover {
  background-color: rgba(0, 146, 80, 0.2);
  border: 2px outset #aaaaaa;
}

/* -------------------------------------------
/ 『目次』
------------------------------------------- */
.toc-title {
  color: #d3d3d3;
  font-size: 120%;
  border-radius: 2px;
  background-color: #313131;
  border-bottom: 1px solid orange;
}

.toc a {
  color: #ccc;
}

.toc-content ul li a:hover,
.toc-content ol li a:hover {
  background-color: 255, 165, 0, .2);
}

.toc a:hover {
  text-decoration: none;
}

.article .toc {
  margin: 15px auto;
  min-width: 60%;
  position: relative;
  border: none;
}

.article .toc .toc-content {
  margin: 3px 0;
  padding: .2em 1.4em;
  border-radius: 4px;
  border: 2px solid #535252;
}

.toc ul li a, .toc ol li a {
  display: block;
  margin-left: -30px;
  padding-left: 2em;
}

.toc ul, .toc ol {
  margin: 0px 0px 0px 4px;
}

/* -------------------------------------------
/ 『見出し（h2）』
------------------------------------------- */
.article h2 {
  background: 0 0;
  position: relative;
  padding: 14px 14px 14px 28px;
  border: none;
  /*border-bottom: 1px solid #585858;*/
}

.article h2::before {
  position: absolute;
  top: 9px;
  left: 5px;
  content: '';
  width: 8px;
  height: 17px;
  background-color: orange;
  transform: skew(15deg);
}

.article h2::after {
  position: absolute;
  top: 28px;
  left: 5px;
  content: '';
  width: 8px;
  height: 17px;
  background-color: orange;
  transform: skew(-15deg);
}

/* -------------------------------------------
/ 『見出し（h3）』
------------------------------------------- */
.article h3 {
  position: relative;
  padding-left: 24px;
  color: #d3d3d3;
  border-radius: 4px;
  border: none;
}

.article h3::after {
  position: absolute;
  top: 0.3em;
  left: 0.3em;
  content: '';
  width: 5px;
  height: -webkit-calc(100% - 1em);
  height: calc(100% - 0.7em);
  background-color: orange;
  border-radius: 2px;
}

/* -------------------------------------------
/ 『見出し（h4）』
------------------------------------------- */
.article h4 {
  position: relative;
  padding-left: 4px;
  color: #d3d3d3;
  border-radius: 4px;
  border: none;
  margin-bottom: 0.5em !important;
}

.article h4::after {
  content: "";
  display: block;
  height: 4px;
  background: -webkit-linear-gradient(to right, rgb(255, 165, 0), transparent);
  background: linear-gradient(to right, rgb(255, 165, 0), transparent);
}

/* -------------------------------------------
/ 『見出し（h5）』
------------------------------------------- */
.article h5 {
  position: relative;
  padding: 4px 10px 4px 32px;
  border-bottom: 1px solid #585858;
  margin-bottom: 0em !important;
/*  box-shadow: 0 2px 0 #333;*/
}

.article h5:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 6px;
  content: '';
  width: 9px;
  height: 9px;
  background-color: orange;
  border: 1px outset #c7c7c7;
  transform: rotate(45deg);
}

/* -------------------------------------------
/ 『見出し（h6）』
------------------------------------------- */
.article h6 {
  border: 0;
  border-bottom: 1px solid #585858;
}

/* -------------------------------------------
/ 『サイドバーの見出し（h3）』
------------------------------------------- */
.sidebar h3 {
  margin-top: 26px;
  background: none;
  padding: 12px 3px 12px 8px;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, orange 30%, #656464 30%, #656464 100%);
  border-image-slice: 1;
}

.wp-block-list {
  margin-bottom: 0.5em !important;
}


/* -------------------------------------------
/ 『ページネーション』
------------------------------------------- */
/*  『次のページ』ボタンは隠す */
.pagination-next-link,
.pager-prev-next a {
  display: none;
}

.pagination-next {
  margin: unset;
}

.page-numbers {
  position: relative;
  text-decoration: none;
  outline: none;
  color: #b2b1b1;
  transition: all .3s;
  box-sizing: border-box;
  background-image: linear-gradient(135deg, #3d3939, #0c0c0c 100%, transparent 0);
  border: 1px outset #403d3d;
  border-radius: 50%;
}

.page-numbers::before,
.page-numbers::after {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 2;
  content: '';
  transition: all .3s;
}

.page-numbers::before {
  border-top: 1px solid orange;
  border-bottom: 1px solid orange;
  transform: scale(0, 1);
}

.page-numbers::after {
  border-right: 1px solid orange;
  border-left: 1px solid orange;
  transform: scale(1, 0);
}

.pagination a:hover {
  border-radius: 50%;
  color: #ccc;
}

.pagination a:hover::after,
.pagination a:hover::before {
  border-radius: 50%;
  color: #ccc;
  transform: scale(1);
}

.pagination .current {
  color: #ddd;
  background: none;
  border: 1px outset #403d3d;
  background-image: linear-gradient(135deg, #3d3939, #0c0c0c 100%, transparent 0);
  font-size: 110%;
  border-radius: 50%;
}

/* -------------------------------------------
/ 『マルチページ』
------------------------------------------- */
.pager-numbers .current {
  color: #eee;
}

.pager-links a:hover span {
  color: #fff;
}

/* -------------------------------------------
/ 『送信系ボタン』
------------------------------------------- */
.comment-btn,
.container input[type='submit'] {
  display: block;
  width: 60%;
  background: none;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: .4s;
  margin: auto;
  color: #ccc;
}

.comment-btn:hover,
.container input[type='submit']:hover {
  color: #ccc;
  background: none;
  border: 1px solid orange;
}

input[type='submit'] {
  font-size: 22px;
}

/* -------------------------------------------
/ 『テーブル』
------------------------------------------- */
th {
	vertical-align: top;
	text-align: left;
	line-height: 1.4;
}

td {
	vertical-align: top;
	text-align: left;
	line-height: 1.4;
}

table th, table td,
.scrollable-table th,
.scrollable-table td {
  border: solid 1px #3e3e3e;
}

table th, .scrollable-table th {
  background-color: #bb4548 !important;
  color: #d3d3d3;
}

table tr:nth-of-type(2n+1) {
  background-color: #38383c !important;
}

table tr:nth-of-type(2n) {
  background-color: #474a4d !important;
}

#wp-calendar th,
#wp-calendar td {
  border: solid 1px #3e3e3e;
}

@media screen and (max-width: 834px) {
  table th, table td {
  border: solid 1px #3e3e3e;
  padding: 0px;
  text-align: center;
  line-height: 1.8;
  }
}

/* テーブルブロック対応 */
.wp-block-table thead {
  border-bottom: none;
}

.wp-block-table td, .wp-block-table th {
  border: 1px solid #3e3e3e;
  padding: 1px;
  font-family: "BIZ UD Gothic Custom", "BIZ UDGothic", "Courier New", Meiryo, monospace;
  font-size: 0.75em;
  font-weight: normal;
}

.wp-block-table figcaption {
  margin-top: 15px;
}

/* -------------------------------------------
/ 『投稿ナビ』
------------------------------------------- */
.pager-post-navi a.prev-post {
  margin-bottom: 2px;
}

/* -------------------------------------------
/ 『ウィジェット：エントリカード／コメント』
------------------------------------------- */
.widget-entry-cards figure,
.carousel-entry-card figure {
  overflow: hidden;
}

.carousel-in {
  background-color: #121212;
}

.widget-entry-card .card-thumb img,
.carousel-entry-card .card-thumb img {
  transform: none;
  transition: .3s ease-in-out;
}

.widget-entry-cards .a-wrap:hover .widget-entry-card .card-thumb img,
.carousel .a-wrap:hover .card-thumb img {
  transform: scale(1.3);
}

.carousel .a-wrap {
  border-bottom: 1px solid transparent;
}

.carousel .a-wrap:hover {
  border-bottom: 1px solid orange;
}

.recent-comments .a-wrap {
  border: 1px solid transparent;
  color: #ccc;
  box-sizing: border-box;
  transition: .3s;
}

.recent-comments .a-wrap:hover {
  color: #ccc;
  border: 1px solid rgba(255, 255, 255, .5);
}

.recent-comment-content {
  background: #121212;
  border: 1px solid #505050;
  color: #d3d3d3;
}

.recent-comment-content::before {
  border-bottom-color: #505050;
}

.recent-comment-content::after {
  border-bottom-color: #121212;
}

.widget_recent_entries ul li a,
.widget_categories ul li a,
.widget_archive ul li a,
.widget_pages ul li a,
.widget_meta ul li a,
.widget_rss ul li a,
.widget_nav_menu ul li a,
.widget_block .wp-block-archives li a,
.widget_block .wp-block-categories li a,
.widget_block .wp-block-latest-posts li a {
  color: #d3d3d3;
  border-bottom: 1px solid #050505;
  transition-duration: .2s;
  box-shadow: 0 2px 0 #282727;
}

.widget_recent_entries ul li a:hover,
.widget_categories ul li a:hover,
.widget_archive ul li a:hover,
.widget_pages ul li a:hover,
.widget_meta ul li a:hover,
.widget_rss ul li a:hover,
.widget_nav_menu ul li a:hover,
.widget_block .wp-block-archives li a:hover,
.widget_block .wp-block-categories li a:hover,
.widget_block .wp-block-latest-posts li a:hover {
  background-color: #303030;
  color: #d3d3d3;
}

.widget_recent_entries ul li a,
.widget_block .wp-block-latest-posts li a {
  padding: 5px 2px 5px 5px;
}

.card-arrow .a-wrap:hover::after {
  color:orange;
}

/* -------------------------------------------
/ 『ウィジェット：アーカイブ／カテゴリー』
------------------------------------------- */
.widget_archive ul li a,
.widget_pages ul li a,
.widget_meta ul li a,
.widget_nav_menu ul li a {
  padding: 5px 4px 5px 5px;
}

.widget_categories ul li a,
.widget_block .wp-block-categories li a {
  padding: 5px 4px 5px 22px;
  position: relative;
}

.cat-item .cf::after {
  content: "";
  position: absolute;
  top: calc(40%);
  left: 4px;
  content: '';
  width: 5px;
  height: 5px;
  background-color: orange;
  border: 1px outset #616161;
  transform: rotate(45deg);
}

.children .cat-item .cf::after {
  background: orange;
  border: none;
  width: 3px;
  height: 3px;
}

/* -------------------------------------------
/ 『カテゴリーなどの数』
------------------------------------------- */
.widget_recent_entries ul li a .post-count,
.widget_categories ul li a .post-count,
.widget_archive ul li a .post-count,
.widget_pages ul li a .post-count,
.widget_meta ul li a .post-count,
.widget_rss ul li a .post-count,
.widget_nav_menu ul li a .post-count {
  font-style: italic;
  font-size: 90%;
  color: #d3d3d3;
}

/* -------------------------------------------
/ 『Topへ戻るボタン』
------------------------------------------- */
.go-to-top-button {
  border: 2px outset #b2b1b1;
  color: #b2b1b1;
  background: none;
  border-radius: 50%;
  transition: .3s;
}

.go-to-top-button:hover {
  color: orange;
	border: 2px outset orange;
}

/* -------------------------------------------
/ 『引用』
------------------------------------------- */
blockquote {
  padding: 10px 10px 10px 46px;
  box-sizing: border-box;
  font-style: italic;
  background: #e0e0e0;
  border-radius: 4px;
  background-color: #adadad;
  border: 0;
  box-shadow: 0px 0px 0 2px #333;
  border: 2px solid #202020;
}

blockquote:before {
  display: inline-block;
  top: 5px;
  left: 4px;
  content: "\f10d";
  font-family: FontAwesome;
  color: #e0e0e0;
  font-size: 24px;
  line-height: 1;
  z-index: 2;
  font-weight: 400;
  color: orange;
}

blockquote:after {
  content: '';
  left: 0;
  top: 0;
  border-width: 0 0 60px 60px;
  border-style: solid;
  border-color: transparent #121212;
  bottom: auto;
}

blockquote p {
  margin: 14px 0;
  z-index: 3;
  color: #1a1a1a;
}

/* -------------------------------------------
/ 『人気記事ランキング』
------------------------------------------- */
/* ----- 標準のランキングを隠す ----- */
.widget-entry-cards.ranking-visible [class*="no-"] .card-thumb::before {
  background: none;
}

/* ----- デフォルト ----- */
.widget-entry-cards.ranking-visible .card-thumb::before {
  content: counter(p-rank);
  position: absolute;
  top: -5px;
  left: -8px;
  line-height: 30px;
  opacity: .9;
  text-align: center;
  font-size: 18px;
  width: 32px;
  z-index: 1;
  font-weight: bold;
  font-style: italic;
  text-shadow: -1px -1px 0 #fff, 2px 1px 0 rgba(51, 51, 51, 0);
  color: #1e1d1d;
  text-align: center;
}

/* ----- 大きなサムネイル、タイトルを重ねた大きなサムネイル ----- */
.large-thumb.widget-entry-cards.ranking-visible .card-thumb::before,
.large-thumb-on.widget-entry-cards.ranking-visible .card-thumb::before {
  top: -8px;
  left: -1px;
  line-height: 50px;
  font-size: 23px;
}

/* ----- 小さいサムネイルのランキングの背景（左上の三角形） ----- */
.widget-entry-cards.ranking-visible .widget-entry-card-thumb::after {
  content: "";
  border-top: 22px solid #f2f2f2;
  border-right: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 22px solid #f2f2f2;
  opacity: .6;
  top: 0;
  left: 0;
  position: absolute;
}

/* ----- 大きなサムネイルのランキングの背景（左上の三角形） ----- */
.large-thumb.widget-entry-cards.ranking-visible .widget-entry-card-thumb::after,
.large-thumb-on.widget-entry-cards.ranking-visible .widget-entry-card-thumb::after {
  content: "";
  border-top: 32px solid #f2f2f2;
  border-right: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 32px solid #f2f2f2;
  opacity: .6;
  top: 0;
  left: 0;
  position: absolute;
}

/* -------------------------------------------
/ 『プロフィール』
------------------------------------------- */
.author-box {
  border: 2px solid #606060;
}

.author-thumb img {
  border: 3px outset #ccc;
}

.author-widget-name {
  margin-bottom: 8px;
}

/* プロフィールのSNSボタン（白抜き固定） */
.author-box .sns-follow-buttons a.follow-button {
  border-color: #c7c7c7;
	background-color:#272727;
  color: #c7c7c7;
  width: 30px;
  height: 30px;
  line-height: 1.5;
  font-size: 22px;
}

.author-box .sns-follow-buttons a.follow-button:hover {
  color: orange;
  text-shadow: white 1px 1px 0;
  background-color: #272727;
}

/* -------------------------------------------
/ 『フッターメニュー、背景』
------------------------------------------- */
.navi-footer-in a {
  color: #d3d3d3;
}

.footer-bottom.fnm-text-width .menu-footer li a:hover {
  background-color: 255, 165, 0, .5);
  color: white;
}

.footer {
　background-color:#121212;
}

/* -------------------------------------------
/ 『リンク、タグ、SNSボタン』
------------------------------------------- */
a {
  color: #508ad7;
}

.tag-link, .comment-reply-link {
  color: #ccc;
}

.sns-buttons {
  opacity: 0.8;
}

/* -------------------------------------------
/ 『モバイル』
------------------------------------------- */
#sidebar-menu-input:checked ~ #sidebar-menu-content,
#search-menu-input:checked ~ #search-menu-content,
#share-menu-input:checked ~ #share-menu-content,
#follow-menu-input:checked ~ #follow-menu-content {
  background-color: #121212;
}

.mobile-menu-buttons .menu-button > a {
  color: #d3d3d3;
}

.mobile-menu-buttons .menu-button:hover {
  background-color: #121212;
  color: #d3d3d3;
}

.mobile-menu-buttons {
  background-color: #121212;
}

#navi-menu-input:checked ~ #navi-menu-content {
  background-color: #121212;
}

.menu-drawer a {
  color: #d3d3d3;
  border-bottom: 1px solid #050505;
  box-shadow: 0 2px 0 #333;
}

.menu-drawer a:hover {
  color: #d3d3d3;
  background-color: #303030;
}

.mobile-menu-buttons .menu-icon {
  color: #d3d3d3;
}

/* -------------------------------------------
/ 『カレンダー』
------------------------------------------- */
.wp-calendar-table [id$="today"],
#slide-in-wp-calendar #slide-in-today {
  background-color: #5c5c5c;
}

.wp-calendar-table [id$="today"] a,
#slide-in-wp-calendar #slide-in-today a {
  background-color: #6d6d6d;
  color: black;
}

.wp-calendar-table td a,
#slide-in-wp-calendar td a {
  display: block;
  background-color: #3e3e3e;
  color: #ccc;
}

.wp-calendar-table td a:hover,
#slide-in-wp-calendar td a:hover {
  background-color: #7c7c7c;
}

/* -------------------------------------------
/ 『クラウドタグ／パンくずリスト』
------------------------------------------- */
.tagcloud a {
  border: 1px solid #aaaaaa;
  color: #ccc;
}

.tagcloud a:hover {
  color: #333;
}

.tagcloud a .tag-caption:hover {
  color: #333;
}

.breadcrumb a {
  color: #d3d3d3;
}

/* -------------------------------------------
/ 『入力ボックス』
------------------------------------------- */
.search-edit,
input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
textarea,
select {
  background-color: #121212;
  border: 1px solid #606060;
}

.search-box .fa-search:before {
  color: 255, 165, 0, .7);
}

/* -------------------------------------------
/ 『インデックスカードタイプ』
------------------------------------------- */
.ect-vertical-card.ect-tile-card .a-wrap {
  margin: 0 .55% 12px;
}

.ect-vertical-card.ect-tile-card .card-snippet {
  margin: 0;
}

.ect-vertical-card.ect-tile-card.ect-2-columns .entry-card-wrap {
  width: 48.5%;
  display: inline-block;
  margin-bottom: 12px;
}

.ect-3-columns .entry-card-wrap {
  width: 32%;
}

.ect-vertical-card-3 .entry-card-wrap {
  width: 32%;
}

/* -------------------------------------------
/ 『文字の色』
------------------------------------------- */
.keyboard-key {
  background-color: #121212;
  box-shadow: 1px 2px 2px #3c3b3b;
}

.orange {
  color: rgba(230, 0, 51, 0.8);
}

.orange-under {
  border-bottom: 2px solid rgba(255, 1, 0, 0.8);
}

/* -------------------------------------------
/ 『ボックス』
------------------------------------------- */
.is-style-information-box,
.is-style-question-box,
.is-style-alert-box,
.is-style-memo-box,
.is-style-comment-box,
.is-style-ok-box,
.is-style-ng-box,
.is-style-good-box,
.is-style-bad-box,
.is-style-profile-box,
.information-box,
.question-box,
.alert-box,
.information,
.question,
.alert,
.memo-box,
.comment-box,
.common-icon-box {
  background-color: transparent;
  border-width: 2px;
}

.primary-box,
.sp-primary,
.primary,
.success-box,
.sp-success,
.success,
.info-box,
.sp-info,
.info,
.warning-box,
.sp-warning,
.warning,
.danger-box,
.sp-danger,
.danger,
.secondary-box,
.light-box,
.dark-box,
.blank-box.sticky {
  opacity: 0.85;
}

span[class^="marker"] {
  color: #595858;
}

span[class^="marker-under"] {
  color: #d3d3d3;
}

.marker-under {
  background: linear-gradient(transparent 60%, #939310 60%);
}

.marker-under {
  background: linear-gradient(transparent 60%, rgba(255, 255, 102, 0.6) 60%);
}

.marker-under-orange {
  background: linear-gradient(transparent 60%, rgba(255, 182, 185, 0.6) 60%);
}

.marker-under-blue {
  background: linear-gradient(transparent 60%, rgba(168, 218, 251, 0.6) 60%);
}

.blank-box.bb-yellow {
  border-color: #ccb723;
}

.blank-box.bb-tab.bb-yellow .bb-label {
  background-color: #ccb723;
}

.blank-box.bb-orange {
  border-color: #b91e30;
}

.blank-box.bb-tab.bb-orange .bb-label {
  background-color: #b91e30;
}

.blank-box.bb-blue {
  border-color: #3278b1;
}

.blank-box.bb-tab.bb-blue .bb-label {
  background-color: #3278b1;
}

.blank-box.bb-green {
  border-color: #389560;
}

.blank-box.bb-tab.bb-green .bb-label {
  border-color: #389560;
}

.blank-box.sticky {
  color: #595858;
}

/* -------------------------------------------
/ 『マイクロコピー』
------------------------------------------- */
.micro-balloon {
  background-color: #121212;
}

.micro-bottom.micro-balloon:before {
  border-bottom-color: #999;
}

.micro-bottom.micro-balloon:after {
  border-bottom-color: #121212;
}

.micro-balloon:before {
  border-top-color: #999;
}

.micro-balloon:after {
  border-top-color: #121212;
}

/* -------------------------------------------
/ 『コード』
------------------------------------------- */
/*
pre {
  border: 4px double #555;
  font-size: 0.75em;
  letter-spacing: 0.02em;
  font-family: "Courier New", Meiryo, monospace;
  background-color: #333333;
  padding: 2px;
}
*/
.wp-block-code {
  border: 4px double #555;
  font-size: 0.75em;
  letter-spacing: 0.05em;
  /*font-family: "Courier New", Meiryo, monospace;*/
  font-family: "BIZ UDGothic", "Courier New", Meiryo, monospace;
  background-color: #333;
  padding: 2px;
  line-height: 1.5 !important;
}
.wp-block-preformatted {
  border: 1px solid #6600ff;
  font-size: 0.75em;
  letter-spacing: 0.05em;
  /*font-family: "Courier New", Meiryo, monospace;*/
  font-family: "BIZ UDGothic", "Courier New", Meiryo, monospace;
  background-color: #330066;
  padding: 2px;
  line-height: 1.5 !important;
  }


/* -------------------------------------------
/ 『吹き出し』
------------------------------------------- */
.speech-icon img, .speech-icon amp-img {
  border: 2px solid var(--cocoon-custom-border-color);
  background-color: #b6b6b6;
}

div.speech-balloon {
  background-color: var(--cocoon-custom-background-color);
  border-color: var(--cocoon-custom-border-color);
}

.sbs-flat .speech-balloon,
.sbs-line.sbp-r .speech-balloon {
  background-color: var(--cocoon-custom-background-color);
}

.speech-balloon::before {
  border-right-color: var(--cocoon-custom-border-color);
}

.speech-balloon::after,
.sbs-flat .speech-balloon::after {
  border-right-color: var(--cocoon-custom-background-color);
}

.sbp-r .speech-balloon::before {
  border-left-color: var(--cocoon-custom-border-color);
}

.sbp-r .speech-balloon::after,
.sbs-line.sbp-r .speech-balloon::after {
  border-left: 12px solid var(--cocoon-custom-background-color);
}

/* -------------------------------------------
/ 『画像（薄い影）』
------------------------------------------- */
.iwe-shadow img, .iwe-shadow amp-img {
  box-shadow: 5px 5px 15px #a3a0a0;
}

/* -------------------------------------------
/ Font Awesome5対応
------------------------------------------- */
.font-awesome-5 .cat-item a::before,
.font-awesome-5 blockquote::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* -------------------------------------------
/ 『カルーセル・パンくずリスト背景対応』
------------------------------------------- */
.carousel .slick-arrow:before {
  color: orange;
}

.carousel-in,
.breadcrumb.sbp-main-before,
.breadcrumb.sbp-footer-before,
.breadcrumb.pbp-main-before,
.breadcrumb.pbp-footer-before {
  background-color: transparent;
}

.slick-dots li.slick-active button:before {
  color: orange;
}

.slick-dots li button:before {
  color: #666;
  opacity: 1;
}

/* -------------------------------------------
/ 『ボックスメニュー対応』
------------------------------------------- */
.box-menu {
  background-color: transparent;
  color: #d3d3d3;
}

.appeal-content,
.block-box-label,
.toggle-button {
  color: #333;
}

.appeal-button {
  background-color: #4c4c4c;
}

.label-box-label {
  color: #fff;
  text-shadow: #121212 3px 0 0, #121212 2px 1px 0, #121212 2px 2px 0, #121212 2px 3px 0, #121212 1px 3px 0, #121212 0 3px 0, #121212 -1px 3px 0, #121212 -2px 2px 0, #121212 -3px 1px 0, #121212 -3px 0 0, #121212 -3px -1px 0, #121212 -3px -2px 0, #121212 -2px -2px 0, #121212 -1px -3px 0, #121212 0 -3px 0, #121212 1px -3px 0, #121212 2px -2px 0, #121212 2px -2px 0, #121212 3px -1px 0;
}

.search-edit, input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea, select {
  color: #d3d3d3 !important;
}

/* -------------------------------------------
/ 『固定ヘッダー』
------------------------------------------- */
.fixed-header .header {
  background-color: #121212;
}

/* -------------------------------------------
/ 『トップページ』
------------------------------------------- */
.index-tab-buttons .index-tab-button {
  position: relative;
  background:none;
  border:none;
  min-width: auto;
  transition: .4s;
}

#index-tab-1:checked ~ .index-tab-buttons .index-tab-button[for=index-tab-1], 
#index-tab-2:checked ~ .index-tab-buttons .index-tab-button[for=index-tab-2], 
#index-tab-3:checked ~ .index-tab-buttons .index-tab-button[for=index-tab-3], 
#index-tab-4:checked ~ .index-tab-buttons .index-tab-button[for=index-tab-4] {
  position: relative;
  border-radius: 0;
  border:none;
  background:none;
  color:#f6f6f6;
  border-bottom: 1px solid orange;
}

#index-tab-1:not(:checked) ~ .index-tab-buttons .index-tab-button[for="index-tab-1"], 
#index-tab-2:not(:checked) ~ .index-tab-buttons .index-tab-button[for="index-tab-2"], 
#index-tab-3:not(:checked) ~ .index-tab-buttons .index-tab-button[for="index-tab-3"], 
#index-tab-4:not(:checked) ~ .index-tab-buttons .index-tab-button[for="index-tab-4"] {
  border-radius: 0;
  border-bottom: 1px solid #656464;
}

#index-tab-1:not(:checked) ~ .index-tab-buttons .index-tab-button[for="index-tab-1"]:hover, 
#index-tab-2:not(:checked) ~ .index-tab-buttons .index-tab-button[for="index-tab-2"]:hover, 
#index-tab-3:not(:checked) ~ .index-tab-buttons .index-tab-button[for="index-tab-3"]:hover, 
#index-tab-4:not(:checked) ~ .index-tab-buttons .index-tab-button[for="index-tab-4"]:hover {
  border-radius: 0;
  color: white;
  border-bottom: 1px solid orange;
}

.list-title-in::before, 
.list-title-in::after {
  background-color: orange;
}

.list-more-button {
  color: #d3d3d3;
}

.list-more-button:hover {
  background-color: #121212;
  color: #d3d3d3;
  border: 2px solid orange;
}

.list-new-entries .list-title {
  margin-top: 1em;
}
/* -------------------------------------------
/ 『SNSボタン』
------------------------------------------- */
/* ブランドカラー */
.bc-brand-color.sns-share .sns-buttons a, 
.bc-brand-color.sns-follow .sns-buttons a {
  color: #121212;
  background-color: #d2d2d2;
  transition: .3s;
}

.bc-brand-color.sns-share .sns-buttons a:hover, 
.bc-brand-color.sns-follow .sns-buttons a:hover {
  opacity: 1;
  color: orange;
  text-shadow: white 1px 1px 0;
  background-color: #d2d2d2;
}

/* ブランドカラー（白抜き） */
.bc-brand-color-white.sns-share .sns-buttons a, 
.bc-brand-color-white.sns-follow .sns-buttons a {
  color: #c7c7c7;
  border-color: #c7c7c7;
  background-color: #121212;
  transition: .5s;
}

.bc-brand-color-white.sns-share .sns-buttons a:hover, 
.bc-brand-color-white.sns-follow .sns-buttons a:hover {
  opacity: 1;
  color: orange;
  text-shadow: white 1px 1px 0;
}

/* -------------------------------------------
/ 『タグ、コメント、パンくず』リンク
------------------------------------------- */
.tag-link,
.comment-reply-link {
  color: gold;
}

.tag-link:hover,
.comment-reply-link:hover,
.breadcrumb a:hover {
  background-color: rgba(255, 215, 0, .8);
  color: black;
}

.fa-folder:before,
.fa-folder-open:before {
  color: gold;
}

.fa-home:before,
.fa-tags:before,
.breadcrumb .fa-folder:before {
  color: gold;
}


/* カスタム色対応 */
.speech-wrap,
.toggle-box,
.timeline-box,
.iconlist-box,
.faq-wrap,
.caption-box,
.tab-caption-box,
.label-box,
.micro-balloon,
.micro-text {
  --cocoon-custom-text-color: #d3d3d3;
}

.speech-wrap {
  --cocoon-custom-background-color: #121212;
  --cocoon-custom-text-color: #d3d3d3;
  --cocoon-custom-border-color: var(--cocoon-basic-border-color);
}

.sbs-line.sbp-r .speech-balloon:not(.has-background) {
  background-color: var(--cocoon-custom-background-color);
}

.sbs-line.sbp-r .speech-balloon:not(.has-background):not(.has-border-color) {
  --cocoon-custom-background-color: #121212;
  --cocoon-custom-border-color: #85e249;
}

.toggle-box {
  --cocoon-custom-background-color: transparent;
}

.has-box-style,
.has-border {
  --cocoon-box-border-color: #ccc;
}

.is-style-border-thin-and-thick,
.is-style-border-radius-s-thin-and-thick,
.is-style-border-radius-l-thin-and-thick {
  border-color: rgba(255, 255, 255, 0.1);
}

.is-style-stripe-box {
  background-image: repeating-linear-gradient(-45deg, #333 0, #333 3px, transparent 3px, transparent 6px);
}

.is-style-checkeorange-box {
  background-image: linear-gradient(90deg, rgba(232, 238, 236, 0.1) 50%, transparent 50%), linear-gradient(rgba(234, 236, 238, 0.1) 50%, transparent 50%);
}

.is-style-stitch-box {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.2);
}

.is-style-border-top-box {
  box-shadow: 0 3px 5px rgba(255, 255, 255, 0.22);
}

.is-style-border-left-box {
  box-shadow: 0px 2px 3px rgba(255, 255, 255, 0.33);
}

[class^="is-style-balloon-"], [class*=" is-style-balloon-"] {
  --cocoon-white-color: #121212;
  background: var(--cocoon-white-color);
  border: 1px solid var(--cocoon-box-border-color);
}

/* テーブル罫線変更対応 */
table:not(.has-border-color) th,
table:not(.has-border-color) td {
    border: 1px solid #3e3e3e;
}
