@charset "UTF-8";
html {
  font-size: 16px;
  color: black;
}
@media screen and (max-width: 991.9px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width:575.9px) {
  html {
    font-size: 16px;
  }
}
html body {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: black;
  line-height: 1.8;
  letter-spacing: 1px;
  margin-top: 80px;
}
@media screen and (max-width: 991.9px) {
  html body {
    margin-top: 65px;
  }
}
@media screen and (max-width:575.9px) {
  html body {
    margin-top: 50px;
  }
}
html body main {
  margin: 0 5%;
  padding-bottom: 150px;
}
@media screen and (max-width: 991.9px) {
  html body main {
    padding-bottom: 100px;
  }
}
@media screen and (max-width:575.9px) {
  html body main {
    margin: 0 20px;
  }
}
html body h1.page-center-title {
  font-size: 1.3rem;
  text-align: center;
  margin-top: 5rem;
  font-weight: bold;
}
@media screen and (max-width:575.9px) {
  html body h1.page-center-title {
    font-size: 1.1rem;
    margin-top: 4rem;
  }
}
html body .page-title {
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (max-width:575.9px) {
  html body .page-title {
    font-size: 1.1rem;
  }
}
html body .page-title__sub {
  font-size: 0.9rem;
}
@media screen and (max-width:575.9px) {
  html body .page-title__sub {
    font-size: 0.8rem;
  }
}
html body p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}
@media screen and (max-width:575.9px) {
  html body p {
    font-size: 0.9rem;
  }
}
html body a {
  text-decoration: none;
  color: black;
}
html body a:hover {
  color: #0D6295;
}
html body img {
  width: 100%;
  height: 100%;
}
html body ul {
  list-style: none;
  padding-left: 0;
}
@media screen and (max-width: 991.9px) {
  html body .pc-only {
    display: none;
  }
}
@media screen and (max-width:575.9px) {
  html body .pc-tablet-only {
    display: none;
  }
}
html body .tab-sp-only {
  display: none;
}
@media screen and (max-width: 991.9px) {
  html body .tab-sp-only {
    display: inherit;
  }
}
html body .sp-only {
  display: none;
}
@media screen and (max-width:575.9px) {
  html body .sp-only {
    display: inherit;
  }
}

.general-section {
  margin-top: 100px;
  position: relative;
  padding: 50px 0;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.general-section.is-first {
  margin-top: 0;
}
.general-section.is-narrow {
  max-width: 900px;
}
@media screen and (max-width: 991.9px) {
  .general-section {
    margin-top: 50px;
  }
}
@media screen and (max-width:575.9px) {
  .general-section {
    margin-top: 50px;
  }
}
.general-section .section-inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.general-section h2.section-title {
  text-align: center;
  letter-spacing: 2px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 80px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 991.9px) {
  .general-section h2.section-title {
    margin-bottom: 60px;
  }
}
@media screen and (max-width:575.9px) {
  .general-section h2.section-title {
    margin-bottom: 40px;
    font-size: 1.3rem;
  }
}

.header__outer {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  background: white;
  z-index: 3;
}

.header {
  margin: 0 5%;
}
.header .hrader__inner {
  display: flex;
  padding: 15px 0;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /*activeクラスが付与されると線が回転して×に*/
}
@media screen and (max-width: 991.9px) {
  .header .hrader__inner {
    padding: 10px 0;
  }
}
.header .hrader__inner .header-logo-outer {
  font-size: 12px;
  text-align: center;
  letter-spacing: 2px;
  color: black;
  margin-bottom: 0;
  margin-right: 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991.9px) {
  .header .hrader__inner .header-logo-outer {
    font-size: 10px;
  }
}
.header .hrader__inner .header-logo-outer span {
  display: block;
  margin-bottom: 7px;
}
@media screen and (max-width:575.9px) {
  .header .hrader__inner .header-logo-outer span {
    margin-bottom: 4px;
    font-size: 10px;
  }
}
.header .hrader__inner .header-logo-outer .header-logo {
  width: 330px;
}
@media screen and (max-width: 991.9px) {
  .header .hrader__inner .header-logo-outer .header-logo {
    width: 300px;
  }
}
@media screen and (max-width:575.9px) {
  .header .hrader__inner .header-logo-outer .header-logo {
    width: 200px;
  }
}
.header .hrader__inner .openbtn {
  position: relative;
  background: white;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border-radius: 50%;
  right: 20px;
  z-index: 99;
  /*ボタン内側*/
}
@media screen and (max-width: 991.9px) {
  .header .hrader__inner .openbtn {
    top: 0px;
    right: 12px;
  }
}
.header .hrader__inner .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 1px;
  background: black;
  width: 45%;
}
.header .hrader__inner .openbtn span:nth-of-type(1) {
  top: 17px;
}
.header .hrader__inner .openbtn span:nth-of-type(2) {
  top: 24px;
}
.header .hrader__inner .openbtn span:nth-of-type(3) {
  top: 31px;
}
.header .hrader__inner .openbtn.active {
  background-color: white;
}
.header .hrader__inner span.active {
  background-color: black;
}
.header .hrader__inner span.active:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.header .hrader__inner span.active:nth-of-type(2) {
  opacity: 0;
}
.header .hrader__inner span.active:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.header .hrader__inner .header-main-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
}
@media screen and (max-width: 991.9px) {
  .header .hrader__inner .header-main-nav {
    display: none;
  }
}
.header .hrader__inner .header-main-nav li {
  display: flex;
  align-items: center;
  margin-right: 20px;
  padding: 0 20px;
  margin: 0 5px;
  font-weight: bold;
  font-size: 0.9rem;
}

nav.gnav {
  background: black;
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 98;
  top: 0px;
}
nav.gnav .gnav__wrap {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 90%;
  padding: 100px 50px;
  margin: auto;
}
@media screen and (max-width: 991.9px) {
  nav.gnav .gnav__wrap {
    padding: 0;
    flex-direction: column;
  }
}
@media screen and (max-width:575.9px) {
  nav.gnav .gnav__wrap {
    width: 300px;
    padding: 0;
  }
}
nav.gnav .gnav__wrap .gnav__menu {
  -moz-column-count: 2;
       column-count: 2;
  width: 650px;
}
@media screen and (max-width: 991.9px) {
  nav.gnav .gnav__wrap .gnav__menu {
    max-width: 600px;
    width: 100%;
    -moz-column-count: 1;
         column-count: 1;
  }
}
@media screen and (max-width:575.9px) {
  nav.gnav .gnav__wrap .gnav__menu {
    -moz-column-count: 1;
         column-count: 1;
    margin-bottom: 30px;
    width: 100%;
  }
}
nav.gnav .gnav__wrap .gnav__menu .gnav__menu__item {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 991.9px) {
  nav.gnav .gnav__wrap .gnav__menu .gnav__menu__item {
    text-align: center;
    margin: 0 0 30px 0;
  }
}
@media screen and (max-width:575.9px) {
  nav.gnav .gnav__wrap .gnav__menu .gnav__menu__item {
    margin-bottom: 20px;
  }
}
nav.gnav .gnav__wrap .gnav__menu .gnav__menu__item a {
  color: white;
  font-size: 1.2em;
  text-decoration: none;
  transition: 0.5s;
  font-family: serif;
  position: relative;
  padding-bottom: 5px;
}
nav.gnav .gnav__wrap .koban-btn {
  border: 1px solid white;
  border-color: white;
  margin: initial;
}
nav.gnav .gnav__wrap .koban-btn a {
  color: white;
}
nav.gnav .gnav__wrap .koban-btn:hover {
  background-color: white;
}
nav.gnav .gnav__wrap .koban-btn:hover a {
  color: black;
}

