@charset "UTF-8";
/* SPでは改行しない */
@media (max-width: 599px) {
  .pc-br {
    display: none;
  }
}
/* PCでは改行しない */
@media (min-width: 960px) {
  .sp-br {
    display: none;
  }
}
/*swell独自全体*/
:root {
  --color_gray: #999999 !important;
  /*スマホ・タブ時のフルワイドの余白調整*/
}
@media (min-width: 600px) and (max-width: 959px) {
  :root {
    --swl-pad_container: 2vw !important;
  }
}
@media (max-width: 599px) {
  :root {
    --swl-pad_container: 2vw !important;
  }
}

/*sp時FVの左右余白*/
@media (max-width: 599px) {
  .p-mainVisual__textLayer {
    padding: 0 5px !important;
  }
}

/*top*/
/*fv*/
/*fvスライド画像位置調整*/
.u-obf-cover {
  -o-object-position: center top;
     object-position: center top;
}

/*ヘッダー*/
/*追従ヘッダー会社名追加*/
/*ロゴ下の会社名を疑似要素で*/
.l-fixHeader__logo {
  flex-direction: column;
  margin-right: 0 !important;
}

.l-fixHeader__logo::after {
  content: "株式会社アースエコプロジェクト";
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #6eba2c;
}
@media (max-width: 599px) {
  .l-fixHeader__logo::after {
    font-size: 12px;
  }
}

/* グロナビ最後の「問い合わせ」だけ装飾 */
.c-gnav > li:last-child > a {
  background: #316745;
  /* 黄色 */
  color: #ffffff;
  height: 40px;
  padding: 0 28px;
  border-radius: 999px;
  /* 丸み */
  margin-inline-start: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 3px solid #ffffff;
  /* 白フチ */
  transition: all 0.3s ease;
}

.ttl {
  font-weight: 700;
}

/* ホバー */
.c-gnav > li:last-child > a:hover {
  background: #63a84d;
  transform: translateY(-2px);
}

.c-gnav > li:last-child {
  display: flex;
  align-items: center;
}

/*メニューホバー下線位置調整*/
.c-gnav > .menu-item > a:after {
  bottom: 20px;
}

/* 「問い合わせ」だけ SWELLの下線ホバーを殺す */
.c-gnav > li:last-child > a::after {
  content: none;
}

