@charset "UTF-8";
/* =========================================
   Unified Color Scheme (HEX Only)
   Fix: Removed oklch to prevent SCSS compilation errors
   ========================================= */
/* ---------------------------------------------  ユーティリティー  -------------------------------------------------------------------------- */
.u-align-self-center {
  align-self: center !important;
}

.u-border-bottom {
  border-bottom: 1px #333333 solid;
}

.u-color-accent-light {
  color: #fef2f2 !important;
}

.u-color-accent {
  color: #ef4444 !important;
}

.u-color-accent-deep {
  color: #dc2626 !important;
}

.u-color-gradient-main {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.u-color-nomal {
  color: #222222 !important;
}

.u-color-main {
  color: #0ea5e9 !important;
}

.u-color-main-deep {
  color: #0284c7 !important;
}

.u-color-warm {
  color: #f97316 !important;
}

.u-color-white {
  color: white !important;
}

.u-danger-high {
  color: #dc2626 !important;
  font-weight: 700 !important;
}

.u-danger-medium {
  color: #ef4444 !important;
  font-weight: 600 !important;
}

.u-font-family-serif {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

.u-fontsize-3rem {
  font-size: 3rem !important;
}

.u-fontsize-2rem {
  font-size: 2rem !important;
}

.u-fontsize-1p8rem {
  font-size: 1.8rem !important;
}

.u-fontsize-1p6rem {
  font-size: 1.6rem !important;
}

.u-fontsize-1p5rem {
  font-size: 1.5rem !important;
}

.u-fontsize-1p1rem {
  font-size: 1.1rem !important;
}

.u-font-weight-700 {
  font-weight: 700 !important;
}

.u-green-icon {
  color: #0ea5e9 !important;
}

.u-line-hight-default {
  line-height: 1.5 !important;
}

.u-line-hight-2rem {
  line-height: 2 !important;
}

.u-margin-bottom-0 {
  margin-bottom: 0 !important;
}

.u-margin-bottom-2rem {
  margin-bottom: 2rem !important;
}

.u-margin-bottom-3rem {
  margin-bottom: 3rem !important;
}

.u-margin-bottom-4rem {
  margin-bottom: 4rem !important;
}

.u-margin-bottom-8rem {
  margin-bottom: 8rem !important;
}

.u-margin-bottom-12rem {
  margin-bottom: 12rem !important;
}

.u-margin-bottom-16rem {
  margin-bottom: 16rem !important;
}

.u-margin-center {
  margin: 0 auto !important;
}

.u-margin-left-2rem {
  margin-left: 2rem !important;
}

.u-margin-top-1rem {
  margin-top: 1rem !important;
}

.u-margin-top-4rem {
  margin-top: 4rem !important;
}

.u-margin-top-6rem {
  margin-top: 6rem !important;
}

.u-no-border-bottom {
  border-bottom: none !important;
}

.u-orange-icon {
  color: #ef4444;
}

.u-orange-top-border {
  border-top: 2px solid #ef4444 !important;
}

.u-padding-4rem {
  padding: 4rem !important;
}

.u-padding-9rem {
  padding: 9rem !important;
}

.u-padding-bottom-2rem {
  padding: 9rem !important;
}

.u-text-align-center {
  text-align: center !important;
}

.u-text-align-left {
  text-align: left !important;
}

.u-text-align-right {
  text-align: right !important;
}

.u-ul-default {
  list-style: none !important;
  margin-left: 0 !important;
}

.u-width-80 {
  width: 80%;
}

.u-width-60 {
  width: 60%;
}

/* --------------------------------------------------  汎用  ------------------------------------------------------------------------------- */
.newblogCont {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  font-size: 1.6rem;
  color: #222222;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  margin: 0 auto;
}
.newblogCont p {
  line-height: 2;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.newblogCont sup {
  vertical-align: super;
  font-size: smaller;
}

strong {
  color: #0284c7;
  font-weight: 600;
  position: relative;
  padding: 0 0.3em;
}

svg {
  max-width: 100%;
  height: auto;
}

.svgBox {
  text-align: center;
}

.styleNone {
  list-style: none !important;
  margin-left: 0 !important;
}

.iconCircle {
  width: 60px;
  height: 60px;
  background-color: #fef2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.iconCircle i {
  font-size: 1.5em;
  color: white;
}

.icon-circle02 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}
.icon-circle02--center {
  margin: 0 auto;
}

.imageContainer {
  margin: 3em 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.imageContainer img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.12),
    0 12px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.imageContainer:hover img {
  transform: scale(1.03);
}

.iconCheck {
  color: #0ea5e9;
  font-size: 1.8rem;
}

.iconCross {
  color: #e74c3c;
  font-size: 1.8rem;
}

.fadeIn {
  opacity: 0;
  transform: translateY(3rem);
  transition: all 0.8s ease-out !important;
}
.fadeIn.visible {
  opacity: 1;
  transform: translateY(0);
}
.fadeIn--delay1 {
  transition-delay: 0.2s !important;
}
.fadeIn--delay2 {
  transition-delay: 0.4s !important;
}
.fadeIn--delay3 {
  transition-delay: 0.6s !important;
}
.fadeIn--delay4 {
  transition-delay: 0.8s !important;
}

.leftIn {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease-out !important;
}
.leftIn.visible {
  opacity: 1;
  transform: translateX(0);
}

.rightIn {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s ease-out !important;
}
.rightIn.visible {
  opacity: 1;
  transform: translateX(0);
}

.featureImage {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 3rem 0;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.featureImage:hover {
  transform: scale(1.02);
}

.blog-image {
  width: 100%;
  height: auto;
  margin: 3rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease-out;
}
.blog-image.visible {
  opacity: 1;
  transform: scale(1);
}
.blog-image:hover img {
  transform: scale(1.05);
}

.parallax-image {
  width: 100%;
  height: 500px;
  margin: 4rem 0;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.parallax-image.visible {
  opacity: 1;
  transform: scale(1);
}
.parallax-image img {
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  position: absolute;
  top: -10%;
  left: 0;
  transition: transform 0.5s ease;
}
.parallax-image :hover img {
  transform: scale(1.05);
}

.image-wrapper {
  width: 100%;
  margin: 5rem 0;
  overflow: hidden;
  border-radius: 8px;
}
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease-out;
}
.image-wrapper:hover img {
  transform: scale(1.02);
}
.image-wrapper .image-caption {
  font-size: 1.3rem;
  color: #222222;
  text-align: center;
  margin-top: 1.2rem;
  font-style: italic;
}

/*　新年親睦会　*/
.label01 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  list-style: none !important;
  margin-left: 0 !important;
}
.label01__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #f0f9ff;
  padding: 0.8rem 1.4rem;
  border-radius: 25px;
  font-size: 1.4rem;
  color: #0284c7;
  font-weight: 500;
  transition: all 0.3s ease;
}
.label01__item:hover {
  background: #0ea5e9;
  color: white;
  transform: translateY(-2px);
}
.label01__item i {
  font-size: 1.2rem;
}

/* フローティングアクセント */
.floating-accent {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, #fef2f2, transparent);
  opacity: 0.1;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/*　収納　*/
.step-number {
  display: inline-block;
  width: 4.8rem;
  height: 4.8rem;
  line-height: 4.8rem;
  text-align: center;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.6rem;
}

/* 2026補助金 */
.priority-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 770px) {
  .priority-badge {
    font-size: 1.2rem;
    padding: 0.3rem 1rem;
  }
}

.priority-high {
  background-color: #ef4444;
  color: white;
}

.priority-highest {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 0.2rem 0.8rem rgba(232, 160, 43, 0.3);
}

/* 高圧洗浄 */
.priority-badge02,
.priority-badge02--extreme,
.priority-badge02--medium,
.priority-badge02--high {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}
.priority-badge02--high {
  background: #fee2e2;
  color: #dc2626;
}
.priority-badge02--medium {
  background: #fef3c7;
  color: #d97706;
}
.priority-badge02--extreme {
  background: #dc2626;
  color: white;
}

/* 凍害 */
.rating,
.rating--fair,
.rating--good,
.rating--excellent {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.4rem;
}
.rating--excellent {
  background: rgba(74, 172, 168, 0.15);
  color: #0284c7;
}
.rating--good {
  background: rgba(232, 160, 43, 0.15);
  color: #dc2626;
}
.rating--fair {
  background: rgba(224, 224, 224, 0.5);
  color: #222222;
}

/* 下地処理 /*/
.good-answer {
  color: #0284c7;
  padding: 1rem 1.5rem;
  background: rgba(74, 172, 168, 0.05);
  border-radius: 6px;
  margin: 1rem 0;
}

.bad-answer {
  color: #c0392b;
  padding: 1rem 1.5rem;
  background: rgba(192, 57, 43, 0.05);
  border-radius: 6px;
  margin: 1rem 0;
}

/* 屋根選び */
.rating-stars {
  display: inline-flex;
  gap: 0.3rem;
  margin-left: 0.8rem;
}
.rating-stars i {
  color: #ef4444;
  font-size: 1.4rem;
}

/* 高圧洗浄 */
.warning-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #ef4444;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/*　年間カレンダー　*/
.title-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------  ヘッダー  ------------------------------------------------------------------------------- */
.blogHeader {
  text-align: center;
  margin-bottom: 6rem;
  background: linear-gradient(135deg, #f0f9ff 0%, rgba(255, 255, 255, 0.95) 100%);
  padding: 4rem 3rem 5rem;
  border-radius: 2rem 2rem 0 0;
  position: relative;
  overflow: hidden;
}
.blogHeader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9 30%, #0284c7 70%);
}
.blogHeader::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
}
.blogHeader .blogSubtitle {
  font-size: 1.9rem;
  font-weight: 300;
  color: #222222;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.urgentBadge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 1rem 2.4rem;
  border-radius: 3rem;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  box-shadow:
    0 8px 16px rgba(232, 160, 43, 0.3),
    0 4px 8px rgba(232, 160, 43, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.urgentBadge i {
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.heroSection {
  background: linear-gradient(135deg, #f0f9ff 0%, #fffbf7 100%);
  padding: 4rem 0;
  margin-bottom: 4rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}
.heroSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.4rem;
  background: linear-gradient(90deg, #ef4444, #fef2f2);
}
.heroSection .heroSubtitle {
  font-size: 1.8rem;
  text-align: center;
  color: #222222;
  margin-bottom: 3rem;
}

.heroSection02 {
  position: relative;
  min-height: 400px;
  margin: 0 -2rem 6rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 770px) {
  .heroSection02 {
    min-height: 200px;
  }
}
.heroSection02__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(0.7);
}
.heroSection02__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 2rem;
  max-width: 850px;
}
.heroSection02 h3 {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-family: "Noto Serif JP", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.opening-date {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: #0284c7;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

/* --------------------------------------------------  見出し  ------------------------------------------------------------------------------- */
.newblogTitle01 {
  font-size: 2em !important;
  text-align: center;
  margin-top: 1em !important;
  color: #0284c7;
  border-bottom: 3px solid #0ea5e9;
  padding-bottom: 0.3em !important;
  font-weight: 700 !important;
  margin-bottom: 0.8em;
}

.newblogTitle02 {
  font-size: 1.6em !important;
  border-left: 5px solid #ef4444;
  padding-left: 10px !important;
  font-weight: 700 !important;
  margin-top: 1.5em !important;
  margin-bottom: 0.8em !important;
  color: #0284c7;
}

.newblogTitle03 {
  font-size: 1.3em !important;
  color: #0284c7;
  font-weight: 700 !important;
  margin-bottom: 0.8em !important;
}

.newblogTitle04,
.newblogTitle04--orange-icon,
.newblogTitle04--green,
.newblogTitle04--center {
  font-size: 1.1em !important;
  color: #dc2626;
  margin-top: 0;
  font-weight: 700 !important;
  margin-bottom: 0.8em !important;
}
.newblogTitle04--center {
  color: #0284c7;
  text-align: center;
}
.newblogTitle04--green {
  color: #0ea5e9;
}
.newblogTitle04--orange-icon i {
  color: #ef4444;
}

.newblogTitleh301,
.newblog-title-h301 {
  font-size: clamp(2.4rem, 4vw, 3.6rem) !important;
  text-align: center;
  margin: 1em 0 1.2em !important;
  line-height: 1.5;
  color: #0284c7;
  border-bottom: 3px solid #0ea5e9;
  padding: 0.5em 0 0.3em !important;
  font-weight: 400 !important;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}
@media (max-width: 770px) {
  .newblogTitleh301,
  .newblog-title-h301 {
    padding-left: 1.5rem;
  }
}

.newblogTitle-h302,
.newblog-title-h302 {
  font-size: clamp(2.4rem, 4vw, 3.6rem) !important;
  position: relative;
  padding-left: 2rem !important;
  font-family: "Noto Serif JP", serif;
  color: #0284c7;
  line-height: 1.5 !important;
  margin-top: 4rem !important;
  margin-bottom: 2rem !important;
  font-weight: 600 !important;
}
.newblogTitle-h302::before,
.newblog-title-h302::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background: linear-gradient(to bottom, #ef4444, #fef2f2);
  border-radius: 2px;
}

.newblog-title-h303 {
  font-size: clamp(2.4rem, 4vw, 3.6rem) !important;
  font-weight: 600 !important;
  color: #0284c7;
  margin: 8rem 0 4rem !important;
  letter-spacing: 0.01em !important;
  position: relative;
  padding-bottom: 1.5rem !important;
  font-family: "Noto Serif JP", serif;
  border-bottom: 1px solid #e2e8f0;
}
.newblog-title-h303::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ef4444;
  border-radius: 2px;
  transition: width 0.3s ease-out;
}
.newblog-title-h303:hover::after {
  width: 100px;
}

.newblog-title-h304 {
  font-size: clamp(2.4rem, 4vw, 3.6rem) !important;
  font-weight: 600 !important;
  color: #0284c7;
  margin: 6rem 0 3rem !important;
  padding-bottom: 1.5rem !important;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

.newblog-title-h305 {
  font-size: clamp(36px, 4vw, 48px) !important;
  font-weight: 700 !important;
  color: transparent;
  -webkit-text-stroke: 2px #0ea5e9;
  text-stroke: 2px #0ea5e9;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.newblog-title-h305:hover {
  color: #0ea5e9;
  -webkit-text-stroke: 2px transparent;
  text-stroke: 2px transparent;
}

.newblog-title-h306 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem) !important;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 300 !important;
  color: #0284c7;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(74, 172, 168, 0.2);
}
.newblog-title-h306::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
}

.newblog-title-h307 {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem) !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  color: #222222;
  letter-spacing: 0.02em;
}
.newblog-title-h307::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}

