@charset "utf-8";
/* CSS Document */

:root {
  --border: #ccc;
  --lightborder: #e5e5e5;

  --maincolor: #363636;
  --darkcolor: #111;
  --lightcolor: #f1f1f1;
  --linkcolor: #dd7d00;
  
  --wrapper: 1300px;
}


body {
  background: #fefefb;
}

@media only screen and (max-width: 840px) {
  html {
    font-size: 58% !important;
  }
}

.wrap {
  max-width: 1600px;
  margin: auto;
}

main {
  display: grid;
  grid-template-columns: 1fr 390px;
  grid-auto-flow: column;
}

header {
  background: #f9f9f6;
  grid-column: 2;
  z-index: 2;
  position: relative;
}

.header_sticky {
  position: fixed;
  top: 0;
  width: 390px;
  background: #f9f9f6;
  z-index: 2;
}

.header_wrap {
  border-bottom: 1px solid #e9e9e9;
  padding: 20px;
}

header h1 {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  line-height: 35px;
  padding-left: 50px;
  background: url("../images/logo.svg") no-repeat;
  background-position: left center;
}

.sitecopy {
  font-size: 1.5rem;
  margin-top: 10px;
  transition: 0.3s;
}

/* ライトナビ */
header nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
header nav ul li {
  width: 50%;
  text-align: center;
  border-right: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}
header nav ul li:nth-child(2n) {
  border-right: 0;
}

header nav ul li a {
  display: block;
  padding: 60px 0 10px;
  
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  text-align: center;

  transition: 0.3s;
}
header nav ul li a:hover {
  /*transform: scale(1.1,1.1);*/
  opacity: 0.4;
}

.comic a {
  background: url("../images/nav_icon_comic.svg") no-repeat;
  background-position: center top 12px;
  background-size: 40px;
}

.novel a {
  background: url("../images/nav_icon_novel.svg") no-repeat;
  background-position: center top 15px;
  background-size: 40px;
}

.game a {
  background: url("../images/nav_icon_game.svg") no-repeat;
  background-position: center top 15px;
  background-size: 40px;
}

.smartphone a {
  background: url("../images/nav_icon_sp.svg") no-repeat;
  background-position: center top 15px;
  background-size: 40px;
}

.movie a {
  background: url("../images/nav_icon_movie.svg") no-repeat;
  background-position: center top 14px;
  background-size: 40px;
}

.hobby a {
  background: url("../images/nav_icon_hobby.svg") no-repeat;
  background-position: center top 15px;
  background-size: 40px;
}

.aiart a {
  background: url("../images/nav_icon_aiart.svg") no-repeat;
  background-position: center top 13px;
  background-size: 40px;
}

.note a {
  background: url("../images/nav_icon_note.svg") no-repeat;
  background-position: center top 12px;
  background-size: 40px;
}

/* スクロール */
header .sticky_scroll nav ul li a {
  padding: 40px 0 10px;
  font-size: 1.4rem;
}

.sticky_scroll .comic a {
  background-size: 25px;
}

.sticky_scroll .novel a {
  background-size: 25px;
}

.sticky_scroll .game a {
  background-size: 25px;
}

.sticky_scroll .smartphone a {
  background-size: 25px;
}

.sticky_scroll .movie a {
  background-size: 25px;
}

.sticky_scroll .hobby a {
  background-size: 25px;
}

.sticky_scroll .aiart a {
  background-size: 25px;
}

.sticky_scroll .note a {
  background-size: 25px;
}






/* サイト内検索 */
.search-form {
  position: relative;
}

.search-form label {
  display: block;
  position: relative;
  margin-top: 10px;
}

.search-field {
  width: 100%;
  padding: 11px 50px 11px 15px;
  border-radius: 100px;
  border: 1px solid #ccc;
  background: #fff;
}

.search-submit {
  display: block;
  width: 22px;
  height: 22px;

  background: url("../images/nav_icon_search.svg");
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: center;

  border: 0;

  position: absolute;
  top: 9px;
  right: 20px;

  cursor: pointer;
  transition: 0.3s;
}
.search-submit:hover {
  opacity: 0.6;
}


/* 短文ブログ */
.header_shortblog {
  padding-top: 640px;
}
.header_shortblog h2 {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  line-height: 35px;
  padding-left: 40px;
  background: url("../images/nav_icon_short.svg") no-repeat;
  background-position: left center;
  background-size: 26px
}

.short_wrap {
  height: 500px;
  overflow-y: scroll;
  margin-top: 20px;
  border-top: 1px dashed #ccc;
}

.short_wrap li {
  padding-right: 10px;
  padding: 20px 10px 20px 0;
  border-bottom: 1px dashed #ccc;
}

