@charset "UTF-8";

/* ---- 労災防止トレーニング講座 ここから---- */


body:has(.antoku-rousai-lp) {
    overflow-x: clip;
}

/* メインコンテンツエリア (.wrap) */
main.antoku-rousai-lp {
    max-width: 1220px; 
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    overflow: visible !important;
}

html:has(.antoku-rousai-lp) {
    scroll-behavior: smooth; 
    scroll-padding-top: 80px; 
}

/* ヘッダー全体のレイアウト (PC) */
.antoku-rousai-lp header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #e5e5e5;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
}
.antoku-rousai-lp header main.antoku-rousai-lp,
.antoku-rousai-lp header .header-inner,
.antoku-rousai-lp .header-wrapper {
    max-width: 1800px !important; 
    margin: 0 auto;
    padding: 0 20px; 
}
.antoku-rousai-lp header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: max(60px, calc(50vw - 900px));
    padding-right: max(60px, calc(50vw - 900px));
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    width: 100%;
    gap: 16px;
}

/* ロゴ */
.antoku-rousai-lp header nav > a:first-child {
    flex-shrink: 0;
    text-decoration: none;
}
.antoku-rousai-lp header h1 {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.antoku-rousai-lp header h1 img {
    height: 20px; 
    width: auto;
}

/* ヘッダー ナビゲーションメニュー */
.antoku-rousai-lp header ul {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.antoku-rousai-lp header ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.antoku-rousai-lp header ul li a:hover {
    color: #C61A22;
}

/* ヘッダー お申し込みはこちらボタン */
.antoku-rousai-lp header ul li.nav-item-cta {
    margin-left: 8px;
}
.antoku-rousai-lp .header-cta {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #e44248 0%, #c4262c 100%);
    padding: 6px 16px 8px !important;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.antoku-rousai-lp .header-cta:hover {
    opacity: 0.85;
    color: inherit;
}

.antoku-rousai-lp .cta-badge {
    background-color: #ffffff;
    color: #C61A22;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 4px;
    white-space: nowrap;
}

.antoku-rousai-lp .cta-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.antoku-rousai-lp .hamburger {
    display: none;
}

/* ヘッダー レスポンシブ */
@media screen and (max-width: 1100px) {
    .antoku-rousai-lp header nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        padding-left: max(16px, calc(50vw - 900px));
        padding-right: max(16px, calc(50vw - 900px));
    }
    
    .antoku-rousai-lp header nav > a:first-child {
        flex-shrink: 0;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .antoku-rousai-lp header h1 img {
        height: 20px;
    }

    .antoku-rousai-lp .hamburger {
        display: block;
        position: relative;
        width: 28px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 100;
    }

    .antoku-rousai-lp .hamburger span {
        position: absolute;
        left: 0;
        width: 100%; 
        height: 3px;
        background-color: #C61A22;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .antoku-rousai-lp .hamburger span:nth-child(1) { top: 0; }
    .antoku-rousai-lp .hamburger span:nth-child(2) { top: 10px; }
    .antoku-rousai-lp .hamburger span:nth-child(3) { bottom: 0; }

    .antoku-rousai-lp .hamburger.is-active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .antoku-rousai-lp .hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }
    .antoku-rousai-lp .hamburger.is-active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    .antoku-rousai-lp header ul {
        position: absolute;
        top: 100%; 
        right: 0;
        max-width: 250px;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        gap: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 99;
        align-items: flex-start;
        padding: 20px 16px 30px;
    }
    
    .antoku-rousai-lp header ul.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .antoku-rousai-lp header ul li.nav-item-cta {
        margin-left: 0;
        margin-top: 10px;
    }

    .antoku-rousai-lp .cta-text {
        font-size: 13px;
    }
}

/* ファーストビュー (Hero) ベース設定 */
.antoku-rousai-lp .fv {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
    padding-left: max(60px, calc(50vw - 900px));
    padding-right: max(60px, calc(50vw - 900px));
    padding-top: 60px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #C61A22 0%, #F26767 100%);
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    display: grid;
    grid-template-columns: 50% 49%;
    justify-content: space-between;
    align-items: center;
    row-gap: 20px;
    position: relative;
    z-index: 1;
}

.antoku-rousai-lp .fv-top-row { 
    display: contents; 
}

.antoku-rousai-lp .fv-content {
    grid-column: 1;
    grid-row: 1;
    container-type: inline-size;
}

.antoku-rousai-lp .fv-image {
    grid-column: 2;
    grid-row: 1;
}
.antoku-rousai-lp .fv-image img {
    width: 100%;
    height: auto;
    display: block;
}

.antoku-rousai-lp .fv-catch {
    display: flex;
    align-items: baseline;
    font-size: 3.5cqw;
    font-weight: bold;
    margin: 0 0 0.6em;
    color: #ffffff;
    border-bottom: 1px solid #ffea00;
}
.antoku-rousai-lp .fv-catch::before {
    content: "\e834";
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 1.2em;
    height: 1.2em;
    font-size: 1.2em;
    padding: 1px 0 12px;
    font-family: "Material Symbols Outlined";
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.antoku-rousai-lp .fv-catch span{
    font-size: 1.2em;
}
.antoku-rousai-lp .fv-main-title {
    font-weight: 900;
    line-height: 0.9;
    margin:24px 0px;
    font-size: 12.5cqw;
    text-align-last: left;
}

.antoku-rousai-lp .fv-title-top {
    display: block;
}

.antoku-rousai-lp .fv-title-top::after {
    content: "×";
    display: block;
    font-size: 32px;
    margin-left: 48%;
    margin-top: 10px;
}

.antoku-rousai-lp .fv-small {
    font-size: 5cqw;
}
.antoku-rousai-lp .fv-subtitle {
    display: inline-block;
    background: #ffffff;
    color: #C61A22;
    font-size: 7.9cqw;
    padding: 0.5em 0.5em 0.6em;
    border-radius: 4px;
    margin-top: 30px;
}

.antoku-rousai-lp .fv-desc {
    font-size: 3cqw;
    line-height: 1.6;
    color: #ffffff;
}

.antoku-rousai-lp .btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    min-height: 70px;
}
.antoku-rousai-lp .btn-wrapper br {
    display: none; 
}

.antoku-rousai-lp .btn-cta, 
.antoku-rousai-lp .btn-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.6cqw;
    padding: 12px 16px;
    transition: transform 0.2s, opacity 0.2s;
    width: 48.5%;
}
.antoku-rousai-lp .btn-cta:hover, 
.antoku-rousai-lp .btn-sub:hover {
    opacity: 0.9;
    transform: translateY(2px);
}
.antoku-rousai-lp .btn-cta {
    background: linear-gradient(180deg, #E84D4D 0%, #C61A22 100%);
    color: #ffffff;
    border: 1px solid #ffffff;
}
.antoku-rousai-lp .btn-cta img {
    width: 22px;
    height: auto;
    margin-left: 10px; 
    flex-shrink: 0;
}
.antoku-rousai-lp .btn-sub {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid transparent;
}
.antoku-rousai-lp .btn-sub img {
    width: 28px;
    height: auto;
    margin-right: 10px; 
    flex-shrink: 0;
}

.antoku-rousai-lp .fv-info-text {
    background: #FFF9E5;
    color: #000000;
    padding: 17px 24px;
    border-radius: 80px;
    font-weight: bold;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.antoku-rousai-lp .fv-info-top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15cqw;
}

.antoku-rousai-lp .fv-info-top > img {
    width: 24px;
    height: auto;
    flex-shrink: 0;
}

.antoku-rousai-lp .fv-info-bottom {
    color: #C61A22; 
    font-size: 1.4cqw; 
}

.antoku-rousai-lp .fv-price {
    position: relative;
    grid-column: 1 / span 2;
    grid-row: 3;
    background: #FFEC1B;
    border-radius: 4px;
    padding: 20px 30px;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 93%;
}

.antoku-rousai-lp .fv-price::before,
.antoku-rousai-lp .fv-price::after {
    content: '';
    position: absolute;
    z-index: -1; 
    top: 15px; 
    bottom: -15px; 
    width: 55px; 
    background: #ebc60c;
}

.antoku-rousai-lp .fv-price::before {
    left: -40px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 15px 50%);
}

.antoku-rousai-lp .fv-price::after {
    right: -40px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 50%, 100% 100%, 0 100%);
}

.antoku-rousai-lp .price-badge {
    flex-shrink: 0;
    background: #C61A22;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3cqw;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 0;
    white-space: nowrap;
}

.antoku-rousai-lp .price-badge::before,
.antoku-rousai-lp .price-badge::after {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: -15px;
    width: 0;
    height: 0;
    border-style: solid;
}
.antoku-rousai-lp .price-badge::before {
    left: 0;
    border-width: 15px 0 0 15px;
    border-color: #977e1c transparent transparent transparent; 
}
.antoku-rousai-lp .price-badge::after {
    right: 0;
    border-width: 15px 15px 0 0;
    border-color: #977e1c transparent transparent transparent; 
}

.antoku-rousai-lp .price-main {
    flex: 1;
    font-weight: bold;
    font-size: 1.4cqw;
    line-height: 1.5;
    margin: 0;
}
.antoku-rousai-lp .price-highlight {
    color: #C61A22;
}
.antoku-rousai-lp .price-highlight .text-big {
    font-size: 2cqw;
}
.antoku-rousai-lp .price-note {
    flex-shrink: 0; 
    font-size: 0.9cqw;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

/* スマートフォン向けレスポンシブ (FV) */
@media screen and (max-width: 1340px) {
    .antoku-rousai-lp .fv-info-bottom .text-big { 
        font-size: 2.2cqw;
    }
    .antoku-rousai-lp .fv-info-text {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .antoku-rousai-lp .fv-info-top { 
        font-size: 1.6cqw; 
    }
    .antoku-rousai-lp .fv-info-bottom { 
        font-size: 2.2cqw; 
    }
    .antoku-rousai-lp .btn-cta, .antoku-rousai-lp .btn-sub {
        width: 100%;
    }
}

/* スマートフォン向けレスポンシブ (FV) */
@media screen and (max-width: 991px) {
    .antoku-rousai-lp .fv {  
        padding: 20px 24px 60px; 
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 12px;
    }
    
    .antoku-rousai-lp .fv-image {
        grid-column: 1; 
        grid-row: 1; 
        margin: 0 auto;
        max-width: 500px;
    }
    .antoku-rousai-lp .fv-content { 
        grid-column: 1; 
        grid-row: 2; 
        text-align: center; 
    }
    .antoku-rousai-lp .btn-wrapper { 
        flex-direction: column; 
        gap: 8px; 
    }
    .antoku-rousai-lp .btn-cta, 
    .antoku-rousai-lp .btn-sub { 
        width: 100%; 
        padding: 2.8cqw 20px;
    }
    .antoku-rousai-lp .btn-wrapper a { 
        width: 100%; 
        box-sizing: border-box; 
        font-size: 2.9cqw;
        margin: 0 auto;
        max-width: 850px;
    }
    .antoku-rousai-lp .fv-info-text { 
        grid-column: 1; 
        grid-row: 4; 
        width: 100%; 
        text-align: center;
        justify-content: center;
        margin: 0 auto;
        max-width: 850px;
        flex-direction: column;
        gap: 4px;
    }
    .antoku-rousai-lp .fv-info-top { 
        font-size: 2.4cqw; 
    }
    .antoku-rousai-lp .fv-info-bottom { 
        font-size: 3.2cqw; 
    }

    .antoku-rousai-lp .fv-desc{
        margin: 0 auto;
        max-width: 850px;
    }
    .antoku-rousai-lp .fv-price { 
        grid-column: 1;
        grid-row: 5; 
        margin: 0 auto;
        max-width: 87%;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
        gap: 16px;
        flex-direction: column;
        }
    
    .antoku-rousai-lp .fv-catch { 
        justify-content: center; 
        font-size: 4cqw; 
        margin: 0 auto 20px;
        max-width: 850px;
    }
    .antoku-rousai-lp .fv-main-title { 
        font-size: 10.9cqw;
        text-align-last: justify;
        margin: 0 auto 12px;
        max-width: 850px;
    }
    .antoku-rousai-lp .fv-subtitle { 
        font-size: 6.8cqw; 
        width: 100%;
        margin-top: 20px;
    }
    .antoku-rousai-lp .fv-title-top::after { 
        margin-left: 48%; 
        font-size: 16px;
    }
    
    .antoku-rousai-lp .price-badge { 
        grid-column: 1; 
        grid-row: 1; 
        width: fit-content; 
        margin: 0 auto; 
        font-size: 2.9cqw;
        padding: 2px 20px;
    }
    .antoku-rousai-lp .price-main { 
        grid-column: 1; 
        grid-row: 2; 
        font-size: 2.5cqw;
    }
    .antoku-rousai-lp .price-note { 
        grid-column: 1; 
        grid-row: 3; 
        font-size: 1.8cqw !important;
    }
}


/* スマートフォン向けレスポンシブ (FV) */
@media screen and (max-width: 768px) {
    .antoku-rousai-lp .btn-wrapper a {
        font-size: 3.9cqw;
    }
    .antoku-rousai-lp .fv-info-top {
        font-size: 3.4cqw;
    }
    .antoku-rousai-lp .fv-info-bottom {
        font-size: 4.4cqw;
    }
    .antoku-rousai-lp .price-main {
        font-size: 14px;
    }
    .antoku-rousai-lp .price-highlight .text-big {
        font-size: 18px;
    }
    .antoku-rousai-lp .price-note {
        font-size: 12px !important;
    }
}


/* YouTube動画のレスポンシブコンテナ */
.antoku-rousai-lp .youtube-container {
    width: 90%;
    max-width: 800px; 
    margin: 90px auto;
    aspect-ratio: 16 / 9; 
    background: #000;
    padding: 24px;
    border-radius: 8px;
}

.antoku-rousai-lp .youtube-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* スマートフォン向けレスポンシブ (YouTube) */
@media screen and (max-width: 991px) {
    .antoku-rousai-lp .youtube-container {
        width: 100%;
        margin: 60px auto;
        padding: 16px;
    }
}

/* CTAコンテナ全体のスタイル */
.antoku-rousai-lp .cta-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #C61A22;
    border-radius: 16px;
    padding: 40px 110px;
    max-width: 1220px;
    margin: 0 auto 90px;
    box-sizing: border-box;
}

.antoku-rousai-lp .cta-box > img {
    flex-shrink: 0;
    width: 280px;
    height: auto;
    display: block;
}

.antoku-rousai-lp .cta-box > div {
    text-align: center;
    flex: 1;
}

.antoku-rousai-lp .cta-box > div > p {
    color: #ffffff;
    font-size: 26px;
    font-weight: bold;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.antoku-rousai-lp .cta-box > div > a {
    display: block;
    background-color: #fff8e1;
    color: #C61A22;
    font-size: 32px;
    font-weight: bold;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 8px;
}

.antoku-rousai-lp .cta-box > div > a:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #e6dcc6;
    opacity: 0.9;
}


/* スマートフォン向けのレスポンシブ対応 (CTA) */
@media (max-width: 991px) {
    .antoku-rousai-lp .cta-box {
        padding: 40px 16px;
        margin-bottom: 60px;
    }
    .antoku-rousai-lp .cta-box > div > p{
        font-size: 19px;
    }
}
/* スマートフォン向けのレスポンシブ対応 (CTA) */
@media (max-width: 768px) {
  .antoku-rousai-lp .cta-box {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
  }
  
  .antoku-rousai-lp .cta-box > img {
        width: 80%; 
  }
  
  .antoku-rousai-lp .cta-box > div > a {
        font-size: 18px;
  }
}

/* セクションタイトル (h2) */
.antoku-rousai-lp .section-title {
    position: relative;
    display: block; 
    text-align: center; 
    margin-bottom: 1.7em;
    font-size: 48px;
}

.antoku-rousai-lp .section-title::before {
    content: '';
    position: absolute;
    bottom: -30px;
    display: inline-block;
    width: 150px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #C61A22;
}

/* スマートフォン向けレスポンシブ (セクションタイトル) */
@media screen and (max-width: 991px) {
    .antoku-rousai-lp .section-title {
        font-size: 26px;
        margin-bottom: 1.9em;
    }
    .antoku-rousai-lp .section-title::before{
        width: 100px;
        bottom: -26px;
    }
}


/* お悩みセクション (.trouble) */
.antoku-rousai-lp .trouble {
    position: relative;
    z-index: 1;
    padding: 90px 0; 
}

.antoku-rousai-lp .trouble::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #F1FCFF;
    z-index: -1;
}

.antoku-rousai-lp .trouble .section-title::before {
    background-color: #005bac;
    width: 80px;
}

.antoku-rousai-lp .trouble ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 880px;
    margin: 0 auto 50px;
    padding: 0;
    list-style: none;
}