.newblogTitleh401,
.newblog-title-h401 {
  color: #0284c7;
  font-size: clamp(2.2rem, 3.5vw, 3rem) !important;
  margin-top: 1.5em !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid #0ea5e9;
  position: relative;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}
@media (max-width: 770px) {
  .newblogTitleh401,
  .newblog-title-h401 {
    font-size: 1.3em !important;
  }
}
.newblogTitleh401::after,
.newblog-title-h401::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #ef4444;
}
.newblogTitleh401 i,
.newblog-title-h401 i {
  color: #ef4444;
}

.newblogTitleh402,
.newblog-title-h402 {
  color: #0284c7;
  font-size: 1.8em !important;
  margin-bottom: 25px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newblogTitleh402 i,
.newblog-title-h402 i {
  color: #ef4444;
  margin-right: 12px;
  font-size: 1.6em;
}
.newblogTitleh402--margin-bottom-4rem,
.newblog-title-h402--margin-bottom-4rem {
  margin-bottom: 4rem !important;
}

.newblogTitleh403,
.newblog-title-h403 {
  background: #0ea5e9;
  color: white;
  font-size: 1.6em !important;
  padding: 1.2rem 2rem !important;
  border-radius: 8px;
  margin-top: 1.5em !important;
  margin-bottom: 1.5em !important;
  box-shadow: 0 2px 8px rgba(74, 172, 168, 0.2);
}

.newblog-title-h404 {
  font-size: clamp(2rem, 3vw, 2.8rem) !important;
  color: #0ea5e9;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5 !important;
  margin-bottom: 2rem !important;
  font-weight: 600 !important;
}

.newblog-title-h405 {
  color: #dc2626;
  font-size: 1.6rem !important;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.newblog-title-h405 i {
  font-size: 1.8rem !important;
}

.newblog-title-h406 {
  font-size: 2rem !important;
  font-weight: 500 !important;
  color: #222222;
  margin: 3rem 0 1.5rem !important;
  padding-bottom: 0.8rem !important;
  border-bottom: 1px solid #e2e8f0;
}

.newblog-title-h407 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600 !important;
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
  line-height: 1.5 !important;
  margin-bottom: 2rem !important;
  color: #222222;
  padding-bottom: 1rem !important;
  border-bottom: 2px solid #fef2f2;
}
.newblog-title-h407--no-border {
  border-bottom: none;
}
.newblog-title-h407--color-accent {
  color: #ef4444;
}
.newblog-title-h407--color-main {
  color: #0284c7;
}

/* 高圧洗浄 */
.newblog-title-h408,
.newblog-title-h408--main-color {
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
  font-weight: 500 !important;
  border-left: none;
  padding-left: 0 !important;
  text-align: center;
}
.newblog-title-h408--main-color {
  color: #0284c7;
}

.newblogTitleh501,
.newblog-title-h501 {
  color: #0284c7;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem) !important;
  margin-bottom: 0.8em !important;
  position: relative;
  padding-left: 15px !important;
}
@media (max-width: 770px) {
  .newblogTitleh501,
  .newblog-title-h501 {
    font-size: 1.2em !important;
  }
}
.newblogTitleh501::before,
.newblog-title-h501::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  width: 5px;
  height: 1.3em;
  background-color: #ef4444;
  border-radius: 2px;
}
@media (max-width: 770px) {
  .newblogTitleh501::before,
  .newblog-title-h501::before {
    height: 100%;
  }
}
.newblogTitleh501--none,
.newblog-title-h501--none {
  color: #0284c7;
  font-size: 1.3em !important;
  margin-bottom: 0.8em !important;
  position: relative;
  padding-left: 15px !important;
}
.newblogTitleh501--none i,
.newblog-title-h501--none i {
  color: #ef4444;
}
.newblogTitleh501--margin-bottom-3rem,
.newblog-title-h501--margin-bottom-3rem {
  margin-bottom: 3rem !important;
}

.newblogTitleh502,
.newblogTitleh502--orange,
.newblog-title-h502--orange,
.newblog-title-h502 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem) !important;
  margin: 3rem 0 1.5rem !important;
  color: #0ea5e9 !important;
}
.newblogTitleh502 i,
.newblogTitleh502--orange i,
.newblog-title-h502--orange i,
.newblog-title-h502 i {
  color: #ef4444;
}
.newblogTitleh502--orange,
.newblog-title-h502--orange {
  color: #dc2626 !important;
  margin: 1.5rem 0 !important;
}

.newblogTitleh503,
.newblog-title-h503 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem) !important;
  font-weight: 500 !important;
  color: #222222;
  padding-bottom: 1rem !important;
  padding-left: 2rem !important;
  margin-bottom: 2rem !important;
  position: relative;
  transition: color 0.3s ease;
}
.newblogTitleh503::after,
.newblog-title-h503::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e2e8f0;
}
.newblogTitleh503::before,
.newblog-title-h503::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #ef4444, #fef2f2);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.newblogTitleh503:hover,
.newblog-title-h503:hover {
  color: #0ea5e9;
}
.newblogTitleh503:hover::before,
.newblog-title-h503:hover::before {
  background: linear-gradient(180deg, #0ea5e9, #f0f9ff);
}
.newblogTitleh503 i,
.newblog-title-h503 i {
  color: #ef4444;
  margin-right: 0.5em;
}

.newblogTitleh504,
.newblog-title-h504 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem) !important;
  font-weight: 700;
  color: #222222;
  margin: 4rem 0 2.4rem;
  text-align: center;
  position: relative;
  font-family: "Noto Serif JP", serif;
  padding: 2rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.newblogTitleh504::before,
.newblogTitleh504::after,
.newblog-title-h504::before,
.newblog-title-h504::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
  transition: all 0.4s ease-out;
}
.newblogTitleh504::before,
.newblog-title-h504::before {
  left: 0;
  transform: translateY(-50%) translateX(0px);
}
.newblogTitleh504::after,
.newblog-title-h504::after {
  right: 0;
  transform: translateY(-50%) translateX(0px);
}
.newblogTitleh504:hover,
.newblog-title-h504:hover {
  color: #dc2626;
  transform: scale(1.02);
}
.newblogTitleh504:hover::before,
.newblog-title-h504:hover::before {
  transform: translateY(-50%) translateX(20px);
  background: linear-gradient(90deg, transparent, #dc2626, #ef4444);
}
.newblogTitleh504:hover::after,
.newblog-title-h504:hover::after {
  transform: translateY(-50%) translateX(-20px);
  background: linear-gradient(90deg, #ef4444, #dc2626, transparent);
}

.newblogTitle-h505,
.newblogTitle-h505--orange,
.newblog-title-h505--orange,
.newblog-title-h505 {
  font-size: clamp(2rem, 3vw, 2.4rem) !important;
  font-weight: 500 !important;
  color: #0ea5e9;
}
.newblogTitle-h505--orange,
.newblog-title-h505--orange {
  color: #dc2626 !important;
}

.newblog-title-h506 {
  color: #dc2626;
  font-size: 1.8rem !important;
  margin-bottom: 1.5rem !important;
  font-weight: 600 !important;
}
.newblog-title-h506--color-green {
  color: #0ea5e9;
}

.newblog-title-h507,
.newblog-title-h507--orange-color {
  font-size: 1.8rem !important;
  font-weight: 500 !important;
  color: #0284c7;
  margin: 3rem 0 1.5rem !important;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.newblog-title-h507::before,
.newblog-title-h507--orange-color::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #fef2f2;
}
.newblog-title-h507--orange-color {
  color: #dc2626;
}

.newblog-title-h508 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  margin-bottom: 2.4rem !important;
  color: #1a1a1a !important;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem) !important;
  margin-top: 4rem !important;
  padding-bottom: 1rem !important;
  border-bottom: 0.2rem solid #f0f9ff;
}

.newblog-title-h509 {
  font-size: clamp(2rem, 3vw, 2.4rem) !important;
  font-weight: 500 !important;
  font-family: "Noto Serif JP", serif;
}
.newblog-title-h509--small {
  font-size: clamp(1.6rem, 2.4vw, 2rem) !important;
}
.newblog-title-h509--nomal {
  color: #222222;
}
.newblog-title-h509--main {
  color: #0284c7;
}
.newblog-title-h509--accent {
  color: #ef4444;
}

/* 高圧洗浄 */
.newblog-title-h510,
.newblog-title-h510--accent,
.newblog-title-h510--main {
  font-size: clamp(1.6rem, 2.5vw, 2rem) !important;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem !important;
  padding-bottom: 1rem !important;
  border-bottom: 2px solid;
}
.newblog-title-h510--main {
  color: #0284c7;
  border-color: #0ea5e9;
}
.newblog-title-h510--accent {
  color: #ef4444;
  border-color: #ef4444;
}

/*　年間カレンダー　*/
.newblog-title-h511 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  color: #222222;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.newblog-title-h511__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newblog-title-h511__icon i {
  color: white;
  font-size: 1.6rem;
}

.newblogTitleh601 {
  color: #0284c7;
  font-weight: 500;
  font-size: 1.25em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.newblogTitleh601 i {
  background-color: #ef4444;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5em;
}

.newblogTitleh602,
.ctaBox02 h6 {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  margin: 1.5rem 0;
  color: #222222 !important;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.newblogTitleh602::before,
.ctaBox02 h6::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #fef2f2;
}

.newblogTitleh603 {
  color: #0ea5e9 !important;
  font-size: 1.8rem !important;
  margin-bottom: 1rem !important;
}
.newblogTitleh603 i {
  color: #ef4444;
  margin-right: 1rem;
}

.newblogTitleh604 {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  color: #0ea5e9 !important;
  margin: 2rem 0 1rem !important;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(90deg, rgba(74, 172, 168, 0.05) 0%, transparent 100%);
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
}
.newblogTitleh604::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
}

/* -------------------------------------------------- イントロ ----------------------------------------------------------------------------- */
.introSection {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(74, 172, 168, 0.3);
  border-radius: 1.2rem;
  padding: 3rem;
  margin: 4rem 0;
  position: relative;
}
.introSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  width: 6rem;
  height: 0.4rem;
  background: #ef4444;
  border-radius: 0.2rem;
}

