@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  line-height: 1;
}

.main *,
.main *::before,
.main *::after,
.header *,
.header *::before,
.header *::after,
.footer *,
.footer *::before,
.footer *::after,
.sidebar *,
.sidebar *::before,
.sidebar *::after,
.single-under *,
.single-under *::before,
.single-under *::after,
.content-search *,
.content-search *::before,
.content-search *::after {
  box-sizing: border-box;
}
.main body, .main h1, .main h2, .main h3, .main h4, .main h5, .main h6, .main p, .main ul, .main ol, .main li, .main figure, .main blockquote, .main dl, .main dd,
.header body,
.header h1,
.header h2,
.header h3,
.header h4,
.header h5,
.header h6,
.header p,
.header ul,
.header ol,
.header li,
.header figure,
.header blockquote,
.header dl,
.header dd,
.footer body,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer p,
.footer ul,
.footer ol,
.footer li,
.footer figure,
.footer blockquote,
.footer dl,
.footer dd,
.sidebar body,
.sidebar h1,
.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar h5,
.sidebar h6,
.sidebar p,
.sidebar ul,
.sidebar ol,
.sidebar li,
.sidebar figure,
.sidebar blockquote,
.sidebar dl,
.sidebar dd,
.single-under body,
.single-under h1,
.single-under h2,
.single-under h3,
.single-under h4,
.single-under h5,
.single-under h6,
.single-under p,
.single-under ul,
.single-under ol,
.single-under li,
.single-under figure,
.single-under blockquote,
.single-under dl,
.single-under dd,
.content-search body,
.content-search h1,
.content-search h2,
.content-search h3,
.content-search h4,
.content-search h5,
.content-search h6,
.content-search p,
.content-search ul,
.content-search ol,
.content-search li,
.content-search figure,
.content-search blockquote,
.content-search dl,
.content-search dd {
  margin: 0;
  padding: 0;
}
.main ul,
.main ol,
.header ul,
.header ol,
.footer ul,
.footer ol,
.sidebar ul,
.sidebar ol,
.single-under ul,
.single-under ol,
.content-search ul,
.content-search ol {
  list-style: none;
}
.main img,
.header img,
.footer img,
.sidebar img,
.single-under img,
.content-search img {
  vertical-align: bottom;
}
.main a,
.header a,
.footer a,
.sidebar a,
.single-under a,
.content-search a {
  text-decoration: none;
  color: inherit;
}
.main table,
.header table,
.footer table,
.sidebar table,
.single-under table,
.content-search table {
  border-collapse: collapse;
  border-spacing: 0;
}
.main input,
.main button,
.main textarea,
.main select,
.header input,
.header button,
.header textarea,
.header select,
.footer input,
.footer button,
.footer textarea,
.footer select,
.sidebar input,
.sidebar button,
.sidebar textarea,
.sidebar select,
.single-under input,
.single-under button,
.single-under textarea,
.single-under select,
.content-search input,
.content-search button,
.content-search textarea,
.content-search select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .main img,
  .header img,
  .footer img,
  .sidebar img,
  .single-under img,
  .content-search img {
    max-width: 100%;
    height: auto;
  }
  .main a[href^="tel:"],
  .header a[href^="tel:"],
  .footer a[href^="tel:"],
  .sidebar a[href^="tel:"],
  .single-under a[href^="tel:"],
  .content-search a[href^="tel:"] {
    pointer-events: auto;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  color: #000000;
}

.content__inner {
  max-width: 120rem;
  margin: 0 auto;
}

.main {
  padding-top: 14rem;
}

.content-layout .content__inner {
  display: flex;
  justify-content: center;
  gap: 5rem;
}

a {
  transition: 0.2s;
}

a:hover {
  opacity: 70%;
  transition: 0.2s;
}

.search-form__button {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .content__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
  }
  a {
    transition: none;
  }
  a:hover {
    opacity: 100%;
    transition: none;
  }
  .main {
    padding-top: 9.5rem;
  }
  .pc-only {
    display: none;
  }
}
input[type=checkbox i] {
  cursor: pointer;
}

.header {
  width: 100%;
  position: fixed;
  background-color: white;
  z-index: 99;
}
.header .header-top__brand {
  background: #00a740;
  padding: 0 6rem 0 6rem;
}
.header .header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1rem 0;
}
.header .search-form__input {
  background: white;
  border: 0.1rem solid #999999;
  border-radius: 1.5rem;
  height: 3rem;
  width: 20.8rem;
  padding: 1rem;
}
.header .header-top__search {
  position: relative;
}
.header .search-form__icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.header .header-bottom .sidebar__section {
  display: none;
}
.header .header-bottom .search-form__input-wrap {
  display: none;
}
.header .header-bottom__logo img {
  max-width: 43.6rem;
}
.header .header-bottom__inner {
  padding: 1.6rem 6rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  position: relative;
}
.header .header-bottom .nav__item {
  padding-bottom: 0.5rem;
}
.header .header-bottom .nav__item:not(:last-child) .nav__link {
  padding: 0 1.5rem;
}
.header .header-bottom .nav__item:last-child .nav__link {
  padding: 0 0 0 1.5rem;
}
.header .header-bottom .nav__link {
  color: #000000;
  font-weight: 700;
  position: static;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .header-bottom .nav .nav__item--has-children .nav__link {
  position: relative;
  padding-right: 3.2rem;
}
.header .header-bottom .nav .nav__item--has-children .nav__link::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 0.2rem solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  top: 34%;
  right: 1.7rem;
  transform-origin: center;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.header .header-bottom .nav .nav__item--has-children.is-open .nav__link::after {
  transform: translateY(-25%) rotate(-45deg);
}
.header .header-bottom .nav__list {
  display: flex;
  align-items: center;
  position: static;
}
.header .header-bottom .nav__mega {
  color: #000000;
}
.header .nav {
  position: static;
}
.header .nav__item {
  position: static;
}
.header .nav__item.is-open .nav__mega {
  min-height: 20rem;
  opacity: 1;
  visibility: visible;
}
.header .nav__link {
  display: block;
  cursor: pointer;
}
.header .nav__mega {
  position: absolute;
  width: 100%;
  left: 0;
  margin: 1.6rem auto 0 auto;
  background: #f8f8f8;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  transition: max-height 0.1s ease, opacity 0.2s ease, padding 0.2s ease;
  padding: 5rem;
  z-index: 99999;
}
.header .nav__mega-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 3rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 120rem;
  margin: 0 auto;
}
.header .nav__mega-item a {
  display: block;
  font-size: 1.4rem;
  color: #333;
}
.header .nav__mega-item a:hover {
  text-decoration: underline;
}
.header .nav__mega-link {
  background: white;
  font-weight: 700;
  border: 0.1rem solid #999999;
  border-radius: 2rem;
  width: 21.6rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 0.5rem 2.5rem;
  position: relative;
}
.header .nav__mega-link::after {
  content: "»";
  position: absolute;
  width: 2rem;
  height: 2rem;
  background: #ffdc00;
  border-radius: 50%;
  right: 1rem;
  display: flex;
  justify-content: center;
}
.header .nav .is-open {
  border-bottom: 0.2rem solid #00a740;
  margin-top: 0.2rem;
}
.header .cate-list {
  display: none;
}