.antoku-rousai-lp .trouble ul li {
    display: flex;
    align-items: center;
    border: 2px solid #005bac;
    border-radius: 50px; 
    padding: 10px 20px;
    background-color: transparent;
    background: #ffffff;
    justify-content: center;
}

.antoku-rousai-lp .trouble ul li img {
    width: 20px;
    height: auto;
    margin-right: 15px;
    flex-shrink: 0;
}

.antoku-rousai-lp .trouble ul li p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #000000;
}

.antoku-rousai-lp .trouble > div {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.antoku-rousai-lp .trouble > div img {
    width: 100%;
    height: auto;
    display: block;
}

.antoku-rousai-lp .trouble-solution {
    position: relative;
    padding-top: 75px; 
    margin: 40px 0 0 0;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.antoku-rousai-lp .trouble-solution::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    height: 35px;
    background: #FFEC1B;
    clip-path: polygon(0 0, 100% 0, 50% 100%); 
}

.antoku-rousai-lp .trouble-solution .text-highlight {
    background-color: #C61A22; 
    color: #ffffff;
        padding: 8px 16px;
    border-radius: 4px;
    font-size: 30px;
}

/* スマートフォン向けレスポンシブ (お悩みセクション) */
@media screen and (max-width: 991px) {
    .antoku-rousai-lp .trouble {
        padding: 50px 0;
        max-width: 750px;
        margin: 0 auto;
    }
    
    .antoku-rousai-lp .trouble ul {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .antoku-rousai-lp .trouble ul li {
        padding: 15px 20px;
        border-radius: 30px;
    }
    
    .antoku-rousai-lp .trouble-solution {
        padding-top: 50px;
        font-size: 18px;
        line-height: 1.6;
    }
    
    .antoku-rousai-lp .trouble-solution::before {
        height: 20px; 
    }
    
    .antoku-rousai-lp .trouble-solution .text-highlight {
        font-size: 20px;
        padding: 6px 16px;
    }

    .antoku-rousai-lp .trouble ul li p br {
        display: none;
    }
}

/* 背景・課題セクション (.reason) */
.antoku-rousai-lp .reason {
    position: relative;
    z-index: 1;
    color: #ffffff; 
    margin-bottom: 90px;
    padding: 90px 0;
}

.antoku-rousai-lp .reason::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(135deg, #C61A22 0%, #F26767 100%);
    z-index: -1;
}

.antoku-rousai-lp .reason .section-title {
    color: #ffffff;
    margin-bottom: 70px;
}
.antoku-rousai-lp .reason .section-title::before {
    background-color: #ffffff;
}

.antoku-rousai-lp .reason-lead {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #ffffff;
}

.antoku-rousai-lp .reason-data-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 8px;
}

.antoku-rousai-lp .reason-data-wrapper > div {
    background: #ffffff;
    color: #000000;
    border-radius: 8px;
    padding: 24px;
    flex: 1;
    text-align: center;
}

.antoku-rousai-lp .reason-data-wrapper > div h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.antoku-rousai-lp .data-number {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 24px 0;
    line-height: 1;
}
.antoku-rousai-lp .data-number .num {
    color: #C61A22;
    font-size: 100px;
    font-weight: 900;
}

.antoku-rousai-lp .data-note {
    font-size: 14px;
    margin: 0;
}

.antoku-rousai-lp .data-labels {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.antoku-rousai-lp .label-light {
    background-color: #fceceb;
    color: #C61A22;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 24px;
    border-radius: 4px;
    width: 50%;
}
.antoku-rousai-lp .label-dark {
    background-color: #C61A22;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 24px;
    border-radius: 4px;
    width: 50%;
}

.antoku-rousai-lp .data-source {
    text-align: right;
    font-size: 12px;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.antoku-rousai-lp .reason-issues-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.antoku-rousai-lp .reason-issues-wrapper > div {
    background: #ffffff;
    color: #000000;
    border-radius: 8px;
    padding: 24px;
    flex: 1;
    text-align: center;
}

.antoku-rousai-lp .reason-issues-wrapper > div img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 20px;
}

.antoku-rousai-lp .reason-issues-wrapper > div h3 {
    color: #C61A22;
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.antoku-rousai-lp .reason-issues-wrapper > div p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    margin: 0;
}

.antoku-rousai-lp .reason-conclusion-wrapper {
    position: relative; 
    text-align: center;
    padding-top: 65px; 
}

.antoku-rousai-lp .reason-conclusion-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 35px;
    background-color: #ffffff;
    clip-path: polygon(0 0, 100% 0, 50% 100%); 
}

.antoku-rousai-lp .reason-conclusion {
    display: inline-block;
    background-color: #FFF9E5; 
    color: #000000;
    font-size: 32px;
    font-weight: bold;
    padding: 20px 40px 24px;
    border-radius: 50px;
    margin: 0;
    width: 100%;
}

.antoku-rousai-lp .reason-conclusion .text-red {
    color: #C61A22;
    font-size: 36px;
}
.antoku-rousai-lp .reason-conclusion .text-marker {
    background: linear-gradient(transparent 60%, #FFEA00 60%);
}

/* スマートフォン向けレスポンシブ (.reason) */
@media screen and (max-width: 991px) {
    .antoku-rousai-lp .reason {
        padding: 50px 0;
        max-width: 750px;
        margin: 0 auto 90px;
    }
    .antoku-rousai-lp .reason-lead{
        font-size: 14px;
    }
    .antoku-rousai-lp .reason-data-wrapper {
        flex-direction: column;
    }
    
    .antoku-rousai-lp .data-number .num {
        font-size: 50px;
    }
    
    .antoku-rousai-lp .data-labels {
        flex-direction: column;
    }
    .antoku-rousai-lp .label-light, 
    .antoku-rousai-lp .label-dark {
        width: 100%;
    }
    .antoku-rousai-lp .reason-issues-wrapper {
        flex-direction: column;
    }
    .antoku-rousai-lp .reason-data-wrapper > div h2{
        font-size: 24px;
    }
    .antoku-rousai-lp .reason-issues-wrapper > div h3{
        font-size: 26px;
    }
    .antoku-rousai-lp .reason-conclusion {
        font-size: 18px;
        padding: 16px;
        line-height: 1.6;
    }
    .antoku-rousai-lp .reason-conclusion .text-red{
        font-size: 26px;
    }
}

/* サービス紹介セクション (.about) */
.antoku-rousai-lp .about {
    margin-bottom: 90px;
}

.antoku-rousai-lp .about > h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #000000;
}
.antoku-rousai-lp .about > h2 .text-red {
    color: #C61A22;
    font-size: 1.2em; 
}

.antoku-rousai-lp .about-steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 40px;
}

