@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alata&display=swap");
/********************************
* モバイルファースト
********************************/
/********************************
* padding 共通
********************************/
/********************************
* sec-title gsap関連
********************************/
.c-title__left::after, .c-title__center::after {
  transform: translate(-50%, -50%) scaleX(var(--underline-scale, 0));
}
.c-title__left::after {
  transform-origin: center;
}
@media (min-width: 1200px) {
  .c-title__left::after {
    transform: scaleX(var(--underline-scale, 0));
    transform-origin: left center;
  }
}
.c-title__center::after {
  transform-origin: center;
}

/********************************
* お知らせ一覧
********************************/
.p-news-list__item,
.news__list-item {
  transition: all 0.3s ease;
}
.p-news-list__item:hover,
.news__list-item:hover {
  background: rgba(229, 216, 192, 0.2);
}

/********************************
* swiper
********************************/
.c-case-study__content-text-wrap {
  transition: all 0.5s ease;
}
.c-case-study__content-text-wrap:hover {
  color: #338751;
}

/********************************
* header link
********************************/
.header__nav-item a {
  position: relative;
  padding-bottom: 5px;
  background-image: linear-gradient(#338751, #338751);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  transition: background-size 0.3s ease;
}
.header__nav-item a:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

.header.is-in-hero .header__nav-item a {
  background-image: linear-gradient(#fff, #fff);
}

.hamburger-nav__menu-container .menu-item {
  transition: all 0.5s ease;
}
.hamburger-nav__menu-container .menu-item:hover {
  background: rgba(247, 247, 247, 0.5);
}

/********************************
* お問い合わせ　ボタン関連
********************************/
.header__cta a,
.header__order a,
.footer__btn,
.page-contact__submit-btn,
.confirm .form-group-submit-container input.wpcf7-submit,
.confirm .form-group-submit-container__back button {
  transition: all 0.3s ease;
}
.header__cta a:hover,
.header__order a:hover,
.footer__btn:hover,
.page-contact__submit-btn:hover,
.confirm .form-group-submit-container input.wpcf7-submit:hover,
.confirm .form-group-submit-container__back button:hover {
  background: #5bb47b;
}

.confirm .form-group-submit-container__back button:hover {
  background: #bfbfbf;
}

.cta__btn a {
  transition: all 0.5s ease;
}
.cta__btn a:hover {
  background: #5bb47b;
}

/********************************
* footer logo
********************************/
.hamburger-nav__logo-wrap a,
.footer__logo-wrap a {
  transition: all 0.5s ease;
}
.hamburger-nav__logo-wrap a:hover,
.footer__logo-wrap a:hover {
  opacity: 0.6;
}

html {
  font-size: 62.5%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  scroll-behavior: smooth;
}
@media (min-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 600px) {
  html {
    font-size: 62.5%;
  }
}
html [id] {
  scroll-margin-top: 10rem;
}
@media (min-width: 768px) {
  html [id] {
    scroll-margin-top: 15rem;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  font-family: "Sawarabi Gothic", sans-serif;
}

textarea {
  resize: none;
}

span {
  display: inline-block;
}

img {
  width: 100%;
}

.c-page-title.p-news-detail-title,
.c-page-title.p-privacy-title {
  background: transparent;
}

.bg-beige {
  background: #f5f4ea;
}

.tab-br {
  display: none;
}
@media (min-width: 768px) {
  .tab-br {
    display: block;
  }
}

.sp-br {
  display: block;
}
@media (min-width: 1200px) {
  .sp-br {
    display: none;
  }
}

.f-figtree {
  font-family: "Figtree", sans-serif;
}

.f-alata {
  font-family: "Alata", sans-serif;
}

/********************************
* ctaボタン アイコン
********************************/
.header__btn-icon,
.footer__btn-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

/********************************
* view more
********************************/
.c-view-more__link {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  color: #338751;
  text-decoration: none;
  font-size: 1.6rem;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .c-view-more__link {
    font-size: 1.4rem;
    gap: 0.8rem;
  }
}
.c-view-more__link:hover {
  opacity: 0.7;
}
.c-view-more__link--white {
  color: #fff;
}
.c-view-more__icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}
.c-view-more__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1px solid #dfedd0;
  border-radius: 50%;
}
.c-view-more__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  border: 1px solid #338751;
  border-radius: 50%;
  background-color: transparent;
}
.c-view-more__icon--white::before {
  border-color: #fff;
}
.c-view-more__icon--white::after {
  border-color: #fff;
}

/********************************
* ページネーションボタン
********************************/
.c-pagination {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.c-pagination ul {
  display: flex;
  gap: 3.2rem;
}
.c-pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  color: #e7e7e7;
}
.c-pagination li .current {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  background-color: #338751;
  height: 100%;
  width: 100%;
}
.c-pagination li .prev,
.c-pagination li .next {
  position: relative;
}
.c-pagination li .prev::before,
.c-pagination li .next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 2px solid #338751;
}
.c-pagination li .prev::before {
  transform: translate(-50%, -50%) rotate(45deg);
  border-left: 2px solid #338751;
}
.c-pagination li .next::before {
  transform: translate(-50%, -50%) rotate(-45deg);
  border-right: 2px solid #338751;
}

/********************************
* 各詳細　前後の記事ナビゲーション
********************************/
.c-detail-pagination__prev-next {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  -moz-column-gap: min(7.42vw, 2rem);
       column-gap: min(7.42vw, 2rem);
}
@media (min-width: 1200px) {
  .c-detail-pagination__prev-next {
    max-width: 50rem;
    margin: 0 auto;
  }
}
.c-detail-pagination__prev-next-item {
  align-items: center;
  justify-content: center;
}
.c-detail-pagination__prev-next-item--placeholder {
  min-width: 3.6rem;
  min-height: 3.6rem;
  visibility: hidden;
  pointer-events: none;
}
.c-detail-pagination__prev-next-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-detail-pagination__prev-next-link:hover {
  opacity: 0.7;
}
.c-detail-pagination__prev-next-link--prev {
  grid-column: 1;
  justify-self: start;
  margin-right: 9rem;
}
@media (min-width: 1200px) {
  .c-detail-pagination__prev-next-link--prev {
    margin-right: 0;
  }
}
.c-detail-pagination__prev-next-link--prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-left: 2px solid #338751;
  border-bottom: 2px solid #338751;
}
.c-detail-pagination__prev-next-link--next {
  grid-column: 3;
  justify-self: end;
  margin-left: 9rem;
}
@media (min-width: 1200px) {
  .c-detail-pagination__prev-next-link--next {
    margin-left: 0;
  }
}
.c-detail-pagination__prev-next-link--next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid #338751;
  border-bottom: 2px solid #338751;
}
.c-detail-pagination__prev-next-link--list {
  grid-column: 2;
  justify-self: center;
  width: auto;
  height: auto;
  padding: 0 1rem;
  color: #338751;
  font-size: 1.4rem;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .c-detail-pagination__prev-next-link--list {
    font-size: 1.6rem;
  }
}

/********************************
* page-title
********************************/
.c-page-title {
  background: #dfedd0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1200px) {
  .c-page-title--news, .c-page-title--contact {
    overflow: visible;
  }
}
.c-page-title__container {
  max-width: 160rem;
  width: 100%;
  margin-right: auto;
  padding: 13rem 1rem 8rem;
  color: #338751;
}
@media (min-width: 768px) {
  .c-page-title__container {
    margin: 0 auto;
    padding: 16rem 2rem;
  }
}
@media (min-width: 1200px) {
  .c-page-title__container {
    padding: 19.3rem 5rem 12.8rem;
  }
}
.c-page-title__container::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -16.7%;
  width: 27.8rem;
  height: 18.9rem;
  background-image: url("../img/common/page-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  z-index: 0;
}
@media (min-width: 500px) {
  .c-page-title__container::after {
    top: 25%;
    right: 10%;
    width: 50.98vw;
    height: 40.27vw;
  }
}
@media (min-width: 768px) {
  .c-page-title__container::after {
    top: 9%;
    right: 6.5%;
  }
}
@media (min-width: 1200px) {
  .c-page-title__container::after {
    top: 5rem;
    right: 10.8rem;
    max-width: 66.2rem;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 500px) {
  .c-page-title__container--about::after, .c-page-title__container--produce::after {
    top: 13%;
  }
}
@media (min-width: 500px) {
  .c-page-title__container--artificial::after {
    top: 13%;
  }
}
@media (min-width: 768px) {
  .c-page-title__container--artificial::after {
    top: 9%;
    right: 9%;
  }
}
@media (min-width: 1200px) {
  .c-page-title__container--artificial::after {
    top: 5rem;
    right: 14.8rem;
  }
}
.c-page-title__container--catalog::after {
  top: 33%;
}
@media (min-width: 500px) {
  .c-page-title__container--catalog::after {
    top: 25%;
  }
}
.c-page-title__container--contact::after {
  top: 52%;
}
@media (min-width: 500px) {
  .c-page-title__container--contact::after {
    top: 25%;
  }
}
@media (min-width: 768px) {
  .c-page-title__container--about::after, .c-page-title__container--catalog::after, .c-page-title__container--produce::after {
    top: 9%;
    right: 9%;
  }
}
@media (min-width: 1200px) {
  .c-page-title__container--about::after, .c-page-title__container--catalog::after, .c-page-title__container--produce::after {
    top: 5rem;
  }
}
.c-page-title__text {
  display: flex;
  letter-spacing: 1px;
  font-size: 5.8rem;
  font-weight: 100;
  font-family: "Figtree", sans-serif;
  position: relative;
  z-index: 5;
}
@media (min-width: 1200px) {
  .c-page-title__text {
    margin-bottom: 1rem;
    font-size: 8.8rem;
  }
}
.c-page-title__text--privacy {
  font-size: 5rem;
}
@media (min-width: 1200px) {
  .c-page-title__text--privacy {
    font-size: 8.8rem;
  }
}
.c-page-title__text--artificial {
  font-size: 4.8rem;
}
@media (min-width: 1200px) {
  .c-page-title__text--artificial {
    font-size: 8.8rem;
  }
}
.c-page-title__text--catalog {
  font-size: 5.8rem;
}
@media (min-width: 1340px) {
  .c-page-title__text--catalog {
    font-size: 8.8rem;
  }
}
.c-page-title__text--padding .word:nth-child(2) {
  padding-left: 1rem;
}
@media (min-width: 1200px) {
  .c-page-title__text--padding .word:nth-child(2) {
    padding-left: 2rem;
  }
}
.c-page-title__sub-text {
  font-size: 1.5rem;
}
@media (min-width: 1200px) {
  .c-page-title__sub-text {
    font-size: 1.8rem;
  }
}
.c-page-title__img-wrap {
  position: relative;
  z-index: 1;
  height: 30rem;
}
@media (min-width: 500px) {
  .c-page-title__img-wrap {
    height: min(79.42vw, 61rem);
  }
}
@media (min-width: 1200px) {
  .c-page-title__img-wrap {
    height: 61rem;
  }
}
.c-page-title__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/********************************
* sec-title
********************************/
.c-title {
  position: relative;
  color: #338751;
  font-size: 3.6rem;
  font-family: "Figtree", sans-serif;
  font-weight: 100;
}
@media (min-width: 600px) {
  .c-title {
    font-size: clamp(4.6rem, 6.45vw, 9.3rem);
  }
}
@media (min-width: 1200px) {
  .c-title {
    font-size: 6.2rem;
  }
}
.c-title__left::after, .c-title__center::after {
  content: "";
  position: absolute;
  max-width: 3.3rem;
  width: 100%;
  height: 1px;
  background-color: #414542;
}
@media (min-width: 1200px) {
  .c-title__left::after, .c-title__center::after {
    max-width: 8rem;
  }
}
.c-title__left::after {
  bottom: -24%;
  left: 2rem;
}
@media (min-width: 1200px) {
  .c-title__left::after {
    bottom: -12%;
    left: 2%;
  }
}
.c-title__left--case-study::after {
  left: 5%;
}
.c-title__left--recruit::after {
  left: 2rem;
}
@media (min-width: 1200px) {
  .c-title__left--recruit::after {
    left: 0.5rem;
  }
}
.c-title__left--sp-center::after {
  bottom: -24%;
  left: 50%;
}
@media (min-width: 1200px) {
  .c-title__left--sp-center::after {
    bottom: -12%;
    left: 2%;
  }
}
.c-title__center {
  text-align: center;
}
.c-title__center::after {
  bottom: -24%;
  left: 50%;
}
@media (min-width: 768px) {
  .c-title__center::after {
    bottom: -10%;
  }
}
.c-title__white {
  color: #fff;
}
.c-title__white::after {
  background-color: #fff;
}

/********************************
* top
* about us 
* サービス共通箇所
********************************/
.c-service {
  padding-bottom: 10rem;
}
@media (min-width: 1200px) {
  .c-service {
    padding-bottom: 15rem;
  }
}
.c-service--top {
  padding-bottom: 10rem;
}
@media (min-width: 1200px) {
  .c-service--top {
    padding-bottom: 15.5rem;
  }
}
.c-service__title-wrap {
  padding-bottom: 3.6rem;
}
@media (min-width: 1200px) {
  .c-service__title-wrap {
    padding-bottom: 4.8rem;
  }
}
.c-service__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .c-service__container {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .c-service__container {
    padding: 0 5rem;
  }
}
@media (min-width: 1200px) {
  .c-service__container {
    max-width: 160em;
  }
}
.c-service__contents {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 6rem;
  width: 100%;
}
@media (min-width: 600px) {
  .c-service__contents {
    max-width: 100%;
  }
}
@media (min-width: 1000px) {
  .c-service__contents {
    max-width: 150rem;
    flex-direction: row;
    gap: 2rem;
  }
}
.c-service__content-top {
  position: relative;
  width: 100%;
  aspect-ratio: 360/184;
  max-width: 100%;
  margin: 0 auto 3rem;
  overflow: hidden;
}
@media (min-width: 1000px) {
  .c-service__content-top {
    max-width: 73.5rem;
    aspect-ratio: 735/375;
    margin-bottom: 2.4rem;
  }
}
.c-service__content-top img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
}
.c-service__content-top--left img, .c-service__content-top--right img {
  transform: translateY(-13%) scale(1.1);
}
.c-service__content-text {
  position: absolute;
  left: 3%;
  bottom: 4%;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}
