@charset "utf-8";
/*
Theme Name: dsmart
Author: dsmart
Description: original theme
Version： v1.0.0
*/

/* reset css */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, 
blockquote, a, pre, abbr, address, cite, code, del, dfn, em, img, 
ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, 
ol, ul, li, fieldset, form, label, legend, table, caption, 
tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, 
figcaption, figure, footer, header, hgroup, menu, nav, section, 
summary, time, mark, audio, video, input, button {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
  list-style: none;
  text-decoration: none;
  box-shadow: none;
}

.header-logo {
  display: flex;
  justify-content: space-between;
}


/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #ffffff;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #000000bf;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  text-align: center;
  margin-top: 70px;
}

.nav_item {
  margin: 20px 0;
}



/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}





input:focus {
  border: none; 
  box-shadow: none;
  outline: none;
}

.sample-image {
  width: 100%;
  margin: 5px 0;
}
.sample-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-categories {
  font-size: 13px;
  margin: 5px 0;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;

li {
    margin: 0px 5px 5px 0px;
    list-style: none;
  }
  li a {
    display: inline-block;
    background-color: #524e5c;
    padding: 3px 6px;
    border-radius: 5px;
  }
}

.single-post-title {
  font-size: 20px;
  text-align: left;
  font-weight: bold;
}
.download-buttons {
  display: flex;
  justify-content: space-between;
}
.download-button {
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  background-color: #ba85ca;
  font-weight: bold;
  font-size: 25px;
  margin: 20px 0
}
.download-buttons a {
  text-decoration: none;
  width: 48%;
  color: white;
}
.detail {
  font-size: 18px;
  font-weight: bold;
  background-color: #524c5d;
  padding: 10px 0;
  border-radius: 7px;
  padding-left: 5px;
  margin: 10px 0;
  text-align: center;
}

table {
  text-align: left;
  table-layout: auto;
  font-size: 14px;
}
th {
  font-weight: normal;
  width: 90px;
}

.site-manga a {
  text-decoration: none;
  width: 48%;
  color: white;
}

.detail-manga {
  text-align: center;
  background-color:#ccd548;
  border-radius: 10px;
  padding: 15px 0;
  border-radius: 7px;
  padding-left: 3px;
  font-weight: bold;
  font-size: 25px;
  margin: 20px 0
}

.post-all {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}
.post-one {
  width: 49%;
}
.post-one a {
  color: white;
  text-decoration: none;
}
.post-title {
  font-size: 14px;
}
.thum-img img {
  object-fit: cover;
  width: 100%;
}

body {
  width: 100%;
  margin: 0 auto;
}

html {
  --s: 56px; /* control the size*/
  --c1: #3a3847;
  --c2: #3f3d4c;
  
  --g:at calc(100%/3) 25%,#0000 75%,;
  background:
    conic-gradient(var(--g)var(--c1) 0),
    conic-gradient(var(--g)var(--c2) 0) 0 var(--s),
    repeating-conic-gradient(at calc(200%/3),
      var(--c1) 0 25%,var(--c2) 0 50%);
  background-size: var(--s) calc(4*var(--s)/3);
}

body, a {
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #fff;
  text-decoration: none;
}

.wrapper {
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
  padding: 5px;
}

header {
  background-color: #7c43b1;
  margin-bottom: 50px;
  color: #fff;
  font-weight: bold;
  max-width: 900px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 9999
}
.header-title {
  text-align: center;
  font-size: 20px;
}
.header-title a{
  display: block;
  padding: 15px;
}

.thumbnail img {
  object-fit: cover;
}

.fanza-api-state {
  color: #f4ff4e;
  text-align: center;
  font-size: 14px;
}

footer {
  margin-top: 20px;
  background-color: #7c43b1;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
}


.footer-width {
  width: 100%;
  margin:0 auto
}

.copyright {
  font-size: 14px;
  text-align: center;
}

.contact {
  text-align: center;
  margin: 8px 0;
}

.privacypolicy {
  text-align: center;
  margin: 8px 0;
}

label[for="comment"] {
  display: none;
}
.form-submit {
  text-align: center;
  margin-top: 10px;
}

