@charset "UTF-8";
/* ==============================================================
# common
============================================================== */
body {
  font-weight: 400;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  transition: all 0.3s;
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .none-sp {
    display: none;
  }
}

.dib {
  display: inline-block;
}

.c-section-head {
  position: relative;
  padding-bottom: 5.6rem;
}
@media screen and (max-width: 768px) {
  .c-section-head {
    padding-bottom: 4rem;
  }
}

.c-section-head__en {
  font-weight: bold;
  color: #6EB92B;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1;
}

.c-section-head__title {
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .c-section-head__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-section-head__title {
    font-size: 2.8rem;
  }
}

.c-btn {
  display: block;
  width: 100%;
  max-width: 30rem;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-btn {
    padding: 1.5rem;
  }
}
.c-btn[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 0.6rem;
  -webkit-mask: url(../images/blank.svg);
          mask: url(../images/blank.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #fff;
  transition: background 0.3s;
  vertical-align: middle;
}
.c-btn.main {
  border: 1px solid #2A8108;
  background: #2A8108;
}
@media (hover: hover) {
  .c-btn.main:hover {
    background: #fff;
    color: #2A8108;
  }
  .c-btn.main:hover::after {
    background: #2A8108;
  }
}
.c-btn.sub {
  border: 1px solid #6EB92B;
  background: #6EB92B;
}
@media (hover: hover) {
  .c-btn.sub:hover {
    background: #fff;
    color: #6EB92B;
  }
  .c-btn.sub:hover::after {
    background: #6EB92B;
  }
}
.c-btn.accent {
  border: 1px solid #FFB400;
  background: #FFB400;
}
@media (hover: hover) {
  .c-btn.accent:hover {
    background: #fff;
    color: #FFB400;
  }
  .c-btn.accent:hover::after {
    background: #FFB400;
  }
}

/* ==============================================================
# header
============================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1024px) {
  .l-header {
    padding: 1.8rem 0;
  }
}

.l-header__inner {
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-header__inner {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding: 0 2.4rem;
  }
}

.l-header__logo {
  position: relative;
  z-index: 100;
  transform: translateY(-4px);
}
.l-header__logo a {
  display: block;
  max-width: 31rem;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  .l-header__logo a {
    max-width: 24rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__logo a img {
    height: 2.4rem;
  }
}

.l-header__menu {
  display: flex;
  align-items: center;
  gap: 6.4rem;
}
@media screen and (max-width: 1024px) {
  .l-header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99;
    padding: 7rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .l-header__menu {
    padding: 7rem 2rem;
  }
}
.l-header__menu.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 1024px) {
  .l-header__menu::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7rem;
    background: #fff;
    z-index: 1;
  }
}

.l-header__nav {
  position: relative;
}
.l-header__nav::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.2rem;
  transform: translateY(-50%);
  width: 1px;
  height: 4rem;
  background: #D9D9D9;
}
@media screen and (max-width: 1024px) {
  .l-header__nav {
    width: 100%;
  }
}

.l-header__items {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .l-header__items {
    display: block;
  }
}

.l-header__item.has-children {
  position: relative;
}
.l-header__item.has-children .l-header__link::after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  vertical-align: middle;
  margin-left: 0.8rem;
  -webkit-mask: url(../images/arrow.svg);
          mask: url(../images/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #464646;
  transition: background 0.3s, transform 0.3s;
}
@media screen and (max-width: 1024px) {
  .l-header__item.has-children .l-header__link::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
  }
}
.l-header__item.has-children .l-header__link.is-open::after {
  content: "";
  transform: translateY(-50%) rotate(180deg);
}
@media (hover: hover) {
  .l-header__item.has-children:hover .l-header__link::after {
    background: #2A8108;
  }
  .l-header__item.has-children:hover .l-header__sub-items {
    opacity: 1;
    visibility: visible;
  }
}

.l-header__link {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 3.8rem 0;
}
@media screen and (max-width: 1024px) {
  .l-header__link {
    padding: 1.5rem 0;
    width: 100%;
    border-bottom: 1px solid #D9D9D9;
  }
}
@media (hover: hover) {
  .l-header__link:hover {
    color: #2A8108;
  }
}

.l-header__sub-items {
  position: absolute;
  top: calc(100% + 1.6rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 0 2rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
@media screen and (max-width: 1024px) {
  .l-header__sub-items {
    position: relative;
    top: inherit;
    left: inherit;
    transform: inherit;
    box-shadow: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    padding: 0 0 0 2rem;
    border-bottom: 1px solid #D9D9D9;
    display: none;
  }
}
.l-header__sub-items::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  border-width: 0px 10px 16px 10px;
}
@media screen and (max-width: 1024px) {
  .l-header__sub-items::before {
    display: none;
  }
}

.l-header__sub-item:nth-child(n+2) {
  border-top: 1px dashed #D9D9D9;
}

.l-header__sub-link {
  display: block;
  font-size: 1.5rem;
  padding: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .l-header__sub-link {
    text-align: left;
    padding: 1.2rem 0;
  }
}
@media (hover: hover) {
  .l-header__sub-link:hover {
    color: #2A8108;
  }
}

.l-header__others {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-header__others {
    order: 3;
  }
}
.l-header__others a {
  display: block;
}
@media (hover: hover) {
  .l-header__others a:hover {
    opacity: 0.5;
  }
}
.l-header__others .instagram {
  width: 2.4rem;
  height: 2.4rem;
  -webkit-mask: url(../images/instagram.svg);
          mask: url(../images/instagram.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #464646;
  transition: background 0.3s;
}
.l-header__others .shop {
  width: 4rem;
  height: 4rem;
  background: url(../images/cart.svg) no-repeat center center/contain;
}

.l-header__tab-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 36rem;
  }
}
.l-header__tab-btn .btn {
  display: block;
  width: 100%;
  height: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 1rem 1.6rem;
  font-weight: bold;
}
.l-header__tab-btn .btn--mail {
  background: #FFB400;
  border: 1px solid #FFB400;
}
.l-header__tab-btn .btn--tel {
  border: 1px solid #6EB92B;
  background: #fff;
  color: #6EB92B;
  font-size: 1.6rem;
  font-size: 1rem;
}
.l-header__tab-btn .btn--tel span {
  display: block;
  text-align: center;
  font-size: 1.6rem;
}
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__hamburger {
    display: block;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
  }
}

.c-hamburger {
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .c-hamburger__menu {
    position: relative;
    width: 6rem;
    height: 6rem;
    background: #6EB92B;
  }
}
.c-hamburger__menu span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  transition: all 0.4s;
  height: 2px;
  width: 30px;
}
.c-hamburger__menu span:nth-of-type(1) {
  top: 35%;
}
.c-hamburger__menu span:nth-of-type(2) {
  top: 50%;
}
.c-hamburger__menu span:nth-of-type(3) {
  top: 65%;
}

.c-hamburger.is-active .c-hamburger__menu span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-hamburger.is-active .c-hamburger__menu span:nth-child(2) {
  display: none;
}
.c-hamburger.is-active .c-hamburger__menu span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.header-others {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-others a {
  display: block;
}
.header-others .instagram {
  width: 2.4rem;
  height: 2.4rem;
  -webkit-mask: url(../images/instagram.svg);
          mask: url(../images/instagram.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #000;
  transition: background 0.3s;
}
.header-others .shop {
  width: 4.8rem;
  height: 4.8rem;
  background: url(../images/shop.svg) no-repeat center center/contain;
}

/* ==============================================================
# FV
============================================================== */
.p-hero {
  height: 100svh;
  position: relative;
}

.p-hero__swiper {
  height: 100%;
}
.p-hero__swiper .swiper-slide-active .p-hero__img,
.p-hero__swiper .swiper-slide-duplicate-active .p-hero__img,
.p-hero__swiper .swiper-slide-prev .p-hero__img {
  -webkit-animation: zoomIn 8s linear 0s normal both;
          animation: zoomIn 8s linear 0s normal both;
}
.p-hero__swiper .swiper-pagination {
  bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-hero__swiper .swiper-pagination {
    bottom: 3rem;
  }
}
.p-hero__swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 1rem;
  height: 1rem;
}
.p-hero__swiper .swiper-pagination-bullet-active {
  background: #2A8108;
}

