@charset "UTF-8";
/*!
Theme Name: kikikaikai
Theme URI: http://kusuguru.net/
Author: http://kusuguru.net/
Author URI: http://kusuguru.net/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: kikikaikai
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

kikikaikai is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
iframe.wp-embedded-content {
  max-height: 130px;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

/* article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
} */

/* audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
} */

/* audio:not([controls]) {
  display: none;
  height: 0;
} */

/* [hidden],
template {
  display: none;
} */

a {
  background-color: transparent;
}
a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  text-transform: none;
}

select {
  text-transform: none;
}

button,
html input[type=button] {
  -webkit-appearance: button;
  cursor: pointer;
}

input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  /* line-height: 1.5; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* clear: both; */
}

p {
  margin-bottom: 1.6em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote.wp-embedded-content {
  position: relative;
  background-color: #1E1E1F;
}
blockquote.wp-embedded-content p {
  position: relative;
  font-size: 0.8rem;
  z-index: 3;
}
blockquote.wp-embedded-content a {
  text-decoration: underline;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

.google-ad ins {
  background: transparent;
  text-decoration: none;
}


big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

* {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}
*:before, *:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

ul .lbox2 {
  display: table;
  width: 100%;
}
ul .lbox2 > li {
  display: table-cell;
  float: left;
  width: 50%;
}
ul .lbox2 > li:nth-child(2n+1) {
  clear: both;
}


dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  /* Extra wide images within figure tags don't overflow the content area {
    
  }argin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

/* input[type=button], input[type=reset], input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
} */

button:hover {
  border-color: #ccc #bbb #aaa;
}

input[type=button]:hover, input[type=reset]:hover, input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active, button:focus {
  border-color: #aaa #bbb #bbb;
}

input[type=button]:active, input[type=button]:focus {
  border-color: #aaa #bbb #bbb;
}
input[type=reset]:active, input[type=reset]:focus {
  border-color: #aaa #bbb #bbb;
}
input[type=submit]:active, input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}
input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=number], input[type=tel], input[type=range], input[type=date], input[type=month], input[type=week], input[type=time], input[type=datetime], input[type=datetime-local], input[type=color] {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=range]:focus, input[type=date]:focus, input[type=month]:focus, input[type=week]:focus, input[type=time]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=color]:focus {
  color: #111;
}

textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}
@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before, .clear:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.entry-content:before, .entry-content:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.comment-content:before, .comment-content:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.site-header:before, .site-header:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.site-content:before, .site-content:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.site-footer:before, .site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, .infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
  margin-top: 3px;
}

.wp-caption-text {
  text-align: left;
  color: #757575;
  font-size: 11px;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

body {
  font-family: sans-serif , -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium";
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  background: #f0f0f0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #ffffff;
  text-decoration: none;
}
a:hover, a:active, a:visited, a:focus {
  color: #ffffff;
}

img {
  max-width: 100%;
  border: 0;
  height: auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 100%;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  font-weight: 400;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}


.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
#header {
  background: #19191A;
}
#header .container {
  background: #19191A;
  height: 100%;
  padding: 45px 40px 19px 40px;
  position: relative;
  width: 1120px;
}
#header #menu-icon {
  display: none;
  opacity: 0;
}
#header h1 .top {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
#header h1 .typo-logo {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#header h1 .typo-logo-scrolled {
  display: none;
}
#header .h-right {
  display: block;
  position: absolute;
  right: 5px;
  top: 30px;
  text-align: right;
}
#header .h-right a {
  margin-left: 15px;
}
#header .h-right a:first-of-type {
  margin-left: 0;
}

#c2e1f5
.arrow_box {
	position: relative;
	background: #88b7d5;
}
.arrow_box:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-left-color: #88b7d5;
	border-width: 30px;
	margin-top: -30px;
}
.header-category {
  display: none;
}
.adblock-top,
.adblock {
  display: none;
}
#secondary .popular-posts {
  display: block;
}
.ninja_onebutton {
    display: none;
}
#logo {
  font-size: 36px;
  font-family: "游教科書体","YuKyokasho","游明朝体", "Yu Mincho", "YuMincho";
  line-height: 36px;
  font-weight: bold;
}
#logo span {
  color: #EB0909;
}
#logo a {
  color: #FFFFFF;
}
#main , #top-main {
  overflow: auto;
  padding-top: 38px;
  background-color: #19191A;
  min-width: 1120px;
}

/******************************************************************/
/* .post-article a.mark::after {                                 */
/*     position: absolute;                                       */
/*     content: "";                                              */
/*     width: 0;                                                 */
/*     height: 0;                                                */
/*     border-style: solid;                                      */
/*     border-width: 11px 11px 0 0;                              */
/*     border-color: #ff9224 transparent transparent transparent; */
/*     top: 0;                                                   */
/*     left: 0; }                                                 */
/******************************************************************/
/*********************************************/
/* .post-article .title-descriptioin .date { */
/*     margin-bottom: 0;                    */
/*     /\**********************\/           */
/*     /\* float: right;     *\/            */
/*     /\* text-align: right; *\/           */
/*     /\* font-weight: 300; *\/            */
/*     /\* font-size: 12px;   *\/           */
/*     /\**********************\/           */
/* }                                         */
/*********************************************/
/* pc designこの辺りっぽい */
#arrow {
  text-align: center;
  padding: 20px 0;
  clear: both;
}
#footer {
  background: #000000;
  overflow: hidden;
  padding: 40px 0 0 0;
  font-size: 0;
  min-width: 1120px;
}
#footer .site-footer {
  overflow: hidden;
  margin-bottom: 9px;
}
#footer .site-footer h2 {
  color: #929496;
  font-size: 28px;
  font-weight: 100;
}
#footer .site-footer .sns {
  display: none;
}
#footer .f-left {
  float: left;
}
#footer .footer-nav {
  font-size: 12px;
  margin-bottom: 12px;
  color: #737678;
}
#footer .footer-nav a {
  color: #737678;
}
#footer #copyright {
  font-size: 11px;
  color: #666666;
  font-weight: 100;
}
#footer .f-right {
  float: right;
  display: inline-block;
  text-align: right;
  color: #b85c00;
  font-size: 13px;
  font-weight: 100;
  margin-top: 32px;
}
#footer .f-right a {
  display: inline-block;
  margin-left: 6px;
  margin-bottom: 10px;
}
#footer .f-right a:first-of-type {
  margin-left: 0;
}
.page-title {
  text-align: center;
  background: none;
  padding: 0;
  margin-top: 64px;
  margin-bottom: 40px;
}
.page-title h1 {
  font-size: 28px;
  font-weight: 100;
  color: #2a2b2c;
}
/* .ads {
  margin-bottom: 13px;
}
.adblock {
  text-align: center;
  margin-bottom: 24px;
  margin-top: 24px;
}
.adblock img {
  width: auto !important;
} */
#post-detail {
  width: 67%;
  float: left;
  margin-top: 40px;
  margin-bottom: 36px;
}
#post-detail .box1 {
  padding: 0.5em 1em;
  margin: 2em 0;
  color: black;
  background: #eceff1;
  /*背景色*/
  word-break: break-all;
}
#post-detail .box1 p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 0.94rem;
  line-height: 1.9em;
  letter-spacing: 0.1em;
  word-wrap: break-word;
}
#post-detail .box2 {
  padding: 0.5em 1em;
  margin: 2em 0;
  font-size: 14px;
  color: black;
  background: #e1f5fe;
  word-break: break-all;
  line-height: 1.9em;
}
#post-detail .box2 p {
  margin: 0;
  padding: 0;
}
#post-detail .box2 p:nth-of-type(n + 2) {
  margin-top: 10px;
}

#post-detail .lightbulb :before {
	content:'\f0eb';
	margin-right:5px;
	font-family:'Font Awesome 5 Free';
	font-weight:900;
}
#post-detail  .point {
  margin: 1em 0 2em 0;
}
#post-detail  .point-title {
  display: inline-block;
	font-size: 15px;
  padding: 1px 10px 0 10px;
  background: #ffa642;
  color: #333333;
  letter-spacing: 0.1em;
	border-radius: 4px 4px 0px 0px;
}
#post-detail  .point ul, .point ol {
  position: relative;
  border: solid 2px #ffa642;
  margin: 0 0 0 0;
	padding: 1em 0.5em 1em 1em;
}
#post-detail  .point ol {
  counter-reset: number;
}
#post-detail  .point ul li, .point ol li {
  color: #000000;
	font-size: 14px;
	word-break: break-all;
  line-height: 1.6;
  padding: 0.5em 1em 0.5em 1.8em;
  list-style-type: none;
}
#post-detail  .point ul li:before {
  position: absolute;
  font-family:'Font Awesome 5 Free';
  content: '\f00c';
  left : 0.5em;
  color: #ffa642;
	font-weight:900;
	margin-left: 0.5em;
}
#post-detail  .point ol li:before {
  display: inline-block;
  position: absolute;
  font-family: "Quicksand", sans-serif;
  content: counter(number);
  counter-increment: number;
  left: 0.5em;
  width: 22px;
  height: 22px;
  border-radius: 20%;
  background: #ffa642;
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  line-height: 22px;
}
#post-detail  .point ul li:last-of-type, .point ol li:last-of-type {
  border-bottom: none;
}

#post-detail .sign {
  margin-bottom: 3em;
  color: #757575;
  word-break: break-all;
}

#post-detail .check ul {
  border: solid 2px #ffa642;
  padding: 0.5em 1em 0.5em 2.3em;
	margin: 2em 0 2em 0;
  position: relative;
}

#post-detail .check ul li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;/*ポチ消す*/
}

#post-detail .check ul li:before {
  font-family: 'Font Awesome 5 Free';
	font-weight: 900;
  content: '\f00c';
  position: absolute;
  left : 1em; /*左端からのアイコンまで*/
  color: #ffa642 /*アイコン色*/
}


