@charset "utf-8";
/* CSS Document */

/*==========================================================
__トップ
==========================================================*/
.pc{
    display: none;
}
.sp{
    display: block;
}

.fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fadein.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Hero Section (Logo Balance Improved) ===== */
.hero-temaraku.mielu-style {
  position: relative;
  width: 100%;
  /* min-width: 1200px; */
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #f7faff 60%, #e8f2ff 100%);
  background-size: 200% 200%;
  animation: gradientMove 1s ease infinite alternate;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
/* 内側コンテナ */
.hero-temaraku.mielu-style .hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  padding: 100px 0 129px;
  flex-direction: column;
}

/* 左側テキスト領域 */
.hero-temaraku.mielu-style .hero-text {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 3;
  text-align: center;
  /* position: relative; */
  box-sizing: border-box;
  background-color: #ffffff82;
  padding: 15px;
}

/* ===== ロゴ部分 ===== */
.hero-temaraku.mielu-style .hero-logo {
  display: block;
  width: 247px; /* 適度な存在感 */
  margin-bottom: 40px; /* キャッチコピーとの間隔 */
  margin: 0 auto 14px;
  /* position: absolute; */
  /* left: 29px; */
  top: 35px;
    opacity: 0;
  transform: scale(0.95);
  animation: logoIn 1.2s ease-out 0.5s forwards;
}
@keyframes logoIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-temaraku.mielu-style .hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 見出し・テキスト */
.hero-temaraku.mielu-style .hero-text h1 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
  line-height: 1.6;
}
.hero-temaraku.mielu-style .hero-text{
    animation: fadeInUp 1.2s ease-out both;
}
.hero-temaraku.mielu-style .hero-text .em {
  color: #009fe8;
  font-weight: 700;
}
.hero-temaraku.mielu-style .hero-text h1,
.hero-temaraku.mielu-style .hero-text p {
  opacity: 0;
  transform: translateY(20px);
  animation: textIn 1s ease-out forwards;
}
.hero-temaraku.mielu-style .hero-text h1 { animation-delay: 0.8s; }
.hero-temaraku.mielu-style .hero-text p { animation-delay: 1.4s; }
@keyframes textIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* ==== 1文字ずつフェードアップ ==== */
.split-text span {
  opacity: 0;
  display: inline-block;
  transform: translateY(15px);
  animation: charFadeUp 0.6s ease forwards;
}

@keyframes charFadeUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-temaraku.mielu-style .hero-text p {
  color: #555;
  line-height: 1.8;
  font-size: .8rem;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ===== 右側画像部分 ===== */
.hero-temaraku.mielu-style .hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-temaraku.mielu-style .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 0 0 0 60px;
  transform: scale(1.8);
  filter: brightness(1.05);
  opacity: 0;
  transform: scale(1.8) translateX(30px) !important;
  animation: heroPhotoIn 1.6s ease-out 0.3s forwards;
}
@keyframes heroPhotoIn {
  0% {
    opacity: 0;
    transform: scale(1.1) translateX(30px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
    filter: blur(0);
  }
}

/* グラデーションオーバーレイ */
.hero-temaraku.mielu-style::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.9) 70%, transparent 100%);
  z-index: 2;
}

/* 下部ライン */
.hero-temaraku.mielu-style::after {
  /* content: ""; */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* ← 最初は非表示（幅ゼロ） */
  height: 6px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  z-index: 5;
  animation: lineSlide 1.8s ease-out forwards;
}

@keyframes lineSlide {
  0% {
    width: 0;
    left: 0;
    opacity: 0.2;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 100%;
    left: 0;
    opacity: 1;
  }
}
/* ===== Overview Section (1-column emphasis version) ===== */
.overview {
  background: linear-gradient(180deg, #f8fafc 0%, #eef5fa 100%);
  background-image:
    radial-gradient(circle at 30% 20%, rgba(0,159,232,0.12), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(255,64,129,0.08), transparent 70%);
  padding: 60px 0;
}

.overview-inner {
  /* width: 1200px; */
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.overview-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #111;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 15px;
  line-height: 1.5;
}

.overview-title::after {
  content: "";
  display: block;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  margin: 20px auto 0;
}

.overview-sub span {
  color: #009fe8;
  font-weight: bold;
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 30px;
}

.overview-left p {
  /* width: 80%; */
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 2.6;
  font-size: .9rem;
  color: #333;
  padding: 0 15px;
  letter-spacing: -.8px;
}

/* 構成イメージをより大きく見せる */
.diagram {
  text-align: center;
  margin-top: 60px;
  padding: 30px 15px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.diagram:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
}

.diagram img {
  width: 100%;
  max-width: 1000px; /* ← 以前より約1.5倍大きく */
  border-radius: 12px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
  transition: transform 0.4s ease;
}

.diagram img:hover {
  transform: scale(1.03);
}

.diagram .caption {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #666;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

/* ===== Feature Section ===== */
.feature-section {
  background: #fff;
  padding: 60px 0;
}

.feature-inner {
  /* width: 1200px; */
  margin: 0 auto;
  /* display: flex; */
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 0 15px;
}

/* 左テキスト */
.feature-text {
  width: 100%;
  color: #333;
  margin-bottom: 50px;
}

.feature-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 30px;
}

.feature-text h2 .blue {
  color: #009fe8;
}

.feature-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-top: 40px;
  margin-bottom: 12px;
}