@-webkit-keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.p-hero__item {
  position: relative;
  height: 100%;
}

.p-hero__head {
  position: absolute;
  top: 50%;
  left: 4rem;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .p-hero__head {
    left: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__head {
    left: 2rem;
  }
}

.p-hero__title {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .p-hero__title {
    gap: 1.6rem;
  }
}
.p-hero__title span {
  display: inline-block;
  background: #fff;
  font-weight: bold;
  font-size: clamp(3.2rem, 2.22vw, 5.6rem);
  padding: 0.8rem 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-hero__title span {
    font-size: clamp(2.4rem, 5.64vw, 3.2rem);
  }
}

.p-hero__sub-title {
  margin-top: 4rem;
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-hero__sub-title {
    margin-top: 2.4rem;
    font-size: 1.8rem;
  }
}

.p-hero__img {
  height: 100%;
  position: relative;
}
.p-hero__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.p-hero__img img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-hero__img--3 img {
    -o-object-position: 20% center;
       object-position: 20% center;
  }
}

.p-hero__btn {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-hero__btn {
    margin-top: 4rem;
  }
}

.p-hero__product {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  width: clamp(30rem, 38.47vw, 56rem);
}
@media screen and (max-width: 1024px) {
  .p-hero__product {
    right: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__product {
    right: 2rem;
    display: none;
  }
}

.p-hero__pentan {
  position: absolute;
  right: 4rem;
  bottom: 8rem;
  width: 16.7rem;
}
@media screen and (max-width: 1024px) {
  .p-hero__pentan {
    right: 3rem;
    width: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__pentan {
    right: 2rem;
    width: 8rem;
  }
}
.p-hero__pentan img {
  width: 100%;
}

/* ==============================================================
# お知らせ
============================================================== */
.l-section {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .l-section {
    padding: 7rem 0;
  }
}

.p-post {
  background: #FCFEF2;
}

.l-inner {
  padding: 0 4rem;
  max-width: 128rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-inner {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 2.4rem;
  }
}

.p-post__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .p-post__wrapper {
    display: block;
  }
}

.p-post__head {
  flex: 0 0 20rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .p-post__head {
    flex-direction: row;
    align-items: end;
  }
}
@media screen and (max-width: 1024px) {
  .p-post__head .c-section-head {
    padding-bottom: 0;
  }
}

.p-post__btn a {
  display: block;
  font-size: 1.6rem;
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .p-post__btn a {
    padding-bottom: 1rem;
  }
}
@media (hover: hover) {
  .p-post__btn a:hover {
    text-decoration: none;
  }
}

.p-post__body {
  flex: 0 1 75%;
}

@media screen and (max-width: 1024px) {
  .p-post__items {
    margin-top: 1.6rem;
  }
}

.p-post__link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  padding: 3.2rem 3.2rem 3.2rem 1.6rem;
  border-bottom: 1px solid #D9D9D9;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-post__link {
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 2.4rem 3.2rem 2.4rem 0;
  }
}
.p-post__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  width: 1.6rem;
  height: 1.6rem;
  transform: translateY(-50%) rotate(-90deg);
  -webkit-mask: url(../images/arrow.svg);
          mask: url(../images/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #D9D9D9;
  transition: background 0.3s, right 0.3s;
}
@media screen and (max-width: 768px) {
  .p-post__link::after {
    right: 1rem;
  }
}
@media (hover: hover) {
  .p-post__link:hover::after {
    right: 0.8rem;
    background: #464646;
  }
  .p-post__link:hover .p-post__title {
    text-decoration: underline;
  }
}