#post-detail .post-article {
  float: none;
  position: relative;
  width: 100%;
  background: #fff;
  color: #333;
  padding: 36px 36px 0;
  margin-bottom: 36px;
  margin-left: 0;
  margin-right: 0;
  font-size: 14px;
  box-shadow: 0px 2px 2px 0px #c4c4c4;
  -moz-box-shadow: 0px 2px 2px 0px #c4c4c4;
  -webkit-box-shadow: 0px 2px 2px 0px #c4c4c4;
}
#post-detail .post-article::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: #ff9224 transparent transparent transparent;
  top: 0;
  left: 0;
}
#post-detail .post-article a {
  padding: 0;
  display: inline;
  color: #1237ce;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  background: none;
  font-size: 15px;
}
#post-detail .post-article img {
  margin: 20px 0 24px;
}
#post-detail .post-article .wp-caption img {
  margin-bottom: 0;
}
#post-detail .post-article .wp-caption-text a {
  color:#757575;
  font-size: 11px;
}
#post-detail p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
  word-wrap: break-word;
}
#post-detail .post-article h3 {
  font-size: 20px;
  font-weight: 500;
  border-bottom: 2px solid #ffcc80;
  padding: 12px 0px 12px 5px;
  margin: 35px 0px 20px;
}
#post-detail .post-article h4 {
  font-size: 16px;
  font-weight: 500;
  padding: 0.25em 0.5em;
  border-left: solid 5px #ffcc80;
  margin: 35px 0px 20px;
}
#post-detail .adblock {
  margin-top: 0;
}
#post-detail .bottom {
  border-top: #cecece 1px solid;
  padding-top: 36px;
  margin-bottom: 12px;
  overflow: hidden;
}
#post-detail .bottom h3 {
  font-weight: 900;
  color: #757575;
  float: left;
  clear: both;
  margin-bottom: 24px;
  width: 70px;
  float: left;
  clear: both;
  margin-bottom: 24px;
  width: 70px;
  margin: 0;
  padding: 0;
  line-height: 1;
  border: none;
  font-size: 110%;
}
#post-detail .bottom .share-btn {
  overflow: hidden;
  margin-bottom: 24px;
  float: left;
}
#post-detail .bottom .share-btn li {
  float: left;
  margin-bottom: 5px;
  margin-right: 10px;
}
#post-detail .bottom .tag {
  float: left;
  margin-bottom: 24px;
}
#post-detail .bottom .tag a {
  display: inline-block;
  margin-right: 33px;
  margin-bottom: 5px;
  font-size: 13px;
  color: #244fde;
}
#post-detail .related-article, #post-detail .popular-posts {
  background: #fff;
  margin-bottom: 12px;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  padding: 31px 36px 24px;
  box-shadow: 0px 2px 2px 0px #c4c4c4;
  -moz-box-shadow: 0px 2px 2px 0px #c4c4c4;
  -webkit-box-shadow: 0px 2px 2px 0px #c4c4c4;
}
#post-detail .related-article::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 0;
  border-color: #ff9224 transparent transparent transparent;
  top: 0;
  left: 0;
}
#post-detail .related-article .head, .popular-posts .head {
  overflow: hidden;
  margin-bottom: 8px;
}
.popular-posts .head h2 {
  font-size: 20px;
  color: #000;
  font-weight: 300 !important;
  float: left;
  text-transform: uppercase;
}
#post-detail .related-article .head span.sub , .popular-posts .head span {
  float: right;
  text-align: right;
  font-weight: 900;
  color: #757575;
  font-size: 16px;
  margin-top: 3px;
}
#post-detail .related-article li, .popular-posts li {
  overflow: hidden;
  margin-bottom: 12px;
}
.popular-posts li:last-child {
  margin-bottom: 0;
}
#post-detail .related-article li a, .popular-posts li a {
  height: 100%;
  display: block;
  border-bottom: solid 1px #F0F0F0;
}
#post-detail .related-article li:last-child a, .popular-posts li:last-child a {
  border-bottom: none;
}
#post-detail .related-article li a::after, .popular-posts li a::after {
  clear: both;
  content: "";
  display: block;
}
#post-detail .related-article li .right , .popular-posts li .right {
  float: right;
  width: 66%;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
#post-detail .related-article li .right .datetime, .popular-posts li .right .datetime {
  display: block;
  color: #757575;
  font-size: 14px;
  margin-top: 7px;
  margin-bottom: 12px;
  font-weight: 300;
}
#post-detail .related-article li .right .time, .popular-posts li .right .time {
  margin-left: 10px;
}
#post-detail .related-article li .right .slug, .popular-posts li .right .slug {
  display: none;
}
#post-detail .related-article .icatch, .popular-posts li .icatch {
  float: left;
  width: 30%;
}
#post-detail .related-article .more {
  font-size: 24px;
  font-weight: 100;
  text-align: center;
  border-top: #eaeaeb 1px solid;
  padding-top: 16px;
}
#post-detail .related-article .more a {
  color: #929496;
}

#secondary {
  float: right;
  width: 30%;
  margin: 40px 0 36px;
}
#secondary .pc-side {
  display: block;
}
#secondary .widget, .popular-posts {
  background: #fff;
  margin-bottom: 16px;
  position: relative;
  padding: 16px;
  box-shadow: 0px 2px 2px 0px #c4c4c4;
  -moz-box-shadow: 0px 2px 2px 0px #c4c4c4;
  -webkit-box-shadow: 0px 2px 2px 0px #c4c4c4;
}
#secondary .widget::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: #ff9224 transparent transparent transparent;
  top: 0;
  left: 0;
}
#secondary .widget li {
  overflow: hidden;
  margin-bottom: 12px;
}
#secondary .widget li a {
  display: block;
  border-bottom: solid 1px #F0F0F0;
}
#secondary .widget li:last-child a {
  border-bottom: none;
}
#secondary .widget li a::after {
  clear: both;
  content: "";
  display: block;
}
#secondary .widget li .right {
  float: right;
  width: 66%;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
#secondary .widget li .right .slug {
  display: none;
}
#secondary .widget li .right .datetime {
  display: block;
  color: #757575;
  font-size: 12px;
  margin-top: 7px;
  margin-bottom: 12px;
  font-weight: 300;
}
#secondary .widget li .right .time {
  margin-left: 10px;
}
#secondary .widget li:last-child {
  margin-bottom: 0;
}
#secondary .widget .icatch {
  float: left;
  width: 30%;
}
#secondary .widget .more {
  font-size: 20px;
  font-weight: 100;
  text-align: center;
  border-top: #eaeaeb 1px solid;
  padding-top: 12px;
}
#secondary .widget .more a {
  color: #95989a;
}
#secondary .head {
  overflow: hidden;
  margin-bottom: 8px;
}
#secondary .head h2 {
  font-size: 20px;
  color: #000;
  font-weight: 300 !important;
  float: left;
  text-transform: uppercase;
}
#secondary .head span {
  float: right;
  text-align: right;
  font-weight: 900;
  color: #757575;
  font-size: 16px;
  margin-top: 3px;
}
#secondary .side-adblock {
  text-align: center;
}
#secondary .side-adblock h2 {
  font-weight: 900;
  color: #757575;
  font-size: 14px;
  margin-bottom: 8px;
  text-align: left;
}
/*--------------------------------------------------------------
## pageination
--------------------------------------------------------------*/
.pageination {
  text-align: center!important;
  /* clear: both; */
  margin-top: 70px;
  margin-bottom: 12px;
}
.pageination ul {
  font-size: 15px;
  font-weight: 600;
}
.pageination ul li {
  /* width: 4%; */
  width: 38px;
  height: 38px;
  line-height: 38px;
  display: inline-block;
  margin-left: 6px;
  margin-right: 6px;
  background-color: #fff;
  border-radius: 4px;
  /* border: solid 1px #c3c3c3; */
}
.pageination ul li a {
  color: #428BB9;
  display:block;
  width: 100%;
  height: 100%;
  font-weight: 600;
}
.pageination ul .paging-last {
  background-image: url(/wp-content/themes/kikikaikai/img/pageination-arrows.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 16px 16px;
}
.pageination ul .paging-last-nonactive {
  transform: scale(-1, 1);
  background-image: url(/wp-content/themes/kikikaikai/img/pageination-arrows-nonactive.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 16px 16px;
}
.pageination ul .paging-first {
  transform: scale(-1, 1);
  background-image: url(/wp-content/themes/kikikaikai/img/pageination-arrows.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 16px 16px;
}
.pageination ul .paging-first-nonactive {
  background-image: url(/wp-content/themes/kikikaikai/img/pageination-arrows-nonactive.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 16px 16px;
}
.pageination ul .paging-current {
  background-color: #428BB9;
}
/* ハンバーガーメニュー */
#ham-menu {
  background-color: #fff;
  /*メニュー背景色*/
  box-sizing: border-box;
  height: 100%;
  padding: 10px 40px;
  /*メニュー内左右上下余白*/
  position: fixed;
  right: -300px;
  /*メニュー横幅 width と合わせる*/
  top: 0;
  transition: transform 0.3s linear 0s;
  /*0.3s はアニメーションにかかる時間*/
  width: 300px;
  /*メニュー横幅*/
  z-index: 1000;
}

#menu-background {
  background-color: #fff3e0;
  /*黒背景*/
  display: block;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  overflow-y: scroll;
  right: 0;
  top: 0;
  transition: all 0.3s linear 0s;
  /*0.3s はアニメーションにかかる時間*/
  width: 100%;
  z-index: -1;
  margin-top: 58px;
  max-height: calc(100vh - 58px);
}

#menu-cover-header {
  background-color: #fff3e0;
  /*黒背景*/
  opacity: 0;
  transition: all 0.3s linear 0s;
  /*0.3s はアニメーションにかかる時間*/
  z-index: -1;
  height: 58px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

#menu-layer {
  background-color: #fff3e0;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s linear 0s;
  z-index: -1;
}

header #menu-icon {
  display: block;
  opacity: 1;
  background-color: #fff;
  /*アイコン部分背景色*/
  border-radius: 0 0 0 10px;
  /*左下角丸*/
  color: #333;
  /*アイコン（フォント）色*/
  cursor: pointer;
  /*******************/
  /* display: block; */
  /*******************/
  font-size: 50px;
  /*アイコン（フォント）サイズ*/
  height: 50px;
  /*アイコン縦高さ*/
  line-height: 50px;
  /*縦位置中央化*/
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 50px;
  /*アイコン横幅*/
  transition: all 0.3s linear 0s;
  /*0.3s はアニメーションにかかる時間*/
  z-index: 1000;
}