.feature-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 10px;
  max-width: 520px;
}

.feature-text .highlight {
  color: #e91e63;
  font-weight: 600;
}

/* 右画像群 */
.feature-images {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-images .main-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.feature-images .sub-images {
  display: flex;
  gap: 15px;
}

.feature-images .sub-images img {
  width: calc(50% - 8px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-images .sub-images img:hover {
  transform: scale(1.04);
}

/* ===== Multi Monitor Section (Final Polished) ===== */
.multi-monitor {
  background: linear-gradient(180deg, #f9fbfd 0%, #f2f7fc 60%, #eaf4fb 100%);
  padding: 60px 0 80px;
  /* min-width: 1200px; */
  animation: fadeInUp 1s ease-out both;
  animation-delay: 0.4s;
}

.multi-inner {
  /* width: 1200px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-start;
  gap: 30px;
  padding: 0 15px;
}

/* 左テキスト */
.multi-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.multi-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 50px;
  color: #111;
  position: relative;
  display: inline-block;
}

.multi-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  border-radius: 2px;
}

.multi-text .blue {
  color: #009fe8;
}

/* 小見出し */
.multi-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #009fe8;
  margin-bottom: 20px;
  border-left: 4px solid #009fe8;
  padding-left: 10px;
}

/* 数字付きリスト */
.number-list {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
}

.number-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 22px;
  line-height: 1.9;
  /* display: flex; */
  align-items: flex-start;
  position: relative;
}

.number-list .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00b5e9;
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  margin-right: 7px;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 4px rgba(0, 181, 233, 0.25);
}

.number-list .note {
  display: block;
  margin-left: 26px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* 効果ブロック */
.effect-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.effect-block li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 14px;
  position: relative;
  padding-left: 22px;
  line-height: 1.8;
}

.effect-block li::before {
  content: "◆";
  color: #e91e63;
  position: absolute;
  left: 0;
  top: 0;
}

/* 右側画像 */
.multi-image {
  text-align: center;
}

.multi-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  padding: 45px 28px;
  box-sizing: border-box;
}

.multi-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 45px rgba(0, 159, 232, 0.15);
}


/* ===== Use Case Section Final Polished ===== */
.usecase-section {
  background: linear-gradient(180deg, #f7fafc 0%, #eef6fb 100%);
  padding: 60px 0 80px;
  /* min-width: 1200px; */
  overflow: hidden;
  position: relative;
}

.usecase-inner {
  /* width: 90%; */
  max-width: 1600px;
  margin: 0 auto;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 0 15px;
}

/* テキスト部分 */
.usecase-text {
  flex: 0 0 42%;
  z-index: 2;
  margin-bottom: 25px;
}

.usecase-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #111;
}

.usecase-text .blue {
  color: #009fe8;
}

.usecase-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 2.1;
  letter-spacing: 0.02em;
}

/* 画像部分（右側） */
.usecase-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding: 15px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s 
ease, box-shadow 0.6s 
ease;
  border-radius: 20px;
}

.usecase-image img {
  width: 100%;
  max-width: 880px;
  /* border-radius: 20px; */
  /* background: #fff; */
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); */
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  /* padding: 15px; */
}

.usecase-image img:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 55px rgba(0, 159, 232, 0.18);
}

/* 下ラインで全体統一 */
.usecase-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
}


/* ===== Price Section ===== */
/* ===== 最終調整：料金・構成システムセクション ===== */
.price-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef5fa 100%);
  padding: 60px 0 60px; /* 下に余白を多めに */
  /* min-width: 1200px; */
  position: relative;
}

.price-inner {
  /* width: 1180px; */
  margin: 0 auto;
  color: #333;
  padding: 0 15px;
}