@media screen and (max-width: 1219px) {
  .header .content-layout .content__inner {
    flex-direction: column;
  }
  .header .header-top__brand {
    padding: 1rem 1vw 0 1vw;
  }
  .header .header-bottom__inner {
    padding: 1.6rem 1vw;
    font-size: 1.4rem;
  }
  .header .header-bottom__logo img {
    max-width: 36vw;
  }
  .header .header-bottom .nav__link {
    padding: 0.5rem 1rem;
    font-size: 1.5vw;
  }
  .header .nav__mega-list {
    gap: 0.6vw 1vw;
    justify-content: left;
  }
  .header .nav__mega {
    padding: 2rem;
  }
  .header .nav__mega-link {
    width: 100%;
  }
  .header .nav__mega-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 3rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100vw;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .header .header-top__brand {
    padding: 0;
  }
  .header .header-top__search {
    display: none;
  }
  .header .header-top__inner {
    font-size: clamp(1px, 2.66vw, 10px);
    padding: 1rem;
    justify-content: center;
  }
  .header .header-bottom {
    overflow-y: auto;
  }
  .header .header-bottom__inner {
    padding: 0;
    display: block;
  }
  .header .header-bottom__nav {
    display: none;
  }
  .header .search-form__input {
    width: 100%;
    height: 3rem;
    margin: 0 auto;
  }
  .header .header-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    background: white;
  }
  .header .header-bottom__toggle {
    position: absolute;
    right: 3vw;
    top: 14%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 10.66vw;
    max-width: 4rem;
    height: 10.66vw;
    max-height: 4rem;
    border: 0.05rem solid #b3b3b3 !important;
    cursor: pointer;
    z-index: 1100;
    background: #fff !important;
    padding: 0.4rem;
  }
  .header .header-bottom__toggle .header-bottom__box {
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 71%;
  }
  .header .header-bottom__toggle .header-bottom__box span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.2rem;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
  }
  .header .header-bottom__toggle .header-bottom__box span:nth-child(1) {
    top: 0;
  }
  .header .header-bottom__toggle .header-bottom__box span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header .header-bottom__toggle .header-bottom__box span:nth-child(3) {
    bottom: 0;
  }
  .header .header-bottom__toggle.is-open .header-bottom__box span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header .header-bottom__toggle.is-open .header-bottom__box span:nth-child(2) {
    opacity: 0;
  }
  .header .header-bottom__toggle.is-open .header-bottom__box span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .header .header-bottom__box {
    height: 11vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header .header-bottom__toggle::after {
    content: "menu";
    font-size: clamp(1px, 2.6vw, 10px);
    font-weight: bold;
    color: #000000;
  }
  .header .header-bottom__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    padding: 2.5rem 20.5vw 10rem 20.5vw;
    max-height: 90vh;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
  }
  .header .header-bottom__nav.is-active {
    display: block;
    background: #f2f2f2;
  }
  .header .header-bottom__nav .nav__list {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding: 2rem 0;
    border-bottom: 0.1rem solid #cccccc;
  }
  .header .header-bottom__nav .nav__list .nav__item {
    margin-bottom: 0;
  }
  .header .header-bottom__nav .nav__list .nav__item:not(:last-child) {
    margin-right: 0;
  }
  .header .header-bottom__nav .nav__list .nav__link {
    padding: 0.75rem 0;
    text-align: left;
    font-size: 1.5rem;
    width: 59vw;
  }
  .header .header-bottom__logo img {
    width: 81.3vw;
    max-width: 30.5rem;
    padding: 1.6vw 0 2.6vw 3vw;
  }
  .header .header-bottom .sidebar__section {
    display: block;
  }
  .header .header-bottom .search-form__input-wrap {
    display: block;
    position: relative;
    height: 3rem;
  }
  .header .header-bottom .recommend-contents {
    padding: 2.7rem 0 0 0;
  }
  .header .header-bottom .recommend-contents__list {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    align-items: center;
  }
  .header .header-bottom .recommend-contents__list .recommend-contents__item:last-of-type {
    padding: 2.3rem 0 0 0;
    border-top: 0.1rem solid #cccccc;
  }
  .header .header-bottom .recommend-contents__item {
    width: 100%;
  }
  .header .header-bottom .recommend-contents__item img {
    width: 100%;
  }
  .header .header-bottom .category-menu__heading {
    color: #00a740;
    font-size: 1.5rem;
    padding: 0 0 0.7rem 0;
  }
  .header .header-bottom .category-menu__heading img {
    width: 1.5rem;
  }
  .header .header-bottom .nav__mega-list {
    display: block;
  }
  .header .header-bottom .nav .is-open {
    border-bottom: none;
  }
  .header .header-bottom .is-open .nav__mega {
    position: static;
    background: none;
    padding: 0;
  }
  .header .header-bottom .nav__mega {
    right: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .header .header-bottom .nav__mega-list {
    max-width: 100%;
    padding: 0 0 2rem 0;
  }
  .header .header-bottom .nav__mega-link {
    font-size: 1.5rem;
    margin: 1rem 0;
    width: 100%;
  }
  .header .header-bottom .nav .nav__item--has-children .nav__link::after {
    left: 10.5rem;
  }
  .header .cate-list {
    display: block;
    padding: 2.5rem 0;
    border-bottom: 0.1rem solid #cccccc;
  }
  .header .cate-list .category-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 1rem 0 0 0;
  }
  .header .cate-list .category-menu__item {
    margin-bottom: 1rem;
  }
  .header .cate-list .category-menu__item.open .category-menu__mega {
    display: block;
  }
  .header .cate-list .category-menu__item.open .category-menu__toggle::after {
    position: absolute;
    width: 2rem;
    height: 2rem;
    background: #ffdc00;
    border-radius: 50%;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    content: "－";
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
  }
  .header .cate-list .category-menu__toggle {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 0.1rem solid #999999;
    border-radius: 2rem;
    display: block;
    width: 100%;
    padding: 0.5rem 2rem;
    text-align: left;
    position: relative;
    transition: 0.2s;
    background: #fff;
    color: #000000;
  }
  .header .cate-list .category-menu__toggle::after {
    position: absolute;
    width: 2rem;
    height: 2rem;
    background: #ffdc00;
    border-radius: 50%;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    content: "＋";
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
  }
  .header .cate-list .category-menu__toggle:hover {
    opacity: 70%;
    transition: 0.2s;
  }
  .header .cate-list .category-menu__mega {
    display: none;
    padding-left: 3rem;
    margin-top: 1rem;
    margin-bottom: 0;
  }
  .header .cate-list .category-menu__mega-item {
    margin-bottom: 1.5rem;
    position: relative;
  }
  .header .cate-list .category-menu__mega-item a {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
  }
  .header .cate-list .category-menu__mega-item a::after {
    content: "»";
    position: absolute;
    padding-left: 0.5rem;
    margin-top: -0.1rem;
  }
  .header .cate-list .category-menu__mega-item a::before {
    content: "・";
    position: absolute;
    margin-top: -0.1rem;
    left: -1.5rem;
  }
}
.footer {
  background: #e6e6e6;
  font-size: 1.2rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  max-width: 120rem;
  margin: 0 auto;
  align-items: center;
  padding: 1.2rem 0;
}
.footer__nav {
  display: flex;
}
.footer__nav-link {
  position: relative;
  display: block;
  padding: 0 0.8rem;
}
.footer__nav-item:last-of-type .footer__nav-link::before {
  position: absolute;
  content: "|";
  top: -0.05rem;
  right: 0%;
}
.footer__nav-link::after {
  position: absolute;
  content: "|";
  top: -0.05rem;
  left: 0%;
}

@media screen and (max-width: 1219px) {
  .footer__inner {
    padding: 1.2rem 1vw;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 1rem;
  }
  .footer__inner {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.8rem 0;
  }
}
.sidebar {
  min-width: 29rem;
}
.sidebar .category-menu__heading {
  color: #39b54a;
  font-size: 2rem;
}
.sidebar .category-menu__list {
  padding: 2rem 0 0 0;
}
.sidebar .category-menu__item a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  background: #ffffff;
  padding: 1rem 0;
  border: 0.1rem solid #999999;
  border-radius: 2.5rem;
  padding: 1rem 2.4rem;
}
.sidebar .category-menu__item {
  position: relative;
}
.sidebar .category-menu__item::after {
  position: absolute;
  width: 2rem;
  height: 2rem;
  background: #ffdc00;
  border-radius: 50%;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  content: "»";
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.4rem;
  pointer-events: none;
}
.sidebar .category-menu__item:not(:first-of-type) {
  margin: 1rem 0 0 0;
}
.sidebar__section:not(:first-of-type) {
  padding: 6rem 0 0 0;
}
.sidebar .recommend-contents__list {
  padding: 1rem 0 0 0;
}
.sidebar .recommend-contents__item:not(:first-of-type) {
  padding: 2rem 0 0 0;
}
.sidebar .recommend-contents__item:last-of-type {
  border-top: 0.1rem solid #cccccc;
  margin-top: 3rem;
}