.pagination {
  padding: 20px 0;
  margin: 20px 0;
  justify-content: center;
}
@media screen and (max-width:575.9px) {
  .pagination {
    padding-top: 0;
    margin-top: 0;
  }
}
.pagination .nav-links {
  display: flex;
}
.pagination a {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px 8px 16px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}
.pagination span,
.pagination a {
  color: black;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.pagination .current {
  background-color: #2953C5;
  color: #ffffff;
}
.pagination a:hover,
.pagination .current {
  background-color: #2953C5;
  color: #ffffff;
}
.pagination a.prev,
.pagination a.next {
  font-weight: bold;
}

/* 無効なリンクのスタイル */
.pagination .disabled {
  color: #6c757d;
  pointer-events: none;
}

.prtext__outer {
  background-color: #F7F7F7;
  border: 1px solid #D7D7D7;
  margin-top: 0.5rem;
}
.prtext__outer .prtext {
  color: #707070;
  padding: 6px 10px 6px 15px;
  font-size: 0.7rem;
}

.column-2-ul,
.column-3-ul,
.column-4-ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}
@media screen and (max-width: 991.9px) {
  .column-2-ul,
  .column-3-ul,
  .column-4-ul {
    gap: 20px;
  }
}
@media screen and (max-width:575.9px) {
  .column-2-ul,
  .column-3-ul,
  .column-4-ul {
    gap: 10px;
  }
}
.column-2-ul .post-inner figure,
.column-3-ul .post-inner figure,
.column-4-ul .post-inner figure {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(4, 51, 85, 0.1);
  width: 100%;
  padding-top: 56.5%;
}
.column-2-ul .post-inner figure img,
.column-3-ul .post-inner figure img,
.column-4-ul .post-inner figure img {
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.column-2-ul .post-inner figure .figure-category-label,
.column-3-ul .post-inner figure .figure-category-label,
.column-4-ul .post-inner figure .figure-category-label {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #2953C5;
  color: white;
  font-size: 0.8rem;
  padding: 2px 5px;
}
.column-2-ul .post-inner figure.demo-figure,
.column-3-ul .post-inner figure.demo-figure,
.column-4-ul .post-inner figure.demo-figure {
  padding-top: 200%;
}
.column-2-ul .post-inner figure.imgouter-square,
.column-3-ul .post-inner figure.imgouter-square,
.column-4-ul .post-inner figure.imgouter-square {
  padding-top: 100%;
}
.column-2-ul .column-2-li,
.column-3-ul .column-2-li,
.column-4-ul .column-2-li {
  width: calc((100% - 10px) / 2);
  margin-bottom: 50px;
}
@media screen and (max-width: 991.9px) {
  .column-2-ul .column-2-li,
  .column-3-ul .column-2-li,
  .column-4-ul .column-2-li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width:575.9px) {
  .column-2-ul .column-2-li,
  .column-3-ul .column-2-li,
  .column-4-ul .column-2-li {
    width: calc((100% - 10px) / 2);
  }
}
.column-2-ul .column-3-li,
.column-3-ul .column-3-li,
.column-4-ul .column-3-li {
  width: calc((100% - 20px) / 3);
  margin-bottom: 50px;
}
@media screen and (max-width: 991.9px) {
  .column-2-ul .column-3-li,
  .column-3-ul .column-3-li,
  .column-4-ul .column-3-li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width:575.9px) {
  .column-2-ul .column-3-li,
  .column-3-ul .column-3-li,
  .column-4-ul .column-3-li {
    width: calc((100% - 10px) / 2);
  }
}
.column-2-ul .column-4-li,
.column-3-ul .column-4-li,
.column-4-ul .column-4-li {
  width: calc((100% - 45px) / 4);
  margin-bottom: 50px;
}
@media screen and (max-width: 991.9px) {
  .column-2-ul .column-4-li,
  .column-3-ul .column-4-li,
  .column-4-ul .column-4-li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width:575.9px) {
  .column-2-ul .column-4-li,
  .column-3-ul .column-4-li,
  .column-4-ul .column-4-li {
    width: calc((100% - 10px) / 2);
  }
}
.column-2-ul li.demo .post-inner a.demo-thumb,
.column-2-ul li.theme .post-inner a.demo-thumb,
.column-3-ul li.demo .post-inner a.demo-thumb,
.column-3-ul li.theme .post-inner a.demo-thumb,
.column-4-ul li.demo .post-inner a.demo-thumb,
.column-4-ul li.theme .post-inner a.demo-thumb {
  display: block;
}
.column-2-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure,
.column-2-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure,
.column-3-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure,
.column-3-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure,
.column-4-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure,
.column-4-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure {
  padding-top: 170%;
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}
.column-2-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure:after,
.column-2-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure:after,
.column-3-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure:after,
.column-3-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure:after,
.column-4-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure:after,
.column-4-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.1s ease;
  z-index: 1;
}
.column-2-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure img,
.column-2-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure img,
.column-3-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure img,
.column-3-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure img,
.column-4-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure img,
.column-4-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.column-2-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure .demo-thumb__label,
.column-2-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure .demo-thumb__label,
.column-3-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure .demo-thumb__label,
.column-3-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure .demo-thumb__label,
.column-4-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure .demo-thumb__label,
.column-4-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure .demo-thumb__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.1s ease;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
}
.column-2-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure .demo-thumb__label i,
.column-2-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure .demo-thumb__label i,
.column-3-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure .demo-thumb__label i,
.column-3-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure .demo-thumb__label i,
.column-4-ul li.demo .post-inner a.demo-thumb figure.demo-thumb__figure .demo-thumb__label i,
.column-4-ul li.theme .post-inner a.demo-thumb figure.demo-thumb__figure .demo-thumb__label i {
  margin-left: 10px;
}
.column-2-ul li.demo .post-inner a.demo-thumb .post-title,
.column-2-ul li.theme .post-inner a.demo-thumb .post-title,
.column-3-ul li.demo .post-inner a.demo-thumb .post-title,
.column-3-ul li.theme .post-inner a.demo-thumb .post-title,
.column-4-ul li.demo .post-inner a.demo-thumb .post-title,
.column-4-ul li.theme .post-inner a.demo-thumb .post-title {
  font-size: 0.8rem;
  margin-top: 10px;
  line-height: 1.2;
  text-decoration-color: black;
}
.column-2-ul li.demo .post-inner a.demo-thumb:hover figure.demo-thumb__figure:after,
.column-2-ul li.theme .post-inner a.demo-thumb:hover figure.demo-thumb__figure:after,
.column-3-ul li.demo .post-inner a.demo-thumb:hover figure.demo-thumb__figure:after,
.column-3-ul li.theme .post-inner a.demo-thumb:hover figure.demo-thumb__figure:after,
.column-4-ul li.demo .post-inner a.demo-thumb:hover figure.demo-thumb__figure:after,
.column-4-ul li.theme .post-inner a.demo-thumb:hover figure.demo-thumb__figure:after {
  opacity: 1;
}
.column-2-ul li.demo .post-inner a.demo-thumb:hover figure.demo-thumb__figure .demo-thumb__label,
.column-2-ul li.theme .post-inner a.demo-thumb:hover figure.demo-thumb__figure .demo-thumb__label,
.column-3-ul li.demo .post-inner a.demo-thumb:hover figure.demo-thumb__figure .demo-thumb__label,
.column-3-ul li.theme .post-inner a.demo-thumb:hover figure.demo-thumb__figure .demo-thumb__label,
.column-4-ul li.demo .post-inner a.demo-thumb:hover figure.demo-thumb__figure .demo-thumb__label,
.column-4-ul li.theme .post-inner a.demo-thumb:hover figure.demo-thumb__figure .demo-thumb__label {
  opacity: 1;
}
.column-2-ul li.demo .post-inner a.theme-thumb .post-title,
.column-2-ul li.theme .post-inner a.theme-thumb .post-title,
.column-3-ul li.demo .post-inner a.theme-thumb .post-title,
.column-3-ul li.theme .post-inner a.theme-thumb .post-title,
.column-4-ul li.demo .post-inner a.theme-thumb .post-title,
.column-4-ul li.theme .post-inner a.theme-thumb .post-title {
  font-size: 0.8rem;
  margin-top: 10px;
  line-height: 1.2;
  text-decoration-color: black;
}
.column-2-ul li.demo .post-inner a.theme-thumb:hover .demo-thumb__figure,
.column-2-ul li.theme .post-inner a.theme-thumb:hover .demo-thumb__figure,
.column-3-ul li.demo .post-inner a.theme-thumb:hover .demo-thumb__figure,
.column-3-ul li.theme .post-inner a.theme-thumb:hover .demo-thumb__figure,
.column-4-ul li.demo .post-inner a.theme-thumb:hover .demo-thumb__figure,
.column-4-ul li.theme .post-inner a.theme-thumb:hover .demo-thumb__figure {
  opacity: 0.6;
}
.column-2-ul li.demo .post-inner .post-details.demo .theme_details,
.column-2-ul li.theme .post-inner .post-details.demo .theme_details,
.column-3-ul li.demo .post-inner .post-details.demo .theme_details,
.column-3-ul li.theme .post-inner .post-details.demo .theme_details,
.column-4-ul li.demo .post-inner .post-details.demo .theme_details,
.column-4-ul li.theme .post-inner .post-details.demo .theme_details {
  margin-top: 10px;
}
.column-2-ul li.demo .post-inner .post-details.demo .theme_details .theme-name,
.column-2-ul li.demo .post-inner .post-details.demo .theme_details .theme-price,
.column-2-ul li.theme .post-inner .post-details.demo .theme_details .theme-name,
.column-2-ul li.theme .post-inner .post-details.demo .theme_details .theme-price,
.column-3-ul li.demo .post-inner .post-details.demo .theme_details .theme-name,
.column-3-ul li.demo .post-inner .post-details.demo .theme_details .theme-price,
.column-3-ul li.theme .post-inner .post-details.demo .theme_details .theme-name,
.column-3-ul li.theme .post-inner .post-details.demo .theme_details .theme-price,
.column-4-ul li.demo .post-inner .post-details.demo .theme_details .theme-name,
.column-4-ul li.demo .post-inner .post-details.demo .theme_details .theme-price,
.column-4-ul li.theme .post-inner .post-details.demo .theme_details .theme-name,
.column-4-ul li.theme .post-inner .post-details.demo .theme_details .theme-price {
  font-size: 0.8rem;
  letter-spacing: 0px;
}
.column-2-ul li.demo .post-inner .post-details.demo .theme_details .theme-name .price,
.column-2-ul li.demo .post-inner .post-details.demo .theme_details .theme-price .price,
.column-2-ul li.theme .post-inner .post-details.demo .theme_details .theme-name .price,
.column-2-ul li.theme .post-inner .post-details.demo .theme_details .theme-price .price,
.column-3-ul li.demo .post-inner .post-details.demo .theme_details .theme-name .price,
.column-3-ul li.demo .post-inner .post-details.demo .theme_details .theme-price .price,
.column-3-ul li.theme .post-inner .post-details.demo .theme_details .theme-name .price,
.column-3-ul li.theme .post-inner .post-details.demo .theme_details .theme-price .price,
.column-4-ul li.demo .post-inner .post-details.demo .theme_details .theme-name .price,
.column-4-ul li.demo .post-inner .post-details.demo .theme_details .theme-price .price,
.column-4-ul li.theme .post-inner .post-details.demo .theme_details .theme-name .price,
.column-4-ul li.theme .post-inner .post-details.demo .theme_details .theme-price .price {
  color: #ED1A3D;
  letter-spacing: 0px;
}
.column-2-ul li.demo .post-inner .post-details.demo .theme_details .theme-name .price .tax,
.column-2-ul li.demo .post-inner .post-details.demo .theme_details .theme-price .price .tax,
.column-2-ul li.theme .post-inner .post-details.demo .theme_details .theme-name .price .tax,
.column-2-ul li.theme .post-inner .post-details.demo .theme_details .theme-price .price .tax,
.column-3-ul li.demo .post-inner .post-details.demo .theme_details .theme-name .price .tax,
.column-3-ul li.demo .post-inner .post-details.demo .theme_details .theme-price .price .tax,
.column-3-ul li.theme .post-inner .post-details.demo .theme_details .theme-name .price .tax,
.column-3-ul li.theme .post-inner .post-details.demo .theme_details .theme-price .price .tax,
.column-4-ul li.demo .post-inner .post-details.demo .theme_details .theme-name .price .tax,
.column-4-ul li.demo .post-inner .post-details.demo .theme_details .theme-price .price .tax,
.column-4-ul li.theme .post-inner .post-details.demo .theme_details .theme-name .price .tax,
.column-4-ul li.theme .post-inner .post-details.demo .theme_details .theme-price .price .tax {
  font-size: 0.7rem;
  display: inline-block;
  margin-left: 3px;
}
@media screen and (max-width:575.9px) {
  .column-2-ul li.demo .post-inner .post-details.demo .theme_details .theme-name .price .tax,
  .column-2-ul li.demo .post-inner .post-details.demo .theme_details .theme-price .price .tax,
  .column-2-ul li.theme .post-inner .post-details.demo .theme_details .theme-name .price .tax,
  .column-2-ul li.theme .post-inner .post-details.demo .theme_details .theme-price .price .tax,
  .column-3-ul li.demo .post-inner .post-details.demo .theme_details .theme-name .price .tax,
  .column-3-ul li.demo .post-inner .post-details.demo .theme_details .theme-price .price .tax,
  .column-3-ul li.theme .post-inner .post-details.demo .theme_details .theme-name .price .tax,
  .column-3-ul li.theme .post-inner .post-details.demo .theme_details .theme-price .price .tax,
  .column-4-ul li.demo .post-inner .post-details.demo .theme_details .theme-name .price .tax,
  .column-4-ul li.demo .post-inner .post-details.demo .theme_details .theme-price .price .tax,
  .column-4-ul li.theme .post-inner .post-details.demo .theme_details .theme-name .price .tax,
  .column-4-ul li.theme .post-inner .post-details.demo .theme_details .theme-price .price .tax {
    font-size: 0.6rem;
    margin-left: 2px;
  }
}
.column-2-ul li.demo .post-inner .post-details.demo .theme_details .theme-name a,
.column-2-ul li.demo .post-inner .post-details.demo .theme_details .theme-price a,
.column-2-ul li.theme .post-inner .post-details.demo .theme_details .theme-name a,
.column-2-ul li.theme .post-inner .post-details.demo .theme_details .theme-price a,
.column-3-ul li.demo .post-inner .post-details.demo .theme_details .theme-name a,
.column-3-ul li.demo .post-inner .post-details.demo .theme_details .theme-price a,
.column-3-ul li.theme .post-inner .post-details.demo .theme_details .theme-name a,
.column-3-ul li.theme .post-inner .post-details.demo .theme_details .theme-price a,
.column-4-ul li.demo .post-inner .post-details.demo .theme_details .theme-name a,
.column-4-ul li.demo .post-inner .post-details.demo .theme_details .theme-price a,
.column-4-ul li.theme .post-inner .post-details.demo .theme_details .theme-name a,
.column-4-ul li.theme .post-inner .post-details.demo .theme_details .theme-price a {
  text-decoration: underline;
}
.column-2-ul li.demo .post-inner .post-details.demo .theme_details .theme-name a:hover,
.column-2-ul li.demo .post-inner .post-details.demo .theme_details .theme-price a:hover,
.column-2-ul li.theme .post-inner .post-details.demo .theme_details .theme-name a:hover,
.column-2-ul li.theme .post-inner .post-details.demo .theme_details .theme-price a:hover,
.column-3-ul li.demo .post-inner .post-details.demo .theme_details .theme-name a:hover,
.column-3-ul li.demo .post-inner .post-details.demo .theme_details .theme-price a:hover,
.column-3-ul li.theme .post-inner .post-details.demo .theme_details .theme-name a:hover,
.column-3-ul li.theme .post-inner .post-details.demo .theme_details .theme-price a:hover,
.column-4-ul li.demo .post-inner .post-details.demo .theme_details .theme-name a:hover,
.column-4-ul li.demo .post-inner .post-details.demo .theme_details .theme-price a:hover,
.column-4-ul li.theme .post-inner .post-details.demo .theme_details .theme-name a:hover,
.column-4-ul li.theme .post-inner .post-details.demo .theme_details .theme-price a:hover {
  text-decoration: none;
}
.column-2-ul li.demo .post-inner .post-details.theme .theme_details,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details {
  margin-top: 5px;
}
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-name,
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-price,
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-name,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-price,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-name,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-price,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-name,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-price,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-name,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-price,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-name,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-price,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count {
  font-size: 0.8rem;
  letter-spacing: 0px;
}
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-name .price,
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-price .price,
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count .price,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-name .price,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-price .price,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count .price,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-name .price,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-price .price,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count .price,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-name .price,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-price .price,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count .price,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-name .price,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-price .price,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count .price,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-name .price,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-price .price,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count .price {
  color: #ED1A3D;
  letter-spacing: 0px;
}
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-name .price .tax,
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-price .price .tax,
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count .price .tax,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-name .price .tax,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-price .price .tax,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count .price .tax,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-name .price .tax,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-price .price .tax,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count .price .tax,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-name .price .tax,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-price .price .tax,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count .price .tax,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-name .price .tax,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-price .price .tax,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count .price .tax,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-name .price .tax,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-price .price .tax,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count .price .tax {
  font-size: 0.7rem;
  display: inline-block;
  margin-left: 3px;
}
@media screen and (max-width:575.9px) {
  .column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-name .price .tax,
  .column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-price .price .tax,
  .column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count .price .tax,
  .column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-name .price .tax,
  .column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-price .price .tax,
  .column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count .price .tax,
  .column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-name .price .tax,
  .column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-price .price .tax,
  .column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count .price .tax,
  .column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-name .price .tax,
  .column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-price .price .tax,
  .column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count .price .tax,
  .column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-name .price .tax,
  .column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-price .price .tax,
  .column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count .price .tax,
  .column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-name .price .tax,
  .column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-price .price .tax,
  .column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count .price .tax {
    font-size: 0.6rem;
    margin-left: 2px;
  }
}
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-name a,
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-price a,
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count a,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-name a,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-price a,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count a,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-name a,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-price a,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count a,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-name a,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-price a,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count a,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-name a,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-price a,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count a,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-name a,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-price a,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count a {
  text-decoration: underline;
  color: #0D6295;
}
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-name a:hover,
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-price a:hover,
.column-2-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count a:hover,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-name a:hover,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-price a:hover,
.column-2-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count a:hover,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-name a:hover,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-price a:hover,
.column-3-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count a:hover,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-name a:hover,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-price a:hover,
.column-3-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count a:hover,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-name a:hover,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-price a:hover,
.column-4-ul li.demo .post-inner .post-details.theme .theme_details .theme-demo-count a:hover,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-name a:hover,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-price a:hover,
.column-4-ul li.theme .post-inner .post-details.theme .theme_details .theme-demo-count a:hover {
  text-decoration: none;
}
.column-2-ul li.demo .post-inner .listbtns,
.column-2-ul li.theme .post-inner .listbtns,
.column-3-ul li.demo .post-inner .listbtns,
.column-3-ul li.theme .post-inner .listbtns,
.column-4-ul li.demo .post-inner .listbtns,
.column-4-ul li.theme .post-inner .listbtns {
  margin-top: 15px;
}
@media screen and (max-width:575.9px) {
  .column-2-ul li.blog,
  .column-3-ul li.blog,
  .column-4-ul li.blog {
    margin-bottom: 30px;
  }
}
.column-2-ul li.blog .post-thumb__figure,
.column-3-ul li.blog .post-thumb__figure,
.column-4-ul li.blog .post-thumb__figure {
  margin-bottom: 7px;
}
.column-2-ul li.blog .post-title,
.column-3-ul li.blog .post-title,
.column-4-ul li.blog .post-title {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media screen and (max-width:575.9px) {
  .column-2-ul li.blog .post-title,
  .column-3-ul li.blog .post-title,
  .column-4-ul li.blog .post-title {
    font-size: 0.8rem;
  }
}
.column-2-ul li.blog .post-meta,
.column-3-ul li.blog .post-meta,
.column-4-ul li.blog .post-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  align-items: center;
}
.column-2-ul li.blog .post-meta .date,
.column-3-ul li.blog .post-meta .date,
.column-4-ul li.blog .post-meta .date {
  font-size: 0.8rem;
}
@media screen and (max-width:575.9px) {
  .column-2-ul li.blog .post-meta .date,
  .column-3-ul li.blog .post-meta .date,
  .column-4-ul li.blog .post-meta .date {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
  }
}
.column-2-ul li.blog .post-meta .category,
.column-3-ul li.blog .post-meta .category,
.column-4-ul li.blog .post-meta .category {
  font-size: 0.8rem;
  line-height: 18px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 10px;
  border: 1px solid #0098B2;
  color: #0098B2;
  margin-right: 10px;
}
@media screen and (max-width:575.9px) {
  .column-2-ul li.blog .post-meta .category,
  .column-3-ul li.blog .post-meta .category,
  .column-4-ul li.blog .post-meta .category {
    font-size: 0.6rem;
    margin-right: 0;
    padding: 0px 5px;
    letter-spacing: 0;
  }
}