#menu-icon img {
  height: 35px;
}

#menu-cb {
  display: none;
  /*チェックボックス本体は消しておく*/
}
#menu-cb:checked ~ #ham-menu,
#menu-cb:checked ~ #menu-icon {
  background-color: #fffaf3;
}
#menu-cb:checked ~ #menu-layer {
  opacity: 1;
  pointer-events: auto;
  z-index: -1;;
}
#menu-cb:checked ~ #menu-background {
  opacity: 1;
  z-index: 998;
  pointer-events: auto;
}
#menu-cb:checked ~ #menu-cover-header {
  opacity: 0.3;
  z-index: 999;
}

/* 表示させたメニューのスタイル */
#menu-background ul {
  display: block;
}

.menu-ul > :first-child {
  margin-top: 0;
}

.menu-li-category {
  display: none;
}

.menu-li-category-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  margin: 0;
}

.menu-li-category-title {
  font-size: 1.2em;
  line-height: 1.222;
  letter-spacing: 0.1rem;
  color: black;
  width: 100%;
  padding: 0 15px 20px;
  display: block;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  background-color: transparent;
}

.menu-li-link {
  background-image: url(/wp-content/themes/kikikaikai/img/arrow-menu.png);
  background-repeat: no-repeat;
  background-size: 12px 13px;
  background-position: right 15px center;
  border-top: 1px solid #ccb692;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 9;
  font-size: 100%;
  display: line-item;
  text-align: -webkit-match-parent;
}
.menu-li-link:last-child {
  border-bottom: 1px solid #ccb692;
}
.menu-li-link a {
  font-size: 1.06667rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  color: black;
  display: block;
  padding: 20px 30px 20px 15px;
}

/* 忍者のソーシャルボタンはオーバーレイのみ表示する */
.ninja_onebutton_output_horizontal {
  display: none;
}

/* カテゴリ表示用 */

.catebox {
    margin: 12px;
    font-weight: bold;
    text-align: left;
    color: #000;
    background: #ffffff;
    border-radius: 4px;
}
.cat_title {
    padding: 10px;
	  border-radius: 5px 5px 0px 0px;
	  border-bottom: 1px solid #ccc;
    background: linear-gradient(to bottom, #FDFDFD, #fffae8);
}
.tit {
    font-size:18px;
    line-height:110%;
}
.cat {
    margin:0;
    padding:4px 0 1px;
    min-height:55px;
    background: url(https://kikikaikai.net/wp-content/uploads/icon_forward.png) no-repeat right center;
    -webkit-background-size: 14px 10px,16px 16px;
    -moz-background-size: 14px 10px,16px 16px;
    -o-background-size: 14px 10px,16px 16px;
    -ms-background-size: 14px 10px,16px 16px;
    background-size: 14px 10px,16px 16px;
    border-bottom:1px solid #ccc;
    clear:both;
}
.cat a {
    display:block;
    padding:3px 0 0;
    min-height:55px;
}
.cat .img {
    margin:0 10px;
    float:left;
}
.cat .tit {
    margin:16px 25px 0 60px;
    font-size:15px;
    font-weight:bold;
    color:rgb(38, 24, 240);
    list-style-type:none;
}
.recommend .cat:first-child {
    border-top:1px solid transparent;
}
.recommend .cat:last-child {
    border-bottom:1px solid #FFF;
}

@font-face {
  font-display: swap;
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  src: url("/wp-content/themes/kikikaikai/font/fa-brands-400.eot");
  src: url("/wp-content/themes/kikikaikai/font/fa-brands-400.eot?#iefix") format("embedded-opentype"),
       url("/wp-content/themes/kikikaikai/font/fa-brands-400.woff2") format("woff2"),
       url("/wp-content/themes/kikikaikai/font/fa-brands-400.woff") format("woff"),
       url("/wp-content/themes/kikikaikai/font/fa-brands-400.ttf") format("truetype"),
       url("/wp-content/themes/kikikaikai/font/fa-brands-400.svg#fontawesome") format("svg");
}

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
}

@font-face {
  font-display: swap;
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  src: url("/wp-content/themes/kikikaikai/font/fa-regular-400.eot");
  src: url("/wp-content/themes/kikikaikai/font/fa-regular-400.eot?#iefix") format("embedded-opentype"),
       url("/wp-content/themes/kikikaikai/font/fa-regular-400.woff2") format("woff2"),
       url("/wp-content/themes/kikikaikai/font/fa-regular-400.woff") format("woff"),
       url("/wp-content/themes/kikikaikai/font/fa-regular-400.ttf") format("truetype"),
       url("/wp-content/themes/kikikaikai/font/fa-regular-400.svg#fontawesome") format("svg");
}

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}

@font-face {
  font-display: swap;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  src: url(/wp-content/themes/kikikaikai/font/fa-solid-900.eot);
  src: url(/wp-content/themes/kikikaikai/font/fa-solid-900.eot?#iefix) format("embedded-opentype"),
       url(/wp-content/themes/kikikaikai/font/fa-solid-900.woff2) format("woff2"),
       url(/wp-content/themes/kikikaikai/font/fa-solid-900.woff) format("woff"),
       url(/wp-content/themes/kikikaikai/font/fa-solid-900.ttf) format("truetype"),
       url(/wp-content/themes/kikikaikai/font/fa-solid-900.svg#fontawesome) format("svg");
}

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.global-menu {
  width:100%;
  min-width: 1120px;
  background: #19191A;
}
.global-menu ul {
  overflow:hidden;
  /* background: #19191A; */
  list-style:none;
  margin: 0 auto;
  z-index: 20;
  max-width: 1120px;
  width: 1120px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0;
}
 
.global-menu ul li {
  display: inline-block;
  /* padding: 18px 0 18px 0; */
  width: 140px;
  text-align: center;
  border: 1px solid #707070;
}
.global-menu ul li.active-menu {
  background-color: #428BB9;
}
.global-menu ul li a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 18px 0 18px 0;
}

.global-menu ul li:not(:first-child){
  border-left: none;
}

.sub-menu {
  width:100%;
  min-width: 1120px;
  background: #DADADA;
}
.sub-menu ul {
  position: relative;
  /* overflow:hidden;
  list-style:none; */
  margin: 0 auto;
  z-index: 20;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0;
}
 
.sub-menu ul li {
  padding: 24px 0 24px 0;
  margin-right: 50px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: #1E1E1F;
}
.sub-menu ul li a {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #D7266E;
  position: relative;
  margin-left: 8px;
}
.sub-menu ul li a.past-gp {
  margin-left: 22px;
  font-weight: 600;
}
.sub-menu ul li a::after {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/icon-arrow-right-pink.png);
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 3px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 3.2px;
  right: -13px;
}
.sub-menu .post-button , .sub-menu .logged-in-button {
  background-color: #428BB9;
  top: 10px;
  right: 0;
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  width: 170px;
  height: 40px;
  line-height: 1;
  text-align: center;
  border-radius: 19px;
  color: #FFFFFF !important;
  padding-top: 13px;
}
.sub-menu .logged-in-button {
  padding-top: 13px;
  background-color: #D7266E;
}
.sub-menu .post-button::before , .sub-menu .logged-in-button::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/post-icon.png);
  display: inline-block;
  vertical-align: text-top;
  width: 17px;
  height: 17px;
  margin-top: -2px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}
.sub-menu .logged-in-button::before {
  background-image: url(/wp-content/themes/kikikaikai/img/logged-in-icon.png);
  width: 23px;
  height: 23px;
  vertical-align: text-top;
  margin: -4px 6px 0 -5px;
}

.header-search {
  width: 380px;
  top: 46px;
  right: 45px;
  position: absolute;
}
.search-field {
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 300;
  border-radius: 19px !important;
  height: 35px;
  width: 100%;
  margin: 0;
  padding: 11px 16px 10px 16px !important;
  background-color: #282829;
  border: none !important;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
}
.search-field::placeholder {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
}
.search-button {
  position: absolute !important;
  border: 0 !important;
  top: 5px;
  right: 6px;
  background: none;
  padding: 0 !important;
}
.search-button-img {
  width: 40px;
  height: 22.5px;
}

