@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

.top #content {
    padding-top: 0 !important;
    margin-bottom: 0;
}

/*===========
inview
===========*/

.fadeIn_up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.fadeIn_up.is-show {
    transform: translateY(0);
    opacity: 1;
}

/* Base Resets */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Utilities */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sp-only {
    display: none;
    /* デフォルト（PC）では非表示 */
}



.br-600,
.br-390 {
    display: none;
}

/* -------------------------------------------
   FV Section
------------------------------------------- */
/* -------------------------------------------
   FV Section
------------------------------------------- */
.fv-section {
    position: relative;
    width: 100vw;
    min-height: 600px;
    /* 必要に応じて調整 */
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    overflow: hidden;
    /* 背景画像はHTMLのinline styleで指定されています */
    padding-top: 8%;
    padding-bottom: 80px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.fv-top-message {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    /* 白文字に変更 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    /* 読みやすく影を追加 */
    margin-bottom: 30px;
    width: 100%;
}

.fv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.fv-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Changed from flex-start to center */
    position: relative;
    text-align: left;
    /* Reset text-align for inner content */
}

/* FV Content (Left Side) */
.fv-content {
    flex: 1.5;
    /* Increase space for catch copy */
    z-index: 10;
    padding-top: 20px;
    min-width: 0;
    /* Important for flex children */
}

/* 以前のスタイルを上書き、あるいは削除して調整 */
/* .fv-top-message は上で再定義したので、古い定義は削除されたものとして扱われます */