.introSection02 {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #222222;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease 0.2s forwards;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* --------------------------------------------------  囲い  ------------------------------------------------------------------------------- */
/* ---------------------------- 水色背景box ------------------------ */
.contentBlock01,
.contentBlock01--pulse,
.contentBlock01--left-orange-line,
.contentBlock01--orange-left-line,
.contentBlock01--accent-left-line,
.contentBlock01--waku,
.contentBlock01--green-top-line,
.contentBlock01--main-top-line,
.contentBlock01--line,
.contentBlock01--main-left-line {
  background-color: #f0f9ff;
  padding: 24px;
  border-radius: 8px;
  margin: 15px 0;
  position: relative;
}
.contentBlock01 p:last-child,
.contentBlock01--pulse p:last-child,
.contentBlock01--left-orange-line p:last-child,
.contentBlock01--orange-left-line p:last-child,
.contentBlock01--accent-left-line p:last-child,
.contentBlock01--waku p:last-child,
.contentBlock01--green-top-line p:last-child,
.contentBlock01--main-top-line p:last-child,
.contentBlock01--line p:last-child,
.contentBlock01--main-left-line p:last-child {
  margin-bottom: 0;
}
@media (max-width: 770px) {
  .contentBlock01,
  .contentBlock01--pulse,
  .contentBlock01--left-orange-line,
  .contentBlock01--orange-left-line,
  .contentBlock01--accent-left-line,
  .contentBlock01--waku,
  .contentBlock01--green-top-line,
  .contentBlock01--main-top-line,
  .contentBlock01--line,
  .contentBlock01--main-left-line {
    padding: 15px;
  }
}
.contentBlock01 ul,
.contentBlock01--pulse ul,
.contentBlock01--left-orange-line ul,
.contentBlock01--orange-left-line ul,
.contentBlock01--accent-left-line ul,
.contentBlock01--waku ul,
.contentBlock01--green-top-line ul,
.contentBlock01--main-top-line ul,
.contentBlock01--line ul,
.contentBlock01--main-left-line ul {
  margin-left: 0;
}
.contentBlock01 li,
.contentBlock01--pulse li,
.contentBlock01--left-orange-line li,
.contentBlock01--orange-left-line li,
.contentBlock01--accent-left-line li,
.contentBlock01--waku li,
.contentBlock01--green-top-line li,
.contentBlock01--main-top-line li,
.contentBlock01--line li,
.contentBlock01--main-left-line li {
  line-height: 2;
}
.contentBlock01 h5,
.contentBlock01--pulse h5,
.contentBlock01--left-orange-line h5,
.contentBlock01--orange-left-line h5,
.contentBlock01--accent-left-line h5,
.contentBlock01--waku h5,
.contentBlock01--green-top-line h5,
.contentBlock01--main-top-line h5,
.contentBlock01--line h5,
.contentBlock01--main-left-line h5,
.contentBlock01 h6,
.contentBlock01--pulse h6,
.contentBlock01--left-orange-line h6,
.contentBlock01--orange-left-line h6,
.contentBlock01--accent-left-line h6,
.contentBlock01--waku h6,
.contentBlock01--green-top-line h6,
.contentBlock01--main-top-line h6,
.contentBlock01--line h6,
.contentBlock01--main-left-line h6 {
  color: #0284c7;
  font-weight: 700;
  margin-bottom: 0.8em;
  font-size: 1.1em;
}
.contentBlock01--line,
.contentBlock01--main-left-line {
  border-left: 4px solid #0284c7;
}
.contentBlock01--green-top-line,
.contentBlock01--main-top-line {
  border-top: 4px solid #0284c7;
}
.contentBlock01--waku {
  border: 1px solid #0284c7;
}
.contentBlock01--waku h6 {
  color: #0284c7;
}
.contentBlock01--left-orange-line,
.contentBlock01--orange-left-line,
.contentBlock01--accent-left-line {
  border-left: 4px solid #ef4444;
}
.contentBlock01--pulse::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #fef2f2 0%, transparent 70%);
  opacity: 0.1;
  -webkit-animation: pulse02 3s ease-in-out infinite;
  animation: pulse02 3s ease-in-out infinite;
}
.contentBlock01__icon {
  position: absolute;
  top: -20px;
  left: 1.5em;
  background-color: #0284c7;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------- オレンジ背景box ------------------------ */
.contentBlock02,
.contentBlock02--orange-bottom-line,
.contentBlock02--orange-top-line,
.contentBlock02--accent-top-line,
.contentBlock02--back-offwhite,
.contentBlock02--pulse,
.contentBlock02--waku,
.contentBlock02--line {
  background-color: #fffbf7;
  padding: 24px;
  margin: 32px 0;
  border-radius: 8px;
  position: relative;
}
.contentBlock02 p:last-child,
.contentBlock02--orange-bottom-line p:last-child,
.contentBlock02--orange-top-line p:last-child,
.contentBlock02--accent-top-line p:last-child,
.contentBlock02--back-offwhite p:last-child,
.contentBlock02--pulse p:last-child,
.contentBlock02--waku p:last-child,
.contentBlock02--line p:last-child {
  margin-bottom: 0;
}
@media (max-width: 770px) {
  .contentBlock02,
  .contentBlock02--orange-bottom-line,
  .contentBlock02--orange-top-line,
  .contentBlock02--accent-top-line,
  .contentBlock02--back-offwhite,
  .contentBlock02--pulse,
  .contentBlock02--waku,
  .contentBlock02--line {
    padding: 15px;
  }
}
.contentBlock02 h5,
.contentBlock02--orange-bottom-line h5,
.contentBlock02--orange-top-line h5,
.contentBlock02--accent-top-line h5,
.contentBlock02--back-offwhite h5,
.contentBlock02--pulse h5,
.contentBlock02--waku h5,
.contentBlock02--line h5,
.contentBlock02 h6,
.contentBlock02--orange-bottom-line h6,
.contentBlock02--orange-top-line h6,
.contentBlock02--accent-top-line h6,
.contentBlock02--back-offwhite h6,
.contentBlock02--pulse h6,
.contentBlock02--waku h6,
.contentBlock02--line h6 {
  color: #dc2626;
  font-size: 1.2em;
  margin-bottom: 20px;
}
.contentBlock02--line {
  border-left: 4px solid #ef4444;
}
.contentBlock02--waku {
  border: 1px solid #ef4444;
}
.contentBlock02--waku h6 {
  color: #dc2626;
}
.contentBlock02--pulse::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #fef2f2 0%, transparent 70%);
  opacity: 0.1;
  -webkit-animation: pulse 3s ease-in-out infinite;
  animation: pulse 3s ease-in-out infinite;
}
.contentBlock02--back-offwhite {
  background-color: #f8fafc;
}
.contentBlock02--orange-top-line,
.contentBlock02--accent-top-line {
  border-top: 2px solid #ef4444;
}
.contentBlock02--orange-bottom-line {
  border-bottom: 2px solid #ef4444;
}
.contentBlock02__icon {
  position: absolute;
  top: -15px;
  left: 1.5em;
  background-color: #ef4444;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------- 水白グラデ背景box ------------------------ */
.contentBlock03,
.contentBlock03--no-shadow {
  font-size: 1.9rem;
  font-weight: 400;
  color: #0284c7;
  background: linear-gradient(135deg, #f0f9ff 0%, rgba(255, 255, 255, 0.8) 100%);
  padding: 3rem;
  border-radius: 1.2rem;
  margin: 3rem 0;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  line-height: 1.9;
}
.contentBlock03 p:last-child,
.contentBlock03--no-shadow p:last-child {
  margin-bottom: 0;
}
.contentBlock03::before,
.contentBlock03--no-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1.2rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(74, 172, 168, 0.2), rgba(255, 255, 255, 0.1));
  -webkit-mask:
    linear-gradient(white 0 0) content-box,
    linear-gradient(white 0 0);
  mask:
    linear-gradient(white 0 0) content-box,
    linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.contentBlock03 i,
.contentBlock03--no-shadow i {
  color: #ef4444;
  margin-right: 1.2rem;
}
.contentBlock03--line,
.contentBlock03--main-left-line {
  border-left: 4px solid #0ea5e9;
}
.contentBlock03--main-top-line {
  border-top: 4px solid #0ea5e9;
}
.contentBlock03--orange-line {
  border-left: 4px solid #ef4444;
}
.contentBlock03--reverse {
  background: linear-gradient(135deg, white 0%, #f0f9ff 100%);
}
.contentBlock03--reverse h5,
.contentBlock03--reverse h6 {
  font-size: 2.2rem;
}
.contentBlock03--no-shadow {
  box-shadow: none;
}
.contentBlock03--orange-top-anime {
  overflow: hidden;
}
.contentBlock03--orange-top-anime::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ef4444, #fef2f2, #ef4444);
  -webkit-animation: shimmer02 3s infinite;
  animation: shimmer02 3s infinite;
}
.contentBlock03--orange-bottom-anime {
  overflow: hidden;
}
.contentBlock03--orange-bottom-anime::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ef4444, #fef2f2, #ef4444);
  -webkit-animation: shimmer02 3s infinite;
  animation: shimmer02 3s infinite;
}
.contentBlock03--nomal-font {
  color: black;
}
.contentBlock03__icon {
  position: absolute;
  top: -15px;
  left: 1.5em;
  background-color: #0284c7;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contentBlock03__icon i {
  color: white;
  margin-right: 0;
}