#header .rod-menu {
  background-color: #1E1E1F;
  height: 32px;
}
#header .rod-menu .container {
  background-color: #1E1E1F;
  width: 1120px;
  margin: 0 auto 0 auto;
  padding: 0;
}
.rod-menu a {
  color: #FFFFFF;
  display: inline-table;
  font-size: 14px;
  font-weight: 300;
  padding-top: 8px;
  margin-right: 15px;
}
.rod-menu .rod-social {
  /* display: inline-table; */
  float: right;
  margin-top: 5px;
}
.rod-social a {
  margin: 0 0 0 8px;
  width: 116px;
  height: 23px;
  border-radius: 3px;
  text-align: center;
  padding-top: 4px;
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
}
.rod-social a.twitter {
  background-color: #1DACED;
}
.rod-social a.facebook {
  background-color: #4965AD;
}
.rod-social a.rss {
  background-color: #FD8C00;
}
#footer .footer-links {
  width: 208px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  vertical-align: top;
}
#footer .footer-links:not(:first-child) {
  margin-left: 96px;
}
#footer .links-title {
  padding: 0 0 12px 15px;
  color: #21BBFF;
  border-bottom: 1px solid #21BBFF;
  font-size: 16px;
  font-weight: 600;
}
#footer .footer-links ul {
  margin: 24px 0 0 15px;
}
#footer .footer-links li {
  margin: 12px 0 0 0;
}
#footer .footer-links a {
  color: #CCCCCC;
  font-size: 15px;
  font-weight: 600;
  /* font-family: "Hiragino Kaku Gothic"; */
}
.footer-rod-social a.top {
  background-color: #30E010;
}
.footer-rod-social a.twitter {
  background-color: #1DACED;
}
.footer-rod-social a.facebook {
  background-color: #4965AD;
}
.footer-rod-social a.rss {
  background-color: #FD8C00;
}
.footer-rod-menu {
  background-color: #1E1E1F;
  height: 50px;
  content: "";
  clear: both;
  display: block;
  min-width: 1120px;
}
.footer-rod-menu .footer-rod-social a {
  margin: 14px 0 14px 16px;
  width: 116px;
  height: 23px;
  border-radius: 3px;
  text-align: center;
  padding-top: 4px;
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
}
.footer-rod-menu a {
  color: #FFFFFF;
  display: inline-table;
  font-size: 14px;
  font-weight: 300;
  padding-top: 8px;
  margin-right: 15px;
}

.info-list {
  /* margin-top: 14px; */
  color: #DADADA;
  border: 1px solid #707070;
  background-color: #1E1E1F;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 300;
}
.info-list ul {
  margin: 11.1px 0 10.9px 17px;
}
.info-list li {
  /* margin-top: 12.6px; */
  display: inline-table;
  margin-right: 102.5px;
}
.info-list li::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/info-icon.png);
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-right: 13px;
  background-repeat: no-repeat;
  background-size: contain;
}
.info-title {
  color: #EB0909;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  margin-bottom: 25px;
}

.main-left {
  float: left;
  width: 789px;
}
.area-title-small {
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  margin-top: 55px;
}
.area-title-small-nomal::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/title-icon-nomal.png);
  display: inline-block;
  vertical-align: bottom;
  width: 14px;
  height: 17px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}
.area-title-small-orange {
  color: #FC8B00;
}
.area-title-small-orange::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/title-icon-orange.png);
  display: inline-block;
  vertical-align: bottom;
  width: 14px;
  height: 17px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}

.area-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-top: 36px;
}
.area-title-link {
  display: inline-block;
}
.area-title span {
  color:#30E010;
  font-size: 16px;
  line-height: 1;
  margin-left: 10px;
  margin-top: 3.5px;
  display: block;
}
.area-title a.profeel {
  color:#30E010;
  font-size: 16px;
  line-height: 1;
  margin-left: 10px;
  margin-top: 3.5px;
  display: block;
  font-weight: 300;
}
.area-title-nomal {
  margin-top: 39px;
  display: flex;
}
.area-title-nomal::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/title-icon-nomal.png);
  display: inline-block;
  vertical-align: bottom;
  width: 20px;
  height: 24.3px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}
.area-title-dendouiri {
  color: #FC8B00;
}
.area-title-dendouiri::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/title-icon-orange.png);
  display: inline-block;
  vertical-align: bottom;
  width: 20px;
  height: 24.3px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}
.area-title-brown {
  color: #A78358;
}
.area-title-brown::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/title-icon-brown.png);
  display: inline-block;
  vertical-align: bottom;
  width: 20px;
  height: 24.3px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}
.area-title-green {
  color: #30E010;
}
.area-title-green::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/title-icon-green.png);
  display: inline-block;
  vertical-align: bottom;
  width: 20px;
  height: 24.3px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}

.thumbnail-list , .thumbnail-list-small {
  margin-top: 24.7px;
}
.thumbnail-list ul {
  font-size: 0;
  margin-bottom: 52px;
}
.thumbnail-list li {
  width: 243px;
  height: 182px;
  display: inline-block;
  vertical-align: top;
  margin-right: 15.5px;
  position: relative;
}
.thumbnail-list li:last-child {
  margin-right: 0;
}
.thumbnail-list img {
  width: 243px;
  height: 182px;
  object-fit: cover;
}
.thumbnail-list .post-title {
  position: absolute;
  bottom: 0;
  padding: 4px 9px;
  width: 243px;
  font-size: 16px;
  font-weight: bolder;
  font-family: "游明朝体", "Yu Mincho", "YuMincho";
  background-color: rgba(25, 25, 26, 0.7);
}

.thumbnail-list-small {
  font-size: 0;
}
.thumbnail-list-small ul {
  margin-bottom: 20px;
}
.thumbnail-list-small li {
  display: inline-block;
  vertical-align: top;
  margin-right: 12px;
  position: relative;
  width: 188px;
  height: 217px;
}
.thumbnail-list-small li:nth-child(4n) {
  margin-right: 0;
}
.thumbnail-list-small li:nth-child(n + 5) {
  /* margin-top: 20px; */
}
.thumbnail-list-small img {
  width: 188px;
  height: 137px;
  object-fit: cover;
}
.thumbnail-list-small .post-title {
  /* position: absolute;
  bottom: 0; */
  padding: 10px 0 0 0;
  width: 181px;
  font-size: 15px;
  line-height: 22px;
  font-weight: bolder;
  font-family: "游明朝体", "Yu Mincho", "YuMincho";
  /* background-color: rgba(25, 25, 26, 0.7); */
}

.thumbnail-list-small .cat-title {
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  padding: 3px 8px;
  position: absolute;
  top: 0;
  left: 0;
}
.thumbnail-list .cat-title {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  padding: 3.5px 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.cat-title-tanpen {
  background-color: #D10808;
}
.cat-title-tyuuhen {
  background-color: #704DC1;
}
.cat-title-tyouhen {
  background-color: #A78358;
}
.award-taisyou {
  color: #A78358;
}

.see-next {
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  display: flex;
  justify-content: flex-end;
}
.see-next::after {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/triangle-icon.png);
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 2px 0 0 10px;
  background-repeat: no-repeat;
  background-size: contain;
}
.feature-area {
  position: relative;
  margin-top: 65px;
}
.feature-area img {
  width: 789px;
  max-height: 280px;
  object-fit: cover;
  margin-bottom: 50px;
}

.feature-area .title {
  position: absolute;
  top: 29.8px;
  left: 25px;
  font-size: 26px;
  line-height: 1;
  font-weight: bold;
  font-family: "游教科書体","YuKyokasho","游明朝体", "Yu Mincho", "YuMincho";
}
.feature-area .sub-title {
  position: absolute;
  left: 25px;
  top: 71.9px;
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  font-family: "游教科書体","YuKyokasho","游明朝体", "Yu Mincho", "YuMincho";
}

#pc-top , #pc-archive {
  padding-bottom: 99px;
  width: 1120px;
}


.head-category-list-19 {
  color: #D10808;
}
.head-category-list-19::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/title-icon-tanpen.png);
  display: inline-block;
  vertical-align: top;
  width: 20px;
  height: 24.3px;
  margin-right: 13px;
  background-repeat: no-repeat;
  background-size: contain;
}
.head-category-list-20 {
  color: #704DC1;
}
.head-category-list-20::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/title-icon-tyuuhen.png);
  display: inline-block;
  vertical-align: top;
  width: 20px;
  height: 24.3px;
  margin-right: 13px;
  background-repeat: no-repeat;
  background-size: contain;
}
.head-category-list-23 {
  color: #A78358;
}
.head-category-list-23::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/title-icon-tyouhen.png);
  display: inline-block;
  vertical-align: top;
  width: 20px;
  height: 24.3px;
  margin-right: 13px;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-list li {
  width: 370px;
  height: 120px;
}
.category-list .left {
  float: left;
  /* width: 70%; */
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.card-list {
  font-size: 0;
}
.card-list-left , .card-list-right {
  width: 380px;
}
.card-list-left > ul , .card-list-right > ul {
  margin: 0 !important;
}
.card-list-left {
  margin-right: 10px;
}
.card-list-right {
  margin-left: 10px;
}
.card-list-right::after {
  content: '';
  clear: both;
}
.card-list > ul {
  margin: 24.7px 0 30px 0;
}
.card-list li {
  display: inline-block;
  background-color: #1E1E1F;
  width: 384.5px;
  vertical-align: top;
  padding: 10px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border-bottom: 1px solid #707070;
}
.card-list li:nth-child(n + 3) {
  margin-top: 30px;
}
.card-list li:nth-child(2n) {
  margin-left: 20px;
}
.card-list-left li:nth-child(2n), .card-list-right li:nth-child(2n) {
  margin-left: 0;
}
.card-list .left {
  float: left;
  width: 240px;
}
.card-list li .award {
  font-size: 12px;
  font-weight: 600;
  color: #C9CACA;
  margin-bottom: 6px;
  line-height: 1;
}
.card-list .left-meta {
  /* margin-left: 5px; */
  /* position: absolute; */
  top: 0;
  left: 42px;
}

.card-list .icatch img {
  float: right;
  width: 104px;
  height: 78px;
  object-fit: cover;
}
.card-list .left-aword-title{
  color: #C9CACA;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 10px;
}
.card-list .left-title {
  font-size: 18px;
  font-weight: bolder;
  font-family: "游明朝体", "Yu Mincho", "YuMincho";
  margin-bottom: 6px;
}
.card-list .left-creator-name {
  font-size: 12px;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 11.1px;
  font-family: "游明朝体", "Yu Mincho", "YuMincho";
}
.card-list .left-creator-name-award {
  font-size: 12px;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 11.6px;
  font-family: "游明朝体", "Yu Mincho", "YuMincho";
}

.card-list .left-info {
  position: relative;
  font-size: 10px;
  font-weight: 300;
  margin-bottom: 10px;
}
.card-list .cat-title {
  padding: 3px 8px;
  line-height: 1;
}
.card-list .datetime {
  font-size: 10px;
  font-weight: 300;
  line-height: 1;
  color: #878787;
}

.left-meta {
  font-size: 10px;
  font-weight: 300;
}

.card-list .ranking {
  color: #C9CACA;
  margin-right: 5px;
  padding-top: 1px;
  display: inline-block;
}
.card-list .ranking::before{
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/rank-icon.png);
  display: inline-block;
  vertical-align: bottom;
  width: 14px;
  height: 14px;
  margin-right: 3px;
  background-repeat: no-repeat;
  background-size: contain;
}
.like {
  color: #D10808;
  padding-top: 1px;
  display: inline-block;
}
.like::before{
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/like-icon.png);
  display: inline-block;
  vertical-align: bottom;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-size: contain;
}

