@charset "UTF-8";

* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #333;
    line-height: 1.5;
    background-color: #fff;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* ===================================
   2. ヘッダー 
=================================== */
.header {
    background-color: #fff;
    width: 100%;
    border-bottom: 1px solid #eee;
}
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo img {
    height: 55px;
}
.global-nav ul {
    display: flex;
    gap: 35px;
}
.global-nav a {
    font-size: 18px;
    font-weight: bold;
}
.global-nav a:hover {
    color: #f47c44;
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}
.contact-text {
    font-size: 16px;
    line-height: 1.6;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.contact-text p {
    margin: 0;
}
.btn-contact {
    background-color: #f47c44;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.3;
}
.btn-contact:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}
.btn-contact .bold {
    font-size: 22px;
    font-weight: bold;
    margin-top: 2px;
}

/* ===================================
   3. ファーストビュー 
=================================== */
.hero {
    position: relative;
    width: 100%;
}
.hero-bg {
    width: 100%;
    height: auto;
    display: block;
}
.hero-logo-area {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}
.hero-logo-img {
    height: 45px;
}
.company-name {
    font-size: 14px;
    font-weight: bold;
    margin: 5px 0 0;
    letter-spacing: 0.1em;
    color: #333;
}
.hero-text-area {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}
.hero-catch {
    font-size: 26px;
    font-weight: bold;
    margin: 0 0 10px;
    letter-spacing: 0.05em;
    color: #333;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 5px rgba(255, 255, 255, 1);
}
.hero-sub {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    color: #333;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* ===================================
   4. 特徴バー 
=================================== */
.features-bar {
    display: flex;
    width: 100%;
    gap: 10px;
    background-color: transparent;
}
.feature-item {
    flex: 1;
    background-color: #f47c44;
    text-align: center;
    padding: 20px 0;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

/* ===================================
   5. お問合せCTA 
=================================== */
.contact-cta-area {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}
.btn-large-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 650px;
    background: linear-gradient(90deg, #f8a536 0%, #f16422 50%, #f8a536 100%);
    color: #fff;
    border-radius: 50px;
    padding: 15px 40px;
    box-shadow: 0 6px 15px rgba(241, 100, 33, 0.2);
}
.btn-large-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 100, 33, 0.3);
}
.phone-icon-wrapper {
    margin-right: 25px;
    display: flex;
    align-items: center;
}
.phone-img {
    width: 45px;
    height: auto;
}
.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.btn-main-text {
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.btn-sub-text {
    display: flex;
    align-items: center;
    gap: 12px;
}
.time-badge {
    background-color: #fbd4a6;
    color: #e94b0b;
    font-size: 13px;
    font-weight: bold;
    padding: 2px 8px;
}
.time-text {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* ===================================
   6. フッター
=================================== */
.footer {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

/* ===================================
   7. スマホ用レスポンシブ
=================================== */
@media screen and (max-width: 900px) {
    .global-nav { display: none; }
    .hero-catch { font-size: 20px; }
}
@media screen and (max-width: 600px) {
    .header-inner { flex-direction: column; gap: 15px; }
    .hero-logo-img { height: 30px; }
    .company-name { font-size: 10px; }
    .hero-catch { font-size: 14px; }
    .hero-sub { font-size: 10px; }
    .hero-logo-area { top: 5%; }
    .hero-text-area { bottom: 8%; }
    .features-bar { flex-direction: column; gap: 5px; }
    .feature-item { font-size: 16px; padding: 15px 0; }
    .btn-large-phone { padding: 15px 20px; }
    .phone-img { width: 30px; }
    .btn-main-text { font-size: 24px; }
    .time-text { font-size: 13px; }
}

/* ===================================
   6. サービス内容 
=================================== */
.service-details {
    padding: 80px 20px;
    background-color: #fff;
}
.service-details .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ブロック全体のレイアウト */
.service-block {
    display: flex;
    align-items: stretch; 
    gap: 40px; 
    margin-bottom: 80px;
}
.service-block:last-child {
    margin-bottom: 0;
}

/* 画像エリア（ */
.service-image {
    width: 45%;
    aspect-ratio: 1 / 1 !important; 
    flex-shrink: 0; 
    border-radius: 5px; 
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* テキストエリア */
.service-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    padding: 0; 
}

/* --- テキスト要素 --- */
.service-title {
    font-size: 26px; 
    font-weight: bold;
    margin: 0 0 15px 0;
    text-align: left;
}
.service-intro {
    font-size: 14px;
    line-height: 1.5; 
    margin: 0;
    font-weight: bold;
    text-align: left;
}
.service-text {
    font-size: 13.5px; 
    line-height: 1.5; 
    margin: 0;
    text-align: left;
}

/*  遺品整理 */
.ihin-seiri .service-title,
.ihin-seiri .service-intro,
.ihin-seiri .service-text {
    text-align: right;
}

.recommend-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
}
.ihin-seiri .recommend-box {
    align-items: flex-start; 
}

/* 緑のタブ */
.recommend-title-wrap {
    width: 100%;
    text-align: right; 
}
.ihin-seiri .recommend-title-wrap {
    text-align: left; 
}
.recommend-title {
    background-color: #29a343;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    padding: 6px 25px; 
    border-radius: 8px 8px 0 0;
    margin: 0;
    display: inline-block;
}

/* リスト本体 */
.recommend-list {
    width: 100%;
    background-color: #29a343;
    border: 4px solid #29a343;
    display: flex;
    flex-direction: column;
    gap: 2px; 
}

/* 各リストアイテム */
.recommend-list li {
    background-color: #fff;
    padding: 10px 15px; 
    text-align: right; 
}
.ihin-seiri .recommend-list li {
    text-align: left; 
}

.list-num {
    display: block;
    font-weight: bold;
    font-size: 13.5px;
    margin-bottom: 2px; 
}
.list-desc {
    display: block;
    font-size: 11.5px;
    color: #333;
}

/* ===================================
   7. 関連サービス 
=================================== */
.related-services {
    background-color: #e5f2e0; 
    padding: 60px 20px;
    text-align: center;
}
.related-services .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* タイトル */
.related-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 40px 0;
    color: #333;
}

/* 3つのカード */
.card-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px; 
    margin-bottom: 40px;
}