.price-inner h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
  letter-spacing: 0.02em;
}

.price-inner .blue {
  color: #009fe8;
}

/* --- 上段カード --- */
.price-top {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  padding: 25px 15px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  margin-bottom: 80px;
  gap: 40px;
}

.price-logo {
  width: 50%;
  margin: 0 auto 20px;
}

.price-logo img {
  width: 100%;
  height: auto;
}

.price-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.9;
}

.price-text .main-price {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.price-text .highlight {
  color: #e91e63;
  font-weight: 700;
  font-size: 1.15rem;
}

.price-image {
  /* width: 480px; */
  flex-shrink: 0;
  text-align: center;
}

.price-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.price-image p.note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

/* --- 下段（機材カード） --- */
.price-sub {
  text-align: center;
}

.price-sub h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.equipments {
  /* display: flex; */
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}

.equipment {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 25px 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.equipment:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 159, 232, 0.12);
}

.equipment .eq-img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 25px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.equipment .eq-img img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.equipment:hover .eq-img img {
  transform: scale(1.05);
}

.equipment h4 {
  font-size: 1.1rem;
  color: #009fe8;
  font-weight: 700;
  margin-bottom: 10px;
}

.equipment p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}

/* --- 下ライン（統一用） --- */
.price-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
}

/* ---------------------------------------------
   After Service Section
--------------------------------------------- */
.after-section {
  background: linear-gradient(180deg, #f7fbfd 0%, #eef5fa 100%);
  padding: 80px 15px 80px;
  text-align: center;
}

.after-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.after-lead {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.9;
}

.after-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

.after-img img {
  width: 520px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.6s ease;
}

.after-img img:hover {
  transform: scale(1.02);
}

.after-text {
  text-align: left;
  max-width: 400px;
}

.after-text h3 {
  font-size: 1.25rem;
  color: #009fe8;
  margin-bottom: 12px;
}

.after-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.after-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid #aaa;
  border-radius: 50px;
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.after-btn:hover {
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ---------------------------------------------
   Contact Us Section
--------------------------------------------- */
.contact-section {
  background: linear-gradient(0deg, #f9fcfe 0%, #ffffff 100%);
  padding: 80px 0 80px;
  text-align: center;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #222;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

.contact-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 35px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 34px;
  border-radius: 50px;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

/* ---------------------------------------------
   News Section
--------------------------------------------- */
.news-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
  padding: 80px 0 80px;
  text-align: center;
}

.news-en {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 12px;
}

.news-ja {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

.news-list {
  width: 90%;
  max-width: 880px;
  margin: 0 auto 60px;
  border-top: 1px solid #ddd;
  text-align: left;
  list-style: none;
  padding: 0;
}

.news-list li {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  transition: background 0.3s ease;
}

.news-list li:hover {
  background: rgba(0, 159, 232, 0.03);
}

.news-date,
.news-cat {
  font-size: 0.85rem;
  color: #777;
  margin-right: 10px;
  letter-spacing: 0.05em;
}

.news-title {
  font-size: 1rem;
  color: #111;
  margin-top: 4px;
}

.news-more {
  text-align: center;
}

.news-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #aaa;
  border-radius: 50px;
  padding: 10px 22px;
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-btn:hover {
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}


@media (min-width: 767px){
.sp{
    display: none;
}
  .pc{
    display: block;
}

/* ===== Hero Section (Logo Balance Improved) ===== */
.hero-temaraku.mielu-style {}

/* 内側コンテナ */
.hero-temaraku.mielu-style .hero-inner {}

/* 左側テキスト領域 */
.hero-temaraku.mielu-style .hero-text {}

/* ===== ロゴ部分 ===== */
.hero-temaraku.mielu-style .hero-logo {}

.hero-temaraku.mielu-style .hero-logo img {}

/* 見出し・テキスト */
.hero-temaraku.mielu-style .hero-text h1 {}
.hero-temaraku.mielu-style .hero-text {}
.hero-temaraku.mielu-style .hero-text .em {}

.hero-temaraku.mielu-style .hero-text p {}
@keyframes fadeInUp {
 from { opacity: 0; transform: translateY(30px); }
 to { opacity: 1; transform: translateY(0); }
}
/* ===== 右側画像部分 ===== */
.hero-temaraku.mielu-style .hero-photo {
    width: 98vw;
}

.hero-temaraku.mielu-style .hero-photo img {
    transform: scale(1.3);
    transform: scale(1.3) translateX(30px) !important;
}

/* グラデーションオーバーレイ */
.hero-temaraku.mielu-style::before {}

/* 下部ライン */
.hero-temaraku.mielu-style::after {}


/* ===== Overview Section (1-column emphasis version) ===== */
.overview {}

.overview-inner {}

.overview-title {}

.overview-title::after {}

.overview-sub span {}

.overview-left p {
    font-size: 1rem;
    letter-spacing: 1px;
}

/* 構成イメージをより大きく見せる */
.diagram {
    max-width: 700px;
    margin: 0 auto;
}
.diagram:hover {}

.diagram img {}

.diagram img:hover {}

.diagram .caption {}

/* ===== Feature Section ===== */
.feature-section {}

.feature-inner {}

/* 左テキスト */
.feature-text {
    max-width: 500px;
    margin: 0 auto 25px;
}

.feature-text h2 {}

.feature-text h2 .blue {}

.feature-text h3 {}

.feature-text p {}

.feature-text .highlight {}

/* 右画像群 */
.feature-images {
    max-width: 500px;
    margin: 0 auto;
}

.feature-images .main-image img {}

.feature-images .sub-images {}

.feature-images .sub-images img {}

.feature-images .sub-images img:hover {}

/* ===== Multi Monitor Section (Final Polished) ===== */
.multi-monitor {}

.multi-inner {}

/* 左テキスト */
.multi-text {
    max-width: 500px;
    margin: 0 auto;
}

.multi-text h2 {}

.multi-text h2::after {}

.multi-text .blue {}

/* 小見出し */
.multi-text h3 {}

/* 数字付きリスト */
.number-list {}

.number-list li {}

.number-list .num {}

.number-list .note {}

/* 効果ブロック */
.effect-block ul {}

.effect-block li {}

.effect-block li::before {}

/* 右側画像 */
.multi-image {}

.multi-image img {}

.multi-image img:hover {}


/* ===== Use Case Section Final Polished ===== */
.usecase-section {}

.usecase-inner {
    max-width: 600px;
}

/* テキスト部分 */
.usecase-text {}

.usecase-text h2 {}

.usecase-text .blue {}

.usecase-text p {}

/* 画像部分（右側） */
.usecase-image {}

.usecase-image img {}

.usecase-image img:hover {}

/* 下ラインで全体統一 */
.usecase-section::after {}


/* ===== Price Section ===== */
/* ===== 最終調整：料金・構成システムセクション ===== */
.price-section {}

.price-inner {}

.price-inner h2 {
    text-align: center;
}

.price-inner .blue {}

/* --- 上段カード --- */
.price-top {
    max-width: 500px;
    margin: 0 auto 80px;
    padding: 25px 40px;
}

.price-logo {
    max-width: 300px;
}

.price-logo img {}

.price-text {}

.price-text .main-price {}

.price-text .highlight {}

.price-image {}

.price-image img {}

.price-image p.note {}

/* --- 下段（機材カード） --- */
.price-sub {}

.price-sub h3 {}

.equipments {
    display: flex;
}

.equipment {}

.equipment:hover {}

.equipment .eq-img {}

.equipment .eq-img img {}

.equipment:hover .eq-img img {}

.equipment h4 {}

.equipment p {}

/* --- 下ライン（統一用） --- */
.price-section::after {}


footer {}
}

@media (min-width: 991px){
    .hero-temaraku.mielu-style {
  position: relative;
  width: 100%;
  min-width: inherit;
  overflow: hidden;
  /* background: linear-gradient(90deg, #ffffff 0%, #f7faff 60%, #e8f2ff 100%); */
}

/* 内側コンテナ */
.hero-temaraku.mielu-style .hero-inner {
  position: relative;
  z-index: 2;
  display: inherit;
  align-items: center;
  justify-content: space-between;
  padding: 66px 0 70px;
}

/* 左側テキスト領域 */
.hero-temaraku.mielu-style .hero-text {
  width: 34%;
  padding-left: 0px;
  z-index: 3;
  text-align: center;
  /* position: relative; */
}

/* ===== ロゴ部分 ===== */
.hero-temaraku.mielu-style .hero-logo {
  display: block;
  width: 270px; /* 適度な存在感 */
  margin-bottom: 40px; /* キャッチコピーとの間隔 */
  margin: 0 auto 18px;
  /* position: absolute; */
  /* left: 29px; */
  top: 35px;
}

.hero-temaraku.mielu-style .hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 見出し・テキスト */
.hero-temaraku.mielu-style .hero-text h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
  line-height: 1.6;
}
.hero-temaraku.mielu-style .hero-text{
    animation: fadeInUp 1.2s ease-out both;
}
.hero-temaraku.mielu-style .hero-text .em {
  color: #009fe8;
  font-weight: 700;
}

.hero-temaraku.mielu-style .hero-text p {
  color: #555;
  line-height: 1.8;
  font-size: .9rem;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ===== 右側画像部分 ===== */
.hero-temaraku.mielu-style .hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 66vw;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-temaraku.mielu-style .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  border-radius: 0 0 0 60px;
  transform: scale(1.05);
  filter: brightness(1.05);
  transform: scale(1.05) translateX(30px) !important;
}

/* グラデーションオーバーレイ */
.hero-temaraku.mielu-style::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.9) 70%, transparent 100%);
  z-index: 2;
}

/* 下部ライン */
.hero-temaraku.mielu-style::after {
  /* content: ""; */
  /* position: absolute; */
  /* bottom: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 6px; */
  /* background: linear-gradient(90deg, #009fe8, #ff69b4); */
  /* z-index: 5; */
}


/* ===== Overview Section (1-column emphasis version) ===== */
.overview {
  background: linear-gradient(180deg, #f8fafc 0%, #eef5fa 100%);
  background-image: radial-gradient(circle at 30% 20%, rgba(0,159,232,0.12), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(255,64,129,0.08), transparent 70%);
  padding: 100px 0;
}

.overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 100%;
}

.overview-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: #111;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 15px;
}