.short_wrap .article_date {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.short_article img {
  max-width: 100%;
}

.short_article p {
  font-size: 1.4rem;
  margin-top: 1em;
}


/* 最近の投稿 */
.header_recently {
  padding-top: 640px;
}
.header_recently h2 {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  line-height: 35px;
  padding-left: 40px;
  background: url("../images/nav_icon_recently.svg") no-repeat;
  background-position: left center;
  background-size: 32px;
  margin-bottom: 20px;
}



/* メインコンテンツ */
.main_content {
  grid-column: 1;
  /*
  border-left: 1px solid #e9e9e9;
  */
  overflow: hidden;
  padding: 20px;
}

/* TOP一覧 */
.archive {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  gap: 40px 2%;
  position: relative;
}
.archive::before {
  content: "";
  width: 23.5%;
  order: 1;
}

.archive::after {
  content: "";
  width: 23.5%;
}

.archive li {
  width: 23.5%;
  /*
  padding: 15px;
  border-right: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  */
  position: relative;
}
/*
.archive li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background: #e9e9e9;

  position: absolute;
  left: -4px;
  top: -4px;
}
.archive li::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background: #e9e9e9;

  position: absolute;
  right: -4px;
  top: -4px;
}
*/

.archive a {
  transition: 0.3s;
}

.archive a:hover {
  opacity: 0.6;
}

.top_content_first {
  width: 100% !important;
}

.archive_list_wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px 40px;
}

.top_content_first .archive_list_wrap {
  flex-direction: row;
}

/* サムネ */
.archive_list_thumb {
  width: 100%;
}

.top_content_first .archive_list_thumb {
  width: calc(50% - 20px);
}

.archive_list_wrap img {
  width: 100%;
  aspect-ratio: 6/4;
  object-fit: cover;
}

/* テキスト部 */
.archive_list_text {
  width: 100%;
}

.top_content_first .archive_list_text {
  width: calc(50% - 20px);
}

.top_content_first .archive_ttl {
  font-size: 2.6rem;
  font-weight: bold;
}

.archive_ttl {
  font-size: 1.8rem;
  font-weight: bold;
}

.archive_list_text .date {
  font-size: 1.4rem;
  text-align: right;
  margin: 20px 0 10px;
}

.post_category {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.top_content_first .post_category {
  margin-bottom: 20px;
}

.post_category span, .post_category a {
  display: inline-block;
  font-size: 1.4rem;
  padding: 2px 10px 3px;
  background: #ccc;
}

/* ライトナビ投稿一覧 */
.archive.header_archive li {
  width: 100%;
  margin-bottom: 60px;
}

.top_otherarchive {
}

.main_content_inner h2 {
  margin: 60px 0 20px;
  font-size: 2.0rem;

  display: flex;
  justify-content: flex-start;
  gap: 20px;

  /*
  border-right: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  */

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.main_content_inner h2::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: #e9e9e9;
}

.top_otherarchive .sitecopy {
  margin-bottom: 20px;
}

/*
.main_content_inner h2::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background: #e9e9e9;

  position: absolute;
  left: -4px;
  top: -4px;
}
.main_content_inner h2::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background: #e9e9e9;

  position: absolute;
  right: -4px;
  top: -4px;
}

.top_otherarchive .archive li::before, .top_otherarchive .archive li::after {
  display: none;
}
*/


footer {
  margin-top: 120px;

  border-top: 1px solid #e9e9e9;
  padding: 25px 0;
}

.footer_category_wrap {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.footer_category_list li {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.footer_category_list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #282828;
  border-radius: 6px;
}

.footer_category_list li:first-child {
  font-weight: bold;
}
.footer_category_list li:first-child::before {
  display: none;
}

.footer_category_list li a {
  display: block;
  padding: 10px 0;
}
.footer_category_list li a:hover {
  text-decoration: underline;
}


/* 記事 */
article h1 {
  font-size: 2.6rem;
}

article .date {
  text-align: right;
  margin-bottom: 20px;
}

article img {
  max-width: 100%;
}

article p {
  margin-top: 1.5em;
  line-height: 1.85;
}

article figure {
  margin: 1.5em 0 0;
}

article table, article th, article td {
  border: 1px solid #ccc;
  border-collapse: collapse;
}

article th, article td {
  padding: 10px 20px;
}

article tr td:first-child, article tr th {
  font-weight: bold;
  background: #f1f1f1;
}

article hr {
  margin: 3em 0;
}

article p a {
  color: #f48a00;
  font-weight: 700;
  text-decoration: underline;
}

article p a:hover {
    text-decoration: none;
}
article h3 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;

  background: var(--maincolor);
  margin: 60px 0 30px;
  padding: 13px 17px;
}

article h4 {
  color: var(--maincolor);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 60px 0 30px;
  
  border-left: 10px solid var(--maincolor);
  background: var(--lightcolor);
  padding: 11px 13px 13px;
}

article h5 {
  color: var(--maincolor);
  font-size: 2rem;
  font-weight: 700;
  margin: 60px 0 30px;
  
  border-bottom: 2px solid var(--maincolor);
  padding: 12px 0px;
}

article a.linkbtn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 6px;
  background: var(--maincolor);
  
  color: #fff !important;
  text-decoration: none;
  
  transition: 0.3s;
}
article a.linkbtn:hover {
  opacity: 0.7;
}