.antoku-rousai-lp .about-steps > div {
    flex: 1;
}

.antoku-rousai-lp .about-steps > div > h3 {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    margin: 0 0 15px 0;
}

.antoku-rousai-lp .step-num {
    background-color: #C61A22;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.antoku-rousai-lp .step-main {
    font-size: 32px;
    font-weight: bold;
    margin-right: 10px;
}

.antoku-rousai-lp .step-sub {
    font-size: 16px;
    font-weight: bold;
}

.antoku-rousai-lp .about-steps > div > div {
    position: relative; 
}
.antoku-rousai-lp .about-steps > div > div > img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ffffff;
    border-radius: 4px;
}

.antoku-rousai-lp .about-steps > div:not(:last-child) > div::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px; 
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 20px; 
    border-color: transparent transparent transparent #C61A22;
    z-index: 2;
}

.antoku-rousai-lp .about-desc {
    margin: 0 auto 50px;
}
.antoku-rousai-lp .about-desc p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
    margin: 0;
}
.antoku-rousai-lp .about-desc .text-red {
    color: #C61A22;
}

.antoku-rousai-lp .about-features {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF9E5; 
    border: 2px solid #C61A22; 
    border-radius: 50px;
    padding: 8px 16px;
    max-width: 800px;
    margin: 0 auto;
    gap: 40px; 
}

