@charset "UTF-8";
:root {
  --scrollbar: 0;
  --fixHeader: 0;
}

.productsDetail__cartBtn:not(.typeDisabled), .productsDetail__tag, .productsDetail .c-shareBtns__btn, .topSlider__link, .productsList__item, .ft__btn, .ft__link, .itemSearch__nav .menu_cate_parents > a, .hd__topLink {
  transition: opacity 0.3s;
}
.productsDetail__cartBtn:hover:not(.typeDisabled), .productsDetail__tag:hover, .productsDetail .c-shareBtns__btn:hover, .topSlider__link:hover, .productsList__item:hover, .ft__btn:hover, .ft__link:hover, .itemSearch__nav .menu_cate_parents > a:hover, .hd__topLink:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .productsDetail__cartBtn:hover:not(.typeDisabled), .productsDetail__tag:hover, .productsDetail .c-shareBtns__btn:hover, .topSlider__link:hover, .productsList__item:hover, .ft__btn:hover, .ft__link:hover, .itemSearch__nav .menu_cate_parents > a:hover, .hd__topLink:hover {
    opacity: 1;
  }
}

body.no-scroll {
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  color: #1b1b1b;
}

@media (max-width: 767px) {
  .isPC {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .isSP {
    display: none !important;
  }
}

@media (min-width: 768px) {
  a[href^=tel] {
    pointer-events: none;
  }
}

a {
  text-decoration: none;
}

.searchBox {
  width: min(100%, 460px);
  position: relative;
}
.searchBox__input {
  border-radius: 100px;
  background-color: #fff;
  border: 1px solid #DFDFDF;
  padding: 10px 40px 10px 20px;
  width: 100%;
  background-image: none !important;
}
.searchBox__btn {
  position: absolute;
  right: 0;
  border: none;
  background-color: transparent;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-image: url(../images/ico_search.svg);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center center;
  color: transparent;
}
@media (max-width: 767px) {
  .footBnrList .wp-block-image {
    width: 100% !important;
  }
}

.hd__fixed {
  width: 100%;
  left: 0;
  z-index: 999;
  background-color: #fff;
}
.hd__fixed.is-active {
  position: fixed;
}
.hd__top {
  background-color: #83C027;
  color: #fff;
  font-size: 14px;
}
.hd__topInner {
  padding: 7px max((100% - 1200px) / 2, 20px);
  display: flex;
  justify-content: space-between;
}
.hd__topTxt {
  font-weight: bold;
  color: #fff;
}
@media (max-width: 767px) {
  .hd__topTxt {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
}
.hd__topLinks {
  display: flex;
  gap: 30px;
}
.hd__topLink {
  display: flex;
  gap: 7px;
  align-items: center;
  color: #fff;
}
.hd__topLink::before {
  content: "";
  display: block;
  margin-top: 2px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: -45deg;
}
.hd__middle {
  padding: 10px max((100% - 1400px) / 2, 20px) 10px max((100% - 1200px) / 2, 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hd__logo {
  height: 44px;
}
@media (max-width: 999px) {
  .hd__logo {
    width: 200px;
    height: 33px;
  }
}
@media (max-width: 767px) {
  .hd__logo {
    width: 150px;
    height: 25px;
  }
}
.hd__rgtBox {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hd__txt {
  background-color: #F0871A;
  color: #fff;
  text-align: center;
  font-size: 12px;
  border-radius: 9px;
  padding: 5px 10px;
}
.hd__btnArea {
  display: flex;
  gap: 20px;
}
.hd__btnArea.typeSpMenu {
  margin-top: 15px;
  gap: 10px;
}
.hd__btnWrap {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .hd__btnWrap {
    gap: 20px;
  }
}
.hd__btnWrap::before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background-color: #A9A9A9;
  position: absolute;
  left: 53%;
}
.hd__loginBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F0871A;
  font-size: 12px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .hd__loginBtn {
    font-size: 8px;
  }
}
.hd__loginBtn.typeCart {
  position: relative;
}
.hd__loginBtn.typeSpMenu {
  border: 1px solid #F0871A;
  border-radius: 5px;
  width: 95px;
  padding: 5px;
}
.hd__loginBtn.typeSpMenu:first-child {
  background-color: #F0871A;
  color: #fff;
}
.hd__cartBadge {
  position: absolute;
  height: 20px;
  min-width: 20px;
  top: -5px;
  right: -5px;
  font-size: 12px;
  font-weight: bold;
  padding: 0px 6px;
  background-color: red;
  color: #fff;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .hd__cartBadge {
    width: 15px;
    height: 15px;
    font-size: 10px;
  }
}
.hd__btnIcon {
  width: 32px;
}
@media (max-width: 767px) {
  .hd__btnIcon {
    width: 20px;
  }
}
.hd__deco {
  translate: 0 10px;
}
@media (max-width: 767px) {
  .hd__deco {
    display: block;
    margin: -35px 0 0 auto;
    translate: 20px 0;
  }
}
.hd__bottom {
  padding: 10px max((100% - 1200px) / 2, 20px);
  gap: 40px;
  background-color: #ECF6DB;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .hd__bottom {
    flex-direction: column;
    border-top: 1px solid #DFDFDF;
    gap: 10px;
  }
}
.hd__nav .c-gnav {
  display: flex;
  gap: 30px;
}
@media (max-width: 999px) {
  .hd__nav .c-gnav {
    gap: 20px;
  }
}
.hd__nav .menu_cate_parents:hover {
  color: #83C027;
}
.hd__nav .c-gnav > .menu-item > a {
  padding: 0;
}
.hd__nav .c-gnav > .menu-item > a::after {
  display: none;
}
.hd__nav .c-gnav > .menu-item > a .ttl {
  font-size: 16px;
}
@media (max-width: 999px) {
  .hd__nav .c-gnav > .menu-item > a .ttl {
    font-size: 14px;
  }
}
.hd__nav .c-gnav > .menu-item {
  position: static;
}
.hd__nav .c-gnav > .menu-item > .sub-menu {
  color: #1b1b1b;
  cursor: default;
  position: absolute;
  background: linear-gradient(180deg, transparent 0%, transparent 10px, #ffffff 10px, #ffffff 100%);
  width: calc(100vw - var(--scrollbar));
  padding: 10px max((100% - 1200px) / 2, 20px) 5px;
  top: calc(100% - 10px);
  left: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  transform: none;
  box-shadow: none;
}
.hd__nav .c-gnav > .menu-item > .sub-menu::before {
  display: none;
}
.hd__nav .c-gnav .sub-menu li {
  width: calc((100% - 72px) / 4);
  border-bottom: 1px solid #DFDFDF;
  display: flex;
}
.hd__nav .c-gnav .sub-menu .ttl {
  font-size: 16px;
}
@media (max-width: 999px) {
  .hd__nav .c-gnav .sub-menu .ttl {
    font-size: 14px;
  }
}
.hd__nav .c-gnav .sub-menu li a {
  padding: 20px 10px 20px 0;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
@media (max-width: 999px) {
  .hd__nav .c-gnav .sub-menu li a {
    padding: 15px 8px 15px 0;
  }
}
.hd__nav .c-gnav .sub-menu li a:hover {
  color: #83C027;
  background-color: transparent;
}
.hd__nav .c-gnav .sub-menu li a::before {
  display: none;
}
.hd__nav .c-gnav .sub-menu li a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  rotate: -45deg;
  background-color: transparent;
  transform: none;
}
.hd__spMenuBtn {
  width: 32px;
  height: 32px;
  border: none;
  background-color: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hd__spMenuBtnLine {
  width: 24px;
  height: 3px;
  border-radius: 5px;
  background-color: #83C027;
  position: relative;
}
.hd__spMenuBtnLine::before, .hd__spMenuBtnLine::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 5px;
  background-color: #83C027;
  position: absolute;
}
.hd__spMenuBtnLine::before {
  bottom: -7px;
}
.hd__spMenuBtnLine::after {
  top: -7px;
}
.hd__spMenu {
  background-color: rgba(94, 94, 94, 0.5);
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  translate: -100% 0;
  transition: translate 0.5s ease;
}
.hd__spMenu.is-active {
  translate: 0 0;
}
.hd__spMenuInner {
  background-color: #fff;
  width: min(80vw, 300px);
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 20px 20px 0;
  position: relative;
}
.hd__spNav {
  display: flex;
}
.hd__spNavItem {
  flex-grow: 1;
  text-align: center;
  color: #83C027;
}
.hd__spNavItem:first-child {
  border-right: 1px solid #DFDFDF;
}
.hd__spNavItem.typeBtn::before, .hd__spNavItem.typeBtn::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 1px;
  border-radius: 5px;
  background-color: #83C027;
  right: 20px;
  top: 52%;
}
.hd__spNavItem.typeBtn::after {
  rotate: 90deg;
}
.hd__spNavItem.typeBtn.is-active::after {
  rotate: 0deg;
}
@media (max-width: 767px) {
  .hd__spNavItemTxt {
    font-size: 13px;
  }
}
.hd__spMenuTopClose {
  border: none;
  padding: 0;
  background-color: transparent;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
}
.hd__spMenuTopClose::before, .hd__spMenuTopClose::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background-color: #fff;
}
.hd__spMenuTopClose::before {
  rotate: 45deg;
  translate: 0 1px;
}
.hd__spMenuTopClose::after {
  rotate: -45deg;
  translate: 0 -1px;
}
.hd__message {
  margin-top: 16px;
  font-weight: bold;
  font-size: 14px;
}
.hd__loginMsg {
  color: #F0871A;
  font-size: 14px;
  text-align: right;
  font-weight: bold;
}
.hd__ttl {
  margin-top: 30px;
  color: #83C027;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  gap: 5px;
  align-items: center;
}
.hd__ttl::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: #83C027;
}
.hd__category {
  margin-top: 10px;
  width: calc(100% + 40px);
  translate: -20px 0;
}
.hd__category .c-gnav {
  display: block;
}
.hd__category .menu_cate_parents {
  width: calc((100% - 111px) / 5);
}
@media (max-width: 1199px) {
  .hd__category .menu_cate_parents {
    width: calc((100% - 37px) / 2);
  }
}
@media (max-width: 767px) {
  .hd__category .menu_cate_parents {
    width: 100%;
  }
}
.hd__category .menu_cate_parents > a {
  flex-direction: row;
  align-items: center;
  justify-content: start;
  text-align: left;
  padding: 10px 30px;
  gap: 10px;
  border-radius: 5px;
  background-color: #ECF6DB;
  border-bottom: 1px solid #DFDFDF;
  position: relative;
}
.hd__category .menu_cate_parents > a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-size: 100%;
  flex-shrink: 0;
}
.hd__category .menu_cate_parents > a .ttl {
  position: static;
}
.hd__category .menu_cate_parents > a .ttl::before, .hd__category .menu_cate_parents > a .ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 5px;
  background-color: #83C027;
  right: 30px;
  top: 50%;
  translate: 0 -50%;
}
.hd__category .menu_cate_parents > a .ttl::after {
  rotate: 90deg;
}
.hd__category .menu_cate_parents > a .ttl.is-active::after {
  rotate: 0deg;
}
.hd__category .menu_cate_parents.typeHealth {
  flex-grow: 1;
}
.hd__category .menu_cate_parents.typeHealth > a::before {
  background-image: url(../images/ico_menu01.svg);
}
.hd__category .menu_cate_parents.typeFoods > a::before {
  background-image: url(../images/ico_menu02.svg);
}
.hd__category .menu_cate_parents.typeHealing > a::before {
  background-image: url(../images/ico_menu03.svg);
}
.hd__category .menu_cate_parents.typeStudy > a::before {
  background-image: url(../images/ico_menu04.svg);
}
.hd__category .menu_cate_parents .sub-menu {
  display: none;
  opacity: 1;
  position: static;
  visibility: visible;
  transform: none;
  width: 100%;
  box-shadow: none;
  background-color: #fff;
}
.hd__category .menu_cate_parents .sub-menu > li {
  border-bottom: 1px solid #DFDFDF;
}
.hd__category .menu_cate_parents .sub-menu > li > a {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}
.hd__category .menu_cate_parents .sub-menu::before {
  display: none;
}
.hd__guideItem {
  display: block;
  margin-top: 1em;
  font-size: 14px;
  color: #1b1b1b;
}
.hd__snsArea {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.hd__snsIcon {
  filter: drop-shadow(2px 2px 2px rgba(27, 27, 27, 0.16));
}
.hd__spMenuBtmClose {
  border: none;
  border-radius: 5px 5px 0 0;
  background-color: #83C027;
  width: calc(100% + 40px);
  translate: -20px 0;
  color: #fff;
  padding: 10px;
  font-size: 14px;
}
.hd__spMenuBtmCloseBtn {
  border: none;
  padding: 0;
  background-color: transparent;
  position: absolute;
  right: 15px;
  width: 24px;
  height: 24px;
}
.hd__spMenuBtmCloseBtn::before, .hd__spMenuBtmCloseBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 5px;
  background-color: #fff;
}
.hd__spMenuBtmCloseBtn::before {
  rotate: 45deg;
  translate: 0 -50%;
}
.hd__spMenuBtmCloseBtn::after {
  rotate: -45deg;
  translate: 0 -50%;
}
.hd__cateMenu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: calc(100svh - 129px);
  overflow-y: scroll;
  z-index: 11;
  background-color: #ECF6DB;
}
.hd__cateMenu .c-gnav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  padding: 15px;
  color: #1b1b1b;
}
.hd__cateMenu .c-gnav > .menu-item {
  height: auto;
  position: static;
}
.hd__cateMenu .c-gnav > .menu-item > a {
  height: auto;
}
.hd__cateMenu .c-gnav > .menu-item > .sub-menu {
  transform: none;
  box-shadow: none;
  opacity: 1;
  width: auto;
  position: static;
  visibility: visible;
  background-color: transparent;
}
.hd__cateMenu .c-gnav > .menu-item > .sub-menu::before {
  display: none;
}
.hd__cateMenu .c-gnav > .menu-item > .sub-menu > li {
  border-bottom: 1px solid #DFDFDF;
  margin: 0;
}
.hd__cateMenu .c-gnav > .menu-item > .sub-menu > li > a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
}
.hd__cateMenu .c-gnav > .menu-item > .sub-menu > li > a:hover {
  color: #83C027;
  background-color: transparent;
}
.hd__cateMenu .c-gnav > .menu-item > .sub-menu > li > a::before {
  display: none;
}
.hd__cateMenu .c-gnav > .menu-item > .sub-menu > li > a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #1b1b1b;
  border-bottom: 2px solid #1b1b1b;
  rotate: -45deg;
  background-color: transparent;
  transform: none;
}
.hd__cateMenu .c-gnav .menu_cate_parents {
  width: 100%;
}
.hd__cateMenu .c-gnav .menu_cate_parents > a {
  flex-direction: row;
  align-items: center;
  justify-content: start;
  text-align: left;
  padding: 15px;
  gap: 10px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #DFDFDF;
}
@media (max-width: 767px) {
  .hd__cateMenu .c-gnav .menu_cate_parents > a {
    padding: 8px;
  }
}
.hd__cateMenu .c-gnav .menu_cate_parents > a::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-size: 100%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .hd__cateMenu .c-gnav .menu_cate_parents > a::before {
    width: 40px;
    height: 40px;
  }
}
.hd__cateMenu .c-gnav .menu_cate_parents > a::after {
  display: none;
}
.hd__cateMenu .c-gnav .menu_cate_parents.typeHealth {
  flex-grow: 1;
}
.hd__cateMenu .c-gnav .menu_cate_parents.typeHealth > a::before {
  background-image: url(../images/ico_menu01.svg);
}
.hd__cateMenu .c-gnav .menu_cate_parents.typeFoods > a::before {
  background-image: url(../images/ico_menu02.svg);
}
.hd__cateMenu .c-gnav .menu_cate_parents.typeHealing > a::before {
  background-image: url(../images/ico_menu03.svg);
}
.hd__cateMenu .c-gnav .menu_cate_parents.typeStudy > a::before {
  background-image: url(../images/ico_menu04.svg);
}
.hd .hd__fixed.is-active .hd__cateMenu {
  height: calc(100vh - 96px);
}
.hd__spSearch {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 30px;
}
@media (max-width: 767px) {
  .hd__spSearch.is-active {
    margin-top: 104px;
  }
}