.category__outer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
@media screen and (max-width:575.9px) {
  .category__outer {
    gap: 5px;
  }
}
.category__outer .category {
  color: white;
  font-size: 12px;
  padding: 0px 5px;
}
@media screen and (max-width:575.9px) {
  .category__outer .category {
    font-size: 12px;
  }
}
.category__outer .category.category-corporate {
  background-color: #658CF7;
}
.category__outer .category.category-blog {
  background-color: #5CC1A6;
}
.category__outer .category.category-portfolio {
  background-color: #9AA3B2;
}
.category__outer .category.category-ec {
  background-color: #6BC46D;
}
.category__outer .category.category-community {
  background-color: #F28C6A;
}
.category__outer .category.category-shop {
  background-color: #7B6AF2;
}
.category__outer .category.category-lp {
  background-color: #E26AA5;
}
.category__outer .category:hover {
  opacity: 0.6;
  color: white;
}

.feature-tags-ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
  margin-bottom: 0;
  margin-top: 10px;
}
.feature-tags-ul .feature-tags-li a {
  font-size: 12px;
  background-color: #F7F7F7;
  border: 1px solid #D3D3D3;
  border-radius: 6px;
  padding: 3px 8px;
  letter-spacing: 0px;
  display: block;
  line-height: 1;
}
.feature-tags-ul .feature-tags-li a:before {
  color: #2953C5;
  content: "#";
  font-weight: 700;
}
.feature-tags-ul .feature-tags-li a:hover {
  opacity: 0.6;
  color: black;
}