@media (min-width: 1200px) {
  .c-service__content-text {
    font-size: 1.6rem;
  }
}
.c-service__content-bottom {
  padding-left: 0;
}
@media (min-width: 1200px) {
  .c-service__content-bottom {
    padding-left: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .c-service__content-text-wrap {
    padding-bottom: 4rem;
  }
}
.c-service__content-title {
  color: #338751;
  font-size: 2.4rem;
  padding-bottom: 1.6rem;
}
@media (min-width: 600px) {
  .c-service__content-title {
    font-size: clamp(2.6rem, 3.5vw, 5.1rem);
  }
}
@media (min-width: 1200px) {
  .c-service__content-title {
    font-size: 3.4rem;
    padding-bottom: 2rem;
  }
}
.c-service__content-description {
  font-size: 1.4rem;
  line-height: 1.85;
  margin-bottom: 4rem;
}
@media (min-width: 1200px) {
  .c-service__content-description {
    margin-bottom: 0;
  }
}

/********************************
* Artificial Flower
* produce
********************************/
.c-grid {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 10.8rem;
}
@media (min-width: 600px) {
  .c-grid {
    padding: 0 min(6.51vw, 5rem) 6.6rem;
  }
}
@media (min-width: 1200px) {
  .c-grid {
    max-width: 148rem;
    padding: 0 5rem 10rem;
  }
}
.c-grid__title {
  margin: 0 auto 5.6rem;
}
@media (min-width: 1200px) {
  .c-grid__title {
    margin: 0;
    margin-top: -1.2rem;
  }
}
.c-grid__title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .c-grid__title-wrap {
    padding-bottom: 9.2rem;
    flex-direction: row;
  }
}
.c-grid__text-wrap {
  max-width: 80rem;
  width: 100%;
  margin: 0 auto 4.8rem;
}
@media (min-width: 1200px) {
  .c-grid__text-wrap {
    margin: 0 0 4.8rem auto;
  }
}
@media (min-width: 1200px) {
  .c-grid__text-wrap {
    margin-bottom: 0;
  }
}
.c-grid__text-wrap p {
  font-size: 1.4rem;
  line-height: 1.95;
}
@media (min-width: 1200px) {
  .c-grid__text-wrap p {
    font-size: 1.6rem;
  }
}
.c-grid__img-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (min-width: 1200px) {
  .c-grid__img-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.c-grid__item {
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 174/130;
}
@media (min-width: 1200px) {
  .c-grid__item {
    aspect-ratio: 447/298;
  }
}
.c-grid__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-service-card-lists {
  background: #f5f4ea;
  padding: 9.8rem 0 10.9rem;
}
@media (min-width: 600px) {
  .c-service-card-lists {
    padding: min(12.3vw, 10.8rem) 0;
  }
}
@media (min-width: 1200px) {
  .c-service-card-lists {
    padding: 9.5rem 0 12.8rem;
  }
}
.c-service-card-lists__title-wrap {
  padding-bottom: 3.9rem;
}
@media (min-width: 600px) {
  .c-service-card-lists__title-wrap {
    padding-bottom: min(5.078vw, 3.9rem);
  }
}
@media (min-width: 1200px) {
  .c-service-card-lists__title-wrap {
    padding-bottom: 6.2rem;
  }
}
.c-service-card-lists__cards {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .c-service-card-lists__cards {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .c-service-card-lists__cards {
    max-width: 140rem;
    padding: 0 5rem;
  }
}
.c-service-card-lists__card-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.9rem;
}
@media (min-width: 1200px) {
  .c-service-card-lists__card-wrap {
    gap: 3.2rem;
  }
}
.c-service-card-lists__card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-service-card-lists__card-item {
    flex-direction: row;
    gap: 2rem;
    height: 35rem;
  }
}
.c-service-card-lists__card-item-left {
  aspect-ratio: 360/220;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .c-service-card-lists__card-item-left {
    flex: 0 0 50%;
    height: 35rem;
  }
}
@media (min-width: 1200px) {
  .c-service-card-lists__card-item-left {
    flex: 0 0 56rem;
  }
}
.c-service-card-lists__card-item-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-service-card-lists__card-item-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0 2rem 2rem;
}
@media (min-width: 1200px) {
  .c-service-card-lists__card-item-right {
    margin-top: 1rem;
    padding: 0 5rem;
    gap: 2.5rem;
  }
}
.c-service-card-lists__card-item-number {
  display: blocK;
  font-size: 1.4rem;
  font-weight: 400;
  padding-bottom: 1.6rem;
}
@media (min-width: 1200px) {
  .c-service-card-lists__card-item-number {
    font-size: 1.6rem;
    padding-bottom: 3rem;
  }
}
.c-service-card-lists__card-item-title {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #338751;
}
@media (min-width: 1200px) {
  .c-service-card-lists__card-item-title {
    font-size: 3.2rem;
  }
}
.c-service-card-lists__card-item-text-wrap p {
  font-size: 1.4rem;
  line-height: 1.95;
}
@media (min-width: 1200px) {
  .c-service-card-lists__card-item-text-wrap p {
    font-size: 1.6rem;
  }
}

/********************************
* top
* service
* 実績　カルーセル
********************************/
.c-case-study {
  padding: 10rem 0 10.7rem 2rem;
}
@media (min-width: 600px) {
  .c-case-study {
    padding: 10rem 0 10.7rem min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .c-case-study {
    padding: 0 0 10.7rem 0;
  }
}
.c-case-study--top {
  padding: 0 0 10.7rem 2rem;
}
@media (min-width: 600px) {
  .c-case-study--top {
    padding: 10rem 0 10.7rem min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .c-case-study--top {
    padding: 0 0 10.7rem 0;
  }
}
.c-case-study__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: auto;
  gap: 2.6rem;
}
@media (min-width: 1200px) {
  .c-case-study__container {
    flex-direction: row;
    max-width: 160rem;
    padding-left: 5rem;
  }
}
.c-case-study__left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 6.5rem;
  width: 100%;
  max-width: 40rem;
}
@media (min-width: 1200px) {
  .c-case-study__left {
    max-width: 33.5rem;
    margin-right: 7rem;
    padding-top: 4.4rem;
    gap: 6.8rem;
  }
}
.c-case-study .swiper.c-case-study__right {
  width: 100%;
}
.c-case-study .swiper-wrapper.c-case-study__content-wrap {
  height: 46rem;
}
@media (min-width: 1200px) {
  .c-case-study .swiper-wrapper.c-case-study__content-wrap {
    height: 56.5rem;
  }
}
.c-case-study .swiper-slide.c-case-study__content-item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 2.4rem;
  max-width: 30rem;
  width: 100%;
  height: 100%;
  padding-right: 2rem;
}
@media (min-width: 1200px) {
  .c-case-study .swiper-slide.c-case-study__content-item {
    max-width: 35rem;
    height: auto;
    gap: 2rem;
  }
}
.c-case-study .c-case-study__content-img-wrap {
  aspect-ratio: 280/390;
}
@media (min-width: 1200px) {
  .c-case-study .c-case-study__content-img-wrap {
    aspect-ratio: 330/460;
  }
}
.c-case-study .c-case-study__content-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.c-case-study__content-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-case-study__content-title {
  font-size: 2rem;
  font-weight: 400;
  padding-bottom: 0.4rem;
}
@media (min-width: 1200px) {
  .c-case-study__content-title {
    font-size: 2rem;
    padding-bottom: 1.4rem;
  }
}
.c-case-study__content-client {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media (min-width: 1200px) {
  .c-case-study__content-client {
    font-size: 1.4rem;
  }
}
.c-case-study__content-title, .c-case-study__content-client {
  overflow: hidden; /* はみ出した部分を隠す */
  white-space: nowrap; /* １行に固定 */
  text-overflow: ellipsis; /* 省略記号（…）を表示 */
  width: 100%;
}
.c-case-study__swiper-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.8rem;
  padding-right: 2rem;
  gap: 2rem;
}
@media (min-width: 1200px) {
  .c-case-study__swiper-pagination-wrap {
    margin-top: 3rem;
    padding-right: 5rem;
    gap: 3rem;
  }
}
.c-case-study .swiper-pagination {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  bottom: auto !important;
  width: 100% !important;
  flex: 1;
  height: 2px !important;
  background-color: #e7e7e7;
  border-radius: 0;
}
.c-case-study .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #338751 !important;
  border-radius: 0;
  height: 100%;
}
.c-case-study .swiper-button__wrap {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .c-case-study .swiper-button__wrap {
    gap: 1rem;
  }
}
.c-case-study .button__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid #338751;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 1200px) {
  .c-case-study .button__item {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.c-case-study .button__item:hover {
  background-color: #338751;
}
.c-case-study .button__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #338751;
  border-right: 2px solid #338751;
  transition: all 0.3s ease;
}
.c-case-study .button__item:hover::before {
  border-color: #fff;
}
.c-case-study .button__item.button-prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.c-case-study .button__item.button-next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-case-study .button__item:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.c-case-study .swiper-slide.c-case-study__content-item--no-items {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #fafafa !important;
}