/*ヘッダー、SPメニュー壁紙設定*/
.l-header,
.l-fixHeader:before,
.p-spMenu__inner::before {
  background-image: url(https://e-ecopro.com/wp-content/uploads/2026/02/kabegami-w.webp);
}

.p-mainVisual__inner .p-blogParts.post_content {
  display: flex;
  justify-content: center;
}

.fv-message-plate {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 3rem 2rem;
  border-radius: 20px;
  width: 60%;
}
@media (min-width: 600px) and (max-width: 959px) {
  .fv-message-plate {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .fv-message-plate {
    width: 100%;
    padding: 2rem 0.5rem;
  }
}

@media (min-width: 600px) and (max-width: 959px) {
  .fv-message-plate h2 {
    font-size: 50px !important;
  }
}
@media (max-width: 599px) {
  .fv-message-plate h2 {
    font-size: 24px !important;
  }
}

@media (max-width: 599px) {
  .fv-message-plate span:first-child {
    font-size: 14px !important;
  }
}

@media (max-width: 599px) {
  .fv-message-txt {
    font-size: 22px !important;
  }
}

@media (max-width: 599px) {
  .fv-message-plate p {
    font-size: 13px;
  }
}

/*ブログパーツ位置調整*/
.p-mainVisual__textLayer {
  top: -20px !important;
}

/*全項目共通*/
/*セクションタイトル*/
.section-title {
  position: relative;
  padding-left: 20px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  background-color: #6eba2c;
  border-radius: 2px;
  top: 9px;
  bottom: 6px;
}

.section-title h2 {
  margin-top: -10px !important;
}

.no-wipe {
  white-space: nowrap;
}
@media (min-width: 600px) and (max-width: 959px) {
  .no-wipe {
    white-space: wrap;
  }
}
@media (max-width: 599px) {
  .no-wipe {
    white-space: wrap;
  }
}

/*about*/
.about-image {
  border-radius: 10%;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 2px rgba(60, 80, 60, 0.1), 0 6px 16px rgba(60, 80, 60, 0.08);
  overflow: hidden;
  /* 中だけ拡大させる肝 */
  transition: box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.about-image:hover {
  box-shadow: 0 4px 8px rgba(60, 80, 60, 0.12), 0 14px 30px rgba(60, 80, 60, 0.1);
}

.about-image:hover img {
  transform: scale(1.06);
}

.about-message {
  background-color: rgb(234, 255, 244);
  padding: 1rem 2rem 1rem 1rem;
  border-radius: 20px;
  border: 1px solid #63a84d;
}
@media (max-width: 599px) {
  .about-message {
    padding: 1rem 0.5rem 1rem 0.5rem;
  }
}

.about-message-txt .wp-block-group__inner-container {
  text-align: right;
}

.about-box .swell-block-columns__inner .swell-block-column:nth-child(2) {
  position: relative;
}

/* 3番目と4番目を入れ替えて、表示順を 1,2,4,3 にする */
@media (min-width: 600px) and (max-width: 959px) {
  .about-box .swell-block-columns__inner > .swell-block-column:nth-child(3) {
    order: 4;
  }
}
@media (max-width: 599px) {
  .about-box .swell-block-columns__inner > .swell-block-column:nth-child(3) {
    order: 4;
  }
}

@media (min-width: 600px) and (max-width: 959px) {
  .about-box .swell-block-columns__inner > .swell-block-column:nth-child(4) {
    order: 3;
  }
}
@media (max-width: 599px) {
  .about-box .swell-block-columns__inner > .swell-block-column:nth-child(4) {
    order: 3;
  }
}

@media (max-width: 599px) {
  .about-box .swell-block-columns__inner {
    row-gap: 1rem !important;
  }
}

.about-concept {
  position: absolute;
  left: 0;
  bottom: 18px;
  background: #fff;
  padding: 1rem 3rem;
  border-radius: 0 20px 0 20px;
  border-left: 6px solid #6eba2c;
  border-right: 6px solid #6eba2c;
}
@media (min-width: 600px) and (max-width: 959px) {
  .about-concept {
    position: unset;
    padding: 1rem 1.3rem;
  }
}
@media (max-width: 599px) {
  .about-concept {
    position: absolute;
    padding: 1rem 1.3rem;
    left: 0;
    bottom: 17px;
  }
}

@media (min-width: 600px) and (max-width: 959px) {
  .about-concept br {
    display: none;
  }
}
@media (max-width: 599px) {
  .about-concept br {
    display: none;
  }
}

/* 事前：親が基準になるように（必要なら） */
:root {
  --sun-size: 60px;
}
@media (max-width: 599px) {
  :root {
    --sun-size: 30px;
  }
}

.sun-img {
  position: relative;
  container-type: inline-size;
  /* ★これが肝 */
}

/* 横移動は figure に担当させる */
.sun-img > figure {
  position: absolute;
  top: -20px;
  left: 0;
  margin: 0;
  /* WPのfigure余白対策 */
  animation: sunDrift 60s linear infinite alternate;
  will-change: transform;
}
@media (max-width: 599px) {
  .sun-img > figure {
    top: -10px;
  }
}

/* 回転は img */
.sun-img > figure > img {
  display: block;
  width: var(--sun-size) !important;
  height: auto;
  transform-origin: center;
  animation: sunSpin 18s linear infinite;
  /* 少し速めに */
  will-change: transform;
}

/* ★親幅（100cqw）基準で端まで */
@keyframes sunDrift {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(calc(25cqw - var(--sun-size) * 0.25)) translateY(-60px);
    @media (max-width: 599px) {
      transform: translateX(calc(25cqw - var(--sun-size) * 0.25)) translateY(-52px);
    }
  }
  50% {
    transform: translateX(calc(50cqw - var(--sun-size) * 0.5)) translateY(-70px);
    @media (max-width: 599px) {
      transform: translateX(calc(50cqw - var(--sun-size) * 0.5)) translateY(-62px);
    }
  }
  75% {
    transform: translateX(calc(75cqw - var(--sun-size) * 0.75)) translateY(-60px);
    @media (max-width: 599px) {
      transform: translateX(calc(75cqw - var(--sun-size) * 0.75)) translateY(-52px);
    }
  }
  100% {
    transform: translateX(calc(100cqw - var(--sun-size))) translateY(0);
  }
}
@keyframes sunSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*Strength*/
.strength-box .swell-block-column {
  background-color: rgb(255, 255, 255);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(60, 80, 60, 0.1), 0 6px 16px rgba(60, 80, 60, 0.08);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
@media (min-width: 600px) and (max-width: 959px) {
  .strength-box .swell-block-column {
    padding: 1rem;
  }
}
@media (max-width: 599px) {
  .strength-box .swell-block-column {
    padding: 1rem;
  }
}

.strength-box .swell-block-column:hover {
  transform: translateY(-6px);
}

/* はみ出しを隠す箱：figure で切るのが安定 */
.strength-box .swell-block-column .wp-block-image figure {
  border-radius: inherit;
  /* 角丸スタイルがあるなら馴染ませる */
}

/* 画像にトランジション */
.strength-box .swell-block-column .wp-block-image img {
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  transform: scale(1);
  /* 念のため初期化 */
}

/* カードにホバーしたら画像だけ拡大 */
.strength-box .swell-block-column:hover .wp-block-image img {
  transform: scale(1.08);
}

.strength-box .swell-block-column::after {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  content: "1";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 160px;
  font-weight: 700;
  color: #696969;
  opacity: 0.2;
  /* うっすら */
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 599px) {
  .strength-box .swell-block-column::after {
    font-size: 100px;
  }
}

.strength-box .swell-block-column:nth-child(2):after {
  content: "2";
}

.strength-box .swell-block-column:nth-child(3):after {
  content: "3";
}

.strength-box .wp-block-group {
  border-radius: 20%;
  width: 200px;
  height: 200px;
}
@media (max-width: 599px) {
  .strength-box .wp-block-group {
    width: 120px;
    height: 120px;
  }
}

.strength-box h3 strong {
  position: relative;
  padding-bottom: 12px;
  display: inline-block;
}

.strength-box h3 strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  /* ラインの長さ調整 */
  height: 4px;
  /* 太さ */
  background-color: #6eba2c;
  border-radius: 2px;
}

.strength-box .swell-block-columns__inner {
  justify-content: center !important;
}

/*service*/
.service-title {
  margin-top: -10px !important;
}

.service-plate {
  padding-inline: 0.5rem;
}
@media (max-width: 599px) {
  .service-plate {
    padding-inline: 0;
  }
}

.service-plate .swell-block-columns__inner {
  justify-content: center !important;
}

.service-box {
  background-image: url("https://e-ecopro.com/wp-content/uploads/2026/02/kabegami-w.webp");
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 通常時 */
.service-box {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* ホバー時 */
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08), 0 18px 40px rgba(0, 0, 0, 0.1);
}

.service-box p:first-of-type {
  position: relative;
  padding-left: 15px;
}

.service-box p:first-of-type::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  background-color: #6eba2c;
  border-radius: 2px;
  top: 9px;
  bottom: 4px;
}

.service-box-list ul {
  display: flex;
  flex-wrap: wrap;
}

/* 右寄せ配置 */
.service-box-cta {
  text-align: center;
}

/* リンク本体 */
.service-box-cta-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  gap: 8px;
  letter-spacing: 0.08em;
  color: #000000;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

/* 矢印 */
.service-box-cta-arrow {
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* hover */
.service-box-cta-link:hover {
  color: #000000;
}

.service-box-cta-link:hover .service-box-cta-arrow {
  transform: translateX(4px);
}

.service-box-list .is-style-good_list li {
  color: #ffffff !important;
  padding-inline: 0.5em 1em;
  background-color: #6eba2c;
  border-radius: 3px;
  margin-right: 0.2em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-box-list .is-style-good_list li::before {
  content: none;
}

.service-box-text {
  padding: 0 2rem 2rem !important;
  margin-top: -10px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .service-box-text {
    padding: 0 1rem 1rem !important;
  }
}
@media (max-width: 599px) {
  .service-box-text {
    padding: 0 1rem 1rem !important;
  }
}

.service-box-text h3 {
  margin: 0 !important;
}

/* 上部帯 */
.energy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  /* うっすら黒グラデーション */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.35) 65%, rgba(0, 0, 0, 0.2) 100%);
}