.listbtn-outer {
  margin-top: 5px;
  display: block;
}
.listbtn-outer .listbtn {
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  margin-right: auto;
  margin-left: auto;
  border: 2px solid #2953C5;
  max-width: 400px;
}
.listbtn-outer .listbtn p {
  font-size: 14px;
  padding: 7px;
}
.listbtn-outer .listbtn i {
  margin-left: 5px;
}
.listbtn-outer .listbtn-w {
  background-color: white;
  color: #2953C5;
}
.listbtn-outer .listbtn-b {
  background-color: #2953C5;
  color: white;
}
.listbtn-outer:hover {
  opacity: 0.6;
}

.sidebar-section {
  padding-right: 10%;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 991.9px) {
  .sidebar-section {
    display: none;
  }
}
.sidebar-section .sidebar-content {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #CFCFCF;
}
.sidebar-section .sidebar-content:last-child {
  margin-bottom: 0;
}
.sidebar-section .sidebar-content h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  position: relative;
}
.sidebar-section .sidebar-content .sidebar-ul li {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.sidebar-section .sidebar-content .sidebar-ul li a {
  display: flex;
  justify-content: space-between;
}
.sidebar-section .sidebar-content .sidebar-post-ul .sidebar-post-li {
  margin-bottom: 1rem;
}
.sidebar-section .sidebar-content .sidebar-post-ul .sidebar-post-li a {
  display: flex;
}
.sidebar-section .sidebar-content .sidebar-post-ul .sidebar-post-li a .img-area figure {
  margin-bottom: 0;
  margin-right: 5px;
  min-width: 80px;
}
.sidebar-section .sidebar-content .sidebar-post-ul .sidebar-post-li a .img-area figure img {
  width: 70px;
}
.sidebar-section .sidebar-content .sidebar-post-ul .sidebar-post-li a .info-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar-section .sidebar-content .sidebar-post-ul .sidebar-post-li a .info-area h4 {
  font-size: 0.9rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.6;
  margin-bottom: 0;
}
.sidebar-section .sidebar-content .sidebar-post-ul .sidebar-post-li a .info-area .data {
  font-size: 0.8rem;
  color: lightgray;
  line-height: 1;
}

/* ツールチップの親要素 */
.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: help;
  vertical-align: middle;
  pointer-events: auto;
  margin-right: auto;
  margin-left: 7px;
  /* ツールチップの本体（初期状態は非表示） */
}
@media screen and (max-width:575.9px) {
  .tooltip-container {
    margin-left: 0px;
  }
}
.tooltip-container i {
  position: relative;
  z-index: 2;
}
.tooltip-container .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 10;
  bottom: 125%;
  /* アイコンの上に表示 */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: left;
  padding: 8px 15px;
  pointer-events: none;
}
.tooltip-container .tooltip-text:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}
.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* タブレット・スマホ対応 */
@media screen and (max-width: 991.9px) {
  /* ホバー時、または active クラスがついた時に表示 */
  .tooltip-container:hover .tooltip-text,
  .tooltip-container.is-active .tooltip-text {
    visibility: visible;
    opacity: 1;
  }
  /* タッチデバイスで誤動作しないよう、ツールチップ自体はクリック不可に */
  .tooltip-text {
    pointer-events: none;
  }
  /* ハテナマーク自体の設定 */
  .js-tooltip-trigger {
    cursor: pointer;
    padding: 2px 5px;
    /* タップ領域を少し広げる */
  }
}
#feature-filter-form {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
#feature-filter-form label {
  font-size: 0.9rem;
  display: block;
}
#feature-filter-form label:hover {
  cursor: pointer;
  color: #0D6295;
}
#feature-filter-form .feature-option {
  display: block;
}
#feature-filter-form .feature-help {
  position: relative;
  display: inline-block;
  margin-left: 6px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 11px;
  border-radius: 50%;
  background: #999;
  color: #fff;
}
#feature-filter-form .feature-help:hover .feature-tooltip {
  display: block;
}
#feature-filter-form .feature-tooltip {
  position: absolute;
  left: 50%;
  bottom: 130%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.4;
  background: #333;
  color: #fff;
  border-radius: 4px;
  white-space: normal;
  z-index: 100;
  text-align: left;
  display: none;
  letter-spacing: 0;
  /* PC：hover */
  /* スマホ：JSで .is-open を付与 */
}
@media (hover: hover) {
  #feature-filter-form .feature-tooltip .feature-help:hover .feature-tooltip {
    display: block;
  }
}
#feature-filter-form .feature-tooltip .feature-help.is-open .feature-tooltip {
  display: block;
}