.itemSearch {
  margin-top: 100px;
  background-color: #ECF6DB;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .itemSearch {
    margin-top: 50px;
    padding: 50px 20px;
  }
}
.itemSearch__ttl {
  margin: 0 auto !important;
  width: fit-content;
  font-weight: bold;
  font-size: 24px !important;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0 !important;
  border-left: none !important;
}
@media (max-width: 767px) {
  .itemSearch__ttl {
    font-size: 18px !important;
  }
}
.itemSearch__searchArea {
  margin: 30px auto 0;
  width: min(100%, 600px);
}
.itemSearch__keyword {
  margin: 15px auto 0;
  width: min(100%, 600px);
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .itemSearch__keyword {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
}
.itemSearch__keywordTtl {
  font-size: 14px;
  flex-shrink: 0;
}
.itemSearch__keywordList {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  list-style: none;
}
.itemSearch__keywordItem a {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #F0871A;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #F0871A;
  padding: 4px 8px 5px;
  min-width: 60px;
  line-height: 1;
}
.itemSearch__keywordItem a:hover {
  color: #fff;
  background-color: #F0871A;
}
.itemSearch__nav {
  margin-top: 45px;
  padding: 0 max((100% - 1200px) / 2, 20px);
}
@media (max-width: 767px) {
  .itemSearch__nav {
    margin-top: 30px;
    padding: 0;
  }
}
.itemSearch__nav .c-gnav {
  gap: 37px;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}
@media (max-width: 767px) {
  .itemSearch__nav .c-gnav {
    gap: 24px;
  }
}
.itemSearch__nav .menu_cate_parents {
  width: calc((100% - 111px) / 5);
  margin: 0;
}
@media (max-width: 1199px) {
  .itemSearch__nav .menu_cate_parents {
    width: calc((100% - 37px) / 2);
  }
}
@media (max-width: 767px) {
  .itemSearch__nav .menu_cate_parents {
    width: 100%;
  }
}
.itemSearch__nav .menu_cate_parents > a {
  flex-direction: row;
  align-items: center;
  justify-content: start;
  text-align: left;
  padding: 15px;
  gap: 10px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #DFDFDF;
}
@media (max-width: 767px) {
  .itemSearch__nav .menu_cate_parents > a {
    padding: 8px;
  }
}
.itemSearch__nav .menu_cate_parents > a::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-size: 100%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .itemSearch__nav .menu_cate_parents > a::before {
    width: 40px;
    height: 40px;
  }
}
.itemSearch__nav .menu_cate_parents > a::after {
  display: none;
}
.itemSearch__nav .menu_cate_parents.typeHealth {
  flex-grow: 1;
}
.itemSearch__nav .menu_cate_parents.typeHealth > a::before {
  background-image: url(../images/ico_menu01.svg);
}
.itemSearch__nav .menu_cate_parents.typeHealth .sub-menu {
  columns: 2;
}
@media (max-width: 767px) {
  .itemSearch__nav .menu_cate_parents.typeHealth .sub-menu {
    columns: 1;
  }
}
.itemSearch__nav .menu_cate_parents.typeFoods > a::before {
  background-image: url(../images/ico_menu02.svg);
}
.itemSearch__nav .menu_cate_parents.typeHealing > a::before {
  background-image: url(../images/ico_menu03.svg);
}
.itemSearch__nav .menu_cate_parents.typeStudy > a::before {
  background-image: url(../images/ico_menu04.svg);
}
.itemSearch__nav .menu_cate_parents .sub-menu {
  opacity: 1;
  position: static;
  visibility: visible;
  transform: none;
  width: 100%;
  padding: 0 10px;
  box-shadow: none;
  list-style: none;
  background-color: transparent;
}
@media (max-width: 767px) {
  .itemSearch__nav .menu_cate_parents .sub-menu {
    padding: 0;
  }
}
.itemSearch__nav .menu_cate_parents .sub-menu::before {
  display: none;
}
.itemSearch__nav .menu_cate_parents .sub-menu > li {
  border-bottom: 1px solid #DFDFDF;
  margin: 0;
}
.itemSearch__nav .menu_cate_parents .sub-menu > li > a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px 15px 0;
}
.itemSearch__nav .menu_cate_parents .sub-menu > li > a:hover {
  color: #83C027;
  background-color: transparent;
}
.itemSearch__nav .menu_cate_parents .sub-menu > li > a::before {
  display: none;
}
.itemSearch__nav .menu_cate_parents .sub-menu > li > a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #83C027;
  border-bottom: 2px solid #83C027;
  rotate: -45deg;
  background-color: transparent;
  transform: none;
}
.itemSearch__nav .c-gnav > .menu-item > a .ttl {
  font-size: 16px;
}
.itemSearch__nav .c-gnav .sub-menu .ttl {
  font-size: 16px;
  line-height: 1.5;
}