/* ---------------------------- 水黄グラデ背景box ------------------------ */
.contentBlock04,
.contentBlock04--line,
.contentBlock04--waku,
.contentBlock04--no-shadow {
  background: linear-gradient(135deg, #f0f9ff 0%, #fffbf7 100%);
  padding: 4rem;
  border-radius: 2rem;
  text-align: center;
  margin: 5rem 0;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
}
@media (max-width: 770px) {
  .contentBlock04,
  .contentBlock04--line,
  .contentBlock04--waku,
  .contentBlock04--no-shadow {
    padding: 3rem 2rem;
  }
}
.contentBlock04--no-shadow {
  box-shadow: none;
}
.contentBlock04--waku::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 2rem;
  padding: 2px;
  background: linear-gradient(135deg, #0ea5e9, transparent 50%, #0ea5e9);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.contentBlock04--line {
  border-left: 4px solid #ef4444;
}
.contentBlock04--main-top-pointline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  border-radius: 2px;
}
.contentBlock04 h5,
.contentBlock04--no-shadow h5,
.contentBlock04--waku h5,
.contentBlock04--line h5,
.contentBlock04 h6,
.contentBlock04--no-shadow h6,
.contentBlock04--waku h6,
.contentBlock04--line h6 {
  color: #0284c7;
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.contentBlock04 h5 i,
.contentBlock04--no-shadow h5 i,
.contentBlock04--waku h5 i,
.contentBlock04--line h5 i,
.contentBlock04 h6 i,
.contentBlock04--no-shadow h6 i,
.contentBlock04--waku h6 i,
.contentBlock04--line h6 i {
  color: #ef4444;
  margin-right: 1.2rem;
}
.contentBlock04 .phoneNumber,
.contentBlock04--no-shadow .phoneNumber,
.contentBlock04--waku .phoneNumber,
.contentBlock04--line .phoneNumber {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0284c7;
  margin: 1.5rem 0;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(45, 138, 134, 0.1);
}
@media (max-width: 770px) {
  .contentBlock04 .phoneNumber,
  .contentBlock04--no-shadow .phoneNumber,
  .contentBlock04--waku .phoneNumber,
  .contentBlock04--line .phoneNumber {
    font-size: 2.4rem;
  }
}
.contentBlock04 .phoneNumber i,
.contentBlock04--no-shadow .phoneNumber i,
.contentBlock04--waku .phoneNumber i,
.contentBlock04--line .phoneNumber i {
  color: #0ea5e9;
  margin-right: 1.2rem;
}
.contentBlock04 p,
.contentBlock04--no-shadow p,
.contentBlock04--waku p,
.contentBlock04--line p {
  color: #222222;
  margin-bottom: 2.4rem;
  text-align: justify;
  line-height: 1.9;
  font-weight: 400;
}

/* -------------------------------------- グレー背景 ---------------------------------- */
.contentBlock05 {
  background: #f8fafc;
  padding: 3rem;
  margin: 3rem 0;
  position: relative;
  font-size: 1.8rem;
  line-height: 2;
  color: #222222;
}
.contentBlock05--radius {
  border-radius: 15px;
}
.contentBlock05 h6 {
  color: #0284c7;
  margin-bottom: 1rem;
}
.contentBlock05__icon {
  position: absolute;
  top: -20px;
  left: 1.5em;
  background-color: #0284c7;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contentBlock05__icon i {
  color: white;
  margin-right: 0;
}
.contentBlock05--orangeLine {
  border-left: 4px solid #ef4444;
}
.contentBlock05--green-left-line {
  border-left: 4px solid #0284c7 !important;
}
.contentBlock05--main-top-line {
  border-top: 4px solid #0284c7 !important;
}
.contentBlock05--pet {
  border: 1px solid #e2e8f0;
}
.contentBlock05--pet::before {
  content: "🐾";
  position: absolute;
  top: 20px;
  right: -20px;
  font-size: 80px;
  opacity: 0.1;
  transform: rotate(-15deg);
}
.contentBlock05--hover {
  border: 1px solid transparent;
}
.contentBlock05--hover:hover {
  transform: translateY(-5px);
  border-color: #ef4444;
  box-shadow: 0 10px 30px rgba(232, 160, 43, 0.1);
}
.contentBlock05--left-hover:hover {
  transform: translateX(0.8rem);
}
.contentBlock05--padding-9rem {
  padding: 9rem;
}

/* -------------------------------------- オレンジ白グラデ背景 ---------------------------------- */
.contentBlock06,
.contentBlock06--no-shadow,
.contentBlock06--pulse,
.contentBlock06--waku,
.contentBlock06--top-orange-line,
.contentBlock06--line,
.contentBlock06--left-orange-line {
  background: linear-gradient(135deg, #fffbf7 0%, white 100%);
  border-radius: 15px;
  padding: 3rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(232, 160, 43, 0.1);
}
.contentBlock06 p:last-child,
.contentBlock06--no-shadow p:last-child,
.contentBlock06--pulse p:last-child,
.contentBlock06--waku p:last-child,
.contentBlock06--top-orange-line p:last-child,
.contentBlock06--line p:last-child,
.contentBlock06--left-orange-line p:last-child {
  margin-bottom: 0;
}
.contentBlock06 h5,
.contentBlock06--no-shadow h5,
.contentBlock06--pulse h5,
.contentBlock06--waku h5,
.contentBlock06--top-orange-line h5,
.contentBlock06--line h5,
.contentBlock06--left-orange-line h5,
.contentBlock06 h6,
.contentBlock06--no-shadow h6,
.contentBlock06--pulse h6,
.contentBlock06--waku h6,
.contentBlock06--top-orange-line h6,
.contentBlock06--line h6,
.contentBlock06--left-orange-line h6 {
  color: #dc2626;
  font-size: 1.2em;
  margin-bottom: 20px;
}
.contentBlock06--line,
.contentBlock06--left-orange-line {
  border-left: 4px solid #ef4444;
}
.contentBlock06--top-orange-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #fef2f2);
}
.contentBlock06--waku {
  border: 1px solid #ef4444;
}
.contentBlock06--waku h6 {
  color: #dc2626;
}
.contentBlock06--pulse::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #fef2f2 0%, transparent 70%);
  opacity: 0.1;
  -webkit-animation: pulse 3s ease-in-out infinite;
  animation: pulse 3s ease-in-out infinite;
}
.contentBlock06--no-shadow {
  box-shadow: none;
}
.contentBlock06__icon {
  position: absolute;
  top: -15px;
  left: 1.5em;
  background-color: #ef4444;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------- 白背景 ---------------------------------- */
.contentBlock07,
.contentBlock07--green-left-line,
.contentBlock07--main-left-line,
.contentBlock07--orange-left-line,
.contentBlock07--accent-left-line {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.5rem;
  padding: 3rem;
  margin: 3rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.contentBlock07 p:last-child,
.contentBlock07--green-left-line p:last-child,
.contentBlock07--main-left-line p:last-child,
.contentBlock07--orange-left-line p:last-child,
.contentBlock07--accent-left-line p:last-child {
  margin-bottom: 0;
}
.contentBlock07--top-green-line,
.contentBlock07--main-top-line {
  border-top: 4px solid #0ea5e9;
}
.contentBlock07--orange-left-line,
.contentBlock07--accent-left-line {
  border-left: 4px solid #ef4444;
}
.contentBlock07--green-left-line,
.contentBlock07--main-left-line {
  border-left: 4px solid #0ea5e9;
}
.contentBlock07--border {
  border: 1px solid #cccccc;
}
.contentBlock07--main-border {
  border: 2px solid #0284c7;
}
.contentBlock07--no-shadow {
  box-shadow: none;
}
.contentBlock07__green-icon {
  position: absolute;
  top: -15px;
  left: 1.5em;
  background-color: #0ea5e9;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contentBlock07__badge {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  color: white;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
  white-space: nowrap;
}

/* -------------------------------------- 白～薄灰背景 ---------------------------------- */
.contentBlock08 {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 247, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(224, 224, 224, 0.5);
  padding: 5rem;
  border-radius: 2rem;
  margin-bottom: 7rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.contentBlock08:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.contentBlock08::before {
  content: "";
  position: absolute;
  top: -100%;
  right: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle at center, rgba(232, 160, 43, 0.03) 0%, transparent 70%);
  -webkit-animation: float 20s ease-in-out infinite;
  animation: float 20s ease-in-out infinite;
}

/* -------------------------------------- 薄水色～薄黄色背景 ---------------------------------- */
.contentBlock09,
.contentBlock09--orangeLine {
  background: linear-gradient(135deg, rgba(74, 172, 168, 0.05) 0%, rgba(249, 184, 87, 0.08) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(74, 172, 168, 0.08);
}
.contentBlock09--orangeLine {
  border-left: 4px solid #ef4444;
}

/* -------------------------------------- 白～薄灰　上下グラデ背景 ---------------------------------- */
.contentBlock10,
.contentBlock10--top-orange-line {
  margin: 3rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, white 0%, #f8fafc 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.contentBlock10:hover,
.contentBlock10--top-orange-line:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contentBlock10--top-orange-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #fef2f2);
}

/* -------------------------------------- 薄灰～白　左右グラデ ---------------------------------- */
.contentBlock11,
.contentBlock11--reverce,
.contentBlock11--radius,
.contentBlock11--green-left-line,
.contentBlock11--orange-left-line,
.contentBlock11--left-orange-line {
  margin: 3rem 0;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, white 100%);
}
.contentBlock11--left-orange-line {
  border-left: 4px solid #ef4444;
}
.contentBlock11--orange-left-line {
  border-left: 4px solid #ef4444;
}
.contentBlock11--green-left-line {
  border-left: 4px solid #0ea5e9;
}
.contentBlock11--radius {
  border-radius: 12px;
}
.contentBlock11__icon {
  position: absolute;
  top: -15px;
  left: 1.5em;
  background-color: #ef4444;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contentBlock11--reverce {
  background: linear-gradient(135deg, white 0%, #f8fafc 100%);
}

/* -------------------------------------- 水色～灰　左右グラデ ---------------------------------- */
.contentBlock12,
.contentBlock12--left-green-line,
.contentBlock12--left-orange-line {
  background: linear-gradient(135deg, #f0f9ff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 2.4rem 3rem;
  margin: 3rem 0;
  border-radius: 0 8px 8px 0;
  position: relative;
  overflow: hidden;
}
.contentBlock12--left-orange-line {
  border-left: 4px solid #ef4444;
}
.contentBlock12--left-green-line {
  border-left: 4px solid #0284c7;
}

/* ---------------------------------------- 白背景 ボーダー ------------------------------------- */
.contentBlock13 {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #e2e8f0;
  padding: 3rem;
  margin: 3rem 0;
  position: relative;
  transition: all 0.5s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(48, 48, 48, 0.05);
}
.contentBlock13 p:last-child {
  margin-bottom: 0;
}
.contentBlock13--radius {
  border-radius: 12px;
}
.contentBlock13--orange-top-line::before,
.contentBlock13--accent-top-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.contentBlock13--orange-left-line,
.contentBlock13--accent-left-line {
  border-left: 4px solid #ef4444;
}
.contentBlock13--green-left-line,
.contentBlock13--main-left-line {
  border-left: 4px solid #0ea5e9;
}
.contentBlock13--main-top-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}
.contentBlock13--hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(120, 120, 120, 0.15);
}
.contentBlock13--left-hover:hover {
  transform: translateX(0.8rem);
}
.contentBlock13--no-border {
  border: none;
}
.contentBlock13--no-shadow {
  box-shadow: none;
}
.contentBlock13--orange-top-icon,
.contentBlock13--accent-top-icon {
  overflow: visible;
}
.contentBlock13--orange-top-icon::before,
.contentBlock13--accent-top-icon::before {
  content: "\f0eb";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: -15px;
  left: 30px;
  font-size: 3rem;
  color: #ef4444;
  background: white;
  padding: 0 1rem;
}
.contentBlock13__top-icon,
.contentBlock13__top-icon--accent {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  padding: 0 1rem;
  margin: 0;
}
.contentBlock13__top-icon--accent {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.contentBlock13__number {
  font-size: clamp(4rem, 6vw, 6.4rem);
  font-weight: 700;
  color: #ef4444;
  font-family: "Noto Serif JP", serif;
  display: block;
  margin-bottom: 1.6rem;
}
.contentBlock13__icon {
  padding: 2rem;
  position: absolute;
  top: -50px;
  left: 1.5em;
  background-color: #ef4444;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contentBlock13__product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
}

/* -------------------------------------- 薄水色～白、左右グラデ背景 ---------------------------------- */
.contentBlock14,
.contentBlock14--green-left-line,
.contentBlock14--orange-left-line {
  background: linear-gradient(135deg, rgba(74, 172, 168, 0.05), rgba(74, 172, 168, 0.02));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 3.2rem;
  margin: 3rem 0;
  border-radius: 0.4rem;
  position: relative;
}
.contentBlock14--orange-left-line {
  border-left: 0.4rem solid #ef4444;
}
.contentBlock14--green-left-line {
  border-left: 0.4rem solid #0284c7;
}

/* -------------------------------------- 完全白背景 ---------------------------------- */
.contentBlock15,
.contentBlock15--shadow,
.contentBlock15--green-left-line {
  margin: 3.2rem 0;
  padding: 3.2rem 3rem;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.contentBlock15--green-left-line {
  border-left: 3px solid #0ea5e9;
}
.contentBlock15--shadow {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* -------------------------------------- 赤背景 ---------------------------------- */
/*　雨樋　*/
.contentBlock16 {
  position: relative;
  background: #fef2f2;
  padding: 2.5rem 2.5rem 2.5rem 3rem;
}
.contentBlock16--accent-left-line {
  border-left: 4px solid #ef4444;
}
.contentBlock16--accent-top-line {
  border-top: 4px solid #ef4444;
}
.contentBlock16--radius {
  border-radius: 0 12px 12px 0;
}
.contentBlock16__icon {
  position: absolute;
  top: -20px;
  left: 1.5em;
  background-color: #ef4444;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------- 水色背景、左ボーダー、アイコンありbox ------------------------ */
.introBox {
  background-color: #f0f9ff;
  padding: 25px;
  border-radius: 8px;
  border-left: 5px solid #0ea5e9;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 770px) {
  .introBox {
    padding: 15px;
  }
}
.introBox::before {
  content: "\f02e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 2.5rem;
  color: #ef4444;
  opacity: 0.6;
}

/* ---------------------------- 水色背景box ------------------------ */
.pointBox,
.pointBox--line {
  background-color: #f0f9ff;
  padding: 24px;
  border-radius: 8px;
  margin: 15px 0;
}
@media (max-width: 770px) {
  .pointBox,
  .pointBox--line {
    padding: 15px;
  }
}
.pointBox ul,
.pointBox--line ul {
  margin-left: 0;
}
.pointBox--line {
  border-left: 4px solid #0284c7;
}
.pointBox h5,
.pointBox--line h5,
.pointBox h6,
.pointBox--line h6 {
  color: #0284c7;
  font-weight: 700;
  margin-bottom: 0.8em;
  font-size: 1.1em;
}
.pointBox li,
.pointBox--line li {
  line-height: 2;
}

/* ---------------------------- 白背景、オレンジ枠線、ポイントマークありbox ------------------------ */
.pointBox02 {
  background-color: white;
  border: 2px solid #fef2f2;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  position: relative;
}
.pointBox02--main-color {
  border: 2px solid #0ea5e9;
}
.pointBox02--main-color .poontBox02__title {
  background-color: #0ea5e9;
}
.pointBox02__title {
  background-color: #ef4444;
  color: white;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  position: absolute;
  top: -15px;
  left: 20px;
  font-weight: bold;
}
.pointBox02__title--center {
  left: 50%;
}
.pointBox02__content {
  margin-top: 32px;
}
.pointBox02 ul {
  list-style: none !important;
}
.pointBox02 ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ef4444;
  margin-right: 10px;
  font-size: 1.1em;
}

/* ---------------------------- 白背景、緑枠 ------------------------ */
.pointBox03,
.pointBox03--topLine {
  background: white;
  border: 1px solid #0ea5e9;
  border-radius: 6px;
  padding: 25px;
  margin: 25px 0;
  position: relative;
}
.pointBox03--topLine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #0ea5e9;
  border-radius: 6px 6px 0 0;
}

/* ---------------------------- オレンジ背景box ------------------------ */
.highlightBox02,
.highlightBox02--waku {
  background-color: #fffbf7;
  padding: 25px;
  margin: 20px 0;
  border-radius: 8px;
}
.highlightBox02 h6,
.highlightBox02--waku h6 {
  color: #dc2626;
  font-size: 1.2em;
  margin-bottom: 20px;
}
.highlightBox02--waku {
  border: 1px solid #dc2626;
}
.highlightBox02--waku h6 {
  color: #dc2626;
}

/* ---------------------------- オレンジ背景、左ボーダーbox ------------------------ */
.highlightBox03 {
  background-color: #fffbf7;
  border-left: 5px solid #dc2626;
  padding: 48px;
  margin: 30px 0;
  border-radius: 8px;
}
@media (max-width: 770px) {
  .highlightBox03 {
    padding: 15px;
  }
}
.highlightBox03 h5,
.highlightBox03 h6 {
  color: #dc2626;
  font-size: 1.2em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.highlightBox03 h5::before,
.highlightBox03 h6::before {
  content: "\f0eb";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #ef4444;
}

/* ---------------------------- 白背景、アクション付box ------------------------ */
.highlightBox04 {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 3rem;
  margin: 3rem 0;
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
}
.highlightBox04:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #fef2f2;
}
.highlightBox04:hover::before {
  transform: scaleX(1);
}
.highlightBox04::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ef4444, #fef2f2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}

/* ---------------------------- 白背景、枠とトップラインにアニメーション付box ------------------------ */
.highlight-box05 {
  /* リッチダーク */
  margin: 3rem 0;
  padding: 2.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
  animation: fadeInUp 0.8s ease-out forwards;
  transition: all 0.3s ease;
}
.highlight-box05::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
  -webkit-animation: shimmer03 3s infinite;
  animation: shimmer03 3s infinite;
}
.highlight-box05:hover {
  border-color: #ef4444;
  box-shadow: 0 10px 25px rgba(232, 160, 43, 0.1);
}
.highlight-box05 .magic-number {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-weight: bold;
  margin-right: 1rem;
}

/* ---------------------------- 白背景、トップラインにアイコン ------------------------ */
/*　年末年始　*/
.highlight-box06 {
  position: relative;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  margin: clamp(2.5rem, 5vw, 4rem) 0;
}
.highlight-box06::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 4px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  border-radius: 0 0 4px 4px;
}
.highlight-box06__icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}
.highlight-box06__icon i {
  font-size: 2rem;
  color: white;
}

/* ---------------------------- オレンジ背景、左上アイコン ------------------------ */
.infoBox {
  background-color: #fffbf7;
  border-radius: 12px;
  padding: 2em;
  margin: 2em 0;
  position: relative;
  font-size: 1.1em;
  line-height: 2;
}
.infoBox__icon {
  position: absolute;
  top: -15px;
  left: 1.5em;
  background-color: #ef4444;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------- 白背景特徴box ------------------------ */
.featureBox,
.featureBox--greenLine {
  background-color: white;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.featureBox h6,
.featureBox--greenLine h6 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.1em;
}
.featureBox__list {
  list-style: none !important;
}
.featureBox__list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.featureBox__list li i {
  color: #ef4444;
  margin-right: 10px;
}
.featureBox--greenLine {
  border-left: 4px solid #0ea5e9;
}

/* ---------------------------- 白背景、特徴flexbox ------------------------ */
.featureBox02 {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
  gap: 24px;
}
.featureBox02__item {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(224, 224, 224, 0.3);
}
.featureBox02__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
}
.featureBox02__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.featureBox02__item:nth-child(1)::before {
  background: linear-gradient(to bottom, #dc2626, #ef4444);
}
.featureBox02__item:nth-child(1) h5 i {
  background-color: #fffbf7;
  color: #dc2626;
}
.featureBox02__item:nth-child(2)::before {
  background: linear-gradient(to bottom, #0284c7, #0ea5e9);
}
.featureBox02__item h5 {
  color: #0284c7;
  font-size: 1.2em;
  margin-top: 0;
  display: flex;
  align-items: center;
}
.featureBox02__item h5 i {
  margin-right: 12px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f9ff;
  color: #0284c7;
  border-radius: 50%;
  font-size: 0.9em;
}

/* ---------------------------- グレー背景、グレー枠線ありbox ------------------------ */
.tipBox,
.tipBox--orangeLine {
  background: linear-gradient(135deg, #f8fafc 0%, rgba(245, 245, 247, 0.5) 100%);
  border: 1px solid rgba(201, 201, 201, 0.4);
  margin: 35px 0;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}
.tipBox::before,
.tipBox--orangeLine::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: -15px;
  left: 20px;
  padding: 8px;
  border-radius: 50%;
  font-size: 0.9em;
  color: white;
  content: "\f0eb";
  background-color: #dc2626;
}
.tipBox--orangeLine {
  border-left: 4px solid #dc2626;
}

@media (max-width: 770px) {
  .newtableResponsive {
    overflow-x: auto;
    display: block;
    width: 100%;
  }
}

.containerBox01 {
  background-color: #fffbf7;
  padding: 15px;
  border-radius: 5px;
  height: 100%;
}
.containerBox01 h6 {
  color: #ef4444;
  margin-top: 0;
  font-weight: 700;
  margin-bottom: 0.8em;
}

.containerBox02 {
  background-color: #f0f9ff;
  padding: 15px;
  border-radius: 5px;
  height: 100%;
}
.containerBox02 h6 {
  color: #0284c7;
  margin-top: 0;
  font-weight: 700;
  margin-bottom: 0.8em;
}

.container-box03 {
  margin: 4rem 0;
}
.container-box03__item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  border-left: 3px solid #0ea5e9;
  transition:
    transform 0.3s ease-out,
    box-shadow 0.3s ease-out;
}
.container-box03__item:hover {
  transform: translateX(8px);
  box-shadow: -4px 4px 16px rgba(74, 172, 168, 0.1);
}
.container-box03__icon {
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  background: linear-gradient(135deg, #ef4444, #fef2f2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
}
.container-box03 content h5 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.9rem;
}

/* ---------------------------- 水色背景～グラデ黄色アニメーションbox ------------------------ */
.emphasis-box,
.emphasis-box--orange {
  background: linear-gradient(135deg, #f0f9ff 0%, rgba(241, 250, 250, 0.5) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-left: 4px solid #ef4444;
  padding: 3rem;
  margin: 4rem 0;
  border-radius: 0 12px 12px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.emphasis-box::before,
.emphasis-box--orange::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #fef2f2 0%, transparent 70%);
  opacity: 0.1;
  -webkit-animation: pulse02 4s ease-in-out infinite;
  animation: pulse02 4s ease-in-out infinite;
}
.emphasis-box--orange {
  background: rgba(232, 160, 43, 0.1);
}

/* -------------------------------------- 薄い黄色アニメーションbox ---------------------------------- */
.emphasis-box02 {
  margin: 3rem 0;
  padding: 2.5rem 4.5rem;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 160, 43, 0.2);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-out;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.emphasis-box02::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #fef2f2 0%, transparent 70%);
  opacity: 0.05;
  -webkit-animation: pulse 6s ease-in-out infinite;
  animation: pulse 6s ease-in-out infinite;
}
.emphasis-box02 i {
  color: #ef4444;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ctaBox {
  background: linear-gradient(135deg, #f0f9ff, #fffbf7);
  border-radius: 8px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.ctaBox h3,
.ctaBox h4,
.ctaBox h5,
.ctaBox h6 {
  color: #0284c7;
  font-size: 1.4em;
  margin-top: 0;
}
.ctaBox .buttonContainer {
  display: grid;
  width: 64%;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 0 auto;
}
@media (max-width: 770px) {
  .ctaBox .buttonContainer {
    grid-template-columns: 1fr;
  }
}
.ctaBox .btn,
.ctaBox .btn--2nd {
  display: inline-block;
  background-color: #ef4444;
  color: #ffffff;
  padding: 12px 30px !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-top: 15px;
  text-align: center;
}
.ctaBox .btn:hover,
.ctaBox .btn--2nd:hover {
  background-color: #dc2626;
  color: #ffffff;
}
.ctaBox .btn--2nd {
  background-color: #0ea5e9;
}
.ctaBox .btn--2nd:hover {
  background-color: #0284c7;
  color: #ffffff;
}

.ctaBox02 {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: white;
  padding: 5rem 4rem;
  border-radius: 2rem;
  margin: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-weight: bold;
}
.ctaBox02::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  -webkit-animation: pulse 3s ease-in-out infinite;
  animation: pulse 3s ease-in-out infinite;
}
.ctaBox02 h5,
.ctaBox02 h4 {
  color: white;
  font-size: clamp(2rem, 3vw, 2.8rem) !important;
  font-weight: 600;
  margin: 4rem 0 2rem !important;
  position: relative;
  padding-bottom: 1rem;
}
.ctaBox02 h6 {
  color: white;
}
.ctaBox02 strong {
  color: white !important;
  font-size: 1.8rem;
}

.ctaBox03 {
  font-family: "Noto Sans JP", sans-serif;
  /* 横幅800pxのブログ内で左右に余白を持たせる */
  max-width: 760px;
  margin: 40px auto; /* 上下の余白と中央配置 */
  padding: 40px;
  background-color: #f5f5f7; /* オフホワイト */
  border: 1px solid #e0e0e0; /* サポートライトグレー */
  border-radius: 16px; /* 角を丸くして柔らかい印象に */
  text-align: center;
  position: relative; /* 装飾要素の基準点にする */
  overflow: hidden; /* 角丸からはみ出す要素を隠す */
}
@media (max-width: 770px) {
  .ctaBox03 {
    padding: 30px 20px;
  }
}
.ctaBox03::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background-image: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); /* ティールグリーンのグラデーション */
  border-radius: 50%;
  opacity: 0.15; /* 透明度を下げて奥にあるように見せる */
  z-index: 1;
}
.ctaBox03__content {
  position: relative;
  z-index: 2; /* 装飾より手前に表示 */
}
.ctaBox03__badge {
  display: inline-block;
  padding: 6px 16px;
  background-image: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); /* ティールグリーンのグラデーション */
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 9999px; /* 角を完全に丸くする */
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(74, 172, 168, 0.2); /* ティールグリーンに合わせた影 */
}
.ctaBox03__title {
  font-size: 28px !important; /* 読者の目を引くサイズ */
  font-weight: 800 !important; /* 極太フォントで力強く */
  color: #222222; /* サポートディープ色 */
  margin: 0 0 12px 0 !important;
  line-height: 1.4 !important;
}
@media (max-width: 770px) {
  .ctaBox03__title {
    font-size: 22px;
  }
}
.ctaBox03__description {
  font-size: 16px;
  color: #222222; /* サポートディープ色で統一感を演出 */
  line-height: 1.8 !important; /* 行間を広めにとって読みやすく */
  max-width: 600px; /* 一行が長くなりすぎないように調整 */
  margin: 0 auto 32px auto !important; /* ボタンとの余白を確  保 */
  opacity: 0.9; /* 少し透明度を加えて階層感を演出 */
}
@media (max-width: 770px) {
  .ctaBox03__description {
    font-size: 15px;
  }
}
.ctaBox03__button {
  display: inline-flex; /* テキストと矢印を横並びにする */
  align-items: center; /* 中央揃え */
  gap: 8px; /* テキストと矢印の間隔 */
  padding: 16px 32px;
  /* アクセントカラーのオレンジゴールド系グラデーション */
  background-image: linear-gradient(95deg, #ef4444 0%, #dc2626 100%);
  color: #fff !important;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(232, 160, 43, 0.3); /* オレンジゴールドに合わせた影 */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* スムーズな変化のためのトランジション */
}
@media (max-width: 770px) {
  .ctaBox03__button {
    padding: 14px 24px;
    font-size: 16px;
  }
}
.ctaBox03__button:hover {
  transform: translateY(-3px); /* 少し浮き上がる動き */
  box-shadow: 0 6px 20px rgba(232, 160, 43, 0.4); /* 影を濃くして立体感を強調 */
  background-image: linear-gradient(95deg, #fef2f2 0%, #ef4444 100%); /* ライトゴールドから通常ゴールドへ */
}
.ctaBox03__button:hover::after {
  transform: translateX(4px); /* マウスを乗せると矢印が少し右に動く */
}
.ctaBox03__button::after {
  content: "→";
  font-size: 20px;
  transition: transform 0.2s ease-out;
}

.chartContainer {
  background-color: #f8fafc;
  border: 2px dashed #ef4444;
  border-radius: 8px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
}
.chartContainer__data {
  background-color: white;
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
  text-align: left;
}
.chartContainer__data ul {
  margin-bottom: 0;
  list-style: none !important;
}
.chartContainer h5 {
  color: #dc2626;
  margin-bottom: 15px;
}
.chartContainer i {
  font-size: 3rem;
  color: #ef4444;
  margin-bottom: 15px;
}

/* 高圧洗浄 */
.block-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.block-header .block-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(232, 160, 43, 0.3);
}

/* ---------------------------- グレー背景、左オレンジボーダー、クオーテーションアイコンありbox ------------------------ */
.quote,
.quote--background-natural {
  background-color: #f8fafc;
  border-left: 5px solid #ef4444 !important;
  padding: 48px 32px !important;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  position: relative !important;
  font-weight: 600;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.quote::before,
.quote--background-natural::before {
  content: "\f10d" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900 !important;
  color: #ef4444 !important;
  opacity: 0.4;
  font-size: 2em !important;
  position: absolute !important;
  top: 18px !important;
  left: 18px !important;
}
.quote::after,
.quote--background-natural::after {
  content: "" !important;
}
.quote--background-natural {
  background: linear-gradient(135deg, #fffbf7 0%, white 100%);
}
.quote--no-border {
  border-left: none !important;
}

.quote02 {
  font-style: italic !important;
  color: #222222;
  margin: 1.5rem 0 !important;
  padding: 0.5rem 0 0.5rem 2rem !important;
  border: none !important;
  box-shadow: none !important;
  border-left: 3px solid #fef2f2 !important;
  quotes: none;
}
.quote02::before,
.quote02::after {
  content: none !important;
}

/* 年末年始 */
.quote03 {
  position: relative !important;
  padding: clamp(2.5rem, 5vw, 3.5rem) !important;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 !important;
  background: #f8fafc;
  border-radius: 16px;
  border: none !important;
  box-shadow: none !important;
}
.quote03::before {
  content: "" !important;
  position: absolute;
  left: 0 !important;
  top: 0 !important;
  bottom: 0;
  width: 5px !important;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  border-radius: 3px 0 0 3px;
  height: unset !important;
}
.quote03::after {
  content: "" !important;
}
.quote03__icon {
  position: absolute;
  top: -15px;
  left: 25px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}
.quote03__icon i {
  font-size: 1.6rem;
  color: white;
}
.quote03__text {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  color: #222222;
}
.quote03__text--color-gradient {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* カバー工法 */
.step-cards01 {
  list-style: none !important;
  margin-left: 0 !important;
}
.step-cards01__item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 2rem;
  background: white;
  border: 1px solid #e2e8f0;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.step-cards01__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}
.step-cards01__item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.12);
}
.step-cards01__number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  color: white;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}
.step-cards01__content {
  flex: 1;
}
.step-cards01__content p {
  font-size: 1.4rem;
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

.stepBox {
  display: flex;
  margin-bottom: 25px;
  background-color: #f8fafc;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 770px) {
  .stepBox {
    flex-direction: column;
  }
}
.stepBox__number {
  background-color: #0ea5e9;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 1.5em;
  font-weight: bold;
  min-width: 70px;
}
@media (max-width: 770px) {
  .stepBox__number {
    width: 100%;
    padding: 10px;
  }
}
.stepBox__content {
  padding: 20px;
  flex-grow: 1;
}
.stepBox__title {
  font-weight: bold;
  color: #0284c7;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.stepBox02 {
  counter-reset: step;
  margin: 40px 0;
  position: relative;
}
.stepBox02::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 10px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #0ea5e9 0%, #f0f9ff 100%);
  z-index: 0;
}
.stepBox02__item {
  position: relative;
  padding: 0 0 30px 70px;
  margin-bottom: 10px;
  z-index: 1;
}
.stepBox02__item:last-child {
  padding-bottom: 10px;
}
.stepBox02__item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f9ff;
  color: #0284c7;
  border-radius: 50%;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(74, 172, 168, 0.15);
  z-index: 2;
}
.stepBox02__item h5 {
  margin-top: 12px;
  margin-bottom: 15px;
  padding-top: 8px;
}
.stepBox02__content {
  background-color: white;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(224, 224, 224, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.stepBox02__content:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stepBox03 {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(232, 160, 43, 0.2);
}
.stepBox03__number {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 0.5rem 1.5rem rgba(232, 160, 43, 0.3);
}
.stepBox03 h4 {
  font-size: 2.4rem;
  color: #0284c7;
  line-height: 1.4;
}

.stepBox04 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4rem 0;
  padding: 3rem 0;
  overflow-x: auto;
}
.stepBox04__item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}
.stepBox04__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9 0%, #f0f9ff 100%);
}
.stepBox04__item:hover .stepBox04__icon {
  transform: scale(1.1) rotate(5deg);
}
.stepBox04__icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #f0f9ff 0%, #0ea5e9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 3.2rem;
  box-shadow: 0 5px 20px rgba(74, 172, 168, 0.3);
  transition: all 0.3s ease-out;
}
.stepBox04__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 0.5rem;
}
.stepBox04__description {
  font-size: 1.3rem;
  color: #222222;
  opacity: 0.8;
}