.sort__outer {
  display: flex;
  margin-top: 2rem;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.sort__outer .sort-dropdown,
.sort__outer .feature-dropdown {
  position: relative;
}
.sort__outer .sort-toggle,
.sort__outer .feature-toggle {
  width: 100%;
  padding: 5px 10px 5px 15px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-weight: 600;
  text-align: left;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  border: 1px solid lightgray;
  border-radius: 5px;
}
.sort__outer .sort-toggle:hover,
.sort__outer .feature-toggle:hover {
  opacity: 0.6;
}
@media screen and (max-width:575.9px) {
  .sort__outer .sort-toggle,
  .sort__outer .feature-toggle {
    padding: 7px 12px 7px 16px;
  }
}
.sort__outer .sort-toggle i,
.sort__outer .feature-toggle i {
  margin-left: 7px;
}
@media screen and (max-width:575.9px) {
  .sort__outer .sort-toggle i,
  .sort__outer .feature-toggle i {
    margin-left: 5px;
  }
}
.sort__outer .sort-toggle i:before,
.sort__outer .feature-toggle i:before {
  vertical-align: -3px;
  color: black;
}
.sort__outer .sort-toggle span,
.sort__outer .feature-toggle span {
  position: absolute;
  top: -9px;
  right: -4px;
  color: white;
  background: black;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.sort__outer .sort-panel,
.sort__outer .feature-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.sort__outer .feature-panel {
  width: 240px;
}
.sort__outer .sort-panel {
  width: 150px;
}
.sort__outer .feature-option,
.sort__outer .sort-option {
  display: block;
  width: 100%;
  padding: 5px 16px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.9rem;
  color: black;
}
.sort__outer .sort-option:hover {
  background-color: lightgray;
}
.sort__outer .sort-option.is-active {
  background-color: lightgray;
}
.sort__outer .feature-option:last-child,
.sort__outer .sort-option:last-child {
  border-bottom: none;
}
.sort__outer .feature-option input:checked + span {
  color: #658CF7;
  font-weight: 600;
}
@media (hover: hover) and (pointer: fine) {
  .sort__outer .feature-dropdown:hover .feature-panel,
  .sort__outer .sort-dropdown:hover .sort-panel {
    display: block !important;
  }
}
.sort__outer .attention {
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
@media screen and (max-width:575.9px) {
  .sort__outer .attention {
    font-size: 0.7rem;
    margin-left: 0;
  }
}

.no-result {
  margin-top: 2rem;
  font-size: 0.9rem;
}
@media screen and (max-width:575.9px) {
  .no-result {
    font-size: 0.8rem;
  }
}

@media screen and (max-width:575.9px) {
  body.single .post-section,
  body.blog .post-section {
    padding-top: 20px;
    margin-bottom: 0;
  }
}
body.single .post-section .post-meta,
body.blog .post-section .post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
body.single .post-section .post-meta .category a,
body.blog .post-section .post-meta .category a {
  font-size: 0.8rem;
  line-height: 18px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 20px;
  border: 1px solid #0098B2;
  color: #0098B2;
}
@media screen and (max-width:575.9px) {
  body.single .post-section .post-meta .category a,
  body.blog .post-section .post-meta .category a {
    padding: 5px 15px;
  }
}
body.single .post-section .post-meta .category a:hover,
body.blog .post-section .post-meta .category a:hover {
  color: white;
  background-color: #0098B2;
  transition: 0.2s;
}
body.single .post-section .post-meta .data,
body.blog .post-section .post-meta .data {
  margin-left: auto;
  font-size: 0.8rem;
}
body.single .post-section .post-title,
body.blog .post-section .post-title {
  font-size: 1.4rem;
  margin-top: 20px;
  line-height: 1.5;
}
@media screen and (max-width:575.9px) {
  body.single .post-section .post-title,
  body.blog .post-section .post-title {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}
body.single .post-section .post-overview,
body.blog .post-section .post-overview {
  margin-top: 20px;
}
body.single .post-section .post-thumbnail,
body.blog .post-section .post-thumbnail {
  margin-top: 1rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 52.5%;
}
@media screen and (max-width:575.9px) {
  body.single .post-section .post-thumbnail,
  body.blog .post-section .post-thumbnail {
    margin-bottom: 2rem;
  }
}
body.single .post-section .post-thumbnail img,
body.blog .post-section .post-thumbnail img {
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 991.9px) {
  .blog-section .row .col-lg-4 {
    order: 2;
  }
}
@media screen and (max-width: 991.9px) {
  .blog-section .row .col-lg-4 .sidebar-blog {
    padding-right: 0;
  }
}

.post-section {
  padding-bottom: 0;
}
.post-section .post-contents {
  margin-bottom: 5rem;
}
@media screen and (max-width:575.9px) {
  .post-section .post-contents {
    margin-bottom: 0rem;
  }
}
.post-section .post-contents h2.wp-block-heading {
  font-size: 1.3rem;
  background-color: #f4f4f4;
  padding: 10px 15px 10px 15px;
  margin-bottom: 1.5rem;
  margin-top: 4rem;
  line-height: 33px;
  border-left: 7px solid #0098B2;
}
@media screen and (max-width:575.9px) {
  .post-section .post-contents h2.wp-block-heading {
    font-size: 1.1rem;
    line-height: 28px;
    padding: 15px 10px 15px 15px;
  }
}
.post-section .post-contents h3.wp-block-heading {
  font-size: 1.2rem;
  position: relative;
  padding: 10px 10px 10px 22px;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  border-left: 10px solid #0098B2;
}
@media screen and (max-width:575.9px) {
  .post-section .post-contents h3.wp-block-heading {
    line-height: 1.6;
    padding: 5px 10px 5px 15px;
    font-size: 1rem;
  }
}
.post-section .post-contents h4.wp-block-heading {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.post-section .post-contents p {
  font-size: 1rem;
  margin-bottom: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width:575.9px) {
  .post-section .post-contents p {
    margin-bottom: 3rem;
    line-height: 2;
  }
}
.post-section .post-contents ul.wp-block-list,
.post-section .post-contents ol.wp-block-list {
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border: 1px dashed #0098B2;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  background: #f9ffff;
}
@media screen and (max-width:575.9px) {
  .post-section .post-contents ul.wp-block-list,
  .post-section .post-contents ol.wp-block-list {
    padding: 2rem 1.5rem 2rem 1.5rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-bottom: 3rem;
  }
}
.post-section .post-contents ul.wp-block-list li,
.post-section .post-contents ol.wp-block-list li {
  margin-bottom: 10px;
  text-align: left;
  font-size: 1rem;
  position: relative;
  padding-left: 1rem;
}
@media screen and (max-width:575.9px) {
  .post-section .post-contents ul.wp-block-list li,
  .post-section .post-contents ol.wp-block-list li {
    font-size: 0.95rem;
  }
}
.post-section .post-contents ul.wp-block-list li:last-child,
.post-section .post-contents ol.wp-block-list li:last-child {
  margin-bottom: 0;
}
.post-section .post-contents ul.wp-block-list {
  list-style: none;
}
.post-section .post-contents ul.wp-block-list li:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  line-height: 0;
  left: 0;
  background-color: #0098B2;
  top: 11px;
}
.post-section .post-contents ol.wp-block-list {
  list-style: decimal;
  padding: 1.5rem 1.5rem 1.5rem 3.5rem;
}
.post-section .post-contents ol.wp-block-list li {
  padding-left: 0;
}
.post-section .post-contents .point {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
@media screen and (max-width:575.9px) {
  .post-section .post-contents .point {
    font-size: 1rem;
  }
}
.post-section .post-contents .point i {
  margin-right: 10px;
  color: #2953C5;
  font-size: 1.3rem;
}
@media screen and (max-width:575.9px) {
  .post-section .post-contents .point i {
    font-size: 1.3rem;
    margin-right: 7px;
  }
}
.post-section .post-contents a {
  text-decoration: underline;
}
.post-section .post-contents a:hover {
  text-decoration: none;
}
.post-section .post-contents figure {
  margin: 1rem 0 3rem 0;
}

body.single-wp_theme .left-side .prtext__outer {
  margin-top: 0;
}
body.single-wp_theme .left-side .theme-title {
  font-size: 1.3rem;
  margin-top: 40px;
  font-weight: bold;
  margin-top: 2rem;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .left-side .theme-title {
    font-size: 1rem;
  }
}
body.single-wp_theme .left-side .theme-description {
  font-size: 0.9rem;
  margin-top: 10px;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .left-side .theme-description {
    line-height: 1.5;
  }
}
body.single-wp_theme .left-side .spec {
  max-width: 980px;
  margin: 0 auto;
  margin-top: 30px;
}
body.single-wp_theme .left-side .spec__table {
  margin: 0;
  border-top: 1px solid #dcdcdc;
}
body.single-wp_theme .left-side .spec__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid #dcdcdc;
  align-items: center;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .left-side .spec__row {
    gap: 5px;
    grid-template-columns: 1fr;
    padding: 15px 0;
  }
}
body.single-wp_theme .left-side .spec__th {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  height: 25px;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .left-side .spec__th {
    text-align: left;
  }
}
body.single-wp_theme .left-side .spec__td {
  margin: 0;
  font-size: 0.9rem;
  height: auto;
  align-items: center;
  display: flex;
}
body.single-wp_theme .left-side .spec__td .sales-type {
  display: flex;
  align-items: center;
}
body.single-wp_theme .left-side .spec__td .sales-type img {
  width: 16px;
  margin-right: 8px;
}
body.single-wp_theme .left-side .spec__td .site_url {
  text-decoration: underline;
}
body.single-wp_theme .left-side .spec__td .site_url:hover {
  text-decoration: none;
}
body.single-wp_theme .left-side .spec__td.site-url a {
  text-decoration: underline;
  display: inline-flex;
  align-items: baseline;
}
body.single-wp_theme .left-side .spec__td.site-url a:hover {
  text-decoration: none;
}
body.single-wp_theme .left-side .spec__td.site-url a::after {
  font-family: "bootstrap-icons";
  content: "\f1c5";
  font-size: 0.9em;
  vertical-align: middle;
}
body.single-wp_theme .left-side .spec__td.site-url img {
  width: 0;
}
body.single-wp_theme .left-side .spec__td.multi_site, body.single-wp_theme .left-side .spec__td.agency {
  flex-direction: column;
  align-items: baseline;
}
body.single-wp_theme .left-side .spec__td.multi_site .title, body.single-wp_theme .left-side .spec__td.agency .title {
  font-size: 0.9rem;
  padding-top: 10px;
  display: flex;
  align-items: center;
}
body.single-wp_theme .left-side .spec__td.multi_site .title img, body.single-wp_theme .left-side .spec__td.agency .title img {
  width: 14px;
  margin-right: 8px;
}
body.single-wp_theme .left-side .spec__td.multi_site .detail-text, body.single-wp_theme .left-side .spec__td.agency .detail-text {
  margin-top: 10px;
  font-size: 0.8rem;
  line-height: 1.8;
}
body.single-wp_theme .left-side .spec__td.multi_site.agency--pay img, body.single-wp_theme .left-side .spec__td.agency.agency--pay img {
  width: 26px;
  margin-right: 10px;
}
body.single-wp_theme .left-side .spec__td.additional {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
body.single-wp_theme .left-side .spec__td.additional p {
  font-size: 0.8rem;
  line-height: 1.8;
}
body.single-wp_theme .left-side .spec__td .tax {
  font-size: 0.7rem;
  display: inline-block;
  margin-left: 3px;
}
body.single-wp_theme .left-side .spec__link {
  font-weight: 700;
  text-decoration: none;
}
body.single-wp_theme .left-side .spec__link:hover {
  text-decoration: underline;
}
body.single-wp_theme .left-side .spec .category__outer {
  margin-top: 0;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .left-side .spec .category__outer {
    margin-top: 5px;
  }
}
body.single-wp_theme .left-side .spec .muted {
  color: #888;
}
body.single-wp_theme .left-side .spec .feature-tags-ul {
  margin-top: 0;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .left-side .spec .feature-tags-ul {
    margin-top: 5px;
  }
}
body.single-wp_theme .left-side .valuation-area {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
}
body.single-wp_theme .left-side .valuation-area .icon {
  width: 85px;
  margin-right: 30px;
  flex-shrink: 0;
  margin-left: 10px;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .left-side .valuation-area .icon {
    width: 55px;
    margin-right: 15px;
    margin-left: 0;
  }
}
body.single-wp_theme .left-side .valuation-area .name {
  font-size: 0.8rem;
}
body.single-wp_theme .left-side .valuation-area .text {
  background-color: #e5f2ff;
  width: calc(100% - 85px - 40px);
  padding: 25px 25px;
  position: relative;
  border-radius: 8px;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .left-side .valuation-area .text {
    width: 100%;
    padding: 20px 20px;
  }
}
body.single-wp_theme .left-side .valuation-area .text::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -8px;
  width: 16px;
  height: 16px;
  background-color: #e5f2ff;
  transform: rotate(45deg);
}
body.single-wp_theme .left-side .valuation-area .text p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}
body.single-wp_theme .left-side .note-area {
  margin-top: 0.5rem;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .left-side .note-area {
    margin-top: 1.5rem;
  }
}
body.single-wp_theme .left-side .note-area .note-area__ul li {
  font-size: 12px;
  color: #8a8a8a;
  text-align: right;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .left-side .note-area .note-area__ul li {
    font-size: 11px;
    text-align: left;
    line-height: 1.5;
    text-indent: -10px;
    margin-left: 10px;
    letter-spacing: 0.5px;
  }
}
body.single-wp_theme .left-side .note-area .note-area__ul li span {
  color: #ED1A3D;
}
body.single-wp_theme .left-side .note-area .note-area__ul li a {
  text-decoration: underline;
  color: #8a8a8a;
}
body.single-wp_theme .left-side .note-area .note-area__ul li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 991.9px) {
  body.single-wp_theme .right-side {
    margin-top: 5rem;
  }
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .right-side {
    margin-top: 3rem;
  }
}
body.single-wp_theme .right-side .purchase-card {
  position: sticky;
  right: 0;
  top: 120px;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  background: #fff;
  padding: 28px 20px;
}
@media screen and (max-width: 991.9px) {
  body.single-wp_theme .right-side .purchase-card {
    padding: 30px 30px;
  }
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .right-side .purchase-card {
    padding: 25px 20px;
  }
}
body.single-wp_theme .right-side .purchase-card__inner {
  margin: 0 auto;
}
body.single-wp_theme .right-side .purchase-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
body.single-wp_theme .right-side .purchase-card__price-main {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ED1A3D;
  line-height: 1;
}
@media screen and (max-width: 991.9px) {
  body.single-wp_theme .right-side .purchase-card__price-main {
    font-size: 1.3rem;
  }
}
body.single-wp_theme .right-side .purchase-card__price-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ED1A3D;
}
body.single-wp_theme .right-side .purchase-card__type {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 10px;
}
body.single-wp_theme .right-side .purchase-card__type img {
  width: 18px;
  margin-right: 8px;
}
body.single-wp_theme .right-side .purchase-card__type .sales-type {
  font-size: 0.9rem;
}
body.single-wp_theme .right-side .purchase-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 34px;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: #2f8a2f;
}
body.single-wp_theme .right-side .purchase-card__btn {
  width: 100%;
  margin: 0 auto;
  padding: 10px 18px;
  border-radius: 8px;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  background: #2f4fb8;
  color: #fff;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
@media screen and (max-width: 991.9px) {
  body.single-wp_theme .right-side .purchase-card__btn {
    gap: 10px;
  }
}
body.single-wp_theme .right-side .purchase-card__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
body.single-wp_theme .right-side .purchase-card__btn.is-disabled {
  background: #b9b9b9;
  color: #fff;
  cursor: not-allowed;
}
body.single-wp_theme .right-side .purchase-card__btn.is-disabled:hover {
  opacity: 1;
  transform: none;
}
body.single-wp_theme .right-side .purchase-card__btn img {
  width: 18px;
}
body.single-wp_theme .right-side .purchase-card__note {
  margin-top: 5px;
  text-align: center;
  font-size: 0.7rem;
  color: #8a8a8a;
  text-align: center;
}
@media screen and (max-width: 991.9px) {
  body.single-wp_theme .right-side .purchase-card__note {
    text-align: center;
  }
}
body.single-wp_theme .right-side .purchase-pr__btn a {
  color: white;
  width: 100%;
  margin: 0 auto;
  padding: 10px 5px;
  border-radius: 8px;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  background: #2f4fb8;
  color: #fff;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 50px;
  transition: 0.1s;
}
body.single-wp_theme .right-side .purchase-pr__btn a::after {
  font-family: "bootstrap-icons";
  content: "\f1c5";
  font-size: 1em;
  vertical-align: middle;
}
body.single-wp_theme .right-side .purchase-pr__btn a:hover {
  opacity: 0.6;
}
body.single-wp_theme .right-side .purchase-pr__btn img {
  width: 0;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .section__demosite {
    margin-top: 10px;
    padding-top: 10px;
  }
}
body.single-wp_theme .section__demosite .title__demosite {
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .section__demosite .title__demosite {
    font-size: 1rem;
  }
}
body.single-wp_theme .section__demosite .title__demosite .text {
  font-size: 0.9rem;
  margin-left: 1.5rem;
  font-weight: normal;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .section__demosite .title__demosite .text {
    font-size: 0.8rem;
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
}
body.single-wp_theme .section__demosite .allview {
  text-align: right;
  margin-top: 2rem;
}
body.single-wp_theme .section__demosite .column-4-ul {
  margin-top: 3rem;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .section__demosite .column-4-ul {
    margin-top: 2rem;
  }
}
body.single-wp_theme .section__demosite .listbtn-outer {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
body.single-wp_theme .section__demosite .listbtn-outer .listbtn p {
  padding: 15px 10px;
  font-size: 1rem;
}
@media screen and (max-width:575.9px) {
  body.single-wp_theme .section__demosite .listbtn-outer .listbtn p {
    font-size: 0.9rem;
  }
}

.breadcrumbs__outer {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}
@media screen and (max-width: 991.9px) {
  .breadcrumbs__outer {
    margin-top: 1rem;
    padding: 0;
  }
}

#breadcrumbs {
  line-height: 1.5;
}
#breadcrumbs span {
  font-size: 0.8rem;
  padding: 0 0px;
}
@media screen and (max-width:575.9px) {
  #breadcrumbs span {
    font-size: 12px;
    line-height: 1.3;
  }
}
#breadcrumbs span span.breadcrumb_last {
  color: #a9a9a9;
}
#breadcrumbs span span:not(:last-child):hover {
  opacity: 0.8;
  transition: 0.2s;
}
#breadcrumbs span span:last-child {
  color: #a9a9a9;
}
#breadcrumbs span span:last-child a {
  color: #a9a9a9;
  text-decoration: none !important;
}
#breadcrumbs span:first-of-type {
  padding-left: 0;
}

