@charset "UTF-8";
/*
Theme Name: shinobi_theme
Version: 1.1
*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  background-color: #f7f7f7;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  position: relative;
}

.inner {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 10px;
}

.sns_link_area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 43px;
}

.sns_link_area a {
  color: #fff;
}

.sns_link_area .sns_link {
  padding: 10px 20px;
  width: 100%;
  background-color: #1da1f2;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
}

.sns_link_area .sns_link:hover {
  -webkit-box-shadow: 3px 3px 4px -2px gray;
          box-shadow: 3px 3px 4px -2px gray;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.sns_link_area .sns_link img {
  width: 30px;
  margin-left: 20px;
}

.sns_link_area_mobile {
  display: none;
}

header {
  height: 100px;
  width: 100%;
  -webkit-box-shadow: 0 2px 6px 3px #e0e0e0;
          box-shadow: 0 2px 6px 3px #e0e0e0;
  background-color: #fff;
}

header .header_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
}

header .header_items .logo_area {
  width: 20%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_items .logo_area a:hover {
  -webkit-filter: brightness(130%);
          filter: brightness(130%);
}

header .header_items .logo_area .logo {
  height: 32px;
}

header .header_items .home_link {
  color: #9c9c9c;
}

header .header_items .home_link .home_btn_area {
  height: 100%;
  width: 150px;
  padding: 6.5px 10px 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header .header_items .home_link .home_btn_area:hover .home_text {
  border-bottom: 3px solid #636363;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header .header_items .home_link .home_text {
  margin-left: 10px;
  font-weight: 900;
}

header .gg-home {
  background: linear-gradient(to left, currentColor 5px, transparent 0) no-repeat 0 bottom/4px 2px, linear-gradient(to left, currentColor 5px, transparent 0) no-repeat right bottom/4px 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: block;
  -webkit-transform: scale(var(--ggs, 1));
          transform: scale(var(--ggs, 1));
  width: 18px;
  height: 14px;
  border: 2px solid;
  border-top: 0;
  border-bottom: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  margin-bottom: -2px;
}

header .gg-home::after, header .gg-home::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
}

header .gg-home::before {
  border-top: 2px solid;
  border-left: 2px solid;
  border-top-left-radius: 4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -5px;
  border-radius: 3px;
  width: 14px;
  height: 14px;
  left: 0;
}

header .gg-home::after {
  width: 8px;
  height: 10px;
  border: 2px solid;
  border-radius: 100px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
  left: 3px;
  bottom: 0;
}

.search_area {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.search_area .searchform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search_area .searchform_input {
  border: #dbdbdb 2px solid;
  padding: 5px 10px;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.search_area .searchform_input::-webkit-input-placeholder {
  color: #dbdbdb;
}

.search_area .searchform_input:-ms-input-placeholder {
  color: #dbdbdb;
}

.search_area .searchform_input::-ms-input-placeholder {
  color: #dbdbdb;
}

.search_area .searchform_input::placeholder {
  color: #dbdbdb;
}

.search_area .searchform_input:focus {
  border: #b5b5b5 3px solid;
  outline: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.search_area .searchform_button {
  border: none;
  padding: 3px 10px;
  background-color: #fff;
}

.search_area .searchform_button img {
  width: 25px;
  height: 25px;
  color: #9c9c9c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.search_area .searchform_button img:hover {
  border-bottom: 3px solid #333333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.main_wrapper {
  width: 100%;
  height: 100%;
}

.slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.slider_button {
  width: 40px;
  height: 40px;
  font-size: 17px;
  color: #fff;
  background-color: #474747;
  opacity: 0.6;
  border-radius: 50%;
  z-index: 10;
}

.slider_button:hover {
  opacity: 0.9;
}

.nav_hide {
  z-index: -10;
}

.slider_prev {
  position: absolute;
  top: 130px;
  left: 0;
}

.slider_next {
  position: absolute;
  top: 130px;
  right: 0;
}

.top_contents {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  padding-top: 10px;
  background-color: #fff;
}

.top_contents .top_contents_heading {
  background-color: #4f4f4f;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  display: inline-block;
  padding: 7px 20px;
  margin-left: 10px;
}

.top_contents .top_contents_heading p {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.separation {
  height: 5px;
  margin: 10px 0 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.top_content {
  width: 100%;
  height: 230px;
}

.top_content .top_content_image_area {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.top_content .top_content_image_area img {
  max-width: 224px;
  width: 100%;
  height: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.top_content .top_content_image_area img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.top_content .top_content_image_area .category_label {
  position: absolute;
  top: 10px;
  left: 5px;
  background-color: #636363;
  color: #fff;
  height: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  padding: 0 20px;
  -webkit-transform: rotate(-7deg);
          transform: rotate(-7deg);
}

.top_content .top_content_title_area {
  width: 100%;
  height: auto;
  padding: 10px;
}

.top_content .top_content_title_area p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #4f4f4f;
}

.main_contents_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.articles_wrapper {
  width: 100%;
}

.articles_wrapper .articles_heading p {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.25em;
}

.articles_wrapper .articles {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.articles_wrapper .articles a {
  margin: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
}

.articles_wrapper .articles a:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 0 8px 4px #cfcfcf;
          box-shadow: 0 0 8px 4px #cfcfcf;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.articles_wrapper .articles .article {
  width: 100%;
}

.articles_wrapper .articles .article .article_image_area {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
  position: relative;
  padding: 10px;
}

.articles_wrapper .articles .article .article_image_area img {
  max-width: 100%;
}

.articles_wrapper .articles .article .article_image_area .articles_category_label {
  position: absolute;
  top: -3px;
  left: -10px;
  background-color: #636363;
  color: #fff;
  width: auto;
  padding: 0 20px;
  height: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}

.articles_wrapper .articles .article .article_date_area {
  width: 100%;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.articles_wrapper .articles .article .article_date_area p {
  font-size: 16px;
  width: 100%;
  margin-left: 10px;
  color: #9c9c9c;
}

.articles_wrapper .articles .article .article_title_area {
  padding: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.articles_wrapper .articles .article .article_title_area p {
  width: 100%;
  font-size: 20px;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #4f4f4f;
}

.pagenation_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100px;
}

.pagenation_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.screen-reader-text {
  display: none;
}

.page-numbers {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  text-decoration: none;
  max-width: 100vw;
}

.page-numbers li {
  width: 40px;
  height: 40px;
  border: 1px solid #cfcfcf;
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-numbers li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.page-numbers li a:hover {
  background-color: #4f4f4f;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidebar_wrapper {
  width: 100%;
  max-width: 351px;
  padding-left: 40px;
  margin-top: 45px;
}

.sidebar_wrapper .sidebar_heading {
  background-color: #4f4f4f;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar_wrapper .sidebar_heading p {
  font-size: 16px;
  color: #fff;
  font-weight: 900;
  margin-left: 10px;
}

.sidebar_wrapper .categories {
  width: 100%;
  list-style: none;
}

.sidebar_wrapper .categories li {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #f0f0f0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 16px;
  background-color: #fff;
}

.sidebar_wrapper .categories li:hover {
  background-color: #4f4f4f;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
}

.sidebar_wrapper .categories li:hover a {
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sidebar_wrapper .categories li a {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
  color: #a6a6a6;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 16px;
}

.sidebar_wrapper .sidebar_sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

.sidebar_wrapper .sidebar_about {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background-color: #fff;
}

.sidebar_wrapper .sidebar_about p {
  width: 100%;
  padding: 3px 0;
  color: #333333;
}

.sidebar_wrapper .sidebar_toc {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background-color: #fff;
  overflow: auto;
  max-height: 70vh;
  list-style: none;
}

.sidebar_wrapper .sidebar_toc li {
  width: 100%;
  padding: 3px 0;
}

.sidebar_wrapper .sidebar_toc li:hover {
  background-color: #f7f7f7;
}

.sidebar_wrapper .sidebar_toc li:hover a {
  color: #333333;
}

.sidebar_wrapper .sidebar_toc a {
  width: 100%;
  text-decoration: none;
  color: #828282;
}

.sidebar_wrapper .sidebar_toc .sidebar_toc_title_h2 {
  padding-left: 5px;
  font-weight: 900;
}

.sidebar_wrapper .sidebar_toc .sidebar_toc_title_h2 a::before {
  content: "▶";
  font-size: 12px;
  margin-right: 3px;
}

.sidebar_wrapper .sidebar_toc .sidebar_toc_title_h3 {
  padding-left: 35px;
}

.display_sns {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

.display_sns img {
  width: 25px;
}

footer {
  width: 100%;
  height: 80px;
  background-color: #333333;
  margin-top: 80px;
}

footer .privacy_policy {
  width: 100%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}

footer .privacy_policy .privacy_policy_link {
  color: #fff;
}

footer .privacy_policy .privacy_policy_link:hover {
  border-bottom: 1px solid #fff;
}

footer .copyright {
  color: #fff;
  width: 100%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single_content {
  margin-top: 45px;
  width: 70%;
  margin-bottom: 20px;
  background-color: #fff;
}

.single_content a {
  word-break: break-all;
}

.single_content .single_category_area {
  display: inline-block;
  background-color: #4f4f4f;
  color: #fff;
  padding: 10px 20px;
  -webkit-transform: translateX(0) translateY(0);
          transform: translateX(0) translateY(0);
}

.single_content .single_title_area {
  width: 100%;
  padding: 20px 10px;
  font-size: 16px;
  color: #333333;
}

.single_content .single_date {
  width: 100%;
  padding: 10px;
  color: #9c9c9c;
}

.single_content .single_thumbnail_area {
  width: 100%;
  margin-bottom: 20px;
}

.single_content .single_thumbnail_area img {
  width: 100%;
}

.single_content .single_text_area {
  width: 100%;
  letter-spacing: 0.4px;
  line-height: 1.9em;
  font-size: 17px;
  color: #333333;
}

.single_content .single_text_area figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2vh;
}

.single_content .single_text_area figure figcaption {
  font-size: 1.2vw;
  color: #a0a0a0;
}

.single_content .single_text_area figure figcaption a {
  color: #0163f9;
  text-decoration: underline;
}

.single_content .single_text_area figure video {
  width: 100%;
}

.single_content .single_text_area p {
  padding: 15px 15px;
}

.single_content .single_text_area p a {
  color: #0163f9;
  text-decoration: underline;
  word-break: break-all;
}

.single_content .single_text_area p a:hover {
  text-decoration: none;
}

.single_content .single_text_area p strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, #ccdffc));
  background: linear-gradient(transparent 65%, #ccdffc 65%);
}

.single_content .single_text_area h2 {
  width: 100%;
  border-left: 10px solid #4f4f4f;
  background-color: #f7f7f7;
  color: #4f4f4f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 25px;
  margin: 20px 0;
}

.single_content .single_text_area h3 {
  width: 90%;
  padding: 0 25px;
  margin: 20px 0 20px 3%;
  border-bottom: 1px solid #828282;
  border-top: 1px solid #828282;
  color: #4f4f4f;
}

.single_content .single_text_area img {
  width: 100%;
  height: 100%;
  margin: 20px 0;
}

.single_content .single_text_area .wp-block-embed__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
}

.single_content .single_text_area .wp-block-table {
  overflow: scroll;
  margin-bottom: 20px;
}

.single_content .single_text_area table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  font-size: 16px;
}

.single_content .single_text_area table a {
  color: #0163f9;
}

.single_content .single_text_area table a:hover {
  text-decoration: underline;
}

.single_content .single_text_area tr {
  white-space: nowrap;
}

.single_content .single_text_area td {
  padding: 5px;
  border: 1px solid #cfcfcf;
  white-space: nowrap;
}

.single_content .single_text_area tr:nth-child(1) {
  background-color: #4f4f4f;
  color: #fff;
  font-weight: 900;
}

.single_content .single_text_area tr:nth-child(2n) {
  background-color: #ededed;
}

.single_content .single_text_area .blogcard {
  max-width: 80%;
  width: 100%;
  margin: 40px auto;
  height: 130px;
}

.single_content .single_text_area .blogcard .card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  outline: #ededed 2px solid;
  outline-offset: -2px;
  padding: 10px;
  color: #828282;
  height: 80%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single_content .single_text_area .blogcard .card-link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 2px 2px 4px -2px gray;
          box-shadow: 2px 2px 4px -2px gray;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single_content .single_text_area .blogcard .card-link img {
  width: 100%;
  margin: 0;
}

.single_content .single_text_area .blogcard .card-link .blogcard-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}

.single_content .single_text_area code ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single_content .single_text_area .explain {
  background-color: #23283D;
  margin: 20px;
}

.single_content .single_text_area .explain p {
  font-size: 16px;
  color: #fff;
}

.single_content .single_text_area .explain a {
  color: #fff;
}

.single_content .single_text_area .link-green {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single_content .single_text_area .link-green a {
  width: 300px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #4f4f4f;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.single_content .single_text_area .link-green a:hover {
  -webkit-box-shadow: 3px 3px 4px -2px gray;
          box-shadow: 3px 3px 4px -2px gray;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.single_content .single_text_area .gpt-extentions {
  padding: 20px;
  margin-bottom: 80px;
  width: 100%;
  height: 100%;
  background-color: #e4eef0;
}

.single_content .single_text_area .gpt-extentions img {
  width: 20%;
}

.single_content .single_text_area .gpt-extentions .deco-text {
  padding: 0 15px;
}

.single_content .single_text_area .gpt-extentions .deco-text span {
  padding: 10px 20px;
  background-color: #1e664d;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
}

.single_content .single_text_area .gpt-extentions .deco-text p {
  font-size: 16px;
}

.single_content .single_text_area .gpt-extentions .ex-link {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

.single_content .single_text_area .gpt-extentions .ex-link a {
  cursor: pointer;
  background-color: #4f4f4f;
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single_content .single_text_area .gpt-extentions .ex-link a:hover {
  -webkit-box-shadow: 4px 4px 2px 2px #bbb;
          box-shadow: 4px 4px 2px 2px #bbb;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single_content .toc_header {
  font-size: 22px;
  padding: 15px;
  background-color: #4f4f4f;
  font-weight: 900;
  color: #fff;
  margin: 0 20px;
}

.single_content .toc_area {
  padding: 10px 0;
  padding-right: 40px;
  margin: 0 20px 20px 20px;
  outline: #f7f7f7 3px solid;
  outline-offset: -3px;
  list-style: none;
}

.single_content .toc_area li {
  padding: 0;
  color: #333333;
  font-size: 16px;
  width: 100%;
}

.single_content .toc_area li:hover {
  background-color: #f7f7f7;
}

.single_content .toc_area li:hover a {
  color: #333333;
}

.single_content .toc_area .toc_link {
  text-decoration: none;
  color: #828282;
}

.single_content .toc_area .toc_title_h2 {
  padding-left: 15px;
  font-weight: 900;
}

.single_content .toc_area .toc_title_h2 a::before {
  content: "▶";
  font-size: 12px;
  margin-right: 3px;
}

.single_content .toc_area .toc_title_h3 {
  padding-left: 40px;
}

.single_content .anchor {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}

.recomended_title {
  margin: 100px 20px 50px 20px;
}

.recomended_title p {
  color: #4f4f4f;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.25em;
}

.recommended_area {
  width: 100%;
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.recommended_area a {
  text-decoration: none;
  color: #333333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.recommended_area a:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 0 8px 4px #cfcfcf;
          box-shadow: 0 0 8px 4px #cfcfcf;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.recommended_area .recommended_post {
  padding: 10px;
  width: 100%;
}

.recommended_area .recommended_post .recomended_image_area img {
  width: 100%;
}

.recommended_area .recommended_post .recomended_title_area {
  width: 100%;
  padding: 10px;
}

.emphasize {
  margin: 5% 10px;
  padding-top: 5px;
  border: 1px solid #ccc;
  position: relative;
  color: #38575c;
}

.emphasize:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #93cfdb;
}

.emphasize:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background-color: #93cfdb;
}

.search_result {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.no_results {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.policy a {
  text-decoration: underline;
  color: #1a0dab;
}

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

.pankuzu {
  width: 100%;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #4f4f4f;
}

.pankuzu a {
  text-decoration: none;
  color: #b3b3b3;
}

.pankuzu a:hover {
  color: #fff;
}

.pankuzu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.pankuzu ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 10px;
  color: #fff;
}

.pankuzu ul li span {
  margin: 0 10px;
}

@media screen and (max-width: 945px) {
  .inner {
    max-width: 800px;
  }
  .home_link {
    display: none;
  }
  .main_contents_wrapper {
    display: block;
    margin-top: 80px;
  }
  .sidebar_wrapper {
    max-width: 100%;
    padding: 0;
  }
  .sidebar_wrapper .categories {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .sidebar_wrapper .categories li:nth-child(2n) {
    border-left: 1px solid #f0f0f0;
  }
  .single_content {
    width: 100%;
  }
  .sidebar_sticky {
    display: none;
  }
  .recomended_title p {
    text-align: center;
  }
  .search_result {
    width: 100%;
  }
  .nav_contents {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .passive {
    overflow: hidden;
  }
  .inner {
    max-width: 550px;
  }
  .main_contents_wrapper {
    margin-top: 40px;
  }
  .sns_link_area_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header {
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .header_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .header_items .logo_area {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .header_items .search_area {
    -webkit-transform: translateX(10px) translateY(5vh);
            transform: translateX(10px) translateY(5vh);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .header_items .search_area .searchform_input {
    padding: 10px 50px;
  }
  .pankuzu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top_contents .top_contents_heading {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    background-color: #fff;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top_contents .top_contents_heading p {
    color: #333333;
    font-size: 22px;
  }
  .top_contents .slider_button {
    display: none;
  }
  .top_contents .slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top_content {
    height: initial;
  }
  .top_content .top_content_image_area img {
    max-width: initial;
    width: 100%;
  }
  .top_content .top_content_title_area p {
    font-size: 16px;
  }
  .sidebar_wrapper .categories li {
    height: 70px;
  }
  .single_content .single_title_area {
    font-size: 16px;
  }
  .single_content .single_text_area .blogcard {
    max-width: 90%;
  }
  .single_content .single_text_area .blogcard .card-link img {
    display: none;
  }
  .search_result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .articles_wrapper .articles_heading p {
    text-align: center;
  }
  .articles_wrapper .articles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .articles_wrapper .articles a {
    margin: 10px 0;
    margin-top: 60px;
  }
  .articles_wrapper .articles .article .article_image_area {
    margin-bottom: 0;
  }
  .articles_wrapper .articles .article .article_image_area .articles_category_label {
    left: -5px;
  }
  .articles_wrapper .articles .article .article_title_area {
    padding: 5px 15px;
  }
  .articles_wrapper .articles .article .article_title_area p {
    font-size: 20px;
  }
  .recommended_area {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

.webtool_category_area {
  background-color: #4f4f4f;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
}

.webtool-title-area {
  padding: 20px 10px;
}

.webtool-title-area h1 {
  line-height: 1.4em;
}

.tagtool-wrapper {
  margin: 5%;
  background-color: #f7f7f7;
  -webkit-box-shadow: inset 0 1.5px 1px 1.5px #666;
          box-shadow: inset 0 1.5px 1px 1.5px #666;
  padding: 15px;
  border-radius: 0.4em;
  font-family: 'ヒラギノ丸ゴ Pro';
  position: relative;
}

.tagtool-wrapper .reset-button {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 12px;
  padding: 3px 10px;
  border: 1px solid #bbb;
  background-color: #fff;
  color: #aaa;
}

.tagtool-wrapper .reset-button:hover {
  border: 1px solid #4f4f4f;
  color: #4f4f4f;
}

.tagtool-wrapper .specify-size {
  margin-bottom: 15px;
}

.tagtool-wrapper .specify-size span {
  font-size: 14px;
  color: #333;
}

.tagtool-wrapper .specify-size .size-px {
  color: #333;
  margin-left: 3px;
}

.tagtool-wrapper .specify-size .ratio {
  margin: 0 10px;
  font-size: 20px;
}

.tagtool-wrapper .specify-size input {
  width: 100px;
  border: 1px solid #ccc;
  height: 30px;
  padding: 1%;
  outline: none;
  text-align: center;
}

.tagtool-wrapper .specify-size input:focus {
  border-color: #2475bf;
}

.tagtool-wrapper .input-area .input {
  margin: 30px 0;
}

.tagtool-wrapper .input-area .input .tag-number {
  padding: 0 10px;
  display: inline-block;
  background-color: #2475bf;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
}

.tagtool-wrapper .input-area .input .input-text {
  width: 100%;
  height: 100px;
  padding: 1%;
  resize: none;
  border: 1px solid #ccc;
  outline: none;
}

.tagtool-wrapper .input-area .input .input-text::-webkit-input-placeholder {
  color: #9c9c9c;
}

.tagtool-wrapper .input-area .input .input-text:-ms-input-placeholder {
  color: #9c9c9c;
}

.tagtool-wrapper .input-area .input .input-text::-ms-input-placeholder {
  color: #9c9c9c;
}

.tagtool-wrapper .input-area .input .input-text::placeholder {
  color: #9c9c9c;
}

.tagtool-wrapper .input-area .input .input-text:focus {
  border-color: #2475bf;
}

.tagtool-wrapper .input-area .input .panel .probability-setting {
  margin-bottom: 15px;
}

.tagtool-wrapper .input-area .input .panel .probability-setting input {
  margin-left: 30px;
  height: 30px;
  width: 30px;
  border: 1px solid #ccc;
  outline: none;
  text-align: center;
  font-size: 14px;
}

.tagtool-wrapper .input-area .input .panel .probability-setting input:focus {
  border-color: #2475bf;
}

.tagtool-wrapper .input-area .input .panel .probability-setting span {
  font-size: 14px;
}

.tagtool-wrapper .input-area .input .panel .probability-setting .per-explain {
  font-size: 13px;
}

.tagtool-wrapper .output .tag-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tagtool-wrapper .output .tag-button {
  padding: 10px 20px;
  border: none;
  background-color: #ccdffc;
  font-family: 'ヒラギノ丸ゴ Pro';
}

.tagtool-wrapper .output .tag-button:hover {
  outline: #4f4f4f 3px solid;
}

.tagtool-wrapper .output .left-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.tagtool-wrapper .output .generate-element-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tagtool-wrapper .output .generate-element-button .plus-button {
  font-size: 20px;
  margin-left: 15px;
}

.tagtool-wrapper .output .output-button {
  cursor: pointer;
  padding: 15px 20px;
  border: none;
  background-color: #4f4f4f;
  color: #fff;
  font-weight: 900;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-family: 'ヒラギノ丸ゴ Pro';
}

.tagtool-wrapper .output .output-button:hover {
  background-color: #fff;
  outline: #4f4f4f 3px solid;
  outline-offset: -3px;
  color: #4f4f4f;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.tagtool-wrapper .output .delete-element-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tagtool-wrapper .output .delete-element-button .minus-button {
  font-size: 20px;
  margin-left: 15px;
}

.tagtool-wrapper .output .output-tag {
  position: relative;
  display: none;
}

.tagtool-wrapper .output .output-tag .result-tag {
  margin-top: 50px;
  background-color: #4f4f4f;
  padding: 15px;
  line-height: 1em;
  color: #fff;
  word-wrap: break-word;
}

.tagtool-wrapper .output .output-tag .copy-button {
  position: absolute;
  top: 15px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tagtool-wrapper .output .output-tag .copy-button button {
  padding: 10px 20px;
  border: none;
  background-color: #ccdffc;
  border: 5px solid #4f4f4f;
}

.tagtool-wrapper .output .output-tag .copy-button button:hover {
  border: 5px solid #fff;
}

.tagtool-wrapper .output .output-tag .copy-button span {
  font-size: 10px;
  color: #fff;
}

.tagtool-wrapper .alert {
  color: red;
  font-size: 11px;
}

.hidden {
  display: none;
}

.webtool-explain {
  margin: 0 15px;
}

.webtool-explain .explain-title {
  cursor: pointer;
  padding: 5px 15px;
  font-size: 1.3em;
  background-color: #4f4f4f;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.webtool-explain .explain-title:hover {
  color: #5fa4e3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.webtool-explain .explain-item {
  margin-bottom: 10px;
}

@media screen and (max-width: 440px) {
  .webtool-explain .explain-title {
    padding: 10px 20px;
    font-size: 1.2em;
  }
  .webtool-explain .explain-item {
    margin-bottom: 1em;
  }
}

.tool-title {
  margin: 50px 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #4290b8;
  padding: 10px 0;
}

.tool-title h4 {
  font-size: 2em;
}

.gpttool-wrapper {
  margin: 0 5% 5% 5%;
  background-color: #f7f7f7;
  -webkit-box-shadow: inset 0 1.5px 1px 1.5px #666;
          box-shadow: inset 0 1.5px 1px 1.5px #666;
  padding: 15px;
  border-radius: 0.4em;
  font-family: 'ヒラギノ丸ゴ Pro';
  position: relative;
  font-size: 14px;
}

.gpttool-wrapper .area {
  background-color: #fff;
  padding: 10px;
}

.gpttool-wrapper .guide {
  color: #aaa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.gpttool-wrapper .guide .tooltip {
  cursor: pointer;
  margin-left: 10px;
  width: 25px;
  height: 25px;
  border: 1px solid #aaa;
  color: #aaa;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gpttool-wrapper .guide .tooltip:hover {
  border: 1px solid #333;
  color: #333;
}

.gpttool-wrapper .guide .tooltip-disp {
  max-width: 300px;
  max-height: 250px;
  background-color: #333;
  color: #fff;
  position: absolute;
  top: 45px;
  right: 0;
  padding: 5px 10px;
  z-index: 3;
}

.gpttool-wrapper .classification .select-format {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.gpttool-wrapper .classification .select-format::after {
  position: absolute;
  top: 0.9em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #333;
  pointer-events: none;
}

.gpttool-wrapper .classification .select-format select {
  height: 32px;
  padding: 0 10px;
  padding-right: 30px;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 3px;
}

.gpttool-wrapper .classification .input-text-area {
  margin-top: 20px;
}

.gpttool-wrapper .setting {
  margin: 20px 0;
}

.gpttool-wrapper .setting .setting-title {
  padding: 10px 15px;
  background-color: #4290b8;
  color: #fff;
  font-weight: 900;
  margin-right: 10px;
}

.gpttool-wrapper .setting .guide {
  margin-bottom: 10px;
}

.gpttool-wrapper .setting .set-1 {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.gpttool-wrapper .setting .set-1 li {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gpttool-wrapper .setting .set-1 li span {
  color: #aaa;
}

.gpttool-wrapper .setting .set-1 li input {
  width: 100%;
  text-align: center;
  font-size: 12px;
  padding: 3px;
}

.gpttool-wrapper .setting .set-1 li input::-webkit-input-placeholder {
  color: #bbb;
}

.gpttool-wrapper .setting .set-1 li input:-ms-input-placeholder {
  color: #bbb;
}

.gpttool-wrapper .setting .set-1 li input::-ms-input-placeholder {
  color: #bbb;
}

.gpttool-wrapper .setting .set-1 li input::placeholder {
  color: #bbb;
}

@media screen and (max-width: 400px) {
  .gpttool-wrapper .setting .set-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gpttool-wrapper .setting .set-1 li {
    font-size: 16px;
  }
  .gpttool-wrapper .setting .set-1 li input {
    font-size: 16px;
    width: 100%;
  }
}

.gpttool-wrapper .setting .check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

.gpttool-wrapper .setting .check li {
  line-height: initial;
  list-style: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #aaa;
  font-weight: 900;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  font-size: 12px;
  color: #aaa;
  padding: 3px 8px;
  border-radius: 3px;
}

.gpttool-wrapper .setting .check li:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  outline: #000 2px solid;
  outline-offset: -2px;
}

.gpttool-wrapper .setting .check li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gpttool-wrapper .setting .check li label input {
  margin-right: 5px;
}

.gpttool-wrapper .setting .check .check-active {
  background-color: #333;
  color: #fff;
}

.gpttool-wrapper .input-text-area {
  margin-top: 10px;
  padding: initial;
}

.gpttool-wrapper .input-text-area label {
  color: #aaa;
}

.gpttool-wrapper .input-text-area textarea {
  width: 100%;
  padding: 10px;
  resize: none;
  font-size: 16px;
}

.gpttool-wrapper .output-btn-area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gpttool-wrapper .output-btn-area .output-button {
  cursor: pointer;
  padding: 15px 20px;
  border: none;
  background-color: #333;
  color: #fff;
  font-weight: 900;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-family: 'ヒラギノ丸ゴ Pro';
  margin-top: 20px;
}

.gpttool-wrapper .output-btn-area .output-button:hover {
  background-color: #fff;
  outline: #333 3px solid;
  outline-offset: -3px;
  color: #333;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.gpttool-wrapper .generated-element {
  position: relative;
  margin-top: 80px;
  background-color: #333;
  padding: 15px;
  line-height: 1em;
  color: #fff;
  word-wrap: break-word;
  -webkit-animation: appear 0.4s ease 0s 1 normal none running;
          animation: appear 0.4s ease 0s 1 normal none running;
}

.gpttool-wrapper .generated-element::before {
  content: "以下のテンプレートが生成されました";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  color: #4290b8;
  font-size: 14px;
  font-weight: 900;
}

.gpttool-wrapper .generated-element .set {
  margin-left: 15px;
  list-style: none;
}

.gpttool-wrapper .copy-area {
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  background-color: #4290b8;
  outline: #4290b8 1px solid;
  outline-offset: -1px;
}

.gpttool-wrapper .copy-area:hover {
  color: #4290b8;
  background-color: initial;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.gpttool-wrapper .copy-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 40px;
  font-size: 14px;
}

.gpttool-wrapper .chatgpt-link {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gpttool-wrapper .chatgpt-link a {
  padding: 0 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  background-color: #333;
  outline: #333 1px solid;
  outline-offset: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.gpttool-wrapper .chatgpt-link a:hover {
  padding: 0 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.gpttool-wrapper .chatgpt-link a span {
  display: block;
}

.gpttool-wrapper .chatgpt-link a span:nth-child(2) {
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  position: relative;
}

.gpttool-wrapper .chatgpt-link a span:nth-child(2)::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #333;
  position: absolute;
  top: -2px;
  right: -2px;
}

.gpttool-wrapper .chatgpt-link a span:nth-child(2)::after {
  content: "→";
  font-size: 20px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: -12px;
  right: -6px;
  z-index: 3;
}

.copy-anime {
  -webkit-animation: copied 1s ease 0s 1 normal none running;
          animation: copied 1s ease 0s 1 normal none running;
}

@-webkit-keyframes copied {
  0% {
    display: block;
    opacity: 1;
  }
  90% {
    display: block;
    opacity: 0.1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes copied {
  0% {
    display: block;
    opacity: 1;
  }
  90% {
    display: block;
    opacity: 0.1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@media screen and (max-width: 599px) {
  .tagtool-wrapper .output .tag-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .single_content .single_text_area .gpt-extentions img {
    width: 80%;
  }
  .single_content .single_text_area .gpt-extentions .deco-text {
    text-align: center;
    padding: 0 15px;
  }
}

@media screen and (max-width: 945px) {
  .sidebar_wrapper .categories.webtool {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.test-title {
  color: blue;
}
/*# sourceMappingURL=style.css.map */