@charset "UTF-8";

/* ==============================================
   農業課題解決サービスLP 専用スタイル
   ============================================== */

/* -------------------------------------------
   全体レイアウト
------------------------------------------- */
.service__lp .service__single {
    width: 100%; /* 全幅にする */
    max-width: 100%;
    padding: 0;
}
.service__section {
    padding: 80px 0;
    width: 100%;
}
.service__section.bg-light {
    background-color: #eef8ff; /* 薄い水色背景 */
}
.service__section.bg-white {
    background-color: #fff;
}
.service__inner {
    width: 80%; /* コンテンツ幅は80% */
    max-width: 1200px;
    margin: 0 auto;
}

/* -------------------------------------------
   KV画像（全幅表示）
------------------------------------------- */
.intro__kv {
    width: 100%;       /* 画面幅いっぱい */
    margin-bottom: 0;  /* 下の余白は service__intro の padding で調整 */
    line-height: 0;    /* 画像下の微妙な隙間を消すおまじない */
}

.intro__kv img {
    width: 100%;       /* 親要素に合わせて横幅いっぱい */
    height: auto;      /* 高さは自動 */
    object-fit: cover; /* 必要に応じて */
    vertical-align: bottom; /* 画像下の隙間対策 */
}

/* -------------------------------------------
   導入部（テキストと動画）
------------------------------------------- */
.service__intro {
    text-align: center;
    padding: 60px 0; /* KV画像とテキストの間の余白 */
}

.intro__txt {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: bold;
}

/* 動画エリアのレイアウト */
.intro__videos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* スマホで折り返す設定 */
    width: 100%;
}

/* 動画の枠組み（レスポンシブ対応） */
.video__placeholder {
    width: 48%;             /* PCでは横並び（約半分） */
    min-width: 300px;       /* 小さくなりすぎないように */
    aspect-ratio: 16 / 9;   /* 常に16:9の比率を保つ */
    position: relative;
    background-color: #000; /* 読み込み中の背景色 */
    border-radius: 10px;    /* 角丸にする場合 */
    overflow: hidden;
}

/* 埋め込みiframe本体 */
.video__placeholder iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* -------------------------------------------
   セクション共通：2カラムレイアウト
------------------------------------------- */
.sec__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    margin-bottom: 60px;
}
.sec__row.reverse {
    flex-direction: row-reverse;
}
.sec__col {
    width: 47%;
}
.sec__col img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* テキストまわり */
.sec__label {
    display: inline-block;
    background-color: #00A1E5; /* ラベル色 */
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 15px;
}
.sec__ttl {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
    font-family: serif; /* 明朝体っぽい雰囲気 */
}
.sec__subttl {
    font-size: 1rem;
    color: #00A1E5;
    margin-bottom: 20px;
    font-family: sans-serif;
}
.sec__catch {
    font-size: 1.4rem;
    font-weight: bold;
    color: #00A1E5;
    margin-bottom: 20px;
}
.sec__desc {
    line-height: 1.8;
    font-size: 1rem;
}

/* -------------------------------------------
   カードリスト（製品紹介・機能紹介）
------------------------------------------- */
.card__list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.card__item {
    background: #fff;
    width: 45%;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.card__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 5px;
}
.card__ttl {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* -------------------------------------------
   特徴リスト（丸アイコン・チェックリスト）
------------------------------------------- */
.feature__box {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-bottom: 60px;
}
.feature__ttl {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    display: inline-block;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}
.feature__list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.feature__item {
    width: 30%;
    min-width: 200px;
}
.feature__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: block;
}
.feature__text {
    font-weight: bold;
    font-size: 1rem;
}