.p-post__time {
  flex: 0 0 8rem;
}
.p-post__time time {
  font-size: 1.4rem;
}

.p-post__cat {
  flex: 0 0 12rem;
  display: inline-block;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #6EB92B;
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  color: #6EB92B;
}
@media screen and (max-width: 768px) {
  .p-post__cat {
    padding: 0.25rem 1rem;
  }
}

.p-post__title {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .p-post__title {
    width: 100%;
  }
}

.c-section__text {
  font-size: 1.6rem;
}

/* ==============================================================
# instagram
============================================================== */
.p-instagram__title {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-instagram__title {
    font-size: 2rem;
  }
}

.p-instagram__caution {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-instagram__caution {
    margin-top: 4rem;
    display: block;
    font-size: 1.2rem;
    text-align: center;
  }
}

.p-instagram__items {
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-instagram__items {
    margin: 2rem auto 0;
    overflow-x: auto;
  }
}

.p-instagram__item .instagram-media {
  min-width: inherit !important;
}
@media screen and (max-width: 768px) {
  .p-instagram__item .instagram-media {
    min-width: 33rem !important;
  }
}

.p-instagram__btn {
  margin-top: 4rem;
}
.p-instagram__btn .c-btn {
  margin: 0 auto;
}

.about-bg {
  height: 40rem;
}
@media screen and (max-width: 768px) {
  .about-bg {
    height: 30rem;
  }
}
.about-bg img {
  width: 100%;
  height: 100%;
}