.overview-title::after {
  content: "";
  display: block;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  margin: 20px auto 0;
}

.overview-sub span {
  color: #009fe8;
  font-weight: bold;
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 30px;
}

.overview-left p {
  width: 80%;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 2.6;
  font-size: 1.1rem;
  color: #333;
}

/* 構成イメージをより大きく見せる */
.diagram {
  text-align: center;
  margin-top: 60px;
  padding: 50px 60px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.diagram:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
}

.diagram img {
  width: 100%;
  max-width: 1000px; /* ← 以前より約1.5倍大きく */
  border-radius: 12px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
  transition: transform 0.4s ease;
}

.diagram img:hover {
  transform: scale(1.03);
}

.diagram .caption {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #666;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

/* ===== Feature Section ===== */
.feature-section {
  background: #fff;
  padding: 120px 0;
}

.feature-inner {
  /* width: 1200px; */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  box-sizing: border-box;
  max-width: 1200px;
  width: 100%;
}

/* 左テキスト */
.feature-text {
  width: 50%;
  color: #333;
  max-width: inherit;
}

.feature-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 50px;
}

.feature-text h2 .blue {
  color: #009fe8;
}

.feature-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-top: 40px;
  margin-bottom: 12px;
}

.feature-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 10px;
  max-width: 520px;
}