/* カード本体 */
.service-card {
    background-color: #fff;
    width: calc(100% / 3); 
    box-shadow: 0 4px 8px rgba(0,0,0,0.05); 
}
/* カード内の画像 */
.card-image {
    width: 100%;
    aspect-ratio: 3 / 2; 
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* カード内のテキスト */
.card-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    padding: 15px 0;
    color: #333;
}

/* 下部のテキスト */
.related-link {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

/* ===================================
   8. お問合せCTAエリア
=================================== */
.contact-cta-area {
    padding: 60px 20px 80px; 
    text-align: center;
    background-color: #fff;
}

/* ボタン本体（グラデーション） */
.btn-large-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 650px;
    background: linear-gradient(90deg, #f8a536 0%, #f16422 50%, #f8a536 100%);
    color: #fff;
    border-radius: 50px;
    padding: 15px 40px;
    box-shadow: 0 6px 15px rgba(241, 100, 33, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-large-phone:hover {
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(241, 100, 33, 0.3);
}

/* アイコン画像 */
.phone-icon-wrapper {
    margin-right: 25px;
    display: flex;
    align-items: center;
}
.phone-img {
    width: 45px;
    height: auto;
}

/* テキスト部分 */
.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.btn-main-text {
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.btn-sub-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 受付時間バッジとテキスト */
.time-badge {
    background-color: #fbd4a6;
    color: #e94b0b;
    font-size: 13px;
    font-weight: bold;
    padding: 2px 8px;
}
.time-text {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* ===================================
   料金について
=================================== */
.pricing-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}
.pricing-section .container {
    max-width: 800px;
    margin: 0 auto;
}

/* タイトル */
.pricing-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 12px 0;
    margin: 0 auto 40px;
    max-width: 600px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #2ca654 20%, #2ca654 80%, rgba(255,255,255,0) 100%);
}

/* 緑の枠線ボックス */
.pricing-box {
    border: 4px solid #8ab295; 
    border-radius: 8px; 
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
}

/* ボックス内のテキスト */
.pricing-box p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
    margin: 0;
    color: #111;
}

/* ===================================
   10. ご利用の流れ
=================================== */
.flow-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}
.flow-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* タイトル */
.flow-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 12px 0;
    margin: 0 auto 50px;
    max-width: 800px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #2ca654 20%, #2ca654 80%, rgba(255,255,255,0) 100%);
}

