@charset "utf-8";
@import url("./reset.css");
@import url("./variables.css");

/* base
----------------------------------*/

html {
  font-size: 62.5%;
  /* root: 10px */
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  color: #000;
  background: var(--base-bg);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*font-feature-settings: "palt";*/
}

/* Safariのみ仮名文字のみをカーニングする指定 */
/*
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  ::i-block-chrome,
  body {
    font-feature-settings: "pkna";
  }
}
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.4;
}

input,
textarea,
button,
select {
  /* font-family: inherit; */
  font-size: 16px;
}

label,
button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}

/* IEだけインラインSVGの表示サイズがおかしくなるバグへの対処方法 */

img[src$=".svg"] {
  width: 100%;
  /* lte IE10 */
}

mark {
  background: none;
  color: inherit;
}

a,
.button {
  text-decoration: none;
  color: inherit;
  outline: none;
  /* lte IE8 */
  transition-property: border, background, color;
  transition-duration: 0.05s;
  transition-timing-function: ease-in-out;
}

body[data-ccc_useragent="desktop"] a:hover {
  text-decoration: none;
}

body[data-ccc_useragent="desktop"] a.hv-udl:hover {
  text-decoration: underline;
  padding-bottom: 1px;
  /* font-size:11px以下のバグ対策; */
}

a img {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

body[data-ccc_useragent="desktop"] a:hover img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  filter: alpha(opacity=50);
  /* lte IE8 */
  opacity: 0.5;
}

body[data-ccc_useragent="desktop"] a:hover,
body[data-ccc_useragent="desktop"] .hv-op:hover {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  filter: alpha(opacity=50);
  /* lte IE8 */
  opacity: 0.5;
}

body[data-ccc_useragent="desktop"] .hv-op-no:hover {
  filter: alpha(opacity=100);
  /* lte IE8 */
  opacity: 1;
}

.link-color {
  color: var(--action-color-a-01);
}

a.link {
  color: var(--action-color-a-01);
  text-decoration: underline;
}

.action,
.action-primary,
.action-secondary,
.wp-block-button__link,
button[type="submit"] {
  display: inline-block;
  vertical-align: top;
  background: var(--action-color-a-01);
  border-color: var(--action-color-a-01);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  box-sizing: border-box;
  border: solid 1px #000;
  padding: 5px 10px;
  color: var(--action-color-b-01) !important;
  text-decoration: none !important;
  cursor: pointer;
}

.action-primary,
.wp-block-button__link,
button[type="submit"] {
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  min-height: 40px;
}

.action-secondary {
  background: var(--text-color-b-04);
  border-color: var(--text-color-a-02);
}

strong {
  font-weight: 600;
}

.display-none {
  display: none !important;
}

/*** font ***/

.font-family-01 {
  font-family: serif;
}

.font-wgt-01 {
  font-weight: 600;
}

.font-nrw-01 {
  letter-spacing: -1px;
}

.font-small-01 {
  font-size: 80%;
}

/*** other ***/

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.wrd-bkal {
  word-break: break-all;
}

.text-align-justify {
  text-align: justify;
}

sup,
.sup {
  vertical-align: super;
  font-size: 62%;
}

/* switching PC/SP
----------------------------------*/

/****** ccc_breakpoint（jQueryプラグイン）---START--- ******/

/* jQuery と メディアクエリを連動して一元管理 */

#ccc_window_size-desktop,
#ccc_window_size-tablet,
#ccc_window_size-phone {
  display: none;
}

/*** switching PC/SP ***/

/* jQuery と メディアクエリを連動して一元管理 */

@media only screen and (min-width: 783px) {
  #ccc_window_size-desktop {
    display: block;
  }

  .sp {
    display: none !important;
  }
}

@media only screen and (max-width: 782px) {
  #ccc_window_size-phone {
    display: block;
  }

  .pc {
    display: none !important;
  }
}

/****** ccc_breakpoint（jQueryプラグイン）---END--- ******/

/*** keyframes fadeIn ***/

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*** keyframes fadeOut ***/

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*** keyframes slideIn ***/

@-webkit-keyframes slideIn {
  0% {
    -moz-transform: translate(0, -67px);
    -ms-transform: translate(0, -67px);
    -webkit-transform: translate(0, -67px);
    transform: translate(0, -67px);
    opacity: 0;
  }

  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    -moz-transform: translate(0, -67px);
    -ms-transform: translate(0, -67px);
    -webkit-transform: translate(0, -67px);
    transform: translate(0, -67px);
    opacity: 0;
  }

  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

/*** HubSpot ***/
body[data-ccc_user_language="no_ja"] #hubspot-messages-iframe-container {
  display: none !important;
}

.ccc_hubspot_member_block-wrap {
  background: var(--text-color-b-02);
  box-sizing: border-box;
  padding: 1em;
  border: 1px solid var(--contents-bg-a-01);
  margin-top: 1em;
}

#ccc_hubspot_member_block-form p,
#ccc_hubspot_member_block-result .ccc_hubspot_member_block-form-text_not {
  font-size: 1em;
}

.ccc_hubspot_member_block-wrap input[type="email"] {
  display: inline-block;
  vertical-align: top;
  font-size: 1em;
  padding: 0.5em;
  height: 40px;
  width: calc(100% - 60px);
  max-width: 350px;
  box-sizing: border-box;
  border: 1px solid var(--action-color-a-01);
}

/*チャットメッセージより上に表示される様に z-index を調整：START*/
body div#hs-eu-cookie-confirmation {
  z-index: 2222222222 !important;
}

body div#hubspot-messages-iframe-container {
  z-index: 2147483646;
}

/*チャットメッセージより上に表示される様に z-index を調整：END*/

/* basic
----------------------------------*/

.outer {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.inner-01,
.inner-02,
.inner-03 {
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.inner-01 {
  max-width: 1500px;
}

.inner-02 {
  max-width: 1000px;
}

.inner-03 {
  max-width: 720px;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.icon {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.link-btn {
  position: relative;
  padding-right: 20px;
  font-weight: 500;
  color: var(--action-color-a-01);
}

.link-btn::after {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  margin-top: 7px;
  margin-right: 5px;
  border-top: 2px solid;
  border-right: 2px solid;
  height: 7px;
  width: 7px;
  transform: rotate(45deg);
}

/* unique
----------------------------------*/

/*** header-group ***/

.header-group {
  width: 100%;
  position: relative;
  z-index: 999999999;
  top: 0;
  left: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.header-group.fixed {
  position: fixed;
  -webkit-animation: slideIn 0.5s linear 0s 1;
  -moz-animation: slideIn 0.5s linear 0s 1;
  -ms-animation: slideIn 0.5s linear 0s 1;
  -o-animation: slideIn 0.5s linear 0s 1;
  animation: slideIn 0.5s linear 0s 1;
}

.hg-inner,
.fg-inner {
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  max-width: none;
}

.hg-inner {
  background: rgba(255, 255, 255, 1);
}

.header-group.fixed .hg-inner {
  background: rgba(255, 255, 255, 0.9);
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-logo {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.header-logo>a {
  display: inline-block;
  vertical-align: middle;
  height: 24px;
}

.header-logo img,
.header-logo img[src$=".svg"] {
  width: auto;
  height: 100%;
}

body:not(.hg-opened):not(.sf-opened) .header-group.fixed .header-logo>a {
  height: 20px;
}

.header-nav {
  float: right;
  margin-top: 2em;
  margin-bottom: 2em;
}

.header-nav-excerpt {
  float: right;
  margin: 0 2em;
}

.hg-opened .header-nav-excerpt,
.sf-opened .header-nav-excerpt {
  display: none;
}

.header-nav-excerpt .menu li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1em;
  margin-left: 1.5em;
}

.header-nav-excerpt .menu li:first-child {
  margin-left: 0;
}

.header-group.fixed .header-nav-excerpt .menu li {
  font-size: 0.9em;
}

.header-nav-excerpt .menu li a {
  font-weight: 500;
  padding-left: 0.5em;
  position: relative;
}

.header-nav-excerpt .menu li a::before {
  content: " ";
  background: #000;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 65%;
}

.header-nav-excerpt .menu .current-menu-item a {
  pointer-events: none;
  color: #888;
}

.header-user_login {
  display: none !important;
  /* 現在未使用 */
  float: right;
}

.header-user_login .text {
  display: none;
}

.hg-opened .header-user_login,
.sf-opened .header-user_login {
  display: none;
}

#menu-header_sns {
  font-size: 0.9em;
  margin-top: 7vw;
  text-align: left;
}

#menu-header_sns>li {
  margin-top: 1em;
  line-height: 1.5;
  display: inline-block;
  vertical-align: top;
  margin-right: 2em;
}

#menu-header_sns>li:last-child {
  margin-right: 0;
}

/* for WordPress Plugin "bogo" : START */

#header-language-switcher {
  margin-top: 2em;
  text-align: left;
}

#header-language-switcher>.ttl {
  margin-bottom: 0.5em;
}

.language-switcher>.ttl .fa,
.language-switcher>.ttl .fas {
  margin-right: 0.25em;
}

#header-language-switcher .bogo-language-switcher li {
  display: inline-block;
  margin-right: 1em;
}