.feature-text .highlight {
  color: #e91e63;
  font-weight: 600;
}

/* 右画像群 */
.feature-images {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-images .main-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.feature-images .sub-images {
  display: flex;
  gap: 15px;
}

.feature-images .sub-images img {
  width: calc(50% - 8px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-images .sub-images img:hover {
  transform: scale(1.04);
}

/* ===== Multi Monitor Section (Final Polished) ===== */
.multi-monitor {
  background: linear-gradient(180deg, #f9fbfd 0%, #f2f7fc 60%, #eaf4fb 100%);
  padding: 140px 0 180px;
  /* min-width: 1200px; */
  animation: fadeInUp 1s ease-out both;
  animation-delay: 0.4s;
}

.multi-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: flex-start;
  gap: 70px;
  box-sizing: border-box;
  max-width: 1200px;
  width: 100%;
}

/* 左テキスト */
.multi-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: inherit;
}

.multi-text h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 50px;
  color: #111;
  position: relative;
  display: inline-block;
}

.multi-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  border-radius: 2px;
}

.multi-text .blue {
  color: #009fe8;
}

/* 小見出し */
.multi-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #009fe8;
  margin-bottom: 20px;
  border-left: 4px solid #009fe8;
  padding-left: 10px;
}

/* 数字付きリスト */
.number-list {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
}

.number-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 22px;
  line-height: 1.9;
  /* display: flex; */
  align-items: flex-start;
  position: relative;
}

.number-list .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00b5e9;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 4px rgba(0, 181, 233, 0.25);
}

.number-list .note {
  display: block;
  margin-left: 40px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* 効果ブロック */
.effect-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.effect-block li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 14px;
  position: relative;
  padding-left: 22px;
  line-height: 1.8;
}

