@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/


.kmt-hero-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

  

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
            z-index: 1;
        }

        .content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
width: 100%;
			
            padding: 0 20px;
            animation: fadeInUp 1.2s ease-out;
        }

        .main-title {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            letter-spacing: 0.1em;
            line-height: 1.2;
            font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
            color: white;
        }

        .sub-title {
            font-size: clamp(1.1rem, 3vw, 1.8rem);
            font-weight: 400;
            line-height: 1.6;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
            letter-spacing: 0.05em;
            opacity: 0.95;
        }

        .highlight {
            display: none;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-indicator {
            display: none;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .main-visual {
                height: 100vh;
                background-position: center right;
            }
            
            .content {
                padding: 0 15px;
            }
            
            .main-title {
                margin-bottom: 1rem;
            }
            
            .sub-title {
                line-height: 1.5;
            }
        }

        @media (max-width: 480px) {
            .overlay {
                background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
            }
        }


.main-visual {
    min-height: 100vh;
    min-height: 100dvh; /* 動的ビューポートハイト対応 */
    height: 100vh;
    height: 100dvh;
}

/* モバイルブラウザのアドレスバー対応 */
@supports (-webkit-touch-callout: none) {
    .main-visual {
        min-height: -webkit-fill-available;
        height: -webkit-fill-available;
    }
}




        .kmts-intro-message {
            padding: 200px 0;
            position: relative;
            overflow: hidden;
        }

        .kmts-intro-message::before {
            content: 'CONCEPT';
            position: absolute;
            top: 15%;
            right: 0%;
            transform: translateY(-50%);
            font-size: 100px;
            font-weight: 900;
            color: rgb(2 120 199 / 11%);;
            letter-spacing: 0.2em;
            z-index: 1;
            pointer-events: none;
font-family: math;
        }

        .kmts-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .kmts-content-wrapper {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .kmts-image-area {
            flex: 1;
            max-width: 500px;
        }

        .kmts-image-area img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .kmts-text-area {
            flex: 1;
            max-width: 600px;
        }

        .kmts-main-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .kmts-description {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .kmts-description + .kmts-description {
            margin-top: 25px;
        }

        .kmts-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            text-decoration: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
            position: relative;
            overflow: hidden;
        }

        .kmts-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
            background: linear-gradient(135deg, #2980b9, #3498db);
        }

        .kmts-cta-button::after {
            content: '▶';
            margin-left: 10px;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .kmts-cta-button:hover::after {
            transform: translateX(3px);
        }

        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
            .kmts-intro-section {
                padding: 150px 0;
            }
            
            .kmts-content-wrapper {
                gap: 40px;
            }

            .kmts-intro-section::before {
                top: 5%;
                right: 10%;
                font-size:50px;
            }
        }

        @media (max-width: 768px) {
            .kmts-intro-section {
                padding: 150px 0;
            }

            .kmts-content-wrapper {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }

            .kmts-image-area {
                max-width: 400px;
                margin: 0 auto;
            }

            .kmts-main-title {
                margin-bottom: 20px;
            }

            .kmts-container {
                padding: 0 15px;
            }

            .kmts-intro-section::before {
                top: 5%;
                right: 50%;
                transform: translate(50%, -50%);
                font-size: 50px;
            }
        }

        @media (max-width: 480px) {
            .kmts-intro-section {
                padding: 40px 0;
            }

            .kmts-content-wrapper {
                gap: 30px;
            }

            .kmts-cta-button {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .kmts-image-area {
                max-width: 100%;
            }
        }


@media screen and (max-width: 768px) {
  .kmts-image-area img {
    display: none !important;
  }
}




        .kmt-slider-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 200px 20px;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .kmt-content-left {
            flex: 1;
            max-width: 400px;
        }

        .kmt-section-label {
            color: #666;
            font-size: 25px;
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .kmt-main-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.3;
            color: #333;
            margin-bottom: 30px;
        }

        .kmt-title-highlight {
            color: #ff6b35;
        }

        .kmt-slide-counter {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #999;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .kmt-counter-current {
            color: #333;
            font-weight: 600;
        }

        .kmt-counter-divider {
            color: #ccc;
        }

        .kmt-nav-controls {
            display: flex;
            gap: 10px;
        }

        .kmt-nav-button {
            width: 50px;
            height: 50px;
            border: 2px solid #e0e0e0;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .kmt-nav-button:hover {
            border-color: #ff6b35;
            background: #ff6b35;
            color: white;
        }

        .kmt-nav-button.kmt-nav-disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .kmt-slides-wrapper {
            flex: 2;
            position: relative;
            overflow: hidden;
        }

/*         .kmt-slides-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        } */

/*         .kmt-slide-item {
            min-width: 100%;
            display: flex;
            gap: 20px;
        }
 */
        .kmt-slide-card {
            flex: 1;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .kmt-card-number {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 48px;
            font-weight: 300;
            opacity: 0.7;
        }

        .kmt-card-content {
            padding: 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        }

        .kmt-card-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .kmt-card-title {
            color: white;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .kmt-card-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            color: #333;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .kmt-card-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .kmt-card-arrow {
            width: 0;
            height: 0;
            border-left: 5px solid #333;
            border-top: 3px solid transparent;
            border-bottom: 3px solid transparent;
        }

        @media (max-width: 768px) {
            .kmt-slider-container {
                flex-direction: column;
                padding: 40px 20px;
            }
            
            .kmt-main-title {
                font-size: 36px;
            }
            
            .kmt-slide-item {
                flex-direction: column;
            }
            
            .kmt-slide-card {
                height: 300px;
            }
        }

.kmt-slider-container {
    /* 親コンテンツの幅制限を解除 */
	 position: relative;
    max-width: none;
    width: auto;
    margin: 0;
    padding: 60px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.kmt-content-left {
    flex: 0 0 auto; /* 固定幅、親コンテンツに合わせる */
    max-width: 400px;
    margin-left: 20px; /* 親コンテンツの左マージンと合わせる */
}

.kmt-slides-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    
    /* 右側を画面端まで伸ばす */
    margin-right: calc(-50vw + 50%);
    width: calc(50vw + 50%);
}


/* タブレット対応 (768px以下) */
@media (max-width: 768px) {
    .kmt-slider-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .kmt-content-left {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
        text-align: center;
    }
    
    .kmt-main-title {
        font-size: 36px;
    }
    
    .kmt-slides-wrapper {
        width: 100%;
        margin-right: 0;
        padding-right: 0;
        overflow: hidden;
    }
    
/*     .kmt-slides-track {
        display: flex;
        width: 400%; /* 4枚のカードを横並び */
    } */
    
    .kmt-slide-item {
        min-width: 25%; /* 100% ÷ 4 = 25% */
        display: flex;
        flex-direction: column;
    }
    
    .kmt-slide-card {
        height: 280px;
        width: 100%;
        margin-bottom: 0;
    }
    
    /* スマホでは2枚目のカードを非表示 */
    .kmt-slide-card:nth-child(2) {
        display: none;
    }
}

.kmt-slider-container {
	position: relative;
}

.kmt-slider-container::before {
    content: 'BUSINESS';
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translateY(-50%);
    font-size: 100px;
    font-weight: 900;
    color: rgb(2 120 199 / 11%);;
    letter-spacing: 0.2em;
    z-index: 1;
    pointer-events: none;
	font-family: math;
}




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

        .kmt-header-section {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            gap: 20px;
        }

        .kmt-info-icon {
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .kmt-page-title {
            font-size: 32px;
            font-weight: 700;
            color: #333;
        }

        .kmt-news-list {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .kmt-news-item {
            padding: 24px 32px;
            border-bottom: 1px solid #f0f0f0;
            transition: background-color 0.2s ease;
        }

        .kmt-news-item:last-child {
            border-bottom: none;
        }

        .kmt-news-item:hover {
            background-color: #f8f9ff;
        }

        .kmt-news-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
        }

        .kmt-news-date {
            color: #2563eb;
            font-weight: 600;
            font-size: 14px;
        }

        .kmt-category-badge {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
        }

        .kmt-category-press {
            background-color: #2563eb;
            color: white;
        }

        .kmt-category-notice {
            background-color: #1b3d7c;
            color: white;
        }

        .kmt-category-medical {
            background-color: #f59e0b;
            color: white;
        }

        .kmt-category-event {
            background-color: #8b5cf6;
            color: white;
        }

        .kmt-category-recruit {
            background-color: #ef4444;
            color: white;
        }

        .kmt-news-title {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            text-decoration: none;
            display: block;
            transition: color 0.2s ease;
        }

        .kmt-news-title:hover {
            color: #2563eb;
        }

        .kmt-more-link {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-top: 40px;
            gap: 8px;
        }

        .kmt-more-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background-color: white;
            border: 2px solid #333;
            border-radius: 30px;
            color: #333;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .kmt-more-button:hover {
            background-color: #333;
            color: white;
        }

        .kmt-arrow-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            transition: background-color 0.3s ease;
        }

        .kmt-more-button:hover .kmt-arrow-icon {
            background-color: white;
            color: #333;
        }

        .kmt-no-posts {
            text-align: center;
            padding: 40px;
            color: #666;
        }

        @media (max-width: 768px) {
            .kmt-news-container {
                padding: 20px 16px;
            }

            .kmt-header-section {
                margin-bottom: 24px;
            }

            .kmt-page-title {
                font-size: 24px;
            }

            .kmt-news-item {
                padding: 20px 16px;
            }

            .kmt-news-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }



/* ここからニュースセクション */
.news-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.news-date {
    font-size: 14px;
    color: #666;
    margin-right: 15px;
}

.news-category {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
    background-color: #1b3d7c;
    min-width: 100px;
    text-align: center;
}



.news-text {
    margin-left: 20px;
}



.kmt-news-container{
    position: relative;
}

.kmt-interview-section::before {
    content: 'INTERVIEW';
    position: absolute;
    top: 0%;
    right: 0%;
    transform: translateY(-50%);
    font-size: 100px;
    font-weight: 900;
    color: rgb(2 120 199 / 11%);;
    letter-spacing: 0.2em;
    z-index: 1;
    pointer-events: none;
font-family: math;
}

.kmt-interview-section{
    position: relative;
}

.kmts-ceo-section{
    position: relative;
}


/* インタビューセクション全体 */
.kmt-interview-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 20px;
}

/* ヘッダー部分 */
.kmt-interview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.kmt-interview-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kmt-interview-title::before {
    content: "🏥";
    font-size: 20px;
}

/* ナビゲーション */
.kmt-interview-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kmt-nav-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

.kmt-nav-arrow:hover {
    background: #f5f5f5;
    border-color: #999;
}

.kmt-nav-indicator {
    font-size: 14px;
    color: #666;
    margin: 0 8px;
}

/* スライダー */
.kmt-interview-slider {
    overflow: hidden;
}

.kmt-interview-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* カードアイテム */
.kmt-interview-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kmt-interview-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.kmt-interview-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* 画像部分 */
.kmt-interview-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.kmt-interview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kmt-interview-item:hover .kmt-interview-image img {
    transform: scale(1.05);
}

/* オーバーレイ */
.kmt-interview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kmt-interview-item:hover .kmt-interview-overlay {
    opacity: 1;
}


/* コンテンツ部分 */
.kmt-interview-content {
    padding: 20px;
}

.kmt-interview-date {
    color: #1b3d7c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.kmt-interview-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s ease;
}

.kmt-interview-item:hover .kmt-interview-item-title {
    color: #2563eb;
}

/* 投稿なしの場合 */
.kmt-no-interviews {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
    grid-column: 1 / -1;
}

/* タブレット表示 */
@media (max-width: 768px) {
    .kmt-interview-section {
        padding: 20px 16px;
    }
    
    .kmt-interview-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .kmt-interview-title {
        font-size: 20px;
    }
    
    .kmt-interview-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .kmt-interview-content {
        padding: 16px;
    }
    
    .kmt-interview-image {
        height: 180px;
    }
}

/* デスクトップ表示 */
@media (min-width: 1024px) {
    .kmt-interview-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 大画面表示 */
@media (min-width: 1200px) {
    .kmt-interview-section {
        padding: 60px 20px;
    }
    
    .kmt-interview-title {
        font-size: 28px;
    }
}


/* スライダー用のスタイル追加 */
.kmt-interview-slider {
    overflow: hidden;
    position: relative;
}

.kmt-interview-list {
    display: flex !important; /* gridからflexに変更 */
    gap: 20px;
    transition: transform 0.3s ease;
}

.kmt-interview-item {
    flex: 0 0 calc(33.333% - 14px); /* 3件表示用 */
    max-width: calc(33.333% - 14px);
}

/* レスポンシブ対応 */
@media (max-width: 1023px) {
    .kmt-interview-item {
        flex: 0 0 calc(50% - 10px); /* タブレット: 2件 */
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 767px) {
    .kmt-interview-item {
        flex: 0 0 100%; /* モバイル: 1件 */
        max-width: 100%;
    }
}

/* ボタンの無効状態 */
.kmt-nav-arrow:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed;
}




.kmts-ceo-section{
    position: relative;
    padding-top: 200px;
}

.kmt-recruit-hero-section{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    left: 0;
    right: 0;
}

    .kmt-recruit-hero-section {
            display: flex;
            align-items: center;
            background: #ffffff;
            overflow: hidden;
        }

        .kmt-recruit-hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .kmt-recruit-text-content {
            padding: 40px 0;
        }

        .kmt-recruit-text-content h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 300;
            color: #333;
            margin-bottom: 30px;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .kmt-recruit-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #666;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .kmt-recruit-description {
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #555;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .kmt-recruit-cta-button {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
            position: relative;
            overflow: hidden;
        }

        .kmt-recruit-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .kmt-recruit-cta-button:hover::before {
            left: 100%;
        }

        .kmt-recruit-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
        }

        .kmt-recruit-cta-button::after {
            content: '→';
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .kmt-recruit-cta-button:hover::after {
            transform: translateX(5px);
        }

        .kmt-recruit-image-content {
            position: relative;
        }

        .kmt-recruit-main-image {
            width: 100%;
            height: 500px;
            background: #e0e0e0;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .kmt-recruit-main-image:hover {
            transform: translateY(-5px);
        }

        .kmt-recruit-decorative-element {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
            border-radius: 50%;
            opacity: 0.1;
            animation: kmt-recruit-float 6s ease-in-out infinite;
        }

        .kmt-recruit-decorative-element:nth-child(2) {
            top: 10%;
            right: -20px;
            animation-delay: -2s;
        }

        .kmt-recruit-decorative-element:nth-child(3) {
            bottom: 20%;
            left: -30px;
            width: 60px;
            height: 60px;
            animation-delay: -4s;
        }

        @keyframes kmt-recruit-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .kmt-recruit-side-text {
            position: absolute;
            left: -60px;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            font-size: 0.9rem;
            color: #999;
            letter-spacing: 3px;
            white-space: nowrap;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .kmt-recruit-hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
                padding: 20px;
            }

            .kmt-recruit-text-content {
                order: 2;
                padding: 20px 0;
            }

            .kmt-recruit-image-content {
                order: 1;
            }

            .kmt-recruit-main-image {
                height: 300px;
                margin: 0 auto;
            }

            .kmt-recruit-side-text {
                display: none;
            }

            .kmt-recruit-decorative-element {
                display: none;
            }

            .kmt-recruit-cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .kmt-recruit-hero-section {
                min-height: auto;
                padding: 40px 0;
            }

            .kmt-recruit-hero-content {
                gap: 30px;
                padding: 15px;
            }

            .kmt-recruit-main-image {
                height: 250px;
            }

            .kmt-recruit-description {
                margin-bottom: 30px;
            }
        }

        /* 画面の大きなデバイス用 */
        @media (min-width: 1400px) {
            .kmt-recruit-hero-content {
                max-width: 1400px;
                gap: 80px;
            }

            .kmt-recruit-main-image {
                height: 600px;
            }
        }