.bad {
  color: #1DACED;
  padding-top: 1px;
  display: inline-block;
}
.bad::before{
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/bad-icon.png);
  display: inline-block;
  vertical-align: bottom;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  margin-left: 5px;
  background-repeat: no-repeat;
  background-size: contain;
}
.comment {
  color: #9D9C9C;
  padding-top: 1px;
  display: inline-block;
}
.comment::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/comment-icon.png);
  display: inline-block;
  vertical-align: bottom;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  margin-left: 7px;
  background-repeat: no-repeat;
  background-size: contain;
}

.old-awards {
  background-color: #1D1D1D;
  color: #A78358;
  padding-bottom: 10px;
  margin-top: 65px;
}
.keyword {
  background-color: #1D1D1D;
  color: #959595;
  padding-bottom: 50px;
  margin-top: 65px;
}
.keyword a , .old-awards a {
  color: #959595;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 13px 0 13px 0;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #707070;
  display: inline-block;
  width: 229.6px;
  background-color: #202938;
}
.keyword ul {
  font-size: 0;
  padding: 0 29px 10px 29px;
}
.old-awards ul {
  font-size: 0;
  padding: 24px 29px 10px 29px;
}
.keyword li , .old-awards li {
  display: inline-block;
  vertical-align: top;
  margin: 0 21px 40px 0;
  /* background-color: #202938; */
}
.keyword li:nth-child(3n) , .old-awards li:nth-child(3n){
  margin-right: 0;
}
.keyword-title , .old-awards .area-title {
  border-bottom: 1px solid #707070;
  padding: 13px 0 13px 20px;
}
.keyword-description {
  padding: 28px 29px 36px;
}
.keyword-description p {
  line-height: 1.6;
  font-size: 15px;
}
.keyword-area-open {
  position: relative;
  width: 300px;
  margin: 0 auto 0 auto;
}
.keyword-area-open a {
  padding: 13px auto;
  width: 300px;
}
.movie-title {
  color: #21BBFF;
}
.movie-title::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/title-icon-blue.png);
  display: inline-block;
  vertical-align: bottom;
  width: 26px;
  height: 26px;
  margin-right: 15px;
  background-repeat: no-repeat;
  background-size: contain;
}
.recommended-movie {
  margin-top: 70px;
}
.recommended-movie img {
  height: auto;
  width: 160px;
  object-fit: cover;
  margin: 0 auto 0 auto;
}
.recommended-movie .movies {
  margin: 25px 0 0 40px;
}
.recommended-movie .movie-item {
  text-align: center;
  width: 160px;
  display: inline-block;
  margin-right: 83px;
}
.recommended-movie .movie-item:nth-of-type(3n) {
  margin-right: 0;
}
.recommended-movie .movie-item:nth-child(n + 4) {
  margin-top: 50px;
}
.recommended-movie .movie-item-title {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}
.right-sidebar {
  width: 300px;
  float: right;
  margin-top: 90px;
  margin-bottom: 30px;
}
/* .right-sidebar::after {
  content: "";
  clear: both;
  display: block;
} */
.clearfix:after{
  content: "";
  clear: both;
  display: block;
}

.present {
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #707070;
}
.present .title {
  color: #30E010;
  font-size: 17px;
  font-weight: 600;
  position: relative;
  margin-left: 24px;
}
.present .title::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/title-icon-green.png);
  display: inline-block;
  vertical-align: bottom;
  width: 14px;
  height: 17px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -24px;
  top: 2px;
}
.present .sub-title {
  margin-top: 31px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}
.present .text {
  /* margin-top: 8px; */
  font-size: 12px;
  line-height: 22px;
  font-weight: 300;
}
.present a.post-button {
  background-color: #428BB9;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  display: block;
  height: 34px;
  padding-top: 10px;
  margin-top: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

/* ランキングエリア */
.ranking_area .term::after {
  content: '';
  display: block;
  clear: both;
}
.ranking_area .term {
  text-align: center;
}
.ranking_area .term li {
  font-size: 15px;
  line-height: 24px;
  font-weight: 200;
  padding : 15px;
  float: left;
  width: 25%;
  border-bottom: 1px solid #428BB9;
  cursor: pointer;
}
.ranking_area .term li.active {
  border-bottom: 4px solid #428BB9;
  padding-bottom: 12px;
  font-weight: 600;
}
ul.ranking-list {
  padding-top: 20px;
  /* border-top: solid 1px #707070; */
}
#pc-top .category-list ul.ranking-list , #pc-archive .popular-list ul.ranking-list , #pc-archive .ranking_area .ranking-list {
  border-top: none;
}
.ranking-list li, #sp-archive .ranking-list li{
  overflow: hidden;
  border-bottom: solid 1px #707070;
  margin-bottom: 12px;
  padding-bottom: 30px;
  /* min-height: 19.2vw; */
}
.ranking-list li a, #sp-archive .ranking-list li a{
  display: block;
}
#pc-top .ranking-list li:last-child a, #pc-archive .ranking-list li:last-child a{
  border-bottom: none;
}
#pc-top .ranking-list li:last-child, #pc-archive .ranking-list li:last-child {
  margin-bottom: 0;
}

.ranking-list li a::after, #pc-archive .ranking-list li a::after {
  clear: both;
  content: "";
  display: block;
}
.ranking-list li .right{
  float: left;
  width: 70%;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.ranking-list .icatch {
  margin-bottom: 12px;
  /* width: 24vw;
  height: 16vw; */
  width: 90px;
  height: 60px;
  float: right;
}
.ranking-list .icatch img {
  /* width: 24vw;
  height: 16vw; */
  width: 90px;
  height: 60px;
  object-fit: cover;
}

.left .cat-title {
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  /* height: 20px; */
  color: #FFFFFF;
  padding: 3px 8px;
  vertical-align: top;
  float: left;
  margin-right: 10px;
  /* margin-top: 2px; */
}
.ranking_item .left-info {
  margin: 0 0 10px 0;
}
.ranking_item .left-meta {
  margin: 15.6px 0 0 10px;
}

.ranking-score {
  display: inline-block;
  line-height: 1;
  min-width: 20px;
  padding-top: 2px;
  margin: 0 10px 0 8px;
  text-align: center;
  height: 20px;
  font-size: 14px;
  font-weight: 100;
  vertical-align: bottom;
  border: solid 1px #428BB9;
}
.ranking-icon {
  width: 30px;
  height: 30px;
  margin-right: 12px;
  margin-left: 4px;
}
img.ranking-icon + .cat-title {
  margin-top: 6.6px;
  float: none;
}
.ranking-score + .cat-title {
  margin-top: 3px;
  float: none;
}

.ranking_area .left {
  float: left;
  width: 70%;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.ranking_area .left-creator-name {
  font-size: 10px;
  font-weight: bolder;
  line-height: 1;
  margin-top: 12.4px;
  font-family: "游明朝体", "Yu Mincho", "YuMincho";
}
.ranking_area .left-title {
  font-size: 15px;
  font-weight:600;
  font-family: "游明朝体", "Yu Mincho", "YuMincho";
}

.ranking-list {
  margin-bottom: 25px;
}

.pick_up_area ul {
  margin-top: 15px;
}
.pick-up-item {
  padding: 15px 0 20px 0;
  border-bottom: solid 1px #707070;
}
.pick-up-item a::after{
  clear: both;
  content: "";
  display: block;
}
.pick-up-item .left {
  float: left;
  width: 70%;
  font-size: 14px;
  font-weight: 500;
  display: block;
  font-family: "游明朝体", "Yu Mincho", "YuMincho";
}
.pick-up-item .left-title {
  font-size: 15px;
  line-height: 22px;
  font-weight: bolder;
}
.pick-up-item .icatch img {
  width: 62px;
  height: 47px;
  object-fit: cover;
  float: right;
}
.pick_up_area .left-creator-name {
  margin-left: 10px;
  font-size: 10px;
  line-height: 1;
  font-weight: bolder;
  font-family: "游明朝体", "Yu Mincho", "YuMincho";
  padding-top: 2.6px;
  display: block;
}
.pick-up-item .left-info {
  margin-top: 14px;
}

.rightbar-categorys {
  position: sticky;
  position: -webkit-sticky;
  top: 48px;
}
.rightbar-categorys li {
  background-color: #1E1E1F;
  border-bottom: 1px solid #707070;
}
.rightbar-categorys a {
  display: block;
  padding: 21px 0  20px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #959595;
}
.rightbar-categorys ul {
  margin-top: 29px;
}
.rightbar-categorys a::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/arrow-icon.png);
  display: inline-block;
  vertical-align: top;
  width: 13px;
  height: 13px;
  margin: 0 20px 0 18px;
  background-repeat: no-repeat;
  background-size: contain;
}