.effect-block li::before {
  content: "◆";
  color: #e91e63;
  position: absolute;
  left: 0;
  top: 0;
}

/* 右側画像 */
.multi-image {
  text-align: center;
}

.multi-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  padding: 30px 50px;
  box-sizing: border-box;
}

.multi-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 45px rgba(0, 159, 232, 0.15);
}


/* ===== Use Case Section Final Polished ===== */
.usecase-section {
  background: linear-gradient(180deg, #f7fafc 0%, #eef6fb 100%);
  padding: 160px 0 200px;
  /* min-width: 1200px; */
  overflow: hidden;
  position: relative;
}

.usecase-inner {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* テキスト部分 */
.usecase-text {
  flex: 0 0 42%;
  z-index: 2;
}

.usecase-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #111;
}

.usecase-text .blue {
  color: #009fe8;
}

.usecase-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 2.1;
  letter-spacing: 0.02em;
}

/* 画像部分（右側） */
.usecase-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding: 15px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s 
ease, box-shadow 0.6s 
ease;
  border-radius: 20px;
}

.usecase-image img {
  width: 100%;
  max-width: 880px;
  /* border-radius: 20px; */
  /* background: #fff; */
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); */
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  padding: 15px;
}

.usecase-image img:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 55px rgba(0, 159, 232, 0.18);
}

/* 下ラインで全体統一 */
.usecase-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
}


/* ===== Price Section ===== */
/* ===== 最終調整：料金・構成システムセクション ===== */
.price-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef5fa 100%);
  padding: 140px 0 200px; /* 下に余白を多めに */
  /* min-width: 1200px; */
  position: relative;
}

.price-inner {
  /* width: 1180px; */
  margin: 0 auto;
  color: #333;
  box-sizing: border-box;
  max-width: 1180px;
}

.price-inner h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
  letter-spacing: 0.02em;
}

.price-inner .blue {
  color: #009fe8;
}

/* --- 上段カード --- */
.price-top {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  padding: 50px 60px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  margin-bottom: 80px;
  gap: 40px;
  /* max-width: inherit; */
}

.price-logo {
  width: 180px;
}

.price-logo img {
  width: 100%;
  height: auto;
}

.price-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.9;
}

.price-text .main-price {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.price-text .highlight {
  color: #e91e63;
  font-weight: 700;
  font-size: 1.15rem;
}

.price-image {
  width: 480px;
  flex-shrink: 0;
  text-align: center;
}

.price-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.price-image p.note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

/* --- 下段（機材カード） --- */
.price-sub {
  text-align: center;
}

.price-sub h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.equipments {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}

.equipment {
  width: 554px;
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 159, 232, 0.12);
}

.equipment .eq-img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 25px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.equipment .eq-img img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.equipment:hover .eq-img img {
  transform: scale(1.05);
}

.equipment h4 {
  font-size: 1.1rem;
  color: #009fe8;
  font-weight: 700;
  margin-bottom: 10px;
}

.equipment p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}

/* --- 下ライン（統一用） --- */
.price-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
}




footer {
  text-align: center;
  padding: 30px 0;
  background: #fff;
  color: #999;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}
}


@media (min-width: 1200px){
    .hero-temaraku.mielu-style {
  position: relative;
  width: 100%;
  min-width: 1200px;
  overflow: hidden;
  /* background: linear-gradient(90deg, #ffffff 0%, #f7faff 60%, #e8f2ff 100%); */
}

/* 内側コンテナ */
.hero-temaraku.mielu-style .hero-inner {
  position: relative;
  z-index: 2;
  display: inherit;
  align-items: center;
  justify-content: space-between;
  padding: 220px 0 300px;
}

/* 左側テキスト領域 */
.hero-temaraku.mielu-style .hero-text {
  width: 27%;
  padding-left: 80px;
  z-index: 3;
  text-align: center;
  /* position: relative; */
  padding: 0 0 0 80px;
  background-color: initial;
  box-sizing: content-box;
}

/* ===== ロゴ部分 ===== */
.hero-temaraku.mielu-style .hero-logo {
  display: block;
  width: 333px; /* 適度な存在感 */
  margin-bottom: 40px; /* キャッチコピーとの間隔 */
  margin: 0 auto 38px;
  /* position: absolute; */
  /* left: 29px; */
  top: 35px;
}

.hero-temaraku.mielu-style .hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 見出し・テキスト */
.hero-temaraku.mielu-style .hero-text h1 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
  line-height: 1.6;
}
.hero-temaraku.mielu-style .hero-text{
    animation: fadeInUp 1.2s ease-out both;
}
.hero-temaraku.mielu-style .hero-text .em {
  color: #009fe8;
  font-weight: 700;
}