.stepBox05 {
  margin: 5rem 0;
  list-style: none !important;
  margin-left: 0 !important;
}
.stepBox05__item {
  position: relative;
  padding: 3rem 3rem 3rem 8rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #f0f9ff 0%, rgba(241, 250, 250, 0.3) 100%);
  border-radius: 1rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.stepBox05__item:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.8rem 2rem rgba(74, 172, 168, 0.15);
}
.stepBox05__number {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 0.4rem 1rem rgba(74, 172, 168, 0.3);
}

.linkbuttonContainer {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 850px;
  padding: 40px 20px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(83, 107, 105, 0.1);
  margin: auto;
}
@media (max-width: 770px) {
  .linkbuttonContainer {
    flex-direction: column;
    gap: 25px;
    padding: 25px 15px;
  }
}

.caseExample {
  background-color: white;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 20px;
  margin: 25px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  padding: 15px;
}
.caseExample h6 {
  margin-top: 0;
  color: #dc2626;
  font-size: 1.2em;
}

.summarySection {
  background: linear-gradient(135deg, #fffbf7 0%, rgba(255, 244, 225, 0.5) 100%);
  padding: 40px;
  border-radius: 12px;
  margin: 60px 0 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(232, 160, 43, 0.1);
}
.summarySection::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: -20px;
  left: 40px;
  background-color: #ef4444;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(232, 160, 43, 0.2);
}
.summarySection h4 {
  color: #dc2626;
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.summarySection h4::before {
  display: none !important;
}

/*　カバー工法　*/
.summary-section02 {
  padding: clamp(3rem, 5vw, 4rem);
  background: white;
  border: 2px solid #0ea5e9;
  position: relative;
}
.summary-section02::before {
  content: "POINT";
  position: absolute;
  top: -14px;
  left: 30px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.5rem;
  border-radius: 3px;
}

.diagramSpace {
  background: #f8fafc;
  border: 2px dashed #e2e8f0;
  border-radius: 0.8rem;
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.diagramSpace .diagramIcon {
  font-size: 4rem;
  color: #ef4444;
  margin-bottom: 1.5rem;
}
.diagramSpace .diagram-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 3rem;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}
.diagramSpace h4,
.diagramSpace h5,
.diagramSpace h6,
.diagramSpace figcaption {
  color: #0284c7;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.data-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.data-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(74, 172, 168, 0.1);
}
.data-item .data-label {
  font-weight: 500;
  color: #222222;
}
.data-item .data-value {
  font-size: 2rem;
  font-weight: 300;
  color: #ef4444;
  font-family: "游明朝", YuMincho, serif;
}

/* 高圧洗浄 */
.grid-container01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}
@media (max-width: 770px) {
  .grid-container01 {
    grid-template-columns: 1fr;
  }
}
.grid-container01__item {
  padding: 2rem;
  border-radius: 12px;
}
.grid-container01__item--main {
  background: #f0f9ff;
}
.grid-container01__item--accent {
  background: #fef2f2;
}