/********************************
* catalog
********************************/
.c-catalog {
  padding-bottom: 2rem;
}
@media (min-width: 1200px) {
  .c-catalog {
    padding-bottom: 21rem;
  }
}
.c-catalog__container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.c-catalog__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35rem;
  background: url("../img/pink-flower.webp") no-repeat center center/cover;
  z-index: 0;
}
@media (min-width: 1200px) {
  .c-catalog__container {
    padding: 12rem 5rem 0;
  }
  .c-catalog__container::before {
    height: 61.5rem;
  }
}
.c-catalog__title {
  position: relative;
  z-index: 1;
  margin-bottom: 4.6rem;
}
@media (min-width: 1200px) {
  .c-catalog__title {
    margin-bottom: 5rem;
  }
}
.c-catalog__list-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 80rem;
  margin: 0 auto;
  background: #fff;
  padding: 2rem 2rem;
}
@media (min-width: 768px) {
  .c-catalog__list-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .c-catalog__list-wrap {
    padding: 4.7rem 10rem;
    max-width: 110rem;
  }
}
.c-catalog__item {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.c-catalog__item:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .c-catalog__item {
    border-right: 1px solid #e0e0e0;
  }
  .c-catalog__item:nth-child(2n) {
    border-right: none;
  }
  .c-catalog__item:nth-child(n+5) {
    border-bottom: none;
  }
}
.c-catalog__item:hover {
  background-color: #f5f4ea;
}
.c-catalog__item--img {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-catalog__item--img::after {
  display: none;
}
.c-catalog__item-img-wrap {
  height: 15rem;
}
.c-catalog__item-img-wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-catalog__item-link {
  position: relative;
  display: block;
  width: 100%;
  height: 15rem;
  text-decoration: none;
  color: inherit;
}
.c-catalog__item-content {
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (min-width: 1200px) {
  .c-catalog__item-content {
    padding: 4.8rem 2rem 4.8rem 2.8rem;
  }
}
.c-catalog__item-title-en {
  font-size: 2.4rem;
  font-weight: 400;
  color: #338751;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  .c-catalog__item-title-en {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
  }
}
.c-catalog__item-title-ja {
  font-size: 1.2rem;
  color: #a0a0a0;
}
.c-catalog__item-arrow-icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.5rem;
  width: 2rem;
  height: 0.1rem;
  background: currentColor;
}
@media (min-width: 1200px) {
  .c-catalog__item-arrow-icon {
    right: 2.9rem;
  }
}
.c-catalog__item-arrow-icon::before {
  content: "";
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  border: 0.1rem solid #1c1c1c;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  right: -0.05rem;
  box-sizing: border-box;
}