/* ==============================================================
# about
============================================================== */
.p-about {
  margin-top: -20rem;
  background: #FCFEF2;
}
@media screen and (max-width: 768px) {
  .p-about {
    margin-top: -8rem;
  }
}

.p-about__wrapper {
  position: relative;
  z-index: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border-radius: 2rem;
  padding: 6rem 4rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .p-about__wrapper {
    display: block;
    padding: 4rem 2rem;
    border-radius: 1rem;
  }
}
.p-about__wrapper .c-section-head {
  flex: 0 0 30rem;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .p-about__wrapper .c-section-head {
    flex: 0 0 24rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about__wrapper .c-section-head {
    padding-bottom: 4rem;
    text-align: center;
  }
}

.p-about__body {
  flex: 0 1 60rem;
}

.p-about__text {
  font-size: 1.6rem;
  line-height: 1.8;
}

.p-about__btn {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-about__btn .c-btn {
    margin: 0 auto;
  }
}

/* ==============================================================
# product
============================================================== */
.p-products {
  background: #FCFEF2;
}
@media screen and (max-width: 768px) {
  .p-products .c-section-head {
    text-align: center;
  }
}

.p-products__block:nth-child(n+2) {
  padding-top: 6.4rem;
  margin-top: 6.4rem;
  border-top: 1px dashed #6EB92B;
}
@media screen and (max-width: 768px) {
  .p-products__block:nth-child(n+2) {
    padding-top: 4rem;
    margin-top: 4rem;
  }
}

.p-products__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .p-products__head {
    display: block;
  }
}

.p-products__title {
  flex: 0 0 max-content;
  font-size: 2.6rem;
  position: relative;
  padding-left: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-products__title {
    font-size: 2rem;
  }
}
.p-products__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background: #6EB92B;
}

.p-products__text {
  flex: 0 1 80rem;
}
@media screen and (max-width: 768px) {
  .p-products__text {
    margin-top: 1.5rem;
  }
}