article .borderbox {
  padding: 20px;
  border: 1px solid var(--maincolor);
}

article .box, article .gbox {
  padding: 20px;
  background: #f7f7f7;
  margin-bottom: 2em;
}

article .box p:last-child, article .gbox p:last-child {
  margin-bottom: 0 !important;
}

article .box h2, 
article .box h3, 
article .box h4, 
article .box h5, 
article .gbox h2, 
article .gbox h3, 
article .gbox h4, 
article .gbox h5 {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  background: #111;
  padding: 6px 13px;
  color: #fff;
  border-left: 0;
}

article dl {
	overflow: hidden;
}

article dt, article dd {
	padding: 8px;
	margin-bottom: 10px;
}

article dt {
	float: left;
	width: 22%;
	background: #f1f1f1;
	font-weight: 700;
	text-align: center;
}

article dd {
	margin-left: 23%;
}
article dd p:last-child {
	margin-bottom: 0 !important;
}

article ol {
	padding-left: 24px;
}
article ol li {
	list-style-type: decimal;
}

article .ul_border li {
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: 1px dashed #ccc;
}
article .ul_border {
  border-bottom: 1px dashed #ccc;
}

article .num_border {
  list-style-position: inside;
}

article .num_border li {
    padding-top: 8px;
    padding-bottom: 8px;
    border-top: 1px dashed #ccc;

    list-style-type: decimal;
    text-indent: -1.25em;
    padding-left: 1.6em;
}
article .num_border li::marker {
    font-weight: bold;
}
article .num_border {
    padding-left: 0;
    border-bottom: 1px dashed #ccc;
}

/* トグルのトリガー */
.toggle > h4 {
  display:block;
  background: #666;
  padding: 10px 10px 8px 10px !important;
cursor: pointer;

width: 100%;
box-sizing: border-box;

font-size: 100% !important;
font-weight: normal !important;
border-left: none !important;
margin-bottom: 60px !important;

overflow: hidden;
}

.toggle > h4 p {
    color: #fff;
  margin-bottom: 0 !important;
}

.toggle > h4:hover{
  opacity: 0.7;
  transition: 0.3s ease all;
}

.toggle > h4 .title{
  float: left;
}

/* +-のアイコン */
.accordion_icon,
.accordion_icon span {
display: inline-block;
transition: all .4s;
box-sizing: border-box;
}

.accordion_icon {
  position: relative;
  width: 30px;
  height: 27px;
  float: right;
  margin-right: 5px;
}