.header {
  position: relative;
  z-index: 1000;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  max-width: calc(100% - 2.2rem);
  width: 100%;
  margin: -0.8rem auto 0;
  background-color: #fff;
  z-index: 2000;
  border-radius: 5px;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 1200px) {
  .header__inner {
    max-width: calc(100% - 7.2rem);
    margin: -0.4rem auto 0;
    padding: 1.1rem 2rem;
    border-radius: 15px;
  }
}
.header__inner.is-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header__logo {
  position: relative;
  z-index: 2000;
  max-width: 10.6rem;
}
@media (min-width: 768px) {
  .header__logo {
    max-width: 19.4rem;
    padding-right: 2rem;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__logo .header__logo-white {
  display: none;
}
.header__logo .header__logo-default {
  display: block;
}
.header__nav {
  max-width: 74rem;
  width: 100%;
  margin-left: auto;
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .header__nav-list {
    gap: 3.4rem;
    padding-right: 2rem;
  }
}
.header__nav-item {
  font-size: 1.6rem;
  color: #338751;
}
.header__cta .header__btn::after {
  background-image: url("../img/common/mail.webp");
}
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}
.header__order {
  display: none;
}
@media (min-width: 1450px) {
  .header__order {
    display: block;
  }
  .header__order .header__btn::after {
    background-image: url("../img/common/ad_group.webp");
  }
}
.header__btn {
  background-color: #338751;
  font-size: 1.1rem;
  color: #fff;
  padding: 1em 1.45em;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
@media (min-width: 1450px) {
  .header__btn {
    padding: 0.9em 1.55em;
  }
}
.header__btn::after {
  content: "";
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .header__btn::after {
    width: min(3.12vw, 2.4rem);
    height: min(3.12vw, 2.4rem);
  }
}
@media (min-width: 1200px) {
  .header__btn::after {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media (min-width: 768px) {
  .header__btn {
    font-size: 1.6rem;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1450px) {
  .header__nav {
    display: block;
  }
}
.header__btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.header .header__hamburger {
  position: relative;
  width: 2.4rem;
  height: 20px;
  cursor: pointer;
  z-index: 2000;
}
@media (min-width: 1450px) {
  .header .header__hamburger {
    display: none;
  }
}
.header .header__hamburger-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #338751;
  transition: all 0.3s ease;
}
.header .header__hamburger-line:nth-child(1) {
  margin: 4px 0 0;
}
.header .header__hamburger-line:nth-child(2) {
  margin: 7px 0 0;
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(1), .header .header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  width: 86%;
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 0);
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  transform: rotate(-45deg) translate(5px, 0);
}

.hamburger-nav {
  position: relative;
  pointer-events: auto;
  display: block;
}
@media (min-width: 1450px) {
  .hamburger-nav {
    display: none;
  }
}
.hamburger-nav__menu {
  position: fixed;
  inset: 0;
  background: #dfedd0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  padding-top: 9.5rem;
  z-index: 500;
  height: 100%;
  overflow-y: auto;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .hamburger-nav__menu {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .hamburger-nav__menu {
    padding: 0 5rem;
  }
}
.hamburger-nav__menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  padding-top: 10rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hamburger-nav__menu.is-open {
    padding-top: 16rem;
  }
}
@media (min-width: 1200px) {
  .hamburger-nav__menu.is-open {
    padding-top: 18rem;
  }
}
.hamburger-nav__menu-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 2.2rem;
  font-weight: 500;
  color: #338751;
  text-align: left;
  padding-bottom: 9.8rem;
}
.hamburger-nav__menu-container .menu-item {
  position: relative;
  padding-left: 2.1em;
}
.hamburger-nav__menu-container .menu-item a {
  display: block;
  padding: 2rem 0;
}
.hamburger-nav__menu-container .menu-item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: url("../img/common/menu-side-icon.webp") no-repeat center/cover;
  flex-shrink: 0;
  left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 5px;
}
.hamburger-nav__cta {
  margin: 3.5rem 0 6.5rem;
}
.hamburger-nav__cta-btn {
  background-color: #fcfcfc;
  display: block;
  width: 62rem;
  border-radius: 50px;
  padding: 3.5rem;
  margin: 0 auto;
  color: #fff;
}
.hamburger-nav__nav-wrap {
  display: flex;
  gap: 2.4rem;
}
@media (min-width: 600px) {
  .hamburger-nav__nav-wrap {
    gap: 7.2rem;
  }
}
@media (min-width: 768px) {
  .hamburger-nav__nav-wrap {
    gap: 16rem;
  }
}
@media (min-width: 1200px) {
  .hamburger-nav__nav-wrap {
    gap: 8.2rem;
  }
}
.hamburger-nav__nav-lists {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (min-width: 1200px) {
  .hamburger-nav__nav-lists {
    gap: 2.5rem;
  }
}
.hamburger-nav__nav-lists li {
  position: relative;
  padding-left: 1em;
}
.hamburger-nav__nav-lists li::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/menu-side-icon.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  top: 40%;
  left: 0;
  width: 13px;
  height: 5px;
  z-index: -1;
}
@media (min-width: 1200px) {
  .hamburger-nav__nav-lists li::before {
    left: -5%;
  }
}
.hamburger-nav__btn-wrap {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
  margin-bottom: 4.1rem;
}
@media (min-width: 1200px) {
  .hamburger-nav__btn-wrap {
    max-width: 60rem;
    margin: 0 auto 4.1rem;
  }
}
.hamburger-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #338751;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  padding: 1em 0;
  width: 100%;
}
.hamburger-nav__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.hamburger-nav__btn-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hamburger-nav__bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  padding-top: 2.6rem;
  border-top: 1px solid #fff;
}
.hamburger-nav__copyright {
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
  padding-bottom: 2.2rem;
}
.hamburger-nav__copyright-link {
  font-size: 1.2rem;
  padding-bottom: 2.2rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.hamburger-nav__copyright-link:hover {
  opacity: 0.7;
}
.hamburger-nav__copyright-text {
  letter-spacing: 0.15px;
}
.hamburger-nav__logo-wrap {
  padding-bottom: 6.7rem;
}
.hamburger-nav__logo-wrap a {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 2.4rem;
}
.hamburger-nav__logo-text {
  font-size: 1rem;
}
.hamburger-nav__group-logo {
  display: block;
  max-width: 21rem;
  width: 100%;
}

/********************************
* top hero内のヘッダー
********************************/
.header.is-in-hero .header__inner {
  background-color: transparent;
  box-shadow: none;
}
.header.is-in-hero .header__inner.is-scrolled {
  box-shadow: none;
}
.header.is-in-hero .header__logo .header__logo-white {
  display: block;
}
.header.is-in-hero .header__logo .header__logo-default {
  display: none;
}
.header.is-in-hero .header__nav-item {
  color: #fff;
}
.header.is-in-hero .header__btn {
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.header.is-in-hero .header__hamburger-line {
  background-color: #fff;
}

.footer__container {
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  padding: 7rem 2rem;
}
@media (min-width: 1200px) {
  .footer__container {
    max-width: 160rem;
    padding: 7rem 5rem;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 5.6rem;
}
@media (min-width: 1200px) {
  .footer__top {
    flex-direction: row;
    padding-bottom: 1.6rem;
    margin-bottom: 9rem;
    box-shadow: inset 0 -1px 0 0 #e4e4e4;
  }
}
.footer__top-left a {
  display: block;
  max-width: 21rem;
  margin-bottom: 2.6rem;
}
@media (min-width: 1200px) {
  .footer__top-left a {
    max-width: 26rem;
    margin-bottom: 3rem;
  }
}
.footer__top-left a img {
  width: 100%;
}
.footer__address {
  color: #338751;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width: 1200px) {
  .footer__address {
    font-size: 1.4rem;
  }
}
.footer__top-right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  font-size: 1.6rem;
  color: #338751;
  width: 100%;
  padding-bottom: 4.1rem;
  margin-bottom: 2.6rem;
  gap: 5.2rem;
  border-bottom: 1px solid #e4e4e4;
}
@media (min-width: 600px) {
  .footer__top-right {
    font-size: 1.8rem;
    gap: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .footer__top-right {
    flex-direction: row;
    max-width: 68rem;
    gap: 2rem;
    border-bottom: none;
  }
}
.footer__nav-wrap {
  display: flex;
  gap: 2.4rem;
}
@media (min-width: 600px) {
  .footer__nav-wrap {
    gap: 7.2rem;
  }
}
@media (min-width: 768px) {
  .footer__nav-wrap {
    gap: 16rem;
  }
}
@media (min-width: 1200px) {
  .footer__nav-wrap {
    gap: 8.2rem;
  }
}
.footer__nav-lists {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (min-width: 1200px) {
  .footer__nav-lists {
    gap: 2.5rem;
  }
}
.footer__nav-lists li {
  position: relative;
  padding-left: 1em;
}
.footer__nav-lists li::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/menu-side-icon.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  top: 40%;
  left: 0;
  width: 13px;
  height: 5px;
  z-index: -1;
}
@media (min-width: 1200px) {
  .footer__nav-lists li::before {
    left: -5%;
  }
}
.footer__btn-wrap {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 1200px) {
  .footer__btn-wrap {
    max-width: 21.5rem;
    padding-right: 0.7rem;
    margin-top: -0.6rem;
    gap: 2rem;
    flex-direction: column;
  }
}
.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #338751;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  padding: 0.9em 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .footer__btn {
    font-size: 1.6rem;
    max-width: 21rem;
    gap: 2.4rem;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column-reverse;
  font-size: 1rem;
}
@media (min-width: 1200px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    font-size: 1.4rem;
  }
}
.footer__copyright {
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
  gap: 2.2rem;
}
@media (min-width: 1200px) {
  .footer__copyright {
    flex-direction: row;
    gap: 6.6rem;
  }
}
.footer__copyright-text {
  letter-spacing: 0.15px;
}
.footer__logo-wrap {
  padding-bottom: 9.2rem;
}
@media (min-width: 1200px) {
  .footer__logo-wrap {
    padding-right: 3rem;
    padding-bottom: 0;
  }
}
.footer__logo-wrap a {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 1200px) {
  .footer__logo-wrap a {
    gap: 2.1rem;
  }
}
.footer__logo-text {
  font-size: 1rem;
}
.footer__group-logo {
  display: block;
  max-width: 21rem;
  width: 100%;
}

.cta {
  /********************************
  * recruit
  ********************************/
}
.cta__container {
  width: 100%;
  margin: 0 auto;
  padding: 5.2rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta__container {
    padding: 10.6rem 0 12rem;
  }
}
@media (min-width: 1200px) {
  .cta__container {
    padding: 10.6rem 0 12rem;
  }
}
.cta__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(188, 188, 188, 0.25)), url("../img/common/cta-bg.webp") center/cover no-repeat;
  transform: scale(1.2);
  filter: blur(5px);
  z-index: -1;
}
.cta__title {
  font-size: 4rem;
  margin-bottom: 3.8rem;
}
@media (min-width: 1200px) {
  .cta__title {
    font-size: 5.6rem;
    margin-bottom: 2.5rem;
  }
}
.cta__content-text {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 3.8rem;
}
@media (min-width: 1200px) {
  .cta__content-text {
    font-size: 1.6rem;
    margin-bottom: 3.8rem;
  }
}
.cta__btn a {
  display: block;
  font-size: 1.6rem;
  text-align: center;
  max-width: 22rem;
  width: 100%;
  margin: 0 auto;
  padding: 1em 0;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 50px;
}
.cta__recruit {
  background: #dfedd0;
  padding: 4.5rem 2rem;
}
@media (min-width: 600px) {
  .cta__recruit {
    padding: min(7.94vw, 6.1rem) min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .cta__recruit {
    padding: 6.1rem 5rem;
  }
}
.cta__recruit-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 700px) {
  .cta__recruit-container {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .cta__recruit-container {
    max-width: 152rem;
    border-radius: 30px;
  }
}
.cta__recruit-left {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  padding: 6.2rem 2.5rem 5.5rem;
  width: 100%;
}
@media (min-width: 1000px) {
  .cta__recruit-left {
    padding: 0 min(4.166vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .cta__recruit-left {
    max-width: 80rem;
    padding: 0 10rem;
    margin-top: -3.5rem;
    gap: 5rem;
  }
}
.cta__recruit-title-text {
  margin-bottom: 3.3rem;
}
@media (min-width: 1200px) {
  .cta__recruit-title-text {
    margin-bottom: 5.6rem;
  }
}
.cta__recruit-description {
  font-size: 1.4rem;
  line-height: 2;
  color: #414542;
}
@media (min-width: 1200px) {
  .cta__recruit-description {
    font-size: 1.6rem;
  }
}
.cta__recruit-right {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  align-self: stretch;
}
@media (min-width: 1200px) {
  .cta__recruit-right {
    max-width: 70rem;
    border-radius: 0;
  }
}
.cta__recruit-right img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/********************************
* hero
********************************/
.hero {
  position: relative;
}
.hero #metaslider-id-157 .flex-viewport,
.hero #metaslider-id-157 .slides,
.hero #metaslider-id-157 .slides > li {
  height: 50rem; /* 500px */
}
.hero #metaslider-id-84 .flex-viewport,
.hero #metaslider-id-84 .slides,
.hero #metaslider-id-84 .slides > li {
  height: 80rem; /* 500px */
}
.hero #metaslider-id-84 img,
.hero #metaslider-id-157 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__slider--pc {
  display: none;
}
@media (min-width: 768px) {
  .hero__slider--pc {
    display: block;
  }
}
.hero__slider--sp {
  display: block;
}
@media (min-width: 768px) {
  .hero__slider--sp {
    display: none;
  }
}
.hero__container {
  max-width: 150rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .hero__container {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .hero__container {
    padding: 0 5rem;
  }
}
.hero__container--pc {
  display: none;
}
@media (min-width: 1200px) {
  .hero__container--pc {
    display: block;
  }
}
.hero__container--sp {
  display: block;
}
@media (min-width: 1200px) {
  .hero__container--sp {
    display: none;
  }
}
.hero__slider-title {
  color: #fff;
  font-size: 4.8rem;
  font-weight: 300;
  z-index: 1000;
}
@media (min-width: 768px) {
  .hero__slider-title {
    font-size: clamp(6rem, 8vw, 9.3rem);
  }
}
@media (min-width: 1500px) {
  .hero__slider-title {
    font-size: 12rem;
  }
}
.hero__top-text {
  font-weight: 100;
  line-height: 1.06;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .hero__top-text {
    letter-spacing: -1.1px;
  }
}
@media (min-width: 1200px) {
  .hero__top-text {
    letter-spacing: -1.1px;
  }
}
.hero__top-text-wrap, .hero__bottom-text-wrap {
  position: absolute;
  display: flex;
  flex-direction: column;
}
.hero__top-sub-text {
  font-size: 1.2rem;
  padding-bottom: 1.4rem;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .hero__top-sub-text {
    font-size: 1.8rem;
  }
}
.hero__top-text-wrap {
  bottom: 6%;
  left: 3.5%;
}
@media (min-width: 1200px) {
  .hero__top-text-wrap {
    bottom: 14.5rem;
    left: 5rem;
  }
}
.hero__bottom-text-wrap {
  bottom: 25.2%;
  right: 12.3%;
  text-align: right;
  letter-spacing: 3.1px;
}
@media (min-width: 1200px) {
  .hero__bottom-text-wrap {
    bottom: 1rem;
    right: 5rem;
    letter-spacing: 0;
  }
}
.hero__bottom-text {
  letter-spacing: -1.3px;
}
.hero__bottom-sub-text {
  font-size: 1.5rem;
  writing-mode: vertical-rl;
}
@media (min-width: 768px) {
  .hero__bottom-sub-text {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  }
}
@media (min-width: 1200px) {
  .hero__bottom-sub-text {
    padding: 0 0 1.1rem 0;
    writing-mode: inherit;
  }
}
@media (min-width: 1500px) {
  .hero__bottom-sub-text {
    font-size: 2.4rem;
  }
}

/********************************
* news
********************************/
.news {
  padding: 5.7rem 0 10rem;
}
@media (min-width: 1200px) {
  .news {
    padding: 11.4rem 0 12.6rem;
  }
}
.news__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 5rem;
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .news__container {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .news__container {
    padding: 0 5rem;
  }
}
@media (min-width: 1200px) {
  .news__container {
    flex-direction: row;
    gap: 2rem;
  }
}
.news__right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
@media (min-width: 1200px) {
  .news__right {
    flex-direction: column;
    align-items: flex-start;
    max-width: 30rem;
    margin-bottom: auto;
    padding-top: 1rem;
    gap: 12.4rem;
  }
}
.news__left {
  width: 100%;
}
@media (min-width: 1200px) {
  .news__left {
    max-width: 110rem;
  }
}
.news article {
  border-top: 1px solid #e4e4e4;
}
.news article:last-of-type {
  border-bottom: 1px solid #e4e4e4;
}
.news__list-wrap {
  font-size: 1.5rem;
}
@media (min-width: 1200px) {
  .news__list-wrap {
    font-size: 1.7rem;
  }
}
.news__list-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.8;
}
@media (min-width: 1200px) {
  .news__list-link {
    flex-direction: row;
    align-items: center;
    gap: 11.2rem;
  }
}
.news__list-item a {
  padding: 1.4rem 0;
}
@media (min-width: 768px) {
  .news__list-item a {
    padding: 3rem 0;
  }
}
@media (min-width: 1200px) {
  .news__list-item a {
    padding: 5.4rem 9.3rem;
  }
}
.news .rp3-date {
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  font-weight: bold;
  color: #338751;
}
.news .rp3-title {
  color: #414542;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2行まで表示 */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/********************************
* about
********************************/
.about {
  position: relative;
  margin-bottom: 10rem;
  overflow: hidden;
  color: #fff;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/green-flower.webp") center/cover no-repeat;
  filter: blur(8px);
  transform: scale(1.2);
  z-index: -1;
}
@media (min-width: 1200px) {
  .about {
    margin-bottom: 9.8rem;
  }
}
.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 0 4.8rem;
}
@media (min-width: 1200px) {
  .about__container {
    max-width: 135rem;
    padding: 14.5rem 2.8rem;
    flex-direction: row;
  }
}
.about__left {
  padding-bottom: 5rem;
}
@media (min-width: 1200px) {
  .about__left {
    margin-top: 0.4rem;
    padding-bottom: 0;
  }
}
.about__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (min-width: 1200px) {
  .about__title-wrap {
    gap: 1.2rem;
  }
}
.about__title-text {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.about__title-sub-text {
  line-height: 1.6;
  font-size: 2.4rem;
  padding-bottom: 3rem;
}
@media (min-width: 600px) {
  .about__title-sub-text {
    font-size: clamp(2.4rem, 3.33vw, 4.8rem);
  }
}
@media (min-width: 1200px) {
  .about__title-sub-text {
    font-size: 3.2rem;
    padding-bottom: 0;
  }
}
.about__center {
  width: 100%;
  aspect-ratio: 254/390;
  overflow: hidden;
  width: 25.4rem;
}
@media (min-width: 1200px) {
  .about__center {
    width: 33rem;
    margin-left: 3rem;
  }
}
.about__center img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__right {
  max-width: 35rem;
  width: 100%;
}
@media (min-width: 1200px) {
  .about__right {
    max-width: 35rem;
    width: 100%;
    font-size: 1.6rem;
    margin-top: 2.4rem;
    padding-left: 0.4rem;
    gap: 8.2rem;
  }
}
.about__right--pc {
  display: none;
}
@media (min-width: 1200px) {
  .about__right--pc {
    display: flex;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
}
.about__right--sp {
  display: block;
}
.about__right--sp .about__text-wrap {
  padding-bottom: 5rem;
}
@media (min-width: 1200px) {
  .about__right--sp {
    display: none;
  }
}
.about__description {
  line-height: 2;
  font-size: 1.6rem;
}
@media (min-width: 1200px) {
  .about__description {
    font-size: 1.6rem;
  }
}
.about__title-sub-text, .about__description {
  font-weight: 100;
}

/********************************
* service
* _page-items.scssに記述
********************************/
/********************************
* catalog
* _page-items.scssに記述
********************************/
/********************************
* 共通事項
********************************/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  box-shadow: 0 0 0px 1000px #f9f9f9 inset !important;
  background-color: #f9f9f9 !important; /* あなたの背景色に合わせる */
}

.page-contact__input,
.page-contact__select,
.page-contact__textarea {
  font-size: 1.6rem;
  line-height: 1.6;
  border-radius: 10px;
  width: 100%;
  padding: 2.7rem;
  border: none;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
@media (min-width: 768px) {
  .page-contact__input,
  .page-contact__select,
  .page-contact__textarea {
    line-height: 3;
  }
}
.page-contact__input::-moz-placeholder, .page-contact__select::-moz-placeholder, .page-contact__textarea::-moz-placeholder {
  color: #a0a0a0;
}
.page-contact__input::placeholder,
.page-contact__select::placeholder,
.page-contact__textarea::placeholder {
  color: #a0a0a0;
}
.page-contact__input:focus,
.page-contact__select:focus,
.page-contact__textarea:focus {
  outline: none;
}

.page-contact__input,
.page-contact__textarea {
  color: #414542;
}

.page-contact__textarea {
  min-height: 180px;
  line-height: 1.6;
  scrollbar-width: thin; /* 細く */
  scrollbar-color: #0f8f3b #f5f5f5; /* thumb / track */
}
.page-contact__textarea::-webkit-scrollbar-thumb {
  background: #0f8f3b; /* 緑のライン */
  border-radius: 999px; /* 角丸 */
}
@media (min-width: 768px) {
  .page-contact__textarea {
    min-height: 400px;
  }
}

.form-group-row.hp-row {
  display: none;
}

/* ハニーポットの次の行（= メール/電話の行）の上余白を潰す */
.form-group-row.hp-row + .form-group-row {
  margin-top: 0; /* 必要なら 1rem とか好きな値に */
}

/********************************
* 確認・完了　切り替え
********************************/
.custom-form-container {
  display: none;
}

.custom-form-container.active {
  display: block;
}

.confirm .wpcf7-spinner {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

/********************************
* form
********************************/
.p-contact__form {
  background-color: #dfedd0;
  padding-bottom: 5rem;
}
@media (min-width: 1200px) {
  .p-contact__form {
    padding-bottom: 10.8rem;
  }
}
.p-contact__title-container {
  padding: 13.3rem 1rem 8.2rem;
}
@media (min-width: 600px) {
  .p-contact__title-container {
    padding: 13.3rem min(6.51vw, 5rem) 6.2rem;
  }
}
@media (min-width: 1200px) {
  .p-contact__title-container {
    padding: 19.3rem 5rem 6.2rem;
  }
}

.page-contact__form-container {
  max-width: 132rem;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 600px) {
  .page-contact__form-container {
    padding: 0 min(6.66vw, 4rem);
  }
}
@media (min-width: 768px) {
  .page-contact__form-container {
    padding: 0 5rem;
  }
}

.page-contact__form {
  background-color: #fff;
  border-radius: 0;
  padding: 3rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 5;
}
@media (min-width: 600px) {
  .page-contact__form {
    padding: min(7.55vw, 5.8rem) min(6.51vw, 5rem);
    border-radius: 20px;
  }
}
@media (min-width: 1200px) {
  .page-contact__form {
    border-radius: 20px;
    padding: 5.8rem 5rem;
  }
}

.form-required-note {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 20px;
}

.page-contact__required {
  color: #338751;
  font-size: 12px;
  margin-left: 4px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 90rem;
  margin: 0 auto 1rem;
}
@media (min-width: 768px) {
  .form-group {
    gap: 1rem;
  }
}
.form-group--fields {
  max-width: 90rem;
  margin: 0 auto 3rem;
}
.form-group--submit {
  text-align: center;
}

.form-label {
  display: flex;
  gap: 0.4rem;
  font-size: 1.6rem;
  color: #414542;
  padding-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .form-label--tel {
    margin-left: 3.2rem;
  }
}

.form-group-row {
  margin-bottom: 0;
}
.form-group-row--half {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .form-group-row--half {
    position: relative;
    flex-direction: row;
  }
  .form-group-row--half::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 7rem;
    background-color: #a0a0a0;
    pointer-events: none;
    z-index: 5;
  }
}
.form-group-row-checkbox {
  display: flex;
  justify-content: center;
  max-width: 30rem;
  width: 100%;
  margin: 0 auto 2rem;
  text-align: left;
}
@media (min-width: 768px) {
  .form-group-row-checkbox {
    margin-bottom: 0;
  }
}
.form-group-row-checkbox .page-contact__checkbox-label {
  padding-bottom: 1rem;
}
.form-group-row-checkbox .wpcf7-not-valid-tip {
  padding-left: 1.8rem;
}
.form-group-row--button {
  display: flex;
  justify-content: center;
}

.form-group-col {
  width: 100%;
}
.form-group-col--half {
  width: 100%;
}
@media (min-width: 768px) {
  .form-group-col--half {
    width: 50%;
    position: relative;
  }
}
.form-group-col--mail {
  padding-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .form-group-col--mail {
    padding-bottom: 0;
  }
}

.form-group-col-input {
  position: relative;
}
.form-group-col-input--select {
  position: relative;
}
.form-group-col-input--select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #666;
  pointer-events: none;
}
.form-group-col-input .wpcf7-form-control-wrap {
  width: 100%;
  border-radius: 10px;
  background: #f9f9f9;
}
@media (min-width: 768px) and (min-width: 768px) {
  .form-group-col-input .wpcf7-form-control-wrap[data-name=your-email] {
    border-radius: 10px 0 0 10px !important;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .form-group-col-input .wpcf7-form-control-wrap[data-name=your-tel] {
    border-radius: 0 10px 10px 0 !important;
  }
}

@media (min-width: 768px) {
  .form-label--tel {
    margin-left: 3.2rem;
  }
}

@media (min-width: 768px) {
  .wpcf7-form-control-wrap[data-name=your-tel] input {
    margin-left: 1.3rem;
  }
}

.page-contact__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-color: transparent;
  color: #b3b3b3;
}
.page-contact__select.is-selected {
  color: #414542;
}
.page-contact__select option {
  color: #414542;
}
.page-contact__select option:first-child {
  color: #b3b3b3;
}

.page-contact__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #a0a0a0;
  cursor: pointer;
}