#header-language-switcher .bogo-language-switcher li:last-child {
  margin-right: 0;
}

#footer-language-switcher {
  position: fixed;
  z-index: 100;
  bottom: 3%;
  left: 2%;
  background: rgba(0, 0, 0, 0.7);
  padding: 2px 10px 4px 10px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s;
}

#footer-language-switcher.opened {
  padding: 10px 20px 14px 20px;
  background: rgba(0, 0, 0, 1);
}

#footer-language-switcher>.ttl {
  font-size: 0.9em;
}

.js-language-switcher:not(.opened) .bogo-language-switcher {
  display: none;
  /* JS */
}

/* for WordPress Plugin "bogo" : END */

.hg-opened .header-group .ccc-favorite-post-count,
.sf-opened .header-group .ccc-favorite-post-count {
  color: var(--text-color-b-01);
  margin-right: 0;
}

.hg-opened .header-group .ccc-favorite-post-count.active .text,
.sf-opened .header-group .ccc-favorite-post-count.active .text {
  display: inline;
  font-size: 0.9em;
  font-weight: 500;
  margin-left: 0.35em;
}

.content-meta {
  position: relative;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.content-meta {
  position: relative;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.content-meta .ccc-favorite-post-toggle {
  float: right;
}

.content-meta .ccc-favorite-post-toggle>a {
  font-size: 1.25em;
  line-height: 1;
}

.article-more {
  text-align: center;
  margin-top: 2em;
}

.article-more>a {
  display: inline-block;
  vertical-align: top;
  font-size: 0.8em;
}

.article-more>a::before {
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  /* この文字コードでは必須 */
  content: "\f2f1";
  font-size: 20px;
  line-height: 1.8;
  margin-right: 0.25em;
}

.footer-group {
  position: relative;
  background: #333;
  border-top: 1px solid #111;
  margin-top: 4em;
  padding-bottom: 15px;
  color: var(--text-color-b-01);
}

.footer-logo {
  margin: 10px auto 0 auto;
  text-align: center;
}

.footer-logo>a {
  height: 20px;
  display: inline-block;
  vertical-align: top;
}

.footer-logo img,
.footer-logo img[src$=".svg"] {
  width: auto;
  height: 100%;
}

.footer-website_description {
  text-align: center;
  margin: 10px auto;
}

.footer-logo+.footer-website_description {
  margin-top: 0;
}

.footer-nav {
  margin-top: 1.25em;
  border-top: 1px solid #444;
}

#menu-footer_primary,
#menu-footer_global,
#menu-footer_sns {
  font-size: 0.9em;
  box-sizing: border-box;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1000px;
  margin: 2.5em auto 0 auto;
}

#menu-footer_primary {
  margin-top: 1em;
}

#menu-footer_sns {
  margin-top: 1em;
}

#menu-footer_primary+#menu-footer_global {
  margin-top: 1em;
}

#menu-header_primary+#menu-header_global {
  margin-top: 2em;
}

#menu-header_global>li,
#menu-footer_global>li,
#menu-footer_primary>li,
#menu-footer_sns>li {
  display: inline-block;
  vertical-align: top;
  margin: 0.5em 0;
  margin-right: 2em;
}

#menu-header_global>li:last-child,
#menu-footer_global>li:last-child,
#menu-footer_primary>li:last-child,
#menu-footer_sns>li:last-child {
  margin-right: 0;
}

#menu-header_global .menu-item-has-children,
#menu-footer_global .menu-item-has-children,
#menu-footer_primary .menu-item-has-children {
  display: block;
  margin-right: 0;
  margin-bottom: 1.5em;
}

.menu-item>a {
  display: inline-block;
  /* IE & Edgeで"pointer-events"のバグ対策（"inline"では動作しない）*/
  vertical-align: top;
  font-weight: 400;
}

#menu-header_primary {
  font-size: 1.1em;
  margin-top: 1em;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}

#menu-header_primary>li {
  margin-top: 1em;
  line-height: 1.5;
}

#menu-header_primary .menu-item-has-children {
  margin-bottom: 1.5em;
}

#menu-header_primary li a {
  position: relative;
  /* padding-left: 2.5em; */
  /* 親メニューにも罫線アイコンを入れる場合、この値を使用 */
}

#menu-header_primary li a:before {
  content: " ";
  width: 1.5em;
  height: 1px;
  background: #555;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#menu-header_primary>li>a:before {
  width: 0;
  /* 親メニューにも罫線アイコンを入れる場合、この値は削除 */
}

#menu-header_primary .sub-menu {
  margin-top: 1em;
  padding: 0.25em 0;
  box-sizing: border-box;
  /* margin-left: 0.85em; */
  /* 親メニューにも罫線アイコンを入れる場合、この値を使用 */
}

#menu-header_primary .sub-menu>li {
  display: inline-block;
  vertical-align: top;
  margin: 0.5em;
  box-sizing: border-box;
}

#menu-header_primary .sub-menu>li>a {
  padding: 0 0.5em;
  box-sizing: border-box;
  position: relative;
  font-weight: 600;
  padding-left: 0.95em;
}

#menu-header_primary .sub-menu>li a:before {
  width: 1px;
  height: 95%;
  background: #888;
  margin-bottom: 3px;
}

#menu-header_global .menu-item>a[aria-current="page"],
#menu-header_primary .menu-item>a[aria-current="page"],
#menu-footer_global .menu-item>a[aria-current="page"],
#menu-footer_primary .menu-item>a[aria-current="page"] {
  pointer-events: none;
  cursor: default;
  color: var(--alpha-bg-a-50);
}

#menu-header_global li a,
#menu-footer_global li a,
#menu-footer_primary li a {
  position: relative;
  padding-left: 1em;
}

#menu-header_global li a::before,
#menu-footer_global li a::before,
#menu-footer_primary li a::before {
  content: " ";
  width: 1px;
  height: 90%;
  background: #777;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#menu-header_global li a::before {
  background: #fff;
}

#menu-header_global .sub-menu>li a,
#menu-footer_global .sub-menu>li a,
#menu-footer_primary .sub-menu>li a {
  padding-left: 1.2em;
  font-weight: 600;
}

#menu-header_global .sub-menu>li a::before,
#menu-footer_global .sub-menu>li a::before,
#menu-footer_primary .sub-menu>li a::before {
  width: 0.75em;
  height: 1px;
  background: #999;
}

.fg-usage_date-theme_version {
  font-size: 0.7em;
  text-align: right;
  margin-top: 3em;
}

.fg-copyright {
  font-size: 0.7em;
  text-align: center;
  margin-top: 3em;
}

.footer-logo>a>img {
  -webkit-filter: invert(1);
  -ms-filter: invert(1);
  filter: invert(1);
}

/* contents */

.page-title {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 240px;
  display: table;
  width: 100%;
  text-align: center;
  margin-bottom: 140px;
}

.page-title-text {
  display: table-cell;
  vertical-align: middle;
}

.title-content {
  font-size: 2em;
  line-height: 1.3;
}

.title-content-sub {
  letter-spacing: 0.1em;
}

.no-post {
  width: 100%;
  box-sizing: border-box;
  padding-top: 3em;
  padding-bottom: 3em;
  text-align: center;
}