.energy-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

/* タイトル */
.energy-title {
  color: #ffffff;
  font-size: 24px !important;
  margin: 0 !important;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 3px 8px rgba(0, 0, 0, 0.35);
  position: relative;
  padding-bottom: 4px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .energy-title {
    font-size: 18px !important;
  }
}
@media (max-width: 599px) {
  .energy-title {
    font-size: 18px !important;
  }
}

.energy-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120%;
  height: 4px;
  background: linear-gradient(to right, #8fdc3f, rgba(143, 220, 63, 0.05));
}

/* CTA白寄せ */
.energy-overlay .service-box-cta-link {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.energy-overlay .service-box-cta-link:hover {
  color: #ffffff;
}

/*swiper css*/
.energy-media {
  width: 100%;
  aspect-ratio: 2/1;
  /* 画像に合わせる */
  overflow: hidden;
  position: relative;
}

.energy-swiper,
.energy-swiper .swiper-wrapper,
.energy-swiper .swiper-slide {
  height: 100%;
}

/* 基本 */
.calm-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

/* 画像 */
.calm-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s ease, filter 1.2s ease;
  will-change: transform;
}

/* アクティブでゆっくり寄る */
.calm-swiper .swiper-slide-active img {
  transform: scale(1.12);
  filter: brightness(1.05);
}