/* 4つのステップ */
.flow-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px; 
}

/* 各ステップのブロック */
.flow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 画像と矢印 */
.flow-image-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

/* 画像 */
.flow-image-wrap img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* グレーの矢印 */
.flow-arrow {
    position: absolute;
    top: 50%;
    right: -25px; 
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent #c8c8c8;
    z-index: 2;
}

/* テキスト要素 */
.flow-step-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #000;
}
.flow-step-text {
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

/* ===================================
   11. お客様の声 
=================================== */
.voice-section {
    padding: 60px 20px;
    background-color: #fff; 
}
.voice-section .container {
    max-width: 800px;
    margin: 0 auto;
}

/* タイトル */
.voice-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 12px 0;
    margin: 0 auto 60px; 
    max-width: 800px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #2ca654 20%, #2ca654 80%, rgba(255,255,255,0) 100%);
}

/* リスト全体 */
.voice-list {
    display: flex;
    flex-direction: column;
    gap: 50px; 
}

/* 各コメントの行 */
.voice-item {
    display: flex;
    align-items: flex-start;
    gap: 40px; 
    background-color: transparent; 
    padding: 0; 
    border: none; 
    box-shadow: none; 

    width: 100%;
    max-width: 700px; 
    margin: 0 auto;   
}

/* アイコン画像 */
.voice-icon {
    width: 90px; 
    flex-shrink: 0;
    margin-top: 0; 
}
.voice-icon img {
    width: 100%;
    height: auto;
    display: block; 
}

/* テキストエリア */
.voice-text-box {
    flex: 1; 
    display: flex;
    flex-direction: column;
    text-align: left; 
}
.voice-catch {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
}
.voice-text {
    font-size: 14px;
    line-height: 1.7; 
    color: #555;
    margin: 0 0 10px 0;
}
.voice-meta {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    text-align: right; 
    margin: 0;
}

/* ===================================
   12. よくある質問
=================================== */
.faq-section {
    padding: 60px 20px;
    background-color: #fff;
}
.faq-section .container {
    max-width: 800px; 
    margin: 0 auto;
}

/* タイトル */
.faq-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 12px 0;
    margin: 0 auto 50px;
    max-width: 800px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #2ca654 20%, #2ca654 80%, rgba(255,255,255,0) 100%);
}

/* FAQリスト全体 */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px; 
}

/* Q&Aブロック */
.faq-item {
    border: 2px solid #111; 
    border-radius: 15px; 
    overflow: hidden; 
    background-color: #fff;
}

/* Q */
.faq-q {
    background-color: #1a8b3d; 
    color: #fff;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* A */
.faq-a {
    background-color: #fff;
    color: #111;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 2px solid #111; 
}

/* QとAのアイコン文字 */
.faq-icon-q,
.faq-icon-a {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif; 
}
.faq-icon-q {
    color: #fff;
}
.faq-icon-a {
    color: #111;
}

/* テキスト部分 */
.faq-text-q {
    font-size: 18px;
    line-height: 1.5;
}
.faq-text-a {
    font-size: 18px;
    font-weight: bold; 
    line-height: 1.5;
}
 
/* ===================================
   13. 社長あいさつ
=================================== */
.greeting-section {
    padding: 80px 20px; 
    background-color: #fff;
}
.greeting-section .container {
    max-width: 1000px; 
    margin: 0 auto;
}

/* タイトル */
.greeting-title {
    color: #fff;
    font-size: 32px; 
    font-weight: bold;
    text-align: center; 
    padding: 15px 0; 
    margin: 0 auto 60px; 
    max-width: 800px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #2ca654 20%, #2ca654 80%, rgba(255,255,255,0) 100%);
}

/* コンテンツ全体のレイアウト */
.greeting-content {
    display: flex;
    align-items: center; 
    gap: 50px; 
}

/* 左側：プロフィールエリア */
.greeting-profile {
    width: 35%; 
    flex-shrink: 0;
}
.greeting-image img {
    width: 100%;
    height: auto;
    display: block;
}
.greeting-name-box {
    margin-top: 20px; 
    text-align: left; 
}
.company-name-text {
    font-size: 16px; 
    line-height: 1.6; 
    margin: 0 0 8px 0; 
    color: #333;
}
.president-name {
    font-size: 26px; 
    font-weight: bold;
    margin: 0;
    color: #111;
    letter-spacing: 0.15em; 
}

/* 挨拶の本文 */
.greeting-text-box {
    width: 65%;
}
.greeting-text {
    font-size: 18px; 
    line-height: 2.0; 
    color: #333;
    margin: 0;
    text-align: left; 
}

/* ===================================
   14. その他サービス
=================================== */
.other-services {
    width: 100%;
}
.os-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #c8e6c9; 
}