.list-series .img-post>a {
  display: block;
  background-image: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#e3e3e3),
      to(#818b8f));
  background-image: linear-gradient(180deg, #e3e3e3, #818b8f);
}

.img-post-thumbnail {
  width: 100%;
  padding-bottom: 56.25%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

body[data-ccc_useragent="desktop"] a:hover .img-post-thumbnail {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  filter: alpha(opacity=50);
  /* lte IE8 */
  opacity: 0.5;
}

.aside-group {
  margin: 3em auto;
  box-sizing: border-box;
}

.aside-related {
  padding: 1em;
  background-color: var(--base-color);
}

/* お気に入り：WPプラグイン："My Favorites" */

.header-group .ccc-favorite-post-count {
  float: right;
}

.header-group .ccc-favorite-post-count>a {
  padding: 0 5px 0 10px;
}

/* 投稿フィルター：WPプラグイン："Posts Filter" */

.main #ccc-terms_filter_ajax-article[data-ccc_posts_filter-style="1"] #ccc-terms_filter_ajax-inner {
  min-height: 60vh;
}

/* 閲覧履歴：WPプラグイン："Browsing History" */

#content-ccc_browsing_history {
  margin-bottom: 0;
  border-top: 1px solid var(--contents-bg-a-01);
  background: var(--contents-bg-a-02);
  display: inline-block;
  vertical-align: top;
  width: 100%;
  box-sizing: border-box;
  padding: 2em 0;
}

#content-ccc_browsing_history .title-section {
  font-weight: 600;
}

#content-ccc_browsing_history+.footer-group {
  margin-top: 0;
}

#content-ccc_browsing_history .dotted-line::before {
  background: var(--contents-bg-a-02);
}

#content-ccc_browsing_history .dotted-line::after {
  background-color: var(--contents-bg-a-02);
}

/*** イメージスライダー：WPプラグイン："CCC Post Slider" : START ***/
.ccc_post_slider .slick-list {
  background-color: var(--base-color);
}

/* ローディング */
.ccc_post_slider-loading {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 99999;
}

/*** イメージスライダー：WPプラグイン："CCC Post Slider" : END ***/

/* 三点リーダー */

.dotted-line {
  overflow: hidden;
  /* word-break: break-all; */
  /* text-align: justify; */
  text-justify: inter-ideograph;
  position: relative;
  box-sizing: border-box;
  padding-right: 1em;
}

.dotted-line::before {
  background-color: #fff;
  content: "\22ef";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1em;
  text-align: center;
}

.dotted-line::after {
  position: absolute;
  background-color: var(--base-bg);
  content: " ";
  height: 100%;
  width: 100%;
}

.btn-common>a {
  display: block;
  font-weight: 500;
  color: #fff;
  padding: 0.5em 1em;
  box-sizing: border-box;
  background-color: #333;
  text-align: center;
  max-width: 200px;
  margin: 1em 0;
}

.btn-common>.file-pdf::before {
  display: inline-block;
  vertical-align: top;
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  /* この文字コードでは必須 */
  font-size: 1em;
  margin-right: 0.35em;
}

.btn-common>.file-download::before {
  display: inline-block;
  vertical-align: top;
  content: "\f019";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  /* この文字コードでは必須 */
  font-size: 1em;
  margin-right: 0.35em;
}

.btn-common>.email::before {
  display: inline-block;
  vertical-align: top;
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  /* この文字コードでは必須 */
  font-size: 1em;
  margin-right: 0.35em;
}

/* 現在の投稿の前後の記事のリンクオブジェクト */

.wrap-nav-around {}

.block-nav-around {
  background: var(--base-color);
  padding: 1em;
  box-sizing: border-box;
  margin: 3em auto;
}

.nav-around {
  display: table;
  width: 100%;
  margin: 1em auto 0 auto;
}

.title-nav-around {
  font-weight: 500;
}

.nav-around li {
  display: table-cell;
  width: 30%;
  vertical-align: middle;
}

.btn-arrow a {
  position: relative;
}

.btn-arrow a::after {
  content: " ";
  border: 2px solid;
  border-bottom: 0;
  border-left: 0;
  width: 7px;
  height: 7px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  margin-right: 15px;
}

.nav-previous .btn-arrow a,
.nav-next .btn-arrow a {
  display: inline-block;
  vertical-align: top;
  font-size: 0.85em;
  font-weight: 500;
  line-height: 1.3;
  color: var(--action-color-a-01);
}

.nav-previous .btn-arrow a {
  padding-left: 20px;
}

.nav-previous .btn-arrow a::after {
  transform: rotate(-135deg);
  margin-right: auto;
  margin-left: 2px;
}

.nav-next {
  text-align: right;
}

.nav-next .btn-arrow a {
  text-align: left;
  padding-right: 20px;
}

.nav-next .btn-arrow a::after {
  margin-right: 2px;
}

.nav-around .nav-archive {
  text-align: center;
  width: 40%;
}

.nav-archive .btn-arrow a {
  display: inline-block;
  vertical-align: middle;
  padding: 0 1em;
  box-sizing: border-box;
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1.4;
}

.nav-archive .btn-arrow a::after {
  display: none;
}

.nav-archive .btn-arrow a::before {
  content: "\f03a";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  /* この文字コードでは必須 */
  font-size: 1.5em;
  display: block;
}

.nav-archive .btn-arrow a>.text {
  display: block;
}

/* アーカイブ一覧 */

.list-archive {
  display: table;
}

.list-archive+.list-archive {
  margin-top: 2em;
}

.one-archive {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  padding-right: 1em;
}

.img-archive-post {
  width: 120px;
}

.txt-archive-post {
  padding-right: 0;
}

.txt-archive-post .time {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.4;
  margin-right: 1em;
}

.txt-archive-post .term-list {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
}

.txt-archive-post .term {
  display: inline-block;
  vertical-align: middle;
  color: var(--action-color-a-01);
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid var(--action-color-a-01);
  padding: 0.3em 0.65em 0.35em 0.65em;
  margin-top: 0.25em;
  margin-right: 0.5em;
}

.txt-archive-post .post_type-taxonomy_terms {
  margin-top: 0.5em;
  line-height: 1.3;
}

.txt-archive-post .post_type-taxonomy_terms[data-post_taxonomy="product_name"] .term {
  background: var(--action-color-a-01);
  color: #fff;
}

.txt-archive-post .post_type-taxonomy_terms[data-post_taxonomy="post_tag"] {
  margin-top: 0.25em;
}

.txt-archive-post .post_type-taxonomy_terms[data-post_taxonomy="post_tag"] .term-list::before {
  display: inline-block;
  vertical-align: bottom;
  content: "\f02c";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 0.8em;
  margin-right: 0.35em;
  color: var(--action-color-a-01);
}

.txt-archive-post .post_type-taxonomy_terms[data-post_taxonomy="post_tag"] .term {
  color: #000;
  font-weight: 400;
  border: none;
  border-radius: 0;
  padding: 0;
}

.list-archive .txt-archive-post .post_type-taxonomy_terms[data-post_taxonomy="post_tag"] .term:nth-child(n + 4) {
  display: none;
}

.list-archive .txt-archive-post .post_type-taxonomy_terms[data-post_taxonomy="post_tag"] .term:nth-child(3)::after {
  content: ", …";
}

.post_type-taxonomy_terms[data-post_taxonomy="post_tag"] .term::before {
  /* content: "#"; */
}

.post_type-taxonomy_terms[data-post_taxonomy="post_tag"] .term::after {
  content: ",";
}

.post_type-taxonomy_terms[data-post_taxonomy="post_tag"] .term:last-child::after {
  content: " ";
}

.txt-archive-post .term-list-children .term:first-child::before {
  content: ">";
  vertical-align: top;
  margin: 0 1em;
}

.txt-archive-post .term-list-children .term {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1em;
}

.txt-archive-post .term-list-children .term::before {
  content: "/";
  margin: 0 0.5em;
}

.txt-archive-post .title {
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.5em;
}

.txt-archive-post .excerpt {
  line-height: 1.5;
  margin-top: 0.5em;
}

.list-archive-all {
  text-align: right;
  margin-top: 2em;
}

#ccc-terms_filter_ajax-article[data-ccc_posts_filter-style="1"] #ccc-terms_filter_ajax-inner .select-terms-parent {
  max-height: none;
}

/*** WordPressショートコードの「ccc_get_ogp」用クラス（START） ***/
.ccc-get_ogp-box {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #8c8f94;
  background: #fff;
  border: 1px solid var(--contents-bg-a-01);
  box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
  overflow: auto;
  zoom: 1;
  max-width: 1000px;
  box-sizing: border-box;
}

h3+.ccc-get_ogp-box {
  margin-top: 1em;
}

.ccc-get_ogp-box .box-ogp-thumbnail {
  display: flex;
  justify-content: center;
  margin-right: 5%;
  width: 30%;
}

.ccc-get_ogp-box .box-ogp-thumbnail a {
  display: inline-block;
  vertical-align: top;
}