.post-article {
  /* float: left; */
  margin-top: 25.7px;
  background-color: #1E1E1F;
}
.post-article a {
  /* padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 16px;
  display: block;
  background: #fff;
  box-shadow: 0px 2px 2px 0px #c4c4c4;
  -moz-box-shadow: 0px 2px 2px 0px #c4c4c4;
  -webkit-box-shadow: 0px 2px 2px 0px #c4c4c4; */
}
.post-article a.mark {
  /* position: relative; */
}
.post-article .mark .head .img img {
  /* width: 100%; */
}
.post-article img {
  /*width: 100%; */
}
.post-article .head {
  /* overflow: hidden;
  color: #757575;
	margin-bottom:30px; */
}
.post-article .head .cat-title {
  /* float: left;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 15px; */
}
.post-article .img {
  /* margin-bottom: 16px;
  line-height: 0; */
}
.post-article .post-description {
  /* font-size: 14px;
  line-height: 1.57;
  letter-spacing: -0.3px;
  font-weight: 300; */
}
.post-article .title-description {
  /* padding-top: 0;
  padding-bottom: 16px;
  padding-left: 25px;
  padding-right: 25px; */
}
.post-article .title-description .cat-title {
  /* color: #1172e8;
  font-size: 14px;
  font-weight: 300; */
}
.post-article .title-description .date {
  /* color: #6b6b6b;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 12px;
  font-size: 13px; */
}
.post-article h2 {
  /* font-size: 18px;
  font-weight: 700; */
}
.post-article p , .post-article .main-text{
  /* margin-top: 14px; */
  font-size: 18px;
  line-height: 34px;
  font-family: 'ヒラギノ明朝 ProN';
}
.topic__thumbnail {
  width: 789px;
  height: 210px;
  position: relative;
}
.topic__thumbnail img {
  width: 789px;
  height: 210px;
  object-fit: cover;
}
.article-info {
  position: absolute;
  top: 66.4px;
  /* left: 50%; */
  text-align: center;
  width: 700px;
  font-family: "游明朝体", "Yu Mincho", "YuMincho";
}
.article-title {
  /* position: absolute; */
  /* top: 66.4px; */
  /* left: 50%; */
  /* transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%); */
  font-size: 36px;
  line-height: 1;
  font-weight: bold;
  font-family: "游教科書体","YuKyokasho","游明朝体", "Yu Mincho", "YuMincho";
}
h2.article-author {
  /* position: absolute; */
  /* top: 117px; */
  /* left: 50%; */
  /* transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%); */
  margin-top: 10px;
  line-height: 1;
  font-size: 18px;
  font-weight: bold;
  font-family: "游教科書体","YuKyokasho","游明朝体", "Yu Mincho", "YuMincho";
}
.main-text {
  margin: 50px 16.5px 0 18.5px;
  padding-bottom: 50px;
}

.main-text p {
  margin: 34px 0;
}

.topic__thumbnail .cat-info {
  position: absolute;
  top: 16px;
}
.topic__thumbnail .cat-title {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  padding: 5.9px 14px;
}
.topic__thumbnail .datetime {
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  color: #DADADA;
  margin-left: 15px;
}

.post-pageinationt {
  background-color: #2B2B2C;
  height: 60px;
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
  color: #ffffff;
  border-top: 3px solid #1483CA;
}
.post-pageinationt .post-page-numbers {
  display: block;
  padding: 22px 22px 23px 22px;
  float: left;
}
.post-nav-links a:nth-child(2){
  float: right;
}
.post-nav-links span.post-page-numbers {
  float: right;
  width: 158.56px;
}

.post-pageinationt .page-index {
  text-align: center;
  padding-top: 23px;
  display: block;
}

.post-pageinationt a.prev::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/arrow-small.png);
  display: inline-block;
  vertical-align: bottom;
  width: 15px;
  height: 15px;
  margin-right: 25px;
  background-repeat: no-repeat;
  background-size: contain;
}
.post-pageinationt a.next::after {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/arrow-small.png);
  transform: scale(-1,1);
  display: inline-block;
  vertical-align: bottom;
  width: 15px;
  height: 15px;
  margin-left: 25px;
  background-repeat: no-repeat;
  background-size: contain;
}

.like-dislike-title {
  background-color: #1E1E1F;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  color: #FBFAFB;
  text-align: center;
  padding: 44.1px 0 40px 0;
}
.like-dislike-are {
  display: flex;
  margin: 0 60px 22px;
}
.like-dislike-item {
  width: 100%;
  height: 60px;
  text-align: center;
  display: block;
  padding: 22px 0;
  line-height: 16px;
  color: #FBFAFB;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
}
.like-dislike-item::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/like-dislike-icon.png);
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  margin-right: 12px;
  margin-top: -6px;
  background-repeat: no-repeat;
  background-size: contain;
}
.like-item {
  background-color: #A71010;
}
.dislike-item {
  background-color: #3B7AA2;
}
.single-menu {
  background-color: #2B2B2C;
  height: 60px;
}
.single-menu .single-menu-item , .wprc-switch {
  font-size: 16px;
  font-weight: 600;
  height: 60px;
  display: block;
  padding: 22px 185px 22px 30px;
  line-height: 16px;
  width: 50%;
  float: left;
  border: 1px solid #707070;
  border-left: none;
  border-top: none;
}
.single-menu .single-menu-item span {
  font-size: 12px;
}
.single-menu .single-menu-item:nth-child(2n){
  border-right: none;
}
.single-menu .single-menu-item::after {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/arrow-icon.png);
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 13px;
  /* margin: 0 10px 0 auto; */
  margin-top: 1px;
  float: right;
  background-repeat: no-repeat;
  background-size: contain;
}
.single-menu a.single-menu-item-blank::after {
  background-image: none;
}
.wpuf-info {
  background-color: #171717;
}
.wprc-switch {
  float: left !important;
}
.wprc-container.blue-colorscheme .wprc-content {
  border-top: 4px solid #707070 !important;
  color: #000000;
}
.wprc-submit {
  border-radius: 2px !important;
}


.comment-area {
  background-color: #1E1E1F;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.comment-title {
  background-color: #2B2B2C;
  font-size: 16px;
  font-weight: 500;
  color: #DADADA;
  height: 60px;
  padding-top: 25px;
  border-bottom: 1px solid #707070;
}
p.comment-annotation {
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}
.comment-title::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/comment-icon.png);
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin: 0 10px 0 12px;
  background-repeat: no-repeat;
  background-size: contain;
}
.comment-list {
  color: #878787;
  font-size: 13px;
  font-weight: 300;
  padding: 3px 0 40px 0;
  background-color: #1E1E1F;
}
.comment-item {
  margin: 25.5px 18px 15px 22px;
}
.comment-text {
  border: 1px solid #707070;
  border-radius: 8px;
  padding: 13px 10px 11px 13px;
}
.comment-text p {
  margin: 0 !important;
}
.comment-info {
  font-size: 10px;
  line-height: 10px;
  margin-top:4px;
  text-align: right;
  font-weight: 300;
}
.comment-form__submit {
  width: 300px;
  height: 60px;
  background-color: #428BB9 !important;
  border-radius: 2px !important;
  border: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #FFFFFF !important;
  margin: 0 auto 0 auto;
  display: block;
}
.comment-form-comment {
  margin: 18px 18px 30px 22px;
}
.comment-form-comment textarea {
  height: 120px;
}

