@charset "utf-8";
/* --- ヘッダー全体（画面横幅いっぱい） --- */
.hero-section {
    position: relative;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans JP', sans-serif;
    box-sizing: border-box;
}

/* --- 背景画像 --- */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 背景画像を暗くして文字を読みやすくする */
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)),  url('/common/upload/files/interior/interior_title.jpg?filetime=1778374698'); /* ★実際の背景画像のURLに書き換えてください */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* --- コンテンツ配置 --- */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px; /* 全体の幅 */
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* 左・中・右に均等に分ける */
}

/* 左側の見えない箱（中央テキストをど真ん中に保つため） */
.hero-left-spacer {
    width: 150px; /* 右側のバッジと同じくらいの幅にする */
}

/* --- 中央テキストエリア --- */
.hero-center-text {
    text-align: center;
    flex-grow: 1;
}

/* ★「岡山県全域対応・安心の自社施工」の背景色を変更 */
.top-tag {
    background-color: #0E96B1 !important; /* オレンジ(#f59e0b)からターコイズ(#0E96B1)に変更 */
    color: #ffffff !important;
    display: inline-block !important;
    padding: 6px 24px !important;
    border-radius: 50px !important;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
}

.main-title {
    color: #ffffff !important;
    font-size: 56px !important;
    font-weight: bold !important;
    line-height: 1.2 !important;
    margin: 0 0 20px 0 !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8) !important;
}

.sub-message {
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* --- ボタンエリア --- */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-blue, .btn-red,.btn-green {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 36px !important;
    border-radius: 50px !important;
    font-weight: bold !important;
    text-decoration: none !important; /* 青い下線を消す */
    font-size: 18px !important;
    color: #ffffff !important; /* 文字を白にする */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
    min-width: 200px;
}

/* オレンジボタンの色はそのまま維持 */
.btn-blue { background-color: #00a0ea !important; }
.btn-red { background-color: #E60000 !important; }
.btn-green { background-color: #06C755 !important; }

/* --- 右側：実績バッジ --- */
.hero-right-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 150px;
    align-items: flex-end;
}

/* ★丸いバッジのフチの色を変更 */
.circle-badge {
    width: 110px !important;
    height: 110px !important;
    background-color: #0f172a !important; /* 濃紺 */
    border: 3px solid #0E96B1 !important; /* オレンジ(#f59e0b)からターコイズ(#0E96B1)に変更 */
    border-radius: 50% !important; /* 完全な丸 */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4) !important;
}

.badge-label {
    font-size: 11px !important;
    color: #ffffff !important;
    margin-bottom: 2px !important;
    text-align: center !important;
}

/* バッジ内の文字色を白に統一 */
.badge-val {
    font-size: 30px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    line-height: 1 !important;
}

.badge-val2 {
    font-size: 20px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    line-height: 1 !important;
}

.circle-badge .unit {
    font-size: 12px !important;
    margin-left: 2px !important;
    color: #ffffff !important;
}

/* --- スマホ・タブレット対応（前回と同じ） --- */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    .hero-left-spacer { display: none; }
    .hero-right-badges {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    .circle-badge {
        width: 90px !important;
        height: 90px !important;
    }
    .badge-val { font-size: 22px !important; }
}

@media (max-width: 600px) {
    .main-title { font-size: 32px !important; }
    .sub-message { font-size: 16px !important; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-blue,  .btn-red,  .btn-green { width: 100%; max-width: 300px; }
}


/*選ばれる理由*/
/* ========================================
   Reason section only
======================================== */

#reason,
#reason * {
  box-sizing: border-box;
}

#reason {
  padding: 88px 0;
  background: #f8fafc;
}

#reason .ok-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

#reason .ok-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

#reason .ok-eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#reason .ok-title {
  margin: 0;
  color: #1e293b;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
  font-weight: 800;
}

#reason .ok-lead {
  margin: 24px 0 0;
  color: #475569;
  font-size: 16px;
  line-height: 2;
}

#reason .ok-card-grid {
  display: grid;
  gap: 24px;
}

#reason .ok-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#reason .ok-card {
  background: #ffffff;
  border: 1px solid #dbe3ea;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

#reason .ok-card-title {
  margin: 0 0 14px;
  color: #1e293b;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
}

#reason .ok-card-text {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 2;
}