.ccc-get_ogp-box .box-ogp-thumbnail .ofi-cover {
  object-fit: contain;
  width: 100%;
  height: 150px;
  object-position: center center;
}

.ccc-get_ogp-box .box-ogp-text {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  width: 65%;
}

.ccc-get_ogp-box[data-ogp_slug="github"] .link-external {
  text-decoration: none;
}

.ccc-get_ogp-box[data-ogp_slug="github"] .link-external::before {
  content: "\f09b";
  font-family: "Font Awesome 5 Brands";
  font-size: 1.5em;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-right: 0.4em;
}

*[id^="this_theme-wp_content-"] .ccc-accordion-faq-wrap .wp-block-group__inner-container {
  padding: 0;
}

.ccc-accordion-faq-wrap {
  background: var(--text-color-b-01);
  border: 1px solid var(--contents-bg-a-01);
  box-sizing: border-box;
  padding: 1em;
  margin-top: 1em;
}

.ccc-accordion-faq+.ccc-accordion-faq {
  margin-top: 1em;
}

.ccc-accordion-faq .accordion__summary {
  display: block;
  background: var(--text-color-b-02);
  font-weight: 600;
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 0.75em 2.5em;
  color: var(--action-color-a-01);
  line-height: 1.5;
}

.ccc-accordion-faq .accordion__summary::-webkit-details-marker {
  display: none;
}

.ccc-accordion-faq .accordion__summary::before {
  content: "Q:";
  font-weight: 600;
  color: var(--action-color-a-01);
  position: absolute;
  left: 0.75em;
}

.ccc-accordion-faq .accordion__summary::after {
  content: "+";
  font-size: 1.4em;
  /* 記号のサイズ */
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--action-color-a-01);
}

.ccc-accordion-faq[open] .accordion__summary::after {
  content: "−";
}

.ccc-accordion-faq .accordion__detail {
  padding: 0.5em 0.75em 0.5em 2.5em;
  margin: 0;
  position: relative;
}

.ccc-accordion-faq .accordion__detail::before {
  content: "A:";
  position: absolute;
  left: 0.75em;
  font-weight: 600;
  color: red;
}

.ccc-accordion-faq .accordion__text {
  font-size: 1em;
  margin: 0;
}




/* SP
----------------------------------------------------------*/
@media only screen and (max-width: 782px) {
  .ccc-get_ogp-box {
    display: block;
  }

  .ccc-get_ogp-box .box-ogp-thumbnail {
    display: block;
    margin-right: 0;
    width: auto;
  }

  .ccc-get_ogp-box .box-ogp-thumbnail .ofi-cover {
    height: 120px;
  }

  .ccc-get_ogp-box .box-ogp-text {
    display: block;
    width: auto;
  }
}

/*** WordPressショートコードの「ccc_get_ogp」用クラス（END） ***/

/*** WordPressショートコードの「ccc_get_feed」用クラス（START） ***/
.ccc-get_feed-box {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #8c8f94;
  background: #fff;
  border: 1px solid #dcdcde;
  box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
  box-sizing: border-box;
  padding: 1em;
}

h3+.ccc-get_feed-box {
  margin-top: 1em;
}

.ccc-get_feed-box .rss-post {
  padding: 1em;
  box-sizing: border-box;
}

.ccc-get_feed-box .rss-post:nth-child(even) {
  background: var(--base-color);
}

*[id^="this_theme-wp_content-"] .ccc-get_feed-box p {
  margin: 0;
}

*[id^="this_theme-wp_content-"] .ccc-get_feed-box .rss-channel-title {
  margin-bottom: 1em;
}

.ccc-get_feed-box .rss-channel-item-title {
  display: inline-block;
  vertical-align: top;
  width: 75%;
}

.ccc-get_feed-box .rss-channel-item-date {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  text-align: right;
}

.ccc-get_feed-box .rss-channel-item-description:not(.opened) {
  display: none;
}

.ccc-get_feed-box .rss-channel-item-description {
  margin-top: 1em;
  border: 1px solid #dcdcde;
  background: #fff;
  box-sizing: border-box;
  padding: 1em;
}

.ccc-get_feed-box .rss-channel-item-description pre {
  white-space: pre-wrap;
}

*[id^="this_theme-wp_content-"] .ccc-get_feed-box .read_more {
  text-align: right;
  font-size: 1em;
  margin-top: 1em;
}

.ccc-get_feed-box .rss-channel-item-toggle {
  display: inline-block;
  vertical-align: middle;
  width: 5%;
}

*[id^="this_theme-wp_content-"] .ccc-get_feed-box .rss-channel-item-toggle .toggle-text {
  cursor: pointer;
  position: relative;
  font-size: 0;
  height: 14px;
  width: 14px;
  float: right;
}

.ccc-get_feed-box .rss-channel-item-toggle .toggle-text::before,
.ccc-get_feed-box .rss-channel-item-toggle .toggle-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
}

.ccc-get_feed-box .rss-channel-item-toggle .toggle-text::before {
  transform: rotate(0deg);
}

.ccc-get_feed-box .rss-channel-item-toggle .toggle-text.opened::before {
  display: none;
}

.ccc-get_feed-box .rss-channel-item-toggle .toggle-text::after {
  transform: rotate(90deg);
}

.ccc-get_feed-box .rss-channel-item-toggle .toggle-text.opened::after {
  transform: rotate(180deg);
}

/* SP
----------------------------------------------------------*/
@media only screen and (max-width: 782px) {

  .ccc-get_feed-box .rss-channel-item-title,
  .ccc-get_feed-box .rss-channel-item-date,
  .ccc-get_feed-box .rss-channel-item-toggle {
    display: block;
    width: auto;
  }
}

/*** WordPressショートコードの「ccc_get_feed」用クラス（END） ***/

/*** WordPressの「get_the_content()」用クラス（START） ***/

*[id^="this_theme-wp_content-"] p {
  font-size: 1.125em;
  margin: 1em 0;
}

*[id^="this_theme-wp_content-"] h1 {
  font-size: 1.75em;
  margin-top: 1.39285em;
}

*[id^="this_theme-wp_content-"] h2 {
  font-size: 1.5em;
  margin-top: 1.375em;
}

*[id^="this_theme-wp_content-"] h3 {
  font-size: 1.25em;
  margin-top: 1.4em;
}

*[id^="this_theme-wp_content-"] h4 {
  font-size: 1.125em;
  margin-top: 1.3889em;
}

*[id^="this_theme-wp_content-"] h1:first-child,
*[id^="this_theme-wp_content-"] h2:first-child,
*[id^="this_theme-wp_content-"] h3:first-child,
*[id^="this_theme-wp_content-"] h4:first-child,
*[id^="this_theme-wp_content-"] h5:first-child,
*[id^="this_theme-wp_content-"] h6:first-child {
  margin-top: 0;
}

*[id^="this_theme-wp_content-"] *+h1,
*[id^="this_theme-wp_content-"] *+h2,
*[id^="this_theme-wp_content-"] *+h3,
*[id^="this_theme-wp_content-"] *+h4,
*[id^="this_theme-wp_content-"] *+h5,
*[id^="this_theme-wp_content-"] *+h6 {
  margin-top: 1em;
}

*[id^="this_theme-wp_content-"] p.small,
.main p.small {
  font-size: 1em;
}

*[id^="this_theme-wp_content-"] p.x-small,
.main p.x-small {
  font-size: 0.87em;
}

*[id^="this_theme-wp_content-"] p a {
  text-decoration: underline;
  color: var(--action-color-a-01);
}

*[id^="this_theme-wp_content-"] ul,
*[id^="this_theme-wp_content-"] ol {
  padding-left: 1.5em;
}

*[id^="this_theme-wp_content-"] ul {
  list-style-type: disc;
}

*[id^="this_theme-wp_content-"] ol {
  list-style-type: decimal;
}

*[id^="this_theme-wp_content-"] li {
  margin: 0.5em 0;
}

*[id^="this_theme-wp_content-"] .box-border-a01-01 {
  border: 1px solid var(--contents-bg-a-01);
}

*[id^="this_theme-wp_content-"] .box-border-a01-02 {
  border: 2px solid var(--contents-bg-a-01);
}

*[id^="this_theme-wp_content-"] .box-border-a01-03 {
  border: 3px solid var(--contents-bg-a-01);
}

*[id^="this_theme-wp_content-"] .box-shadow-01 {
  box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
}

*[id^="this_theme-wp_content-"] p+.wp-block-image,
*[id^="this_theme-wp_content-"] p+.wp-block-gallery {
  margin-top: 1em;
}