#footer {
  z-index: 0;
  background-color: #f0f0f0;
  padding-right: 5%;
  padding-left: 5%;
}
#footer .footer-inner {
  padding-top: 70px;
  padding-bottom: 50px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 991.9px) {
  #footer .footer-inner {
    width: 90%;
  }
}
@media screen and (max-width:575.9px) {
  #footer .footer-inner {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width:575.9px) {
  #footer .footer-inner .footer-logo {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}
#footer .footer-inner .footer-logo a img {
  width: 350px;
}
@media screen and (max-width: 991.9px) {
  #footer .footer-inner .footer-logo a img {
    width: 300px;
  }
}
@media screen and (max-width:575.9px) {
  #footer .footer-inner .footer-logo a img {
    width: 200px;
  }
}
#footer .footer-inner .footer-ul {
  display: flex;
  margin-top: 50px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
#footer .footer-inner .footer-ul .footer-li {
  border-right: 1px solid gray;
  padding: 0 15px;
  font-size: 0.8rem;
}
#footer .footer-inner .footer-ul .footer-li:first-of-type {
  border-left: 1px solid gray;
}
@media screen and (max-width:575.9px) {
  #footer .footer-inner .footer-ul .footer-li {
    padding: 0 5px;
    border: none !important;
    font-size: 0.7rem;
  }
}