.sidebar-kate .category-menu__item a {
  border: none;
}
.sidebar-kate .category-menu__item::after {
  content: "";
  background: none;
}
.sidebar-kate .category-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 2rem 0 0 0;
}
.sidebar-kate .category-menu__item {
  margin-bottom: 1rem;
}
.sidebar-kate .category-menu__item.open .category-menu__mega {
  display: block;
}
.sidebar-kate .category-menu__item.open .category-menu__toggle::after {
  position: absolute;
  width: 2rem;
  height: 2rem;
  background: #ffdc00;
  border-radius: 50%;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  content: "－";
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}
.sidebar-kate .category-menu__toggle {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  border: 0.1rem solid #999999;
  border-radius: 2rem;
  display: block;
  width: 100%;
  padding: 0.5rem 2rem;
  text-align: left;
  position: relative;
  transition: 0.2s;
}
.sidebar-kate .category-menu__toggle::after {
  position: absolute;
  width: 2rem;
  height: 2rem;
  background: #ffdc00;
  border-radius: 50%;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  content: "＋";
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}
.sidebar-kate .category-menu__toggle:hover {
  opacity: 70%;
  transition: 0.2s;
}
.sidebar-kate .category-menu__mega {
  display: none;
  padding-left: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.sidebar-kate .category-menu__mega-item {
  margin-bottom: 0.25rem;
}
.sidebar-kate .category-menu__mega-item a {
  text-decoration: none;
  color: inherit;
}
.sidebar-kate .category-menu__mega-item a::after {
  content: "»";
  position: absolute;
  padding-left: 0.5rem;
  margin-top: -0.1rem;
}
.sidebar-kate .category-menu__mega-item a::before {
  content: "・";
  position: absolute;
  margin-top: -0.1rem;
  left: 1.8rem;
}

@media screen and (max-width: 1219px) {
  .sidebar {
    min-width: 22rem;
  }
  .sidebar .recommend-contents__item img {
    max-width: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .sidebar {
    display: none;
  }
  .keyword-list {
    padding: 0.9rem 0 0 0;
    font-size: 1rem;
    align-items: baseline;
  }
  .keyword-list__title {
    white-space: nowrap;
  }
  .keyword-list__items {
    gap: 0.8rem;
  }
}
.post-list__button a {
  display: block;
  text-align: center;
  background: #39b54a;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.3rem 0;
  border-radius: 25rem;
  max-width: 26.2rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .post-list__button a {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 0;
    border-radius: 25rem;
    max-width: 19.5rem;
  }
}
.post .post-card__body {
  padding: 1rem 0 0 0;
}
.post .post-card__date {
  font-size: 1.2rem;
}
.post .post-card h4 {
  font-size: 1.8rem;
  line-height: 1.38;
  padding: 0.7rem 0 0 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.post .post-card .fa-calendar-days:before {
  color: #999999;
}
.post .post-card__image {
  max-width: 26.3rem;
  max-height: 17.6rem;
  height: auto;
}

@media screen and (max-width: 1219px) {
  .post-card__image {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .post .post-card__body {
    padding: 0;
  }
  .post .post-card__link {
    display: flex;
    gap: 1rem;
  }
  .post .post-card img {
    max-width: 15rem;
    height: 100%;
  }
  .post .post-card__body {
    padding: 0;
  }
  .post .post-card h4 {
    font-size: 1.5rem;
  }
  .post .post-card__date {
    font-size: 1.1rem;
    padding: 0.2rem 0 0 0;
  }
}
.content-search .search-form__input {
  background: white;
  border: 0.2rem solid #999999;
  height: 6.5rem;
  width: 60rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.6rem;
}
.content-search .search-form__icon {
  position: absolute;
  right: 1rem;
  transform: translateY(-50%);
  top: 50%;
}
.content-search .search-form__button {
  position: absolute;
  right: 1rem;
  transform: translateY(-50%);
  top: 59%;
}
.content-search .keyword-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  align-items: center;
  padding: 2.4rem 0 0 0;
}
.content-search .keyword-list__item {
  background: #ffffff;
  padding: 0.5rem;
  border: 0.1rem solid #cccccc;
  border-radius: 0.3rem;
}
.content-search .keyword-list__items {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.content-search .content-search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
}
.content-search .content-search-wrapper .heading {
  display: block;
  color: #39b54a;
  font-size: 3rem;
  font-weight: 700;
}
.content-search .content-search-wrapper .description {
  font-weight: 700;
  padding: 0.8rem 0 0 0;
}
.content-search .search-form__input-wrap {
  padding: 1.8rem 0 0 0;
  position: relative;
  padding-bottom: 0;
}
.content-search .search-form__input-wrap {
  width: 60rem;
  margin: 0 auto;
}

@media screen and (max-width: 1219px) {
  .content-search .search-form__input {
    height: 6rem;
    width: 51vw;
    font-size: 1.6rem;
    letter-spacing: 0.8px;
  }
  .content-search .search-form__input-wrap {
    width: 51vw;
  }
}
@media screen and (max-width: 768px) {
  .content-search .search-form__icon {
    max-width: 1.2rem;
    top: 3px;
  }
  .content-search .search-form__button {
    right: 0.2rem;
    top: 51%;
  }
  .content-search .search-form__input-wrap {
    padding: 0.6rem 0 0 0;
  }
  .content-search .search-form__input {
    width: 100%;
    height: 3.25rem;
    border: 0.1rem solid #999999;
    font-size: 1.3rem;
    padding: 0.8rem 3.5rem 0.8rem 0.8rem;
  }
  .content-search .content-search-wrapper {
    gap: 0.6rem;
  }
  .content-search .content-search-wrapper .icon-image {
    max-width: 2.5rem;
  }
  .content-search .content-search-wrapper .heading {
    font-size: 1.5rem;
  }
  .content-search .content-search-wrapper .description {
    font-size: 1rem;
    padding: 0.3rem 0 0 0;
  }
  .content-search .keyword-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1rem;
    align-items: center;
    padding: 1rem 0 0 0;
  }
  .content-search .search-form__input-wrap {
    width: 100%;
  }
}
.pagination__list {
  display: inline-flex;
  gap: 1rem;
}
.pagination__link {
  width: 4rem;
  height: 4rem;
  border: 0.1rem solid #999999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .is-current {
  background: #39b54a;
  border: 0.1rem solid #39b54a;
  color: white;
}

@media screen and (max-width: 768px) {
  .pagination__link {
    font-size: 1.2rem;
    width: 3rem;
    height: 3rem;
  }
  .pagination__list {
    gap: 0.75rem;
  }
}
.home .hero {
  background: linear-gradient(0deg, rgb(227, 242, 225) 80%, rgb(255, 255, 255) 80%);
}
.home .hero .swiper-slide {
  transition: 0.7s;
}
.home .hero .swiper {
  overflow: visible;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: auto;
}
.home .hero .swiper-wrapper {
  align-items: center;
  padding: 1rem 0;
}
.home .hero .swiper-slide-active {
  z-index: 1;
}
.home .hero .swiper-slide img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.home .hero .hero__image {
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease, filter 0.4s ease;
}
.home .hero .swiper-slide-active .hero__image {
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3));
  transition: 0.2s;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.home .hero .swiper-slide-active:hover .hero__image {
  transform: scale(1.01);
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.4));
}
.home .hero .swiper-slide a:hover {
  opacity: 100%;
}
.home .hero .hero__image:hover {
  filter: none;
  transition: 0.2s;
}
.home .hero .swiper-slide {
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 1;
}
.home .hero .swiper-slide-active {
  opacity: 1;
  z-index: 2;
}
.home .hero .swiper-button-prev {
  background: #808080;
  color: white;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: 0.2s;
}
.home .hero .swiper-button-prev:hover,
.home .hero .swiper-button-next:hover {
  background: #606060;
  transition: 0.2s;
}
.home .hero .swiper-button-next {
  background: #808080;
  color: white;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: 0.2s;
}
.home .hero .swiper-button-prev:after,
.home .hero .swiper-rtl .swiper-button-next:after {
  content: "‹‹";
  font-size: 2.6rem;
  font-weight: 100;
  margin-bottom: 0.4rem;
}
.home .hero .swiper-button-next:after,
.home .hero .swiper-rtl .swiper-button-prev:after {
  content: "››";
  font-size: 2.6rem;
  font-weight: 100;
  margin-bottom: 0.4rem;
}
.home .hero .swiper-button-next,
.home .hero .swiper-rtl .swiper-button-prev {
  left: 74.5%;
}
.home .hero .swiper-button-prev,
.home .hero .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 22.5%);
}
@media (min-width: 1500px) {
  .home .hero .hero {
    background: linear-gradient(0deg, rgb(227, 242, 225) 90%, rgb(255, 255, 255) 90%);
  }
  .home .hero .swiper-button-prev,
  .home .hero .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 27%);
  }
  .home .hero .swiper-button-next,
  .home .hero .swiper-rtl .swiper-button-prev {
    left: 70.5%;
  }
  .home .hero .swiper-wrapper {
    padding: 8rem 0;
  }
  .home .hero .swiper-slide {
    transform: none !important;
    opacity: 1;
  }
  .home .hero .swiper-slide-active {
    transform: scale(1) !important;
    transform-origin: center center;
    transform: translateY(-0.5rem) scale(1.2) !important;
  }
  .home .hero .swiper-slide img,
  .home .hero .hero__image {
    width: 70rem;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}