*[id^="this_theme-wp_content-"]>.wp-block-group+.wp-block-group {
  margin-top: 1em;
}

*[id^="this_theme-wp_content-"] .wp-block-group__inner-container {
  padding: 1em 0;
  box-sizing: border-box;
}

*[id^="this_theme-wp_content-"] h2+.wp-block-group,
*[id^="this_theme-wp_content-"] h3+.wp-block-group {
  margin-top: 1em;
}

*[id^="this_theme-wp_content-"] .wp-block-image {
  font-size: 1.125em;
}

*[id^="this_theme-wp_content-"] .list-features {
  background: var(--text-color-b-01);
  box-sizing: border-box;
  padding: 1em;
  padding-left: 2.45em;
}

*[id^="this_theme-wp_content-"] *+.list-features {
  margin-top: 1em;
}

*[id^="this_theme-wp_content-"] .price {
  background: var(--text-color-b-01);
  box-sizing: border-box;
  padding: 1em;
}

*[id^="this_theme-wp_content-"] .fa-external-link-alt {
  margin-left: 0.5em;
}

.wp-block-table.standard table {
  table-layout: fixed;
  width: 100%;
  box-sizing: border-box;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border: 1px solid var(--text-color-a-04);
  background: var(--contents-bg-a-04)
}

.wp-block-table.standard table th,
.wp-block-table.standard table td:first-child {
  width: 30%;
  background: var(--contents-bg-a-01)
}

.wp-block-table.standard table td {
  box-sizing: border-box;
  padding: 0.5em;
  border: 1px solid var(--text-color-a-04);
}

*[id^="this_theme-wp_content-"] p.narrow-block {
  max-width: 492px;
  margin-right: auto;
  margin-left: auto;
}

*[id^="this_theme-wp_content-"] .wrap-youtube {
  position: relative;
  padding-bottom: 56.25%;
}

*[id^="this_theme-wp_content-"] .wrap-youtube>iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

*[id^="this_theme-wp_content-"] p+.wrap-youtube {
  margin: 2.25em auto;
}

*[id^="this_theme-wp_content-"] .wp-block-embed {
  margin: 2em auto;
}