/* -------------------------------------------
   グリッド形式の特徴リスト（TAKS等）
------------------------------------------- */
.grid__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}
.grid__item {
    width: 31%;
    background: #fff; /* 背景白 */
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.service__section.bg-white .grid__item {
    background: #f9f9f9; /* 背景白セクションの場合は少しグレーに */
}

/* -------------------------------------------
   CTAエリア（バナー）
------------------------------------------- */
.cta__banner {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #333; /* 画像がない時の背景 */
}
.cta__bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 1;
}
.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.cta__btn {
    display: inline-block;
    background-color: #00A651; /* 緑ボタン */
    color: #fff;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}
.cta__btn.blue { background-color: #00A1E5; } /* 青ボタン */
.cta__btn.orange { background-color: #F39800; } /* オレンジボタン */
.cta__btn:hover { opacity: 0.8; color: #fff; }

/* -------------------------------------------
   フッター上の青いお問い合わせエリア
------------------------------------------- */
.bottom__contact {
    background-color: #00A1E5;
    padding: 40px 0;
    text-align: center;
    color: #fff;
    margin-top: 0;
}
.bottom__contact h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.bottom__btn {
    display: inline-block;
    background: #fff;
    color: #00A1E5;
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
}

/* -------------------------------------------
   スマホ対応（Media Queries）
------------------------------------------- */
@media screen and (max-width: 768px) {
    .service__inner { width: 90%; }
    
    .sec__row, .sec__row.reverse { 
        flex-direction: column; 
        gap: 30px; 
    }
    
    .sec__col { width: 100%; }
    
    /* ロゴ（もし使用する場合） */
    .intro__logos { gap: 15px; }
    .intro__logos img { height: 40px; }
    
    /* 動画 */
    .video__placeholder { 
        width: 100%; /* スマホでは横幅いっぱい */
        margin-bottom: 20px;
    }
    
    .card__item { width: 100%; }
    .feature__item { width: 100%; margin-bottom: 20px; }
    .grid__item { width: 48%; font-size: 0.8rem; }
}

@media screen and (max-width: 480px) {
    .grid__item { width: 100%; }
}

/* -------------------------------------------
   White Circle セクション専用の追加スタイル
------------------------------------------- */

/* Service 01 タグ */
.service-tag {
    display: inline-block;
    background-color: #d1fcd6; /* 薄い緑 */
    color: #008000;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

/* キャッチコピー */
.sec__catch {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00A1E5;
    margin-bottom: 15px;
}

/* カード内の微調整 */
.card__img-box {
    text-align: center;
    margin-bottom: 15px;
}
.card__img-box img {
    height: 180px; /* 画像の高さを揃える */
    object-fit: contain; /* 画像全体が見えるように */
    width: auto;
    max-width: 100%;
}
.card__sub {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}
.card__desc {
    font-size: 0.9rem;
    line-height: 1.6;
}


.feature__icon-circle img {
    width: 60px;
    height: auto;
}
.font-small {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 10px;
    text-align: left; /* 説明文は左揃えの方が見やすい場合あり */
}

/* CTAバナー（左右配置レイアウトへの変更） */
.cta__banner.wc-cta {
    padding: 40px; /* 内側に余白をとる */
    height: auto;  /* 高さは自動調整 */
    min-height: 200px;
    text-align: left; /* 左揃え */
}

.cta__flex {
    display: flex;
    justify-content: space-between;
    align-items: left;
    width: 100%;
    gap: 40px;
}

.cta__text {
    flex: 1; /* テキストエリアを広げる */
    color: #fff;
}

.cta__title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
	color: #fff;
}

.cta__btn.green {
    background-color: #00703C; /* 深い緑 */
    white-space: nowrap; /* ボタン内改行禁止 */
}

/* スマホ対応の追加 */
@media screen and (max-width: 768px) {
    .cta__flex {
        flex-direction: column; /* スマホでは縦並び */
        text-align: center;
        gap: 20px;
    }
    .cta__text {
        text-align: center;
    }
}
/* ============================================
   ▼▼▼ ここから下を追記してください ▼▼▼
   White Circle セクション専用の追加スタイル
   ============================================ */

/* Service 01 タグ */
.service-tag {
    display: inline-block;
    background-color: #d1fcd6; /* 薄い緑 */
    color: #008000;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

/* キャッチコピー */
.sec__catch {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00A1E5;
    margin-bottom: 15px;
}

/* カード内の微調整 */
.card__img-box {
    text-align: center;
    margin-bottom: 15px;
}
.card__img-box img {
    height: 180px; /* 画像の高さを揃える */
    object-fit: contain; /* 画像全体が見えるように */
    width: auto;
    max-width: 100%;
}
.card__sub {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}
.card__desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 特徴アイコンの丸背景（サイズ調整） */
.feature__icon-circle {
    width: 120px;  /* 円の幅 */
    height: 120px; /* 円の高さ */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.feature__icon-circle img {
    width: 60px;   /* 中のアイコンの幅 */
    height: auto;
}
.font-small {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 10px;
    text-align: left;
}

/* -------------------------------------------
   CTAバナー（理想のレイアウトへ修正）
------------------------------------------- */
.cta__banner.wc-cta {
    padding: 40px; /* 内側に余白をとる */
    height: auto;  /* 高さは自動調整 */
    min-height: 200px;
}

/* 左右配置のレイアウト */
.cta__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
    text-align: left; /* 全体を左寄せ */
}

/* テキストエリア */
.cta__text {
    flex: 1; /* テキストエリアを広げる */
}

/* 【重要】文字色を強制的に白にする */
.cta__title,
.cta__text p {
    color: #ffffff !important;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5); /* 読みやすくするため薄い影を追加 */
}

.cta__title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* ボタン */
.cta__btn.green {
    background-color: #00703C; /* 深い緑 */
    white-space: nowrap; /* ボタン内改行禁止 */
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .cta__flex {
        flex-direction: column; /* スマホでは縦並び */
        text-align: center;     /* スマホでは中央揃え */
        gap: 20px;
    }
}

/* ============================================
   つぼちゅん セクション専用の追加スタイル
   ============================================ */

/* Service 03 タグ（黄色） */
.service-tag.yellow {
    background-color: #fff9c4; /* 薄い黄色 */
    color: #b45309;           /* 濃いオレンジ/茶色 */
}

/* 3列カードリストのレイアウト */
.tsubo__list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 80px;
}

.tsubo__item {
    width: 31%; /* 3列 */
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); /* 優しい影 */
    text-align: left; /* 左揃え */
}

/* つぼちゅん専用タイトル */
.tsubo__ttl {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center; /* タイトルは中央 */
}

/* つぼちゅん説明文 */
.tsubo__desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

/* アイコンの円 */
.tsubo__icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px; /* 中央揃え */
    display: flex;
    align-items: center;
    justify-content: center;
}
.tsubo__icon-circle img {
    width: 40px;
    height: auto;
}

/* 円の色バリエーション */
.tsubo__icon-circle.red { background-color: #ffe4e6; }
.tsubo__icon-circle.blue { background-color: #dbeafe; }
.tsubo__icon-circle.green { background-color: #dcfce7; }

/* チェックリスト（カード1用） */
.tsubo__check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tsubo__check-list li {
    position: relative;
    padding-left: 25px; /* アイコン分のスペース */
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}
/* 赤いチェックマーク */
.tsubo__check-list li::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4d4f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 4px;
}

/* CTAボタン（黄色） */
.cta__btn.yellow {
    background-color: #dca600; /* マスタードイエロー */
    color: #fff;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .tsubo__list {
        flex-direction: column; /* 縦並び */
    }
    .tsubo__item {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* ============================================
   ハウス総括職人 セクション専用の追加スタイル
   ============================================ */

/* Service 04 タグ（紫） */
.service-tag.purple {
    background-color: #ede9fe; /* 薄い紫 */
    color: #5b21b6;           /* 濃い紫 */
}

/* 2列カードリストのレイアウト */
.house__list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 80px;
}

.house__item {
    width: 48%; /* PCで2列 */
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* カード内の画像 */
.house__img-box {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}
.house__img-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* カードタイトルとアイコン */
.house__ttl {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Webアイコン（Line Awesome）の調整 */
.house__icon {
    font-size: 1.5rem;
    color: #5b21b6; /* アイコン色（紫） */
}

/* 説明文 */
.house__desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

/* CTAボタン（濃い藍色・紫系） */
.cta__btn.purple {
    background-color: #2e3b86; /* スクリーンショットに近い濃い藍色 */
    color: #fff;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .house__list {
        flex-direction: column;
    }
    .house__item {
        width: 100%;
        margin-bottom: 20px;
    }
}