.hero-temaraku.mielu-style .hero-text p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ===== 右側画像部分 ===== */
.hero-temaraku.mielu-style .hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 65vw;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-temaraku.mielu-style .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  border-radius: 0 0 0 60px;
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* グラデーションオーバーレイ */
.hero-temaraku.mielu-style::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.9) 70%, transparent 100%);
  z-index: 2;
}

/* 下部ライン */
.hero-temaraku.mielu-style::after {
}


/* ===== Overview Section (1-column emphasis version) ===== */
.overview {
  background: linear-gradient(180deg, #f8fafc 0%, #eef5fa 100%);
  background-image:
    radial-gradient(circle at 30% 20%, rgba(0,159,232,0.12), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(255,64,129,0.08), transparent 70%);
  padding: 100px 0;
}

.overview-inner {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  padding: 0;
}

.overview-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: #111;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 15px;
}

.overview-title::after {
  content: "";
  display: block;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  margin: 20px auto 0;
}

.overview-sub span {
  color: #009fe8;
  font-weight: bold;
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 30px;
}

.overview-left p {
  width: 80%;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 2.6;
  font-size: 1.1rem;
  color: #333;
}

/* 構成イメージをより大きく見せる */
.diagram {
  text-align: center;
  margin-top: 60px;
  padding: 50px 60px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: inherit;
}
.diagram:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
}

.diagram img {
  width: 100%;
  max-width: 1000px; /* ← 以前より約1.5倍大きく */
  border-radius: 12px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
  transition: transform 0.4s ease;
}

.diagram img:hover {
  transform: scale(1.03);
}

.diagram .caption {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #666;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

/* ===== Feature Section ===== */
.feature-section {
  background: #fff;
  padding: 120px 0;
}

.feature-inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 0;
}

/* 左テキスト */
.feature-text {
  width: 50%;
  color: #333;
}

.feature-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 50px;
}

.feature-text h2 .blue {
  color: #009fe8;
}

.feature-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-top: 40px;
  margin-bottom: 12px;
}

.feature-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 10px;
  max-width: 520px;
}

.feature-text .highlight {
  color: #e91e63;
  font-weight: 600;
}

/* 右画像群 */
.feature-images {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-images .main-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.feature-images .sub-images {
  display: flex;
  gap: 15px;
}

.feature-images .sub-images img {
  width: calc(50% - 8px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-images .sub-images img:hover {
  transform: scale(1.04);
}

/* ===== Multi Monitor Section (Final Polished) ===== */
.multi-monitor {
  background: linear-gradient(180deg, #f9fbfd 0%, #f2f7fc 60%, #eaf4fb 100%);
  padding: 140px 0 180px;
  min-width: 1200px;
  animation: fadeInUp 1s ease-out both;
  animation-delay: 0.4s;
}

.multi-inner {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: flex-start;
  gap: 70px;
  padding: 0;
}

/* 左テキスト */
.multi-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.multi-text h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 50px;
  color: #111;
  position: relative;
  display: inline-block;
}

.multi-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  border-radius: 2px;
}

.multi-text .blue {
  color: #009fe8;
}

/* 小見出し */
.multi-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #009fe8;
  margin-bottom: 20px;
  border-left: 4px solid #009fe8;
  padding-left: 10px;
}

/* 数字付きリスト */
.number-list {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
}

.number-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 22px;
  line-height: 1.9;
  /* display: flex; */
  align-items: flex-start;
  position: relative;
}

.number-list .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00b5e9;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 4px rgba(0, 181, 233, 0.25);
}

.number-list .note {
  display: block;
  margin-left: 40px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* 効果ブロック */
.effect-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.effect-block li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 14px;
  position: relative;
  padding-left: 22px;
  line-height: 1.8;
}

.effect-block li::before {
  content: "◆";
  color: #e91e63;
  position: absolute;
  left: 0;
  top: 0;
}

/* 右側画像 */
.multi-image {
  text-align: center;
}

.multi-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  padding: 30px 50px;
  box-sizing: border-box;
}

.multi-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 45px rgba(0, 159, 232, 0.15);
}