.antoku-rousai-lp .about-features > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.antoku-rousai-lp .about-features > div img {
    width: 30px;
    height: auto;
    flex-shrink: 0;
}

.antoku-rousai-lp .about-features > div p {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #000000;
}

/* スマートフォン向けレスポンシブ (.about) */
@media screen and (max-width: 991px) {
    .antoku-rousai-lp .about{
        max-width: 750px;
        margin: 0 auto 90px;
    }
    .antoku-rousai-lp .about > h2 {
        font-size: 18px;
        line-height: 1.6;
    }
    .antoku-rousai-lp .step-num{
        width: 35px;
        height: 35px;
    }
    .antoku-rousai-lp .about-features > div{
        gap: 8px;
        width: 100%;
    }
    .antoku-rousai-lp .about-steps {
        flex-direction: column; 
        gap: 50px;
    }
    .antoku-rousai-lp .step-main{
        font-size: 26px;
    }
    .antoku-rousai-lp .about-steps > div:not(:last-child) > div::after {
        top: auto;
        bottom: -35px; 
        right: 50%;
        transform: translateX(50%);
        border-width: 20px 15px 0 15px; 
        border-color: #C61A22 transparent transparent transparent;
    }
    
    .antoku-rousai-lp .about-features {
        flex-direction: column;
        border-radius: 20px; 
        padding: 14px;
        gap: 20px;
    }
    .antoku-rousai-lp .about-features > div p{
        font-size: 14px;
    }
}