/* 切替時に少しだけ奥行き感 */
.calm-swiper .swiper-slide-next img {
  filter: brightness(1.08);
}

/* ラベル */
.slide-label {
  position: absolute;
  left: 10px;
  bottom: 5px;
  padding: 8px 14px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.03em;
}
@media (max-width: 599px) {
  .slide-label {
    left: 6px;
    bottom: 5px;
    padding: 4px 10px;
  }
}

/*works*/
/* Works cards */
.works-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.works-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.works-card__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: auto;
  aspect-ratio: 4/3;
  background: #d9d9d9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}
@media (max-width: 599px) {
  .works-card__media {
    aspect-ratio: 2/1;
  }
}

.works-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.works-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0));
}

.works-card__capsule {
  position: absolute;
  left: 22px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(110, 186, 44, 0.9);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}

.works-card__title {
  margin: 0 !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.works-card__addr {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.works-card__addr .swl-inline-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  color: #ea553a;
}

/* hover */
.works-card__img {
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.works-card:hover .works-card__img {
  transform: scale(1.04);
}

/* responsive */
@media (max-width: 959px) {
  .works-cards {
    grid-template-columns: 1fr;
  }
  .works-card__media {
    border-radius: 24px;
  }
}
@media (max-width: 1024px) {
  .works-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .works-cards {
    grid-template-columns: 1fr;
  }
}
.works-area {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  /* デフォルト影（かなり控えめ） */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
@media (max-width: 599px) {
  .works-area {
    padding: 1rem 0.5rem;
  }
}

.works-area:hover {
  transform: translateY(-3px);
  /* 浮いたときの影 */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.06);
}

@media (max-width: 599px) {
  .works-area .has-text-align-center:nth-child(2) {
    text-align: start !important;
  }
}

.works-cards a {
  display: flex;
  justify-content: center;
}

/* iOS対策：カードのaタグをflexにしない */
.works-cards a.works-card {
  display: block;
}

.works-area .is-style-good_list li:before {
  content: none;
}

.works-area .wp-block-list {
  justify-content: center;
}

.works-area .wp-block-list li {
  background-color: #BCE2E8;
  color: #696969;
  border-radius: 16px;
  padding: 0.3rem 1.5rem !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 14px !important;
}

/*リクルート*/
.recruit-headline {
  padding: 2rem 0 1rem !important;
}
@media (max-width: 599px) {
  .recruit-headline {
    padding: 2rem 0 1rem !important;
  }
}

.recruit-text {
  padding: 2rem !important;
  background-color: #ffffff;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
}

.recruit-text ul {
  display: inline-flex;
  flex-direction: column;
}
@media (min-width: 600px) and (max-width: 959px) {
  .recruit-text ul {
    flex-direction: row;
  }
}

.recruit-text li {
  padding-inline: 0.5em 1em;
  background-color: #959595;
  padding-block: 0.3em;
  color: #ffffff;
  border-radius: 3px;
  margin-right: 0.2em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recruit-text .is-style-good_list li::before {
  content: none;
}

.recruit-image {
  position: absolute;
  top: -110px;
  right: 0;
}
@media (min-width: 600px) and (max-width: 959px) {
  .recruit-image {
    top: -90px;
    right: 0;
    width: 250px;
  }
}
@media (max-width: 599px) {
  .recruit-image {
    right: 0;
    top: -70px;
    width: 200px;
  }
}

/*news*/
.news-list .p-postList__body {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 599px) {
  .news-list .p-postList__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.news-list .-type-simple .p-postList__meta {
  margin: 0 !important;
}

/*コンタクト*/
.contact-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-text {
  color: #ffffff;
  background-color: rgba(49, 103, 69, 0.8);
}

.contact-text .wp-block-group:nth-child(1) {
  padding: 1rem 2rem 0 !important;
  width: 100%;
}
@media (max-width: 599px) {
  .contact-text .wp-block-group:nth-child(1) {
    padding: 1rem 1rem 0 !important;
  }
}

.contact-text-address {
  padding-inline-start: 2rem !important;
}
@media (max-width: 599px) {
  .contact-text-address {
    padding-inline-start: 1rem !important;
  }
}

.contact-text .wp-block-group {
  display: inline-block;
}

.contact-text a {
  color: #ffffff !important;
}

/*LINEボタン*/
.line-consult-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 70%;
  background: #06C755;
  color: #fff;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
@media (max-width: 599px) {
  .line-consult-btn {
    width: 100%;
    padding: 12px 28px;
  }
}

.line-consult-btn:hover {
  transform: translateY(-2px);
  background: #05b94f;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 6px 12px rgba(0, 0, 0, 0.12);
}

.line-consult-icon {
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-consult-icon img {
  width: 40px;
  height: 40px;
  display: block;
}

.line-consult-text small {
  display: block;
  font-size: 13px;
  opacity: 0.9;
}

.line-consult-text strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

#contact .section-title::before {
  background-color: #ffffff;
  top: 18px;
  bottom: 4px;
}

.contact-form-swell {
  padding: 2rem !important;
  background-color: #F8FBF8;
}
@media (max-width: 599px) {
  .contact-form-swell {
    padding: 0.5rem !important;
  }
}

/* =========================
   Footer menu links ( > + hover )
========================= */
@media (min-width: 600px) and (max-width: 959px) {
  .footer-links-wiper {
    display: grid;
    place-content: center;
    place-items: center;
  }
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}
@media (min-width: 600px) and (max-width: 959px) {
  .footer-links {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
}

.footer-links h3,
.footer-contact h3 {
  color: #6eba2c;
}

.w-footer__box:nth-child(3) {
  padding-left: 2em;
}
@media (max-width: 599px) {
  .w-footer__box:nth-child(3) {
    padding-left: 0;
  }
}

.footer-contact-wiper {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.footer-col-title {
  margin: 0 0 14px;
}

.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media (max-width: 1485px) {
  .footer-menu-list {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.footer-menu-list li {
  margin: 0 0 14px;
  white-space: nowrap;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

@media (min-width: 600px) and (max-width: 959px) {
  .footer-menu-list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 599px) {
  .footer-menu-list {
    display: flex;
    flex-wrap: wrap;
  }
}

.footer-menu-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  /* フッターの文字色に合わせる */
  transition: transform 0.22s ease, color 0.22s ease, opacity 0.22s ease;
  will-change: transform;
}
@media (min-width: 600px) and (max-width: 959px) {
  .footer-menu-list a {
    padding-inline-end: 0.5rem;
  }
}
@media (max-width: 599px) {
  .footer-menu-list a {
    padding-inline-end: 0.5rem;
  }
}

/* 「＞」を疑似要素で */
.footer-menu-list a::before {
  content: "›";
  /* または ">" でもOK。これのほうが見た目良い */
  color: #6eba2c;
  font-weight: 700;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.22s ease, opacity 0.22s ease;
  opacity: 0.9;
}

/* hover：少し右へ、色を少しだけ変える */
.footer-menu-list a:hover {
  transform: translateX(6px);
  color: #6eba2c;
}

.footer-menu-list a:hover::before {
  transform: translateX(2px);
  opacity: 1;
}

/* キーボード操作も同様に */
.footer-menu-list a:focus-visible {
  outline: none;
  transform: translateX(6px);
  color: #6eba2c;
}

/* 動きを減らしたい人向け */
@media (prefers-reduced-motion: reduce) {
  .footer-menu-list a,
  .footer-menu-list a::before {
    transition: none;
  }
}
.footer-menu-list a:hover {
  opacity: 1;
  filter: brightness(1.05);
}

/*フッター1CSS*/
@media (min-width: 600px) and (max-width: 959px) {
  .eep-footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}
@media (max-width: 599px) {
  .eep-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.eep-footer-head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.eep-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.eep-logo {
  width: 300px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.eep-logo-caption {
  margin: 0;
  font-size: 20px !important;
  line-height: 1.2 !important;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.eep-catch {
  margin-top: 18px;
  color: rgba(205, 214, 226, 0.82);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.eep-catch p {
  margin: 0;
}

/* フッターウィジェットをコンテンツ幅に揃える */
.l-footer .l-container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

/*フッター　アドレス*/
.footer-contact-address address {
  font-style: normal;
}

/*固定ページサービス*/
.service-header-link {
  display: grid;
  place-content: center;
  padding-block: 0.5rem;
}

.service-header-link .wp-block-group__inner-container {
  display: flex;
  gap: 2rem;
}
@media (max-width: 599px) {
  .service-header-link .wp-block-group__inner-container {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.5rem;
  }
}

.service-header-link .wp-block-group__inner-container p {
  margin-bottom: 0 !important;
}
@media (max-width: 599px) {
  .service-header-link .wp-block-group__inner-container p {
    font-size: 12px !important;
  }
}

.service-header-link .wp-block-group__inner-container a {
  display: inline-block;
  /* transform効かせるため */
  transition: transform 0.25s ease, opacity 0.25s ease;
  color: #696969;
}

.service-header-link .wp-block-group__inner-container a:hover {
  transform: translateY(-3px);
}

.service-header-link .wp-block-group__inner-container span {
  color: #6eba2c;
}

.service-header-link .wp-block-group__inner-container .swl-inline-icon:after {
  width: 120% !important;
  left: -3px !important;
}

/*↓各*/
.solution-section-box {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media (max-width: 599px) {
  .solution-section-box {
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 599px) {
  .solution-section-box p:first-of-type {
    font-size: 18px !important;
  }
}

.solution-section-photo-box {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
  aspect-ratio: 16/9;
  min-height: auto;
  /* テーマの固定高さ打消し */
}

.solution-section-photo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.solution-section-photo-box .wp-block-cover__inner-container {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  background-color: #6eba2c;
  padding-inline: 2rem;
  padding-block: 0.3rem;
  border-radius: 0 0 20px 0;
}

/* ホバー */
.solution-section-photo-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.solution-section-box .wp-block-list li {
  margin: 0.5em 0 !important;
}

.solution-section-reverse .wp-block-cover__inner-container {
  top: 0;
  right: 0;
  left: auto;
  border-radius: 0 0 0 20px;
}
@media (max-width: 599px) {
  .solution-section-reverse .wp-block-cover__inner-container {
    right: auto;
    left: 0;
    border-radius: 0 0 20px 0;
  }
}

.solution-section-reverse .swell-block-columns__inner {
  flex-direction: row-reverse;
}
@media (max-width: 599px) {
  .solution-section-reverse .swell-block-columns__inner {
    flex-direction: column;
  }
}

.solution-section-faq {
  padding: 2rem 2rem 3rem;
  background-color: rgba(188, 226, 232, 0.3);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
@media (max-width: 599px) {
  .solution-section-faq {
    padding: 1rem 0.5rem 3rem;
  }
}

.solution-section-faq .faq_q,
.solution-section-faq .faq_a {
  padding: 0.5em 0 0.8em 3em;
}

.solution-section-faq .faq_a {
  padding: 0.5em 0 0.3em 3em;
}

.solution-section-faq .swell-block-faq .faq_q:before,
.solution-section-faq .swell-block-faq .faq_a:before {
  top: 0.6em;
}

.solution-section-faq .wp-block-table td {
  padding: 1em 0.75em;
}

.solution-section-faq ul.-list-flex {
  gap: 0;
}

.solution-section-text p.has-background {
  padding: 0.5rem 1rem !important;
  border-radius: 10px;
}
@media (max-width: 599px) {
  .solution-section-text p.has-background {
    padding: 0.5rem 0.5rem !important;
  }
}

.solution-section-text .swl-inline-icon:after {
  top: 3px !important;
  color: #316745;
}

.solution-section-map {
  min-height: 300px;
}

@media (max-width: 599px) {
  .solution-section-table table {
    --swl-cell1-width: 112px !important;
  }
}

/*エリア間装飾*/
.area-message {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 599px) {
  .area-message {
    font-size: 22px;
  }
}
/*投稿ページ・アーカイブ背景*/
.single #content, .archive #content {
  background: rgba(247, 249, 252, 0.7);
  border-radius: 20px;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}

.archive .c-pageTitle__subTitle {
  display: none;
}/*# sourceMappingURL=site.css.map */