*[id^="this_theme-wp_content-"] .wp-block-embed iframe {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

*[id^="this_theme-wp_content-"] iframe.wp-embedded-content {
  width: 100%;
}

*[id^="this_theme-wp_content-"] a {
  color: var(--action-color-a-01);
  text-decoration: underline;
}

*[id^="this_theme-wp_content-"] .swot-strength {
  background: var(--text-color-b-01);
  box-sizing: border-box;
  padding: 0 1em;
  margin: 3em auto;
}

*[id^="this_theme-wp_content-"] .swot-strength ul,
*[id^="this_theme-wp_content-"] .swot-strength ol {
  background: var(--text-color-b-01);
  box-sizing: border-box;
  padding-left: 1.45em;
  margin-top: 1em;
}

*[id^="this_theme-wp_content-"] *:not(.wp-block-jetpack-calendly)+.wrap-button-contact {
  margin-top: 2em;
}

*[id^="this_theme-wp_content-"] .wp-block-jetpack-calendly+.wrap-button-contact .wp-block-group__inner-container {
  margin-top: 1em;
  padding-top: 0;
}

*[id^="this_theme-wp_content-"] *+blockquote {
  margin-top: 1em;
}

*[id^="this_theme-wp_content-"] blockquote {
  position: relative;
  border: 1px solid #aaa;
  border-radius: 10px;
  padding: 1.5em;
}

*[id^="this_theme-wp_content-"] blockquote:before,
*[id^="this_theme-wp_content-"] blockquote:after {
  position: absolute;
  font-family: "FontAwesome";
  font-size: 1.5em;
  color: #aaa;
}

*[id^="this_theme-wp_content-"] blockquote:before {
  content: "\f10d";
  top: 2px;
  left: 0.5em;
}

*[id^="this_theme-wp_content-"] blockquote:after {
  content: "\f10e";
  right: 0.5em;
  bottom: 2px;
}

*[id^="this_theme-wp_content-"] blockquote p {
  font-size: 1em;
}

*[id^="this_theme-wp_content-"] blockquote cite {
  display: block;
  font-size: 0.8em;
  text-align: right;
  color: #aaa;
  padding-right: 2.5em;
}

*[id^="this_theme-wp_content-"] .wp-block-jetpack-calendly {
  box-sizing: border-box;
  padding: 1em 0;
  margin: 1em auto;
}

*[id^="this_theme-wp_content-"] .margin-top-1em {
  margin-top: 1em;
}

*[id^="this_theme-wp_content-"] .margin-bottom-1em {
  margin-bottom: 1em;
}

/* WordPress標準の画像の回り込み（START） */
*[id^="this_theme-wp_content-"] img.centered {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

*[id^="this_theme-wp_content-"] img.alignright {
  display: inline;
  padding: 0.4em;
  margin: 0 0 2em 2em;
}

*[id^="this_theme-wp_content-"] img.alignleft {
  display: inline;
  padding: 0.4em;
  margin: 0 2em 2em 0;
}

*[id^="this_theme-wp_content-"] .alignright {
  float: right;
}

*[id^="this_theme-wp_content-"] .alignleft {
  float: left;
}

/* WordPress標準の画像の回り込み（END）*/

/*** WordPressの「get_the_content()」用クラス（END） ***/



/*** 予約サービス（calendly）の設定（START） ***/
.calendly-overlay {
  z-index: 99999999999 !important;
}

/*** 予約サービス（calendly）の設定（END） ***/

/****** SNSシェアボタン（sns-share.php）（START）******/

.wrap-sns-share {
  box-sizing: border-box;
  overflow: hidden;
}

.title-sns-share {
  font-weight: 600;
  margin-bottom: 1em;
}

.title-sns-share>i,
.title-sns-share>.fas {
  margin: 0 0.25em 0 0.5em;
}

.sns-share {
  font-size: 0;
}

.sns-share li {
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  line-height: 1;
  position: relative;
  box-sizing: border-box;
}

.sns-share li>a {
  display: block;
}

.sns-share li .icon {
  width: 38px;
  height: 38px;
  line-height: 50px;
  padding: 8px;
  border-radius: 100%;
  background: #fff;
}

.sns-share li .icon i,
.sns-share li .icon .fab {
  font-size: 30px;
}

.sns-share li .text {
  color: #fff;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 0.75em;
}

.sns-share-close {
  display: none;
}

.sns-share .pinterest {
  cursor: pointer;
}

body[data-ccc_useragent="desktop"] .sns-share .pinterest:hover * {
  transition: all 0.3s;
  opacity: 0.5;
}

.sns-share .pinterest>a,
.sns-share .pinterest>span {
  height: 100% !important;
  width: 100% !important;
  background: none !important;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  box-sizing: border-box;
  z-index: 10;
}

.sns-share .pinterest>a {
  visibility: hidden;
}

/* SNSごとの背景色 */

.sns-share-primary .sns-share .facebook {
  color: #3b5998;
}

.sns-share-primary .sns-share .twitter {
  color: #1da1f2;
}

.sns-share-primary .sns-share .x_com {
  color: #0F1419;
}

.sns-share-primary .sns-share .line {
  color: #00b900;
}

.sns-share-primary .sns-share .pinterest {
  color: #e60023;
}

.sns-share-primary .sns-share .pocket {
  color: #ee4056;
}

.sns-share-primary .sns-share .linkedin {
  color: #0e76a8;
}

.sns-share-primary {
  float: right;
}

.ccc-favorite-post-toggle+.sns-share-primary {
  margin: 0 1em;
}

.sns-share-primary .sns-share-toggle {
  line-height: 1;
}

.sns-share-primary .sns-share-toggle-button {
  box-sizing: border-box;
  padding: 0 0.5em;
}

.sns-share-primary .sns-share-toggle-button>i,
.sns-share-primary .sns-share-toggle-button>.fas {
  transition: all 0.3s;
}

.sns-share-primary.sns-opened .sns-share-toggle-button>i,
.sns-share-primary.sns-opened .sns-share-toggle-button>.fas {
  transform: rotate(-180deg);
}

.sns-share-primary .wrap-sns-share {
  display: none;
  /* JSで制御 */
  position: absolute;
  top: -112px;
  right: 88px;
  z-index: 100;
  width: 100%;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.85);
  box-sizing: border-box;
  padding: 1em;
  overflow: visible;
  border-radius: 8px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
}

.sns-share-primary .wrap-sns-share::before {
  content: "";
  border-top: 8px solid transparent;
  border-left: 12px solid rgba(0, 0, 0, 0.85);
  border-bottom: 8px solid transparent;
  top: 129px;
  right: -12px;
  position: absolute;
}

.sns-share-primary.sns-opened .wrap-sns-share {
  display: block;
  -webkit-animation: fadeIn 0.3s linear 0s 1;
  -moz-animation: fadeIn 0.3s linear 0s 1;
  -ms-animation: fadeIn 0.3s linear 0s 1;
  -o-animation: fadeIn 0.3s linear 0s 1;
  animation: fadeIn 0.3s linear 0s 1;
}

.sns-share-primary .title-sns-share {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.sns-share-primary .title-sns-share>.fas {
  display: none;
}

.sns-share-primary .sns-share li {
  width: 20%;
  margin: 12px 0;
}

.sns-share-primary .sns-share li>a,
.sns-share-primary .sns-share .symbol-pinterest {
  margin: 0 6px;
}

.sns-share-primary .sns-share-close {
  display: block;
  text-align: right;
}

.sns-share-close-btn {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  box-sizing: border-box;
  margin: 24px 0 0 0;
}

.sns-share-secondary {
  margin: 3em auto 0 auto;
  text-align: right;
}

.sns-share-secondary .title-sns-share {
  margin-bottom: 0.5em;
}

.sns-share-secondary .sns-share {
  width: calc(100% + 18px);
}

.sns-share-secondary .sns-share li {
  margin: 3px 18px 7px 0;
}

.sns-share-secondary .sns-share li .icon {
  width: auto;
  height: auto;
  line-height: 1;
  padding: 0;
}

.sns-share-secondary .sns-share li .icon i,
.sns-share-secondary .sns-share li .icon .fab {
  font-size: 28px;
}

.sns-share-secondary .sns-share li .text {
  display: none;
}

/*** スクロールに応じた要素のアニメーション（START） ***/
.ccc-scroll-animation.fade-in {
  opacity: 0;
  position: relative;
  top: 1em;
  transition: all 0.5s;
}

.ccc-scroll-animation.fade-in.on-screen {
  opacity: 1;
  top: 0px;
}

.ccc-scroll-animation.fade-in-left {
  opacity: 0;
  position: relative;
  left: -1em;
  transition: all 0.5s;
}

.ccc-scroll-animation.fade-in-left.on-screen {
  opacity: 1;
  left: 0;
}

.ccc-scroll-animation.fade-in-zoom {
  opacity: 0;
  position: relative;
  transition: all 0.5s;
  transform: scale(0.8);
}

.ccc-scroll-animation.fade-in-zoom.on-screen {
  opacity: 1;
  transform: scale(1.0);
}

/*** スクロールに応じた要素のアニメーション（END） ***/


/* SP
----------------------------------------------------------*/

@media only screen and (max-width: 782px) {
  .sns-share-primary .sns-share-toggle {
    line-height: 1.6;
  }

  .sns-share-primary.sns-opened .sns-share-toggle-button>i,
  .sns-share-primary.sns-opened .sns-share-toggle-button>.fas {
    transform: scale(1, -1) rotate(-90deg);
  }

  .sns-share-primary .title-sns-share {
    margin-bottom: 10px;
  }

  .sns-share-primary .title-sns-share::before {
    font-size: 14px;
  }

  .sns-share-primary .wrap-sns-share {
    top: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 18px;
    width: 100%;
  }

  .sns-share-primary .wrap-sns-share::before {
    border-left: 8px solid transparent;
    border-bottom: 12px solid rgba(0, 0, 0, 0.85);
    border-right: 8px solid transparent;
    top: -20px;
    right: 52px;
  }

  .sns-share-primary .sns-share li .text {
    display: none;
  }

  .sns-share-primary .sns-share li .icon {
    width: 28px;
    height: 28px;
    line-height: 38px;
    padding: 6px;
  }

  .sns-share-primary .sns-share li .icon i,
  .sns-share-primary .sns-share li .icon .fab {
    font-size: 26px;
  }

  .sns-share-secondary .sns-share li .icon i,
  .sns-share-secondary .sns-share li .icon .fab {
    font-size: 24px;
  }
}

/****** SNSシェアボタン（sns-share.php）（END）******/

.header-page {
  display: table;
  width: 100%;
  height: 120px;
  background-color: var(--contents-bg-a-02);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.title-page {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 2em;
  font-weight: 500;
}

.title-page .prefix {
  display: none;
}

.title-page>.text {
  display: inline-block;
  vertical-align: top;
  width: 92%;
  position: relative;
}

.title-page>.text::after {
  content: " ";
  height: 3px;
  width: 1.2em;
  background-color: #999;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  margin-bottom: -0.25em;
}

.pagination-wrap {
  margin-top: 2em;
}

.pagination-wrap .page-num,
.pagination-wrap .page-first,
.pagination-wrap .page-last {
  display: none;
}

.pagination {
  text-align: center;
}

.pagination li {
  display: inline-block;
  vertical-align: top;
  margin: 0 0.5em;
  font-size: 0.9em;
  font-weight: 600;
}

.pagination .pager>a,
.pagination .page-current {
  background: var(--action-color-a-01);
  color: #fff;
  box-sizing: border-box;
  padding: 0 0.5em;
}

.pagination li>a {
  display: block;
}

.pagination .page-current {
  background: #ccc;
}

.page-prev-text,
.page-next-text {
  font-size: 0;
  width: 30px;
  display: inline-block;
  vertical-align: middle;
  border-bottom: 2px solid var(--action-color-a-01);
  position: relative;
}

.page-prev-text:before,
.page-next-text:before {
  content: " ";
  width: 1px;
  border-left: 2px solid var(--action-color-a-01);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  height: 10px;
  position: absolute;
  left: 3px;
  bottom: -2px;
}

.page-next-text:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: auto;
  right: 3px;
}

/****** ハンバーガーメニューを開いた時に後ろはスクロールしないようにするjQueryのための設定 ---START--- ******/

.ccc-base-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ccc-base-fixed:before {
  content: " ";
  width: 100%;
  height: 100%;
  background: #666;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  z-index: 999;
}

.ccc-base-fixed.modal-opened:before {
  z-index: 9999999;
}

/****** ハンバーガーメニューを開いた時に後ろはスクロールしないようにするjQueryのための設定 ---END--- ******/

/****** ヘッダードロワァー ---START--- ******/

/*** ヘッダートグル ***/

.header-drawer {
  cursor: pointer;
  width: auto;
  background: none;
  box-sizing: border-box;
  padding: 0;
  float: right;
  margin: 7px 0 0 1.5em;
}

/*** アイコン ***/

.drawer-icon {
  position: relative;
  margin: 0 auto;
  width: 24px;
  height: 16px;
}

.drawer-icon-bar {
  display: block;
  background: #000;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
}

.drawer-icon-bar:first-child {
  bottom: auto;
}

.drawer-icon-bar:nth-child(2) {}

.drawer-icon-bar:last-child {
  top: auto;
}

.hg-opened .drawer-icon {
  width: 20px;
}

.hg-opened .drawer-icon-bar {
  background: #fff;
  height: 2px;
}

.hg-opened .drawer-icon-bar:first-child {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  top: 0;
  bottom: 0;
}

.hg-opened .drawer-icon-bar:nth-child(2) {
  filter: alpha(opacity=0);
  /* lte IE8 */
  opacity: 0;
}

.hg-opened .drawer-icon-bar:last-child {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
  top: 0;
  bottom: 0;
}

/*** アイコンのテキスト ***/

.drawer-txt {
  display: none;
  /* 現在未使用 */
  font-size: 10px;
  font-size: 1rem;
  color: #000;
  line-height: 1;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 10px;
}

.drawer-txt:before {
  content: "MENU";
}

.hg-opened .drawer-txt:before {
  color: #fff;
  content: "CLOSE";
  -webkit-animation: fadeIn 0.8s linear 0s 1;
  -moz-animation: fadeIn 0.8s linear 0s 1;
  -ms-animation: fadeIn 0.8s linear 0s 1;
  -o-animation: fadeIn 0.8s linear 0s 1;
  animation: fadeIn 0.8s linear 0s 1;
}

/*** ヘッダークローズ ***/

.header-closed-wrap {
  display: none;
}

.hg-opened .header-closed-wrap,
.sf-opened .header-closed-wrap {
  display: block;
}

.header-closed {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  box-sizing: border-box;
  margin: 10px 0;
}

.header-closed::before {
  content: " ";
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -99;
}

.closed-icon {
  width: 14px;
  height: 14px;
  position: relative;
  margin: 0 auto;
  display: inline-block;
  vertical-align: top;
}

.closed-icon-bar {
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
}

.closed-icon-bar:first-child {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

.closed-icon-bar:nth-child(2) {
  filter: alpha(opacity=0);
  /* IE lt 8 */
  opacity: 0;
}

.closed-icon-bar:last-child {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}

.closed-txt {
  color: #eee;
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}

/****** ヘッダードロワァー ---END--- ******/

.hg-opened .header-group,
.sf-opened .header-group {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  /* 必須 */
  -webkit-overflow-scrolling: touch;
}

.hg-opened .header-group .hg-inner,
.sf-opened .header-group .hg-inner {
  background: var(--accent-colour);
}

.header-nav {
  display: none;
  /* JSで制御 */
  text-align: center;
}

.hg-opened .header-group .header-nav {
  display: block;
  /* JSで制御 */
  -webkit-animation: fadeIn 0.8s linear 0s 1;
  -moz-animation: fadeIn 0.8s linear 0s 1;
  -ms-animation: fadeIn 0.8s linear 0s 1;
  -o-animation: fadeIn 0.8s linear 0s 1;
  animation: fadeIn 0.8s linear 0s 1;
}

.hg-opened .header-nav {
  float: none;
  border-top: 1px solid var(--accent-colour);
  padding: 1em 0;
  box-sizing: border-box;
}

.header-closed-wrap {
  float: left;
}

.hg-opened .header-group .header-logo,
.sf-opened .header-group .header-logo {
  -webkit-filter: invert(1);
  -ms-filter: invert(1);
  filter: invert(1);
}

.hg-opened .header-group .header-nav,
.sf-opened .header-group .search-form-nav {
  color: #fff;
}

#menu-header_primary .menu-favorite {
  display: none;
}

.my_sns_name a::before,
#menu-header_sns .menu-item a::before,
#menu-footer_sns .menu-item a::before {
  width: 1.25em;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 0.4em;
}

.my_sns_name[data-my_sns_name="facebook"] a::before,
.facebook.menu-item a::before {
  content: "\f39e";
  font-family: "Font Awesome 5 Brands";
}

.my_sns_name[data-my_sns_name="instagram"] a::before,
.instagram.menu-item a::before {
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
}

.my_sns_name[data-my_sns_name="twitter"] a::before,
.twitter.menu-item a::before {
  content: "\f099";
  font-family: "Font Awesome 5 Brands";
}

.my_sns_name[data-my_sns_name="x_com"] a::before,
.x_com.menu-item a::before {
  content: "\e61b";
  font-family: "Font Awesome 6 Brands";
}

.my_sns_name[data-my_sns_name="youtube"] a::before,
.youtube.menu-item a::before {
  content: "\f167";
  font-family: "Font Awesome 5 Brands";
}

.my_sns_name[data-my_sns_name="linkedin"] a::before,
.linkedin.menu-item a::before {
  content: "\f0e1";
  font-family: "Font Awesome 5 Brands";
}

.my_sns_name[data-my_sns_name="github"] a::before,
.github.menu-item a::before {
  content: "\f09b";
  font-family: "Font Awesome 5 Brands";
}

.my_sns_name[data-my_sns_name="spotify"] a::before,
.spotify.menu-item a::before {
  content: "\f1bc";
  font-family: "Font Awesome 5 Brands";
}

.my_sns_name[data-my_sns_name="pinterest"] a::before,
.pinterest.menu-item a::before {
  content: "\f0d2";
  font-family: "Font Awesome 5 Brands";
}

.my_sns_name[data-my_sns_name="wordpress_org"] a::before,
.wordpress_org.menu-item a::before {
  content: "\f19a";
  font-family: "Font Awesome 5 Brands";
}

.rss.menu-item a::before {
  content: "\f09e";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  /* この文字コードでは必須 */
}

.external_link.menu-item a::before {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  /* この文字コードでは必須 */
}

.my_sns_name[data-my_sns_name="wakatime"] a::before,
.wakatime.menu-item a::before,
.my_sns_name[data-my_sns_name="waca"] a::before,
.waca.menu-item a::before,
.my_sns_name[data-my_sns_name="openbadge_global"] a::before,
.openbadge_global.menu-item a::before,
.my_sns_name[data-my_sns_name="eight"] a::before,
.eight.menu-item a::before,
.my_sns_name[data-my_sns_name="wantedly"] a::before,
.wantedly.menu-item a::before {
  content: "\f1fa";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  /* この文字コードでは必須 */
}

/****** サーチフォームドロワァー ---START--- ******/

.search-form-drawer {
  float: right;
  margin-left: 0.75em;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0;
}

.search-form-drawer .icon-search {
  font-size: 18px;
  display: inline-block;
  vertical-align: top;
  height: 100%;
  line-height: 1.7;
}

.search-form-drawer .icon-search::before {
  display: inline-block;
  vertical-align: top;
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  /* この文字コードでは必須 */
}

.search-form-drawer .icon-search-text {
  display: none;
}

.search-form-nav {
  display: none;
}

.sf-opened .header-group .search-form-nav {
  display: block;
  /* JSで制御 */
  -webkit-animation: fadeIn 0.8s linear 0s 1;
  -moz-animation: fadeIn 0.8s linear 0s 1;
  -ms-animation: fadeIn 0.8s linear 0s 1;
  -o-animation: fadeIn 0.8s linear 0s 1;
  animation: fadeIn 0.8s linear 0s 1;
}

.sf-opened .header-group .drawer-icon-bar {
  background: #fff;
}

.hg-opened .header-group .search-form-drawer,
.sf-opened .header-group .search-form-drawer {
  color: #fafafa;
}

.sf-opened .header-group .search-form-drawer>.icon-search::before {
  content: "\f010";
}

#ccc-search_ajax-form {
  max-width: 720px;
}