#comment {
  border: 1px solid;
  border-color: #ccc;
  border-radius: 5px;
  height: 137px;
  max-width: 660px;
  width: 80%;
}

  .required {
  color: red;
  }

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

  .comment-form-comment {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  }

  .comment-info {
    color: #a7a7a7;
    font-size: 12px;
    text-align: center;
  }

  .fa-regular.fa-comment::before {
    display:none;
  }

  .logged-in-as {
    display: none;
  }

.form-submit input[name="submit"]{
  width: 100%;
  background-color: #7c43b1;
  color: #fff;
  border-radius: 5px;
  padding: 11px;
  width: 81%;
  max-width: 660px;
  cursor: pointer;
}

.pagination {
  text-align: center;
  margin: 20px 0;
}

.page-numbers li {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #524e5c;
  background-color: #524e5c
}

.page-numbers li.active {
  background-color: #7c43b1;
  font-weight: bold;
}


.pagination a:hover, .pagination .current {
  background-color: #7c43b1;
  font-weight: bold;
  display: block;
}

.template-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search_form {
  font-size: 18px;
}

.searchform input[type="search"]{
  width: 85%;
  height: 35px;
  border: 1px solid;
  font-size: 100%;
  border: none;
  background-color: #ffffff;
}

.searchform input[type="submit"]{
  color: #fff;
  background-color: #636363;
  font-size: 16px;
  height: 35px;
  width: 20%;
}

.searchform {
  margin: 10px 0 20px 0;
  display: flex;
  justify-content: center;
}

.more-read a {
  display: block;
  text-align: center;
  font-size: 18px;
  background-color:#ccd548;
  color: #000;
  border-radius: 10px;
  padding: 15px 0;
  border-radius: 7px;
  padding-left: 3px;
  font-weight: bold;
  font-size: 25px;
  margin: 20px 0
}

h2 {
  font-size: 16px;
  margin-top: 30px;
}

h3 {
  font-size: 18px;
}

.review-comment {
  background-color: #524c5d;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
}

table td a {
  color: #0096fa;
}

table td a:hover {
  color: #d5baee;
}

