@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-light {
  color: #666666 !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-main {
  color: #0ea5e9 !important;
}

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

.u-color-main-dark {
  color: #0369a1 !important;
}

.u-background-color-support-offwhite {
  background-color: #f8fafc !important;
}

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

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

.u-color-white {
  color: white !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-1p2rem {
  font-size: 1.2rem !important;
}

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

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

.u-main-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-accent-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%;
}

/* --------------------------------------------------  セットアップ  --------------------------------------------------------------------------- */
.blog-Content {
  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;
}
.blog-Content p {
  line-height: 2;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.blog-Content sup {
  vertical-align: super;
  font-size: smaller;
}

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

.svgBox {
  text-align: center;
}

/* ------------------------------------------------------  汎用  ------------------------------------------------------------------------------ */
.icon-circle01 {
  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-circle01--center {
  margin: 0 auto;
}

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

.left-in {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease-out !important;
}
.left-in.visible {
  opacity: 1;
  transform: translateX(0);
}
.left-in--delay1 {
  transition-delay: 0.2s !important;
}
.left-in--delay2 {
  transition-delay: 0.4s !important;
}

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

/* --------------------------------------------------  画像表示用  ----------------------------------------------------------------------------- */
.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;
}

/* --------------------------------------------------  ヘッダー  ------------------------------------------------------------------------------- */
/* ----------------------------------------------------  見出し  ------------------------------------------------------------------------------- */
.blog-title-xl01 {
  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);
}
.blog-title-xl01::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
}

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

.blog-title-l01 {
  font-size: clamp(1.9rem, 3vw, 2.4rem) !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) {
  .blog-title-l01 {
    font-size: 1.3em !important;
  }
}
.blog-title-l01::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #ef4444;
}
.blog-title-l01 i {
  color: #ef4444;
}

/* --------------------------------------------------  ブロック  ------------------------------------------------------------------------------- */
.content-block01 {
  padding: 24px;
  margin: 0;
  position: relative;
}
.content-block01 p:last-child {
  margin-bottom: 0;
}
@media (max-width: 770px) {
  .content-block01 {
    padding: 16px;
  }
}
.content-block01--main {
  background-color: #f0f9ff;
}
.content-block01--accent {
  background-color: #fef2f2;
}
.content-block01--offwhite {
  background-color: #f8fafc;
}
.content-block01--gradient-main {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  color: white;
}
.content-block01--box-shadow {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.content-block01--radius {
  border-radius: 8px;
}
.content-block01--top-radius {
  border-radius: 8px 8px 0 0;
}
.content-block01--bottom-radius {
  border-radius: 0 0 8px 8px;
}
.content-block01--left-line {
  border-left: 4px solid #0284c7;
}
.content-block01--left-line-accent {
  border-left: 4px solid #ef4444;
}
.content-block01--top-line {
  border-top: 4px solid #0284c7 !important;
}
.content-block01--top-line-accent {
  border-top: 4px solid #ef4444 !important;
}
.content-block01--border {
  border: 1px solid #0284c7;
}
.content-block01--border-accent {
  border: 1px solid #ef4444;
}
.content-block01--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;
}
.content-block01__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;
}
.content-block01__icon--accent {
  background-color: #ef4444;
}

.diagram-placeholder {
  border: 2px dashed #0ea5e9;
  padding: 4rem 2rem;
  margin: 3rem 0;
  text-align: center;
}
.diagram-placeholder--radius {
  border-radius: 0.8rem;
}
.diagram-placeholder__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);
}

.cta-block {
  background: linear-gradient(135deg, #f0f9ff, #fffbf7);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}
.cta-block--box-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.cta-block .button-container {
  display: grid;
  width: 64%;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 0 auto;
}
@media (max-width: 770px) {
  .cta-block .button-container {
    grid-template-columns: 1fr;
  }
}
.cta-block .btn {
  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;
}
.cta-block .btn:hover {
  background-color: #dc2626;
  color: #ffffff;
}
.cta-block .btn--2nd {
  background-color: #0ea5e9;
}
.cta-block .btn--2nd:hover {
  background-color: #0284c7;
  color: #ffffff;
}

/* ----------------------------------------------------  リスト  ----------------------------------------------------------------------------- */
/*　2026省エネキャンペーン　*/
.block-list01 {
  list-style: none !important;
  padding: 0;
  margin-left: 0 !important;
}
.block-list01__item {
  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;
}
.block-list01__item i {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  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.2rem;
  margin-top: 0.2rem;
}
.block-list01__item:hover {
  transform: translateX(8px);
  background: #f0f9ff;
}

/*　2026省エネキャンペーン　*/
.block-list02 {
  list-style: none !important;
  margin-left: 0 !important;
  padding: 2rem 2.5rem;
}
.block-list02--offwhite {
  background: #f8fafc;
}
.block-list02--radius {
  border-radius: 16px;
}
.block-list02__item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px dashed #e2e8f0;
}
.block-list02__item:last-child {
  border-bottom: none;
}
.block-list02__item:hover .block-list02__icon {
  background: #0ea5e9;
  color: white;
}
.block-list02__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #0ea5e9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5e9;
  font-size: 1.1rem;
}

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