.page-contact__checkbox {
  width: 2rem;
  height: 2rem;
  margin-right: 8px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.page-contact__checkbox:checked {
  background-color: #fff;
  border-color: #d0d0d0;
}
.page-contact__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 12px;
  border: solid #666;
  border-width: 0 2px 2px 0;
}
.page-contact__checkbox:hover {
  border-color: #999;
}

.page-contact__checkbox-link {
  color: #1571da;
  text-decoration: underline;
}
.page-contact__checkbox-link:hover {
  text-decoration: none;
}

.page-contact__submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  background-color: #338751;
  color: #fff;
  padding: 1.18em 2.25em 1.18em 2.81em;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
  max-width: 28rem;
  width: 100%;
}
.page-contact__submit-btn-label {
  letter-spacing: 0.05em;
}
.page-contact__submit-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-contact__submit-btn-icon img {
  width: 2.3rem;
  height: 2.3rem;
}

/********************************
 * 確認画面
 ********************************/
.confirm {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #414542;
}
.confirm-table {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
}
.confirm dt {
  display: flex;
  align-items: center;
}
.confirm .form-group--btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .confirm .form-group--btn {
    flex-direction: row;
  }
}
.confirm .form-group-submit-container,
.confirm .form-group-submit-container__back {
  max-width: 20rem;
  width: 100%;
  padding: 0;
  text-align: center;
}
.confirm .form-group-submit-container input.wpcf7-submit,
.confirm .form-group-submit-container__back button {
  display: block;
  width: 100%;
  padding: 1em 0;
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}
.confirm .form-group-submit-container input.wpcf7-submit {
  background: #338751;
}
.confirm .form-group-submit-container__back button {
  background: #989898;
}