/* 左側：メニューエリア */
.os-left {
    width: 50%;
    padding: 60px 40px;
}
.os-title {
    font-size: 26px;
    font-weight: bold;
    margin: 0 0 30px 0;
    color: #111;
}

/* 右側：写真エリア */
.os-right {
    width: 50%;
}
.os-right img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* ---スタイル --- */
.os-item {
    margin-bottom: 8px; 
    background-color: #fff;
    border-radius: 4px; 
}

/* クリックするバーの部分 */
.os-summary {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    list-style: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}
.os-summary::-webkit-details-marker {
    display: none; 
}
.os-summary:hover {
    background-color: #fcfcfc;
}

/* 右端の開閉アイコン */
.os-icon {
    position: relative;
    width: 14px;
    height: 14px;
}
.os-icon::before,
.os-icon::after {
    content: "";
    position: absolute;
    background-color: #2ca654; 
    border-radius: 2px;
}
/* 横線 */
.os-icon::before {
    top: 6px; left: 0;
    width: 14px; height: 2px;
}
/* 縦線 */
.os-icon::after {
    top: 0; left: 6px;
    width: 2px; height: 14px;
    transition: transform 0.3s;
}

/* 開いたときのアイコン */
details[open] .os-icon::after {
    transform: rotate(90deg);
}

/* 開いたときの詳細エリア全体 */
.os-detail {
    padding: 0 20px 20px 20px; 
    background-color: #fff; 
}

/* 開いたときの詳細テキスト */
.os-detail p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    text-align: left; /* 左揃え */
}

/* ===================================
   15. フッター
=================================== */
.footer {
    background-color: #127a32; 
    color: #fff;
    text-align: center;
    padding: 50px 20px; 
}
.footer-company {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
    letter-spacing: 0.1em; 
}
.footer-address {
    font-size: 14px;
    margin: 0 0 8px 0;
}
.footer-contact {
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.05em;
}