@media (max-width: 1024px) {
  #reason .ok-card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  #reason {
    padding: 64px 0;
  }

  #reason .ok-container {
    width: min(100% - 24px, 100%);
  }

  #reason .ok-heading {
    margin-bottom: 32px;
  }

  #reason .ok-card-grid-3 {
    grid-template-columns: 1fr;
  }

  #reason .ok-card {
    padding: 24px;
  }

  #reason .ok-title {
    font-size: 28px;
  }

  #reason .ok-card-title {
    font-size: 20px;
  }
}

/*料金体系*/
/* ========================================
   料金体系
======================================== */
/* --- 見積りセクション全体 --- */
.estimate-section {
    /*background-color: #ffffff !important; 
    padding: 80px 20px !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    color: #333333 !important;
    border: none !important;*/ /* 念のため外枠の線をリセット */
}

.estimate-container {
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.pc-only {
    display: block;
}

/* --- タイトルとリード文 --- */
.estimate-title {
    text-align: center !important;
    font-size: 32px !important;
    font-weight: bold !important;
    color: #0f172a !important;
    margin: 0 0 25px 0 !important;
    line-height: 1.4 !important;
    border: none !important; /* タイトル周りの線をリセット */
}

.estimate-lead {
    text-align: center !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin: 0 0 50px 0 !important;
    color: #444 !important;
}

/* --- 見積り項目グリッド --- */
.estimate-items-wrapper {
    margin-bottom: 40px !important;
}

.items-title {
    text-align: center !important;
    font-size: 20px !important;
    font-weight: bold !important;
    color: #0E96B1 !important;
    margin-bottom: 20px !important;
}

/* リスト全体の「・」を確実に消す */
.estimate-items-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 15px !important;
    list-style: none !important; 
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ★各項目の設定と「青い丸」を消すための強力な指定 */
.estimate-item {
    list-style: none !important;
    list-style-type: none !important;
    background-color: #ffffff !important;
    padding: 18px 20px !important;
    border-radius: 8px !important;
    font-weight: bold !important;
    font-size: 16px !important;
    color: #0f172a !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    border: 1px solid #e2e8f0 !important;
    margin-bottom: 0 !important;
}

/* テーマが疑似要素（::before等）で青い丸を出している場合を想定して非表示に */
.estimate-item::before,
.estimate-item::after {
    display: none !important;
    content: none !important;
}

/* アイコンの設定 */
.estimate-item i {
    color: #0E96B1 !important; 
    font-size: 20px !important;
    margin-right: 12px !important;
}

/* 最後の一文（背景色ターコイズ） */
.highlight-item {
    background-color: #0E96B1 !important;
    color: #ffffff !important;
    border-color: #0E96B1 !important;
}
.highlight-item i {
    color: #ffffff !important;
}

/* --- 補足文と注意書きの囲み --- */
.estimate-notes-box {
    background-color: #ffffff !important;
    padding: 40px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    margin-bottom: 50px !important;
}

.supplement-text {
    text-align: center !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin: 0 0 30px 0 !important;
    font-weight: bold !important;
}

/* 注意事項 */
.warning-box {
    background-color: #fffbeb !important; 
    border-left: 5px solid #f59e0b !important;
    padding: 20px !important;
    border-radius: 0 8px 8px 0 !important;
}

.warning-text {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #92400e !important; 
}

.warning-text i {
    margin-right: 5px !important;
}

/* --- CTAエリア（ボタン） --- */
.estimate-cta-area {
    text-align: center !important;
}

.cta-message {
    font-size: 20px !important;
    font-weight: bold !important;
    color: #0f172a !important;
    margin: 0 0 20px 0 !important;
}

.btn-estimate-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #0E96B1 !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    padding: 20px 60px !important;
    border-radius: 50px !important;
    box-shadow: 0 6px 15px rgba(14, 150, 177, 0.3) !important;
    transition: all 0.3s ease !important;
    min-width: 300px !important;
}

.btn-estimate-cta i {
    margin-left: 15px !important;
    font-size: 16px !important;
}

.btn-estimate-cta:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(14, 150, 177, 0.4) !important;
    opacity: 0.9 !important;
}

/* --- スマホ・タブレット対応 --- */
@media (max-width: 768px) {
    .estimate-section { padding: 50px 15px !important; }
    .estimate-title { font-size: 24px !important; text-align: left !important; }
    .estimate-lead { font-size: 15px !important; text-align: left !important; }
    .pc-only { display: inline !important; } 
    
    .estimate-notes-box { padding: 25px 15px !important; }
    .supplement-text { text-align: left !important; font-size: 15px !important; }
    
    .cta-message { font-size: 16px !important; }
    .btn-estimate-cta { font-size: 18px !important; width: 100% !important; padding: 18px 20px !important; }
}