.page-area {
  background-color: #1E1E1F;
  margin-top: 26.7px;
  padding: 40px 14px 0 14px;
  min-height: 300px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic";
  line-height: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.page-area .swpm-username-input {
  margin-bottom: 40px !important;
}
.page-area p {
  font-size: 18px;
  font-weight: 300;
  line-height: 31px;
}
.page-area.page-column p {
  font-size: 17px;
  font-weight: 300;
  line-height: 24px;
}
.page-area.page-column a {
  font-size: 15px;
  /* color: #1237ce; */
  text-decoration: underline;
}
.page-column h2 ,
h2.decoration-title ,
.tag-description h2 {
  font-size: 20pt;
  line-height: 1.4;
  font-family: "游教科書体","YuKyokasho","游明朝体", "Yu Mincho", "YuMincho";
  margin-bottom: 16px;
  background-image: url(/wp-content/themes/kikikaikai/img/h2.png);
  background-size: 100px;
  background-repeat: no-repeat;
  min-height: 50px;
  background-position: -4px 0px;
  padding: 10px 0 0;
}
.page-column h3 ,
h3.decoration-title ,
.tag-description h3 {
  font-size: 17pt;
  line-height: 1.4;
  font-family: "游教科書体","YuKyokasho","游明朝体", "Yu Mincho", "YuMincho";
  margin-bottom: 12px;
  background-image: url(/wp-content/themes/kikikaikai/img/h3.png);
  background-size: 100px;
  background-repeat: no-repeat;
  min-height: 60px;
  background-position: -27px -9px;
  padding: 20px 0 0;
}

.page-area .caption {
  font-size: 18px;
  font-weight: 300;
  line-height: 31px;
  margin: -40px -14px 0 -14px;
  padding: 25px 25px 25px 15px;
  border-bottom: 1px solid #1483CA;
}
.page-area a {
  font-size: 12px;
  font-weight: 300;
}
.page-area .user-name {
  font-size: 16px;
  font-weight: 600;
  color: #428BB9;
  margin-top: 40px;
  margin-bottom: -16px;
}
.page-area input[type=text] ,
.page-area input[type=password],
.page-area input[type=email]{
  width: 400px;
  height: 50px;
  margin-top: 10px;
  background-color: #19191A;
  border: 1px solid #707070;
  border-radius: 4px;
  color: #ffffff;
}
.page-area .swpm-login-form-submit ,
.page-area .swpm-pw-reset-submit ,
.page-area .wpuf-submit-button ,
.page-area .swpm-registration-submit {
  margin-top: 40px;
  width: 310px;
  height: 60px;
  background-color: #428BB9 !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}
.swpm-registration-submit-section {
  text-align: left;
  /* margin-bottom: 9px; */
  padding-bottom: 55px;
}
.swpm-login-submit {
  margin: 0;
  padding-bottom: 55px;
}
.wpuf-submit {
  padding-left: 0 !important;
  padding-bottom: 30px !important;
}
ul.wpuf-form li:after {
  clear: both;
  content: none;
  display: table;
}
ul.wpuf-form .wpuf-el {
  padding: 0 !important;
  padding-bottom: 10px !important;
  /* background-color: #428BB9 !important; */
}
.wpuf-fields .textareafield {
  background-color: #19191A;
  border: 1px solid #707070;
  width: 724px;
  height: 500px;
  color: #ffffff;
}
ul.wpuf-form li .wpuf-label {
  font-size: 16px;
  font-weight: 600;
  margin-top: 40px;
}
select.select-tag {
  height: 30px;
  width: 400px;
  background-color: #19191A;
  border: #707070 1px solid;
  color: #ffffff;
  font-size: 13px;
  font-weight: 300;
  margin-top: 10px;
}
.wpuf-help {
  margin-top: 12px !important;
}

ul.wpuf-form li .wpuf-fields .wpuf-help {
  color: #ffffff !important;
  font-style: unset;
  font-weight: 300;
}

.swpm-post-not-logged-in-msg , .swpm-post-not-logged-in-msg a {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}
.display {
  display: block !important;
}
.swpm-registration-widget-form {
  display: none;
}
.required-label {
  background-color: #E21414;
  padding: 2px 9px;
  text-align: center;
  margin-left: 8px;
}
.swpm-validate-form p {
  font-size: 12px;
  font-weight: 300;
}
.swpm-validate-form label {
  font-size: 16px;
  font-weight: 600;
}
.single-meta {
  padding: 11px 16px 0px 7px;
  height: 44px;
  border-bottom: 3px solid #1483CA;
}
.single-meta .rod-social a {
  display: inline-table;
}

.right-meta {
  float: right;
}
.right-meta .like::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/like-icon.png);
  display: inline-block;
  /* vertical-align: text-top; */
  width: 20px;
  height: 20px;
  margin-right: 3px;
  background-repeat: no-repeat;
  background-size: contain;
}
.right-meta .bad::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/bad-icon.png);
  display: inline-block;
  /* vertical-align: text-top; */
  width: 20px;
  height: 20px;
  margin-right: 3px;
  margin-left: 5px;
  background-repeat: no-repeat;
  background-size: contain;
}
.right-meta .comment::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/comment-icon.png);
  display: inline-block;
  /* vertical-align: text-top; */
  width: 20px;
  height: 20px;
  margin-right: 3px;
  margin-left: 5px;
  background-repeat: no-repeat;
  background-size: contain;
}
#footer {
  /* font-family: 'ヒラギノ角ゴシック'; */
}
.my-profile th {
  font-size: 16px;
  font-weight: 300;
}
.my-profile ,.post-count , .edit-member-info , .mypage-profile{
  margin-top: 26px;
  line-height: 1;
  background-color: #1E1E1F;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.my-profile .profile-title {
  font-size: 20px;
  font-weight: 600;
  color: #FD8C00;
  padding: 15px 0;
}
.my-profile .double-line {
  text-align: left;
  padding: 11px 19px;
  width: 50%;
}
.my-profile .left {
  border: 1px solid #707070;
  border-left: none;
}
.my-profile .right {
  border: 1px solid #707070;
  border-right: none;
}
.my-profile .remark {
  text-align: left;
  line-height: 27px;
  padding: 25px 20px;
}
.post-count .title {
  font-size: 20px;
  font-weight: 600;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #707070;
}
.post-count .row-info {
  padding: 20px 15px 20px 17px;
  font-size: 16px;
  font-weight: 600;
  background-color: #19191A;
}
.post-count .value {
  margin-left: 124px;
  width: 457px;
  display: inline-block;
  background-color: #373738;
  padding: 6px 0 6px 12px;
}
.post-count .link {
  margin-left: 25px;
  padding: 6px 9px;
  color: #428BB9;
  border: 1px solid #428BB9;
}
.post-count .row-title {
  width: 70px;
  display: inline-block;
}
.edit-member-info , .my-page-create-post {
  padding: 25px 0 20px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  background-color: #19191A;
}
.edit-member-info .edit-member-info-button ,.my-page-create-post .create-post{
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  width: 310px;
  height: 60px;
  display: block;
  margin: 0 auto 0 auto;
  padding: 22px 0;
  background-color: #428BB9;
  border-radius: 4px;
  margin-bottom: 21px;
}
.edit-member-info .edit-member-info-button {
  background-color: #E5AC10 !important;
}

.mypage-profile .profile-title {
  font-size: 20px;
  font-weight: 600;
  /* color: #FD8C00; */
  padding: 15px 0 16px;
  text-align: center;
  border-top: none;
  position: relative;
  background-color: #1E1E1F;
}
.mypage-profile th {
  background-color: #19191A;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-align: left;
  padding: 13px 19px;
  border-bottom: 1px solid #707070;
  border-top: 1px solid #707070;
  word-break: break-all;
}
.mypage-profile .remark {
  line-height: 24px;
  border-bottom: none;
}
.mypage-profile a.edit-profile-link {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  color: #428BB9;
  border: 2px solid #428BB9;
}

.icatch p {
  font-family: "凸版文久見出し明朝";
  font-size: 10px;
  float: right;
  width: 104px;
  text-align: center;
  margin-top: 10px;
}

.copyright {
  font-family: "Hiragino Kaku Gothic";
  text-align: center;
  margin: 63px 0 15px 0;
  color: #EB0909;
}
.copyright span.icon {
  margin-right: 4px;
  font-size: 24px;
  line-height: 1;
}
.copyright span {
  font-size: 12px;
  line-height: 24px;
  vertical-align: top;
}

.popup-menu-area {
  background-color: #FFFFFF;
  padding: 15px 0 3px 0;
  width: 234px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 21;
}
.popup-menu-area li {
  margin: 0 18px 10px 18px;
}
.popup-menu-area a {
  color: #000000;
  line-height: 1;
  font-size: 12px;
}
.popup-menu-area img {
  width: 13px;
  position: absolute;
  top: 6px;
  right: 6px;
  cursor: pointer;
}

.popup-menu-switcher::after {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/icon-down-arrow.png);
  display: inline-block;
  vertical-align: baseline;
  width: 9px;
  height: 9px;
  margin-left: 5px;
  background-repeat: no-repeat;
  background-size: contain;
}

.registration-login-area {
  /* background-color: #DADADA;
  border-top: solid 3px #1483CA; */
  padding: 20px 0 30px 17px;
  margin: 0 -14px 0 -14px;
  border-top: 3px solid #707070;
  border-bottom: 3px solid #707070;
  font-size: 12px;
  font-weight: 300;
}
.registration-login-area p {
  color: #000000;
  font-size: 12px;
  font-weight: 300;
}
.registration-login-area a {
  color: #FFFFFF;
  background-color: #E5AC10;
  border-radius: 4px;
  width: 400px;
  height: 60px;
  display: block;
  font-size: 16px;
  line-height: 1;
  padding-top: 22px;
  font-weight: 600;
  text-align: center;
  margin-top: 11px;
}

.swpm-registration-top-area {
  /* border-bottom: solid 3px #1483CA; */
  /* padding: 0 14px; */
  margin: -15px -14px 0 -14px;
}
.swpm-registration-text {
  padding: 0 14px 25px 14px;
  font-size: 18px;
  font-weight: 300;
  line-height: 31px;
}

.swpm-registration-sub-title {
  color: #428BB9;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 26px;
}
.swpm-validate-form {
  margin: 0 3px;
}

.page-about p {
  font-size: 16px;
  font-weight: 300;
  line-height: 27px;
}
.page-about {
  padding: 40px 19px 40px 19px;
  font-family: "Hiragino Kaku Gothic";
}
.about-title {
  color: #FC8B00;
}
.page-about h3 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}
.page-about h3:nth-child(n + 1){
  margin-top: 13px;
}

.page_ranking_navi {
  text-align: center;
  margin: 67.8px 0 60px 0;
  display: flex;
}
.page_ranking_navi a.active {
  background-color: #428BB9;
  padding-bottom: 12px;
  border-bottom: 3px solid #428BB9;
}
.page_ranking_navi a {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  padding: 15px 17px 12px;
  float: left;
  width: 25%;
  border-bottom: 3px solid #428BB9;
  cursor: pointer;
}
.amazon-award-area-title {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 97px;
}
.amazon-award-area {
  position: relative;
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  border: 3px solid #95928F;
  border-radius: 5px;
  padding-top: 29px;
  padding-bottom: 45px;
}
.amazon-award-area::before {
  position: absolute;
  top: -82px;
  left: calc(50% - 45px);
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/icon-tomb.png);
  display: inline-block;
  vertical-align: text-top;
  width: 90px;
  height: 90px;
  /* margin-right: 10px; */
  background-repeat: no-repeat;
  background-size: contain;
}
.amazon-award-area .award-title{
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  line-height: 1;
  display: block;
}
.amazon-award-area .award-title-special {
  color: #A78358;
  font-size: 18px;
  font-weight: 600;
  margin-top: 55px;
  margin-bottom: 30px;
  line-height: 1;
}
.amazon-award-area .award-title span{
  font-size: 14px;
}
.amazon-award-area .award-description{
  margin-top: 10px;
  color: #A78358;
}
.amazon-award-area .award-text-area {
  margin-top: 5px;
}
.amazon-award-area .award-text {
  padding-top: 10px;
}
.amazon-award-area .award-text span {
  font-weight: 600;
}
.amazon-award-remarks-area {
  font-size: 16px;
  line-height: 1;
  margin-top: 15px;
  padding-bottom: 40px;
}
.amazon-award-remarks-area .remarks-kowai {
  color: #D10808;
}
.amazon-award-remarks-area .remarks-kowai::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/like-icon.png);
  display: inline-block;
  vertical-align: baseline;
  width: 14px;
  height: 14px;
  margin-right: 1px;
  background-repeat: no-repeat;
  background-size: contain;
}