/* ===================================
   スマホ用レスポンシブ (
=================================== */
@media screen and (max-width: 768px) {
    /* --- ヘッダー --- */
    .header-inner { 
        flex-direction: column; 
        gap: 10px; 
        padding: 10px 15px;
    }
    .logo img { 
        height: 35px; 
    }
    .header-contact {
        flex-direction: row; 
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }
    .contact-text {
        font-size: 11px; 
        line-height: 1.4;
    }
    .btn-contact {
        padding: 8px 15px; 
        font-size: 12px;
    }
    .btn-contact .bold {
        font-size: 14px; 
    }

    /* --- メインビジュアル --- */
    .hero-bg {
        min-height: 220px; 
        object-fit: cover; 
    }
    .hero-catch { font-size: 16px; }
    .hero-sub { font-size: 11px; }
    .hero-logo-img { height: 30px; }
    .hero-logo-area { top: 5%; }
    .hero-text-area { bottom: 8%; }

    /* --- 特徴バー --- */
    .features-bar { 
        flex-direction: column; 
        gap: 2px; 
    }
    .feature-item { 
        font-size: 14px; 
        padding: 10px 0; 
    }

    /* --- サービス内容 --- */
    .service-block,
    .ihin-seiri.service-block {
        flex-direction: column;
        gap: 20px;
    }
    .ihin-seiri .service-image {
        order: -1;
    }
    .service-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .service-content {
        width: 100%;
        gap: 15px; 
    }
    .ihin-seiri .service-title,
    .ihin-seiri .service-intro,
    .ihin-seiri .service-text,
    .recommend-title-wrap,
    .ihin-seiri .recommend-title-wrap,
    .recommend-list li,
    .ihin-seiri .recommend-list li {
        text-align: left;
    }
    .recommend-box,
    .ihin-seiri .recommend-box {
        align-items: flex-start;
    }

    /* --- 料金について --- */
    .pricing-title {
        font-size: 20px;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #2ca654 10%, #2ca654 90%, rgba(255,255,255,0) 100%);
    }
    .pricing-box {
        padding: 30px 15px;
    }
    .pricing-box p {
        font-size: 15px;
    }

    /* --- ご利用の流れ  --- */
    .flow-title {
        font-size: 20px;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #2ca654 10%, #2ca654 90%, rgba(255,255,255,0) 100%);
    }
    .flow-wrapper {
        flex-direction: column; 
        gap: 50px; 
    }
    .flow-step {
        width: 100%;
        max-width: 350px; 
        margin: 0 auto;
    }
    /* 矢印 */
    .flow-arrow {
        top: auto;
        bottom: -35px; 
        left: 50%;
        right: auto;
        transform: translateX(-50%); 
        border-width: 20px 15px 0 15px; 
        border-color: #c8c8c8 transparent transparent transparent;
    }
    .flow-step-title {
        text-align: center; 
        margin-top: 30px; 
    }
    .flow-step-text {
        text-align: center; 
    }

    /* --- 6. お客様の声 --- */
    .voice-title {
        font-size: 20px;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #2ca654 10%, #2ca654 90%, rgba(255,255,255,0) 100%);
    }
    .voice-item {
        flex-direction: column; 
        align-items: center; 
        gap: 20px;
    }
    .voice-icon {
        width: 80px;
        margin-top: 0;
    }
    .voice-text-box {
        width: 100%;
    }
    .voice-catch {
        text-align: center; 
    }
    .voice-text {
        text-align: left; 
    }
    .voice-meta {
        text-align: right;
    }

    /* --- よくある質問 --- */
    .faq-title {
        font-size: 20px;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #2ca654 10%, #2ca654 90%, rgba(255,255,255,0) 100%);
    }
    .faq-q, .faq-a {
        padding: 15px 20px; 
        gap: 15px;
    }
    .faq-icon-q, .faq-icon-a {
        font-size: 26px; 
    }
    .faq-text-q, .faq-text-a {
        font-size: 14px; 
    }

    /* --- 社長あいさつ --- */
    .greeting-title {
        font-size: 24px; 
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #2ca654 10%, #2ca654 90%, rgba(255,255,255,0) 100%);
    }
    .greeting-content {
        flex-direction: column; 
        align-items: center; 
        gap: 30px;
    }
    .greeting-profile {
        width: 100%;
        max-width: 300px; 
    }
    .greeting-name-box {
        text-align: left; 
        margin-top: 15px; 
    }
    .company-name-text {
        font-size: 14px; 
    }
    .president-name {
        font-size: 22px; 
    }
    .greeting-text-box {
        width: 100%;
    }
    .greeting-text {
        font-size: 15px; 
        line-height: 1.8; 
        text-align: left; 
    }

    /* --- その他サービス --- */
    .os-container {
        flex-direction: column; 
    }
    .os-left, .os-right {
        width: 100%;
    }
    .os-right {
        order: -1; 
    }
    .os-left {
        padding: 40px 20px;
    }
    .os-title {
        font-size: 22px;
        text-align: center;
    }
    .os-summary {
        font-size: 15px;
        padding: 12px 15px;
    }
/* --- お問合せ --- */
    .contact-cta-area {
        padding: 40px 15px; 
    }
    .btn-large-phone {
        padding: 12px 15px; 
        width: 100%;
        max-width: 340px; 
        margin: 0 auto;
    }
    .phone-icon-wrapper {
        margin-right: 10px; 
    }
    .phone-img {
        width: 25px; 
    }
    .btn-main-text {
        font-size: 18px; 
        margin-bottom: 2px;
        white-space: nowrap; 
    }
    .btn-sub-text {
        gap: 8px; 
    }
    .time-badge {
        font-size: 10px; 
        padding: 2px 4px;
        white-space: nowrap; 
    }
    .time-text {
        font-size: 12px; 
        white-space: nowrap; 
    }
    /* --- フッター --- */
    .footer {
        padding: 40px 15px;
    }
    .footer-company {
        font-size: 16px;
    }
    .footer-address, .footer-contact {
        font-size: 12px;
        line-height: 1.6;
    }
}