.ft__inner {
  padding: 40px max((100% - 1200px) / 2, 20px) 60px;
  background-color: #83C027;
  color: #fff;
}
@media (max-width: 767px) {
  .ft__inner {
    padding: 30px max((100% - 1200px) / 2, 20px) 20px;
  }
}
.ft__btnArea {
  display: flex;
  gap: 50px;
}
@media (max-width: 767px) {
  .ft__btnArea {
    flex-direction: column;
    gap: 10px;
  }
}
.ft__btn {
  padding: 5px;
  border-radius: 5px;
  background-color: #fff;
  color: #83C027 !important;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .ft__btn {
    font-size: 16px;
  }
}
.ft__btn.typeOrange {
  background-color: #F0871A;
  color: #fff !important;
}
.ft__detail {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 767px) {
  .ft__detail {
    margin-top: 20px;
    flex-direction: column;
  }
}
.ft__content {
  width: calc((100% - 100px) / 3);
}
@media (max-width: 999px) {
  .ft__content {
    width: calc((100% - 50px) / 2);
  }
}
@media (max-width: 767px) {
  .ft__content {
    width: 100%;
  }
}
@media (max-width: 999px) {
  .ft__content.type2col {
    flex-grow: 1;
    display: flex;
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .ft__content.type2col {
    flex-direction: column;
  }
}
.ft__hd {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #fff;
  margin-bottom: 15px;
}
.ft__ttl {
  font-weight: bold;
  margin-top: 15px;
  font-size: 16px;
}
.ft__ttlSm {
  font-weight: 400;
  font-size: 14px;
}
.ft__payImg {
  margin-top: 5px;
}
.ft__txt {
  margin-top: 5px;
}
.ft__link {
  width: fit-content;
  margin: 20px 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .ft__link {
    margin: 20px auto 0;
  }
}
@media (max-width: 999px) {
  .ft__wrap {
    width: calc((100% - 50px) / 2);
  }
}
@media (max-width: 767px) {
  .ft__wrap {
    width: 100%;
  }
}
.ft__wrap:not(:first-child) {
  margin-top: 35px;
}
@media (max-width: 999px) {
  .ft__wrap:not(:first-child) {
    margin-top: 0;
  }
}
.ft__bottom {
  padding: 30px max((100% - 1200px) / 2, 20px) 15px;
}
.ft__bottomInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
@media (max-width: 767px) {
  .ft__bottomInner {
    justify-content: center;
  }
}
.ft__bottomLogo {
  display: flex;
  align-items: center;
}
.ft__bottomNav {
  margin-left: auto;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .ft__bottomNav {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
    width: 100%;
  }
}
.ft__bottomNavItem {
  font-size: 14px;
}
.ft__bottomNavItem:hover {
  color: #83C027;
}
.ft__copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
}