/*　2026省エネ補助金　*/
.hikaku-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 2rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: #f8fafc;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.hikaku-item:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08);
}
.hikaku-item--negative {
  background: #fef2f2;
}
.hikaku-item--negative .hikaku-item__icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.hikaku-item--negative .hikaku-item__result {
  color: #ef4444;
}
.hikaku-item--positive {
  background: #f0f9ff;
}
.hikaku-item--positive .hikaku-item__icon {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}
.hikaku-item--positive .hikaku-item__result {
  color: #0369a1;
}
.hikaku-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hikaku-item__icon i {
  color: white;
  font-size: 1.4rem;
}
.hikaku-item__text {
  flex: 1;
  font-size: 1.5rem;
}
.hikaku-item__result {
  font-weight: 700;
  font-size: 1.6rem;
}

/*　2026省エネ補助金　*/
.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed #e2e8f0;
}
.data-row--main-top-line {
  border-top: 2px solid #0ea5e9;
}
.data-row--accent-top-line {
  border-top: 2px solid #ef4444;
}
.data-row:last-child {
  border-bottom: none;
  padding-top: 1.4rem;
  margin-top: 0.4rem;
}

/* --------------------------------------------------  リスト  ------------------------------------------------------------------------------- */
.checkList {
  list-style-type: none !important;
  padding-left: 0;
  margin-left: 0 !important;
}
.checkList li {
  padding-left: 1.5em;
  position: relative;
}
.checkList li:before {
  content: "✓";
  color: #ef4444;
  position: absolute;
  left: 0;
}

.checkList02 li {
  padding-left: 5px;
  list-style: none !important;
  margin-left: 0 !important;
}
.checkList02 li::before {
  background-color: transparent;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ef4444;
  width: auto;
  height: auto;
  font-size: 0.9em;
  margin-right: 0.5em;
}

.check-list03 {
  text-align: left;
  display: inline-block;
  margin: 2rem auto;
}

.checkedList01 {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 8px;
  margin: 3rem 0 !important;
  list-style: none !important;
}
@media (max-width: 770px) {
  .checkedList01 {
    padding: 2rem;
  }
}
.checkedList01 li {
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0 1rem 3rem;
  margin-bottom: 0;
  transition: all 0.3s ease-out;
}
.checkedList01 li:last-child {
  border-bottom: none;
}
.checkedList01 li:hover {
  background: rgba(74, 172, 168, 0.05);
  margin-left: 0.5rem;
}
.checkedList01 li input {
  color: #ef4444;
  margin-right: 1rem;
}

/*　景観条例とアスベスト　*/
.checkedList02 {
  list-style: none !important;
  margin-left: 0 !important;
}
.checkedList02 li {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.checkedList02 li:hover {
  border-color: #0ea5e9;
  background: #f0f9ff;
  transform: translateX(5px);
}
.checkedList02 li input {
  color: #0ea5e9;
  display: inline-block;
  transform: translateY(7px);
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 1.5rem;
  margin-top: 0.2rem;
}

.checkedList03 {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  margin: 3rem 0 !important;
  list-style: none !important;
}
@media (max-width: 770px) {
  .checkedList03 {
    padding: 2rem;
  }
}
.checkedList03 li {
  padding: 1rem 0 1rem 3rem;
  margin-bottom: 0;
  transition: all 0.3s ease-out;
}
.checkedList03 li:last-child {
  border-bottom: none;
}
.checkedList03 li:hover {
  background: rgba(74, 172, 168, 0.05);
  margin-left: 0.5rem;
}
.checkedList03 li input {
  color: #0ea5e9;
  margin-right: 1rem;
}

.alertList02 li {
  padding-left: 5px;
  list-style: none !important;
  margin-left: 0 !important;
}
.alertList02 li::before {
  background-color: transparent;
  content: "\f06a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #dc2626;
  width: auto;
  height: auto;
  font-size: 0.9em;
  margin-right: 1rem;
}

.faqSection {
  margin: 40px 0;
  list-style: none !important;
  margin-left: 0 !important;
}
.faqSection__item {
  margin-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 20px;
}
.faqSection__question {
  font-weight: bold;
  font-size: 1.1em;
  color: #0284c7;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}
.faqSection__question::before {
  content: "Q";
  background-color: #ef4444;
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 770px) {
  .faqSection__question::before {
    align-self: auto;
  }
}
.faqSection__answer {
  padding-left: 36px;
  position: relative;
}
.faqSection__answer::before {
  content: "A";
  background-color: #0ea5e9;
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 5px;
}
@media (max-width: 770px) {
  .faqSection__answer::before {
    top: 0;
  }
}

.recommendationGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 30px 0 !important;
  list-style: none !important;
}
.recommendationGrid__item {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #ef4444;
  transition: transform 0.3s ease;
}
.recommendationGrid__item:hover {
  transform: translateY(-5px);
}
.recommendationGrid__item h5,
.recommendationGrid__item h6 {
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 10px;
}
.recommendationGrid__item--bgcolor-glay {
  background-color: #f8fafc;
}
.recommendationGrid--grid3 {
  grid-template-columns: repeat(3, 1fr);
}
.recommendationGrid--main-color .recommendationGrid__item {
  border-top: 4px solid #0284c7;
}

.numberedList li {
  margin-bottom: 4px;
}
.numberedList li::marker {
  color: #ef4444;
  font-weight: bold;
}

.numberedList02 {
  margin: 2rem 0 !important;
  padding-left: 0;
  list-style: none !important;
  counter-reset: step-counter;
}
.numberedList02 li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  transition: transform 0.3s ease;
  counter-increment: step-counter;
}
.numberedList02 li:hover {
  transform: translateX(0.5rem);
}
.numberedList02 li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}
.numberedList02 li::marker {
  color: #ef4444;
  font-weight: bold;
}
.numberedList02--main li::before {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}

.featureList,
.featureList--02 {
  list-style: none !important;
  margin: 2rem 0 !important;
}
.featureList li,
.featureList--02 li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.8;
  transition: all 0.3s ease;
}
.featureList li:hover,
.featureList--02 li:hover {
  transform: translateX(5px);
  background: rgba(74, 172, 168, 0.05);
  padding-left: 3.5rem;
}
.featureList li i,
.featureList--02 li i {
  position: absolute;
  left: 0;
  top: 0.3em;
  color: #ef4444;
}
.featureList--02 {
  margin: 0 auto !important;
}

/*　カバー工法　*/
.feature-list02 {
  list-style: none !important;
  padding: 0 !important;
  margin-left: 0 !important;
}
.feature-list02 li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  line-height: 1.8;
  padding: 1.2rem 1.5rem;
  background: white;
  border-left: 4px solid #0ea5e9;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.feature-list02 li:hover {
  transform: translateX(8px);
  background: #f0f9ff;
}
.feature-list02 li i {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1em;
}
@media (max-width: 770px) {
  .feature-list02 li {
    padding: 1rem;
  }
}

/*　カバー工法　*/
.feature-list03 {
  list-style: none !important;
  padding: 0 !important;
  margin-left: 0 !important;
  display: grid;
  gap: 1rem;
}
.feature-list03 li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  line-height: 1.7;
  padding: 1rem 1.2rem;
  background: #f0f9ff;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.feature-list03 li:hover {
  transform: translateX(6px);
}
.feature-list03 li i {
  color: #0ea5e9;
  font-size: 1.4rem;
  margin-top: 0.2em;
  flex-shrink: 0;
}

/*　年間カレンダー　*/
.label-list01 {
  list-style: none !important;
  padding: 0;
  margin: 0;
  margin-left: 0 !important;
}
.label-list01 li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  margin-bottom: 0.8rem;
  border-radius: 10px;
  transition: all 0.3s ease-out;
  cursor: default;
}
.label-list01 li:hover {
  background: #f8fafc;
  transform: translateX(10px);
}
.label-list01__badge {
  min-width: 60px;
  padding: 0.5rem 1rem;
  background: #f0f9ff;
  border-radius: 20px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0284c7;
}
.label-list01__text {
  font-size: 1.5rem;
  color: #444;
  line-height: 1.7;
}

.markList {
  gap: 1rem;
}
.markList li {
  display: grid;
  align-items: center;
  gap: 0 1rem;
  grid-template-columns: auto 1fr;
  transition: transform 0.3s ease;
}
.markList li i {
  font-size: 1.5rem;
}
.markList li:hover {
  transform: translateX(6px);
}
.markList--main-icon i {
  color: #0284c7;
}
.markList--orange-icon i,
.markList--accent-icon i {
  color: #ef4444;
}

.styledList,
.styledList--accent {
  margin: 3rem 0;
  padding: 0;
  margin-left: 0 !important;
}
.styledList li,
.styledList--accent li {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
@media (max-width: 770px) {
  .styledList li,
  .styledList--accent li {
    padding: 1.2rem;
  }
}
.styledList li:hover,
.styledList--accent li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.styledList li i,
.styledList--accent li i {
  color: #0ea5e9;
  margin-right: 1.5rem;
  margin-top: 0.4rem;
  font-size: 1.4rem;
  width: 2rem;
  text-align: center;
}
.styledList li input[type="checkbox"],
.styledList--accent li input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: #ef4444;
  cursor: pointer;
}
.styledList--accent li i {
  color: #ef4444;
  font-weight: 900;
  font-size: 2rem;
}

.specialList {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 247, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 160, 43, 0.15);
  border-radius: 1.5rem;
  padding: 3.5rem;
  margin: 4rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  list-style: none !important;
  margin-left: 0 !important;
}
.specialList::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444 0%, #fef2f2 50%, #ef4444 100%);
  background-size: 200% 100%;
  -webkit-animation: shimmer 3s ease-in-out infinite;
  animation: shimmer 3s ease-in-out infinite;
}
.specialList li {
  background: white;
  border: 1px solid rgba(224, 224, 224, 0.5);
  padding: 2rem 2rem 2rem 4rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.specialList li:last-child {
  margin-bottom: 0;
}
.specialList li:hover {
  transform: translateX(10px);
  background: linear-gradient(to right, rgba(74, 172, 168, 0.08) 0%, transparent 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.specialList li i {
  position: absolute;
  left: 1.5rem;
  top: 1.8rem;
  color: #ef4444;
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 4px rgba(232, 160, 43, 0.2));
}

/* 壁内結露 */
.base-list,
.base-list--green-dot {
  list-style-type: disc !important;
}
.base-list li::marker,
.base-list--green-dot li::marker {
  color: #ef4444;
}
.base-list--green-dot li::marker {
  color: #0ea5e9;
}

/*　カバー工法　*/
.block-list01 {
  list-style: none !important;
  padding: 1rem 0 0 0;
  margin-left: 0 !important;
}
.block-list01 li {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  line-height: 1.8;
}
.block-list01 li:last-child {
  margin-bottom: 0;
}
.block-list01 li i {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.2em;
}

/* 屋根選び */
.icon-list {
  list-style: none;
  margin: 3rem 0;
}
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.icon-list li:last-child {
  border-bottom: none;
}
.icon-list i {
  color: #ef4444;
  font-size: 2rem;
  min-width: 2.5rem;
  margin-top: 0.3rem;
}

/*　雨樋　*/
.icon-list02 {
  list-style: none !important;
  padding: 0;
  margin-left: 0 !important;
  line-height: 1.9;
}
.icon-list02 li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
  background: #f8fafc;
  border-radius: 10px;
  transition: all 0.3s ease-out;
}
.icon-list02 li:hover {
  transform: translateX(8px);
  background: #f0f9ff;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
}
.icon-list02__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
}
.icon-list02__content {
  flex: 1;
  line-height: 1.9 !important;
}
.icon-list02__title {
  font-weight: 600 !important;
  display: block;
  margin-bottom: 0.3em;
  color: #0369a1;
}
.icon-list02--accent li {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
}
.icon-list02--accent li:hover {
  background: #fef2f2;
}
.icon-list02--accent .icon-list02__icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.icon-list02--accent .icon-list02__title {
  color: #dc2626;
}