/*　凍害　*/
.faq-list {
  list-style: none !important;
  margin-left: 0 !important;
}
.faq-list__item {
  margin-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 20px;
}
.faq-list__question {
  font-weight: bold;
  font-size: 1.1em;
  color: #0284c7;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}
.faq-list__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) {
  .faq-list__question::before {
    align-self: auto;
  }
}
.faq-list__answer {
  padding-left: 36px;
  position: relative;
}
.faq-list__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) {
  .faq-list__answer::before {
    top: 0;
  }
}

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

/* --------------------------------------------------  grid リスト  -------------------------------------------------------------------------- */
.stat-grid01 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc((100% - 4rem) / 3), 1fr));
  gap: 2rem;
  list-style: none !important;
  margin-left: 0 !important;
}
@media (max-width: 770px) {
  .stat-grid01 {
    grid-template-columns: 1fr;
  }
}
.stat-grid01__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;
}
.stat-grid01__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}
.stat-grid01__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.15);
}
.stat-grid01__item--accent::before {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.stat-grid01__item--accent .stat-grid01__value {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-grid01__item--accent .stat-grid01__icon {
  background: #fef2f2;
  color: #ef4444;
}
.stat-grid01__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;
}
.stat-grid01__value {
  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;
}
.stat-grid01__value--small {
  font-size: clamp(2rem, 4vw, 3rem) !important;
}
.stat-grid01__unit {
  font-size: 1.8rem;
  font-weight: 500;
}
.stat-grid01__label {
  font-size: 1.3rem;
  color: #64748b !important;
  font-weight: 500;
}

/*　2026窓リノベ　*/
.grid-card01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 30px 0 !important;
  list-style: none !important;
}
.grid-card01__item {
  background-color: white;
  padding: 25px;
  transition: transform 0.3s ease;
}
.grid-card01__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.grid-card01__item--radius {
  border-radius: 8px;
}
.grid-card01__item--box-shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.grid-card01__item--top-line {
  border-top: 4px solid #0ea5e9;
}
.grid-card01__item--light {
  background-color: #f8fafc;
}
.grid-card01--3rows {
  grid-template-columns: repeat(3, 1fr);
}

/* --------------------------------------------------  DL リスト  ---------------------------------------------------------------------------- */
/* --------------------------------------------------  テーブル  ----------------------------------------------------------------------------- */
.blog-table01 {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  background: white;
  overflow: hidden;
}
@media (max-width: 770px) {
  .blog-table01 {
    font-size: 1.4rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .blog-table01::-webkit-scrollbar {
    height: 8px;
  }
  .blog-table01::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .blog-table01::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }
}
.blog-table01--box-shadow {
  box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.04), 0 8px 16px rgba(0, 0, 0, 0.02);
}
.blog-table01--radius {
  border-radius: 1rem;
}
@media (max-width: 770px) {
  .blog-table01 th,
.blog-table01 td {
    padding: 1.2rem 1rem;
    font-size: 1.3rem;
    min-width: 100px;
  }
}
.blog-table01 thead {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}
.blog-table01 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) {
  .blog-table01 th {
    padding: 1.5rem 1rem;
  }
}
.blog-table01 td {
  padding: 1.2rem;
  border-bottom: 1px solid #e2e8f0;
  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) {
  .blog-table01 td {
    padding: 1.5rem 1rem;
  }
}
.blog-table01 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;
}
.blog-table01 tbody tr:hover {
  background: #f0f9ff;
  transform: scale(1.002);
}
.blog-table01--accent th {
  background: #ef4444;
}
.blog-table01--main-light th {
  color: #0284c7;
  background: #f0f9ff;
  border-bottom: 2px solid #0284c7 !important;
}
.blog-table01--wrap td {
  white-space: unset;
}
.blog-table01 .total-row {
  background: #f8fafc !important;
}
.blog-table01 .total-row td {
  font-weight: 700;
  color: #0369a1;
  font-size: 2rem;
}
.blog-table01.has-focused-row tbody tr {
  filter: blur(2px);
  opacity: 0.4;
  transform: scale(0.98);
}
.blog-table01.has-focused-row tbody tr.focused {
  filter: none;
  opacity: 1;
  background: #fffbf7;
  transform: scale(1.005);
}
.blog-table01.has-focused-row tbody tr.focused td {
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ----------------------------------------------------  フロー  ----------------------------------------------------------------------------- */
/* ----------------------------------------------------  ボタン  ----------------------------------------------------------------------------- */
/* --------------------------------------------------  区切り線  ----------------------------------------------------------------------------- */
.divider01 {
  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;
}
.divider01::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);
}
.divider01::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 {
  width: 100%;
  height: 1px;
  background: #e2e8f0;
  margin: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}
.divider02::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;
}

.divider03 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8rem 0;
}
.divider03::before, .divider03::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.divider03__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;
}

/* --------------------------------------------------  強調テキスト  --------------------------------------------------------------------------- */
/* --------------------------------------------------  アニメーション  ------------------------------------------------------------------------- */
@-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=blog-2026.css.map */