.kmt-recruit-hero-section {
    background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/08/kmt-office-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kmt-recruit-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.kmt-recruit-hero-content {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.kmt-recruit-text-content h2,
.kmt-recruit-subtitle,
.kmt-recruit-description {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.kmt-recruit-text-content h2{
	color:white!important;
	font-size:30px;
	margin:0px!important;
}


   .kmt-voice-section {
            position: relative;
            padding: 200px 0;
            background: #f5f7fa;
            overflow: hidden;
        }

        .kmt-voice-background-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .kmt-voice-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        .kmt-voice-title {
            font-size: 3rem;
            font-weight: bold;
            color: #333;
            letter-spacing: 8px;
            margin-bottom: 10px;
        }

        .kmt-voice-subtitle {
            font-size: 1.1rem;
            color: #4a90e2;
            font-weight: 500;
        }

        .kmt-voice-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .kmt-voice-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .kmt-voice-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .kmt-voice-category {
            position: absolute;
            top: -10px;
            left: 30px;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            color: white;
        }

        .kmt-voice-category-continuing {
            background: #f1c40f;
        }

        .kmt-voice-category-new {
            background: #4a90e2;
        }

        .kmt-voice-category-opening {
            background: #2ecc71;
        }

        .kmt-voice-profile {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            margin-top: 20px;
        }

        .kmt-voice-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .kmt-voice-avatar svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .kmt-voice-info {
            flex: 1;
        }

        .kmt-voice-specialty {
            font-size: 1.3rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }


        .kmt-voice-content {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
        }

        .kmt-voice-more-button {
            display: block;
            width: 400px;
            max-width: 100%;
            margin: 0 auto;
            background: #4a90e2;
            color: white;
            text-decoration: none;
            padding: 20px 40px;
            border-radius: 50px;
            text-align: center;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .kmt-voice-more-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .kmt-voice-more-button:hover::before {
            left: 100%;
        }

        .kmt-voice-more-button:hover {
            background: #357abd;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
        }

        .kmt-voice-more-button::after {
            content: '→';
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .kmt-voice-more-button:hover::after {
            transform: translateX(5px);
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .kmt-voice-section {
                padding: 60px 0;
            }

            .kmt-voice-container {
                padding: 0 15px;
            }

            .kmt-voice-title {
                font-size: 2.2rem;
                letter-spacing: 4px;
            }

            .kmt-voice-subtitle {
                font-size: 1rem;
            }

            .kmt-voice-header {
                margin-bottom: 40px;
            }

            .kmt-voice-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-bottom: 40px;
            }

            .kmt-voice-card {
                padding: 25px;
            }

            .kmt-voice-profile {
                flex-direction: column;
                align-items: flex-start;
            }

            .kmt-voice-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .kmt-voice-specialty {
                font-size: 1.1rem;
            }

            .kmt-voice-content {
                font-size: 0.9rem;
            }

            .kmt-voice-more-button {
                width: 100%;
                padding: 18px 30px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .kmt-voice-section {
                padding: 40px 0;
            }

            .kmt-voice-title {
                font-size: 1.8rem;
                letter-spacing: 2px;
            }

            .kmt-voice-card {
                padding: 20px;
            }

            .kmt-voice-category {
                left: 20px;
                padding: 6px 15px;
                font-size: 0.8rem;
            }

            .kmt-voice-avatar {
                width: 50px;
                height: 50px;
            }

            .kmt-voice-avatar svg {
                width: 25px;
                height: 25px;
            }

            .kmt-voice-specialty {
                font-size: 1rem;
            }
        }

        /* 大画面対応 */
        @media (min-width: 1400px) {
            .kmt-voice-container {
                max-width: 1400px;
            }

            .kmt-voice-grid {
                gap: 40px;
            }

            .kmt-voice-card {
                padding: 40px;
            }
        }


.kmt-voice-section{
         width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    left: 0;
    right: 0;
}



.kmt-voice-section{
    position: relative;
}



     .kmt-features-section {
            padding: 200px 0;
        }

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

        .kmt-features-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .kmt-features-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .kmt-features-subtitle {
            font-size: 1.1rem;
            color: #4a90e2;
            font-weight: 500;
        }

        .kmt-features-main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: flex-start;
            margin-bottom: 80px;
        }

        .kmt-features-main-text {
            padding-right: 20px;
        }

        .kmt-features-main-title {
            font-size: 2rem;
            font-weight: bold;
            color: #333;
            line-height: 1.4;
            margin-bottom: 30px;
        }

        .kmt-features-highlight {
            background: linear-gradient(transparent 60%, #fbb71c 60%);
            padding: 2px 0;
			font-weight:bold;
        }

        .kmt-features-main-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.8;
        }

        .kmt-features-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .kmt-features-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .kmt-features-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .kmt-features-card-number {
            position: absolute;
            top: -25px;
            left: 30px;
            width: 80px;
            height: 80px;
            background: #4a90e2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        }

        .kmt-features-card-number-main {
            font-size: 2rem;
            line-height: 1;
        }

        .kmt-features-card-number-sub {
            font-size: 0.7rem;
            margin-top: -5px;
        }

        .kmt-features-card-image {
            width: 100%;
            height: 200px;
            background: #f5f5f5;
            border-radius: 15px;
            margin: 20px 0 30px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .kmt-features-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .kmt-features-card-subtitle {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 10px;
        }

        .kmt-features-card-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #4a90e2;
            margin-bottom: 20px;
        }

        .kmt-features-card-description {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .kmt-features-section {
                padding: 60px 0;
            }

            .kmt-features-container {
                padding: 0 15px;
            }

            .kmt-features-title {
                font-size: 2rem;
            }

            .kmt-features-subtitle {
                font-size: 1rem;
            }

            .kmt-features-header {
                margin-bottom: 60px;
            }

            .kmt-features-main-content {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 60px;
            }

            .kmt-features-main-text {
                padding-right: 0;
                text-align: center;
            }

            .kmt-features-main-title {
                font-size: 1.6rem;
                margin-bottom: 25px;
            }

            .kmt-features-main-description {
                font-size: 0.95rem;
            }

            .kmt-features-cards {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .kmt-features-card {
                padding: 35px 25px;
            }

            .kmt-features-card-number {
                width: 70px;
                height: 70px;
                left: 25px;
                top: -20px;
            }

            .kmt-features-card-number-main {
                font-size: 1.8rem;
            }

            .kmt-features-card-image {
                height: 180px;
                margin: 15px 0 25px 0;
            }

            .kmt-features-card-title {
                font-size: 1.2rem;
            }

            .kmt-features-card-description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .kmt-features-section {
                padding: 40px 0;
            }

            .kmt-features-title {
                font-size: 1.8rem;
            }

            .kmt-features-main-title {
                font-size: 1.4rem;
            }

            .kmt-features-card {
                padding: 30px 20px;
            }

            .kmt-features-card-number {
                width: 60px;
                height: 60px;
                left: 20px;
                top: -15px;
            }

            .kmt-features-card-number-main {
                font-size: 1.5rem;
            }

            .kmt-features-card-number-sub {
                font-size: 0.6rem;
            }

            .kmt-features-card-image {
                height: 150px;
            }

            .kmt-features-card-title {
                font-size: 1.1rem;
            }

            .kmt-features-card-description {
                font-size: 0.85rem;
            }
        }

        /* 大画面対応 */
        @media (min-width: 1400px) {
            .kmt-features-container {
                max-width: 1400px;
            }

            .kmt-features-main-content {
                gap: 80px;
            }

            .kmt-features-cards {
                gap: 80px;
            }

            .kmt-features-card {
                padding: 50px 40px;
            }

            .kmt-features-card-image {
                height: 220px;
            }
        }





.kmt-features-section{
    position: relative;
}



/* スマホサイズ（768px以下）でスマホ専用画像に切り替え */
@media (max-width: 768px) {
    .main-visual {
        background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/08/kanazawa-tensyoku-spmv.png');
        background-position: center center;
    }
}

/* より小さなスマホサイズでの微調整（必要に応じて） */
@media (max-width: 480px) {
    .main-visual {
        background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/08/kanazawa-tensyoku-spmv.png');
        background-position: center center;
    }
}



        .kmt-hero-container {
            position: relative;
            height: 800px;
            overflow: hidden;
        }
        
        .kmt-background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/07/kanazawa-tensyoku-mv.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .kmt-content-wrapper {
            position: relative;
            z-index: 2;
			            padding-top: 60px;
						            padding-bottom: 60px;
									            padding-right: 40px;
												            padding-left: 200px;
            max-width: 60%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .kmt-main-heading {
            font-size: 3rem!important;
            font-weight: 700;
            color: #2c5282;
            line-height: 1.3;
            margin-bottom: 20px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        
        .kmt-highlight-phrase {
            color: #2c5282;
            display: inline-block;
        }
        
        .kmt-description-text {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        .kmt-company-brand {
            font-weight: 600;
            color: #2d3748;
        }
        
        /* Decorative floating elements */
        .kmt-decoration-circle-1 {
            position: absolute;
            top: 20px;
            right: 20%;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #4299e1, #63b3ed);
            border-radius: 50%;
            opacity: 0.1;
            animation: kmt-float-animation 3s ease-in-out infinite;
        }
        
        .kmt-decoration-circle-2 {
            position: absolute;
            bottom: 30px;
            right: 15%;
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #38a169, #68d391);
            border-radius: 50%;
            opacity: 0.1;
            animation: kmt-float-animation 4s ease-in-out infinite reverse;
        }
        
        @keyframes kmt-float-animation {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        /* Mobile responsive design */
        @media (max-width: 768px) {
            .kmt-hero-container {
                height: auto;
                min-height: 400px;
            }
            
            .kmt-background-image {
                background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/08/kanazawa-tensyoku-spmv.png');
            }
            
            .kmt-content-wrapper {
                max-width: 100%;
                padding: 40px 20px;
            }
            
            .kmt-main-heading {
                font-size: 1.8rem;
            }
            
            .kmt-description-text {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .kmt-main-heading {
                font-size: 1.5rem;
            }
            
            .kmt-content-wrapper {
                padding-top: 30px 15px;
            }
        }



.kmt-main-heading {
    position: relative;
}


.kmt-description-text {
    position: relative;
}

.kmt-description-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: 100%;
    opacity: 0.9;
}



.kmt-main-heading span {
    background-color: white;
    padding: 10px;
}

.kmt-description-text span {
    background-color: white;
    padding: 10px;
}



@media (max-width: 768px) {
    .kmt-main-heading {
        font-size: 20px!important;
    }
    
    .kmt-main-heading span,
    .kmt-description-text span {
        padding: 2px!important;
    }
	
	.kmt-content-wrapper{
		        padding-top: 200px!important;
	}
}



.kmt-features-section::before {
    content: 'FEATURE';
    position: absolute;
    top: 10%;
    right: 0%;
    transform: translateY(-50%);
    font-size: 100px;
    font-weight: 900;
    color: rgb(2 120 199 / 11%);;
    letter-spacing: 0.2em;
    z-index: 1;
    pointer-events: none;
font-family: math;
}

.ninkikiji::before {
    content: 'PICK UP';!important
}


.kmt-news-container::before {
    content: 'COLUMN';
    position: absolute;
    top: 10%;
    right: 0%;
    transform: translateY(-50%);
    font-size: 100px;
    font-weight: 900;
    color: rgb(2 120 199 / 11%);;
    letter-spacing: 0.2em;
    z-index: 1;
    pointer-events: none;
font-family: math;
}


.kmts-ceo-section::before {
    content: 'MESSAGE';
    position: absolute;
    top: 10%;
    right: 0%;
    transform: translateY(-50%);
    font-size: 100px;
    font-weight: 900;
    color: rgb(2 120 199 / 11%);;
    letter-spacing: 0.2em;
    z-index: 1;
    pointer-events: none;
font-family: math;
}

.kmts-ceo-section::before {
    content: 'MESSAGE';
    position: absolute;
    top: 10%;
    right: 0%;
    transform: translateY(-50%);
    font-size: 100px;
    font-weight: 900;
    color: rgb(2 120 199 / 11%);;
    letter-spacing: 0.2em;
    z-index: 1;
    pointer-events: none;
font-family: math;
}

.kmt-voice-section::before {
    content: 'VOICE';
    position: absolute;
    top: 10%;
    right: 15%;
    transform: translateY(-50%);
    font-size: 100px;
    font-weight: 900;
    color: rgb(2 120 199 / 11%);;
    letter-spacing: 0.2em;
    z-index: 100;
	opacity: 0.7;
    pointer-events: none;
font-family: math;
}



@media screen and (max-width: 768px) {
    .kmt-features-section::before,
    .kmt-news-container::before,
    .kmts-ceo-section::before,
    .kmt-slider-container::before {
        top: 0%;
        font-size: 50px;
    }

    
    .kmt-voice-section::before {
        top: 5%;
        font-size: 50px;
    }
	
    .kmt-interview-section::before {
        top: 20%;
        font-size: 50px;
    }

    .kmts-ceo-section::before {
        top: 20%;
    }

}



.kmt-voice-section,
.kmt-interview-section{
    padding-top: 190px;
}



/* ロゴ画像のレスポンシブ設定 */
.c-headLogo__img {
    width: 200px;
}

@media screen and (max-width: 768px) {
    .c-headLogo__img {
        width: 150px;
    }
}



/* 追加1: .kmt-slides-track にflexプロパティを追加 */
.kmt-slides-track {
    flex-wrap: wrap;
    gap: 20px;
}

/* 追加2: .kmt-slide-card に初期非表示を追加 */
.kmt-slide-card {
    display: none;
}

/* 追加3: PC表示時の2枚並び設定 */
@media (min-width: 769px) {
    .kmt-slide-card {
        flex: 0 0 calc(50% - 10px);
    }
}

/* 追加4: モバイル表示時の1枚設定 */
@media (max-width: 768px) {
    .kmt-slides-track {
        gap: 0;
    }
    
    .kmt-slide-card {
        flex: 0 0 100%;
    }
}


/* PC時の横並び修正 */
@media (min-width: 769px) {
    .kmt-slides-track {
        flex-wrap: nowrap; /* 横並びを強制 */
    }
    
    .kmt-slide-card {
        flex: 0 0 calc(40% - 10px);
        max-width: calc(40% - 10px); /* 幅を確実に制限 */
    }
}

.kmt-slides-track{
	display:flex;
}



.kmt-card-content h3 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}



.kmt-voice-avatar {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kmt-voice-avatar img {
    opacity: 0;
}

/* 各アバターの背景画像 */
.avatar-1 {
    background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/08/kmt-voice-men-1.png');
}

.avatar-2 {
    background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/08/kmt-voice-weman-1.png');
}

.avatar-3 {
    background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/08/kmt-voice-weman-2.png');
}

.avatar-4 {
    background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/08/kmt-voice-men-2.png');
}


.card-1 {
    background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/08/kmt-business-1-img.png');
}

.card-2 {
    background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/08/kmt-business-2-img.png');
}

.card-3 {
    background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/08/kmt-business-3-img.png');
}

.card-4 {
    background-image: url('https://kanazawa-tensyoku.co.jp/wp-content/uploads/2025/08/kmt-business-4-img.png');
}

/* 共通のバックグラウンド設定 */
.card-1, .card-2, .card-3, .card-4 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 既存の画像を透明にする場合 */
.card-1 img, .card-2 img, .card-3 img, .card-4 img {
    opacity: 0;
}



.kmt-card-number {
    background-color: black;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.kmt-card-subtitle, .kmt-card-title {
   color: white!important;
}



@media screen and (max-width: 768px) {
  .news-item {
    display: block !important;
  }
	.news-text{
font-size: 15px;
}
}




.u-color__red {
    color: #c11b26;
    font-weight: bold;
}

.u-color__black {
    font-weight: bold;
}

.marker_red{
background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFDEDE));	
}


        .kt-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 16px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .kt-table-wrapper {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(59, 130, 246, 0.1);
            overflow: hidden;
            position: relative;
        }

        .kt-table-scroll {
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: #3b82f6 #f1f5f9;
        }

        .kt-table-scroll::-webkit-scrollbar {
            height: 8px;
        }

        .kt-table-scroll::-webkit-scrollbar-track {
            background: #f1f5f9;
        }

        .kt-table-scroll::-webkit-scrollbar-thumb {
            background: #3b82f6;
            border-radius: 4px;
        }

        .kt-table-scroll::-webkit-scrollbar-thumb:hover {
            background: #2563eb;
        }

        .kt-scroll-hint {
            position: absolute;
            top: 50%;
            right: 16px;
            transform: translateY(-50%);
            background: rgba(59, 130, 246, 0.9);
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 10;
        }

        .kt-scroll-hint.kt-show {
            opacity: 1;
        }

        .kt-scroll-hint::before {
            content: '→';
            margin-right: 4px;
        }

        .kt-table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
            background: white;
        }

        .kt-table-header {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            text-align: center;
            padding: 16px;
            font-size: 18px;
            font-weight: bold;
        }

        .kt-table th {
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            color: white;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
            width: 200px;
            min-width: 160px;
            font-size: 14px;
        }

        .kt-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #e2e8f0;
            background: white;
            font-size: 14px;
            line-height: 1.6;
        }

        .kt-table tr:hover td {
            background: #f8fafc;
        }

        .kt-table tr:last-child td {
            border-bottom: none;
        }

        .kt-link {
            color: #2563eb;
            text-decoration: underline;
            font-weight: 500;
        }

        .kt-link:hover {
            color: #1d4ed8;
        }

        .kt-circle {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: #3b82f6;
            border-radius: 50%;
            margin-right: 8px;
        }

        .kt-dash {
            color: #64748b;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .kt-container {
                padding: 0 8px;
                margin: 10px auto;
            }

            .kt-table-header {
                font-size: 16px;
                padding: 12px;
            }

            .kt-table th {
                width: 140px;
                min-width: 120px;
                padding: 10px 12px;
                font-size: 13px;
            }

            .kt-table td {
                padding: 10px 12px;
                font-size: 13px;
            }

            .kt-scroll-hint {
                right: 8px;
                font-size: 11px;
                padding: 6px 10px;
            }
        }

        @media (max-width: 480px) {
            .kt-table {
                min-width: 500px;
            }

            .kt-table th {
                width: 120px;
                min-width: 100px;
                padding: 8px 10px;
                font-size: 12px;
            }

            .kt-table td {
                padding: 8px 10px;
                font-size: 12px;
            }
        }


   .kt-comparison-container {
            max-width: 1000px;
            margin: 20px auto;
            padding: 0 16px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .kt-comparison-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .kt-comparison-box {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
        }

        .kt-merit-box {
            border-color: #e11d48;
        }

        .kt-demerit-box {
            border-color: #3b82f6;
        }

        .kt-comparison-header {
            padding: 16px 20px;
            font-weight: bold;
            font-size: 16px;
            color: white;
            display: flex;
            align-items: center;
        }

        .kt-merit-header {
            background: linear-gradient(135deg, #e11d48, #be185d);
        }

        .kt-demerit-header {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        }

        .kt-comparison-header::before {
            margin-right: 8px;
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 14px;
        }

        .kt-merit-header::before {
            content: "\f111";
        }

        .kt-demerit-header::before {
            content: "\f00d";
        }

        .kt-comparison-list {
            padding: 0;
            margin: 0;
            list-style: none;
            background: #fefefe;
        }

        .kt-merit-list {
            background: #fef7f7;
        }

        .kt-demerit-list {
            background: #f7f9ff;
        }

        .kt-comparison-item {
            display: flex;
            align-items: flex-start;
            padding: 16px 20px;
            border-bottom: 1px solid #f1f5f9;
            color: #374151;
            font-size: 14px;
            line-height: 1.6;
        }

        .kt-comparison-item:last-child {
            border-bottom: none;
        }

        .kt-comparison-item::before {
            margin-right: 10px;
            margin-top: 2px;
            font-size: 4px;
            flex-shrink: 0;
        }

        .kt-merit-item::before {
            content: "●";
            color: #e11d48;
        }

        .kt-demerit-item::before {
            content: "●";
            color: #3b82f6;
        }

        .kt-merit-item:hover {
            background: #fef2f2;
        }

        .kt-demerit-item:hover {
            background: #eff6ff;
        }

        @media (max-width: 768px) {
            .kt-comparison-container {
                padding: 0 12px;
                margin: 15px auto;
            }

            .kt-comparison-wrapper {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .kt-comparison-header {
                padding: 12px 16px;
                font-size: 15px;
            }

            .kt-comparison-item {
                padding: 14px 16px;
                font-size: 13px;
            }

            .kt-comparison-item::before {
                margin-right: 8px;
            }
        }

        @media (max-width: 480px) {
            .kt-comparison-header {
                padding: 10px 12px;
                font-size: 14px;
            }

            .kt-comparison-item {
                padding: 12px;
                font-size: 12px;
            }

            .kt-comparison-item::before {
                margin-right: 6px;
            }
        }



.kt-merit-single-container {
    max-width: 1000px; /* 単体表示用の幅に調整 */
    margin: 20px auto;
    padding: 0 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.kt-merit-single-box {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #e11d48;
}

.kt-merit-single-header {
    padding: 16px 20px;
    font-weight: bold;
    font-size: 16px;
    color: white;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e11d48, #be185d);
}

.kt-merit-single-header::before {
    content: "\f111";
    margin-right: 8px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
}

.kt-merit-single-list {
    padding: 0;
    margin: 0;
    list-style: none;
    background: #fef7f7;
}

.kt-merit-single-item {
    align-items: flex-start;
		display:flex;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
}

.kt-merit-single-item:last-child {
    border-bottom: none;
}

.kt-merit-single-item::before {
    content: "●";
    color: #e11d48;
    margin-right: 10px;
    margin-top: 2px;
    font-size: 4px;
    flex-shrink: 0;
}

.kt-merit-single-item:hover {
    background: #fef2f2;
}

@media (max-width: 768px) {
    .kt-merit-single-container {
        padding: 0 12px;
        margin: 15px auto;
    }

    .kt-merit-single-header {
        padding: 12px 16px;
        font-size: 15px;
    }

    .kt-merit-single-item {
        padding: 14px 16px;
        font-size: 13px;
    }
}


.kt-demerit-single-container {
    max-width: 1000px; /* 単体表示用の幅に調整 */
    margin: 20px auto;
    padding: 0 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.kt-demerit-single-box {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #3b82f6;
}

.kt-demerit-single-header {
    padding: 16px 20px;
    font-weight: bold;
    font-size: 16px;
    color: white;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.kt-demerit-single-header::before {
    content: "\f00d";
    margin-right: 8px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
}

.kt-demerit-single-list {
    padding: 0;
    margin: 0;
    list-style: none;
    background: #f7f9ff;
}

.kt-demerit-single-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
}

.kt-demerit-single-item:last-child {
    border-bottom: none;
}

.kt-demerit-single-item::before {
    content: "●";
    color: #3b82f6;
    margin-right: 10px;
    margin-top: 2px;
    font-size: 4px;
    flex-shrink: 0;
}

.kt-demerit-single-item:hover {
    background: #eff6ff;
}

@media (max-width: 768px) {
    .kt-demerit-single-container {
        padding: 0 12px;
        margin: 15px auto;
    }

    .kt-demerit-single-header {
        padding: 12px 16px;
        font-size: 15px;
    }

    .kt-demerit-single-item {
        padding: 14px 16px;
        font-size: 13px;
    }
}

  .kt-points-container {
            max-width: 1000px;
            margin: 20px auto;
            padding: 0 16px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .kt-points-box {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border: 2px solid #e5e7eb;
        }

        .kt-points-header {
            background: linear-gradient(135deg, #374151, #1f2937);
            color: white;
            padding: 16px 24px;
            font-weight: bold;
            font-size: 18px;
            display: flex;
            align-items: center;
        }

        .kt-points-header::before {
            content: "\f013";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-right: 12px;
            font-size: 16px;
            color: #10b981;
        }

        .kt-points-list {
            padding: 24px;
            margin: 0;
            list-style: none;
            background: #fafafa;
        }

        .kt-points-item {
            align-items: flex-start;
            margin-bottom: 16px;
            color: #374151;
            font-size: 15px;
            line-height: 1.7;
            padding: 12px 16px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .kt-points-item:last-child {
            margin-bottom: 0;
        }

        .kt-points-item::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #10b981;
            margin-right: 12px;
            margin-top: 2px;
            font-size: 14px;
            flex-shrink: 0;
        }

        .kt-points-item:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
        }

        @media (max-width: 768px) {
            .kt-points-container {
                padding: 0 12px;
                margin: 15px auto;
            }

            .kt-points-header {
                padding: 14px 20px;
                font-size: 16px;
            }

            .kt-points-header::before {
                font-size: 14px;
                margin-right: 10px;
            }

            .kt-points-list {
                padding: 20px 16px;
            }

            .kt-points-item {
                font-size: 14px;
                padding: 10px 14px;
                margin-bottom: 14px;
            }

            .kt-points-item::before {
                font-size: 13px;
                margin-right: 10px;
            }
        }

        @media (max-width: 480px) {
            .kt-points-header {
                padding: 12px 16px;
                font-size: 15px;
            }

            .kt-points-header::before {
                font-size: 13px;
                margin-right: 8px;
            }

            .kt-points-list {
                padding: 16px 12px;
            }

            .kt-points-item {
                font-size: 13px;
                padding: 8px 12px;
                margin-bottom: 12px;
            }

            .kt-points-item::before {
                font-size: 12px;
                margin-right: 8px;
            }
        }


        .kt-attention-container {
            max-width: 1000px;
            margin: 20px auto;
            padding: 0 16px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			width: 100%;
    margin: auto;
        }

        .kt-attention-box {
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            border-radius: 8px;
            padding: 0;
            box-shadow: 0 2px 12px rgba(248, 113, 113, 0.1);
            border: 1px solid #fecaca;
        }

        .kt-attention-header {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            padding: 12px 20px;
            font-weight: bold;
            font-size: 16px;
            display: flex;
            align-items: center;
            border-radius: 8px 8px 0 0;
        }

        .kt-attention-header::before {
            content: "\f071";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-right: 10px;
            font-size: 14px;
        }

        .kt-attention-list {
            padding: 20px;
            margin: 0;
            list-style: none;
        }

        .kt-attention-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 14px;
            color: #7f1d1d;
            font-size: 14px;
            line-height: 1.6;
        }

        .kt-attention-item:last-child {
            margin-bottom: 0;
        }

        .kt-attention-item::before {
            content: "・";
            margin-right: 8px;
            margin-top: 0;
            font-size: 16px;
            flex-shrink: 0;
            color: #dc2626;
            font-weight: bold;
        }

        .kt-attention-item:hover {
            color: #991b1b;
        }

        @media (max-width: 768px) {
            .kt-attention-container {
                padding: 0 12px;
                margin: 15px auto;
            }

            .kt-attention-header {
                padding: 10px 16px;
                font-size: 15px;
            }

            .kt-attention-header::before {
                font-size: 13px;
                margin-right: 8px;
            }

            .kt-attention-list {
                padding: 16px;
            }

            .kt-attention-item {
                font-size: 13px;
                margin-bottom: 12px;
            }

            .kt-attention-item::before {
                font-size: 15px;
                margin-right: 6px;
            }
        }

        @media (max-width: 480px) {
            .kt-attention-header {
                padding: 8px 12px;
                font-size: 14px;
            }

            .kt-attention-header::before {
                font-size: 12px;
                margin-right: 6px;
            }

            .kt-attention-list {
                padding: 14px 12px;
            }

            .kt-attention-item {
                font-size: 12px;
                margin-bottom: 10px;
            }

            .kt-attention-item::before {
                font-size: 14px;
                margin-right: 5px;
            }
        }


  .kt-green-container {
            max-width: 1000px;
            margin: 20px auto;
            padding: 0 16px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .kt-green-box {
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            border-radius: 8px;
            padding: 0;
            box-shadow: 0 2px 12px rgba(34, 197, 94, 0.1);
            border: 1px solid #bbf7d0;
        }

        .kt-green-header {
            background: linear-gradient(135deg, #16a34a, #15803d);
            color: white;
            padding: 12px 20px;
            font-weight: bold;
            font-size: 16px;
            display: flex;
            align-items: center;
            border-radius: 8px 8px 0 0;
        }

        .kt-green-header::before {
content: "\f0c5";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-right: 10px;
            font-size: 14px;
        }

        .kt-green-content {
            padding: 20px;
            margin: 0;
            color: #14532d;
            font-size: 14px;
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .kt-green-container {
                padding: 0 12px;
                margin: 15px auto;
            }

            .kt-green-header {
                padding: 10px 16px;
                font-size: 15px;
            }

            .kt-green-header::before {
                font-size: 13px;
                margin-right: 8px;
            }

            .kt-green-content {
                padding: 16px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .kt-green-header {
                padding: 8px 12px;
                font-size: 14px;
            }

            .kt-green-header::before {
                font-size: 12px;
                margin-right: 6px;
            }

            .kt-green-content {
                padding: 14px 12px;
                font-size: 12px;
            }
        }



      .kt-review-container {
            max-width: 1000px;
            margin: 20px auto;
            padding: 0 16px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .kt-review-wrapper {
    background: linear-gradient(135deg, #374151, #1f2937);
            border-radius: 12px;
            padding: 24px;
            position: relative;
            box-shadow: 0 4px 20px rgba(30, 58, 138, 0.2);
        }

        .kt-review-scroll {
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: #60a5fa #3b82f6;
            position: relative;
        }

        .kt-review-scroll::-webkit-scrollbar {
            height: 8px;
        }

        .kt-review-scroll::-webkit-scrollbar-track {
            background: #1e40af;
            border-radius: 4px;
        }

        .kt-review-scroll::-webkit-scrollbar-thumb {
            background: #60a5fa;
            border-radius: 4px;
        }

        .kt-review-scroll::-webkit-scrollbar-thumb:hover {
            background: #93c5fd;
        }

        .kt-scroll-hint {
            position: absolute;
            top: 50%;
            right: 24px;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            color: #1e3a8a;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 10;
        }

        .kt-scroll-hint.kt-show {
            opacity: 1;
        }

        .kt-scroll-hint::before {
            content: '→';
            margin-right: 4px;
        }

        .kt-review-grid {
            display: flex;
            gap: 20px;
            min-width: 100%;
            width: max-content;
        }

        .kt-review-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            width: 280px;
            flex-shrink: 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        }

        .kt-review-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #f3f4f6;
            margin: 0 auto 12px;
            display: block;
            object-fit: cover;
        }

        .kt-review-name {
            text-align: center;
            font-weight: bold;
            font-size: 14px;
            color: #374151;
            margin-bottom: 8px;
        }

        .kt-review-stars {
            display: flex;
            justify-content: center;
            gap: 2px;
            margin-bottom: 12px;
        }

        .kt-review-star {
            color: #f59e0b;
            font-size: 14px;
        }

        .kt-review-text {
            font-size: 13px;
            line-height: 1.5;
            color: #4b5563;
            text-align: left;
        }

        @media (max-width: 768px) {
            .kt-review-container {
                padding: 0 12px;
                margin: 15px auto;
            }

            .kt-review-wrapper {
                padding: 20px 16px;
            }

            .kt-scroll-hint {
                right: 16px;
                font-size: 11px;
                padding: 6px 10px;
            }

            .kt-review-grid {
                gap: 16px;
            }

            .kt-review-card {
                width: 250px;
                padding: 16px;
            }

            .kt-review-image {
                width: 50px;
                height: 50px;
            }

            .kt-review-name {
                font-size: 13px;
            }

            .kt-review-star {
                font-size: 13px;
            }

            .kt-review-text {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .kt-review-wrapper {
                padding: 16px 12px;
            }

            .kt-review-card {
                width: 220px;
                padding: 14px;
            }

            .kt-review-image {
                width: 45px;
                height: 45px;
            }

            .kt-review-name {
                font-size: 12px;
            }

            .kt-review-star {
                font-size: 12px;
            }

            .kt-review-text {
                font-size: 11px;
            }
        }


.kt-green-list {
    padding: 20px;
    margin: 0;
    list-style: none;
}

.kt-green-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #14532d;
    font-size: 14px;
    line-height: 1.6;
}

.kt-green-item:last-child {
    margin-bottom: 0;
}

.kt-green-item::before {
    content: "・";
    margin-right: 8px;
    margin-top: 0;
    font-size: 16px;
    flex-shrink: 0;
    color: #16a34a;
    font-weight: bold;
}

.kt-green-item:hover {
    color: #15803d;
}

@media (max-width: 768px) {
    .kt-green-list {
        padding: 16px;
    }
    
    .kt-green-item {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .kt-green-list {
        padding: 14px 12px;
    }
    
    .kt-green-item {
        font-size: 12px;
        margin-bottom: 8px;
    }
}


 .kt-hikaku-container {
            width: 100%;
            height: 600px;
            overflow: auto;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            position: relative;
        }

        .kt-hikaku-table {
            border-collapse: separate;
            border-spacing: 0;
            width: max-content;
            min-width: 100%;
        }

        .kt-hikaku-header {
            background-color: #1d4ed8;
            color: white;
            font-weight: bold;
            position: sticky;
            top: 0;
            z-index: 20;
        }

        .kt-hikaku-header th {
            padding: 12px 16px;
            border: 1px solid white;
            text-align: center;
            white-space: nowrap;
        }

        .kt-hikaku-first-col {
            background-color: white;
            color: #374151;
            font-weight: normal;
            position: sticky;
            left: 0;
            z-index: 10;
            border-right: 2px solid #d1d5db;
        }

        .kt-hikaku-first-col-header {
            position: sticky;
            left: 0;
            z-index: 30;
            background-color: #1d4ed8;
        }

        .kt-hikaku-cell {
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            text-align: center;
            vertical-align: middle;
            background-color: white;
            min-width: 120px;
        }

        .kt-hikaku-service-cell {
            text-align: center;
            min-width: 150px;
            background-color: white;
            color: #374151;
            padding: 16px 8px;
            border: 1px solid #d1d5db;
        }

        .kt-hikaku-service-logo {
            width: 60px;
            height: 40px;
            margin: 0 auto 8px auto;
            display: block;
            border: 1px solid #e5e7eb;
            border-radius: 4px;
            background-color: #f9fafb;
        }

        .kt-hikaku-service-name {
            font-size: 12px;
            font-weight: bold;
            line-height: 1.3;
            color: #374151;
        }

        .kt-hikaku-description {
            text-align: left;
            max-width: 300px;
            min-width: 250px;
            font-size: 14px;
            line-height: 1.4;
        }

        .kt-hikaku-btn-container {
            display: flex;
            flex-direction: column;
            gap: 4px;
            align-items: center;
        }

        .kt-hikaku-btn {
            padding: 6px 12px;
            border: none;
            border-radius: 4px;
            color: white;
            font-size: 12px;
            font-weight: bold;
            cursor: pointer;
            min-width: 50px;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .kt-hikaku-btn-detail {
            background-color: #22c55e;
        }

        .kt-hikaku-btn-detail:hover {
            background-color: #16a34a;
        }

        .kt-hikaku-btn-official {
            background-color: #ef4444;
        }

        .kt-hikaku-btn-official:hover {
            background-color: #dc2626;
        }

        .kt-hikaku-score {
            font-weight: bold;
            font-size: 16px;
        }

        .kt-hikaku-row:nth-child(even) .kt-hikaku-cell:not(.kt-hikaku-first-col) {
            background-color: #f9fafb;
}

/* タブレット・小さめPC（768px以下） */
@media (max-width: 768px) {
    .kt-hikaku-table {
        font-size: 14px;
    }
    
    .kt-hikaku-service-name {
        font-size: 11px;
    }
    
    .kt-hikaku-description {
        font-size: 13px;
    }
    
    .kt-hikaku-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* スマートフォン（480px以下） */
@media (max-width: 480px) {
    .kt-hikaku-table {
        font-size: 12px;
    }
    
    .kt-hikaku-service-name {
        font-size: 10px;
    }
    
    .kt-hikaku-description {
        font-size: 12px;
    }
    
    .kt-hikaku-btn {
        font-size: 10px;
        padding: 4px 8px;
        min-width: 40px;
    }
    
    .kt-hikaku-score {
        font-size: 14px;
    }
    
    .kt-hikaku-cell {
        padding: 8px 12px;
    }
    
    .kt-hikaku-service-cell {
        padding: 12px 6px;
    }
}

/* 極小スマートフォン（360px以下） */
@media (max-width: 360px) {
    .kt-hikaku-table {
        font-size: 11px;
    }
    
    .kt-hikaku-service-name {
        font-size: 9px;
    }
    
    .kt-hikaku-description {
        font-size: 11px;
    }
    
    .kt-hikaku-btn {
        font-size: 9px;
        padding: 3px 6px;
        min-width: 35px;
    }
    
    .kt-hikaku-cell {
        padding: 6px 8px;
    }
}


.kt-points-container li::marker {
    content: none!important;
}

.kt-merit-single-container li::marker {
    content: none;
}



.kt-merit-single-item::before {
    content: "●";
    color: #e11d48;
    margin-right: 10px;
    margin-top: 2px;
    font-size: 4px;
    flex-shrink: 0;
}

.kt-merit-single-item::before,
.kt-demerit-single-item::before{
	margin-top:7px!important;
}



.kt-points-container ul {
    list-style: none !important;          /* デフォルトの点を消す */
    -webkit-list-style: none !important;  /* iOS Safari 対策 */
}

.kt-points-container li {
    list-style: none !important;
    -webkit-list-style: none !important;
}

.kt-points-container li::marker {
    content: '' !important; /* マーカーは空にして非表示 */
}



        .profile-card {
            background: white;
            border: 2px solid #ddd;
            border-radius: 8px;
            padding: 25px;
            max-width: 100%;
            width: 100%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .profile-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .profile-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-right: 15px;
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        .profile-info {
            flex: 1;
        }

        .profile-title {
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
        }

        .profile-name {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin: 0;
        }

        .profile-description {
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            margin-top: 0;
        }

        .highlight {
            color: #ff6b35;
            font-weight: bold;
        }


.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    object-position: center;
    border: 2px solid #ddd;
}


.kt-points-message{
	padding:15px;
}


    .doctor-ranking-container {
            font-family: 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
            max-width: 1000px;
            margin: 0 auto;
            background-color: white;
        }

        .ranking-header {
            background: linear-gradient(135deg, #4472c4 0%, #5b9bd5 100%);
            color: white;
            text-align: center;
            padding: 15px;
            font-size: 18px;
            font-weight: bold;
            margin: 0;
        }

        /* デスクトップ版テーブル */
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            display: table;
        }

        .rank-number-cell {
            background: linear-gradient(135deg, #9fc5e8 0%, #cfe2f3 100%);
            width: 70px;
            text-align: center;
            vertical-align: middle;
            padding: 30px 15px;
            border-right: 2px solid #ffffff;
            border-bottom: 2px solid #ffffff;
        }

        .rank-number {
            font-size: 32px;
            font-weight: bold;
            color: #2c5aa0;
            display: block;
            line-height: 1;
        }

        .rank-label {
            font-size: 14px;
            color: #2c5aa0;
            margin-top: 3px;
            font-weight: bold;
        }

        .service-info-cell {
            padding: 20px;
            vertical-align: top;
            border-bottom: 2px solid #ffffff;
            background-color: #f8f9fa;
        }

        .service-content {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        .service-left {
            flex: 1;
            min-width: 300px;
        }

        .service-logo {
            font-size: 20px;
            font-weight: bold;
            color: #2c5aa0;
            margin-bottom: 10px;
        }

        .service-logo-image {
            width: 200px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 15px;
            display: block;
        }

        .service-features {
            margin-bottom: 0;
        }

        .feature-item {
            color: #2c5aa0;
            font-size: 13px;
            margin-bottom: 8px;
            position: relative;
            padding-left: 15px;
            font-weight: 500;
        }

        .feature-item::before {
            content: "■";
            color: #4472c4;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 11px;
        }

        .service-right {
            flex: 1;
            min-width: 300px;
        }

        .info-box {
            display: flex;
            margin-bottom: 0;
        }

        .info-label {
            background-color: #d6e3f0;
            color: #2c5aa0;
            padding: 8px 15px;
            font-size: 12px;
            font-weight: bold;
            border: 1px solid #b8d4ff;
            width: 150px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .info-content {
            background-color: #ffffff;
            color: #2c5aa0;
            padding: 8px 15px;
            font-size: 12px;
            font-weight: bold;
            border: 1px solid #b8d4ff;
            border-left: none;
            flex: 1;
            display: flex;
            align-items: center;
        }

        .mynavi-logo {
            color: #00a0dc;
        }

        .m3-logo {
            color: #0066cc;
        }

        /* 2位のマイナビ用 */
        .rank-2 .rank-number-cell {
            background: linear-gradient(135deg, #a8c8e8 0%, #d0e4f5 100%);
        }

        /* 3位のM3用 */
        .rank-3 .rank-number-cell {
            background: linear-gradient(135deg, #b2d0ea 0%, #d5e6f7 100%);
        }

        /* スマホ版スライダー */
        .mobile-slider-container {
            display: none;
            overflow: hidden;
            position: relative;
        }

        .mobile-slider {
            display: flex;
            transition: transform 0.3s ease;
            scroll-snap-type: x mandatory;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .mobile-slider::-webkit-scrollbar {
            display: none;
        }

.mobile-slide-sub{
            flex: 0 0 100%!important;	
}

        .mobile-slide {
            flex: 0 0 85%;
            margin-right: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            scroll-snap-align: center;
        }

        .mobile-slide:last-child {
            margin-right: 20px;
        }

        .mobile-rank-badge {
            background: linear-gradient(135deg, #9fc5e8 0%, #cfe2f3 100%);
            color: #2c5aa0;
            font-size: 16px;
            font-weight: bold;
            padding: 8px 16px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 15px;
        }

        .mobile-service-logo {
            font-size: 18px;
            font-weight: bold;
            color: #2c5aa0;
            margin-bottom: 15px;
        }

        .mobile-service-features {
            margin-bottom: 15px;
        }

        .mobile-feature-item {
            color: #2c5aa0;
            font-size: 12px;
            margin-bottom: 6px;
            position: relative;
            padding-left: 12px;
            font-weight: 500;
        }

        .mobile-feature-item::before {
            content: "■";
            color: #4472c4;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 10px;
        }

        .mobile-info-box {
            background-color: #ffffff;
            border: 1px solid #b8d4ff;
            border-radius: 4px;
            margin-bottom: 8px;
            overflow: hidden;
        }

        .mobile-info-label {
            background-color: #d6e3f0;
            color: #2c5aa0;
            padding: 6px 12px;
            font-size: 11px;
            font-weight: bold;
            width: 140px;
            text-align: center;
            flex-shrink: 0;
        }

        .mobile-info-content {
            background-color: #ffffff;
            color: #2c5aa0;
            padding: 6px 12px;
            font-size: 11px;
            font-weight: bold;
        }

        .mobile-cta-button {
            background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
            color: white;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: bold;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 12px;
            display: block;
            text-decoration: none;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
        }

        .mobile-cta-button:hover {
            background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
        }

        /* スクロールヒント */
        .scroll-hint {
            display: none;
            text-align: center;
            padding: 10px;
            color: #666;
            font-size: 12px;
            background: linear-gradient(90deg, transparent 0%, rgba(68, 114, 196, 0.1) 50%, transparent 100%);
        }

        .scroll-hint::after {
            content: "← スワイプして他のサービスを見る →";
            animation: fadeInOut 2s infinite;
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .ranking-table {
                display: none;
            }
            
            .mobile-slider-container {
                display: block;
            }
            
            .scroll-hint {
                display: block;
            }
            
            .ranking-header {
                font-size: 16px;
                padding: 12px;
            }
            
            .doctor-ranking-container {
                margin: 0;
                max-width: 100%;
            }
        }

        /* 2位と3位のバッジスタイル */
        .rank-2 .mobile-rank-badge {
            background: linear-gradient(135deg, #a8c8e8 0%, #d0e4f5 100%);
        }

        .rank-3 .mobile-rank-badge {
            background: linear-gradient(135deg, #b2d0ea 0%, #d5e6f7 100%);
        }


        .cta-button {
            background: linear-gradient(135deg, #28a745 0%, #34ce57 50%, #28a745 100%);
            color: white;
            padding: 10px 25px;
            font-size: 16px;
            font-weight: bold;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 12px;
            display: inline-block;
            text-decoration: none;
            text-align: center;
            width: 250px;
            position: relative;
            transition: all 0.2s ease;
            
            /* 立体感を作る影 */
            box-shadow: 
                0 4px 8px rgba(40, 167, 69, 0.3),
                0 2px 4px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            
            /* 上部のハイライト効果 */
            background-image: 
                linear-gradient(135deg, #28a745 0%, #34ce57 50%, #28a745 100%),
                linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, transparent 50%);
            
            /* 文字に軽い影をつける */
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            
            /* わずかな変形で立体感を演出 */
            transform: translateY(0px);
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #218838 0%, #2fb344 50%, #218838 100%);
            box-shadow: 
                0 6px 12px rgba(40, 167, 69, 0.4),
                0 3px 6px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            
            transform: translateY(-2px);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .cta-button:active {
            background: linear-gradient(135deg, #1e7e34 0%, #28a745 50%, #1e7e34 100%);
            box-shadow: 
                0 2px 4px rgba(40, 167, 69, 0.2),
                0 1px 2px rgba(0, 0, 0, 0.1),
                inset 0 2px 4px rgba(0, 0, 0, 0.1);
            
            transform: translateY(1px);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
        }



        .cta-button-orange {
            background: linear-gradient(135deg, #fd7e14 0%, #ff9500 50%, #fd7e14 100%);
            color: white;
            padding: 10px 25px;
            font-size: 16px;
            font-weight: bold;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 12px;
            display: inline-block;
            text-decoration: none;
            text-align: center;
            width: 250px;
            position: relative;
            transition: all 0.2s ease;
            
            /* 立体感を作る影 */
            box-shadow: 
                0 4px 8px rgba(253, 126, 20, 0.3),
                0 2px 4px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            
            /* 上部のハイライト効果 */
            background-image: 
                linear-gradient(135deg, #fd7e14 0%, #ff9500 50%, #fd7e14 100%),
                linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, transparent 50%);
            
            /* 文字に軽い影をつける */
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            
            /* わずかな変形で立体感を演出 */
            transform: translateY(0px);
        }

        .cta-button-orange:hover {
            background: linear-gradient(135deg, #e8690a 0%, #e8690a 50%, #e8690a 100%);
            box-shadow: 
                0 6px 12px rgba(253, 126, 20, 0.4),
                0 3px 6px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            
            transform: translateY(-2px);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .cta-button-orange:active {
            background: linear-gradient(135deg, #d85704 0%, #fd7e14 50%, #d85704 100%);
            box-shadow: 
                0 2px 4px rgba(253, 126, 20, 0.2),
                0 1px 2px rgba(0, 0, 0, 0.1),
                inset 0 2px 4px rgba(0, 0, 0, 0.1);
            
            transform: translateY(1px);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
        }


        .mobile-cta-button-orange {
            background: linear-gradient(135deg, #fd7e14 0%, #ff9500 50%, #fd7e14 100%);
            color: white;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: bold;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 12px;
            display: block;
            text-decoration: none;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
            position: relative;
            transition: all 0.2s ease;
            
            /* 立体感を作る影 */
            box-shadow: 
                0 3px 6px rgba(253, 126, 20, 0.3),
                0 1px 3px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            
            /* 上部のハイライト効果 */
            background-image: 
                linear-gradient(135deg, #fd7e14 0%, #ff9500 50%, #fd7e14 100%),
                linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, transparent 50%);
            
            /* 文字に軽い影をつける */
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            
            /* わずかな変形で立体感を演出 */
            transform: translateY(0px);
        }




/* 横スクロール機能のためのCSS */
.kmt_table_wrapper {
  overflow-x: auto;
  width: 100%;
}

.kmt_table {
  min-width: 800px;
  width: 100%;
}

        /* 基本スタイル */
        .kmt_merged_table_wrapper {
            position: relative;
            overflow-x: auto;
            width: 100%;
            max-width: 100%;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .kmt_merged_table {
            min-width: 1200px;
            width: 100%;
            border-collapse: collapse;
            font-size: 12px;
            background: white;
        }

        /* 一列目固定のスタイル */
        .kmt_merged_table th:first-child,
        .kmt_merged_table td:first-child {
            position: sticky;
            left: 0;
            z-index: 10;
            background: white;
            border-right: 2px solid #ddd;
            min-width: 120px;
        }

        .kmt_merged_table thead th:first-child {
            z-index: 11;
            background: #f8f9fa;
        }

        /* ヘッダースタイル */
        .kmt_merged_table thead th {
            background: #5393e7!important;
            color: white!important;
            font-weight: bold;
            padding: 12px 8px;
            text-align: center;
            border: 1px solid #ddd;
            white-space: nowrap;
            position: sticky;
            top: 0;
            z-index: 5;
        }

        /* セルスタイル */
        .kmt_merged_table td {
            padding: 10px 8px;
            text-align: center;
            border: 1px solid #ddd;
            vertical-align: middle;
            line-height: 1.4;
        }

        /* 取引所名のスタイル */
        .kmt_merged_table td:first-child {
            text-align: center!important;
            font-weight: bold;
            background: #fff;
			
        }

        .kmt_merged_table td:first-child img {
            display: block;
            margin: 0 auto 5px auto;
            max-width: 60px;
            height: auto;
        }

        /* 偶数行の背景色 */
        .kmt_merged_table tbody tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .kmt_merged_table tbody tr:nth-child(even) td:first-child {
            background-color: #f9f9f9;
        }

        /* 星評価のスタイル */
        .star-rating {
            color: #ffd700;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .star-rating .empty {
            color: #ddd;
        }

        /* スコアのスタイル */
        .score-high {
            color: #28a745;
            font-weight: bold;
        }

        .score-medium {
            color: #ffc107;
            font-weight: bold;
        }

        .score-low {
            color: #dc3545;
            font-weight: bold;
        }

        /* ボーナス金額のスタイル */
        .bonus-amount {
            color: #007bff;
            font-weight: bold;
        }

        /* レバレッジのスタイル */
        .leverage-high {
            color: #dc3545;
            font-weight: bold;
        }

        .leverage-medium {
            color: #ffc107;
            font-weight: bold;
        }

        /* 日本語対応のスタイル */
        .jp-support {
            color: #28a745;
            font-weight: bold;
        }

        .jp-not-support {
            color: #dc3545;
            font-weight: bold;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .kmt_merged_table {
                min-width: 1000px;
                font-size: 11px;
            }
            
            .kmt_merged_table th,
            .kmt_merged_table td {
                padding: 8px 6px;
            }
        }






/* 海外仮想通貨取引所比較表専用CSS（独自クラス） */

/* スライド機能付きテーブルラッパー */
.kmt_merged_table_wrapper {
    position: relative;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* メインテーブル */
.kmt_merged_table {
    min-width: 1200px;
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    background: white;
}

/* 一列目固定スタイル */
.kmt_merged_table th:first-child,
.kmt_merged_table td:first-child {
    position: sticky;
    left: 0;
    z-index: 10;
    background: white;
    border-right: 2px solid #ddd;
    min-width: 120px;
}

.kmt_merged_table thead th:first-child {
    z-index: 11;
    background: #f8f9fa;
}

/* ヘッダースタイル */
.kmt_merged_table thead th {
    background: #f8f9fa;
    color: #333;
    font-weight: bold;
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #ddd;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 5;
}

/* セルスタイル */
.kmt_merged_table td {
    padding: 10px 8px;
    text-align: center;
    border: 1px solid #ddd;
    vertical-align: middle;
    line-height: 1.4;
}

/* 取引所名のスタイル */
.kmt_merged_table td:first-child {
    text-align: left;
    font-weight: bold;
    background: #fff;
}

.kmt_merged_table td:first-child img {
    display: block;
    margin: 0 auto 5px auto;
    max-width: 60px;
    height: auto;
}

/* 偶数行の背景色 */
.kmt_merged_table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.kmt_merged_table tbody tr:nth-child(even) td:first-child {
    background-color: #f9f9f9;
}

/* 星評価のスタイル */
.star-rating {
    color: #ffd700;
    font-size: 14px;
    letter-spacing: 1px;
}

.star-rating .empty {
    color: #ddd;
}

/* スコアのスタイル */
.score-high {
    color: #28a745;
    font-weight: bold;
}

.score-medium {
    color: #ffc107;
    font-weight: bold;
}

.score-low {
    color: #dc3545;
    font-weight: bold;
}

/* ボーナス金額のスタイル */
.bonus-amount {
    color: #007bff;
    font-weight: bold;
}

/* レバレッジのスタイル */
.leverage-high {
    color: #dc3545;
    font-weight: bold;
}

.leverage-medium {
    color: #ffc107;
    font-weight: bold;
}

/* 日本語対応のスタイル */
.jp-support {
    color: #28a745;
    font-weight: bold;
}

.jp-not-support {
    color: #dc3545;
    font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .kmt_merged_table {
        min-width: 1000px;
        font-size: 11px;
    }
    
    .kmt_merged_table th,
    .kmt_merged_table td {
        padding: 8px 6px;
    }
}

.red{
	color: #b22222;
    font-weight: 500;
}



.cap_box .cap_box_content ul.-list-under-dashed.is-style-check_list {
  list-style: none;
  padding-left: 0;
}

.cap_box .cap_box_content ul.-list-under-dashed.is-style-check_list li::marker {
  display: none;
}

.cap_box .cap_box_content ul.-list-under-dashed.is-style-check_list li::before {
  margin-right: 0.4em; /* ← チェックとテキストの余白 */
}



.strong{
	font-weight:bold;
}



    /* ロゴサイズ統一 */
    .agent-logo {
      height: 60px;
      width: auto;
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }




.kt-points-contains{
	padding:15px;
}