/*　カバー工法　*/
.data-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  margin-left: 0 !important;
}
.data-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1.5rem;
  transition: background 0.3s ease;
}
.data-list li:last-child {
  border-bottom: none;
}
.data-list__label {
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.data-list__label i {
  width: 36px;
  height: 36px;
  background: #f0f9ff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
}
.data-list__value {
  font-weight: 700;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*　カバー工法　*/
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.product-specs__item {
  font-size: 1.3rem;
  color: #64748b;
  padding: 0.6rem 1.2rem;
  background: #f0f9ff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-specs__item i {
  color: #0ea5e9;
  font-size: 1.1rem;
}

.caseStudy {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  margin: 3em 0;
  box-shadow: 0 5px 20px rgba(83, 107, 105, 0.1);
  border: 1px solid #e2e8f0;
}
.caseStudy__header {
  background: linear-gradient(to right, #0ea5e9, #0284c7);
  color: white;
  padding: 1em 1.5em;
  font-weight: 500;
  position: relative;
}
.caseStudy__decoration {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.2);
  font-size: 24px;
}
.caseStudy__content {
  padding: 1.5em;
}
.caseStudy__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 1em;
}
.caseStudy__metaItem {
  background-color: #f0f9ff;
  color: #0284c7;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.875em;
  display: flex;
  align-items: center;
}
.caseStudy__metaItem i {
  margin-right: 5px;
  color: #ef4444;
}
.caseStudy__quote {
  background-color: #fffbf7;
  padding: 1em;
  border-radius: 8px;
  position: relative;
  margin: 1em 0;
  font-style: italic;
}
.caseStudy__quote::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ef4444;
  font-size: 14px;
  margin-right: 5px;
}
.caseStudy__footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e2e8f0;
  margin-top: 1em;
  padding-top: 1em;
  font-size: 0.875em;
  color: #222222;
}
.caseStudy__footerItem {
  display: flex;
  align-items: center;
}
.caseStudy__footerItem i {
  color: #ef4444;
  margin-right: 5px;
}

.RecommendationList {
  margin-bottom: 60px;
  list-style: none !important;
  margin-left: 0 !important;
}
.RecommendationList__item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.RecommendationList__title {
  font-size: 1.6em !important;
  font-weight: 600 !important;
  color: #0284c7;
  margin-bottom: 25px !important;
  display: flex;
  align-items: center;
}
.RecommendationList__number {
  background: #ef4444;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
}

.pointCards,
.pointCards--3column,
.pointCards--1column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0 !important;
  list-style: none !important;
}
@media (max-width: 770px) {
  .pointCards,
  .pointCards--3column,
  .pointCards--1column {
    grid-template-columns: auto !important;
  }
}
.pointCards__item,
.pointCards__item--green-hover {
  background-color: white;
  border: 2px solid #eeeeee;
  border-radius: 1rem;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}
.pointCards__item:hover,
.pointCards__item--green-hover:hover {
  border-color: #ef4444;
  box-shadow: 0 8px 25px rgba(232, 160, 43, 0.15);
  transform: translateY(-3px);
}
.pointCards__item h5,
.pointCards__item--green-hover h5,
.pointCards__item h6,
.pointCards__item--green-hover h6 {
  font-size: 1.8rem;
  color: #0284c7;
  margin: 1rem 0 1.5rem 0;
}
.pointCards__item h5 i,
.pointCards__item--green-hover h5 i,
.pointCards__item h6 i,
.pointCards__item--green-hover h6 i {
  color: #ef4444;
  font-size: 1.2em;
}
.pointCards__item--green-hover:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 1.6rem 4rem rgba(45, 138, 134, 0.15);
  border-color: #0ea5e9;
}
.pointCards__itemNumber {
  position: absolute;
  top: -1rem;
  left: 2rem;
  background: linear-gradient(135deg, #ef4444 0%, #fef2f2 100%);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.pointCards--1column {
  grid-template-columns: none;
}
.pointCards--3column {
  grid-template-columns: auto auto auto;
}

.heroHighlights {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease-out 0.6s forwards;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  list-style: none !important;
  margin-left: 0 !important;
}
.heroHighlights__item {
  background: linear-gradient(135deg, #0284c7, #0ea5e9 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-out;
}
.heroHighlights__item:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.8), rgba(14, 165, 233, 0.8) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.customerVoice {
  list-style-type: none !important;
  margin-left: 0 !important;
}
.customerVoice__item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  border-left: 4px solid #ef4444;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-style: italic;
  color: #222222;
  transition: transform 0.3s ease-out;
}
.customerVoice__item:hover {
  transform: translateX(5px);
}
.customerVoice__item i {
  color: #ef4444;
  margin-right: 0.5rem;
}

/*　新年親睦会　*/
.image-grid01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  list-style: none !important;
  margin-left: 0 !important;
}
@media (max-width: 770px) {
  .image-grid01 {
    grid-template-columns: 1fr;
  }
}
.image-grid01__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease-out,
    box-shadow 0.3s ease-out;
}
.image-grid01__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}
.image-grid01__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  z-index: 1;
}
.image-grid01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.statGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  list-style: none !important;
  margin-left: 0 !important;
  width: 100%;
}
.statGrid__item {
  container-type: inline-size;
  background: linear-gradient(135deg, white 0%, #f8fafc 100%);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-out;
}
.statGrid__item:hover {
  transform: translateY(-5px);
}
.statGrid__number {
  font-size: 3em;
  font-size: clamp(1.2em, 15cqi, 3em);
  font-weight: 700;
  color: #ef4444;
  display: block;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden; /* 念のため、最小サイズでもはみ出す場合に備える */
  text-overflow: ellipsis; /* はみ出した部分は ... で省略 */
}
.statGrid__number--small {
  font-size: 2.4em;
  font-size: clamp(1em, 10cqi, 2.4em);
}
.statGrid__label {
  color: #222222;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: -1.5rem;
}

/*　ゴシゴシ　*/
.statGrid02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}
.statGrid02__card {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.statGrid02__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #fef2f2);
}
.statGrid02__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.statGrid02__number {
  font-size: 3.6rem;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 0.5rem;
}
.statGrid02__label {
  font-size: 1.4rem;
  color: #222222;
}

/* 照明 */
.statGrid03 {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
  list-style: none !important;
  margin-left: 0 !important;
}
.statGrid03__item {
  flex: 1;
  min-width: 200px;
  padding: 2rem;
  background: white;
  border-radius: 0.6rem;
  transition: transform 0.3s ease-out;
}
.statGrid03__item:hover {
  transform: scale(1.05);
}
.statGrid03__item--shadow {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.statGrid03__icon {
  font-size: 3.6rem;
  color: #ef4444;
  margin-bottom: 1.5rem;
}
.statGrid03__label {
  font-size: 1.4rem;
  color: #888;
  margin-bottom: 0.8rem;
}
.statGrid03__value {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0284c7;
}

/* カバー工法 */
.statGrid04 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc((100% - 4rem) / 3), 1fr));
  gap: 2rem;
  margin: 3.5rem 0;
  list-style: none !important;
  margin-left: 0 !important;
}
@media (max-width: 770px) {
  .statGrid04 {
    grid-template-columns: 1fr;
  }
}
.statGrid04__item {
  text-align: center;
  min-width: 160px;
  box-sizing: border-box;
  padding: 2.5rem 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.statGrid04__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}
.statGrid04__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.15);
}
.statGrid04__item--accent::before {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.statGrid04__item--accent .statGrid04__number {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.statGrid04__item--accent .statGrid04__icon {
  background: #fef2f2;
  color: #ef4444;
}
.statGrid04__icon {
  width: 50px;
  height: 50px;
  background: #f0f9ff;
  color: #0ea5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.statGrid04__number {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(3rem, 5vw, 4rem) !important;
  font-weight: 700;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1 !important;
  margin-bottom: 0.5rem !important;
}
.statGrid04__number--small {
  font-size: clamp(2rem, 4vw, 3rem) !important;
}
.statGrid04__unit {
  font-size: 1.8rem;
  font-weight: 500;
}
.statGrid04__label {
  font-size: 1.3rem;
  color: #64748b !important;
  font-weight: 500;
}

/* 壁内結露 */
.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
  list-style: none !important;
  margin-left: 0 !important;
}
.item-grid__item {
  padding: 3.2rem 2.4rem;
  background: #f8fafc;
  transition:
    transform 0.3s ease-out,
    box-shadow 0.3s ease-out;
}
.item-grid__item:hover {
  transform: translateY(-4px);
}
.item-grid__icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 3.2rem;
}
.item-grid__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.6rem;
}
.item-grid p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.summaryList {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
  list-style: none !important;
  margin-left: 0 !important;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.03em;
}
.summaryList__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.summaryList__item:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}
.summaryList__number {
  width: 4rem;
  height: 4rem;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.colorPalette {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
  opacity: 0;
  list-style: none !important;
  margin-left: 0 !important;
}
.colorPalette__item {
  text-align: center;
  transition: transform 0.3s ease-out;
}
.colorPalette__item:hover {
  transform: translateY(-5px);
}
.colorPalette__circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.colorPalette__name {
  font-size: 1.2rem;
  color: #222222;
}

.color-palette {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  padding: 3rem;
  background: #f8fafc;
  border-radius: 12px;
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
  animation: fadeInUp 0.8s ease-out forwards;
  list-style: none !important;
  margin-left: 0 !important;
}
.color-palette__item {
  text-align: center;
  transition: transform 0.3s ease;
}
.color-palette__item:hover {
  transform: translateY(-5px);
}
.color-palette__item:hover .color-palette__color-box {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.color-palette__color-box {
  width: 100%;
  height: 100px;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.color-palette__name {
  font-size: 1.3rem;
  color: #222222;
  font-weight: 500;
}

.rankingList {
  list-style: none !important;
  margin-left: 0 !important;
}
.rankingList li {
  background: #f8fafc;
  padding: 3rem;
  margin: 2rem 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.rankingList li::before {
  content: attr(data-rank);
  position: absolute;
  top: -24px;
  right: 20px;
  font-size: 8rem;
  font-weight: 700;
  color: #ef4444;
  opacity: 0.1;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.rankingList li:hover {
  background: #f0f9ff;
  transform: translateY(-3px);
}
.rankingList li h6 {
  font-size: 2rem;
  color: #0284c7;
  margin-bottom: 1rem;
  font-weight: 600;
}
.rankingList li h6 i {
  color: #ef4444;
  margin-right: 0.5em;
}

.detailList {
  padding: 40px;
}
.detailList li {
  display: flex;
  align-items: center;
  line-height: 1.5;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(74, 172, 168, 0.1);
  transition: transform 0.3s ease-out;
}
.detailList li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.detailList li:hover {
  transform: translateX(10px);
}
.detailList__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ef4444, #fef2f2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232, 160, 43, 0.2);
}
.detailList__icon i {
  font-size: 20px;
  color: white;
}
.detailList__label {
  display: block;
  font-size: 1.3rem;
  color: #ef4444;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.color-swatch {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin: 1rem 1rem 1rem 0;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.color-swatch:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.color-swatch:hover::after {
  opacity: 1;
}
.color-swatch::after {
  content: attr(data-color);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: #222222;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ranking-item {
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(to right, rgba(241, 250, 250, 0.5), transparent);
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}
.ranking-item:hover {
  background: linear-gradient(to right, rgba(241, 250, 250, 0.8), rgba(255, 244, 225, 0.3));
  transform: translateX(5px);
}
.ranking-item h4 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.5;
  color: #0ea5e9;
  margin: 4rem 0 2rem;
  position: relative;
}
.ranking-item__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #ef4444, #fef2f2);
  color: white;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  -webkit-animation: pulse-ranking 2s ease-in-out infinite;
  animation: pulse-ranking 2s ease-in-out infinite;
}

.plan-list {
  list-style: none !important;
  margin-left: 0 !important;
}
.plan-list__item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.plan-list__item:hover {
  padding-left: 1rem;
  background: rgba(255, 255, 255, 0.5);
}
.plan-list__item:last-child {
  border-bottom: none;
}
.plan-list__price {
  color: #ef4444;
  font-weight: 600;
}

/* --------------------------------------------------  DL リスト  ------------------------------------------------------------------------------- */
.definition-list01 {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.definition-list01 dt,
.definition-list01 dd {
  margin: 0;
  padding: 10px 5px;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
}
.definition-list01 dt {
  width: 50%;
  font-weight: normal;
}
.definition-list01 dd {
  width: 50%;
  font-weight: bold;
}
.definition-list01--15p dt {
  width: 15%;
}
.definition-list01--15p dd {
  width: 85%;
  font-weight: normal;
}

/* --------------------------------------------------  テーブル  ------------------------------------------------------------------------------- */
.newblogTable01 {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 !important;
  font-size: 0.9em;
}
@media (max-width: 770px) {
  .newblogTable01 {
    font-size: 0.7em;
  }
}
.newblogTable01 th {
  background-color: #0ea5e9;
  color: #ffffff;
  padding: 10px;
  text-align: left;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.4;
  border-left: none;
  border-right: none;
}
.newblogTable01 td {
  padding: 10px;
  border-bottom: 1px solid #e2e8f0;
  border-left: none;
  border-right: none;
}
.newblogTable01 tr:nth-child(even) {
  background-color: #f0f9ff;
}
.newblogTable01__highlightRow {
  background-color: #fffbf7 !important;
}

.newblogTable02,
.newblogTable02--no-shadow {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  margin: 4rem 0 3rem !important;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 0.2rem 2rem rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.02);
}
@media (max-width: 770px) {
  .newblogTable02,
  .newblogTable02--no-shadow {
    font-size: 1.4rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .newblogTable02::-webkit-scrollbar,
  .newblogTable02--no-shadow::-webkit-scrollbar {
    height: 8px;
  }
  .newblogTable02::-webkit-scrollbar-track,
  .newblogTable02--no-shadow::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .newblogTable02::-webkit-scrollbar-thumb,
  .newblogTable02--no-shadow::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }
}
.newblogTable02--no-shadow {
  box-shadow: none;
}
@media (max-width: 770px) {
  .newblogTable02 th,
  .newblogTable02--no-shadow th,
  .newblogTable02 td,
  .newblogTable02--no-shadow td {
    padding: 1.2rem 1rem;
    font-size: 1.3rem;
    min-width: 100px;
  }
}
.newblogTable02 thead,
.newblogTable02--no-shadow thead {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}
.newblogTable02 th,
.newblogTable02--no-shadow th {
  background: unset;
  border: unset;
  color: white;
  padding: 2rem 1.5rem;
  text-align: left;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 770px) {
  .newblogTable02 th,
  .newblogTable02--no-shadow th {
    padding: 1.5rem 1rem;
  }
}
.newblogTable02 td,
.newblogTable02--no-shadow td {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
  color: #222222;
  font-weight: 400;
  font-size: 1.5rem;
  transition:
    background-color 0.3s ease,
    filter 0.3s ease,
    opacity 0.3s ease,
    font-weight 0.3s ease,
    letter-spacing 0.3s ease;
  border-left: none;
  border-right: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
@media (max-width: 770px) {
  .newblogTable02 td,
  .newblogTable02--no-shadow td {
    padding: 1.5rem 1rem;
  }
}
.newblogTable02 tbody tr,
.newblogTable02--no-shadow tbody tr {
  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease,
    font-weight 0.3s ease,
    letter-spacing 0.3s ease;
  cursor: pointer;
}
.newblogTable02 tbody tr:nth-child(even),
.newblogTable02--no-shadow tbody tr:nth-child(even) {
  background: linear-gradient(135deg, #f0f9ff 0%, rgba(241, 250, 250, 0.5) 100%);
}
.newblogTable02 tbody tr:hover,
.newblogTable02--no-shadow tbody tr:hover {
  background: #fffbf7;
  transform: scale(1.002);
}
.newblogTable02--orange th {
  background: #ef4444;
}
.newblogTable02--wrap td {
  white-space: unset;
}
.newblogTable02 .total-row,
.newblogTable02--no-shadow .total-row {
  background: #f8fafc !important;
}
.newblogTable02 .total-row td,
.newblogTable02--no-shadow .total-row td {
  font-weight: 700;
  color: #0369a1;
  font-size: 2rem;
}
.newblogTable02.has-focused-row tbody tr,
.has-focused-row.newblogTable02--no-shadow tbody tr {
  filter: blur(2px);
  opacity: 0.4;
  transform: scale(0.98);
}
.newblogTable02.has-focused-row tbody tr.focused,
.has-focused-row.newblogTable02--no-shadow tbody tr.focused {
  filter: none;
  opacity: 1;
  background: #fffbf7;
  transform: scale(1.005);
}
.newblogTable02.has-focused-row tbody tr.focused td,
.has-focused-row.newblogTable02--no-shadow tbody tr.focused td {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.newblogTable03 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 770px) {
  .newblogTable03 {
    font-size: 1.2 rem;
  }
}
.newblogTable03 th,
.newblogTable03 td {
  padding: 1.5rem;
  text-align: left;
  border: none;
  border-bottom: 1px solid #e2e8f0;
}
@media (max-width: 770px) {
  .newblogTable03 th,
  .newblogTable03 td {
    padding: 1rem 0.5rem;
  }
}
.newblogTable03 th {
  background: #f0f9ff;
  color: #0284c7;
  font-weight: 600;
  font-size: 1.4rem;
}
.newblogTable03 .pickup {
  background: rgba(232, 160, 43, 0.05);
  font-weight: 600;
  color: #dc2626;
}
.newblogTable03 td:first-child {
  font-weight: 600;
  color: #222222;
}
.newblogTable03 tr:hover {
  background: rgba(241, 250, 250, 0.5);
}

/* --------------------------------------------------  フロー  ------------------------------------------------------------------------------- */
.newblogFlow01 {
  counter-reset: count;
  margin: 2em 0;
  position: relative;
}
.newblogFlow01__content {
  padding: 1.3em 0 0.3em 1em;
  margin: 0 0 1em 1em;
  position: relative;
  border-top: solid 2px #ddd;
}
.newblogFlow01__content::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -10px;
  border-style: solid;
  border-width: 17px 8px 0 8px;
  border-color: #ddd transparent transparent transparent;
}
.newblogFlow01__content::after {
  content: "";
  display: block;
  height: calc(100% - 36px);
  border-left: dashed 4px #ddd;
  position: absolute;
  top: 16px;
  left: -4px;
}
.newblogFlow01__label {
  padding: 3px 20px 3px 15px;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: -18px;
  left: -20px;
  background: #0284c7;
  border-radius: 20px;
  z-index: 1;
}
.newblogFlow01__label::after {
  counter-increment: count;
  content: counter(count);
  position: relative;
  left: 0.3em;
}
.newblogFlow01__title {
  font-weight: bold;
  font-size: 120%;
  margin-top: 8px;
}
.newblogFlow01__title i {
  position: absolute;
  left: 12px;
  top: 32px;
  color: #ef4444;
  font-size: 1.1em;
}
.newblogFlow01__body {
  margin-top: 0.5em;
  padding: 0 0 1em;
}
.newblogFlow01 > :last-child {
  box-shadow: 5px 7px 0 -5px #ddd;
}
.newblogFlow01 > :last-child::before,
.newblogFlow01 > :last-of-type::after {
  display: none;
}

/*　雨樋　*/
.newblog-flow02 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 3rem 0;
  position: relative;
}
.newblog-flow02::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}
.newblog-flow02__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease-out;
}
.newblog-flow02__item:hover {
  transform: translateX(10px);
}
.newblog-flow02__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: white;
  border: 3px solid #0ea5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5e9;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}