/********************************
* 完了画面
********************************/
.complete {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #338751;
  padding: 5.9rem 2rem;
}
@media (min-width: 768px) {
  .complete {
    padding: 9.1rem 5rem;
  }
}
.complete .page-contact__complete-title {
  padding-bottom: 5.9rem;
}
@media (min-width: 768px) {
  .complete .page-contact__complete-title {
    font-size: 3.2rem;
    padding-bottom: 4.5rem;
  }
}
.complete .page-contact__complete-text {
  font-size: 1.6rem;
  color: #414542;
  line-height: 2;
  letter-spacing: 2px;
  padding-bottom: 5.9rem;
}
@media (min-width: 768px) {
  .complete .page-contact__complete-text {
    padding-bottom: 8.5rem;
  }
}
@media (min-width: 768px) {
  .complete .page-contact__complete-text {
    font-size: 2.4rem;
  }
}
.complete .page-contact__button-wrap a {
  font-size: 1.6rem;
  color: #338751;
  text-align: center;
}
.complete .page-contact__button-wrap {
  text-align: center;
}

.p-about-us__bg-color {
  background-color: #f5f4ea;
  padding: 38.1rem 0 10.8rem;
}
@media (min-width: 1250px) {
  .p-about-us__bg-color {
    padding: 9.3rem 0 16rem;
  }
}

/********************************
* About Us
********************************/
.p-about-us {
  text-align: center;
  color: #338751;
  position: relative;
  overflow: visible;
  margin-bottom: 5rem;
}
@media (min-width: 1200px) {
  .p-about-us {
    margin-bottom: 15.5rem;
  }
}
.p-about-us::before {
  content: "";
  background: url("../img/p-about-bg.png") center/cover no-repeat;
  position: absolute;
  top: 68%;
  left: 56%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  z-index: 0;
}
.p-about-us__container {
  position: relative;
  z-index: 5;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
  padding-bottom: 35rem;
}
@media (min-width: 600px) {
  .p-about-us__container {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .p-about-us__container {
    padding: 0 5rem;
  }
}
@media (min-width: 600px) {
  .p-about-us__container {
    padding-bottom: 35rem;
  }
}
@media (min-width: 768px) {
  .p-about-us__container {
    max-width: 90rem;
  }
}
@media (min-width: 1250px) {
  .p-about-us__container {
    max-width: 160rem;
    padding-bottom: 0;
  }
}
.p-about-us__title-wrap {
  padding-bottom: 3.5rem;
}
@media (min-width: 1200px) {
  .p-about-us__title-wrap {
    padding-bottom: 8rem;
  }
}
.p-about-us__content-title {
  font-size: 1.6rem;
  font-weight: 700;
  padding-bottom: 1rem;
}
@media (min-width: 1200px) {
  .p-about-us__content-title {
    font-size: 1.8rem;
    padding-bottom: 0.8rem;
  }
}
.p-about-us__title-text {
  font-size: 2.7rem;
  line-height: 1.55;
}
@media (min-width: 600px) {
  .p-about-us__title-text {
    font-size: clamp(3.1rem, 4.37vw, 4rem);
  }
}
@media (min-width: 1200px) {
  .p-about-us__title-text {
    font-size: 4.2rem;
  }
}
.p-about-us__text-wrap {
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  line-height: 1.8;
  text-align: left;
}
.p-about-us__text-wrap p {
  line-height: 2;
}
@media (min-width: 600px) {
  .p-about-us__text-wrap {
    font-size: clamp(1.7rem, 2.43vw, 1.8rem);
    text-align: center;
  }
}
@media (min-width: 1500px) {
  .p-about-us__text-wrap {
    font-size: 2.2rem;
    gap: 4.4rem;
  }
}
.p-about-us__img-wrap {
  display: flex;
}
.p-about-us__img-item--tl, .p-about-us__img-item--bl, .p-about-us__img-item--tr, .p-about-us__img-item--br {
  position: absolute;
}
.p-about-us__img-item--tl {
  aspect-ratio: 165/230;
  width: 16.5rem;
  top: -27%;
  left: 2.3%;
}
@media (min-width: 500px) {
  .p-about-us__img-item--tl {
    width: min(24.6vw, 18.9rem);
    left: 10.3%;
  }
}
@media (min-width: 1250px) {
  .p-about-us__img-item--tl {
    aspect-ratio: 252/349;
    width: 25.2rem;
    top: 16.5%;
    left: 4%;
  }
}
.p-about-us__img-item--tr {
  aspect-ratio: 195/110;
  width: 19.5rem;
  top: -23%;
  right: -2.3%;
}
@media (min-width: 500px) {
  .p-about-us__img-item--tr {
    width: min(26.3vw, 20.2rem);
    right: 11.7%;
  }
}
@media (min-width: 1250px) {
  .p-about-us__img-item--tr {
    aspect-ratio: 270/161;
    width: 27rem;
    top: 24.5%;
    right: 6.5%;
  }
}
.p-about-us__img-item--bl {
  aspect-ratio: 195/110;
  width: 19.5rem;
  bottom: 9%;
  left: -2.2%;
}
@media (min-width: 500px) {
  .p-about-us__img-item--bl {
    width: min(24.2vw, 17.1rem);
    left: 16.8%;
  }
}
@media (min-width: 1250px) {
  .p-about-us__img-item--bl {
    aspect-ratio: 228/130;
    width: 22.8rem;
    bottom: 1.5%;
    left: 11.9%;
  }
}
.p-about-us__img-item--br {
  aspect-ratio: 165/230;
  width: 16.5rem;
  bottom: 5%;
  right: 2.3%;
}
@media (min-width: 500px) {
  .p-about-us__img-item--br {
    width: min(20.6vw, 14.3rem);
    right: 15.3%;
  }
}
@media (min-width: 1250px) {
  .p-about-us__img-item--br {
    aspect-ratio: 191/265;
    width: 19.1rem;
    bottom: 8.3%;
    right: 16.6%;
  }
}
.p-about-us__img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

/********************************
* Service
********************************/
@media (min-width: 1200px) {
  .p-about-us__service {
    padding-bottom: 15.5rem;
  }
}

/********************************
* 会社概要
********************************/
.p-about-us__outline {
  padding-bottom: 10.8rem;
}
@media (min-width: 600px) {
  .p-about-us__outline {
    padding-bottom: min(20.83vw, 16rem);
  }
}
@media (min-width: 1200px) {
  .p-about-us__outline {
    padding-bottom: 16rem;
  }
}

.p-about-us__outline__container,
.p-about-us__history__container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 3.8rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .p-about-us__outline__container,
  .p-about-us__history__container {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .p-about-us__outline__container,
  .p-about-us__history__container {
    padding: 0 5rem;
  }
}
@media (min-width: 1200px) {
  .p-about-us__outline__container,
  .p-about-us__history__container {
    flex-direction: row;
    gap: 4rem;
    max-width: 160rem;
  }
}
.p-about-us__outline__left,
.p-about-us__history__left {
  max-width: 30rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1200px) {
  .p-about-us__outline__left,
  .p-about-us__history__left {
    flex-shrink: 0;
    margin-top: -1.3rem;
    text-align: left;
  }
}
.p-about-us__outline__title-text::after,
.p-about-us__history__title-text::after {
  left: 50%;
}
@media (min-width: 1200px) {
  .p-about-us__outline__title-text::after,
  .p-about-us__history__title-text::after {
    left: 0.45rem;
  }
}
.p-about-us__outline__right,
.p-about-us__history__right {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 1200px) {
  .p-about-us__outline__right,
  .p-about-us__history__right {
    max-width: 90rem;
  }
}
.p-about-us__outline__detail,
.p-about-us__history__detail {
  width: 100%;
}
.p-about-us__outline__list,
.p-about-us__history__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-about-us__outline__item,
.p-about-us__history__item {
  display: flex;
  flex-direction: column;
  padding: 2.1rem 0;
  border-bottom: 1px solid #338751;
}
@media (min-width: 1200px) {
  .p-about-us__outline__item,
  .p-about-us__history__item {
    flex-direction: row;
    padding: 3.4rem 0;
  }
}
.p-about-us__outline__item:first-child,
.p-about-us__history__item:first-child {
  border-top: 1px solid #338751;
}
.p-about-us__outline__term,
.p-about-us__history__term {
  flex-shrink: 0;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: #338751;
  letter-spacing: 0.7px;
  margin-bottom: 0.8rem;
}
@media (min-width: 1200px) {
  .p-about-us__outline__term,
  .p-about-us__history__term {
    max-width: 27rem;
    margin-bottom: 0;
  }
}
.p-about-us__outline__desc,
.p-about-us__history__desc {
  flex: 1;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.625;
  color: #414542;
}
.p-about-us__outline__desc--map iframe,
.p-about-us__history__desc--map iframe {
  height: 20rem;
}
@media (min-width: 1200px) {
  .p-about-us__outline__desc--map iframe,
  .p-about-us__history__desc--map iframe {
    height: 26.8rem;
  }
}
.p-about-us__outline__map,
.p-about-us__history__map {
  padding-bottom: 0.8rem;
}
@media (min-width: 1200px) {
  .p-about-us__outline__map,
  .p-about-us__history__map {
    padding-bottom: 3rem;
  }
}

/********************************
* 
********************************/
/********************************
* Artificial Flower
********************************/
.p-artificial__title {
  margin-bottom: 6.6rem;
}
@media (min-width: 1200px) {
  .p-artificial__title {
    margin-bottom: 14rem;
  }
}

/********************************
* produce
********************************/
.p-produce__title {
  margin-bottom: 9.8rem;
}
@media (min-width: 1200px) {
  .p-produce__title {
    margin-bottom: 14rem;
  }
}

/********************************
* service
********************************/
@media (min-width: 1200px) {
  .p-service-card-lists {
    margin-bottom: 9rem;
  }
}

/********************************
* case study
********************************/
@media (min-width: 1200px) {
  .p-case-study {
    padding-bottom: 10.6rem;
  }
}

/********************************
* flow
********************************/
.p-flow {
  padding: 9.9rem 0;
  background: #f5f4ea;
}
@media (min-width: 1200px) {
  .p-flow {
    padding: 9.7rem 0 17.5rem;
  }
}
.p-flow__title {
  padding-bottom: 4rem;
}
@media (min-width: 1200px) {
  .p-flow__title {
    padding-bottom: 8rem;
  }
}
.p-flow__item, .p-flow__item-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-flow__item {
  position: relative;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .p-flow__item {
    max-width: 132rem;
    gap: 4.6rem;
  }
}
.p-flow__item-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #338751;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #338751;
  border-width: 2px;
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
}
@media (min-width: 600px) {
  .p-flow__item-left {
    font-size: clamp(3.4rem, 4.68vw, 6.8rem);
    width: min(23.95vw, 18.4rem);
    height: min(23.95vw, 18.4rem);
  }
}
@media (min-width: 1200px) {
  .p-flow__item-left {
    font-size: 4.5rem;
    width: 18.4rem;
    height: 18.4rem;
    margin-left: 1rem;
  }
}
.p-flow__item-number {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-flow__items-wrap {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .p-flow__items-wrap {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .p-flow__items-wrap {
    padding: 0 5rem;
  }
}
@media (min-width: 1100px) {
  .p-flow__items-wrap {
    gap: 6.4rem;
  }
}
.p-flow__items-wrap .p-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8rem;
  left: 4rem;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 8rem - 0.8rem);
  background-color: #338751;
  z-index: 0;
}
@media (min-width: 600px) {
  .p-flow__items-wrap .p-flow__item:not(:last-child)::after {
    top: min(23.95vw, 18.4rem);
    left: calc(min(23.95vw, 18.4rem) / 2);
    height: calc(100% - min(23.95vw, 18.4rem) + 3.5rem);
  }
}
@media (min-width: 1100px) {
  .p-flow__items-wrap .p-flow__item:not(:last-child)::after {
    top: 18.4rem;
    left: 9.2rem;
    height: calc(100% - 18.4rem + 6rem);
  }
}
@media (min-width: 1200px) {
  .p-flow__items-wrap .p-flow__item:not(:last-child)::after {
    left: 10.2rem;
  }
}
.p-flow__items-wrap .p-flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(100% + 4rem - 4.8rem);
  left: 4rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #338751;
  z-index: 1;
}
@media (min-width: 600px) {
  .p-flow__items-wrap .p-flow__item:not(:last-child)::before {
    left: calc(min(23.95vw, 18.4rem) / 2);
  }
}
@media (min-width: 1100px) {
  .p-flow__items-wrap .p-flow__item:not(:last-child)::before {
    top: calc(100% + 6.4rem - 1rem);
    left: 9.2rem;
    border-left-width: 6px;
    border-right-width: 6px;
    border-top-width: 12px;
  }
}
@media (min-width: 1200px) {
  .p-flow__items-wrap .p-flow__item:not(:last-child)::before {
    left: 10.2rem;
  }
}
.p-flow__item-title {
  color: #338751;
  font-size: 2rem;
  font-weight: 400;
  padding: 2.8rem 0 1.6rem;
}
@media (min-width: 1200px) {
  .p-flow__item-title {
    font-size: 3.2rem;
    padding: 1rem 0 2.2rem;
  }
}
.p-flow__item-right {
  flex-direction: column;
  gap: 2.4rem;
}
@media (min-width: 1100px) {
  .p-flow__item-right {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding-right: 1rem;
  }
}
.p-flow__item-text-wrap {
  width: 100%;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .p-flow__item-text-wrap {
    max-width: 69.2rem;
    margin-right: 3rem;
    flex-direction: row;
  }
}
.p-flow__item-description {
  font-size: 1.6rem;
  line-height: 1.85;
}
@media (min-width: 1200px) {
  .p-flow__item-description {
    line-height: 2.15;
  }
}
.p-flow__item-img-wrap {
  width: 100%;
}
@media (min-width: 1200px) {
  .p-flow__item-img-wrap {
    max-width: 34.8rem;
  }
}
.p-flow__item-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