.fv-text-box {
    display: inline-block;
    background-color: #2c5e8f;
    /* 濃い青背景 */
    color: #fff;
    font-size: 1.8rem;
    padding: 10px 40px;
    margin-bottom: 20px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fv-catch-copy {
    font-size: 2.8rem;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 20%;
    font-weight: 900;
    background: linear-gradient(135deg, #0052d4 0%, #4364f7 50%, #6fb1fc 100%);
    padding: 20px 45px;
    display: inline-block;
    border-radius: 12px;
    box-shadow:
        0 15px 35px rgba(0, 82, 212, 0.25),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    transform: rotate(-1.5deg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    white-space: nowrap;
}

@keyframes fv-shine {
    0% {
        left: -100%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        left: 150%;
        opacity: 0;
    }
}



.fv-catch-copy::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    pointer-events: none;
}

.fv-catch-copy::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    animation: fv-shine 1.2s ease-out forwards;
    animation-delay: 1.0s;
}

.fv-company-logo {
    margin-bottom: 40px;
    max-width: 450px;
}

.fv-company-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Buttons */
.fv-btn-group {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 65px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 35px;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "▶";
    font-size: 0.8em;
    position: absolute;
    right: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #2c5e8f, #4a88c7);
    color: #fff;
    box-shadow: 0 4px 10px rgba(44, 94, 143, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(44, 94, 143, 0.6);
}

.btn-secondary {
    background: #fff;
    color: #2c5e8f;
    border: 2px solid #2c5e8f;
}

.btn-secondary:hover {
    background: #f0f8ff;
    transform: translateY(-2px);
}


/* FV Visual (Right Side) - お兄さんとカゴ */
.fv-visual {
    position: relative;
    flex: 0 0 450px;
    /* Use flex basis instead of hard width */
    height: 500px;
}

.fv-kago-img {
    position: absolute;
    bottom: 50px;
    right: 150px;
    width: 400px;
    /* 調整必要 */
    z-index: 5;
}

.fv-man-img {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 500px;
    /* 調整必要 */
    z-index: 6;
}


/* -------------------------------------------
   Media Section
------------------------------------------- */
/* -------------------------------------------
   Media Section
------------------------------------------- */
.media-section {
    padding-bottom: 40px;
    background-color: #fff;
    /* 必要に応じて背景色変更 */
    text-align: center;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.media-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 4%;
}

/* ... media-icon, media-title ... */

.media-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.media-item {
    flex: 1;
}

.media-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.media-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #A52A2A;
    /* 赤茶色 */
    border-radius: 50%;
}

.media-title {
    font-size: 1.8rem;
    color: #A52A2A;
    /* 赤茶色 */
    margin: 0;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    /* 必要なら下線を */
}

/* -------------------------------------------
   CTA Section
------------------------------------------- */
.cta-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0;
    background: linear-gradient(135deg, #2458a8 0%, #3caea3 100%);
    color: #fff;
    text-align: center;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-desc {
    font-size: 1.0rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* gapを少し狭める */
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 400px; 固定幅をやめる */
    width: 48%;
    /* 横並び維持 */
    max-width: 450px;
    height: 90px;
    background-color: #e0f5e0;
    /* 薄緑 */
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
    padding: 0 10px;
    /* パディング微調整 */
}

.cta-btn:hover {
    opacity: 0.9;
    background-color: #d0f0d0;
}

/* CTA Button Image Icons */
.cta-icon-area {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    /* 画像の下隙間防止 */
}

.cta-icon-area img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Tel Button Specifics */
.cta-btn-tel {
    justify-content: center;
    /* 左寄せではなく中央寄せ＋gap調整に変更してみる */
    /*padding-left: 30px;  padding削除して中央寄せでバランス取る */
    align-items: center;
    /* 垂直中央 */
    gap: 10px;
    /* アイコンとテキストの間隔 */
}

.cta-btn-text {
    text-align: left;
    line-height: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

/* 番号と補足のバランス */
.tel-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: sans-serif;
    letter-spacing: 0px;
    white-space: nowrap;
    line-height: 1;
    margin-bottom: 2px;
}

.tel-sub {
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
    text-align: right;
    /* レイアウト崩れの原因になりやすいので左寄せか中央寄せも検討だが、一旦右寄せキープ */
    white-space: nowrap;
    line-height: 1;
}

/* Mail Button Specifics */
.cta-btn-mail {
    justify-content: center;
    align-items: center;
    /* 垂直中央 */
    gap: 15px;
    /* アイコンとテキストの間隔 */
}

.cta-btn-text-mail {
    font-size: 1.4rem;
    font-weight: bold;
    flex: 0 0 auto;
    text-align: left;
    line-height: 1;
}

.tel-sub {
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
    text-align: right;
    margin-top: 5px;
    /* 少し間隔を空ける */
    white-space: nowrap;
}

/* Mail Button Specifics */
.cta-btn-mail {
    justify-content: center;
    /* アイコンとテキストを中央寄せ */
}

/* メールボタンは、flex:1 を解除して中央に寄せる */
.cta-btn-text-mail {
    font-size: 1.4rem;
    font-weight: bold;
    flex: 0 0 auto;
    /* 幅をなりゆきに */
    text-align: left;
}

/* -------------------------------------------
   Manga Section
------------------------------------------- */
.manga-section {
    background-color: #fff;
    text-align: center;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.manga-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.manga-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* -------------------------------------------
   Problem Section
------------------------------------------- */
.problem-section {
    padding-bottom: 60px;
}

.problem-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-end;
    /* キャラクターの下揃えに合わせる */
    gap: 40px;
}

.problem-char-area {
    width: 35%;
    flex-shrink: 0;
    text-align: center;
}

.problem-char {
    width: 100%;
    margin-bottom: -60px;
    /* セクションからはみ出させる演出（任意） */
    position: relative;
    z-index: 10;
}

.problem-content {
    flex: 1;
    padding-bottom: 20px;
}

.problem-title {
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
    /* タイトルは中央寄せ */
    margin-bottom: 40px;
    line-height: 1.4;
}

.highlight-red {
    color: #cc0000;
    font-size: 2.4rem;
    position: relative;
    display: inline-block;
}

/* 下線マーカー風 */
.highlight-red::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(200, 255, 200, 0.6);
    /* 緑っぽいマーカー（画像参照） */
    z-index: -1;
    transform: rotate(-2deg);
}


.problem-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.problem-item {
    position: relative;
    background-color: #2c5e8f;
    /* 濃い青 */
    color: #fff;
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 10px;
    width: 30%;
    /* 3列想定 */
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 下2つを大きくする、あるいは中央寄せで自然に配置 */
.problem-item:nth-last-child(-n+2) {
    width: 45%;
    /* 下2つは少し広めに */
}

/* 吹き出しのしっぽ */
.problem-item::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 10px solid #2c5e8f;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}


/* -------------------------------------------
   Solution Section
------------------------------------------- */
.solution-section {
    padding: 60px 0;
    background-color: #2458a8;
    /* 青背景 */
    color: #fff;
    text-align: center;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.solution-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-header {
    margin-bottom: 50px;
}

.solution-sub-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.deco-line {
    font-weight: lighter;
    opacity: 0.8;
}

.solution-title {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
}

.highlight-yellow {
    color: #ffeb3b;
    /* 黄色文字 */
    border-bottom: 6px solid rgba(255, 255, 0, 0.5);
    /* マーカー風 */
    display: inline-block;
    padding-bottom: 2px;
}

.solution-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.solution-item {
    background-color: #fff;
    color: #333;
    border-radius: 15px;
    padding: 40px 20px 20px;
    width: 30%;
    /* 3列 */
    min-width: 280px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.solution-num {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #2c5e8f;
    color: #fff;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-icon {
    width: 250px;
    /* アイコンサイズ */
    height: 250px;
    margin: 0 auto 20px;
}

.solution-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.solution-item-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.solution-item-desc {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* -------------------------------------------
   Service Info Section (SDGs & Subscription)
------------------------------------------- */
.service-info-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.service-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.sdgs-backtext {
    font-size: 16rem;
    position: absolute;
    top: -10%;
    z-index: 2;
    transform: rotate(90deg);
    transform-origin: top left;
    right: -100%;
    opacity: .05;
    font-family: "REM", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

/* SDGs Area */
.sdgs-area {
    margin-bottom: 80px;
}

.sdgs-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
    gap: 20px;
}

.sdgs-logo {
    width: 100px;
    height: auto;
}

.sdgs-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
}

.sdgs-sub {
    font-size: 1.4rem;
}

.sdgs-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.sdgs-visual {
    flex: 0 0 40%;
}

.sdgs-visual img {
    width: 100%;
    height: auto;
}

.sdgs-body {
    flex: 0 0 60%;
}

.sdgs-text-area {
    width: 100%;
    margin-bottom: 25px;
}

.sdgs-desc {
    margin-bottom: 30px;
    font-size: 1.0rem;
}

.sdgs-icons {
    display: flex;
    gap: 15px;
}

.sdgs-icons img {
    width: 30%;
    height: auto;
}

/* Subscription Area */
.subsc-area {
    text-align: center;
}

.subsc-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.subsc-lead {
    font-size: 1.2rem;
    margin-bottom: 50px;
    font-weight: bold;
}

.subsc-compare {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 9999;
}

.subsc-box {
    border: 3px solid #ccc;
    border-radius: 20px;
    padding: 30px 20px;
    width: 45%;
    position: relative;
    background-color: #fff;
}

.subsc-box-plan {
    border-color: #2c5e8f;
    /* 強調カラー */
    box-shadow: 0 0 15px rgba(44, 94, 143, 0.2);
}

.subsc-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #666;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.subsc-box-plan .subsc-badge {
    background-color: #2c5e8f;
}

.subsc-box-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 10px;
}

.subsc-box-title .small {
    font-size: 0.9rem;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

.subsc-box-img {
    /* 画像ラッパーとしてのスタイルへ変更 */
    background: none;
    color: inherit;
    height: auto;
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

.subsc-box-img img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    /* 画像が大きすぎる場合の制限 */
    max-height: 250px;
    object-fit: contain;
}

.subsc-box-plan .subsc-box-img {
    background: none;
}

.subsc-box-list {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.95rem;
}

.subsc-box-list li {
    margin-bottom: 5px;
}

.subsc-arrow {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #2c5e8f;
}

/* Bottom Check List & Keep Clean */
.subsc-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    z-index: 9999;
    position: relative;
}

.subsc-check-list {
    list-style: none;
    padding: 0;
}

.subsc-check-list li {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* FontAwesomeがない場合の丸印 */
.subsc-check-list li i {
    color: #2c5e8f;
}

.subsc-keep-clean {
    width: 150px;
}

.subsc-keep-clean img {
    width: 100%;
    height: auto;
}

.subsc-note {
    margin-top: 40px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff2cc 100%);
    border: 3px solid #f1c40f;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.2);
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.subsc-note p {
    font-size: 1.4rem;
    font-weight: bold;
    color: #d35400;
    margin: 0;
}

.subsc-note p::before {
    content: "📢";
    margin-right: 10px;
}



/* -------------------------------------------
   Proof Section (Before & After)
------------------------------------------- */
.proof-section {
    padding: 80px 0;
    background-color: #1e467a;
    /* 濃い目の青 */
    color: #fff;
    text-align: center;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.proof-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.proof-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 50px;
    line-height: 1.4;
}

.comparison-area {
    display: flex;
    justify-content: center;
    align-items: stretch;
    /* 高さを揃える */
    gap: 0;
    margin-bottom: 60px;
}

.comparison-box {
    flex: 0 1 400px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.comparison-label {
    padding: 15px;
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
    height: 55px;
    /* ラベルの高さを固定 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.label-before {
    background-color: #d1f2ff;
}

.label-after {
    background-color: #ffeba1;
}

.comparison-img {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.comparison-img img {
    width: 100%;
    height: 250px;
    /* 画像の高さを固定 */
    object-fit: cover;
    /* はみ出し分をカットして比率を維持 */
    display: block;
    border-radius: 5px;
    margin-bottom: 40px;
    /* 測定値表示用のスペース */
}

.comparison-value {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #ccc;
    color: #333;
    padding: 8px 25px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 5;
}

.comparison-arrow {
    flex: 0 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    margin: 0 -15px;
}

/* Afterの青い矢印 */
.comparison-arrow::before {
    content: "After";
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    width: 100px;
    height: 45px;
    background-color: #00a0e9;
    clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);
    padding-right: 10px;
}

.proof-desc {
    margin-bottom: 60px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.proof-desc p {
    margin-bottom: 10px;
}

.proof-footer {
    margin-top: 40px;
}

.proof-footer-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    font-style: italic;
    color: #fff;
}

.proof-footer-text {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 0;
    color: #fff;
}



/* -------------------------------------------
   Testimonial Section
------------------------------------------- */
.testimonial-section {
    padding: 100px 0;
    background-color: #1e467a;
    /* 濃い青背景 */
    color: #fff;
    text-align: center;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-header {
    margin-bottom: 60px;
}

.testimonial-sub-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.testimonial-main-title {
    font-size: 2.6rem;
    font-weight: bold;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

/* タイトル下の波打ち線マーカー風（画像参照） */
.testimonial-main-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(200, 255, 200, 0.4);
    /* 緑っぽいマーカー */
    z-index: -1;
    border-radius: 50% / 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.testimonial-list-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-item {
    background-color: #fff;
    color: #333;
    padding: 30px;
    border-radius: 5px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 25px;
}

.testimonial-avatar {
    flex: 0 0 100px;
    height: 100px;
    background-color: #add8e6;
    /* 水色の円 */
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-item-title {
    font-size: 1.6rem;
    color: #2c5e8f;
    margin-bottom: 15px;
    font-weight: bold;
}

.testimonial-meta {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.meta-badge {
    background-color: #add8e6;
    color: #2c5e8f;
    font-size: 0.85rem;
    padding: 4px 15px;
    font-weight: bold;
    border-radius: 4px;
}

.testimonial-body {
    padding-top: 10px;
}

.testimonial-text {
    font-size: 1.0rem;
    line-height: 1.7;
    color: #444;
}



/* -------------------------------------------
   Step Section (Contract Method)
------------------------------------------- */
.step-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.step-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-header {
    text-align: center;
    margin-bottom: 60px;
}

.step-main-title {
    font-size: 2.2rem;
    color: #2c5e8f;
    /* 深い青 */
    font-weight: bold;
    display: block;
    /* inline-blockから変更 */
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.05em;
    line-height: 1.4;
    word-break: keep-all;
    /* 単語の途中での改行を防ぐ */
    overflow-wrap: break-word;
}

/* 下線マーカー風 (薄緑) */
.step-main-title::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: #d7f4e6;
    /* 薄緑 */
    z-index: -1;
    border-radius: 10px;
    transform: rotate(-0.5deg);
}

.step-num-highlight {
    display: inline-flex;
    align-items: baseline;
    margin: 0 10px;
    vertical-align: -0.1em;
    /* ベースラインに合わせて少し下げる */
    position: relative;
}

.step-num-highlight .num {
    font-size: 5.6rem;
    color: #fd0000;
    /* 水色 */
    font-family: serif;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.step-num-highlight .text {
    font-size: 2.22rem;
    color: #fd0000;
    /* 落ち着いた青灰色 */
    font-weight: bold;
    margin-left: 2px;
}

.step-tabs-wrapper {
    margin-top: 20px;
}

.step-tabs {
    display: flex;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 10;
    /* コンテンツエリアより上に配置 */
    margin-bottom: -2px;
    /* 下の枠線と重ねる */
}

.step-tab {
    flex: 1;
    padding: 25px 20px;
    border: 2px solid #2c5e8f;
    background-color: #fff;
    color: #2c5e8f;
    border-radius: 15px 15px 0 0;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 110px;
    position: relative;
    font-family: inherit;
    box-sizing: border-box;
}

/* 隣り合うタブの境界線が重なるように調整 */
.step-tab:not(:first-child) {
    border-left: none;
}

.step-tab.active {
    background-color: #2c5e8f;
    color: #fff;
    z-index: 2;
    /* 下の枠線を隠すための設定 */
    border-bottom-color: #2c5e8f;
}

/* PC版でアクティブな時に少し浮き上がらせる場合は transform ではなく高さ等で調整するのが安全 */
/* 今回は一体感を優先するため、余計な変形は削除しました */

.step-tab-num {
    font-size: 0.95rem;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.step-tab-text {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.4;
    position: relative;
    padding: 0 15px;
}

.tab-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #fec8c8;
    /* 薄い赤枠 */
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-icon::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #fec8c8;
}

.step-content-area {
    border: 2px solid #2c5e8f;
    background-color: #fff;
    border-radius: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeInStep 0.5s ease;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.step-inner {
    display: flex;
    min-height: 480px;
}

.step-visual {
    flex: 0 0 45%;
    background-color: #2c5e8f;
    /* アクティブタブと同じ青 */
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-body {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-item-num {
    font-size: 2.8rem;
    color: #2c5e8f;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: "Georgia", serif;
}

.step-item-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.5;
}

.step-item-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}



/* -------------------------------------------
   Contact Section
------------------------------------------- */
.contact-section {
    padding: 100px 0;
    background-color: #f8fbff;
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 2.2rem;
    color: #2c5e8f;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(44, 94, 143, 0.1);
}

/* Contact Form 7 General Styles */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-top: 8px;
}

/* Label & Input Pairing */
.contact-form-row {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-weight: bold;
    color: #2c5e8f;
    font-size: 1.05rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.label-required {
    background-color: #e63946;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: normal;
}

/* Input Fields */
.wpcf7-text,
.wpcf7-textarea,
.wpcf7-select {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    background-color: #f9f9f9 !important;
    transition: all 0.3s ease !important;
}

.wpcf7-text:focus,
.wpcf7-textarea:focus {
    border-color: #2c5e8f !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(44, 94, 143, 0.1) !important;
    outline: none !important;
}

.wpcf7-textarea {
    height: 150px !important;
}

/* Submit Button */
.wpcf7-submit {
    width: 100% !important;
    max-width: 400px !important;
    margin: 40px auto 0 !important;
    display: block !important;
    height: 70px !important;
    background: linear-gradient(135deg, #2c5e8f, #4a88c7) !important;
    color: #fff !important;
    font-size: 1.4rem !important;
    font-weight: bold !important;
    border: none !important;
    border-radius: 35px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 20px rgba(44, 94, 143, 0.3) !important;
}

.wpcf7-submit:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 25px rgba(44, 94, 143, 0.4) !important;
    opacity: 0.9 !important;
}

/* Validation Messages */
.wpcf7-not-valid-tip {
    color: #e63946 !important;
    font-size: 0.9rem !important;
    margin-top: 5px !important;
}

.wpcf7-response-output {
    margin: 30px 0 0 !important;
    padding: 15px !important;
    border: 2px solid !important;
    border-radius: 8px !important;
    text-align: center !important;
}



/* -------------------------------------------
   Company Profile Section
------------------------------------------- */
.company-section {
    padding: 100px 0;
    background-color: #fff;
}

.company-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-title {
    text-align: center;
    font-size: 1.4rem;
    color: #2c5e8f;
    /* 深い青 */
    font-weight: bold;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.company-table {
    border-top: 1px solid #9cb5c5;
    /* 薄い青灰色の線 */
}

.company-row {
    display: flex;
    margin: 0;
    padding: 15px 10px;
    border-bottom: 1px solid #9cb5c5;
    align-items: center;
}

.company-row dt {
    flex: 0 0 160px;
    /* 見出しの幅 */
    font-size: 1.1rem;
    color: #2c5e8f;
    font-weight: bold;
}

.company-row dd {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    color: #2c5e8f;
}



/* -------------------------------------------
   LP Footer
------------------------------------------- */
.lp-footer {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 120px 0 80px;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* 下揃えにすることで波のラインと合わせる */
    position: relative;
}

.footer-left {
    z-index: 10;
    padding-bottom: 20px;
}

.footer-logo {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
    font-family: sans-serif;
}

.footer-nav {
    display: flex;
    gap: 80px;
}

.nav-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-col a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: baseline;
    gap: 12px;
    transition: opacity 0.3s;
}

.nav-col a:hover {
    opacity: 0.7;
}

.nav-ja {
    font-size: 0.75rem;
    font-weight: normal;
    white-space: nowrap;
    opacity: 0.9;
}

/* Footer Visual */
.footer-visual {
    position: relative;
    flex: 0 0 550px;
    height: 400px;
    margin-bottom: -40px;
    /* 少し下げる */
}

.footer-kago-img {
    position: absolute;
    bottom: 40px;
    left: -40px;
    width: 420px;
    z-index: 5;
}

.footer-man-img {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 350px;
    z-index: 6;
}



.fixed-cta-sp {
    display: none;
}










/* -------------------------------------------
   Proof Section V2 (New Design)
------------------------------------------- */
/* -------------------------------------------
   Proof Section V2 (New Design)
------------------------------------------- */
.proof-v2 {
    padding: 100px 0 0 0;
    /* デザイン案に合わせた放射状グラデーション */
    background: radial-gradient(circle at 70% 50%, #2a5fb1 0%, #1e467a 40%, #0d2a4f 100%);
    color: #fff;
    text-align: center;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

/* キラキラしたエフェクトの背景（擬似要素で追加） */
.proof-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 65% 45%, rgba(255, 255, 255, 0.1) 0%, transparent 10%),
        radial-gradient(circle at 75% 55%, rgba(255, 255, 255, 0.05) 0%, transparent 5%);
    pointer-events: none;
}

.proof-v2-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.proof-v2-main-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.comparison-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
}

.comp-box {
    flex: 1;
    max-width: 440px;
    background: #fff;
    border-radius: 24px;
    overflow: visible;
    /* バッジを出すため */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    color: #333;
}

.comp-header {
    padding: 15px;
    font-weight: 800;
    font-size: 1.3rem;
}

.comp-before .comp-header {
    background-color: #e3f2fd;
    border-radius: 24px 24px 0 0;
}

.comp-after .comp-header {
    background-color: #fff9c4;
    border-radius: 24px 24px 0 0;
}

.comp-body {
    padding: 24px;
    position: relative;
}

.comp-img-wrapper {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.comp-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.comp-value-badge {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 2px solid #ddd;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 10;
}

.comp-before .comp-value-badge {
    border-color: #bbdefb;
    background-color: #f1f8ff;
}

.comp-after .comp-value-badge {
    border-color: #fff59d;
    background-color: #fffde7;
}

.comp-v2-arrow-area {
    flex: 0 0 120px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 20;
}

.comp-arrow-v2 {
    width: 100px;
    height: 60px;
    background-color: #00bcd4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    clip-path: polygon(0% 20%, 70% 20%, 70% 0%, 100% 50%, 70% 100%, 70% 80%, 0% 80%);
    padding-right: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.proof-v2-middle-text {
    margin-bottom: 80px;
    font-size: 1.2rem;
    line-height: 2.0;
    position: relative;
    z-index: 10;
}

.proof-v2-middle-text p {
    margin-bottom: 15px;
}

.proof-v2-visual-area {
    margin-top: -80px;
    /* 上のテキストと重ならないようにさらに調整 */
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.visual-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.speech-bubble-v2 {
    position: relative;
    background: #fff;
    color: #1e467a;
    padding: 30px 40px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    flex: 0 0 45%;
    margin-right: -40px;
    /* キャラクターにかぶせる */
    margin-bottom: 60px;
}

.speech-bubble-v2::after {
    content: "";
    position: absolute;
    bottom: 20px;
    right: -25px;
    border-style: solid;
    border-width: 15px 0 15px 30px;
    border-color: transparent transparent transparent #fff;
}

.staff-photo-v2 {
    flex: 0 0 550px;
    pointer-events: none;
}

.staff-photo-v2 img {
    width: 100%;
    height: auto;
    display: block;
}

.proof-v2-bottom-area {
    background-color: #153763;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 40px 0 100px;
    z-index: 10;
}

.proof-v2-footer-desc {
    margin-top: -120px;
    /* キャラクターの体に重ねる */
    font-size: 1.2rem;
    line-height: 2.0;
    position: relative;
    z-index: 20;
}

.proof-v2-extra-section {
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.extra-v2-title {
    font-size: 5rem;
    font-weight: 950;
    font-style: italic;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.extra-v2-text {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 700;
}

/* -------------------------------------------
   Proof V2 Responsive
------------------------------------------- */




/* -------------------------------------------
   Location List Area (拠点一覧)
------------------------------------------- */
.location-list-area {
    margin-top: 5%;
}

.location-title {
    font-size: 1.4rem;
    color: #2c5e8f;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.location-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #9cb5c5;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-card {
    background: #fff;
    border: 1px solid #9cb5c5;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.card-inner {
    padding: 25px;
}

.card-office-name {
    font-size: 1.4rem;
    color: #2c5e8f;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #9cb5c5;
    display: flex;
    align-items: center;
}

/* 本社アイコン */
.office-head::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232c5e8f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.loc-item {
    font-size: 1.1rem;
    color: #2c5e8f;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.loc-item::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 2px;
}

/* 住所アイコン (Pin) */
.loc-address::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232c5e8f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
}

/* TELアイコン */
.loc-tel::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232c5e8f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>');
}

/* FAXアイコン (プリンタ風) */
.loc-fax::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232c5e8f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 6 2 18 2 18 9"></polyline><path d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"></path><rect x="6" y="14" width="12" height="8"></rect></svg>');
}

.loc-btn-wrapper {
    margin-top: 20px;
}

.loc-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: #f0f7ff;
    border: 1px solid #c9dff5;
    border-radius: 6px;
    color: #2c5e8f;
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: bold;
    transition: all 0.2s ease;
}

.loc-map-link:hover {
    background-color: #e1efff;
    border-color: #b0d3f7;
}

.loc-map-link::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232c5e8f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}


/* ===========================================
   Responsive Design (Media Queries)
   =========================================== */

/* --- Tablet / Desktop Transition (1200px) --- */
@media screen and (max-width: 1200px) {
    .fv-catch-copy {
        font-size: 2.2rem;
        padding: 15px 30px;
    }
}

/* --- Large Tablet / Small Laptop (1024px) --- */
@media screen and (max-width: 1024px) {
    .sdgs-backtext {
        right: -220%;
        top: 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        margin-bottom: 60px;
        padding-bottom: 0;
    }

    .footer-nav {
        justify-content: center;
        gap: 40px;
    }

    .footer-visual {
        flex: none;
        width: 100%;
        max-width: 550px;
        height: 380px;
    }

    .footer-logo {
        font-size: 2.6rem;
    }
}

/* --- Tablet (992px) --- */
@media screen and (max-width: 992px) {
    .visual-inner {
        flex-direction: column;
        align-items: center;
    }

    .staff-photo-v2 {
        flex: 0 0 auto;
        width: 100%;
        max-width: 450px;
        margin-top: -60px;
    }

    .speech-bubble-v2 {
        flex: 0 0 auto;
        width: 90%;
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
        font-size: 1.3rem;
    }

    .speech-bubble-v2::after {
        right: 50%;
        bottom: -20px;
        transform: translateX(50%);
        border-width: 25px 20px 0 20px;
        border-color: #fff transparent transparent transparent;
    }

    .extra-v2-title {
        font-size: 3.5rem;
    }

    .step-inner {
        flex-direction: column;
        min-height: auto;
    }

    .step-visual {
        flex: none;
        width: 100%;
        height: 400px;
        padding: 20px;
    }

    .visual-placeholder {
        aspect-ratio: 16 / 9;
    }

    .step-body {
        padding: 40px 30px;
    }
}

/* --- Small Tablet / Large Smartphone (960px) --- */
@media screen and (max-width: 960px) {
    .fv-section {
        padding-top: 40px;
        padding-bottom: 0;
        min-height: 525px;
    }

    .fv-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .fv-content {
        width: 100%;
        padding: 0 0 0 0%;
        margin-bottom: 40px;
    }

    .fv-top-message {
        font-size: 1.8rem;
    }

    .fv-catch-copy {
        font-size: 1.5rem;
        width: auto;
        max-width: 100%;
        margin: 0 0 20px;
        padding: 12px 20px;
        line-height: 1.4;
        background: linear-gradient(135deg, #0052d4 0%, #4364f7 50%, #6fb1fc 100%);
        box-shadow: 0 10px 25px rgba(0, 82, 212, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.2);
        border: 1.5px solid rgba(255, 255, 255, 0.4);
        overflow: hidden;
        white-space: nowrap;
    }

    .fv-company-logo {
        margin: 1% 0%;
        max-width: 250px;
    }

    .fv-visual {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 300px;
        max-width: 500px;
    }

    .fv-kago-img {
        width: 300px;
        right: auto;
        left: 10%;
        bottom: 20px;
    }

    .fv-man-img {
        width: 260px;
        right: 0;
        bottom: 0;
    }

    .fv-btn-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn {
        height: 60px;
        width: 100%;
        max-width: 340px;
        border-radius: 30px;
    }

    .media-gallery {
        flex-wrap: wrap;
    }
}

/* --- Smartphone (768px) --- */
@media screen and (max-width: 768px) {
    .sp-only {
        display: block;
    }

    .sp-only.inline {
        display: inline;
    }

    .pc-only {
        display: none;
    }

    /* Main Visual (Consolidated) */
    .fv-section {
        min-height: 480px;
        padding: 0;
        overflow: hidden;
        background-color: transparent !important;
        background-position: center bottom;
    }

    .fv-inner {
        position: relative;
        height: 480px;
        display: block;
    }

    .fv-content {
        margin-bottom: 0;
    }

    .fv-kago-img {
        width: 110% !important;
        max-width: none;
        position: absolute;
        bottom: 0;
        left: -15%;
        z-index: 5;
        filter: brightness(0.8);
    }

    .fv-man-img {
        height: 100% !important;
        width: auto !important;
        position: absolute;
        bottom: 0;
        right: -10%;
        z-index: 50;
        pointer-events: none;
    }

    .fv-catch-copy {
        position: absolute;
        top: 90px;
        left: 5%;
        width: 70%;
        font-size: 1.1rem;
        font-weight: bold;
        color: #fff;
        background: #3b7dc4;
        border: 2px solid #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        z-index: 30;
        transform: none;
        line-height: 1.5;
        margin: 0;
    }

    .fv-catch-copy::before,
    .fv-catch-copy::after {
        display: none !important;
    }

    .fv-btn-group {
        position: absolute;
        top: 225px;
        left: 5%;
        width: 60%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 40;
    }

    .btn {
        width: 100% !important;
        max-width: 240px;
        height: 60px !important;
        border-radius: 35px;
        font-size: 1.1rem;
        background: linear-gradient(135deg, #32609a, #4a88c7);
        border: none;
        color: #fff;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        justify-content: center;
        text-align: center;
        padding-right: 40px;
    }

    .btn::after {
        right: 20px;
    }

    /* SDGs & Service Info */
    .sdgs-backtext {
        right: -260%;
        top: 2%;
        font-size: 20rem;
    }

    .sdgs-area {
        padding: 40px 20px;
    }

    .sdgs-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        width: 100%;
        justify-content: flex-start;
    }

    .sdgs-logo {
        width: 80px;
    }

    .sdgs-title {
        text-align: left;
        font-size: 1.6rem;
    }

    .sdgs-body {
        flex-direction: column;
        align-items: center;
    }

    .sdgs-sub {
        font-size: 1.1rem;
        display: block;
        margin-top: 5px;
    }

    .sdgs-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .sdgs-visual {
        width: 60%;
        max-width: 200px;
    }

    .sdgs-text-area {
        width: 100%;
        text-align: justify;
    }

    .sdgs-desc {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .sdgs-icons {
        width: 100%;
        margin-top: 20px;
        justify-content: center;
        gap: 10px;
    }

    .sdgs-icons img {
        width: 30%;
        max-width: 100px;
    }

    .subsc-compare {
        flex-direction: column;
        gap: 40px;
    }

    .subsc-title {
        font-size: 1.8rem;
    }

    .subsc-box {
        width: 100%;
    }

    .subsc-arrow {
        transform: rotate(90deg);
        margin: -10px auto;
    }

    .subsc-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    /* CTA Section */
    .cta-btn-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 340px;
    }

    .cta-title {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    /* Problem Section */
    .problem-container {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        padding: 0 10px;
    }

    .problem-char-area {
        width: 30%;
        margin-bottom: 0px;
        overflow: visible;
        position: relative;
    }

    .problem-char {
        width: 180% !important;
        max-width: none !important;
        margin-left: -55%;
        position: relative;
        z-index: 10;
    }

    .problem-content {
        flex: 1;
        padding-bottom: 0;
    }

    .problem-title {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .problem-title .highlight-red {
        font-size: 1.3rem;
    }

    .problem-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .problem-item {
        width: 100% !important;
        font-size: 0.85rem;
        padding: 8px 10px;
        min-height: auto;
        margin-bottom: 2%;
        text-align: left;
        justify-content: flex-start;
    }

    .problem-item::after {
        left: 10px;
        transform: translateX(0);
        bottom: -8px;
    }

    /* Solution Section */
    .solution-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .solution-item {
        width: 100%;
        max-width: 350px;
        padding: 40px 20px 30px;
    }

    .solution-title {
        font-size: 1.6rem;
    }

    /* Proof Section V1 & V2 */
    .comparison-area {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .comparison-box {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .comparison-img img {
        height: 200px;
        margin-bottom: 35px;
    }

    .comparison-arrow {
        flex: none;
        width: 80px;
        height: 85px;
        margin: 0 auto;
    }

    .comparison-arrow::before {
        clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 50% 100%, 0% 75%);
        justify-content: center;
        padding: 0 0 15px 0;
        width: 80px;
        height: 85px;
    }

    .proof-title {
        font-size: 1.6rem;
    }

    .proof-footer-title {
        font-size: 2.4rem;
    }

    .proof-footer-text {
        font-size: 1.2rem;
    }

    .proof-v2-main-title {
        font-size: 1.8rem;
    }

    .comparison-v2 {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .comp-box {
        width: 100%;
    }

    .comp-v2-arrow-area {
        height: 100px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0;
    }

    .comp-arrow-v2 {
        width: 60px;
        height: 100px;
        background-color: #00bcd4;
        clip-path: polygon(20% 0%, 80% 0%, 80% 70%, 100% 70%, 50% 100%, 0% 70%, 20% 70%);
        padding: 0;
        transform: none;
    }

    .proof-v2-middle-text,
    .proof-v2-footer-desc {
        font-size: 1.0rem;
    }

    .extra-v2-title {
        font-size: 2.6rem;
    }

    .extra-v2-text {
        font-size: 1.1rem;
    }

    /* Testimonial Section */
    .testimonial-main-title {
        font-size: 1.6rem;
    }

    .testimonial-item {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }

    .testimonial-top {
        flex: none;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 20px;
        margin-bottom: 0px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .testimonial-avatar {
        flex: 0 0 70px;
        width: 70px;
        height: 70px;
    }

    .testimonial-item-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .testimonial-meta {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
        border-bottom: none;
        padding-bottom: 0;
    }

    .meta-badge {
        font-size: 0.7rem;
        padding: 2px 8px;
    }

    .testimonial-body {
        padding-top: 0;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-list-wrapper {
        padding: 20px;
    }

    /* Step Section */
    .step-main-title {
        font-size: 1.8rem;
    }

    .step-num-highlight {
        font-size: 3rem;
    }

    .step-tabs {
        flex-direction: row;
        margin-bottom: -2px;
    }

    .step-tab {
        border-radius: 10px 10px 0 0;
        margin-bottom: 0;
        min-height: 60px;
        padding: 10px 5px;
    }

    .step-tab-num {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .step-tab-text {
        font-size: 0.75rem;
        padding: 0 5px;
    }

    .step-tab.active {
        margin-top: 0;
        border-bottom-color: #2c5e8f;
    }

    .step-content-area {
        border-radius: 0 0 15px 15px;
        margin-top: 0;
    }

    .step-body {
        padding: 30px 20px;
    }

    .step-item-num {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .step-item-title {
        font-size: 1.4rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .wpcf7-submit {
        height: 60px !important;
        font-size: 1.2rem !important;
    }

    /* Fixed CTA SP */
    .fixed-cta-sp {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: calc(70px + env(safe-area-inset-bottom));
        padding-bottom: env(safe-area-inset-bottom);
        background-color: rgba(224, 245, 224, 0.98);
        z-index: 100000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #c0dcc0;
        backdrop-filter: blur(5px);
        transition: transform 0.3s ease;
    }

    .fixed-cta-sp.is-hidden {
        transform: translateY(100%);
    }

    .fixed-cta-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #333;
        padding: 5px;
    }

    .fixed-cta-tel {
        border-right: 1px solid #c0dcc0;
    }

    .fixed-cta-icon {
        width: 35px;
        height: 35px;
        margin-right: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fixed-cta-icon img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .fixed-cta-text {
        display: flex;
        flex-direction: column;
    }

    .fixed-cta-text .tel-num {
        font-size: 1.25rem;
        font-weight: bold;
        line-height: 1.1;
        color: #333;
        font-family: sans-serif;
    }

    .fixed-cta-text .tel-time {
        font-size: 0.65rem;
        text-align: right;
        color: #666;
        margin-top: 2px;
    }

    .fixed-cta-text .form-label {
        font-size: 1.0rem;
        font-weight: bold;
        color: #333;
    }

    .lp-wrapper {
        padding-bottom: calc(70px + env(safe-area-inset-bottom)) !important;
    }

    /* Location List */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-title {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .card-office-name {
        font-size: 1.2rem;
    }

    .loc-item {
        font-size: 1.0rem;
    }
}

/* --- Mobile (600px) --- */
@media screen and (max-width: 600px) {
    .company-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 5px;
    }

    .company-row dt {
        flex: none;
        width: 100%;
        margin-bottom: 5px;
        font-size: 1.0rem;
    }

    .company-row dd {
        font-size: 1.0rem;
    }

    .br-600 {
        display: block;
    }

    .fv-top-message {
        font-size: 2rem;
    }

    .fv-man-img {
        width: 65%;
        right: -15%;
    }

    .btn {
        height: 50px;
        width: 300px;
        font-size: 1rem;
    }

    .fv-catch-copy {
        font-size: 1.4rem;
        padding: 8px 15px;
        white-space: normal;
    }

    .lp-footer {
        padding: 80px 0 40px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-col a {
        font-size: 1.3rem;
    }

    .footer-visual {
        height: 300px;
    }

    .footer-kago-img {
        width: 300px;
        left: 0;
        bottom: 20px;
    }

    .footer-man-img {
        width: 250px;
        right: 0;
        bottom: -10px;
    }
}

/* --- Small Smartphone (390px) --- */
@media screen and (max-width: 390px) {

    .fv-section,
    .fv-inner {
        height: 420px;
        min-height: 420px;
    }

    .fv-catch-copy {
        width: unset;
        font-size: 1.0rem;
        top: 65px;
        padding: 2% 5%;
        left: 0;
    }

    .fv-btn-group {
        top: 185px;
        width: 55%;
        left: 0;
    }

    .btn {
        height: 52px !important;
        font-size: 1.0rem;
        border: 1px solid aliceblue;
    }

    .fv-man-img {
        height: 110% !important;
        width: auto !important;
        position: absolute;
        bottom: 10%;
        right: -15%;
        z-index: 50;
        pointer-events: none;
    }

    .subsc-note {
        padding: 10px 20px;
        max-width: 280px;
    }

    .media-icon {
        display: none;
    }

    .media-title {
        font-size: 1.2rem;
    }

    .proof-v2 {
        padding: 10% 0 0 0;
    }

    .speech-bubble-v2 {
        flex: 0 0 auto;
        width: 90%;
        margin-right: 0;
        margin-bottom: 25%;
        text-align: center;
        font-size: 1.3rem;
        padding: 3%;
        border-radius: 10px;
    }
}