.home .main-top {
  background: #e3f2e1;
  padding: 6.46vw 0 3.24vw 0;
  margin-top: -4.9vw;
}
.home .main-top .heading {
  font-size: 3rem;
  font-weight: 700;
}
.home .main-top .search-form__input-wrap {
  text-align: center;
  position: relative;
}
.home .icon-text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
}
.home .icon-text-wrapper .heading {
  display: block;
  color: #39b54a;
}
.home .icon-text-wrapper .description {
  font-weight: 700;
  padding: 0.8rem 0 0 0;
}
.home .post-list__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem 3.7rem;
  padding: 3.5rem 0 0 0;
}
.home .post-list__button a {
  display: block;
  text-align: center;
  background: #39b54a;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.3rem 0;
  border-radius: 25rem;
  max-width: 26.2rem;
  margin-top: 4.4rem;
}
.home .post .heading {
  font-size: 3rem;
}
.home .post .icon-text-wrapper {
  justify-content: left;
}
.home .post__title {
  border-bottom: 0.2rem dotted #000000;
  padding-bottom: 1.2rem;
}
.home .post__wrap:not(:first-of-type) {
  padding: 5rem 0 0 0;
}
.home .content-layout .content__inner {
  padding: 6rem 0 3rem 0;
}
@media screen and (max-width: 1219px) {
  .home .content-layout .content__inner {
    padding-right: 2vw;
    padding-left: 2vw;
  }
  .home .post-list__item {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem 2.7rem;
  }
  .home .post-card__image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .home .hero .swiper-button-prev,
  .home .hero .swiper-button-next {
    background: #808080;
    color: white;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: 0.75px solid #ffffff;
    transition: 0.2s;
  }
  .home .hero .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 10.5%);
    top: 52%;
  }
  .home .hero .swiper-button-next {
    left: 84%;
    top: 52%;
  }
  .home .hero .swiper-button-prev:after {
    content: "‹‹";
    font-size: 1.5rem;
    font-weight: 100;
    margin-bottom: 0.23rem;
  }
  .home .hero .swiper-button-next:after {
    content: "››";
    font-size: 1.5rem;
    font-weight: 100;
    margin-bottom: 0.23rem;
  }
  .home .hero .swiper-slide img {
    width: 100%;
    height: auto;
  }
  .home .hero .swiper-slide-active .hero__image {
    filter: none;
    transition: filter 0.4s ease, transform 0.4s ease;
    will-change: transform, filter;
  }
  .home .hero .swiper-slide-active .hero__image {
    filter: none;
    padding: 0;
    transition: 0.2s;
  }
  .home .hero .swiper-slide-active:hover .hero__image {
    transform: scale(1.01);
    filter: none;
  }
  .home .icon-text-wrapper {
    gap: 0.6rem;
  }
  .home .icon-text-wrapper .description {
    padding: 0.4rem 0 0 0;
  }
  .home .icon-text-wrapper .icon-image {
    max-width: 2.5rem;
  }
  .home .main-top .heading {
    font-size: 1.5rem;
    font-weight: 700;
  }
  .home .main-top .description {
    font-size: 1rem;
  }
  .home .content-layout .content__inner {
    flex-direction: column;
    padding: 3rem 5.3vw 4rem 5.3vw;
  }
  .home .post__title {
    border-bottom: 0.1rem dotted #000000;
    padding-bottom: 0.5rem;
  }
  .home .post .heading {
    font-size: 1.5rem;
  }
  .home .post .description {
    font-size: 1rem;
  }
  .home .post__wrap:not(:first-of-type) {
    padding: 4rem 0 0 0;
  }
  .home .post-list__item {
    padding: 1.8rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .home .post-list__button a {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 0;
    border-radius: 25rem;
    max-width: 19.5rem;
    margin-top: 2.2rem;
  }
  .home .main-top {
    margin-top: -7vw;
    padding-top: 0;
  }
  .home .main {
    padding-top: 9.5rem;
  }
  .home .sns {
    position: absolute;
    top: 0;
    right: 0;
  }
  .home .content-search {
    margin-top: 2rem;
  }
}

.sns {
  position: absolute;
  top: -3rem;
  right: 0;
}
.sns__actions {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sns__actions a {
  background: none;
  padding: 0;
}
.sns__actions a img {
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .sns {
    top: -0.5rem;
    right: -0.5rem;
  }
  .home .hero .swiper-slide {
    transform: scale(1.2) !important;
  }
  .home .hero .swiper-slide-active {
    transform: scale(1.4) !important;
  }
  .home .hero .swiper-wrapper {
    padding: 5rem 0;
  }
}
@media (min-width: 1880px) {
  .home .hero {
    background: linear-gradient(0deg, rgb(227, 242, 225) 53%, rgb(255, 255, 255) 53%);
  }
  .home .hero .swiper-slide img,
  .home .hero .hero__image {
    width: 31vw;
  }
  .home .hero .swiper {
    height: auto !important;
  }
  .home .hero .swiper-button-next,
  .home .hero .swiper-rtl .swiper-button-prev {
    left: 67.5%;
  }
  .home .hero .swiper-button-prev,
  .home .hero .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 30.5%);
  }
  .hero .swiper-wrapper {
    padding: 3rem 0;
  }
}
@media (min-width: 2280px) {
  .home .hero .swiper-slide img,
  .home .hero .hero__image {
    width: 26.5vw;
  }
  .home .main-top {
    margin-top: -7.9vw;
  }
  .home .hero .swiper-button-prev,
  .home .hero .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 33%);
  }
  .home .hero .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 65%);
  }
}
@media (min-width: 399px) and (max-width: 768px) {
  .home .main-top {
    margin-top: -3vw;
    padding-top: 1vw;
  }
}
.archive-column .post-list__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem 3.7rem;
}
.archive-column .archive .heading {
  display: block;
  text-align: center;
  font-size: 3rem;
  color: #39b54a;
}
.archive-column .archive__title {
  position: relative;
}
.archive-column .archive-text-wrapper {
  padding-bottom: 1.6rem;
  position: relative;
}
.archive-column .sns-list {
  position: absolute;
  right: 0;
  top: 0;
}
.archive-column .content-layout .content__inner {
  padding: 3.5rem 0 8.5rem 0;
}
.archive-column .pagination {
  padding: 6.5rem 0 0 0;
}
.archive-column .content-search {
  padding: 4.5rem 0 0 0;
}
.archive-column .sns-list p {
  font-size: 1rem;
}
.archive-column .post-head__sns-list {
  position: absolute;
  top: 0;
}

@media screen and (max-width: 1219px) {
  .archive-column .content-layout .content__inner {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .keyword-list__title {
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .archive-column .post-list__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  .archive-column .content-layout .content__inner {
    padding: 3rem 2rem 4rem 2rem;
    display: block;
  }
  .archive-column .archive .heading {
    font-size: 1.5rem;
    padding-bottom: 2.8rem;
  }
  .archive-column .archive__title {
    position: relative;
  }
  .archive-column .archive-text-wrapper {
    padding-bottom: 0;
  }
  .archive-column .pagination {
    padding: 3.2rem 0 0 0;
  }
  .archive-column .content-search {
    padding: 3.6rem 0 0 0;
  }
  .archive-column .sns-list {
    top: 0;
  }
}
.taxonomy .post-list__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem 3.7rem;
}
.taxonomy .archive .heading {
  display: block;
  text-align: center;
  font-size: 3rem;
  color: #39b54a;
}
.taxonomy .archive__title {
  position: relative;
}
.taxonomy .archive .post-list .icon {
  display: block;
  padding-left: 1.5rem;
}
.taxonomy .archive .post-list__title {
  display: flex;
  align-items: baseline;
  border-bottom: 0.4rem solid #39b54a;
  padding: 0 0 0.6rem 0;
  margin: 0 0 2.6rem 0;
  gap: 1rem;
}
.taxonomy .archive .post-list__title .heading {
  display: block;
  text-align: left;
}
.taxonomy .archive .post-list__button {
  padding: 2rem 0 0 0;
}
.taxonomy .archive-text-wrapper {
  padding-bottom: 3.5rem;
  position: relative;
}
.taxonomy .sns-list {
  position: absolute;
  right: 0;
  top: 0;
}
.taxonomy .content-layout .content__inner {
  padding: 3.5rem 0 8.5rem 0;
}
.taxonomy .pagination {
  padding: 6.5rem 0 0 0;
}
.taxonomy .content-search {
  padding: 12rem 0 0 0;
}
.taxonomy .post-list:not(.first) {
  padding-top: 7rem;
}

@media screen and (max-width: 1219px) {
  .taxonomy .content-layout .content__inner {
    padding: 3.5rem 2vw 7.5rem 2vw;
  }
  .keyword-list__title {
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .taxonomy .post-list__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  .taxonomy .content-layout .content__inner {
    padding: 3rem 2rem 4rem 2rem;
    display: block;
  }
  .taxonomy .archive .heading {
    font-size: 1.5rem;
    padding-bottom: 2.8rem;
  }
  .taxonomy .archive__title {
    position: relative;
  }
  .taxonomy .archive .post-list__title {
    border-bottom: 0.2rem solid #00a740;
    gap: 0.2rem;
    margin: 0 0 1.8rem 0;
  }
  .taxonomy .archive .post-list__title .heading {
    padding-bottom: 0;
    font-size: 1.4rem;
  }
  .taxonomy .archive .post-list__title .icon {
    padding-left: 0;
  }
  .taxonomy .archive .post-list__button {
    padding: 3.2rem 0 0 0;
  }
  .taxonomy .archive .post-list:not(.first) {
    padding-top: 5.2rem;
  }
  .taxonomy .archive-text-wrapper {
    padding-bottom: 0;
  }
  .taxonomy .pagination {
    padding: 3.2rem 0 0 0;
  }
  .taxonomy .content-search {
    padding: 3.6rem 0 0 0;
  }
  .taxonomy .sns-list {
    top: 0;
  }
  .taxonomy .content-search {
    padding: 4rem 0 0 0;
  }
}
.archive .post-list__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem 3.7rem;
}
.archive .archive .heading {
  display: block;
  text-align: center;
  font-size: 3rem;
  color: #39b54a;
}
.archive .archive__title {
  position: relative;
}
.archive .archive .post-list .icon {
  display: block;
  padding-left: 1.5rem;
}
.archive .archive .post-list__title {
  display: flex;
  align-items: baseline;
  border-bottom: 0.4rem solid #39b54a;
  padding: 0 0 0.6rem 0;
  margin: 0 0 2.6rem 0;
  gap: 1rem;
}
.archive .archive .post-list__title .heading {
  display: block;
  text-align: left;
}
.archive .archive .post-list__button {
  padding: 2rem 0 0 0;
}
.archive .archive-text-wrapper {
  padding-bottom: 3.5rem;
  position: relative;
}
.archive .sns-list {
  position: absolute;
  right: 0;
  top: 0;
}
.archive .content-layout .content__inner {
  padding: 3.5rem 0 8.5rem 0;
}
.archive .pagination {
  padding: 6rem 0 0 0;
}
.archive .content-search {
  padding: 12rem 0 0 0;
}
.archive .sns-list p {
  font-size: 1rem;
}
.archive .post-list:not(.first) {
  padding-top: 7rem;
}
.archive .post-head__sns-list {
  position: absolute;
  top: 0;
}

.search-archive .search-keyword {
  font-size: 1.8rem;
}
.search-archive .search-keyword span {
  font-weight: 700;
  font-size: 2rem;
}
.search-archive .post-list .icon {
  display: none !important;
}
.search-archive .no-result {
  white-space: nowrap;
}
.search-archive .archive-text-wrapper {
  padding-bottom: 1.5rem;
  position: relative;
}

@media screen and (max-width: 1219px) {
  .archive .content-layout .content__inner {
    padding: 0 2vw;
  }
  .keyword-list__title {
    white-space: nowrap;
  }
  .archive .content-layout {
    padding: 5rem 0 6rem 0;
  }
}
@media screen and (max-width: 768px) {
  .archive .post-list__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  .archive .content-layout .content__inner {
    padding: 0rem 5.3vw 0 5.3vw;
    display: block;
  }
  .archive .archive .heading {
    font-size: 1.5rem;
    padding-bottom: 2.8rem;
  }
  .archive .archive__title {
    position: relative;
  }
  .archive .archive .post-list__title {
    border-bottom: 0.2rem solid #00a740;
    gap: 0.2rem;
    margin: 0 0 1.8rem 0;
  }
  .archive .archive .post-list__title .heading {
    padding-bottom: 0;
    font-size: 1.4rem;
  }
  .archive .archive .post-list__title .icon {
    padding-left: 0;
  }
  .archive .archive .post-list__button {
    padding: 3.2rem 0 0 0;
  }
  .archive .archive .post-list:not(.first) {
    padding-top: 5.2rem;
  }
  .archive .archive-text-wrapper {
    padding-bottom: 0;
  }
  .archive .pagination {
    padding: 4.2rem 0 0 0;
  }
  .archive .content-search {
    padding: 3.6rem 0 0 0;
  }
  .archive .sns-list {
    top: 0;
  }
  .archive .content-search {
    padding: 5rem 0 0 0;
  }
  .search-archive .search-keyword {
    font-size: 1.4rem;
  }
  .search-archive .search-keyword span {
    font-weight: 700;
    font-size: 1.6rem;
  }
  .search-archive .archive-text-wrapper {
    padding-bottom: 1rem;
    position: relative;
  }
  .archive .content-layout {
    padding: 3rem 0 3rem 0;
  }
}
.category .post-list__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem 3.7rem;
}
.category .archive .heading {
  display: block;
  text-align: center;
  font-size: 3rem;
  color: #39b54a;
}
.category .archive__title {
  position: relative;
}
.category .archive .post-list .icon {
  display: block;
  padding-left: 1.5rem;
}
.category .archive .post-list__title {
  display: flex;
  align-items: baseline;
  border-bottom: 0.4rem solid #39b54a;
  padding: 0 0 0.6rem 0;
  margin: 0 0 2.6rem 0;
  gap: 1rem;
}
.category .archive .post-list__title .heading {
  display: block;
  text-align: left;
}
.category .archive .post-list__button {
  padding: 2rem 0 0 0;
}
.category .archive-text-wrapper {
  padding-bottom: 3.5rem;
  position: relative;
}
.category .sns-list {
  position: absolute;
  right: 0;
  top: 0;
}
.category .content-layout .content__inner {
  padding: 3.5rem 0 8.5rem 0;
}
.category .pagination {
  padding: 6.5rem 0 0 0;
}
.category .content-search {
  padding: 4.5rem 0 0 0;
}
.category .post-list:not(.first) {
  padding-top: 7rem;
}
.category .post-head__sns-list {
  position: absolute;
  top: 0;
}