/********************************
* catalog
********************************/
.p-catalog,
.p-catalog__bg-color {
  background: #f5f4ea;
}

.p-catalog__bg-color {
  padding-bottom: 10.8rem;
}
@media (min-width: 1200px) {
  .p-catalog__bg-color {
    padding-bottom: 16.1rem;
  }
}

.p-catalog {
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .p-catalog {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .p-catalog {
    padding: 0 5rem;
  }
}
.p-catalog__title-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 5.6rem;
  padding: 13rem 0 5.6rem;
}
@media (min-width: 600px) {
  .p-catalog__title-wrap {
    gap: min(3.12vw, 2.4rem);
    padding: 13rem 2rem min(7.29vw, 5.6rem);
  }
}
@media (min-width: 1050px) {
  .p-catalog__title-wrap {
    padding: 19.5rem 2rem 8rem;
    flex-direction: row;
    gap: 0;
  }
}
.p-catalog__title-right {
  display: flex;
  flex-direction: column;
}
.p-catalog__title-left {
  position: relative;
  z-index: 5;
}
@media (min-width: 1280px) {
  .p-catalog__title-left {
    margin: 1rem 4rem 0 0;
  }
}
.p-catalog__description {
  width: 100%;
  font-size: 1.4rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .p-catalog__description {
    max-width: 65rem;
  }
}
@media (min-width: 1280px) {
  .p-catalog__description {
    max-width: 80rem;
    font-size: 1.6rem;
  }
}
.p-catalog__container {
  max-width: 138rem;
  margin: 0 auto;
  padding: 4rem;
  background: #fff;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
@media (min-width: 768px) {
  .p-catalog__container {
    padding: 6.4rem;
  }
}
.p-catalog__container::-webkit-scrollbar {
  height: 8px;
}
.p-catalog__container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.p-catalog__container::-webkit-scrollbar-thumb {
  background: #338751;
  border-radius: 4px;
}
.p-catalog__container::-webkit-scrollbar-thumb:hover {
  background: rgb(37.0161290323, 97.9838709677, 58.7903225806);
}
.p-catalog__list-wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  padding-bottom: 1rem;
}
.p-catalog__list-wrap::after {
  content: "";
  flex-shrink: 0;
  width: 2.4rem;
}
@media (min-width: 1200px) {
  .p-catalog__list-wrap::after {
    width: 4.4rem;
  }
}
.p-catalog__item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  width: calc(50% - 1rem);
  min-width: 232px;
}
@media (min-width: 1200px) {
  .p-catalog__item {
    width: calc(33.333% - 1.6rem);
    min-width: 300px;
  }
}
@media (min-width: 1400px) {
  .p-catalog__item {
    width: calc(25% - 1.8rem);
    min-width: 280px;
  }
}
.p-catalog__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.p-catalog__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-catalog__item-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}
.p-catalog__item-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.3s ease;
  transform: scale(1.15);
}
.p-catalog__item-img-wrap--no-image {
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-catalog__item-text-wrap {
  padding: 1.6rem 1.2rem;
}
@media (min-width: 1200px) {
  .p-catalog__item-text-wrap {
    padding: 2rem 1.6rem;
  }
}
.p-catalog__item-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
@media (min-width: 1200px) {
  .p-catalog__item-title {
    font-size: 1.6rem;
  }
}
.p-catalog__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #999;
  font-size: 1.4rem;
  text-align: center;
  padding: 2rem;
}
.p-catalog-list {
  padding: 0 2rem 10.8rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1200px) {
  .p-catalog-list {
    padding-bottom: 16rem;
  }
}
.p-catalog-list__container {
  max-width: 138rem;
  margin: 0 auto;
}
.p-catalog-list__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 1200px) {
  .p-catalog-list__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
  }
}
.p-catalog-list__item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-catalog-list__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.p-catalog-list__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-catalog-list__img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-catalog-list__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.p-catalog-list__img-wrap:hover img {
  transform: scale(1.05);
}
.p-catalog-list__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #999;
  font-size: 1.4rem;
}
.p-catalog-list__text-wrap {
  padding: 1.6rem 1.2rem;
}
@media (min-width: 1200px) {
  .p-catalog-list__text-wrap {
    padding: 2rem 1.6rem;
  }
}
.p-catalog-list__item-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 1200px) {
  .p-catalog-list__item-title {
    font-size: 1.6rem;
  }
}
.p-catalog-list__no-items {
  text-align: center;
  padding: 4rem 2rem;
  font-size: 1.6rem;
  color: #666;
}