.month-award-list-card {
  display: flex;
}
.month-award-list {
  margin: 60px 0 0 0;
}
.month-award-list .card-list > ul {
  margin: 0 0 27px 0;
}
.month-award-list-title {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  margin: 0 0 50px 14px;
  color: #FC8B00;
}
.month-award-list-subtitle {
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  margin: 0 0 23px 14px;
  color: #C9CACA;
}
/* .month-award-list-subtitle:nth-of-type(n+2) {
  margin: 0 0 20px 14px;
} */
.card-list-left li:nth-child(n + 2), .card-list-right li:nth-child(n + 2) {
  margin-top: 30px;
}
.month-award-list-card .top{
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  margin: -10px -10px 10px -10px;
  padding: 4px 4px 4px 5px;
}
.month-award-list-card .brown {
  background-color: #967145;
}
.month-award-list-card .gray {
  background-color: #727272;
}
.month-award-list-card .blue {
  background-color: #273D76;
}

#swpm_message {
  margin-bottom: 36px;
}
#swpm_message li {
  margin-top: 10px;
  color: red;
}
.swpm-edit-profile-form select#gender{
  max-width: 100px;
  margin-top: 10px;
}
.swpm-profile-update-error {
  margin-bottom: 12px;
}

.swpm-edit-profile-submit {
  margin: 40px 0 55px 0;
  width: 310px;
  height: 60px;
  background-color: #428BB9 !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

.right-sidebar .ranking_area {
  margin-top: 15px;
}

.inquiry-form__inputs {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.inquiry-form dd {
  margin: 10px 0 40px 0;
}
.inquiry-form textarea {
  width: 400px;
  margin-top: 10px;
  background-color: #19191A;
  border: 1px solid #707070;
  border-radius: 4px;
  color: #ffffff;
  line-height: 1.3;
}
.inquiry-form .wpcf7-submit {
  margin: 20px 0 30px 0;
  width: 310px;
  height: 60px;
  background-color: #428BB9 !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

textarea#remark {
  width: 400px;
  height: 300px;
  resize: vertical;
  margin-top: 10px;
  background-color: #19191A;
  border: 1px solid #707070;
  border-radius: 4px;
  color: #ffffff;
}

.post-submit-button-text {
  margin-top: -27px;
  padding-bottom: 45px;
  color: red;
}

.ads {
  text-align: center;
}
.ads-flex {
  display: flex;
  justify-content: space-around;
}
ins {
  background-color:transparent;
}

.sr-only {
  position: absolute;
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin: -1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.single-sub-category {
  padding: 0 60px 22px 60px;
  color: #FFF;
  font-size: 15px;
}
.single-sub-category a {
  color: #428BB9;
  font-weight: bold;
  margin-right: 8px;
  display: inline-block;
}

.tag-description {
  margin: 20.3px 0 20.7px 0;
}
.tag-description p {
  color: #DADADA;
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
}

.bottom-about {
  margin-top: 80px;
  padding: 0 12px;
}
.bottom-about h3 {
  font-size: 24px;
  font-weight: bold;
  font-family: "游教科書体","YuKyokasho","游明朝体", "Yu Mincho", "YuMincho";
  margin-bottom: 28px;
  text-align: center;
}
.bottom-about p {
  line-height: 1.6;
  font-size: 16px;
  font-family: "游教科書体","YuKyokasho","游明朝体", "Yu Mincho", "YuMincho";
}

p.single-description {
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0 0;
}
.single-description a {
  color: #FFF;
  text-decoration: underline;
}

.tags-list-page p a {
  text-decoration: none !important;
  padding: 8px 8px;
  display: inline-block;
  width: 60%;
  border-bottom: 1px solid #707070;
}

#archive-toc {
  /* border-bottom: solid 1px #707070; */
}
/* #archive-toc .archive-toc__inner {
  margin: 14px auto 28px;
  border: solid 1px #707070;
  padding: 14px;
  max-width: 450px;
  width: 100%;
} */
#archive-toc .archive-toc__items {
  margin-left: 15px;
}
#archive-toc .archive-toc__item,
#archive-toc .archive-h3-toc__item {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

#toc_container , #archive-toc {
  margin: 14px auto 28px;
  border: solid 1px #707070;
  padding: 14px;
  max-width: 450px;
  width: 100%;
}
#toc_container p.toc_title , #archive-toc .archive-toc__title{
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}
#toc_container > ul ,
#archive-toc .archive-toc__inner > ul {
  margin-left: 22px;
}
#toc_container ul ,
#archive-toc ul {
  list-style-type: disc;
}
#toc_container ul li ,
#archive-toc ul li ,
#archive-toc ul li a {
  font-size: 15px;
}
#toc_container a {
  text-decoration: none;
}
#toc_container ul li > a {
  font-size: 15px;
  line-height: 1.6;
}
#toc_container ul li ul li > a ,
#archive-toc ul > ul > li > a {
  font-size: 13px;
  line-height: 1.4;
}
#toc_container ul li ul ,
#archive-toc ul > ul {
  margin: 4px 0 4px 15px;
}

.posting-appeal-main {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
}
.posting-appeal-main span {
  color: red;
}
.posting-appeal-area .posting-appeal-button {
  background-color: #428BB9;
  padding: 10px;
  margin: 8px 0 0 0;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.top-gp-info__inner {
  display:flex;
  margin-top: 12px;
}
.top-gp-info__taisyou {
  margin-right:10px;
  margin-top: 20px;
}
.top-gp-info__taisyou-item {
  position: relative;
}
.top-gp-info__taisyou-item-award-title {
  position:absolute;
  font-size: 20px;
  top:12px;
  left: 12px;
}
.top-gp-info__taisyou-item-post-title {
  position:absolute;
  font-size: 20px;
  bottom:14px;
  left: 14px;
}
.top-gp-info__taisyou-item-post-author {
  font-size:18px;
}
.top-gp-info__taisyou-item img {
  width:348px;
  height:302px;
  object-fit: cover;
  border:1px solid #4e4e4e;
  vertical-align: bottom;
}

.top-gp-info__jyuntaisyou {
  text-align: center;
  margin-right:10px;
  margin-top: 20px;
}
.top-gp-info__jyuntaisyou-item {
  margin-bottom:10px;
  position: relative;
  text-align: left;
}
.top-gp-info__jyuntaisyou-item:nth-child(2){
  margin-bottom: 8px;
}
.top-gp-info__jyuntaisyou-item-award-title {
  position:absolute;
  font-size: 13px;
  top:8px;
  left:8px;
}
.top-gp-info__jyuntaisyou-item-post-title {
  position:absolute;
  font-size: 12px;
  bottom: 19px;
  left: 8px;
}
.top-gp-info__jyuntaisyou-item-post-author {
  font-size:12px;
}
.top-gp-info__jyuntaisyou img {
  width:225px;
  height:133px;
  object-fit: cover;
  border:1px solid #4e4e4e;
  vertical-align: bottom;
}
.top-gp-list-link {
  font-size: 12px;
}
.top-gp-list-link::after {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/triangle-icon.png);
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 2px 0 0 10px;
  background-repeat: no-repeat;
  background-size: contain;
}

.top-gp-info__ranking .top-gp-info__ranking-title {
  font-size:12px;
  margin-bottom:8px;
  line-height:1;
}

.top-gp-ranking-item {
  width:196px;
  height:52px;
  margin-bottom: 4px;
  border: 1px solid #4e4e4e;
  padding: 3px 6px;
}
.top-gp-info__ranking .top-gp-ranking__left {
  float:left;
}
.top-gp-ranking__meta {
  line-height: 0;
}
.top-gp-ranking__post-title {
  font-size:11px;
  max-width:130px;
  display: block;
}
.top-gp-ranking__post-author {
  font-size:10px;
  max-width:130px;
  display: block;
}
.top-gp-info__ranking img {
  width:66px;
  height:45px;
  object-fit:cover;
  float:right;
}
.top-gp-ranking__meta .cat-title {
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  color: #FFFFFF;
  padding: 2px 4px;
  margin-right: 5px;
}
.top-gp-ranking__meta-ranking,.top-gp-ranking__meta-comment,.top-gp-ranking__meta-like {
  line-height: 1;
  font-size: 10px;
  margin-right: 3px;
}
.top-gp-ranking__meta-like::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/like-icon.png);
  display: inline-block;
  vertical-align: text-bottom;
  width: 10px;
  height: 10px;
  margin-right: 0px;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-gp-ranking__meta-comment::before {
  content: '';
  background-image: url(/wp-content/themes/kikikaikai/img/sp/comment-icon.png);
  display: inline-block;
  vertical-align: text-bottom;
  width: 10px;
  height: 10px;
  margin-right: 3px;
  background-repeat: no-repeat;
  background-size: contain;
}

#dendou-slider .slick-slide img {
  width: 252px;
  height: 182px;
  object-fit: cover;
}
#dendou-slider {
  margin-top: 24.7px;
  margin-bottom: 90px;
}
#dendou-slider .slick-slide {
  margin-right: 16.5px;
  position: relative;
  height: 183px;
}
#dendou-slider .slick-list {
  height: 182px;
}
#dendou-slider .slick-dots {
  bottom: -36px !important;
}
#dendou-slider .slick-slide .post-title {
  position: absolute;
  bottom: 0;
  padding: 4px 9px;
  width: 100%;
  font-size: 16px;
  font-weight: bolder;
  font-family: "游明朝体", "Yu Mincho", "YuMincho";
  background-color: rgba(25, 25, 26, 0.7);
}
#dendou-slider .slick-dots li.slick-active button:before {
  -webkit-text-stroke: 0;
  opacity: .75;
  color: #428BB9;
}
.dendou-slider-area {
  position: relative;
}
.dendou-slider-area .see-next {
  position: absolute;
  bottom: -54px;
  right: 0;
}
