/* 事業内容ビジュアル */
.service_Section {
    background-image: url(../images/%E3%83%9B%E3%83%BC%E3%83%A0%EF%BC%94.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* スマートフォン表示時のフォントサイズ */
@media screen and (max-width: 768px) {
    #main-heading {
        font-size: 2rem; /* スマホ表示時のフォントサイズ */
    }
    #sub-heading {
        font-size: 1.3rem; /* スマホ表示時のフォントサイズ */
    }
}
.service_Section h3 {
    font-size: 50px;
    font-weight: 700;
}
.service_Section p {
    font-size: 30px;
    font-weight: 700;
}
/* 会社概要セクション */
.service_table img {
    width: 100%;
    border-radius: 10px; /* 角を丸く */
    height: 100%;
}

/* 会社概要セクション */
.service_table table {
    width: 100%;
}
.service_table table tr {
    padding: 20px 0;
    display: block;
    border-bottom: solid 1px #000000;
    line-height: 1.5;
}
.service_table table tr th {
    width: 140px;
}

.bg-light-transparent {
    background-color: rgba(0, 0, 0, 0.5);
}

.pricing-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

/* レスポンシブ対応の2カラムレイアウト */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.col-md-6 {
    flex: 1;
    min-width: 300px;
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
}

.pricing-card.discount {
    background-color: #f9f9f9;
    border-color: #e74c3c;
}

.pricing-card.discount .price {
    color: #27ae60;
}

.product-details h3,
.product-details h4 {
    margin-top: 20px;
    color: #333;
}

.product-details ul {
    list-style-type: disc;
    margin-left: 20px;
}

.product-details p {
    line-height: 1.6;
    color: #555;
}

/* カットセクションのタイトル */
.section-title {
    font-size: 2.5rem; /* フォントサイズを大きく設定 */
    font-weight: bold; /* 太字に設定 */
    color: #333; /* 色をダークグレーに設定 */
    text-align: center; /* 中央揃え */
    margin-bottom: 30px; /* 下部に余白を追加 */
    padding-bottom: 10px; /* 下部の余白を追加 */
    border-bottom: double 6px #ff95ea; /* 赤色の二重線の下線を追加 */
}