/********************************
* カタログ 詳細
********************************/
.p-catalog__title-detail-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 0;
  padding: 15rem 0 5.6rem;
}
@media (min-width: 600px) {
  .p-catalog__title-detail-wrap {
    padding: 13rem 2rem min(7.29vw, 5.6rem);
  }
}
@media (min-width: 1000px) {
  .p-catalog__title-detail-wrap {
    padding: 19.5rem 2rem 8rem;
  }
}
.p-catalog__title-text {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.p-catalog-detail__pagination-wrap {
  background: #f9f9f9;
  max-width: 100%;
  padding: 4rem 0;
}

.p-catalog-title__text {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #338751;
}

/********************************
* カタログプラグイン
********************************/
.df-posts {
  background: #fff;
  padding: 4rem 4rem 6rem;
  max-width: 138rem !important;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.df-posts::-webkit-scrollbar {
  height: 8px;
}
.df-posts::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.df-posts::-webkit-scrollbar-thumb {
  background: #338751;
  border-radius: 4px;
}
.df-posts::-webkit-scrollbar-thumb:hover {
  background: rgb(37.0161290323, 97.9838709677, 58.7903225806);
}
.df-posts > a,
.df-posts > .df-element {
  flex-shrink: 0 !important;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.df-popup-thumb {
  margin: 15px !important;
  flex-shrink: 0 !important;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.df-viewer {
  padding: 4rem 4rem 6rem !important;
}

/********************************
* カタログ詳細（SPレイアウト調整）
********************************/
/********************************
* 施工実績　一覧
********************************/
.p-case-study-list__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.9rem;
  padding: 5.8rem 2rem;
}
@media (min-width: 600px) {
  .p-case-study-list__container {
    gap: 3.5rem 2rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 5.8rem min(6.51vw, 5rem) 5.8rem;
  }
}
@media (min-width: 1200px) {
  .p-case-study-list__container {
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem 2rem;
    padding: 9.8rem 11rem 6.3rem;
  }
}
.p-case-study-list__img-wrap {
  aspect-ratio: 360/360;
  margin-bottom: 2.6rem;
}
@media (min-width: 1200px) {
  .p-case-study-list__img-wrap {
    aspect-ratio: 330/460;
    margin-bottom: 2rem;
  }
}
.p-case-study-list__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.p-case-study-list__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #414542;
}
@media (min-width: 1200px) {
  .p-case-study-list__text-wrap {
    gap: 1.8rem;
    margin-bottom: 3rem;
  }
}
.p-case-study-list__item-title {
  font-size: 1.8rem;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .p-case-study-list__item-title {
    font-size: 2rem;
  }
}
.p-case-study-list__item-client {
  font-size: 1.4rem;
}
.p-case-study-list__item-title, .p-case-study-list__item-client {
  overflow: hidden; /* はみ出した部分を隠す */
  white-space: nowrap; /* １行に固定 */
  text-overflow: ellipsis; /* 省略記号（…）を表示 */
  width: 100%;
}
.p-case-study-list__category-wrap {
  background: #e7e7e7;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 2em;
}
@media (min-width: 1200px) {
  .p-case-study-list__category-wrap {
    padding: 0.4em 2em;
  }
}
.p-case-study-list__pagination {
  padding-bottom: 6.3rem;
}
@media (min-width: 1200px) {
  .p-case-study-list__pagination {
    padding-bottom: 8.3rem;
  }
}

/********************************
* 施工実績　詳細
********************************/
.p-case-study-detail {
  margin-bottom: 4.4rem;
}
@media (min-width: 1200px) {
  .p-case-study-detail {
    margin-bottom: 8.8rem;
  }
}
.p-case-study-detail__container {
  padding: 12.5rem 2rem 10.3rem;
}
@media (min-width: 1200px) {
  .p-case-study-detail__container {
    padding: 15.6rem 5rem 19.4rem;
  }
}
.p-case-study-detail__container::after {
  top: 26%;
}
@media (min-width: 500px) {
  .p-case-study-detail__container::after {
    top: 11%;
    right: 5%;
  }
}
@media (min-width: 1200px) {
  .p-case-study-detail__container::after {
    right: 10.8rem;
  }
}
.p-case-study-detail__title {
  display: flex;
  gap: 1rem;
  font-size: 3.2rem;
}
@media (min-width: 1200px) {
  .p-case-study-detail__title {
    font-size: 3.6rem;
  }
}
.p-case-study-detail__sub-text {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .p-case-study-detail__sub-text {
    margin-bottom: 3rem;
  }
}
.p-case-study-detail__text-wrap {
  width: 100%;
  margin: 0 auto 4.4rem;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .p-case-study-detail__text-wrap {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .p-case-study-detail__text-wrap {
    padding: 0 5rem;
  }
}
@media (min-width: 1200px) {
  .p-case-study-detail__text-wrap {
    max-width: 108rem;
    margin: 0 auto 13rem;
  }
}
.p-case-study-detail__text {
  font-size: 1.4rem;
  line-height: 2.58;
}
@media (min-width: 1200px) {
  .p-case-study-detail__text {
    font-size: 1.6rem;
  }
}
.p-case-study-detail__img-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  width: 100%;
  margin: 0 auto 4.6rem;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .p-case-study-detail__img-wrap {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .p-case-study-detail__img-wrap {
    padding: 0 5rem;
  }
}
@media (min-width: 900px) {
  .p-case-study-detail__img-wrap {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .p-case-study-detail__img-wrap {
    gap: 1.9rem;
    max-width: 148.2rem;
    margin: 0 auto;
    padding-bottom: 5.5rem;
  }
}
.p-case-study-detail__img {
  height: 24rem;
}
@media (min-width: 500px) {
  .p-case-study-detail__img {
    flex: 1 1 min(52.08vw, 35rem);
  }
}
@media (min-width: 900px) {
  .p-case-study-detail__img {
    flex: 0 0 calc((100% - 3.8rem) / 3);
    max-width: 48.1333333333rem;
    aspect-ratio: 447/298;
  }
}
.p-case-study-detail__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-case-study-detail__prev-next {
  padding-bottom: 5rem;
}
@media (min-width: 1200px) {
  .p-case-study-detail__prev-next {
    padding-bottom: 5rem;
  }
}

/********************************
* news-list
********************************/
.p-news-list {
  background: #fff;
  padding: 5.7rem 0 11rem;
}
@media (min-width: 1200px) {
  .p-news-list {
    position: relative;
    z-index: 5;
    padding: 8.5rem 0 11rem;
  }
}
.p-news-list__container {
  max-width: 118rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  padding-bottom: 5.9rem;
}
@media (min-width: 600px) {
  .p-news-list__container {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .p-news-list__container {
    padding: 0 5rem;
  }
}
@media (min-width: 768px) {
  .p-news-list__container {
    padding-bottom: 6.3rem;
  }
}
.p-news-list__items a {
  display: block;
  border-top: 1px solid #e4e4e4;
}
.p-news-list__items a:last-child {
  border-bottom: 1px solid #e4e4e4;
}
.p-news-list__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .p-news-list__item {
    flex-direction: row;
    padding: 4.9rem 1.6rem;
  }
}
@media (min-width: 1200px) {
  .p-news-list__item {
    padding: 5.9rem 9.6rem;
  }
}
.p-news-list__date {
  letter-spacing: 0.8px;
  font-family: "Figtree", sans-serif;
  color: #338751;
  font-weight: 600;
  padding: 0;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .p-news-list__date {
    min-width: 12rem;
  }
}

/********************************
* 詳細ページ用
********************************/
.p-news-detail-title {
  background: transparent;
}
.p-news-detail-title__container {
  max-width: 160rem;
  width: 100%;
  padding: 14rem 2rem 10rem;
}
@media (min-width: 768px) {
  .p-news-detail-title__container {
    padding: 15.6rem 5rem 7rem;
  }
}
.p-news-detail-title__meta {
  font-size: 1.7rem;
  font-weight: 600;
  color: #338751;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 5;
}
@media (min-width: 1200px) {
  .p-news-detail-title__meta {
    margin-bottom: 2rem;
  }
}
.p-news-detail-title__text {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 1px;
  width: 100%;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  .p-news-detail-title__text {
    font-size: clamp(1.5rem, 2.085vw, 4.5rem);
    line-height: 1.8;
  }
}
@media (min-width: 1200px) {
  .p-news-detail-title__text {
    font-size: 3rem;
    max-width: 90rem;
  }
}

.p-news-detail__bg-color {
  background: #f5f4ea;
  padding-bottom: 10.8rem;
}
@media (min-width: 1200px) {
  .p-news-detail__bg-color {
    padding-bottom: 11rem;
  }
}

.p-news-detail-contents {
  position: relative;
  z-index: 5;
  padding: 0;
}
@media (min-width: 600px) {
  .p-news-detail-contents {
    padding: 0 2rem;
  }
}
@media (min-width: 600px) and (min-width: 600px) {
  .p-news-detail-contents {
    padding: 0 min(6.51vw, 5rem);
  }
}
@media (min-width: 600px) and (min-width: 1200px) {
  .p-news-detail-contents {
    padding: 0 5rem;
  }
}
.p-news-detail-contents__container {
  max-width: 122rem;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem 2.8rem;
  background-color: #fff;
  border-radius: 0;
}
@media (min-width: 600px) {
  .p-news-detail-contents__container {
    border-radius: 15px;
  }
}
@media (min-width: 768px) {
  .p-news-detail-contents__container {
    padding: 4rem 6rem;
  }
}
@media (min-width: 1200px) {
  .p-news-detail-contents__container {
    padding: 7.8rem 11.9rem 11.5rem;
  }
}
@media (min-width: 1200px) {
  .p-news-detail-contents__img, .p-news-detail-contents__text-wrap .wp-block-image {
    margin-bottom: 3.2rem;
  }
}
.p-news-detail-contents__img:last-of-type, .p-news-detail-contents__text-wrap .wp-block-image:last-of-type {
  margin-bottom: 2.5rem;
}
@media (min-width: 1200px) {
  .p-news-detail-contents__img:last-of-type, .p-news-detail-contents__text-wrap .wp-block-image:last-of-type {
    margin-bottom: 8.5rem;
  }
}
.p-news-detail-contents__img img, .p-news-detail-contents__text-wrap .wp-block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-news-detail-contents__thumbnail {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-news-detail-contents__text-wrap .wp-block-image {
  aspect-ratio: 982/491;
}
.p-news-detail-contents__text-wrap .wp-block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-news-detail-contents__text-wrap {
  font-size: 1.6rem;
  line-height: 2.25;
  letter-spacing: 0.5px;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e4e4e4;
}
@media (min-width: 768px) {
  .p-news-detail-contents__text-wrap {
    padding-bottom: min(7.42vw, 5.7rem);
  }
}
@media (min-width: 1200px) {
  .p-news-detail-contents__text-wrap {
    font-size: 1.6rem;
    line-height: 2.6;
    padding-bottom: 5.7rem;
  }
}
@media (min-width: 1200px) {
  .p-news-detail-contents__text-wrap p {
    padding-bottom: 3.2rem;
    margin-bottom: 8.6rem;
    border-bottom: 1px solid #e4e4e4;
  }
}
.p-news-detail-contents__text-wrap strong {
  color: #338751;
}
.p-news-detail-contents__text-wrap a {
  color: #4d82f5;
  text-decoration: underline;
}
.p-news-detail-contents__prev-next {
  padding-top: 2.6rem;
}
@media (min-width: 768px) {
  .p-news-detail-contents__prev-next {
    padding-top: min(9.37vw, 7.2rem);
  }
}
@media (min-width: 1200px) {
  .p-news-detail-contents__prev-next {
    padding-top: 7.2rem;
  }
}

.p-news-detail-contents__text-wrap p {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.p-privacy {
  padding: 0 2rem 9.8rem;
}
@media (min-width: 600px) {
  .p-privacy {
    padding: 0 min(6.51vw, 5rem) 9.8rem;
  }
}
@media (min-width: 1200px) {
  .p-privacy {
    padding: 0 5rem 9.8rem;
  }
}
.p-privacy-title {
  background: transparent;
}
.p-privacy-title__container {
  padding: 13.3rem 1rem 9.8rem;
}
@media (min-width: 600px) {
  .p-privacy-title__container {
    padding: 13.3rem min(6.51vw, 5rem) 9.8rem;
  }
}
@media (min-width: 1200px) {
  .p-privacy-title__container {
    padding: 19.3rem 5rem 6.4rem;
  }
}
@media (min-width: 1200px) {
  .p-privacy-title__container::after {
    top: 5rem;
  }
}
.p-privacy__container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 122rem;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 2rem;
  background: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 5;
}
@media (min-width: 600px) {
  .p-privacy__container {
    padding: 7rem 6rem 11.4rem;
  }
}
@media (min-width: 1200px) {
  .p-privacy__container {
    padding: 7rem 6rem 11.4rem;
    gap: 6.5rem;
  }
}
.p-privacy__item-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #338751;
  padding-bottom: 1.6rem;
}
@media (min-width: 1200px) {
  .p-privacy__item-title {
    padding-bottom: 1rem;
  }
}
.p-privacy__item p {
  line-height: 2;
  letter-spacing: 2px;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .p-privacy__item p {
    letter-spacing: 0.5px;
  }
}
.p-privacy__item a {
  color: revert;
  text-decoration: underline;
  word-break: break-all;
  overflow-wrap: break-word;
}
/*# sourceMappingURL=style.css.map */