/*=====================
//メニュー用のCSS
//=====================*/
#navArea {
  z-index: 101;
}

nav {
  display: block;
  position: fixed;
  top: 0;
  left: -400px;
  bottom: 0;
  width: 400px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}
nav .inner {
  padding: 25px 10px 25px 10px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: none;
}
nav .inner ul li a {
  display: block;
  color: black;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
  text-transform: uppercase;
  font-weight: bold;
}
@media screen and (max-width: 991.9px) {
  nav {
    left: -320px;
    width: 320px;
  }
}
@media screen and (max-width:575.9px) {
  nav {
    width: 290px;
  }
}

.toggle_btn {
  position: fixed;
  right: 5%;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 3;
  display: none;
  top: 8px;
}
@media screen and (max-width: 991.9px) {
  .toggle_btn {
    display: inherit;
    top: 15px;
  }
}
@media screen and (max-width:575.9px) {
  .toggle_btn {
    right: 22px;
    top: 10px;
  }
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  border-radius: 4px;
  transition: all 0.5s;
  background-color: black;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}

#mask {
  display: none;
  transition: all 0.5s;
}

.open nav {
  left: 0;
  opacity: 1;
  background-color: #f5f5f5;
}
.open .toggle_btn span {
  background-color: white;
}
.open .toggle_btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg);
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 2;
}/*# sourceMappingURL=base-layout.css.map */