.elementor-47173 .elementor-element.elementor-element-9fb0f56{--display:flex;}.elementor-47173 .elementor-element.elementor-element-d6efd96{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-47173 .elementor-element.elementor-element-1d5460f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-47173 .elementor-element.elementor-element-3479eab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-b932f89 *//* ===============================
   全体設定（ベーススタイル用）
=============================== */
.towa-web-container {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.8;
}

.towa-web-container * {
  box-sizing: border-box;
}

/* ===============================
   ヒーローセクション（トップ）
=============================== */
.towa-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  padding: 50px 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.towa-hero-text { flex: 1 1 300px; }

.towa-badge {
  display: inline-block;
  background: #4facfe;
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ★修正：他ページに合わせて 2.2rem に統一 */
.towa-title {
  font-size: 2.2rem !important; 
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: left !important;
}

/* ★修正：他ページに合わせて 1rem（元から1remですが維持） */
.towa-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  text-align: left !important;
  line-height: 1.6 !important;
}

.towa-hero-visual {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

/* ===============================
   SVGアニメーション
=============================== */
.towa-svg-anim { width: 100%; max-width: 500px; height: auto; }

/* 赤いラインのアニメーション */
.svg-line-anim {
  stroke-dasharray: 1500; 
  stroke-dashoffset: 1500;
  animation: dashLine 5s linear infinite;
}

/* ★新規：見積書が上にスライド出力されるアニメーション */
.svg-doc-slide {
  animation: docSlideUp 4s ease-in-out infinite;
}

/* 飛び出すアイコン（電卓・プリンター） */
.svg-pop-1 { animation: popFloat 4s ease-in-out infinite; --tx: 130px; --ty: 220px; }
.svg-pop-2 { animation: popFloat 5s ease-in-out infinite 1s; --tx: 620px; --ty: 380px; }

/* --- Keyframes --- */
@keyframes dashLine {
  0% { stroke-dashoffset: 1500; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1500; }
}

/* 見積書のスライド動作 */
@keyframes docSlideUp {
  0%, 100% { transform: translateY(50px); opacity: 0; }
  20%, 80% { transform: translateY(0); opacity: 1; }
}

/* アイコンの浮遊 */
@keyframes popFloat {
  0%, 100% { transform: translate(var(--tx, 0), calc(var(--ty, 0) + 0px)) scale(1); }
  50% { transform: translate(var(--tx, 0), calc(var(--ty, 0) - 15px)) scale(1.05); }
}

/* ===============================
   レスポンシブ (スマホ対応)
=============================== */
@media (max-width: 768px) {
  .towa-hero { padding: 30px 20px; text-align: left; }
  /* ★修正：他ページ同様、スマホ用の縮小指定を削除し統一感を出しました */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9deead3 *//* ===============================
   共通設定（お問い合わせセクションで使用するベース）
=============================== */
.towa-section {
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.towa-section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
  position: relative;
}

.towa-text-center { 
  text-align: center; 
}

/* ===============================
   ボタンデザインのベース
=============================== */
.towa-btn {
  display: inline-block;
  background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
  color: #fff !important;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.towa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.6);
}

/* ===============================
   お問い合わせセクション専用
=============================== */
.towa-contact-section { 
  background: #eef2f3; 
  text-align: center; 
}

.towa-contact-btns { 
  display: flex; 
  justify-content: center; 
  gap: 20px; 
  margin: 30px 0; 
  flex-wrap: wrap; 
}

.towa-btn-mail { 
  background: #2c3e50; 
}

.towa-btn-line { 
  background: #00b900; 
  box-shadow: 0 4px 15px rgba(0, 185, 0, 0.4); 
}

.towa-btn-line:hover { 
  box-shadow: 0 6px 20px rgba(0, 185, 0, 0.6); 
}

.towa-contact-info { 
  background: #fff; 
  display: inline-block; 
  padding: 30px 50px; 
  border-radius: 15px; 
  margin-top: 20px;
}

.towa-contact-info h4 { 
  margin-top: 0; 
  color: #4facfe; 
  border-bottom: 2px solid #eee; 
  padding-bottom: 10px;
}

.towa-contact-info a { 
  color: #2c3e50; 
  text-decoration: none; 
  font-size: 1.2rem; 
  font-weight: bold; 
}

/* ===============================
   レスポンシブ (スマホ対応)
=============================== */
@media (max-width: 768px) {
  .towa-contact-btns { 
    flex-direction: column; 
    gap: 15px; 
  }
  
  .towa-contact-info { 
    width: 100%; 
    padding: 20px; 
  }
}/* End custom CSS */