.p-products__items {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 2rem;
}
@media screen and (max-width: 768px) {
  .p-products__items {
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .p-products__items {
    gap: 3rem 1rem;
  }
}

.p-products__item-link {
  display: block;
  position: relative;
}
@media (hover: hover) {
  .p-products__item-link:hover .p-products__item-title {
    text-decoration: underline;
  }
  .p-products__item-link:hover .p-products__item-img img {
    transform: scale(1.05);
  }
}

.p-products__item-img {
  border: 1px solid #6EB92B;
  background: #fff;
  overflow: hidden;
}
.p-products__item-img img {
  aspect-ratio: 1/1;
  transition: transform 0.3s;
}

.p-products__item-title {
  margin-top: 1rem;
  font-size: 1.6rem;
  padding-left: 1rem;
  padding-right: 2.4rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-products__item-title {
    margin-top: 0.5rem;
    padding-left: 0;
    font-size: 1.5rem;
  }
}
.p-products__item-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%) rotate(-90deg);
  width: 1.4rem;
  height: 1.4rem;
  -webkit-mask: url(../images/arrow.svg);
          mask: url(../images/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #464646;
  transition: background 0.3s;
}
@media screen and (max-width: 768px) {
  .p-products__item-title::after {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.p-products__item-cat {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.2rem;
  background: #999;
  color: #fff;
  padding: 0.2rem 1rem;
}

.p-products__btn {
  margin-top: 4rem;
}
.p-products__btn .c-btn {
  margin: 0 auto;
}

.p-products__excerpt {
  margin-top: 1rem;
  font-size: 1.4rem;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .p-products__excerpt {
    margin-top: 0.5rem;
    padding: 0;
    font-size: 1.3rem;
  }
}

.p-products__no {
  margin-top: 8rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-products__no {
    margin-top: 6rem;
  }
}

/* ==============================================================
# about
============================================================== */
.p-about-products__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-about-products__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
  }
}

.p-about-products__img img {
  aspect-ratio: 520/282;
  border-radius: 2rem;
}

.p-about-products__title {
  margin-top: 1.6rem;
  font-weight: bold;
  position: relative;
  padding-left: 2rem;
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .p-about-products__title {
    font-size: 2rem;
  }
}
.p-about-products__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: #6EB92B;
}

.p-about-products__text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-about-products__text {
    font-size: 1.5rem;
  }
}

.p-about-products__btn {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-about-products__btn {
    margin-top: 2rem;
  }
}
.p-about-products__btn .c-btn {
  margin: 0 auto;
}

.page-head--cat20,
.page-head--cat21 {
  position: relative;
  z-index: 1;
}
.page-head--cat20::before,
.page-head--cat21::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.page-head--cat20::before {
  background: url(../images/cat20_bg.png) no-repeat center center/cover;
}

.page-head--cat21::before {
  background: url(../images/cat21_bg.jpeg) no-repeat center center/cover;
}

/* ==============================================================
# products
============================================================== */
.p-cat-products {
  scroll-margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-cat-products {
    scroll-margin-top: 6rem;
  }
}
.p-cat-products .p-products__items {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .p-cat-products .p-products__items {
    margin-top: 5rem;
  }
}

.p-products-term:nth-child(n+2) {
  margin-top: 3rem;
}

.p-products-term__parent {
  font-weight: bold;
  font-size: 1.6rem;
  position: relative;
  padding-left: 1.6rem;
}
.p-products-term__parent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background: #6EB92B;
}

.p-products-term__description {
  margin-top: 0.5rem;
  padding-left: 1.6rem;
  font-size: 1.4rem;
}

.p-products-term__items {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-products-term__items {
    gap: 0.5rem;
  }
}

.p-products-term__item a {
  display: block;
  padding: 0.4rem 1.6rem;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  background: #fff;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-products-term__item a {
    font-size: 1.4rem;
  }
}
.p-products-term__item a.is-current {
  border: 1px solid #6EB92B;
  background: #6EB92B;
  color: #fff;
}
@media (hover: hover) {
  .p-products-term__item a:hover {
    text-decoration: underline;
  }
}

/* ==============================================================
# ページネーション
============================================================== */
.p-post__pagination {
  margin-top: 4rem;
}

ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
ul.page-numbers li {
  margin: 0 4px;
}

span.page-numbers,
a.page-numbers {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 10rem;
  font-weight: bold;
}

a.page-numbers {
  color: #6EB92B;
  background: #fff;
}
@media (hover: hover) {
  a.page-numbers:hover {
    background: #6EB92B;
    color: #fff;
  }
}

.page-numbers li {
  width: 4.8rem;
  height: 4.8rem;
  line-height: 4.8rem;
  border-radius: 6px;
}