/* 4つの特徴セクション (.features) */
.antoku-rousai-lp .features {
    position: relative;
    z-index: 1;
    padding: 90px 0;
}

.antoku-rousai-lp .features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #FCFAF2;
    z-index: -1;
}

.antoku-rousai-lp .features > h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 50px;
}

.antoku-rousai-lp .features-list {
    display: flex;
    flex-direction: column;
    gap: 30px; 
    margin-bottom: 60px;
}

.antoku-rousai-lp .features-list > div {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    gap: 40px;
}

.antoku-rousai-lp .features-list > div > div:first-child {
    width: 30%;
    flex-shrink: 0;
}
.antoku-rousai-lp .features-list > div > div:first-child img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.antoku-rousai-lp .features-list > div > div:last-child {
    flex: 1;
}

.antoku-rousai-lp .features-list > div > div:last-child > h3 {
    display: flex;
    align-items: center;
    margin: 0 0 20px 0;
}

.antoku-rousai-lp .feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #C61A22; 
    color: #ffffff;
    width: 60px; 
    height: 75px; 
    border-radius: 3px 3px 0 0; 
    flex-shrink: 0;
    margin-right: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 12px), 0 100%);
    padding-bottom: 8px;
    box-sizing: border-box;
}
.antoku-rousai-lp .badge-text {
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 2px;
}
.antoku-rousai-lp .badge-num {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.antoku-rousai-lp .feature-title-text {
    font-size: 30px;
    font-weight: bold;
    color: #000000;
    line-height: 1.4;
}
.antoku-rousai-lp .feature-title-text .text-red {
    color: #C61A22;
}

.antoku-rousai-lp .features-list > div > div:last-child > p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
    color: #000000;
    margin: 0;
}

.antoku-rousai-lp .features > div:last-child {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
}
.antoku-rousai-lp .features > div:last-child img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* スマートフォン向けレスポンシブ (.features) */
@media screen and (max-width: 991px) {
    .antoku-rousai-lp .features {
        max-width: 750px;
        margin: 0 auto;
    }
    .antoku-rousai-lp .features > h2 {
        font-size: 20px;
        line-height: 1.6;
    }
    
    .antoku-rousai-lp .features-list > div {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        align-items: flex-start;
    }
    
    .antoku-rousai-lp .features-list > div > div:first-child {
        width: 100%;
    }
    
    .antoku-rousai-lp .feature-title-text {
        font-size: 18px;
    }
    
    .antoku-rousai-lp .feature-badge {
        width: 50px;
        height: 65px;
        margin-right: 15px;
    }
    .antoku-rousai-lp .badge-num {
        font-size: 26px;
    }
}
.antoku-rousai-lp .use-cases{
    padding: 90px 0;
}


.antoku-rousai-lp .use-cases > h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #C61A22;
    margin-bottom: 50px;
}