.accordion_icon span {
  position: absolute;
  left: 6px;
  width: 50%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
}
.accordion_icon span:nth-of-type(1) {
  top: 12px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.accordion_icon span:nth-of-type(2) {
  top: 12px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

/*＋、－切り替え*/
.toggle > h4.active .accordion_icon span:nth-of-type(1) {
  display:none;
}

.toggle > h4.active .accordion_icon span:nth-of-type(2) {
  top: 12px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

/* トグルの中身 */
.subInner{
  display: none;
background: #fff;
padding: 10px 0;
  
  transition: 0.3s;
}

/* steam */
.steam {
position: relative;
width: 100%;
padding-top: 30%;
margin-bottom: 15px;
}
.steam iframe {
position: absolute;
top: 0;
right: 0;
width: 100% !important;
height: 100% !important;
}

.youtube {
position: relative;
width: 100%;
padding-top: 56.25%;
margin-bottom: 15px;
}
.youtube iframe {
position: absolute;
top: 0;
right: 0;
width: 100% !important;
height: 100% !important;
}

/* google ad */
.kokokuarea {
padding: 20px !important;
background: #f1f1f1 !important;
margin: 40px 0 !important;
}

.kokokuarea img {
width: 100%;
}

.google-auto-placed {
padding: 20px !important;
background: #f1f1f1 !important;
margin: 40px 0 !important;
}

.google-auto-placed img {
width: 100%;
}

.add::after {
content: "スポンサードリンク";
  display: block;
  text-align: center;
  font-size: 11px;
}
.addatt {
display: block;
margin-top: 5px;
font-size: 11px;
color: #ccc;
text-align: center !important;
}

.pagenations {
	overflow: hidden;
	margin-top: 40px;
    
    font-size: 110%;
    font-weight: bold;
}

.pagenations_prev {
	float: right;
	width: 48%;
}
.pagenations_next {
	float: left;
	width: 48%;
}

.pagenations a {
	font-weight: normal;
	display: block;
    margin-top: 10px;
}


.mokuji {
	list-style-type: none !important;
	padding-left: 0;
}

.mokuji li {
	list-style-type: none !important;
	padding: 0;
}

.mokuji li:first-child {
	border-top: 2px solid #111;
	padding-top: 15px;
}

.mokuji li:last-child {
	border-bottom: 2px solid #111;
	padding-bottom: 15px;
}

.mokuji li a {
	font-weight: bold;
	display: block;
	color: #315096;
	text-decoration: none;
}

.mokuji li a span {
	margin-right: 1em;
	color: #111;
}

.mokuji .parent {
	border-top: 1px dashed #ccc;
}
.mokuji .parent a {
	padding: 5px 0;
}

.mokuji .child {
	padding-left: 1.7em;
	margin-top: -5px;
}
.mokuji .child a {
	padding-bottom: 5px;
	padding-left: 17px;
	position: relative;
}
.mokuji .child a::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #111;
	border-right: 1px solid #111;
	transform: rotate(45deg) translateY(-50%);
	
	position: absolute;
	left: 0;
	top: 40%;
}
/* sns */
.share {
	width: 70%;
	margin : 0 0 20px;
	float: right;
}
.share ul {
	margin : 0;
    padding : 0;
    list-style : none;
	overflow: hidden;
}
.share li {
	float : left;
    width : 22%;
    margin : 0 0 0 3%;
	list-style-type: none !important;
}
.share li a {
	display : block;
    padding : 3px;
    color : #fff;
    font-size : 12px;
    text-decoration : none;
    text-align : center;
	border-radius: 6px;
}
.share li a:hover {
	opacity :0.8;
    color : #fff;
}
.share li a:visited{
	color: #fff;
}
.share ul:after {
	content : "";
    display : block;
    clear : both;
}
.tweet a{background-color : #55acee;}
.facebook a{background-color : #315096;}
.googleplus a{background-color : #dd4b39;}
.hatena a{background-color : #008fde;}
.line a{background-color: #00c300;}
.pocket a{background-color :#f03e51;}
.rss a{background-color: #ff8c00;}
.feedly a{background-color: #6cc655;}

/* コメント欄 */
#comments-thread {
	margin-top: 60px;
	border-top: 1px dashed #555;
	padding-top: 60px;
}

#comments-thread > h3 {
	border: 0;
	padding: 8px;
	background: #555;
	margin-top: 0 !important;
	
	color: #fff;
	
	text-shadow: none;
}
#comments-thread > h3::after {
	display: none;
}
#reply-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
	margin-top: 0 !important;
}

.comments-list {
}

	.comment-listCon {
		border-left: 6px solid #111;
		padding-left: 10px;
	}

	.comment-listCon p {
		padding: 10px;
		background: #fff;
        margin-bottom: 0;
	}

#respond {
	padding: 20px;
	background: #f1f1f1;
}

#comment, #author {
	width: 100%;
	box-sizing: border-box;
}

.form-submit input#submit {
	padding: 4px 10px 3px 8px;
	border-radius: 4px;
	
	cursor: pointer;
	-webkit-appearance: none;
}

	.form-submit input#submit:hover {
		background: #aaa;
		color: #fff;
		transition: 0.3s ease all;
	}

.comment-form-email, .comment-form-url {
	display: none;
}

.comment-form label {
    display: block;
    margin: 0 0 10px 0;
    
    border-left: 5px solid #262626;
    padding: 2px 8px;
}

.comment-datetime {
	margin-left: 1em;
}

.comment-form-comment {
    margin: 20px 0;
}

#comments-thread .comment-id,
#comments-thread .form-allowed-tags{
  display:none;
}
 
#comments-thread .comment-author{
  font-weight:bold;
}
 
#comments-thread img.avatar {
  float:right;
  margin-right:0;
  margin-left:10px;
}
 
#commentform label{
  display:block;;
}
 
#commentform input{
  margin-bottom:0px;
}
 
#commentform input,
#commentform textarea{
  background-color:#fff;
  border:1px solid #aaa;
}

#commentform label {
	font-weight: bold;
}

ol.comments-list {
	padding: 0;
}

li.comment {
	margin-top: 15px;
	list-style-type: none !important;
}