#ccc-search_ajax-form #ccc-search_ajax-submit.found {
  color: #000 !important;
  background-color: #fff !important;
  border: 1px solid;
}

#ccc-search_ajax-form .label-term>input:checked+.text {
  color: #000;
  font-weight: bold;
}

#ccc-search_ajax-form .select-terms {
  line-height: 1.6;
}

#ccc-search_ajax-form .select-terms li {
  text-align: left;
}

#ccc-search_ajax-form .select-terms .item-term-parent {
  margin: 0.5em;
}

#ccc-search_ajax-form .select-terms.select-terms-children {
  display: block;
  text-align: left;
  padding-left: 1.25em;
}

#ccc-search_ajax-form .select-terms.select-terms-children .item-term-children:first-child {
  border-left: 1px solid;
}

/****** サーチフォームドロワァー ---END--- ******/

/* PC
----------------------------------------------------------*/

@media only screen and (min-width: 783px) {
  .header-nav-inner {
    display: inline-block;
  }

  #menu-header_primary .menu-search>a {
    font-size: 0;
    width: 20px;
    /* for Safari */
  }

  #menu-header_primary .menu-search>a:before {
    content: " ";
    background-image: url(../images/common/icon-menu-search.svg);
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 20px;
    display: inline-block;
    vertical-align: top;
    margin-right: 3px;
  }

  body[data-ccc_useragent="desktop"] .menu-item-has-children>a {
    box-sizing: border-box;
  }

  body[data-ccc_useragent="desktop"] .menu-item-has-children.not-link>a {
    pointer-events: none;
    cursor: default;
  }

  body[data-ccc_useragent="desktop"] #menu-header_primary .sub-menu a::after {
    content: " ";
    display: block;
    vertical-align: top;
    box-sizing: border-box;
    padding-top: 4px;
    border-bottom: 3px solid transparent;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }

  body[data-ccc_useragent="desktop"] #menu-header_global .sub-menu a:hover::after {
    border-color: #aaa;
  }

  #menu-header_primary .sub-menu>li a {
    padding-left: 1.2em;
  }

  #menu-header_global .menu-item>a,
  #menu-footer_global .menu-item>a,
  #menu-footer_primary .menu-item>a {
    color: #fff;
    font-size: 0.9em;
  }

  #menu-header_global .sub-menu,
  #menu-footer_global .sub-menu,
  #menu-footer_primary .sub-menu {
    opacity: 1 !important;
    margin-top: 5px;
    font-size: 0;
  }

  #menu-header_global .sub-menu>li,
  #menu-footer_global .sub-menu>li,
  #menu-footer_primary .sub-menu>li {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    margin: 0.25em 0 0.25em 0;
    margin-right: 1em;
    padding: 0 0 0 1em;
    box-sizing: border-box;
    line-height: 1.5;
    position: relative;
  }

  #menu-header_global .sub-menu>li:last-child,
  #menu-footer_global .sub-menu>li:last-child,
  #menu-footer_primary .sub-menu>li:last-child {
    margin-right: 0;
  }

  .main {
    min-height: 60vh;
    padding-bottom: 1em;
  }
}