.productsList {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
}
@media (max-width: 767px) {
  .productsList {
    gap: 0;
    padding-left: 0 !important;
  }
}
.productsList__item {
  width: calc((100% - 30px) / 4);
  padding: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .productsList__item {
    width: 50%;
    padding: 8px;
  }
}
.productsList__link {
  color: #1b1b1b;
}
.productsList__thumb {
  object-fit: contain;
  aspect-ratio: 1/1;
  width: 100%;
}
.productsList__ttl {
  margin-top: 10px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .productsList__ttl {
    font-size: 14px;
  }
}
.productsList__price {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .productsList__price {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .historyList .productsList {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}
@media (max-width: 767px) {
  .historyList .productsList__item {
    width: min(42%, 200px);
    flex-shrink: 0;
  }
}

.topSlider {
  margin-top: 20px;
}
.topSlider__link {
  margin: 0 15px;
}
.topSlider__link.typeNoUrl {
  pointer-events: none;
}
.topSlider__dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0 !important;
}
.topSlider__dots > li {
  margin: 0;
  line-height: 1;
  height: 8px;
}
.topSlider__dots > li > button {
  padding: 0;
  text-indent: 99999px;
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #DFDFDF;
  border: none;
}
.topSlider__dots .slick-active > button {
  background-color: #F0871A;
}

.productsDetail__wrap {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .productsDetail__wrap {
    margin-top: 20px;
    flex-direction: column;
  }
}
.productsDetail__slideWrap {
  width: min(48.3333333333vw, 580px);
}
@media (max-width: 767px) {
  .productsDetail__slideWrap {
    width: min(100%, 580px);
  }
}
.productsDetail__mainSlideImg {
  width: min(48.3333333333vw, 580px);
  aspect-ratio: 1/1;
  object-fit: contain;
}
.productsDetail__subSlide {
  margin-top: 20px;
}
.productsDetail__subSlide .slick-track {
  transform: unset !important;
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.productsDetail__subSlide .slick-track::before {
  display: none;
}
.productsDetail__subSlideImg {
  aspect-ratio: 1/1;
  object-fit: contain;
  cursor: pointer;
  border: 4px solid transparent;
  width: calc((100% - 45px) / 4) !important;
  box-sizing: border-box;
}
.productsDetail__subSlideImg.slick-current {
  border-color: #83C027;
}
.productsDetail__rightBox {
  width: min(48.75vw, 585px);
}
@media (max-width: 767px) {
  .productsDetail__rightBox {
    width: min(100%, 585px);
  }
}
.productsDetail__hd {
  font-size: 30px;
}
@media (max-width: 767px) {
  .productsDetail__hd {
    font-size: 20px;
  }
}
.productsDetail__price {
  margin-top: 15px;
  font-size: 24px;
}
.productsDetail__priceTax {
  font-size: 0.5em;
  padding-left: 0.4em;
}
.productsDetail__customTxt {
  margin-top: 8px;
  font-size: 14px;
}
.productsDetail__variationTxt {
  margin: 30px 0 5px;
  font-size: 13px;
}
@media (max-width: 767px) {
  .productsDetail__variationTxt {
    margin-top: 20px;
  }
}
.productsDetail__select {
  border: 1px solid #DFDFDF;
  border-radius: 3px;
  width: min(100%, 400px);
  position: relative;
}
.productsDetail__select::before {
  content: "";
  display: block;
  background-color: #83C027;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  width: 8px;
  height: 8px;
  top: 13px;
  right: 13px;
  z-index: 1;
  pointer-events: none;
}
.productsDetail__select::after {
  content: "";
  display: block;
  background-color: #F3F9E9;
  position: absolute;
  width: 35px;
  height: calc(100% - 2px);
  top: 1px;
  right: 1px;
  pointer-events: none;
}
.productsDetail__select select {
  cursor: pointer;
  appearance: none;
  border: none;
  background-color: transparent;
  width: 100%;
  padding-right: 40px;
}
.productsDetail__quantityTxt {
  margin: 30px 0 5px;
  font-size: 13px;
}
@media (max-width: 767px) {
  .productsDetail__quantityTxt {
    margin-top: 20px;
  }
}
.productsDetail__quantity {
  width: 140px;
  border: 1px solid #DFDFDF;
  border-radius: 3px;
  position: relative;
}
.productsDetail__quantityInput {
  appearance: none;
  background-color: transparent;
  width: 100%;
  border: none;
  text-align: center;
}
.productsDetail__quantityInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.productsDetail__quantityInput::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.productsDetail__quantityMinus {
  position: absolute;
  left: 0;
  border: none;
  background-color: transparent;
  width: 30px;
  height: calc(100% - 2px);
  top: 1px;
}
.productsDetail__quantityPlus {
  position: absolute;
  right: 0;
  border: none;
  background-color: transparent;
  width: 30px;
  height: calc(100% - 2px);
  top: 1px;
}
.productsDetail__cartBtn {
  display: block;
  margin-top: 20px;
  width: 100%;
  border-radius: 5px;
  background-color: #C02727;
  border: none;
  color: #fff;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
.productsDetail__cartBtn span {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.productsDetail__cartBtn.isDisabled {
  background-color: #818181;
  pointer-events: none;
}
.productsDetail__paymentTxt {
  margin-top: 30px;
  font-size: 12px;
}
.productsDetail__paymentCardImg {
  display: block;
  margin-top: 10px;
}
.productsDetail__shippingFeeTxt {
  margin-top: 30px;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #F0871A;
  color: #F0871A;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .productsDetail__shippingFeeTxt {
    font-size: 16px;
  }
}
.productsDetail__tagBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.productsDetail__tag {
  background-color: #fff;
  color: #83C027;
  font-size: 12px;
  padding: 2px 8px;
  border: 1px solid #83C027;
  border-radius: 20px;
}
.productsDetail__specialNoteTtl {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}
.productsDetail__specialNoteTxt {
  margin-top: 5px;
}
.productsDetail__content {
  margin-top: 130px;
}
@media (max-width: 767px) {
  .productsDetail__content {
    margin-top: 70px;
  }
}
.productsDetail__content .underDotHd {
  border-left: none !important;
  border-bottom: 3px dotted #83C027;
  max-width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 30px !important;
}
@media (max-width: 767px) {
  .productsDetail__content .underDotHd {
    font-size: 18px !important;
  }
}
.productsDetail__content .underDotHd.typeCenter {
  text-align: center;
}
.productsDetail__content .underDotHd.typeFull {
  max-width: 100%;
}
.productsDetail__content .detailTable th {
  background-color: #F3F9E9;
}
.productsDetail__listBox {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .productsDetail__listBox {
    margin-top: 60px;
  }
}
.productsDetail__listBox .slick-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.productsDetail__listBox .slick-dots button {
  background-color: #DFDFDF;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  text-indent: -9999px;
  padding: 0;
  border: none;
}
.productsDetail__listBox .slick-dots .slick-active button {
  background-color: #F0871A;
}
.productsDetail__listCarousel {
  margin-top: 50px;
}
.productsDetail .c-shareBtns {
  margin-top: 90px;
}
@media (max-width: 767px) {
  .productsDetail .c-shareBtns {
    margin-top: 40px;
  }
}
.productsDetail .c-shareBtns__message {
  font-weight: bold;
  font-size: 12px;
}
.productsDetail .c-shareBtns .__text::before, .productsDetail .c-shareBtns .__text::after {
  background-color: #83C027;
}
.productsDetail .c-shareBtns__item {
  flex: unset !important;
  width: 32px;
  height: 32px;
  background-color: transparent !important;
}
.productsDetail .c-shareBtns__item.-facebook {
  background-image: url(../images/ico_fb.svg);
}
.productsDetail .c-shareBtns__item.-twitter-x {
  background-image: url(../images/ico_x.svg);
}
.productsDetail .c-shareBtns__item.-line {
  background-image: url(../images/ico_line.svg);
}
.productsDetail .c-shareBtns__btn {
  width: 100%;
  height: 100%;
  background-color: transparent !important;
  padding: 0;
  box-shadow: none;
}
.productsDetail .c-shareBtns__icon {
  display: none;
}

/* Slick Slider Navigation（再適用） */
.productsDetail__listCarousel .slick-prev,
.productsDetail__listCarousel .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 24px;
  color: #888;
  font-weight: bold;
  transition: background 0.2s;
}

.productsDetail__listCarousel .slick-prev {
  left: -20px;
}

.productsDetail__listCarousel .slick-next {
  right: -20px;
}

.productsDetail__listCarousel .slick-prev:before,
.productsDetail__listCarousel .slick-next:before {
  content: none;
}

.productsDetail__listCarousel .slick-prev:hover,
.productsDetail__listCarousel .slick-next:hover {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .productsDetail__listCarousel .slick-prev {
    left: 10px;
  }
  .productsDetail__listCarousel .slick-next {
    right: 10px;
  }
}
.faqLinkList {
  justify-content: center;
  gap: 10px 0;
}
.faqLinkList .swell-block-linkList__item {
  padding: 10px 50px;
  border-bottom: 1px solid #DFDFDF;
}
@media (max-width: 767px) {
  .faqLinkList .swell-block-linkList__item {
    padding: 10px 20px;
  }
}
.faqLinkList .swell-block-linkList__link {
  font-weight: bold;
  flex-direction: column-reverse;
}
.faqLinkList .swell-block-linkList__icon {
  rotate: 90deg;
}

.faqBox .swell-block-faq__item {
  border: 1px solid #DFDFDF;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .faqBox .swell-block-faq__item {
    border-radius: 8px;
  }
}
.faqBox .swell-block-faq__item .faq_q {
  display: flex;
  gap: 20px;
  padding: 20px 30px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faqBox .swell-block-faq__item .faq_q {
    padding: 15px 20px;
  }
}
.faqBox .swell-block-faq__item .faq_q::before {
  box-shadow: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  line-height: 1;
  position: static;
  width: auto;
  text-align: left;
}
.faqBox .swell-block-faq__item .faq_q::after {
  content: "＋";
  color: #83C027;
  margin-left: auto;
  font-size: 20px;
  display: flex;
  align-items: center;
}
.faqBox .swell-block-faq__item .faq_q.is-active::after {
  content: "－";
}
.faqBox .swell-block-faq__item .faq_a {
  display: none;
  margin: 0 30px 20px !important;
  padding: 20px;
  background-color: #ECF6DB;
  border-radius: 10px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .faqBox .swell-block-faq__item .faq_a {
    margin: 0 10px 15px !important;
    border-radius: 8px;
  }
}
.faqBox .swell-block-faq__item .faq_a::before {
  box-shadow: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  line-height: 1;
  position: static;
  width: auto;
  text-align: left;
  float: left;
}
.faqBox .swell-block-faq__item .faq_a > * {
  margin-left: 30px;
}

#body_wrap.category .p-postList, #body_wrap.tag .p-postList, #body_wrap.blog .p-postList, #body_wrap.single-post .p-postList {
  margin: 0;
}
#body_wrap.category .p-postList__item, #body_wrap.tag .p-postList__item, #body_wrap.blog .p-postList__item, #body_wrap.single-post .p-postList__item {
  text-align: center;
  padding: 16px;
}
#body_wrap.category .p-postList__thumb, #body_wrap.tag .p-postList__thumb, #body_wrap.blog .p-postList__thumb, #body_wrap.single-post .p-postList__thumb {
  box-shadow: none;
}
#body_wrap.category .p-postList__thumb::before, #body_wrap.tag .p-postList__thumb::before, #body_wrap.blog .p-postList__thumb::before, #body_wrap.single-post .p-postList__thumb::before {
  display: none !important;
}
#body_wrap.category .c-postThumb__cat, #body_wrap.tag .c-postThumb__cat, #body_wrap.blog .c-postThumb__cat, #body_wrap.single-post .c-postThumb__cat {
  display: none;
}
#body_wrap.category .c-postThumb__figure::before, #body_wrap.tag .c-postThumb__figure::before, #body_wrap.blog .c-postThumb__figure::before, #body_wrap.single-post .c-postThumb__figure::before {
  display: none;
}
#body_wrap.category .c-postThumb__img, #body_wrap.tag .c-postThumb__img, #body_wrap.blog .c-postThumb__img, #body_wrap.single-post .c-postThumb__img {
  object-fit: contain;
  aspect-ratio: 1/1;
  width: 100%;
  position: relative;
}
#body_wrap.category .p-postList__title, #body_wrap.tag .p-postList__title, #body_wrap.blog .p-postList__title, #body_wrap.single-post .p-postList__title {
  margin: 10px 0;
  font-weight: bold;
}
@media (max-width: 767px) {
  #body_wrap.category .p-postList__title, #body_wrap.tag .p-postList__title, #body_wrap.blog .p-postList__title, #body_wrap.single-post .p-postList__title {
    font-size: 14px;
  }
}