@media screen and (max-width: 1219px) {
  .category .content-layout .content__inner {
    padding: 3.5rem 2vw 7.5rem 2vw;
  }
}
@media screen and (max-width: 768px) {
  .category .post-list__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  .category .content-layout .content__inner {
    padding: 3rem 2rem 4rem 2rem;
  }
  .category .archive .heading {
    font-size: 1.5rem;
    padding-bottom: 2.8rem;
  }
  .category .archive__title {
    position: relative;
  }
  .category .archive .post-list__title {
    border-bottom: 0.2rem solid #00a740;
    gap: 0.2rem;
    margin: 0 0 1.8rem 0;
  }
  .category .archive .post-list__title .heading {
    padding-bottom: 0;
    font-size: 1.4rem;
  }
  .category .archive .post-list__title .icon {
    padding-left: 0;
  }
  .category .archive .post-list__button {
    padding: 3.2rem 0 0 0;
  }
  .category .archive .post-list:not(.first) {
    padding-top: 5.2rem;
  }
  .category .archive-text-wrapper {
    padding-bottom: 0;
  }
  .category .pagination {
    padding: 3.2rem 0 0 0;
  }
  .category .content-search {
    padding: 3.6rem 0 0 0;
  }
  .category .sns-list {
    top: 0;
  }
  .category .content-search {
    padding: 4rem 0 0 0;
  }
}
.single .content__inner {
  padding: 17.5rem 0 7.5rem 0;
}
.single .post-article p {
  margin: 0;
  font-size: 2rem;
  line-height: 2.1;
}
.single .post-article ul {
  line-height: 0;
  list-style: none;
}
.single .post-article li {
  padding: 0;
}
.single .post-article li::before {
  content: "・";
  margin-left: -1.3em;
  text-indent: 1em;
}
.single .post-article__title {
  font-size: 4rem;
  margin: 0;
  line-height: 1.5;
  color: #00A64A;
  max-width: 86rem;
  overflow-wrap: break-word;
}
.single .post-head__data {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0.5rem 0 0 0;
}
.single .post-head__data .date {
  font-size: 1.8rem;
}
.single .post-head__data .category a {
  font-size: 1.8rem;
}
.single .post-head__data .fa-solid {
  color: #999999;
}
.single .post-head__data li:before {
  content: none;
}
.single .post-head__data p {
  margin: 0;
}
.single .post-head .purchase__actions {
  margin: 0 0 1rem 0;
  padding: 0;
}
.single .post-main h2 {
  background: linear-gradient(90deg, rgb(0, 167, 64) 1%, rgb(235, 248, 240) 1% 5%);
  font-size: 3.5rem;
  padding: 2.5rem 4rem;
  display: block;
  margin: 4rem 0;
  line-height: 1.5;
}
.single .post-main h3 {
  margin: 4rem 0;
  font-size: 3.5rem;
  padding: 1.8rem 0;
  margin: 4rem 0;
  border-top: 0.1rem solid transparent;
  border-bottom: 0.1rem solid transparent;
  border-image: repeating-linear-gradient(to right, #00a740 0, #00a740 0.3rem, transparent 0.3rem, transparent 0.7rem) 100 stretch;
  line-height: 1.5;
}
.single .toc {
  display: block;
  border: 0.2rem solid #999999;
  list-style: none;
  padding: 4rem;
  margin: 4rem 0;
}
.single .toc p {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  padding: 0 0 1rem 0;
}
.single .toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single .toc ul a {
  display: block;
  color: #000000;
  padding: 0.8rem 0;
}
.single .toc li {
  padding: 0;
}
.single .toc li::before {
  content: none;
  margin-left: 0;
  text-indent: 0;
}
.single .wp-element-caption {
  display: block;
  font-size: 1.4rem;
  text-align: right;
  margin: 0.3rem 0 1.2rem 0 !important;
}
.single .wp-block-table td {
  border: none;
  border-left: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.single .wp-block-table th {
  border: none;
  border-left: 0.1px solid #e6e6e6;
}
.single .lwptoc_i {
  padding: 40px;
  border-radius: 15px;
  margin-top: 2.5rem 0 1rem 0;
}
.single .lwptoc-notInherit .lwptoc_i DIV A:hover {
  border-bottom: none !important;
  text-decoration: underline !important;
}
.single a.lwptoc_toggle_label {
  font-size: 2rem;
  font-weight: 700;
  color: #39b54a !important;
}
.single .lwptoc_toggle:before {
  font-size: 2rem;
}
.single .lwptoc_toggle:after {
  font-size: 2rem;
}
.single .lwptoc_items {
  padding: 1.5rem 0 0 0;
}
.single .lwptoc_items > ul.lwptoc_itemWrap > li.lwptoc_item {
  font-size: 2.5rem;
  color: #000000;
  line-height: 1.6;
  margin-top: 1rem !important;
}
.single .lwptoc_items ul.lwptoc_itemWrap ul.lwptoc_itemWrap > li.lwptoc_item {
  font-size: 2rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.6;
}
.single .lwptoc_items ul.lwptoc_itemWrap ul.lwptoc_itemWrap > li.lwptoc_item::before {
  content: "»";
  color: rgb(141, 211, 141);
  margin-right: 0.5em;
  font-size: 0.7em;
}
.single .lwptoc_items > ul.lwptoc_itemWrap > li.lwptoc_item::before {
  content: "▶";
  color: rgb(141, 211, 141);
  margin-right: 0.5em;
  font-size: 0.4em;
}
.single .lwptoc_header {
  text-align: left;
}
.single .lwptoc_header .lwptoc_title {
  font-size: 30px;
  color: #000000;
  font-weight: 700;
  margin: 0;
  padding: 0 0 1rem 0;
}
.single .purchase_parts {
  margin: 4rem 0;
}
.single .purchase__title {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border-bottom: 0.2rem dotted;
  padding-bottom: 1rem;
}
.single .purchase__title .heading {
  color: #39b54a;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.single .purchase__title .description {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
.single .purchase__button {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}
.single .purchase__button .blue {
  background: #0071af;
}
.single .purchase__button .orenge {
  background: #eb7800;
}
.single .purchase__button .green {
  background: #56a022;
}
.single .purchase__button-item {
  font-family: "Noto Sans JP";
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  max-width: 42rem;
  width: 100%;
  padding: 3rem;
  font-size: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  box-shadow: 0px 4px 0 #808080;
  font-weight: 500;
}
.single .purchase__button-item:hover {
  box-shadow: none;
  transform: translateY(0.5rem);
  opacity: 100%;
}
.single .purchase__button-item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  border: 1px solid #fff;
  border-radius: 8px;
  pointer-events: none;
}
.single .purchase__button .blue .custom-button__icon {
  color: #0071af;
  background: #ffffff;
  display: inline-block;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  line-height: 0.7;
  margin-left: 1rem;
  margin-top: -2.3rem;
}
.single .purchase__button .orenge .custom-button__icon {
  color: #eb7800;
  background: #ffffff;
  display: inline-block;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  line-height: 0.7;
  margin-left: 1rem;
  margin-top: -2.3rem;
}
.single .purchase__button .green .custom-button__icon {
  color: #56a022;
  background: #ffffff;
  display: inline-block;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  line-height: 0.7;
  margin-left: 1rem;
  margin-top: -2.3rem;
}
.single .catalog_parts {
  margin: 4rem 0;
}
.single .catalog_parts__title {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 0.2rem dotted;
}
.single .catalog__button-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  font-size: 2.5rem;
  border: 0.3rem solid #999999;
  border-radius: 2rem;
  padding: 3rem;
  margin-top: 4.5rem;
  gap: 1rem;
  position: relative;
}
.single .catalog__button-item::after {
  content: url(../images/single/icon_download2.svg);
  display: block;
  position: absolute;
  right: 3rem;
}
.single .manual_table_parts {
  margin: 4rem 0;
}
.single .manual_table_parts th:not(:first-child) {
  width: 20rem;
}
.single .manual_table_parts td:not(:first-child) {
  text-align: center;
}
.single .manual_table_parts #download-btn {
  color: #ed1c24;
  background: none;
  border: 0.1rem solid #ed1c24;
  border-radius: 0.3rem;
  font-size: 2rem;
  font-family: "Zen Kaku Gothic New";
  cursor: pointer;
  display: block;
  margin: 0 0 0 auto;
}
.single .manual_table_parts #download-btn:hover {
  opacity: 70%;
}
.single .manual__title {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 0.2rem dotted;
}
.single .manual__btn {
  background: #ed1c24;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.3rem;
  padding: 0.1rem 0.5rem;
}
.single .manual_list {
  margin: 0;
  padding: 3rem 0 0 0;
  display: flex;
  gap: 3rem;
}
.single .manual_list .headdimg {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 0;
}
.single .manual_list li::before {
  content: none;
}
.single .manual_list .manual_text {
  display: flex;
  justify-content: space-between;
}
.single .manual_list .manual_text .link {
  font-size: 1.2rem;
  color: #000000;
}
.single table {
  border-collapse: separate;
  border: 0.1rem solid #999999;
  width: 100%;
  border-spacing: 0;
  margin: 2rem 0;
}
.single table label {
  display: inline-flex;
}
.single table input {
  appearance: none;
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  border: 1.5px solid #000000;
  cursor: pointer;
  margin-right: 0.5rem;
}
.single table input:checked {
  background-color: #000000;
}
.single table input:checked::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 0.8rem;
  height: 0.5rem;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-53deg);
}
.single thead {
  padding: 1rem 0;
}
.single th {
  padding: 1rem 0;
  font-weight: 500;
  font-size: 2rem;
  border-left: 0.1rem solid #e6e6e6;
  background: #666666;
  color: #ffffff;
  border-bottom: 0.1rem solid #e6e6e6;
}
.single th:first-child {
  border-left: none;
}
.single tr:last-child th {
  border-bottom: none;
}
.single td {
  border-left: 0.1rem solid #e6e6e6;
  border-bottom: 0.1rem solid #e6e6e6;
  padding: 1rem 1.5rem;
}
.single .single-under {
  margin: 10rem 0 0 0;
}
.single .single-under .icon-text-wrapper {
  justify-content: left;
}
.single .single-under .icon-text-wrapper .heading {
  font-size: 3rem;
}
.single .single-under .related .post-card__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  word-break: break-all;
}
.single .single-under .related .post-card .genre {
  font-size: 2rem;
  color: #39b54a;
  font-weight: 700;
}
.single .single-under .related .post-card img {
  max-width: 26.3rem;
  max-height: 17.6rem;
  height: auto;
}
.single .single-under .related .post-list__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 3.7rem;
}
.single .single-under .related .post-list__item .post-card {
  max-width: 56.5rem;
}
.single .single-under .related .post-card__date {
  padding: 1rem 0;
  font-size: 1.2rem;
}
.single .single-under .related .post-card__date .fa-solid {
  color: #999999;
}
.single .single-under .related .post-card__title {
  line-height: 1.38;
  font-size: 1.6rem;
}
.single .recommended {
  padding: 11rem 0 0 0 !important;
}
.single .recommended .post-card__body {
  padding: 1rem 0 0 0;
}
.single .recommended .post-card__date {
  font-size: 1.2rem;
}
.single .recommended .post-card__date .fa-solid {
  color: #999999;
}
.single .recommended .post-card__title {
  font-size: 1.8rem;
  line-height: 1.38;
  padding: 1rem 0 0 0;
}
.single .content-search {
  padding: 6rem 0 0 0;
}
.single .post-head__item {
  display: flex;
  justify-content: right;
  gap: 1rem;
}
.single .post-head .sns {
  position: static;
}
.single .post-head .sns__actions {
  margin: 0;
}
.single .post-head .sns__item::before {
  content: none;
}
.single .post-head .category a {
  color: #000000;
  text-decoration: none;
  margin-left: 3px;
}
.single .post-tags {
  margin-top: 3rem;
}
.single .post-tag {
  display: inline-block;
  font-size: 1.3rem;
  border-radius: 0.5rem;
  color: #666666;
  margin: 0 0.3rem 0;
}
.single .post-head__data {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 2rem 0 3rem 0;
}
.single .post-head__data li {
  list-style: none;
}
.single .post-head__data.is-many-categories .post-head__categories {
  flex-basis: 100%;
  line-height: 1.6;
}
.single .post-head__categories span.category {
  display: inline-flex;
  align-items: center;
  margin-right: 13px;
  font-size: 0.9rem;
}
.single .post-head__categories img {
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 1219px) {
  .single .single-under .related .post-card__link {
    display: flex;
  }
  .single {
    box-sizing: border-box;
  }
  .single .content-layout .content__inner {
    padding-left: 2vw;
    padding-right: 2vw;
    box-sizing: border-box;
  }
  .single .manual_list img {
    max-width: 100%;
  }
  .single .post-main {
    margin-top: 5rem;
  }
  .single .post-main img {
    max-width: 100%;
  }
  .single .purchase__button-item {
    padding: 3rem;
    font-size: 1.8rem;
    line-height: 1.5;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0px 4px 0 #808080;
    padding: 1.5rem 3.5rem 1.5rem 1.5rem;
  }
  .single .purchase__button-item {
    position: relative;
  }
  .single .purchase__button .blue .custom-button__icon,
  .single .purchase__button .orenge .custom-button__icon,
  .single .purchase__button .green .custom-button__icon {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    border-radius: 50%;
    line-height: 0.7;
    margin-left: 2rem;
    margin-top: 0rem;
    transform: translateY(-50%);
  }
  .single .manual_list .manual_text {
    display: block;
  }
  .single th {
    padding: 1rem;
  }
  .single .single-under .related .post-list__item {
    gap: 3rem;
    grid-template-columns: 1fr;
  }
  .single .single-under .related .post-card__title {
    max-width: 100%;
  }
  .single .post-list__item {
    grid-template-columns: 1fr;
  }
  .single .post-list__item .post-card__link {
    display: flex;
    gap: 1rem;
  }
  .single .content__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .keyword-list__title {
    white-space: nowrap;
  }
  .single-under .related .post-card img {
    max-width: 26.3rem;
    max-height: 17.6rem;
    height: auto;
  }
  .single .single-under .related .post-list__item .post-card {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .single {
    font-size: 1.5rem;
  }
  .single .content__inner {
    display: block;
    padding: 12.5rem 2rem 2.5rem 2rem;
  }
  .single .manual_list {
    gap: 1rem;
    width: 100%;
  }
  .single .manual_list img {
    width: 100%;
  }
  .single .post-main img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .single .single-under .related .post-card .genre {
    white-space: wrap;
  }
  .single .post-article__title {
    font-size: 2.8rem;
  }
  .single .post-article li {
    padding: 0;
  }
  .single .post-head__data {
    gap: 0 1.5rem;
    flex-wrap: wrap;
  }
  .single .post-head__data a {
    font-size: 1.4rem;
  }
  .single .post-head__data .date {
    font-size: 1.4rem;
  }
  .single .post-head__data .category a {
    font-size: 1.4rem;
  }
  .single .toc {
    list-style: none;
    padding: 1.5rem;
    margin: 3rem 0;
  }
  .single .toc p {
    font-size: 2rem;
  }
  .single .toc ul a {
    padding: 0.2rem 0;
    font-size: 1.5rem;
  }
  .single .post-main h2 {
    background: linear-gradient(90deg, rgb(0, 167, 64) 1.5%, rgb(235, 248, 240) 1.5% 5%);
    font-size: 2rem;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
  }
  .single .post-main h3 {
    font-size: 2rem;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-image: repeating-linear-gradient(to right, #00a740 0, #00a740 0.1rem, transparent 0.1rem, transparent 0.2rem) 100 stretch;
  }
  .single .post-main .purchase__title {
    gap: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.1rem dotted;
  }
  .single .post-main .purchase__title .heading {
    font-size: 1.5rem;
  }
  .single .post-main .purchase__title .description {
    font-size: 1rem;
  }
  .single .post-main .purchase__title img {
    max-width: 2.5rem;
  }
  .single .post-main .purchase__button {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.8rem;
  }
  .single .post-main .purchase__button-item {
    max-width: 22.5rem;
    margin: 0 auto;
    font-size: 1.5rem;
    padding: 1.8rem;
    font-weight: 600;
  }
  .single .post-main .purchase__button-item::before {
    top: 0.2rem;
    left: 0.2rem;
    right: 0.2rem;
    bottom: 0.2rem;
    border: 1px solid #fff;
  }
  .single .post-main .purchase__button .blue .custom-button__icon {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    line-height: 0.7;
    margin-left: 0.3rem;
    margin-top: 0rem;
    vertical-align: auto;
  }
  .single .post-main .purchase__button .orenge .custom-button__icon {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    line-height: 0.7;
    margin-left: 0.3rem;
    margin-top: 0rem;
    vertical-align: auto;
  }
  .single .post-main .purchase__button .green .custom-button__icon {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    line-height: 0.7;
    margin-left: 0.3rem;
    margin-top: 0rem;
    vertical-align: auto;
  }
  .single .post-main .purchase__actions {
    margin: 0;
  }
  .single .post-main .purchase__actions li a {
    border-radius: 0.3rem;
    font-size: 0.7rem;
    margin-top: 2rem;
  }
  .single .post-main .purchase__actions li a img {
    display: inline;
    max-width: 0.7rem;
  }
  .single .post-main .catalog_parts {
    margin: 2rem 0;
  }
  .single .post-main .catalog_parts__title {
    font-size: 1.4rem;
    border-bottom: 0.1rem dotted;
  }
  .single .post-main .catalog_parts__title p {
    margin: 0.5rem 0;
  }
  .single .catalog__button-item {
    font-size: 1.5rem;
    border: 0.15rem solid #999999;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
    gap: 0.5rem;
  }
  .single .catalog__button-item img {
    max-width: 1.5rem;
  }
  .single .catalog__button-item::after {
    content: url(../images/single/icon_download2_sp.svg);
    right: 1rem;
  }
  .single .manual_table_parts {
    margin: 2rem 0;
  }
  .single .manual__title {
    font-size: 1.4rem;
    border-bottom: 0.1rem dotted;
  }
  .single .manual__title p {
    margin: 0.5rem 0;
  }
  .single .manual__table img {
    display: inline;
  }
  .single .manual__table th {
    font-size: 1.4rem;
  }
  .single .manual_table_parts #download-btn {
    font-size: 1.4rem;
  }
  .single .manual_table_parts #download-btn img {
    display: inline;
  }
  .single .manual_list {
    padding-top: 2rem;
  }
  .single .manual_list .manual_text {
    flex-direction: column;
  }
  .single .manual_list .headdimg {
    font-size: 1.4rem;
    padding: 0.5rem 0 0 0;
    margin: 1rem 0 0 0;
  }
  .single .manual_list .manual_text .link {
    font-size: 0.8rem;
  }
  .single th {
    padding: 0.5rem;
    font-size: 1rem;
  }
  .single td {
    font-size: 1rem;
    padding: 0.9rem;
  }
  .single .single-under {
    margin: 4.4rem 0 0 0;
  }
  .single .single-under .icon-text-wrapper .heading {
    font-size: 1.5rem;
  }
  .single .single-under .icon-text-wrapper .description {
    font-size: 1rem;
  }
  .single .single-under .post-list__item img {
    max-width: 15rem;
  }
  .single .single-under .post-list__item .genre {
    font-size: 1rem;
  }
  .single .single-under .related .post-card .genre {
    font-size: 1.5rem;
  }
  .single .single-under .related .post-card__date {
    padding: 0.5rem 0;
    font-size: 1rem;
  }
  .single .single-under .related .post-card__title {
    font-size: 1.4rem;
  }
  .single .recommended {
    padding: 4rem 0 0 0 !important;
  }
  .single .recommended .post-card__link {
    display: flex;
    gap: 1rem;
  }
  .single .recommended .post-card__date {
    font-size: 1rem;
  }
  .single .recommended .post-card__title {
    font-size: 1.4rem;
  }
  .single .recommended .post-card__body {
    padding: 0;
  }
  .single .content-layout .content__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .single .lwptoc_i {
    padding: 20px;
  }
  .single .lwptoc_items {
    padding: 1rem 0 0 0;
  }
  .single .lwptoc_header .lwptoc_title {
    padding: 0;
  }
  .single .lwptoc_header .lwptoc_title {
    font-size: 20px;
  }
  .single .post-article__title {
    margin-top: 10px;
  }
  .single a.lwptoc_toggle_label {
    font-size: 1.4rem;
  }
  .single .post-article p {
    font-size: 1.6rem;
  }
  .single .post-tags {
    margin-top: 3rem;
  }
  .single .post-tag {
    font-size: 1.2rem;
  }
  .single table {
    border-collapse: separate;
    border: 0.1rem solid #999999;
    width: 100%;
    border-spacing: 0;
    margin: 2rem 0;
  }
  .single table label {
    display: inline-flex;
  }
  .single table input {
    appearance: none;
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    border: 1px solid #000000;
    cursor: pointer;
    margin-right: 0.5rem;
  }
  .single table input:checked {
    background-color: #000000;
  }
  .single table input:checked::after {
    content: "";
    position: absolute;
    top: 0.1rem;
    left: 0.1rem;
    width: 0.6rem;
    height: 0.3rem;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    transform: rotate(-53deg);
  }
  .single .post-main {
    margin-top: 2rem;
  }
  .single .manual_table_parts th:not(:first-child) {
    width: 10rem;
  }
  .single .lwptoc_items > ul.lwptoc_itemWrap > li.lwptoc_item {
    font-size: 1.8rem;
    color: #000000;
    line-height: 1.4;
    margin-top: 1rem !important;
  }
  .single .lwptoc_items ul.lwptoc_itemWrap ul.lwptoc_itemWrap > li.lwptoc_item {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.post-head__sns-list {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-head__sns-list a {
  background: none;
  padding: 0;
}
.post-head__sns-list a img {
  vertical-align: bottom;
}

.purchase__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: right;
  align-items: center;
}
.purchase__actions li:before {
  content: none !important;
}
.purchase__actions .action a {
  text-decoration: none;
  color: #ffffff;
  background: #4b4b4b;
  border-radius: 0.5rem;
  padding: 0.3rem 0.8rem;
}
.purchase__actions li::before {
  content: none;
}

@media screen and (max-width: 768px) {
  .purchase__actions .action a {
    display: flex;
    font-size: 1rem;
    align-items: center;
  }
  .single .manual__btn img {
    max-width: 0.7rem;
  }
  .sns__item img {
    display: block;
    width: 75%;
    margin: 0 auto;
  }
  .sns__actions {
    gap: 0;
  }
  .single .single-under .related .post-card img {
    max-width: 15rem;
  }
}
@media print {
  body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    color: #000000;
  }
  .content__inner {
    max-width: 120rem;
    margin: 0 auto;
  }
  .main {
    padding-top: 14rem;
  }
  .content-layout .content__inner {
    display: flex;
    justify-content: center;
    gap: 5rem;
  }
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 70%;
    transition: 0.2s;
  }
  .search-form__button {
    cursor: pointer;
  }
  .single .content__inner {
    padding: 17.5rem 0 7.5rem 0;
  }
  .single .post-article p {
    margin: 0;
    line-height: 2;
  }
  .single .post-article ul {
    line-height: 2;
    list-style: none;
  }
  .single .post-article li {
    padding: 0.5rem 0;
  }
  .single .post-article li::before {
    content: "・";
    margin-left: -1.3em;
    text-indent: 1em;
  }
  .single .post-article__title {
    font-size: 4rem;
    margin: 0;
    line-height: 1.5;
  }
  .single .post-head__data {
    display: flex;
    list-style: none;
    font-size: 1.4rem;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0.5rem 0 0 0;
  }
  .single .post-head__data .fa-solid {
    color: #999999;
  }
  .single .post-head__data li:before {
    content: none;
  }
  .single .post-head__data p {
    margin: 0;
  }
  .single .post-head .purchase__actions {
    margin: 0 0 1rem 0;
    padding: 0;
  }
  .single .post-main h2 {
    background: linear-gradient(90deg, rgb(0, 167, 64) 1%, rgb(235, 248, 240) 1% 5%);
    font-size: 3.5rem;
    padding: 4rem 4rem;
    display: block;
    margin: 4rem 0;
    line-height: 1.5;
  }
  .single .post-main h3 {
    margin: 4rem 0;
    font-size: 3.5rem;
    padding: 2.5rem 0;
    margin: 4rem 0;
    border-top: 0.1rem solid transparent;
    border-bottom: 0.1rem solid transparent;
    border-image: repeating-linear-gradient(to right, #00a740 0, #00a740 0.3rem, transparent 0.3rem, transparent 0.7rem) 100 stretch;
    line-height: 1.5;
  }
  .single .toc {
    display: block;
    border: 0.2rem solid #999999;
    list-style: none;
    padding: 4rem;
    margin: 4rem 0;
  }
  .single .toc p {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    padding: 0 0 1rem 0;
  }
  .single .toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .single .toc ul a {
    display: block;
    color: #000000;
    padding: 0.8rem 0;
  }
  .single .toc li {
    padding: 0;
  }
  .single .toc li::before {
    content: none;
    margin-left: 0;
    text-indent: 0;
  }
  .single .wp-element-caption {
    display: block;
    font-size: 1.4rem;
    text-align: right;
    margin: 0.3rem 0 1.2rem 0 !important;
  }
  .single .wp-block-table td {
    border: none;
    border-left: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
  }
  .single .wp-block-table th {
    border: none;
    border-left: 0.1px solid #e6e6e6;
  }
  .single .lwptoc_i {
    padding: 40px;
    border: 2px solid #999999 !important;
  }
  .single .lwptoc-notInherit .lwptoc_i DIV A {
    font-size: 16px;
    color: #000000 !important;
    text-decoration: underline !important;
  }
  .single .lwptoc-notInherit .lwptoc_i DIV A:hover {
    border-bottom: none !important;
    text-decoration: underline !important;
  }
  .single .lwptoc_header {
    text-align: center;
  }
  .single .lwptoc_header .lwptoc_title {
    font-size: 25px;
    color: #000000;
    font-weight: 700;
    margin: 0;
    padding: 0 0 1rem 0;
  }
  .single .purchase_parts {
    margin: 4rem 0;
  }
  .single .purchase__title {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border-bottom: 0.2rem dotted;
    padding-bottom: 1rem;
  }
  .single .purchase__title .heading {
    color: #39b54a;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
  }
  .single .purchase__title .description {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
  }
  .single .purchase__button {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
  }
  .single .purchase__button .blue {
    background: #0071af;
  }
  .single .purchase__button .orenge {
    background: #eb7800;
  }
  .single .purchase__button .green {
    background: #56a022;
  }
  .single .purchase__button-item {
    font-family: "Noto Sans JP";
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    max-width: 420px;
    width: 100%;
    padding: 20px;
    font-size: 20px;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0px 4px 0 #808080;
    font-weight: 500;
  }
  .single .purchase__button-item:hover {
    box-shadow: none;
    transform: translateY(0.5rem);
    opacity: 100%;
  }
  .single .purchase__button-item::before {
    content: "";
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    border: 1px solid #fff;
    border-radius: 8px;
    pointer-events: none;
  }
  .single .purchase__button .blue .custom-button__icon {
    color: #0071af;
    background: #ffffff;
    display: inline-block;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    line-height: 0.7;
    margin-left: 1rem;
    margin-top: -2.3rem;
  }
  .single .purchase__button .orenge .custom-button__icon {
    color: #eb7800;
    background: #ffffff;
    display: inline-block;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    line-height: 0.7;
    margin-left: 1rem;
    margin-top: -2.3rem;
  }
  .single .purchase__button .green .custom-button__icon {
    color: #56a022;
    background: #ffffff;
    display: inline-block;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    line-height: 0.7;
    margin-left: 1rem;
    margin-top: -2.3rem;
  }
  .single .catalog_parts {
    margin: 4rem 0;
  }
  .single .catalog_parts__title {
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 0.2rem dotted;
  }
  .single .catalog__button-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 2.5rem;
    border: 0.3rem solid #999999;
    border-radius: 2rem;
    padding: 3rem;
    margin-top: 4.5rem;
    gap: 1rem;
    position: relative;
  }
  .single .catalog__button-item::after {
    content: url(../images/single/icon_download2.svg);
    display: block;
    position: absolute;
    right: 3rem;
  }
  .single .manual_table_parts {
    margin: 4rem 0;
  }
  .single .manual_table_parts th:not(:first-child) {
    width: 20rem;
  }
  .single .manual_table_parts td:not(:first-child) {
    text-align: center;
  }
  .single .manual_table_parts #download-btn {
    color: #ed1c24;
    background: none;
    border: 0.1rem solid #ed1c24;
    border-radius: 0.3rem;
    font-size: 2rem;
    font-family: "Zen Kaku Gothic New";
    cursor: pointer;
    display: block;
    margin: 0 0 0 auto;
  }
  .single .manual__title {
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 0.2rem dotted;
  }
  .single .manual__btn {
    background: #ed1c24;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.3rem;
    padding: 0.1rem 0.5rem;
  }
  .single .manual_list {
    margin: 0;
    padding: 3rem 0 0 0;
    display: flex;
    gap: 3rem;
  }
  .single .manual_list .headdimg {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 0;
  }
  .single .manual_list li::before {
    content: none;
  }
  .single .manual_list .manual_text {
    display: flex;
    justify-content: space-between;
  }
  .single .manual_list .manual_text .link {
    font-size: 1.2rem;
    color: #000000;
  }
  .single table {
    border-collapse: separate;
    border: 0.1rem solid #999999;
    width: 100%;
    border-spacing: 0;
    margin: 2rem 0;
  }
  .single thead {
    padding: 1rem 0;
  }
  .single th {
    padding: 1rem 0;
    font-weight: 500;
    font-size: 2rem;
    border-left: 0.1rem solid #e6e6e6;
    background: #666666;
    color: #ffffff;
    border-bottom: 0.1rem solid #e6e6e6;
  }
  .single th:first-child {
    border-left: none;
  }
  .single tr:last-child th {
    border-bottom: none;
  }
  .single td {
    border-left: 0.1rem solid #e6e6e6;
    border-bottom: 0.1rem solid #e6e6e6;
    padding: 1rem 1.5rem;
  }
  .single .single-under {
    margin: 10rem 0 0 0;
  }
  .single .single-under .icon-text-wrapper {
    justify-content: left;
  }
  .single .single-under .icon-text-wrapper .heading {
    font-size: 3rem;
  }
  .single .single-under .related .post-card__link {
    display: flex;
    gap: 1rem;
  }
  .single .single-under .related .post-card .genre {
    font-size: 2rem;
    color: #39b54a;
    font-weight: 700;
    white-space: nowrap;
  }
  .single .single-under .related .post-card img {
    height: 100%;
  }
  .single .single-under .related .post-list__item {
    display: flex;
  }
  .single .single-under .related .post-card__date {
    padding: 1rem 0;
    font-size: 1.2rem;
  }
  .single .single-under .related .post-card__date .fa-solid {
    color: #999999;
  }
  .single .single-under .related .post-card__title {
    line-height: 1.38;
    font-size: 1.8rem;
  }
  .single .recommended {
    padding: 11rem 0 0 0 !important;
  }
  .single .recommended .post-card__body {
    padding: 1rem 0 0 0;
  }
  .single .recommended .post-card__date {
    font-size: 1.2rem;
  }
  .single .recommended .post-card__date .fa-solid {
    color: #999999;
  }
  .single .recommended .post-card__title {
    font-size: 1.8rem;
    line-height: 1.38;
    padding: 1rem 0 0 0;
  }
  .single .content-search {
    padding: 6rem 0 0 0;
  }
  .single .post-head__item {
    display: flex;
    justify-content: right;
    gap: 1rem;
  }
  .single .post-head .sns {
    position: static;
  }
  .single .post-head .sns__actions {
    margin: 0;
  }
  .single .post-head .sns__item::before {
    content: none;
  }
  .single .post-head .category a {
    color: #000000;
    text-decoration: none;
  }
  header,
  footer,
  .sidebar,
  .related,
  .recommended,
  .search-block,
  .sns,
  .action {
    display: none !important;
  }
  .post-article__title {
    font-size: 20pt;
    margin-bottom: 1em;
    padding-bottom: 0.3em;
  }
  .post-article__content {
    color: #000;
    line-height: 1.6;
  }
  .content-search,
  .single-under {
    opacity: 0;
    position: absolute;
  }
  .single .content__inner {
    padding: 0;
  }
  .recommended {
    opacity: 0;
    position: absolute;
  }
}/*# sourceMappingURL=style.css.map */