.page-numbers.current {
  background: #6EB92B;
  color: #fff;
}

#cat-products .page-content {
  margin: 0 auto;
  width: 100%;
}

.p-single-products__img {
  max-width: 50rem;
  margin: 0 auto;
}

.products-post-content {
  margin-top: 6rem;
}

.ttlCom05 {
  font-weight: bold;
}

.modelcase-item__tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.modelcase-item__tags span,
.modelcase-item__tags a {
  display: inline-block;
  color: #6EB92B;
  font-size: 1.4rem;
}
@media (hover: hover) {
  .modelcase-item__tags a:hover {
    text-decoration: underline;
  }
}

#model_case .page-content .img {
  margin-bottom: 1rem;
}

.products-post-content {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .products-post-content {
    font-size: 1.5rem;
  }
}
.products-post-content h2 {
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 600;
  background: url(../images/index/about_ttl_bg.png) repeat-x 0 bottom;
  color: #6EB92B;
  margin-bottom: 3rem;
  padding-top: 4rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .products-post-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}
.products-post-content h3 {
  position: relative;
  color: #6EB92B;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
}
.products-post-content h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #6EB92B;
}
@media screen and (max-width: 768px) {
  .products-post-content h3 {
    font-size: 1.8rem;
  }
}
.products-post-content h4 {
  color: #6EB92B;
  padding-bottom: 1rem;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .products-post-content h4 {
    font-size: 1.6rem;
  }
}
.products-post-content > p {
  display: block;
  margin: 1rem 0 3rem;
  line-height: 1.8;
}
.products-post-content .wp-block-group:not(.is-layout-grid) {
  border: 1px solid #6EB92B;
  background: #fff;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
}
.products-post-content .wp-block-embed-youtube {
  margin-bottom: 3rem;
}
.products-post-content .wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  padding-top: 56.25%;
}
.products-post-content .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.products-post-content .wp-block-columns {
  margin-bottom: 3rem;
}
.products-post-content .wp-block-column {
  background: #fff;
  padding: 3rem 2rem;
}
.products-post-content .wp-block-column p:last-child {
  margin-bottom: 0;
}
.products-post-content .wp-block-group.is-layout-grid {
  margin-bottom: 3rem;
}
.products-post-content .wp-block-group.is-layout-grid p {
  background: #fff;
  padding: 2rem;
}
.products-post-content .wp-block-group.is-layout-grid strong {
  font-weight: bold;
  color: #6EB92B;
}
.products-post-content .wp-block-button {
  text-align: center;
  margin-bottom: 3rem;
}
.products-post-content .wp-block-button__link {
  background: #6EB92B;
  color: #fff;
  border: 2px solid #6EB92B;
  max-width: 36rem;
  margin: 0 auto;
}
@media (hover: hover) {
  .products-post-content .wp-block-button__link:hover {
    background: #fff;
    color: #6EB92B;
  }
}
.products-post-content .wp-block-list {
  padding-left: 2rem;
  margin-bottom: 3rem;
}
.products-post-content .wp-block-list li {
  list-style: disc;
}
.products-post-content .wp-block-list li:nth-child(n+2) {
  margin-top: 1rem;
}
.products-post-content a:not(.wp-block-button__link) {
  text-decoration: underline;
}
@media (hover: hover) {
  .products-post-content a:not(.wp-block-button__link):hover {
    text-decoration: none;
  }
}
.products-post-content .img-transparent {
  mix-blend-mode: multiply;
}
.products-post-content .wp-block-image {
  margin-bottom: 3rem;
}

.p-single-related {
  position: relative;
}
.p-single-related::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  border-top: 1px dashed #6EB92B;
}

.p-single-related__title {
  font-weight: bold;
  text-align: center;
  font-size: 3.2rem;
  color: #6EB92B;
}
@media screen and (max-width: 768px) {
  .p-single-related__title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .breadcrumb span:last-of-type {
    padding-right: 2.4rem;
  }
}

.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-75 {
  width: 85%;
}