#body_wrap.category .p-postList__item, #body_wrap.tag .p-postList__item, #body_wrap.blog .p-postList__item {
  width: calc((100% - 30px) / 4);
}
@media (max-width: 999px) {
  #body_wrap.category .p-postList__item, #body_wrap.tag .p-postList__item, #body_wrap.blog .p-postList__item {
    width: calc((100% - 20px) / 3);
  }
}
@media (max-width: 767px) {
  #body_wrap.category .p-postList__item, #body_wrap.tag .p-postList__item, #body_wrap.blog .p-postList__item {
    width: calc((100% - 10px) / 2);
  }
}

html {
  padding-top: 0 !important;
}

#wprmenu_bar {
  display: none;
}

.listLinkBtn {
  min-width: 220px;
}
.listLinkBtn a {
  width: 100%;
  background-color: #83C027;
  color: #fff;
  font-size: 16px;
}

.underDotHd {
  border-left: none !important;
  border-bottom: 3px dotted #83C027;
  max-width: 900px;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 30px !important;
}
@media (max-width: 767px) {
  .underDotHd {
    font-size: 18px !important;
  }
}
.underDotHd.typeCenter {
  text-align: center;
}
.underDotHd.typeFull {
  max-width: 100%;
}

.post_content h2:where(:not([class^=swell-block-]):not(.faq_q):not(.p-postList__title)) {
  font-size: 30px !important;
  padding: 5px 0 5px 16px !important;
}
@media (max-width: 767px) {
  .post_content h2:where(:not([class^=swell-block-]):not(.faq_q):not(.p-postList__title)) {
    font-size: 18px !important;
  }
}