.antoku-rousai-lp .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.antoku-rousai-lp .use-cases-grid > div {
    background-color: #ffffff;
    border: 1px solid #C61A22; 
    border-radius: 8px; 
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.antoku-rousai-lp .use-cases-grid > div > div {
    margin-bottom: 20px;
}
.antoku-rousai-lp .use-cases-grid > div > div img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.antoku-rousai-lp .use-cases-grid h3 {
    font-size: 20px;
    font-weight: bold;
    color: #C61A22; 
    line-height: 1.5;
    margin: 0 0 15px 0;
    min-height: 3em;
}

.antoku-rousai-lp .use-cases-grid > div > p {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.antoku-rousai-lp .use-cases > div:last-child {
    background-color: #FCE1E0; 
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.antoku-rousai-lp .use-cases > div:last-child p {
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    margin: 0;
}

.antoku-rousai-lp .use-cases > div:last-child p .text-red {
    color: #C61A22;
}

/* スマートフォン向けレスポンシブ (.use-cases) */
@media screen and (max-width: 991px) {
    .antoku-rousai-lp .use-cases {
        max-width: 750px;
        margin: 0 auto; 
    }
    
    .antoku-rousai-lp .use-cases > h2 {
        font-size: 20px;
        line-height: 1.5;
    }
    
    .antoku-rousai-lp .use-cases-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .antoku-rousai-lp .use-cases > div:last-child p {
        font-size: 18px;
        line-height: 1.6;
    }
}

@media screen and (min-width: 600px) and (max-width: 991px) {
    .antoku-rousai-lp .use-cases-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* 収録事例セクション (.contents) */
.antoku-rousai-lp .contents {
    position: relative;
    z-index: 1;
    padding: 90px 0;
    margin-bottom: 90px;
}

.antoku-rousai-lp .contents::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #f5f5f5;
    z-index: -1;
}

.antoku-rousai-lp .contents > p {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.antoku-rousai-lp .contents-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.antoku-rousai-lp .contents-wrapper > div:first-child {
    flex: 1;
}
.antoku-rousai-lp .contents-wrapper > div:first-child img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px; 
}

.antoku-rousai-lp .contents-wrapper > div:last-child {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #C61A22; 
    border-radius: 8px;
    overflow: hidden; 
}

.antoku-rousai-lp .contents-wrapper > div:last-child h2 {
    background-color: #C61A22;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 20px;
    margin: 0;
}

.antoku-rousai-lp .contents-wrapper ul {
    list-style: none;
    padding: 24px;
    margin: 0;
}
.antoku-rousai-lp .contents-wrapper ul li {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    padding-left: 1em;
}
.antoku-rousai-lp .contents-wrapper ul li:last-child {
    margin-bottom: 0;
}
.antoku-rousai-lp .contents-wrapper ul li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}

/* スマートフォン向けレスポンシブ (.contents) */
@media screen and (max-width: 991px) {
    .antoku-rousai-lp .contents {
        max-width: 750px;
        margin: 90px auto;
    }
    
    .antoku-rousai-lp .contents > p {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }
    
    .antoku-rousai-lp .contents-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .antoku-rousai-lp .contents-wrapper ul {
        padding: 20px;
    }
}

/* 受講プランセクション (.plan) */
.antoku-rousai-lp .plan {
    margin-bottom: 90px;
}

.antoku-rousai-lp .plan .text-red {
    color: #C61A22;
}

.antoku-rousai-lp .plan-table-wrapper {
    width: 100%;
    margin: 0 auto 60px;
}

.antoku-rousai-lp .plan-table-wrapper table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #C61A22;
    border-radius: 8px;
    overflow: hidden; 
    background: #ffffff;
}

.antoku-rousai-lp .plan-table-wrapper th, 
.antoku-rousai-lp .plan-table-wrapper td {
    border-bottom: 1px solid #C61A22;
    border-right: 1px solid #C61A22;
    padding: 24px 16px;
    vertical-align: middle;
    text-align: center;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
}

.antoku-rousai-lp .plan-table-wrapper tbody tr:last-child th,
.antoku-rousai-lp .plan-table-wrapper tbody tr:last-child td {
    border-bottom: none;
}
.antoku-rousai-lp .plan-table-wrapper th:last-child,
.antoku-rousai-lp .plan-table-wrapper td:last-child {
    border-right: none;
}

.antoku-rousai-lp .plan-table-wrapper thead th {
    background-color: #C61A22;
    color: #ffffff;
    font-size: 18px;
    padding: 15px 20px;
    border-right: 1px solid #ffffff;
}

.antoku-rousai-lp .plan-table-wrapper .row-highlight {
    background-color: #FFF9E5;
}

.antoku-rousai-lp .plan-table-wrapper .text-left {
    text-align: left; 
}

.antoku-rousai-lp .plan-name {
    font-size: 18px;
    display: inline-block;
}

.antoku-rousai-lp .badge-recommend {
    background-color: #C61A22;
    color: #ffffff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}

.antoku-rousai-lp .price-tax {
    font-size: 14px;
}
.antoku-rousai-lp .price-note {
    font-size: 1.0cqw;
    display: inline-block;
    margin-top: 5px;
}

.antoku-rousai-lp .plan-table-wrapper a {
    display: inline-block;
    background: #FFEC1B;
    color: #C61A22;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.antoku-rousai-lp .plan-table-wrapper a:hover {
    transform: translateY(2px);
    opacity: 0.9;
}

.antoku-rousai-lp .plan > div.bonus-box {
    position: relative;
    border: 2px solid #C61A22;
    border-radius: 60px; 
    padding: 25px 40px;
    text-align: center;
    background: #ffffff;
    margin: 0 auto 30px;
    max-width: 800px;
}

.antoku-rousai-lp .plan > div.bonus-box::after {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 22px 18px 0 18px;
    border-style: solid;
    border-color: #C61A22 transparent transparent transparent;
}

.antoku-rousai-lp .bonus-title {
    font-size: 26px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 10px 0;
}
.antoku-rousai-lp .bonus-title .text-marker {
    background: linear-gradient(transparent 60%, #FFEA00 60%); 
}

.antoku-rousai-lp .bonus-desc {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.antoku-rousai-lp .plan > div.game-image-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 20px;
    text-align: center;
}

.antoku-rousai-lp .plan > div.game-image-wrapper > img:first-child {
    width: 100%;
    height: auto;
    display: block;
}

.antoku-rousai-lp .plan > div.game-image-wrapper .badge-free {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 180px;
    height: auto;
    z-index: 10; 
}

.antoku-rousai-lp .plan > p.lang-support {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 40px;
}

.antoku-rousai-lp .sys-req-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto 30px;
    border: 1px solid #C61A22;
    border-radius: 8px;
    overflow: hidden;
}

.antoku-rousai-lp .sys-req-container > div:first-child {
    background-color: #C61A22;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    width: 100px;
    flex-shrink: 0; 
}

.antoku-rousai-lp .sys-req-container > div:last-child {
    background-color: #ffffff;
    padding: 16px;
    flex: 1;
}

.antoku-rousai-lp .sys-req-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.antoku-rousai-lp .sys-req-container ul li {
    display: flex;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
}

.antoku-rousai-lp .req-label {
    color: #888888; 
    width: 80px;
    flex-shrink: 0;
}

.antoku-rousai-lp .plan > h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    margin: 0;
}

/* スマートフォン向けレスポンシブ (.plan) */
@media(max-width: 768px){
    .antoku-rousai-lp .plan > div.game-image-wrapper .badge-free{
        right: -18px;
        width: 25%;
    }
    .antoku-rousai-lp .plan{
        max-width: 750px;
        margin: 90px auto;
    }
    .antoku-rousai-lp .plan-table-wrapper a{
        width: 100%;
        text-align: center;
    }
    .antoku-rousai-lp .plan-table-wrapper {
        margin: 0 0 50px;
        padding: 0;
        overflow-x: visible;
    }
    
    .antoku-rousai-lp .plan-table-wrapper table,
    .antoku-rousai-lp .plan-table-wrapper tbody,
    .antoku-rousai-lp .plan-table-wrapper tr,
    .antoku-rousai-lp .plan-table-wrapper th,
    .antoku-rousai-lp .plan-table-wrapper td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        
    }
    
    .antoku-rousai-lp .plan-table-wrapper table {
        min-width: auto; 
        border: 3px solid #C61A22;
    }
    
    .antoku-rousai-lp .plan-table-wrapper thead {
        display: none;
    }

    .antoku-rousai-lp .plan-table-wrapper th, .antoku-rousai-lp .plan-table-wrapper td{
        text-align: left;
    }
    .antoku-rousai-lp .plan-table-wrapper tr {
        border-bottom: 3px solid #C61A22;
    }
    .antoku-rousai-lp .plan-table-wrapper tbody tr:last-child {
        border-bottom: none;
    }
    
    .antoku-rousai-lp .plan-table-wrapper th, 
    .antoku-rousai-lp .plan-table-wrapper td {
        border-right: none;
        border-bottom: 1px dotted #cccccc;
        padding: 20px 16px;
    }
    
    .antoku-rousai-lp .plan-table-wrapper tbody tr th:last-child,
    .antoku-rousai-lp .plan-table-wrapper tbody tr td:last-child {
        border-bottom: none;
    }

    .antoku-rousai-lp .plan-table-wrapper th {
        background-color: #fbeae9;
        font-size: 20px;
    }
    
    .antoku-rousai-lp .plan-table-wrapper .row-highlight th {
        background-color: #FFF9E5;
    }

    .antoku-rousai-lp .plan-table-wrapper .text-left {
        text-align: left;
    }

    .antoku-rousai-lp .plan > div.bonus-box {
        border-radius: 20px;
        padding: 20px;
    }

    .antoku-rousai-lp .plan > div.bonus-box {
        border-radius: 20px;
        padding: 20px;
    }
    .antoku-rousai-lp .bonus-title {
        font-size: 18px;
    }
    
    .antoku-rousai-lp .sys-req-container {
        flex-direction: column;
    }
    .antoku-rousai-lp .sys-req-container > div:first-child {
        width: 100%;
        padding: 15px;
    }
    .antoku-rousai-lp .sys-req-container ul {
        grid-template-columns: 1fr; 
    }
    
    .antoku-rousai-lp .plan > h2 {
        font-size: 20px;
        line-height: 1.6;
    }
}