/* ===== Use Case Section Final Polished ===== */
.usecase-section {
  background: linear-gradient(180deg, #f7fafc 0%, #eef6fb 100%);
  padding: 160px 0 200px;
  min-width: 1200px;
  overflow: hidden;
  position: relative;
}

.usecase-inner {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* テキスト部分 */
.usecase-text {
  flex: 0 0 42%;
  z-index: 2;
}

.usecase-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #111;
}

.usecase-text .blue {
  color: #009fe8;
}

.usecase-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 2.1;
  letter-spacing: 0.02em;
}

/* 画像部分（右側） */
.usecase-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding: 15px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s 
ease, box-shadow 0.6s 
ease;
  border-radius: 20px;
}

.usecase-image img {
  width: 100%;
  max-width: 880px;
  /* border-radius: 20px; */
  /* background: #fff; */
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); */
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  padding: 15px;
}

.usecase-image img:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 55px rgba(0, 159, 232, 0.18);
}

/* 下ラインで全体統一 */
.usecase-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
}


/* ===== Price Section ===== */
/* ===== 最終調整：料金・構成システムセクション ===== */
.price-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef5fa 100%);
  padding: 140px 0 200px; /* 下に余白を多めに */
  min-width: 1200px;
  position: relative;
}

.price-inner {
  width: 1180px;
  margin: 0 auto;
  color: #333;
  padding: 0;
}

.price-inner h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
  letter-spacing: 0.02em;
}

.price-inner .blue {
  color: #009fe8;
}

/* --- 上段カード --- */
.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  padding: 50px 60px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  margin-bottom: 80px;
  gap: 40px;
  max-width: inherit;
  box-sizing: content-box;
}

.price-logo {
  width: 180px;
}

.price-logo img {
  width: 100%;
  height: auto;
}

.price-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.9;
}

.price-text .main-price {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.price-text .highlight {
  color: #e91e63;
  font-weight: 700;
  font-size: 1.15rem;
}

.price-image {
  width: 480px;
  flex-shrink: 0;
  text-align: center;
}

.price-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.price-image p.note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

/* --- 下段（機材カード） --- */
.price-sub {
  text-align: center;
}

.price-sub h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.equipments {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}

.equipment {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 159, 232, 0.12);
}

.equipment .eq-img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 25px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.equipment .eq-img img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.equipment:hover .eq-img img {
  transform: scale(1.05);
}

.equipment h4 {
  font-size: 1.1rem;
  color: #009fe8;
  font-weight: 700;
  margin-bottom: 10px;
}

.equipment p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}

/* --- 下ライン（統一用） --- */
.price-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #009fe8, #ff69b4);
}


/* ---------------------------------------------
   After Service Section
--------------------------------------------- */
.after-section {
  background: linear-gradient(180deg, #f7fbfd 0%, #eef5fa 100%);
  padding: 160px 0 180px;
  text-align: center;
}

.after-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.after-lead {
  font-size: 1rem;
  color: #555;
  margin-bottom: 70px;
  line-height: 1.9;
}

.after-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.after-img img {
  width: 520px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.6s ease;
}

.after-img img:hover {
  transform: scale(1.02);
}

.after-text {
  text-align: left;
  max-width: 400px;
}

.after-text h3 {
  font-size: 1.25rem;
  color: #009fe8;
  margin-bottom: 12px;
}

.after-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.after-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid #aaa;
  border-radius: 50px;
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.after-btn:hover {
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ---------------------------------------------
   Contact Us Section
--------------------------------------------- */
.contact-section {
  background: linear-gradient(0deg, #f9fcfe 0%, #ffffff 100%);
  padding: 180px 0 160px;
  text-align: center;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #222;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

.contact-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 60px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 34px;
  border-radius: 50px;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

/* ---------------------------------------------
   News Section
--------------------------------------------- */
.news-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
  padding: 160px 0 180px;
  text-align: center;
}

.news-en {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 12px;
}

.news-ja {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

.news-list {
  width: 80%;
  max-width: 880px;
  margin: 0 auto 60px;
  border-top: 1px solid #ddd;
  text-align: left;
  list-style: none;
  padding: 0;
}

.news-list li {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  transition: background 0.3s ease;
}

.news-list li:hover {
  background: rgba(0, 159, 232, 0.03);
}

.news-date,
.news-cat {
  font-size: 0.85rem;
  color: #777;
  margin-right: 10px;
  letter-spacing: 0.05em;
}

.news-title {
  font-size: 1rem;
  color: #111;
  margin-top: 4px;
}

.news-more {
  text-align: center;
}

.news-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #aaa;
  border-radius: 50px;
  padding: 10px 22px;
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-btn:hover {
  background: linear-gradient(90deg, #009fe8, #ff69b4);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}





}