.topTab {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .topTab {
    margin-top: 20px;
  }
}
.topTab .c-tabList {
  justify-content: flex-start;
}
.topTab .c-tabList__item {
  font-size: 16px !important;
}
.topTab .c-tabList__button {
  background-color: transparent !important;
  color: #757575 !important;
  border-bottom: 1px solid #DFDFDF;
  line-height: 1.5;
}
.topTab .c-tabList__button[aria-selected=true] {
  font-weight: bold;
  color: #1b1b1b !important;
  border-bottom-color: #1b1b1b !important;
  background-color: #ECF6DB !important;
}

.post_content div.productsList {
  margin-top: 24px !important;
}
@media (max-width: 767px) {
  .post_content div.productsList {
    margin-top: 0 !important;
  }
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots).topLine {
  width: min(100%, 600px);
  max-width: 100%;
  margin: 60px auto 30px;
}

.leftLineHd {
  margin: 0 !important;
}

@media (max-width: 767px) {
  .topBnr01 {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .topBnr01 .wp-block-image {
    width: 100% !important;
  }
}

.c-pageTitle {
  font-size: 36px;
  border-bottom: none !important;
  text-align: center;
}
@media (max-width: 767px) {
  .c-pageTitle {
    font-size: 20px;
  }
}
.c-pageTitle::after {
  content: "";
  display: block;
  width: 80px;
  height: 8px;
  background-color: #F0871A;
  visibility: visible;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c-pageTitle::after {
    width: 50px;
    height: 5px;
  }
}
.c-pageTitle__inner {
  margin: 0 auto !important;
  padding: 0 0 10px !important;
  border-bottom: none !important;
  float: none !important;
}

.c-pageTitle__subTitle {
  display: none;
}

.underItemSearch {
  margin-top: 100px;
}

.childCate {
  margin-top: 50px;
  color: #1b1b1b;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
@media (max-width: 767px) {
  .childCate {
    margin-top: 30px;
    gap: 10px 24px;
  }
}
.childCate__item {
  width: calc((100% - 72px) / 4);
  border-bottom: 1px solid #DFDFDF;
  display: flex;
}
@media (max-width: 767px) {
  .childCate__item {
    width: calc((100% - 24px) / 2);
  }
}
.childCate__link {
  color: #1b1b1b;
  padding: 20px 10px 20px 0;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
@media (max-width: 999px) {
  .childCate__link {
    padding: 15px 8px 15px 0;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .childCate__link {
    padding: 10px 8px 10px 0;
  }
}
.childCate__link:hover {
  color: #83C027;
  background-color: transparent;
}
.childCate__link::before {
  display: none;
}
.childCate__link::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #83C027;
  border-bottom: 2px solid #83C027;
  rotate: -45deg;
  background-color: transparent;
  transform: none;
}

#content {
  padding-top: 0;
  margin-top: 80px;
}
@media (max-width: 767px) {
  #content {
    margin-top: 30px;
  }
}

#breadcrumb.is-active {
  margin-top: 148px;
}
@media (max-width: 767px) {
  #breadcrumb.is-active {
    margin: 0;
  }
}