/*** WPプラグイン：posts_filter（START） ***/
#ccc-terms_filter_ajax-article[data-ccc_posts_filter-style="1"] #ccc-terms_filter_ajax-inner .select-terms-parent {
  background: rgba(255, 255, 255, 1);
}

#ccc-terms_filter_ajax-article[data-ccc_posts_filter-style="1"] #ccc-terms_filter_ajax-inner .select-terms-parent {
  max-height: none;
}

#ccc-terms_filter_ajax-article[data-ccc_posts_filter-style="1"] #ccc-terms_filter_ajax-inner #select-taxonomy-post_tag .select-terms>li {
  border: none;
  display: inline-block;
}

#ccc-terms_filter_ajax-article[data-ccc_posts_filter-style="1"] #ccc-terms_filter_ajax-inner #select-taxonomy-post_tag .select-terms-parent {
  padding: 0.75em;
}

#ccc-terms_filter_ajax-article[data-ccc_posts_filter-style="1"] #ccc-terms_filter_ajax-inner .select-term-item>.select-toggle {
  padding: 0.75em;
}

#ccc-terms_filter_ajax-article[data-ccc_posts_filter-style="1"] #ccc-terms_filter_ajax-inner .select-terms-children .select-term-children {
  border: none;
}

#ccc-terms_filter_ajax-article[data-ccc_posts_filter-style="1"] #ccc-terms_filter_ajax-inner .select-terms-children .select-term-children .select-toggle {
  padding-left: 2em;
}

/*** WPプラグイン：posts_filter（END） ***/

/* SP
----------------------------------------------------------*/

@media only screen and (max-width: 782px) {

  /* basic
  ----------------------------------*/
  body {
    font-size: 15px;
  }

  .outer {
    min-width: 0;
  }

  .inner-01,
  .inner-02 {
    padding-left: 4%;
    padding-right: 4%;
  }

  .hg-inner {
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 15px;
    padding-bottom: 6px;
  }

  .header-logo {
    margin-top: 5px;
    margin-right: 3%;
  }

  .header-logo>a {
    height: 22px;
  }

  body:not(.hg-opened):not(.sf-opened) .header-group.fixed .header-logo>a {
    height: 18px;
  }

  #menu-header_primary {
    font-size: 1em;
  }

  .menu-item>a {
    position: relative;
  }

  .sub-menu {
    padding-left: 1em;
  }

  .sub-menu .menu-item:last-child {
    border-bottom: none;
  }

  .sub-menu .menu-item>a:before {}

  #menu-header_global .menu-item>a,
  #menu-header_primary .menu-item>a,
  #menu-footer_global .menu-item>a,
  #menu-footer_primary .menu-item>a {
    display: inline-block;
    vertical-align: top;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
  }

  #menu-header_primary>.menu-item>a {
    /* padding-left: 1.5em; */
    /* 親メニューにも罫線アイコンを入れる場合、この値を使用 */
  }

  #menu-header_primary li a:before {
    /* width: 1em; */
    /* 親メニューにも罫線アイコンを入れる場合、この値を使用 */
  }

  #menu-header_primary .sub-menu>li a:before {
    margin-bottom: 0;
  }

  #menu-header_global {
    text-align: left;
  }

  #menu-footer_global,
  #menu-footer_primary {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    padding: 0 6%;
    box-sizing: border-box;
    text-align: left;
    font-size: 0.86667em;
  }

  #menu-header_global>li,
  #menu-footer_global>li,
  #menu-footer_primary>li {
    margin-right: 1em;
  }

  #menu-header_global>li a:before,
  #menu-footer_global>li a:before,
  #menu-footer_primary>li a:before {
    height: 60%;
  }

  #menu-header_global .menu-item>a,
  #menu-footer_global .menu-item>a,
  #menu-footer_primary .menu-item>a {
    padding-left: 0.75em;
  }

  .footer-group {
    margin-top: 4em;
    padding-bottom: 30px;
  }

  .fg-inner {
    padding-left: 0;
    padding-right: 0;
  }

  #menu-header_global .sub-menu .menu-item,
  #menu-footer_global .sub-menu .menu-item,
  #menu-footer_primary .sub-menu .menu-item {
    padding-left: 1em;
  }

  .fg-usage_date-theme_version {
    text-align: center;
  }

  .fg-usage_date-theme_version,
  .fg-copyright {
    font-size: 0.6em;
  }

  .gotop {
    width: 40px;
    height: 40px;
    right: 20px;
  }

  .gotop-btn {
    padding: 13px 17px;
  }

  .gotop.stop {
    top: auto;
    bottom: 20px;
  }

  .ccc-favorite-post-count {
    margin-right: 6px;
  }

  .fn-company-information {
    margin-bottom: 1em;
  }

  .title-page {
    font-size: 1.6em;
  }

  .pagination-wrap {
    text-align: center;
    margin-top: 3em;
  }

  .pagination {
    position: relative;
    padding-bottom: 3em;
    display: inline-block;
    vertical-align: top;
    padding: 0 45px;
  }

  .pagination li {
    font-size: 14px;
  }

  .pagination .page-prev,
  .pagination .page-next {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
  }

  .pagination .page-next {
    left: auto;
    right: 0;
  }

  .page-prev-text,
  .page-next-text {
    width: 27px;
    top: 2px;
  }

  .page-prev-text:before,
  .page-next-text:before {
    width: 7px;
    right: -2px;
    bottom: 0;
  }

  .page-prev-text:before {
    bottom: -4px;
  }

  .list-post_related {
    width: 100%;
  }

  .post_related {
    width: 100%;
    margin: 1% auto;
  }

  .ccc-favorite-post-toggle {
    line-height: 1.4;
  }

  .ccc-favorite-post-toggle>a::before {
    line-height: 1.4;
  }

  .content-browsing_history .post-series {
    width: calc(100% + 1.5%);
  }

  .content-browsing_history .list-series {
    width: calc(33.33% - 1.5%);
    margin: 0 1.5% 1.5% 0;
  }

  .content-browsing_history .title-post {
    font-size: 0.75em;
  }

  .content-browsing_history .title-post .dotted-line {
    max-height: 1.25em;
  }

  .content-browsing_history .ccc-favorite-post-toggle {
    font-size: 0.75em;
    margin-top: -17px;
  }

  .content-browsing_history .ccc-favorite-post-toggle>a {
    padding: 0 3px;
  }

  *[id^="this_theme-wp_content-"] {
    font-size: 0.93333em;
  }

  .wp-block-table.standard table {
    display: block;
    width: auto;
    padding: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .wp-block-table.standard table th,
  .wp-block-table.standard table td:first-child {
    display: block;
    width: auto;
    border-top: none;
    border-bottom: none;
  }

  .wp-block-table.standard table td {
    display: block;
  }

}

/*** WordPress アドミンバー（#wpadminbar） ***/

#wpadminbar {
  z-index: 9999999999;
}

/* PC
----------------------------------------------------------*/

@media only screen and (min-width: 783px) {

  body[data-admin_bar_showing="true"][data-ccc_scrolling="true"] .header-group,
  body[data-admin_bar_showing="true"].hg-opened .header-group,
  body[data-admin_bar_showing="true"].sf-opened .header-group {
    top: 32px;
  }
}

/* SP
----------------------------------------------------------*/

@media only screen and (max-width: 782px) {

  body[data-admin_bar_showing="true"][data-ccc_scrolling="true"] .header-group,
  body[data-admin_bar_showing="true"].hg-opened .header-group,
  body[data-admin_bar_showing="true"].sf-opened .header-group {
    top: 46px;
  }
}

@media only screen and (max-width: 600px) {
  body[data-admin_bar_showing="true"] #wpadminbar {
    top: -46px;
  }

  body[data-admin_bar_showing="true"][data-ccc_scrolling="true"] .header-group,
  body[data-admin_bar_showing="true"].hg-opened .header-group,
  body[data-admin_bar_showing="true"].sf-opened .header-group {
    top: 0;
  }
}