/* モニターの声セクション (.voice) */
.antoku-rousai-lp .voice {
    position: relative;
    z-index: 1;
    padding: 90px 0;
}

.antoku-rousai-lp .voice::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #FCFAF2;
    z-index: -1;
}

.antoku-rousai-lp .voice-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 880px;
    margin: 0 auto;
}

.antoku-rousai-lp .voice-list > div {
    display: flex;
    align-items: center;
    gap: 30px;
}

.antoku-rousai-lp .voice-list > div > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    flex-shrink: 0;
}

.antoku-rousai-lp .voice-list > div > div:first-child > div {
    width: 140px;
    height: 140px;
    margin-bottom: 10px;
}

.antoku-rousai-lp .voice-list > div > div:first-child > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.antoku-rousai-lp .voice-list > div > div:first-child > p {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin: 0;
    text-align: center;
}

.antoku-rousai-lp .voice-list > div > div:last-child {
    position: relative;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px 40px;
    flex: 1;
}

.antoku-rousai-lp .voice-list > div > div:last-child::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    border-width: 15px 15px 15px 0;
    border-style: solid;
    border-color: transparent #ffffff transparent transparent;
}

.antoku-rousai-lp .voice-list > div > div:last-child p {
    font-size: 28px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    display: inline-block;
}

.antoku-rousai-lp .voice-list > div > div:last-child p::before,
.antoku-rousai-lp .voice-list > div > div:last-child p::after {
    color: #C61A22;
    font-size: 35px;
    font-weight: 900;
    font-family: "Times New Roman", Times, serif; 
    position: absolute;
    line-height: 1;
}

.antoku-rousai-lp .voice-list > div > div:last-child p::before {
    content: "“";
    top: -10px;
    left: -30px;
}

.antoku-rousai-lp .voice-list > div > div:last-child p::after {
    content: "”";
    bottom: -20px;
    right: -30px;
}

