/* ==========================================
   全般・リセット基本設定
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin-top: 60px; /* ヘッダーの高さ分だけ下げる */
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;

  background-size: cover; /* 画面全体に表示 */
  background-repeat: no-repeat; /* 繰り返しなし */
  background-position: center; /* 中央に配置 */
}

/* ヘッダーの外枠（紺色のボーダー） */
.site-header {
  width: 100%;
  border: 1px solid #1a2a4a; /* 画像に合わせた紺色の枠線 */
  box-sizing: border-box;
}

/* 横並び・中央寄せのコントロール */
.header-container {
  position: fixed; /* ヘッダーを固定する */
  top: 0; /* 画面の上部に固定 */
  z-index: 1000; /* ヘッダーを他の要素の上に表示 */
  width: 100%; /* 画面が広がったときの最大幅 */
  margin: 0 auto;    /* 中央寄せ */
  padding: 10px 5px; /* 上下と左右の余白 */
  background-color: #FFF8DC; /* ヘッダー内の背景色 */
  display: flex;
  justify-content: space-between; /* 両端に具材を広げる */
  align-items: center; /* 上下の中央揃え */
}

/* ロゴのサイズ調整用 */
#logo {
  width: 120px; /* 画像の幅に合わせて調整してください */
  height: auto; /* 画像の高さに合わせて調整してください */
  display: block;
  margin: 0 20px; /* 画像周りの余白をリセット */
}

.header-logo  {
  height: auto; /* 画像の高さに合わせて調整してください */
  display: block;
}

/* ナビゲーションメニューのリスト */
.nav-list {
  color: #333333;        /* 文字色 */
  font-size:14px;
  list-style: none; /* 点を消す */
  margin: 0;
  padding: 0;
  display: flex; /* メニューを横並びにする */
  gap: 30px;     /* メニュー間の隙間 */
}

/* メニューのリンク文字 */
.nav-item a {
  text-decoration: none; /* 下線を消す */
  color: #333333;        /* 文字色 */
  font-size: 16px;       /* 文字の大きさ */
  transition: color 0.3s ease;
}

/* マウスを乗せたときの変化 */
.nav-item a:hover {
  color: #0076bf; /* ホバー時に青色に変化 */
}

/* 共通コンテナ設定：デザイン最大幅1400pxに対して最大1200px幅でセンタリング */
.header-logo .img {
  width: 100px; /* 画像の幅に合わせて調整してください */
  height: auto; /* 画像の高さに合わせて調整してください */
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

img {
  width: 500px;
  height: auto;
  display: block;
  object-fit: cover; 
  margin: 0 auto; /* 画像を中央に配置 */
}


li {
  list-style: none;
  margin-right: 1rem;
  display: flex; 
}

/* 共通コンポーネント: ボタン */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #0066cc; /* 信頼感のあるブルー */
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #004fad;
}

.btn-secondary {
  background-color: #f0f4f8;
  color: #0066cc;
  border: 1px solid #0066cc;
}

.btn-secondary:hover {
  background-color: #e1ebf5;
}

/* 共通コンポーネント: 見出し */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
}

.section-lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #666666;
}

/* ==========================================
   ヘッダー / ファーストビュー
   ========================================== */
.telnumber{
  position: absolute;
  top: 36px;
  right: 20px;
}

.telnumber img{
  width: 250px;
  height: auto;
  display: block;
}
.hero-header {
  position: relative;
  background-image: url('images/sky_canva_m.png'); /* 背景画像を指定 */
  background-size: cover; /* 画面全体を覆うように調整 */
  background-repeat: no-repeat; /* 画像の繰り返しを無効化 */
  background-position: center center; /* 中央に配置 */
  padding: 80px 20px; /* 上下の余白を広めに設定 */
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;

}

.hero-content .badge {
  display: inline-block;
  background-color: #e2e8f0;
  color: #4a5568;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 1.0rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1a202c;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #f7f8f9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  background-size: auto 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}



/* ==========================================
   こんなお困りごと解決セクション
   ========================================== */
.trouble-section {
  padding: 40px 0;
  background-color: #fafbfc;
}
.section-lead {
  font-size: 1.35rem;
}
.trouble-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.trouble-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  border: 1px solid #e2e8f0;
  width: calc(33.333% - 14px); /* 3列配置 */
  min-width: 280px;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.trouble-card::before {
  content: "⚠️";
  margin-right: 12px;
  font-size: 1.6rem;
}

/* ==========================================
   サポート詳細・条件・ステップ
   ========================================== */
.support-detail-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.detail-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.detail-intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* 対応範囲とご利用条件 */
.conditions-block {
  background-color: #f8fafc;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 60px;
  border: 1px solid #e2e8f0;
}

.conditions-block h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.block-lead {
  font-size: 1.3rem;
  text-align: center;
  color: #666666;
  margin-bottom: 30px;
}

.conditions-flex {
  display: flex;
  gap: 30px;
}

.condition-box {
  flex: 1;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.condition-box h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #0066cc;
  border-left: 4px solid #0066cc;
  padding-left: 10px;
}

.condition-box ul {
  list-style-type: none;
}

.condition-box ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.condition-box ul li::before {
  content: "✔";
  color: #0066cc;
  position: absolute;
  left: 0;
}

/* 4ステップ */
.steps-section {
  padding: 5px 0;
  background-color: #fafbfc;
}
.steps-block {
  text-align: center;
}

.steps-block h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.steps-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  gap: 20px;
  margin-top: 40px;
  position: relative;
}