.newblog-flow02__content {
  flex: 1;
  padding-top: 0.8rem;
}
.newblog-flow02__title {
  font-weight: 600;
  color: #222222;
  margin-bottom: 0.3em;
}
.newblog-flow02__desc {
  font-size: 1.4rem;
  color: #64748b;
}
.newblog-flow02:hover .newblog-flow02__icon {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.timeline {
  position: relative;
  padding: 3rem 0;
  margin: 4rem 0;
  list-style: none !important;
  margin-left: 0 !important;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 3rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #0ea5e9, #0284c7);
  box-shadow: 0 0 8px rgba(74, 172, 168, 0.3);
}
@media (max-width: 770px) {
  .timeline::before {
    left: 2rem;
  }
}
.timeline__item {
  position: relative;
  padding-left: 8rem;
  margin-bottom: 4rem;
}
@media (max-width: 770px) {
  .timeline__item {
    padding-left: 5rem;
  }
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0.5rem;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow:
    0 0 0 2px #0ea5e9,
    0 4px 8px rgba(74, 172, 168, 0.3);
}
@media (max-width: 770px) {
  .timeline__item::before {
    left: 1rem;
  }
}
.timeline__date {
  font-weight: 600;
  color: #0284c7;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.timeline__content {
  background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 2.4rem;
  border-radius: 1.2rem;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.08),
    0 6px 12px rgba(0, 0, 0, 0.04);
  border-left: 3px solid #0ea5e9;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.timeline__content h6 {
  color: #0284c7;
  margin-bottom: 1.2rem;
}
.timeline__content i {
  color: #0ea5e9;
  margin-right: 1rem;
}

.timeline02 {
  position: relative;
  padding: 2rem 0;
  margin: 3rem 0;
  list-style: none !important;
  margin-left: 0 !important;
}
.timeline02::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #0ea5e9, #ef4444);
}
.timeline02__item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
  opacity: 0;
  -webkit-animation: slide-in-left 0.6s ease-out forwards;
  animation: slide-in-left 0.6s ease-out forwards;
}
.timeline02__item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.timeline02__item:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.timeline02__item:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.timeline02__item:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.timeline02__item::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: #ef4444;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #ef4444;
}

/* --------------------------------------------------  ボタン  ------------------------------------------------------------------------------- */
.ctaButton01 {
  background: #e8a02b;
  color: #ffffff !important;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  transition: all 0.5s ease;
  height: 64px;
  line-height: 64px;
  padding: 0 120px;
  font-weight: bold;
}
.ctaButton01:hover {
  background-color: #ffffff;
  color: #ef4444 !important;
  border: 1px #e8a02b solid;
  font-weight: bold;
}

.linkButton {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: white !important;
  padding: 25px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 8px 20px rgba(74, 172, 168, 0.3);
  overflow: hidden;
  z-index: 1;
}
.linkButton:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 12px;
}
.linkButton:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 30px rgba(74, 172, 168, 0.4);
  text-decoration: none;
  color: white;
}
.linkButton:hover:before {
  opacity: 1;
}
.linkButton:hover i {
  transform: scale(1.2);
}
.linkButton i {
  font-size: 2em;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.linkButton__text {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.linkButton__year {
  display: block;
  font-size: 1.3em;
  font-weight: 800;
  letter-spacing: 1px;
}
.linkButton__decoration {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: -1;
}
.linkButton__decoration:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 770px) {
  .linkButton {
    width: 100%;
  }
}

/* --------------------------------------------------  区切り線  ------------------------------------------------------------------------------- */
.divider {
  height: 1px;
  background: linear-gradient(to right, rgba(74, 172, 168, 0.1), rgba(74, 172, 168, 0.5), rgba(74, 172, 168, 0.1));
  margin: 60px 0;
  position: relative;
}
.divider::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(74, 172, 168, 0.1);
}
.divider::after {
  content: "\f004";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  font-size: 1em;
  color: #ef4444;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ---------------- div version -------------------*/
.divider02 {
  text-align: center;
  margin: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.divider02::before,
.divider02::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.divider02 i {
  color: #ef4444;
  font-size: 2rem;
}

.divider03 {
  margin: 8rem 0;
  text-align: center;
  position: relative;
}
.divider03::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e8f0;
}
.divider03 i {
  position: relative;
  background: white;
  padding: 0 2rem;
  color: #ef4444;
  font-size: 2rem;
}

.divider04,
.divider04--orange {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 6rem 0;
}
.divider04--orange {
  background: linear-gradient(90deg, transparent, #fef2f2, transparent);
}

.divider05 {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #fef2f2 50%, transparent 100%);
  margin: 6rem 0;
  opacity: 0.5;
  position: relative;
  overflow: hidden;
}
.divider05::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
  -webkit-animation: shimmer03 3s infinite;
  animation: shimmer03 3s infinite;
}

.divider06 {
  width: 100%;
  height: 1px;
  background: #e2e8f0;
  margin: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}
.divider06::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  border-radius: 2px;
}

.divider07 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8rem 0;
}
.divider07::before,
.divider07::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.divider07__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f0f9ff;
  border-radius: 50%;
  color: #0ea5e9;
  font-size: 1.4rem;
  margin: 0 1.5rem;
}

/* --------------------------------------------------  強調テキスト  ------------------------------------------------------------------------------- */
.highlightText {
  background: linear-gradient(transparent 65%, rgba(74, 172, 168, 0.2) 65%);
  font-weight: 700;
  color: #0284c7;
  padding: 0.2rem 0.4rem;
  border-radius: 0.3rem;
}

.highlightText02 {
  color: #0284c7;
  font-weight: 600;
  background: linear-gradient(120deg, transparent 0%, #fffbf7 10%, #fffbf7 90%, transparent 100%);
  padding: 0.2em 0.4em;
  border-radius: 3px;
}

.highlightText03 {
  font-weight: 600;
  background: linear-gradient(180deg, transparent 60%, #fef2f2 60%);
  padding: 0 0.2rem;
}

.highlightText04 {
  background: linear-gradient(to right, #fef2f2, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.highlightText05 {
  font-weight: 700;
  color: #0284c7;
  background: linear-gradient(to bottom, transparent 40%, rgba(249, 184, 87, 0.2) 64%);
  padding: 0 0.2em;
}
.highlightText05--orange-text {
  color: #dc2626;
}

.highlightText06 {
  color: #dc2626;
  font-weight: 600;
}

.importantText {
  color: #0284c7;
  font-weight: 600;
}

.highlightText07 {
  font-weight: 700;
  color: #0284c7;
  text-decoration: underline;
  -webkit-text-decoration-color: #ef4444;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  display: inline;
}

.highlightText08 {
  font-weight: 600;
  color: #0284c7;
  position: relative;
  padding-bottom: 8px;
  display: inline-block;
}
.highlightText08::after {
  content: "• • •";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  color: #ef4444;
  font-size: 0.6em;
  letter-spacing: 3px;
}

.highlightText09 {
  font-weight: 700;
  color: black;
}

/* 10月リフォーム */
.versatile-tag01 {
  display: inline-block;
  background: #ef4444;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* 高圧洗浄 */
.highlightText-box01 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 1rem 0;
}

/* --------------------------------------------------  アニメーション  ------------------------------------------------------------------------------- */
@-webkit-keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(3.1);
    opacity: 0.15;
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(3.1);
    opacity: 0.15;
  }
}
@-webkit-keyframes pulse02 {
  0%,
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(1.1);
  }
}
@keyframes pulse02 {
  0%,
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(1.1);
  }
}
@-webkit-keyframes pulse-ranking {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes pulse-ranking {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@-webkit-keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(-3deg);
  }
  75% {
    transform: translate(-30px, -20px) rotate(2deg);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(-3deg);
  }
  75% {
    transform: translate(-30px, -20px) rotate(2deg);
  }
}
@-webkit-keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@-webkit-keyframes shimmer02 {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
@keyframes shimmer02 {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
@-webkit-keyframes shimmer03 {
  to {
    left: 100%;
  }
}
@keyframes shimmer03 {
  to {
    left: 100%;
  }
}
@-webkit-keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@-webkit-keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*# sourceMappingURL=newBlog.css.map */