/* スマートフォン向けレスポンシブ (.voice) */
@media screen and (max-width: 991px) {
    .antoku-rousai-lp .voice {
        padding: 50px 0;
        max-width: 750px;
        margin: 0 auto;
    }
    
    .antoku-rousai-lp .voice-list > div {
        flex-direction: column;
        gap: 20px;
        max-width: 430px;
        margin: 0 auto;
    }
    
    .antoku-rousai-lp .voice-list > div > div:first-child {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .antoku-rousai-lp .voice-list > div > div:first-child > div {
        margin-bottom: 0;
        width: 70px;
        height: 70px;
    }
    
    .antoku-rousai-lp .voice-list > div > div:last-child {
        padding: 25px 30px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* スマホ時は吹き出しの三角形を「上向き」に変更 */
    .antoku-rousai-lp .voice-list > div > div:last-child::before {
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 0 15px 15px 15px;
        border-color: transparent transparent #ffffff transparent;
    }
    
    .antoku-rousai-lp .voice-list > div > div:last-child p {
        font-size: 16px;
        display: block; 
    }
    
    .antoku-rousai-lp .voice-list > div > div:last-child p::before {
        left: -20px;
    }
    
    .antoku-rousai-lp .voice-list > div > div:last-child p::after {
        right: -10px;
        bottom: -15px;
    }
}

/* よくあるご質問(FAQ)・注記の共通背景 */
.antoku-rousai-lp .faq, 
.antoku-rousai-lp .notes {
    position: relative;
    z-index: 1;
}

.antoku-rousai-lp .faq::before, 
.antoku-rousai-lp .notes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #FBEAE9;
    z-index: -1;
}

.antoku-rousai-lp .faq {
    padding: 90px 0 40px;
}

.antoku-rousai-lp .faq-white-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 90px 60px;
    margin: 0 auto;
}

.antoku-rousai-lp .faq-white-box > div {
    display: flex;
    flex-direction: column;
    gap: 40px; 
}

.antoku-rousai-lp .faq-white-box details {
    border-bottom: none; 
}

.antoku-rousai-lp .faq-white-box details summary {
    font-size: 26px;
    font-weight: bold;
    color: #C61A22; 
    cursor: pointer;
    list-style: none; 
    position: relative;
    display: flex;
    align-items: flex-start;
}
.antoku-rousai-lp .faq-white-box details summary::-webkit-details-marker {
    display: none;
}
.antoku-rousai-lp .faq-white-box details summary::before {
    content: "Q. ";
    color: #C61A22;
    font-size: 26px; 
    font-weight: bold;
    margin-right: 10px;
    line-height: 1.2;
}

.antoku-rousai-lp .faq-white-box details > div {
    padding-top: 15px;
}
.antoku-rousai-lp .faq-white-box details > div p {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    line-height: 1.8;
    margin: 0;
}

.antoku-rousai-lp .notes {
    padding: 0 0 80px; 
}

.antoku-rousai-lp .notes-inner {
    margin: 0 auto;
}

.antoku-rousai-lp .notes-inner h2 {
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    text-align: left; 
}

.antoku-rousai-lp .notes-inner ul {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.antoku-rousai-lp .notes-inner ul li {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 1em;
    text-indent: -1em;
}

/* スマートフォン向けレスポンシブ (.faq) */
@media screen and (max-width: 991px) {
    .antoku-rousai-lp .faq {
        padding: 50px 0 20px;
        max-width: 750px;
        margin: 0 auto;
    }
    
    .antoku-rousai-lp .faq-white-box {
        padding: 40px 20px;
    }
    
    .antoku-rousai-lp .faq-white-box > div {
        gap: 30px;
    }
    
    .antoku-rousai-lp .faq-white-box details summary {
        font-size: 18px;
    }
    .antoku-rousai-lp .faq-white-box details summary::before {
        font-size: 22px;
    }
    
    .antoku-rousai-lp .faq-white-box details > div p {
        font-size: 13px;
    }
    
    .antoku-rousai-lp .notes {
        padding: 20px 0 50px;
        max-width: 750px;
        margin: 0 auto;
    }
    
    .antoku-rousai-lp .notes-inner {
        padding: 0 10px;
    }
    
    .antoku-rousai-lp .notes-inner h2 {
        font-size: 20px;
    }
    
    .antoku-rousai-lp .notes-inner ul li {
        font-size: 12px;
    }
}

/* フッター (.footer) */
.antoku-rousai-lp .footer {
    position: relative; 
    z-index: 1;
    padding: 50px 0;
}
.antoku-rousai-lp .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    
    background-color: #ffffff;
    border-top: 15px solid #C61A22; 
    
    z-index: -1;
}
.antoku-rousai-lp .footer-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.antoku-rousai-lp .footer-inner > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.antoku-rousai-lp .footer-inner > div:first-child > a img {
    height: 30px; 
    width: auto;
    display: block;
}

.antoku-rousai-lp .footer-inner > div:first-child > p {
    font-size: 12px;
    margin: 0;
    padding: 0;
    background: none;
    font-weight: 500;
    color: #000000;
}

.antoku-rousai-lp .footer-inner > nav {
    margin: 0;
    padding: 0;
}

.antoku-rousai-lp .footer-inner > nav > ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.antoku-rousai-lp .footer-inner > nav > ul a {
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    font-weight: bold;
    transition: opacity 0.2s;
}

.antoku-rousai-lp .footer-inner > nav > ul a:hover {
    opacity: 0.7;
    color: #e55050;
}

.antoku-rousai-lp .footer-inner > nav > ul > li.nav-cta-wrap > a {
    display: inline-block;
    background-color: #C61A22;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    transition: transform 0.2s, opacity 0.2s;
}
.antoku-rousai-lp .footer-inner > nav > ul > li.nav-cta-wrap > a:hover {
    color: #ffffff;
    opacity: 0.9;
    transform: translateY(2px);
}

/* スマートフォン向けレスポンシブ (.footer) */
@media screen and (max-width: 991px) {
    .antoku-rousai-lp .footer {
        padding: 40px 0;
    }

    .antoku-rousai-lp .footer-inner {
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }

    .antoku-rousai-lp .footer-inner > div:first-child {
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .antoku-rousai-lp .footer-inner > nav > ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 20px;
    }

    .antoku-rousai-lp .footer-inner > nav > ul > li.nav-cta-wrap {
        text-align: center;
        margin-top: 15px;
    }
    .antoku-rousai-lp .footer-inner > div:first-child > a img{
        height: 20px;
    }
}


/* ---- 労災防止トレーニング講座 ここまで---- */
