/* 基本スタイル */
:root {
    --primary-color: #0f4c81;
    --secondary-color: #e67e22;
    --accent-color: #c0392b;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    margin-top: 0;
    line-height: 1.4;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 10px;
    position: relative;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1.5rem;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    padding-left: 20px;
}

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

.mt-4 {
    margin-top: 1.5rem;
}

/* ヘッダー */
.site-header {
    background-color: white;
    padding: 8px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.site-logo {
    max-width: 50px;
    margin-right: 10px;
}

.site-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.header-contact {
    text-align: right;
}

.contact-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

.contact-button:hover {
    background-color: var(--secondary-color);
    color: white !important;
}

/* ヒーローセクション */
.hero {
    background-image: url('../../img/lp03/kv.webp');
    background-size: cover;
    background-position: top center;
    color: white;
    text-align: center;
    padding: 80px 0 80px;
    position: relative;
    margin-top: 50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-catchcopy {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

/* CTA ボタン */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white !important;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    color: white !important;
}

.cta-line {
    background-color: #06C755;
    margin-left: 10px;
}

.cta-line:hover {
    background-color: #05a849;
}

/* 問題提起セクション */
.pain-points {
    padding: 80px 0;
    background-color: var(--light-color);
}

.pain-points-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.testimonial-bubble {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
}

.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #f5f5f5 transparent;
}

.quote-author {
    margin-left: 50px;
    font-weight: bold;
}

.checkbox-list {
    list-style: none;
    padding-left: 0;
}

.checkbox-list li {
    padding-left: 35px;
    margin-bottom: 15px;
    position: relative;
}

.checkbox-list li::before {
    content: '□';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* 選ばれる理由セクション */
.reasons {
    padding: 80px 0;
}

.reason-box {
    margin-bottom: 40px;
}

.reason-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.reason-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

/* サービスセクション */
.services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    height: 100%;
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.service-title {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

/* プロセスセクション */
.process {
    padding: 80px 0;
}

.step-box {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* お客様の声セクション */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    text-align: right;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(15, 76, 129, 0.1);
    font-family: Georgia, serif;
}

/* FAQ セクション */
.faq {
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    background-color: white;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 5px 5px;
}

/* お問い合わせセクション */
.contact {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.form-check {
    margin-bottom: 10px;
}

.required {
    color: var(--accent-color);
    margin-left: 5px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info .phone-number {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-info h3 {
    margin-top: 25px;
    font-size: 1.3rem;
}

.contact-info img {
    margin-top: 15px;
    border-radius: 5px;
}

/* LINEセクション */
.line-section {
    padding: 50px 0;
    background-color: #06C755;
    color: white;
    text-align: center;
}

.line-container {
    max-width: 700px;
    margin: 0 auto;
}

.line-qr {
    max-width: 200px;
    margin: 20px auto;
}

/* プレゼントセクション */
.gift-section {
    padding: 80px 0;
}

.gift-box {
    background-color: #f8f9fa;
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.gift-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* フッター */
.site-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-menu {
    list-style: none;
    padding-left: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: white;
}

.footer-menu a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* CTA固定ボタン（スマホ用） */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
    padding: 10px;
}

.floating-cta-buttons {
    display: flex;
    justify-content: space-between;
}

.floating-cta .cta-button {
    margin: 0 5px;
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .site-header {
        padding: 5px 0;
    }

    .header-inner {
        flex-direction: row;
        text-align: center;
    }

    .site-branding {
        flex: 1;
    }

    .site-title {
        font-size: 0.8rem;
    }

    .contact-button {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .hero {
        padding: 80px 0 70px;
        margin-top: 50px;
    }

    .hero-catchcopy {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .pain-points, .reasons, .services, .process, .testimonials, .faq, .contact, .gift-section {
        padding: 50px 0;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        display: block;
        margin-bottom: 10px;
        width: 100%;
    }

    .cta-line {
        margin-left: 0;
    }

    .testimonial-card::before {
        font-size: 3rem;
    }

    .floating-cta {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }
}

/* 列レイアウト修正 */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-3 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-8 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    
    .offset-md-2 {
        margin-left: 16.666667%;
    }
}

/* イメージクラス追加 */
.img-fluid {
    max-width: 100%;
    height: auto;
}
/* グループ会社セクション用スタイル */
.group-companies {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.group-companies h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.group-companies ul {
    list-style: none;
    padding-left: 10px;
}

.group-companies ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.group-companies ul li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* フッター修正 */
.site-footer {
    padding: 40px 0 20px;
}

.footer-menu {
    margin-top: 20px;
}

.footer-menu li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.footer-menu li:before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* モバイル対応の追加 */
@media (max-width: 768px) {
    .group-companies {
        padding: 15px;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
        margin-top: 20px;
    }
    
    .contact-info h4 {
        font-size: 1rem;
    }
}

/* お問い合わせセクションの修正 */
.contact {
    background-color: var(--light-color);
    padding: 80px 0;
}

.contact-info {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* タイトルのアクセント */
h2 {
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* hero-usp-highlight スタイル (lp02.cssよりコピー) */
.hero-usp-highlight .usp-item {
  display: flex; /* flexに変更 */
  flex-direction: column; /* 縦並びにする */
}

.hero-usp-highlight .usp-item span {
  font-size: 1.4rem;
  color: var(--dark-color);
  text-align: center;
  line-height: 1.5; /* 行間調整 */
}

/* 特典リストのスタイル */
/* .hero-usp-highlight-text02 {
    ...
} */

/* 「2大特典」見出しスタイル */
.hero-usp-highlight-text03 {
     font-size: 1.4rem;
     border-radius: 5px;
     padding: 5px 20px;
     margin-bottom: 0;
     display: inline-block;
     color: #fff;
     background-color: var(--accent-color);
     font-weight: 700;
     width: 50%; /* 追加 */
     margin: 10px auto; /* 追加 */
}

/* 既存のスタイルとの間隔調整 */
.hero-usp-highlight-sub {
    margin-top: 15px; /* 上の要素との間隔 */
}

.hero-usp-highlight-text {
    width: 59%;
    margin: 10px auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hero-usp-highlight .usp-item span {
    font-size: 1.2rem; /* SPのフォントサイズ少し調整 */
  }
  .hero-usp-highlight-text02 {
    text-align: left; /* 追加 */
  }
  /* .hero-usp-highlight-text03 のレスポンシブスタイルは削除された模様 */
  /* .hero-usp-highlight-text03 {
    font-size: 1.2rem;
  } */
}