.top #content {
  padding-top: 0;
  margin-top: 15px;
}
.top #content.is-active {
  margin-top: 148px;
}
@media (max-width: 767px) {
  .top #content.is-active {
    margin: 0;
  }
}

.post_content h2 {
  z-index: 0;
}

.topNewsList {
  padding: 0 max((100% - 740px) / 2, 0px);
}
.topNewsList .p-postList.-type-simple .p-postList__link {
  border-bottom: none !important;
  pointer-events: none;
}
@media (max-width: 767px) {
  .topNewsList .p-postList.-type-simple .p-postList__link {
    border-bottom: 1px solid #83C027 !important;
  }
}
.topNewsList .p-postList.-type-simple .p-postList__meta {
  margin-bottom: 0 !important;
  min-width: 95px;
}
.topNewsList .p-postList.-type-simple .p-postList__item {
  border-bottom: none;
}
.topNewsList .p-postList__body {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .topNewsList .p-postList__body {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
}
.topNewsList .p-postList__body > p {
  display: none;
}
.topNewsList .c-postTimes {
  margin-right: 0 !important;
  padding: 0 !important;
}
.topNewsList .c-postTimes__posted::before {
  display: none;
}

.p-postList.-type-simple {
  border-top: none !important;
}
.p-postList.-type-simple .p-postList__item {
  border-bottom: 1px solid #83C027;
  padding: 10px;
}
.p-postList.-type-simple .p-postList__meta {
  color: #83C027 !important;
}
.p-postList.-type-simple .p-postList__link {
  pointer-events: none;
}

.anchorPoint {
  margin-top: calc(var(--fixHeader) * -1);
  padding-top: var(--fixHeader);
  margin-bottom: 0 !important;
  pointer-events: none;
}/*# sourceMappingURL=style.css.map */