.cp_breadcrumb *, .cp_breadcrumb *:after, .cp_breadcrumb *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_breadcrumb {
	margin: 1em auto;
	background-color: #524e5c;
	color: #fff;
  font-size: 14px;
  padding: 5px 2px;
  border-radius: 5px;
}
.cp_breadcrumb a {
	text-decoration: none;
	color: #ffffff;
}
.cp_breadcrumb .breadcrumbs {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
	display: flex;
	white-space:nowrap;
  overflow:hidden
}
.cp_breadcrumb li {
	display: inline-block;
	position: relative;
	padding-right: calc(16px + 8px);
	margin-right: 8px;
	color: #7986CB;
}
.cp_breadcrumb li::before {
	content: '›';
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	font-size: 1em;
	color: inherit;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cp_breadcrumb li:last-child {
	margin-right: 0;
	padding-right: 0;
	color: #ffffff;
}
.cp_breadcrumb li:last-child::before {
	content: normal;
}

.kigi {
  font-size: 14px;
  color: #ffffff;
}

.post-partition {
  display: flex;
}

.post {
  padding: 1.5%;
  position: relative;
  background-color: #4c494f;
  margin-bottom: 5px;
  color: #fff;
}

.post-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* PC */
@media screen and (min-width:641px) {
  h1 {
  text-align: center;
  font-size: 30px;
  font-weight: normal;
  }

  .contents {
  margin-bottom: 50px;
  }

  .thumbnail {
  width: 320px;
  height: 180px;
  position: relative;
  margin-right: 10px;
  }

  .category {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color:rgba(51, 51, 51, 0.7);
  padding: 3px 3px;
  font-size: 11px;
  border: 1px solid #eee;
  }

  .post img {
  width: 320px;
  height: 180px;
  }

  .category a{
  color: #fff;
  text-decoration-line: none;
  }


  .post:hover{
  background-color: rgb(43, 41, 41);
  transition: 0.5s;
  }

  .title a{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration-line: none;
  }

  .kigi {
  font-size: 14px;
  color: #ffffff;
  }

  .time {
  justify-content: right;
  font-size: 11px;
  display: flex;
  align-items: center;
  }

  .time span {
  font-size: 11px;
  }

  .sidebar {
  background-color: #fff;
  width: calc(30% - 20px);
  padding: 1.5%;
  border-radius: 4px;
  }


  .new-article {
  background-color: #f5f6f7;
  padding: 12px;
  margin: 16px 0;
  font-size: 20px;
  font-weight: bold;
  }


  .wpp-thumbnail {
  margin: 0 !important;
  }


  .popular-article {
  background-color: #f5f6f7;
  padding: 12px;
  margin: 16px 0;
  font-size: 20px;
  font-weight: bold;
  }

  .subtitle {
  text-align: center;
  font-size: 14px;
  }

  .rankings {
  display: flex;
  font-size: 14px;
  width: 1250px;
  margin:0 auto;
  counter-reset: rank_number;
  justify-content: space-between;
  }

  .ranking {
  position: relative;
  background-color: rgb(98, 226, 226);
  margin: 20px 0px;
  }

  .ranking:after{
  counter-increment: rank_number;
  content: counter(rank_number);
  display: block;
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: #666;
  color: white;
  font-size: 14px;
  text-align: center;
  }

  .ranking:nth-of-type(1):after {
  background: #cca11f; 
  }

  .ranking:nth-of-type(2):after {
  background:#b1b1b3; 
  }

  .ranking:nth-of-type(3):after {
  background: #b37036; 
  }

  .ranking-title {
  position: absolute;
  top: 66%;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, #555);
  bottom: 0;
  padding: 0.6em;
  }

  .ranking-title a {
  color: #fff;
  text-decoration-line: none;
  }

  .ranking-image {
  width: 225px;
  }

  .ranking-image img {
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
  }

  .main-midasi {
  font-size: 18px;
  border-bottom-color: #e4e4e4;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  }

  .main-ranking-image img {
  width: 120px;
  height: 67.5px;
  }

  .main-ranking-img {
  position: relative;
  }

  .main-ranking {
  display: flex;
  padding: 5px;
  border-bottom-color: #e4e4e4;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  position: relative;
  }

  .main-ranking:after{
  counter-increment: rank_number;
  content: counter(rank_number);
  display: block;
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: #666;
  color: white;
  font-size: 14px;
  text-align: center;
  }

  .main-ranking:nth-of-type(1):after {
  background: #cca11f; 
  }

  .main-ranking:nth-of-type(2):after {
  background:#b1b1b3; 
  }

  .main-ranking:nth-of-type(3):after {
  background: #b37036; 
  }


  .main-ranking-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }

  .main-ranking:hover {
  background-color: rgb(43, 41, 41);
  transition-duration: 0.5s;
  }

  .main-rankings {
  margin-bottom: 1.8em;
  counter-reset: rank_number;
  }

  .main-ranking-title a {
  text-decoration-line: none;
  color: #fff;
  padding-left: 5px;
  display: block;
  justify-content: left;
  }

  .new-midasi {
  font-size: 18px;
  border-bottom-color: #e4e4e4;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  }

  .main-thumbnail img {
  width: 120px;
  height: 67.5px;
  }

  .main-post {
  padding: 5px;
  position: relative;
  border-bottom-color: #e4e4e4;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  }

  .main-post-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }

  .main-post:hover {
  background-color: rgb(247, 247, 247);
  transition-duration: 0.5s;
  }

  .main-post-partition {
  display: flex;
  }

  .main-title a {
  text-decoration-line: none;
  color: #fff;
  padding-left: 5px;
  display: block;
  justify-content: left;
  }

  .sidebar-sticky {
  position: sticky;
  top: 0;
  }

  .single-title_main {
  font-size: 26px;
  font-weight: bold;
  margin: 16px 0;
  }

  .single-thumbnail img {
  width: 100%;
  height: auto;
  }

  .single-thumbnail {
  width: 100%;
  height: auto;
  position: relative;
  }

  .single-category {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color:rgba(51, 51, 51, 0.7);
  padding: 2px 8px;
  font-size: 14px;
  border: 1px solid #eee;
  }

  .single-category a{
  color: #fff;
  text-decoration-line: none;
  }

  .single-categorize {
  font-size: 13px;
  display: flex;
  }

  .single-a a{
  color: #999;
  text-decoration-line: none;
  }

  .single-a span {
  font-size: 15px;
  color: #999;
  vertical-align: -2px;
  font-variation-settings: 'FILL' 1
  }

  .single-b a{
  color: #999;
  text-decoration-line: none;
  }

  .single-b span {
  font-size: 15px;
  color: #999;
  vertical-align: -2px;
  font-variation-settings: 'FILL' 1
  }

  .single-symbol {
  padding: 0 7px;
  }

  .wp-block-heading {
  font-size: 24px;
  padding: 25px;
  background-color: #f5f6f7;
  margin-bottom: 1.8em;
  }

  .wp-block-image {
  margin-bottom: 1.8em;
  }

  .single-content_main {
  font-size: 18px;
  margin-bottom: 1.8em;
  }

  .single-main-midasi {
  font-size: 20px;
  font-weight: bold;
  border-bottom-color: #e4e4e4;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  }

  .single-new-midasi {
  font-size: 20px;
  font-weight: bold;
  border-bottom-color: #e4e4e4;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  }


  .required {
  color: red;
  }


  .fa-regular.fa-comment::before {
    display:none;
  }

  

  .sns-buttons {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  margin:10px 0px 20px 0px;
  }

  .sns-buttons a {
  text-decoration-line: none;
  color: #FFF;
  width: 18%;
  padding: 5px;
  display: block;
  border-radius: 8px;
  text-align: center;
  }

  .sns-buttons a:hover {
  opacity: 0.8;
  }

  .X {
  background-color: #000;
  }

  .facebook {
  background-color: #0866FF;
  }

  .hatebu {
  background-color: #00A4ED;
  }

  .LINE {
  background-color: #05C755;
  }

  .copy {
  background-color: #32373c;
  }

  .botton-caption {
  font-size: 14px;
  }

  .kensaku {
  font-size: 20px;
  }

  .face-tired {
  color: #cecece;
  font-size: 200px;
  text-align: center;
  }

  .notfound {
  font-size: 20px;
  text-align: center;
  }

  .footer-menu {
    display: none;
  }





}




@media screen and (max-width:640px) {
  .subtitle {
  font-size: 12px;
  text-align: center;
  }


  .midasi {
  font-size: 20px;
  font-weight: bold;
  }

  .rankings {
  display: flex;
  font-size: 14px;
  width: calc(100%- 20px);
  margin:0 auto;
  counter-reset: rank_number;
  justify-content: space-between;
  overflow: scroll;
  }

  .rankings::-webkit-scrollbar {
    display: none;
  }
  
  .ranking {
  position: relative;
  background-color: rgb(98, 226, 226);
  margin: 20px 8px;
  }
  
  .ranking:after{
  counter-increment: rank_number;
  content: counter(rank_number);
  display: block;
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: #666;
  color: white;
  font-size: 14px;
  text-align: center;
  }
  
  .ranking:nth-of-type(1):after {
  background: #cca11f; 
  }
  
  .ranking:nth-of-type(2):after {
  background:#b1b1b3; 
  }
  
  .ranking:nth-of-type(3):after {
  background: #b37036; 
  }
  
  .ranking-title {
  position: absolute;
  top: 66%;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, #555);
  bottom: 0;
  padding: 0.6em;
  }
  
  .ranking-title a {
  color: #fff;
  text-decoration-line: none;
  }
  
  .ranking-image {
  width: 225px;
  }
  
  .ranking-image img {
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
  }

  .contents_main {
  background-color: #fff;
  padding: 20px 10px;
  }
  .contents {
  margin-bottom: 50px;
  }
  
  .thumbnail {
  width: 140px;
  height: 80px;
  position: relative;
  margin-right: 10px;
  }
  
  
  .post img {
  width: 140px;
  height: 80px;
  }

  .title a{
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  text-decoration-line: none;
  }

  .kigi {
  font-size: 14px;
  display: none;
  color: #000;
  }

  .time {
  display: none;
  }

  .main-ranking-image img {
  width: 120px;
  height: 67.5px;
  }

  .main-ranking-img {
  position: relative;
  }

  .main-ranking {
  display: flex;
  padding: 5px;
  border-bottom-color: #e4e4e4;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  position: relative;
  }

  .main-ranking:after{
  counter-increment: rank_number;
  content: counter(rank_number);
  display: block;
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: #666;
  color: white;
  font-size: 14px;
  text-align: center;
  }

  .main-ranking:nth-of-type(1):after {
  background: #cca11f; 
  }

  .main-ranking:nth-of-type(2):after {
  background:#b1b1b3; 
  }

  .main-ranking:nth-of-type(3):after {
  background: #b37036; 
  }


  .main-ranking-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }

  .main-rankings {
  margin-bottom: 1.8em;
  counter-reset: rank_number;
  }

  .main-ranking-title a {
  text-decoration-line: none;
  color: #fff;
  padding-left: 5px;
  display: block;
  justify-content: left;
  }

  .new-midasi {
  font-size: 18px;
  border-bottom-color: #e4e4e4;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  }

  .main-thumbnail img {
  width: 120px;
  height: 67.5px;
  }

  .main-post {
  padding: 5px;
  position: relative;
  border-bottom-color: #e4e4e4;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  }

  .main-post-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }

  .main-post:hover {
  background-color: rgb(247, 247, 247);
  transition-duration: 0.5s;
  }

  .main-post-partition {
  display: flex;
  }

  .main-title a {
  text-decoration-line: none;
  color: #fff;
  padding-left: 5px;
  display: block;
  justify-content: left;
  }

  .sidebar {
    display: none;
  }






  .single-title_main {
  font-size: 26px;
  font-weight: bold;
  margin: 16px 0;
  }

  .single-thumbnail img {
  width: 100%;
  height: auto;
  }

  .single-thumbnail {
  width: 100%;
  height: auto;
  position: relative;
  }

  .single-category {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color:rgba(51, 51, 51, 0.7);
  padding: 2px 8px;
  font-size: 14px;
  border: 1px solid #eee;
  }

  .single-category a{
  color: #fff;
  text-decoration-line: none;
  }

  .single-categorize {
  font-size: 13px;
  display: flex;
  }

  .single-a a{
  color: #999;
  text-decoration-line: none;
  }

  .single-a span {
  font-size: 15px;
  color: #999;
  vertical-align: -2px;
  font-variation-settings: 'FILL' 1
  }

  .single-b a{
  color: #999;
  text-decoration-line: none;
  }

  .single-b span {
  font-size: 15px;
  color: #999;
  vertical-align: -2px;
  font-variation-settings: 'FILL' 1
  }

  .single-symbol {
  padding: 0 7px;
  }

  .wp-block-heading {
  font-size: 24px;
  padding: 25px;
  background-color: #f5f6f7;
  margin-bottom: 1.8em;
  }

  .wp-block-image {
  margin-bottom: 1.8em;
  }

  .single-content_main {
  font-size: 18px;
  margin-bottom: 1.8em;
  }

  .single-main-midasi {
  font-size: 20px;
  font-weight: bold;
  border-bottom-color: #e4e4e4;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  }

  .single-new-midasi {
  font-size: 20px;
  font-weight: bold;
  border-bottom-color: #e4e4e4;
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  }


  .sns-buttons {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  margin:10px 0px 20px 0px;
  }

  .sns-buttons a {
  text-decoration-line: none;
  color: #FFF;
  width: 18%;
  padding: 5px;
  display: block;
  border-radius: 8px;
  text-align: center;
  }

  .sns-buttons a:hover {
  opacity: 0.8;
  }

  .X {
  background-color: #000;
  }

  .facebook {
  background-color: #0866FF;
  }

  .hatebu {
  background-color: #00A4ED;
  }

  .LINE {
  background-color: #05C755;
  }

  .copy {
  background-color: #32373c;
  }

  .botton-caption {
  font-size: 14px;
  }

  .kensaku {
  font-size: 20px;
  }

  .face-tired {
  color: #cecece;
  font-size: 200px;
  text-align: center;
  }

  .notfound {
  font-size: 20px;
  text-align: center;
  }

  iframe {
    width: 100%;
    margin-bottom: 20px;
  }


  .required {
  color: red;
  }


  .fa-regular.fa-comment::before {
    display:none;
  }

  

html {
    scroll-behavior: smooth;
}


.menu_item {
  width: 100%;
  height: auto;
  padding: .5em 1em;
  text-align: left;
  color: #000000;;
  font-size: 16px;
}

.menu-btns {
  transform: translateX(-100vw);
  transition: all 0.3s linear;
  top: 0;
  display: none;
}


.menu-btns.is-active {
  transform: translateX(0);
  width: 85%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #bdbdbd;
  display: block;
}


.close-btn {
  display: block;
  text-align: center;
  font-size: 35px;
  padding: 5px;
  
}



}