.steps-list li {
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  padding: 30px 20px;
  border-radius: 8px;
  flex: 1;
  position: relative;
}

.step-num {
  display: inline-block;
  background-color: #0066cc;
  color: #ffffff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.steps-list li p {
  font-weight: bold;
}

/* ==========================================
   料金と安心の明示
   ========================================== */
.price-section {
  padding: 40px 0;
  background-color: #f1f5f9;
}

.price-flex {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-box {
  flex: 1;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.price-box h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #1a202c;
}

.price-main {
  font-size: 1.3rem;
  color: #531d1d; /* 注意やアピール用の赤系 */
  font-weight: bold;
  margin-bottom: 10px;
}

.price-sub {
  font-size: 1.1rem;
  color: #4a5568;
}

/* ==========================================
   よくある質問
   ========================================== */
.faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background-color: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 20px;
}

.faq-question {
  font-weight: bold;
  font-size: 1.1rem;
  color: #1a202c;
  margin-bottom: 8px;
}

.faq-answer {
  color: #4a5568;
  font-size: 1.1rem;
  padding-left: 20px;
}

/* ==========================================
   ボトムコンバージョン (CTA)
   ========================================== */
.cta-section {
  padding: 60px 0;
  background-color: #0066cc;
  color: #ffffff;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-buttons .btn-primary {
  background-color: #ffffff;
  color: #0066cc;
}

.cta-buttons .btn-primary:hover {
  background-color: #f8fafc;
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

/* ==========================================
   フッター
   ========================================== */
.main-footer {
  background-color: #FFF8DC;
  color: #181717;
  padding: 20px 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-info h3 {
  color: #2e2c2c;
  margin-bottom: 5px;
  font-size: 1.25rem;
}
.footer-h4-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.footer-h4-wrap h4 {
  font-size: 28px;
  font-weight: bold;
  font-style: italic;
  font-family: Arial;
  white-space: nowrap;
}

.footer-h4-wrap img {
  width: 200px;
  height: auto;
  display: block;
  margin-left: 50px;
}

.footer-info p {
  margin-bottom: 5px;
}

/* ==========================================
   shop_imfo.htmlの表
   ========================================== */

table {
            width: 100%;
            max-width: 750px;
            border-collapse: collapse;
            font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
            margin: 20px auto;
        }
        th, td {
            border: 1px solid #000000;
            padding: 10px;
            text-align: left;
            vertical-align: top;
        }
        th {
            background-color: #f2f2f2;
            width: 25%;
            font-weight: bold;
        }
        .store-name {
            font-style: italic;
            font-weight: bold;
        }
        .history-section {
            margin-bottom: 10px;
        }
        .history-section:last-child {
            margin-bottom: 0;
        }
        .history-title {
            font-weight: bold;
            margin-bottom: 5px;
        }
        .history-list {
            margin: 0;
            padding-left: 10px;
            list-style-type: none;
        }
        .history-list li {
            text-indent: -5.5em;
            padding-left: 5.5em;
            margin-bottom: 4px;
        }

/* タブレット・スマホ用の簡易調整（レスポンシブ補正） */
@media (max-width: 768px) {
  .hero-container, .footer-container, .conditions-flex, .price-flex, .steps-list {
    flex-direction: column;
  }
  .hero-buttons, .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .trouble-card {
    width: 100%;
  }
}

/* form.html用 */
.otoiawase-section{
  padding: 80px 0;
  background-color: #ffffff;
}
.lead-form{
  text-align: center;
  font-size:20px;
}
form{
  width:460px;
  margin:0 auto;
}
.item{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 20px;
}
.label{
  flex: 0 0 135px;
  width: 135px;
  border-left: solid 3px #e0505d;
  padding-left: 10px;
  box-sizing: border-box;
}
.inputs{
  flex: 1 1 auto;
  min-width: 0;
}
input[type="text"],input[type="email"]{
  border: solid 1px #aaa;
  border-radius:5px;
  padding:10px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

select, textarea {
  border: solid 1px #aaa;
  border-radius:5px;
  padding:10px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

textarea{
  height: 160px;
}
.btn-area{
  text-align: center;
}
input[type="submit"]{
  background: #e0505c;
  border: none;
  color: white;
  font-size:17px;
  font-weight:bold;
  padding: 10px 20px;
  margin: 0 5px;
}
input[type="reset"]{
  background: #aaa;
  border: none;
  color: white;
  font-size:17px;
  font-weight:bold;
  padding: 10px 20px;
  margin: 0 5px;
}
