* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --fv-aqua: #ADE7E9;
    --fv-ink: #4C4C4C;
    --fv-hand: #071B49;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    line-height: 1.4;
    color: #191919;
}

/* Utility Classes */
.cnow-inquiry {
    cursor: pointer;
}

.sp-only {
    display: none;
}

@media print,
screen and (max-width: 767px) {
    .sp-only {
        display: inline;
    }
}

.pc-only {
    display: inline;
}

@media print,
screen and (max-width: 767px) {
    .pc-only {
        display: none;
    }
}

/* SP Header Styles */
.sp-header {
    display: none;
    width: 100%;
    height: 56px;
    background-color: white;
    position: relative;
    z-index: 2;
}

@media print,
screen and (max-width: 767px) {
    .sp-header {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        padding: 0 20px;
    }
}

.sp-header-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sp-header-logo {
    width: 157px;
    height: 35px;
    margin-top: 8px;
}

.sp-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sp-header-logo-text {
    border-radius: 4px;
    background: #E9E9E9;
    width: 157px;
    height: 17px;
    font-size: 12px;
    line-height: 17px;
    color: #191919;
    letter-spacing: 1.2px;
    text-align: center;
}

.sp-header-button-wrapper {
    margin-top: 8px;
}

.sp-header-button {
    background-color: #D00F00;
    padding: 16px 20px;
    border-radius: 1px;
    box-shadow: 0px 3px 0px 0px #961E1E;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: dokundokun 1300ms ease infinite;
    position: relative;
    overflow: hidden;
}

.sp-header-button::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btn_shine 4s ease-in-out infinite;
    -webkit-animation: btn_shine 4s ease-in-out infinite;
}

.sp-header-button:hover {
    transform: translateY(1px);
    box-shadow: 0px 2px 0px 0px #961E1E;
    animation: none;
}

.sp-header-button-text {
    color: white;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.32;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.sp-header-button-arrow {
    width: 14px;
    height: 14px;
    position: relative;
    z-index: 1;
}

@media print,
screen and (max-width: 767px) {
    .sp-header-button-arrow {
        margin-bottom: 6px;
    }
}

.sp-header-button-arrow img {
    width: 100%;
    height: 100%;
}

/* ボタンアニメーション（どくんどくん） */
@keyframes dokundokun {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.04);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.04);
    }

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

@keyframes btn_shine {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }

    81% {
        transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-webkit-keyframes btn_shine {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }

    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

/* Responsive line break for SP */
.sp-br {
    display: none;
}

@media print,
screen and (max-width: 767px) {
    .sp-br {
        display: block;
    }
}

/* PC only content */
.pc-only {
    display: inline;
}

@media print,
screen and (max-width: 767px) {
    .pc-only {
        display: none;
    }
}

/* FV Section Styles */
.fv-section {
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 38%, #DAF4F5 55%, var(--fv-aqua) 90%, var(--fv-aqua) 100%);
}

@media print,
screen and (max-width: 1200px) {
    .fv-section {
        justify-content: flex-start;
    }
}

@media print,
screen and (max-width: 767px) {
    .fv-section {
        height: auto;
        flex-direction: column;
        padding: 48px 0 0;
        align-items: center;
        gap: 28px;
        background: linear-gradient(180deg, #FFFFFF 0%, #DAF4F5 12%, var(--fv-aqua) 42%, var(--fv-aqua) 100%);
    }
}

.fv-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    flex-shrink: 0;
    padding-left: calc(50vw - 620px);
}

@media print,
screen and (max-width: 1200px) {
    .fv-content {
        width: 50%;
    }
}

@media print,
screen and (max-width: 767px) {
    .fv-content {
        width: 100%;
        max-width: 345px;
        gap: 32px;
        align-items: center;
    }
}

.fv-header {
    display: flex;
    row-gap: 16px;
    align-items: center;
    justify-content: space-between;
}


@media print,
screen and (max-width: 767px) {
    .fv-header {
        display: none;
    }
}

.fv-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.fv-logo {
    width: 231px;
    height: 51px;
    position: relative;
}

.fv-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fv-logo-text {
    border-radius: 4px;
    background: #E9E9E9;
    padding: 4px 0;
    width: 231px;
    height: 30px;
    text-align: center;
    font-size: 16px;
    font-family: Roboto, sans-serif;
    letter-spacing: 1.6px;
    color: #191919;
}

.fv-button {
    background-color: #D00F00;
    padding: 20px 36px;
    border-radius: 2px;
    box-shadow: 0px 4px 0px 0px #961E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: dokundokun 1300ms ease infinite;
    position: relative;
    overflow: hidden;
}

.fv-button::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btn_shine 4s ease-in-out infinite;
    -webkit-animation: btn_shine 4s ease-in-out infinite;
}

.fv-button:hover {
    transform: translateY(2px);
    box-shadow: 0px 2px 0px 0px #961E1E;
    animation: none;
}

.fv-button-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.32;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

@media print,
screen and (max-width: 980px) {
    .fv-button-text {
        font-size: 20px;
    }
}

.fv-button-arrow {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

@media print,
screen and (max-width: 980px) {
    .fv-button-arrow {
        width: 20px;
        height: 20px;
    }
}

.fv-button-arrow img {
    width: 100%;
    height: 100%;
}

.fv-main-content {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 4px;
}

@media print,
screen and (max-width: 767px) {
    .fv-main-content {
        align-items: center;
        padding: 0;
    }
}

/* FV Campaign Copy */
.fv-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

@media print,
screen and (max-width: 767px) {
    .fv-text-wrapper {
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}

.fv-eyebrow {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.45;
    letter-spacing: 0.04em;
    color: var(--fv-ink);
    margin: 0;
}

@media print,
screen and (max-width: 1140px) {
    .fv-eyebrow {
        font-size: 46px;
    }
}

@media print,
screen and (max-width: 950px) {
    .fv-eyebrow {
        font-size: 38px;
    }
}

@media print,
screen and (max-width: 767px) {
    .fv-eyebrow {
        font-size: 26px;
    }
}

.fv-main-title {
    display: inline;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 800;
    font-size: 42px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--fv-ink);
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #FFFFFF;
    text-decoration-thickness: 0.18em;
    text-underline-offset: 0.02em;
    text-decoration-skip-ink: none;
}

/* 「！」だけ直立グリフのフォントに差し替え（Shippori Mincho B1 の！は斜体デザインのため） */
.fv-main-title .fv-excl {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS Mincho", serif;
    font-weight: 600;
}

@media print,
screen and (max-width: 950px) {
    .fv-main-title {
        font-size: 32px;
    }
}

@media print,
screen and (max-width: 767px) {
    .fv-main-title {
        margin-top: 4px;
        font-size: 24px;
    }
}

.fv-handwritten {
    font-family: "Yomogi", cursive;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 0.03em;
    color: var(--fv-hand);
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .fv-handwritten {
        font-size: 17px;
        line-height: 1.6;
    }
}

.fv-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

@media print,
screen and (max-width: 767px) {
    .fv-tags {
        gap: 8px;
    }
}

.fv-tag {
    background-color: #FFFFFF;
    color: var(--fv-ink);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 12px 16px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(28, 61, 74, 0.14);
}

@media print,
screen and (max-width: 767px) {
    .fv-tag {
        font-size: 14px;
        padding: 9px 12px;
    }
}

.fv-tag-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: #FFFFFF;
}

.fv-tag-arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media print,
screen and (max-width: 767px) {
    .fv-tag-arrow {
        width: 21px;
        height: 21px;
    }
}

.fv-photo {
    position: relative;
    width: 50%;
    height: 640px;
}

@media print,
screen and (max-width: 1200px) {
    .fv-photo {
        margin-left: auto;
    }
}

@media print,
screen and (max-width: 767px) {
    .fv-photo {
        width: 100%;
        height: auto;
        margin-top: 0;
        margin-left: 0;
    }
}

.fv-photo-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

@media print,
screen and (max-width: 767px) {
    .fv-photo-inner {
        margin-left: 0;
        mask-image: none;
        -webkit-mask-image: none;
    }
}

.fv-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====================================
     CV1 Section
  ==================================== */
.cv1 {
    max-width: 1340px;
    margin: 0 auto;
    padding: 104px 0;
    background-color: #FFFFFF;
}

@media print,
screen and (max-width: 767px) {
    .cv1 {
        padding: 40px 0 64px;
    }
}

.cv1_container {
    padding: 0 20px;
}

@media print,
screen and (max-width: 767px) {
    .cv1_container {
        padding: 0 20px;
    }
}

.cv1_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

@media print,
screen and (max-width: 767px) {
    .cv1_content {
        gap: 32px;
    }
}

.cv1_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
}

@media print,
screen and (max-width: 767px) {
    .cv1_header {
        gap: 32px;
    }
}

.cv1_text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 456px;
    text-align: center;
}

@media print,
screen and (max-width: 767px) {
    .cv1_text-wrapper {
        max-width: 335px;
        gap: 0;
    }
}

.cv1_subtitle {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
    text-align: center;
}

@media print,
screen and (max-width: 767px) {
    .cv1_subtitle {
        font-size: 18px;
        margin-top: 12px;
    }
}

.cv1_title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
    display: inline-block;
    text-decoration: underline;
    text-decoration-thickness: 20px;
    text-decoration-color: #F3C82D;
    text-underline-offset: -0.15em;
    text-decoration-skip-ink: none;
}

@media print,
screen and (max-width: 767px) {
    .cv1_title {
        font-size: 22px;
        order: 1;
        text-decoration-thickness: 16px;
        text-underline-offset: -0.1em;
    }
}

.cv1_cta-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
}

@media print,
screen and (max-width: 767px) {
    .cv1_cta-wrapper {
        flex-direction: column;
        align-items: center;
        width: 295px;
    }
}

.cv1_cta-text {
    position: absolute;
    top: 0;
    left: 80px;
    width: 440px;
    height: 97px;
    z-index: 2;
}

@media print,
screen and (max-width: 767px) {
    .cv1_cta-text {
        position: relative;
        top: auto;
        left: auto;
        width: 295px;
        height: 65px;
        margin-bottom: -2px;
    }
}

.cv1_cta-text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cv1_cta-btn {
    background-color: #D00F00;
    color: #FFFFFF;
    width: 600px;
    height: 80px;
    padding: 0 40px;
    border-radius: 16px;
    box-shadow: 0px 8px 0px 0px #961E1E;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.56px;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
    margin-top: 93px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: dokundokun 1300ms ease infinite;
    overflow: hidden;
}

@media print,
screen and (max-width: 767px) {
    .cv1_cta-btn {
        width: 295px;
        height: 64px;
        padding: 0 20px;
        font-size: 18px;
        letter-spacing: 1.08px;
        gap: 16px;
        margin-top: 0;
        box-shadow: 0px 6px 0px 0px #961E1E;
    }
}

.cv1_cta-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btn_shine 4s ease-in-out infinite;
    -webkit-animation: btn_shine 4s ease-in-out infinite;
}

.cv1_cta-btn:hover {
    transform: translateY(2px);
    box-shadow: 0px 6px 0px 0px #961E1E;
    animation: none;
}

/* CTAエリアホバー時に画像とボタンのアニメーションを停止 */
.cv1_cta-wrapper:hover .cv1_cta-text,
.cv1_cta-wrapper:hover .cv1_cta-btn {
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .cv1_cta-btn:hover {
        box-shadow: 0px 4px 0px 0px #961E1E;
    }
}

.cv1_cta-btn:active {
    transform: translateY(4px);
    box-shadow: 0px 4px 0px 0px #961E1E;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .cv1_cta-btn:active {
        transform: translateY(3px);
        box-shadow: 0px 3px 0px 0px #961E1E;
    }
}

.cv1_cta-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    position: absolute;
    right: 40px;
    z-index: 1;
}

@media print,
screen and (max-width: 767px) {
    .cv1_cta-arrow {
        width: 18px;
        height: 18px;
        position: absolute;
        right: 20px;
    }
}

.cv1_cta-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cv1_cta-btn:hover .cv1_cta-arrow {
    transform: translateX(3px);
}

/* ====================================
     SEC_01 Section
  ==================================== */
.sec_01 {
    background-color: #FFF8DF;
    padding: 96px 0 104px;
}

@media print,
screen and (max-width: 767px) {
    .sec_01 {
        padding: 60px 0;
    }
}

.sec_01_container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec_01_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_content {
        gap: 40px;
    }
}

/* Header Section */
.sec_01_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_header {
        gap: 24px;
    }
}

.sec_01_title {
    text-align: center;
    position: relative;
}

.sec_01_title-line1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    color: #191919;
    margin-bottom: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_title-line1 {
        font-size: 18px;
        line-height: 1.4;
    }
}

.sec_01_title-line2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    color: #191919;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_title-line2 {
        font-size: 24px;
        line-height: 1.4;
    }
}

.sec_01_title-highlight {
    display: inline-block;
    background: linear-gradient(transparent 60%, #119CDA 60%, #119CDA 100%);
}

@media print,
screen and (max-width: 767px) {
    .sec_01_title-highlight {
        background: linear-gradient(transparent 65%, #119CDA 65%, #119CDA 100%);
    }
}

.sec_01_description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #191919;
    max-width: 744px;
    text-align: justify;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_description {
        font-size: 16px;
        max-width: 100%;
    }
}

/* Cards Section */
.sec_01_cards {
    display: flex;
    gap: 44px;
    width: 100%;
    max-width: 1140px;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cards {
        flex-direction: column;
        gap: 24px;
    }
}

.sec_01_card {
    flex: 1;
    background-color: white;
    border-radius: 12px;
    padding: 40px 42px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_card {
        padding: 24px;
        gap: 16px;
    }
}

.sec_01_card-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_card-header {
        gap: 12px;
    }
}

.sec_01_check-icon {
    width: 32px;
    height: 32px;
    background-color: #E1323C;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sec_01_card-title {
    flex: 1;
}

.sec_01_card-title p {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_card-title p {
        font-size: 18px;
    }
}

.sec_01_highlight {
    color: #E1323C;
}

.sec_01_card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sec_01_card-image {
    width: 100%;
    height: auto;
}

.sec_01_card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sec_01_card-caption {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    text-align: center;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_card-caption {
        font-size: 12px;
    }
}

/* CV2 Section */
.sec_01_cv2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
    padding-top: 24px;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cv2 {
        gap: 32px;
        padding-top: 0;
    }
}

.sec_01_cv2-text {
    text-align: center;
}

.sec_01_cv2-subtitle {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
    margin: 0 0 12px;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cv2-subtitle {
        display: none;
        /* SP時は非表示 */
    }
}

/* SP用の追加テキスト */
.sec_01_cv2-sp-text {
    display: none;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cv2-sp-text {
        display: inline;
    }
}

.sec_01_cv2-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cv2-title {
        font-size: 20px;
    }
}

.sec_01_cv2-title .sec_01_cv2-highlight {
    font-size: 44px;
    display: inline-block;
    background: linear-gradient(transparent 60%, #F3C82D 60%, #F3C82D 100%);
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cv2-title .sec_01_cv2-highlight {
        font-size: 28px;
        background: linear-gradient(transparent 65%, #F3C82D 65%, #F3C82D 100%);
        display: inline-block;
    }
}

/* スマホ時の改行用スタイル */
.sec_01_cv2-br {
    display: none;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cv2-br {
        display: inline;
    }
}

/* CTA Button */
.sec_01_cta-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cta-wrapper {
        flex-direction: column;
        align-items: center;
        width: 295px;
    }
}

.sec_01_cta-text {
    position: absolute;
    top: 0;
    left: 80px;
    width: 440px;
    height: 97px;
    z-index: 2;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cta-text {
        position: relative;
        top: auto;
        left: auto;
        width: 295px;
        height: 65px;
        margin-bottom: -2px;
    }
}

.sec_01_cta-text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sec_01_cta-btn {
    background-color: #D00F00;
    color: #FFFFFF;
    width: 600px;
    height: 80px;
    padding: 0 40px;
    border-radius: 16px;
    box-shadow: 0px 8px 0px 0px #961E1E;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.56px;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
    margin-top: 93px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: dokundokun 1300ms ease infinite;
    overflow: hidden;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cta-btn {
        width: 295px;
        height: 64px;
        padding: 0 20px;
        font-size: 18px;
        letter-spacing: 1.08px;
        gap: 16px;
        margin-top: 0;
        box-shadow: 0px 6px 0px 0px #961E1E;
    }
}

.sec_01_cta-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btn_shine 4s ease-in-out infinite;
    -webkit-animation: btn_shine 4s ease-in-out infinite;
}

.sec_01_cta-btn:hover {
    transform: translateY(2px);
    box-shadow: 0px 6px 0px 0px #961E1E;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cta-btn:hover {
        box-shadow: 0px 4px 0px 0px #961E1E;
    }
}

/* CTAエリアホバー時に画像とボタンのアニメーションを停止 */
.sec_01_cta-wrapper:hover .sec_01_cta-text,
.sec_01_cta-wrapper:hover .sec_01_cta-btn {
    animation: none;
}

.sec_01_cta-btn:active {
    transform: translateY(4px);
    box-shadow: 0px 4px 0px 0px #961E1E;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cta-btn:active {
        transform: translateY(3px);
        box-shadow: 0px 3px 0px 0px #961E1E;
    }
}

.sec_01_cta-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    position: absolute;
    right: 40px;
    z-index: 1;
}

@media print,
screen and (max-width: 767px) {
    .sec_01_cta-arrow {
        width: 18px;
        height: 18px;
        position: absolute;
        right: 20px;
    }
}

.sec_01_cta-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sec_01_cta-btn:hover .sec_01_cta-arrow {
    transform: translateX(3px);
}

/* ====================================
     SEC_02 Section
  ==================================== */
.sec_02 {
    background-color: #FFFFFF;
    padding: 72px 0 64px;
}

@media print,
screen and (max-width: 767px) {
    .sec_02 {
        padding: 40px 0;
    }
}

.sec_02_container {
    margin: 0 auto;
    padding: 0;
}

.sec_02_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_content {
        gap: 24px;
    }
}

/* Header Section */
.sec_02_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_header {
        gap: 12px;
    }
}

.sec_02_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
    margin: 0 0 8px;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_title {
        font-size: 20px;
        margin-bottom: 4px;
    }
}

/* Main Copy with Comment */
.sec_02_main-copy-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_main-copy-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

.sec_02_comment {
    position: absolute;
    top: -8px;
    right: 100px;
    width: 108px;
    height: 55px;
    z-index: 2;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_comment {
        position: relative;
        top: auto;
        right: -9%;
        width: 72px;
        height: 37px;
        margin-bottom: 2px;
    }
}

.sec_02_comment img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sec_02_main-copy {
    text-align: center;
    padding-top: 48px;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_main-copy {
        padding-top: 0;
    }
}

.sec_02_main-copy-text1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
    margin: 0 0 4px;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_main-copy-text1 {
        font-size: 20px;
        margin-bottom: 2px;
    }
}

.sec_02_main-copy-text2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
    margin: 0;
    position: relative;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_main-copy-text2 {
        font-size: 30px;
    }
}

.sec_02_main-copy-highlight {
    color: #E1323C;
    font-weight: 800;
    display: inline-block;
    background: linear-gradient(transparent 60%, #F3C82D 60%, #F3C82D 100%);
}

@media print,
screen and (max-width: 767px) {
    .sec_02_main-copy-highlight {
        background: linear-gradient(transparent 65%, #F3C82D 65%, #F3C82D 100%);
    }
}

.sec_02_main-copy-black {
    color: #191919;
}

.sec_02_note {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #191919;
    margin: 0;
}

/* PC/SP共通で ※ を擬似要素で追加 */
.sec_02_note::before {
    content: "※ ";
    display: inline;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_note {
        max-width: 332px;
        font-size: 12px;
        text-align: left;
        padding: 0 20px 0 32px;
        /* 左側に余白を追加 */
        text-indent: -12px;
        /* 最初の行だけ左にずらす */
        position: relative;
    }
}

/* Catches Section */
.sec_02_catches {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_catches {
        gap: 20px;
        padding: 12px 0;
    }
}

.sec_02_catch {
    padding: 16px 24px;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_catch {
        padding: 8px 20px;
        border-radius: 0;
    }
}

.sec_02_catch-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_catch-text {
        font-size: 15px;
    }
}

.sec_02_catch-red {
    background-color: #E1323C;
    width: 68%;
    margin-left: 0;
    text-align: center;
    border-radius: 0 4px 4px 0;
    display: flex;
    justify-content: flex-start;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_catch-red {
        width: 96%;
        margin-left: 0;
        text-align: left;
        border-radius: 0 2px 2px 0;
        display: block;
    }
}

.sec_02_catch-red .sec_02_catch-text {
    width: 470px;
    color: white;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_catch-red .sec_02_catch-text {
        width: 100%;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}

.sec_02_catch-yellow-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}



.sec_02_catch-yellow {
    background-color: #F3C82D;
    width: 63%;
    margin-left: auto;
    border-radius: 4px 0 0 4px;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_catch-yellow {
        width: 68%;
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 2px 0 0 2px;
    }
}

.sec_02_catch-yellow .sec_02_catch-text {
    width: 100%;
    text-align: left;
    color: #191919;
    padding-left: 56px
}

@media print,
screen and (max-width: 767px) {
    .sec_02_catch-yellow .sec_02_catch-text {
        text-align: left;
        padding-left: 0;
    }
}

.sec_02_catch-yellow-note {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #191919;
    margin: 0;
    width: 63%;
    padding-left: 82px;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_catch-yellow-note {
        font-size: 11px;
        margin-right: 0;
        padding-left: 0;
        width: 68%;
    }
}

.sec_02_catch-black {
    background-color: #323232;
    width: 68%;
    margin-left: 0;
    text-align: center;
    border-radius: 0 4px 4px 0;
    display: flex;
    justify-content: flex-start;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_catch-black {
        width: 96%;
        margin-left: 0;
        text-align: left;
        border-radius: 0 2px 2px 0;
        display: block;
    }
}

.sec_02_catch-black .sec_02_catch-text {
    width: 470px;
    color: white;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_catch-black .sec_02_catch-text {
        width: 100%;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Illustration */
.sec_02_illustration {
    width: 524px;
}

@media print,
screen and (max-width: 767px) {
    .sec_02_illustration {
        width: 325px;
    }
}

.sec_02_illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ====================================
     cv3 Section (CV3)
  ==================================== */
.cv3 {
    background-color: #FFFFFF;
    padding: 0 0 136px;
}

@media print,
screen and (max-width: 767px) {
    .cv3 {
        padding: 0 0 96px;
    }
}

.cv3_container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

@media print,
screen and (max-width: 767px) {
    .cv3_container {
        padding: 0;
    }
}

.cv3_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

@media print,
screen and (max-width: 767px) {
    .cv3_content {
        gap: 16px;
    }
}

/* Photo Gallery Section */
.cv3_gallery {
    position: relative;
    width: 100%;
    max-width: 1144px;
    height: 520px;
    margin: 0 auto;
}

@media print,
screen and (max-width: 1200px) {
    .cv3_gallery {
        height: 480px;
        padding: 0 20px;
    }
}

@media print,
screen and (max-width: 1000px) {
    .cv3_gallery {
        height: 440px;
    }
}

@media print,
screen and (max-width: 850px) {
    .cv3_gallery {
        height: 400px;
    }
}

@media print,
screen and (max-width: 767px) {
    .cv3_gallery {
        width: 100%;
        max-width: 100%;
        height: 520px;
        padding: 0;
        margin: 0 auto;
        position: relative;
        overflow: visible;
    }
}

.cv3_gallery-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    max-width: 864px;
    height: 280px;
    background-color: #E6E6E6;
    z-index: 1;
}

@media print,
screen and (max-width: 1000px) {
    .cv3_gallery-bg {
        width: 80%;
        height: 240px;
    }
}

@media print,
screen and (max-width: 767px) {
    .cv3_gallery-bg {
        width: 256px;
        height: 160px;
        top: auto;
        bottom: 180px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 20px;
    }
}

.cv3_photo {
    position: absolute;
    max-width: 536px;
    height: 320px;
    z-index: 2;
}

@media print,
screen and (max-width: 1144px) {
    .cv3_photo {
        width: 420px;
        height: 240px;
    }
}


@media print,
screen and (max-width: 900px) {
    .cv3_photo {
        width: calc(45% - 10px);
    }
}

@media print,
screen and (max-width: 767px) {
    .cv3_photo {
        position: absolute;
        width: 300px;
        height: 200px;
        max-width: 80%;
        overflow: visible;
    }
}

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

.cv3_photo-left {
    display: flex;
    gap: 20px;
    top: 0;
    left: 0;
}

.cv3_photo-right {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    bottom: 0;
    right: 0;
    left: auto;
    top: auto;
}

@media print,
screen and (max-width: 1200px) {
    .cv3_photo-left {
        left: 2%;
        top: 5%;
    }

    .cv3_photo-right {
        right: 2%;
        bottom: 5%;
    }
}

@media print,
screen and (max-width: 1000px) {
    .cv3_photo-left {
        left: 1.5%;
        top: 8%;
    }

    .cv3_photo-right {
        right: 1.5%;
        bottom: 8%;
    }
}

@media print,
screen and (max-width: 850px) {
    .cv3_photo-left {
        left: 1%;
        top: 10%;
    }

    .cv3_photo-right {
        right: 1%;
        bottom: 10%;
    }
}

@media print,
screen and (max-width: 767px) {
    .cv3_photo-left {
        top: 20px;
        left: 0;
        right: auto;
    }

    .cv3_photo-right {
        top: auto;
        bottom: 20px;
        right: 0;
        left: auto;
    }
}

/* Vertical Text */
.cv3_vertical-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: 0.15em;
    color: #191919;
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin: 0;
    z-index: 3;
    height: 125%;
    padding: 0 5px;
}

@media print,
screen and (max-width: 1200px) {
    .cv3_vertical-text {
        font-size: 18px;
        letter-spacing: 0.12em;
    }
}

@media print,
screen and (max-width: 1000px) {
    .cv3_vertical-text {
        font-size: 16px;
        letter-spacing: 0.1em;
    }
}

@media print,
screen and (max-width: 850px) {
    .cv3_vertical-text {
        letter-spacing: 0.08em;
        border-radius: 4px;
        padding: 5px 3px;
    }
}

@media print,
screen and (max-width: 767px) {
    .cv3_vertical-text {
        font-size: 16px;
        letter-spacing: 0.05em;
        padding: 0 2px;
        line-height: 1.3;
        position: absolute;
        z-index: 10;
    }

    .cv3_photo-left .cv3_vertical-text {
        top: -30px;
        right: -36px;
        left: auto;
        height: 145%;
        letter-spacing: 3px;
    }

    .cv3_photo-right .cv3_vertical-text {
        top: -54px;
        left: -36px;
        right: auto;
        height: 158%;
        letter-spacing: 3px;
    }
}


/* CTA Section */
.cv3_cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

@media print,
screen and (max-width: 767px) {
    .cv3_cta-wrapper {
        gap: 4px;
        padding: 32px 20px 0;
        width: 100%;
    }
}

.cv3_cta-text {
    width: 440px;
    height: 45px;
}

@media print,
screen and (max-width: 767px) {
    .cv3_cta-text {
        width: 295px;
        height: 30px;
    }
}

.cv3_cta-text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CTAエリアホバー時に画像とボタンのアニメーションを停止 */
.cv3_cta-wrapper:hover .cv3_cta-text,
.cv3_cta-wrapper:hover .cv3_cta-btn {
    animation: none;
}

.cv3_cta-btn {
    background-color: #00375F;
    color: #FFFFFF;
    width: 600px;
    height: 80px;
    padding: 0 40px;
    border-radius: 16px;
    box-shadow: 0px 8px 0px 0px #052337;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.56px;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: dokundokun 1300ms ease infinite;
    overflow: hidden;
}

@media print,
screen and (max-width: 767px) {
    .cv3_cta-btn {
        width: 295px;
        height: 64px;
        padding: 0 20px;
        font-size: 18px;
        letter-spacing: 1.08px;
        gap: 16px;
        box-shadow: 0px 6px 0px 0px #052337;
    }
}

.cv3_cta-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btn_shine 4s ease-in-out infinite;
    -webkit-animation: btn_shine 4s ease-in-out infinite;
}

.cv3_cta-btn:hover {
    transform: translateY(2px);
    box-shadow: 0px 6px 0px 0px #052337;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .cv3_cta-btn:hover {
        box-shadow: 0px 4px 0px 0px #052337;
    }
}

.cv3_cta-btn:active {
    transform: translateY(4px);
    box-shadow: 0px 4px 0px 0px #052337;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .cv3_cta-btn:active {
        transform: translateY(3px);
        box-shadow: 0px 3px 0px 0px #052337;
    }
}

.cv3_cta-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    position: absolute;
    right: 40px;
    z-index: 1;
}

@media print,
screen and (max-width: 767px) {
    .cv3_cta-arrow {
        width: 18px;
        height: 18px;
        position: absolute;
        right: 20px;
    }
}

.cv3_cta-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cv3_cta-btn:hover .cv3_cta-arrow {
    transform: translateX(3px);
}

/* ====================================
     SEC_03 Section
  ==================================== */
.sec_03 {
    background-color: #FFFFFF;
    padding: 0 0 104px;
}

@media print,
screen and (max-width: 767px) {
    .sec_03 {
        padding: 0 0 80px;
    }
}

.sec_03_container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec_03_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_content {
        gap: 16px;
    }
}

/* Header Section */
.sec_03_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_header {
        gap: 16px;
    }
}

.sec_03_title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_title {
        font-size: 28px;
    }
}

.sec_03_description {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 744px;
}

.sec_03_description-item {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_description-item {
        font-size: 16px;
    }
}

.sec_03_description-text {
    width: 626px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #191919;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_description-text {
        width: 100%;
        margin: 0 auto;
        font-size: 16px;
        text-align: left;
    }
}

/* Main Content */
.sec_03_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 88px;
    width: 100%;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_main {
        gap: 40px;
        max-width: auto;
    }
}

/* Lead Text */
.sec_03_lead {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_lead {
        font-size: 28px;
    }
}

.sec_03_lead p {
    margin: 0;
}

.sec_03_lead-highlight {
    display: inline-block;
}

.sec_03_lead-yellow-first {
    background: linear-gradient(to right, transparent 50%, #F3C82D 50%) 0 101% / 100% 40% no-repeat;
}

.sec_03_lead-yellow {
    background: linear-gradient(transparent 60%, #F3C82D 60%, #F3C82D 100%);
}

.sec_03_lead-yellow-last {
    background: linear-gradient(to right, #F3C82D 50%, transparent 50%) 0 101% / 100% 40% no-repeat;
}

.sec_03_lead-blue-first {
    background: linear-gradient(to right, transparent 50%, #119CDA 50%) 0 101% / 100% 40% no-repeat;
}

.sec_03_lead-blue {
    background: linear-gradient(transparent 60%, #119CDA 60%, #119CDA 100%);
}

.sec_03_lead-blue-last {
    background: linear-gradient(to right, #119CDA 50%, transparent 50%) 0 101% / 100% 40% no-repeat;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_lead-yellow-first {
        background: linear-gradient(to right, transparent 50%, #F3C82D 50%) 0 101% / 100% 35% no-repeat;
    }

    .sec_03_lead-yellow {
        background: linear-gradient(transparent 65%, #F3C82D 65%, #F3C82D 100%);
    }

    .sec_03_lead-yellow-last {
        background: linear-gradient(to right, #F3C82D 50%, transparent 50%) 0 101% / 100% 35% no-repeat;
    }

    .sec_03_lead-blue-first {
        background: linear-gradient(to right, transparent 50%, #119CDA 50%) 0 101% / 100% 35% no-repeat;
    }

    .sec_03_lead-blue {
        background: linear-gradient(transparent 65%, #119CDA 65%, #119CDA 100%);
    }

    .sec_03_lead-blue-last {
        background: linear-gradient(to right, #119CDA 50%, transparent 50%) 0 101% / 100% 35% no-repeat;
    }
}

/* Cards Section */
.sec_03_cards {
    display: flex;
    gap: 48px;
    width: 100%;
    max-width: 1140px;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_cards {
        flex-direction: column;
        gap: 20px;
    }
}

.sec_03_card {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.sec_03_card-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: center;
    padding: 16px 0;
    margin: 0;
    letter-spacing: 4px;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_card-title {
        font-size: 24px;
        padding: 12px 0;
        letter-spacing: 2.4px;
    }
}

.sec_03_card-yellow .sec_03_card-title {
    background-color: #F3C82D;
    color: #191919;
}

.sec_03_card-blue .sec_03_card-title {
    background-color: #119CDA;
    color: #FFFFFF;
}

.sec_03_card-content {
    background-color: #FFF8DF;
    padding: 40px 24px;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_card-content {
        padding: 24px 16px;
    }
}

.sec_03_card-blue .sec_03_card-content {
    background-color: #E8F5FF;
}

.sec_03_card-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 18px;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_card-items {
        gap: 16px;
    }
}

.sec_03_card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.sec_03_card-icon {
    width: 128px;
    height: 102px;
    display: block;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_card-icon {
        width: 88px;
        height: 70px;
    }
}

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

.sec_03_card-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
    text-align: center;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_card-text {
        font-size: 14px;
    }
}

/* CTA Section */
.sec_03_cta-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_cta-wrapper {
        flex-direction: column;
        align-items: center;
        width: 295px;
    }
}

.sec_03_cta-text {
    position: absolute;
    top: 0;
    left: 80px;
    width: 440px;
    height: 97px;
    z-index: 2;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_cta-text {
        position: relative;
        top: auto;
        left: auto;
        width: 295px;
        height: 65px;
        margin-bottom: -2px;
    }
}

.sec_03_cta-text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CTAエリアホバー時に画像とボタンのアニメーションを停止 */
.sec_03_cta-wrapper:hover .sec_03_cta-text,
.sec_03_cta-wrapper:hover .sec_03_cta-btn {
    animation: none;
}

.sp-only {
    display: none;
}

@media print,
screen and (max-width: 767px) {
    .sp-only {
        display: inline;
    }

    br.sp-only {
        display: block;
    }
}

.sec_03_cta-btn {
    background-color: #D00F00;
    color: #FFFFFF;
    width: 600px;
    height: 80px;
    padding: 0 40px;
    border-radius: 16px;
    box-shadow: 0px 8px 0px 0px #961E1E;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.56px;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
    margin-top: 93px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: dokundokun 1300ms ease infinite;
    overflow: hidden;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_cta-btn {
        width: 295px;
        height: 64px;
        padding: 0 20px;
        font-size: 18px;
        letter-spacing: 1.08px;
        gap: 16px;
        margin-top: 0;
        box-shadow: 0px 6px 0px 0px #961E1E;
    }
}

.sec_03_cta-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btn_shine 4s ease-in-out infinite;
    -webkit-animation: btn_shine 4s ease-in-out infinite;
}

.sec_03_cta-btn:hover {
    transform: translateY(2px);
    box-shadow: 0px 6px 0px 0px #961E1E;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_cta-btn:hover {
        box-shadow: 0px 4px 0px 0px #961E1E;
    }
}

.sec_03_cta-btn:active {
    transform: translateY(4px);
    box-shadow: 0px 4px 0px 0px #961E1E;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_cta-btn:active {
        transform: translateY(3px);
        box-shadow: 0px 3px 0px 0px #961E1E;
    }
}

.sec_03_cta-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    position: absolute;
    right: 40px;
    z-index: 1;
}

@media print,
screen and (max-width: 767px) {
    .sec_03_cta-arrow {
        width: 18px;
        height: 18px;
        position: absolute;
        right: 20px;
    }
}

.sec_03_cta-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sec_03_cta-btn:hover .sec_03_cta-arrow {
    transform: translateX(3px);
}

/* ====================================
     SEC_04 Section
  ==================================== */
.sec_04 {
    background-color: #FFF8DF;
    padding: 104px 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_04 {
        padding: 88px 0;
    }
}

.sec_04_container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec_04_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_content {
        gap: 40px;
    }
}

/* Header Section */
.sec_04_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_header {
        gap: 0;
    }
}

.sec_04_subtitle {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #191919;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_subtitle {
        font-size: 18px;
    }
}

.sec_04_title {
    font-size: 38px;
    font-weight: 700;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_title {
        margin-bottom: 20px;
    }
}

.sec_04_title-highlight {
    padding: 0 4px;
    display: inline;
    text-decoration: underline;
    text-decoration-thickness: 20px;
    text-decoration-color: #F3C82D;
    text-underline-offset: -0.1em;
    font-weight: 800;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_title {
        font-size: 22px;
    }

    .sec_04_title-highlight {
        text-decoration-thickness: 16px;
    }
}

.sec_04_description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #191919;
    margin: 24px 0 0 0;
    max-width: 744px;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_description {
        font-size: 14px;
        text-align: left;
        margin: 0;
    }
}

/* Comparison Section */
.sec_04_comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    width: 100%;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_comparison {
        gap: 32px;
    }
}

/* Bar Chart Image */
.sec_04_chart {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 28px;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_chart {
        padding: 16px 12px 24px;
    }
}

.sec_04_chart picture {
    width: 100%;
}

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

@media print,
screen and (max-width: 767px) {
    .sec_04_chart {
        max-width: 335px;
    }
}

/* Cost Details Card */
.sec_04_details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sec_04_details-title-wrapper {
    text-align: center;
    margin-bottom: 48px;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_details-title-wrapper {
        margin-bottom: 24px;
    }
}

.sec_04_details-title {
    font-size: 24px;
    font-weight: 700;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_details-title {
        font-size: 16px;
    }
}

.sec_04_details-title-highlight {
    font-size: 36px;
    font-weight: 800;
    padding: 0 4px;
    display: inline;
    text-decoration: underline;
    text-decoration-thickness: 20px;
    text-decoration-color: #FFD700;
    text-underline-offset: -0.1em;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_details-title-highlight {
        font-size: 20px;
        text-decoration-thickness: 16px;
    }
}

.sec_04_details-card {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    padding: 32px;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_details-card {
        max-width: 335px;
        padding: 20px 12px;
    }
}

.sec_04_details-card picture {
    width: 100%;
}

.sec_04_details-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}



.sec_04_footer-text {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #191919;
    margin-top: 16px;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_footer-text {
        font-size: 12px;
    }
}

/* CTA Wrapper */
.sec_04_cta-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-top: 52px;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_cta-wrapper {
        flex-direction: column;
        align-items: center;
        width: 295px;
        margin-top: 24px;
    }
}

.sec_04_cta-text {
    position: absolute;
    top: -72px;
    left: 80px;
    width: 440px;
    height: 97px;
    z-index: 2;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_cta-text {
        position: static;
        width: auto;
        height: auto;
    }
}

.sec_04_cta-text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sec_04_cta-wrapper:hover .sec_04_cta-text,
.sec_04_cta-wrapper:hover .sec_04_cta-btn {
    animation: none;
}

/* CTA Button */
.sec_04_cta-btn {
    background-color: #00375F;
    color: #FFFFFF;
    width: 600px;
    height: 80px;
    padding: 0 40px;
    border-radius: 16px;
    box-shadow: 0px 8px 0px 0px #052337;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.56px;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: dokundokun 1300ms ease infinite;
    overflow: hidden;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_cta-btn {
        width: 295px;
        height: 64px;
        padding: 0 20px;
        font-size: 18px;
        letter-spacing: 1.08px;
        gap: 16px;
        box-shadow: 0px 6px 0px 0px #052337;
    }
}

.sec_04_cta-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btn_shine 4s ease-in-out infinite;
    -webkit-animation: btn_shine 4s ease-in-out infinite;
}

.sec_04_cta-btn:hover {
    transform: translateY(2px);
    box-shadow: 0px 6px 0px 0px #052337;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_cta-btn:hover {
        box-shadow: 0px 4px 0px 0px #052337;
    }
}

.sec_04_cta-btn:active {
    transform: translateY(4px);
    box-shadow: 0px 4px 0px 0px #052337;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_cta-btn:active {
        transform: translateY(3px);
        box-shadow: 0px 3px 0px 0px #052337;
    }
}

.sec_04_cta-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    position: absolute;
    right: 40px;
    z-index: 1;
}

@media print,
screen and (max-width: 767px) {
    .sec_04_cta-arrow {
        width: 18px;
        height: 18px;
        position: absolute;
        right: 20px;
    }
}

.sec_04_cta-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.sec_04_cta-btn:hover .sec_04_cta-arrow {
    transform: translateX(3px);
}

/* ====================================
     SEC_05 Section (Before/After)
  ==================================== */
.sec_05 {
    background-color: #FFFFFF;
    padding: 96px 0 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_05 {
        padding: 72px 20px 0;
    }
}

.sec_05_container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_container {
        padding: 0;
        max-width: 335px;
    }
}

/* Header Section */
.sec_05_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 64px;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_header {
        gap: 20px;
        margin-bottom: 36px;
    }
}

.sec_05_subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #D9D9D9;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_subtitle {
        font-size: 26px;
        letter-spacing: -0.52px;
    }
}

.sec_05_title-wrapper {
    position: relative;
    text-align: center;
}

.sec_05_title {
    position: relative;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.sec_05_title-highlight {
    font-weight: 800;
    padding: 0 4px;
    display: inline;
    background: linear-gradient(transparent 60%, #F3C82D 60%, #F3C82D 100%);
}

@media print,
screen and (max-width: 767px) {
    .sec_05_title-highlight {
        background: linear-gradient(transparent 65%, #F3C82D 65%, #F3C82D 100%);
    }
}

.sec_05_title-text1 {
    display: block;
    font-size: 32px;
    color: #191919;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_title-text1 {
        font-size: 20px;
        letter-spacing: 0.4px;
        line-height: 1.3;
    }
}

.sec_05_title-text2 {
    display: block;
    font-size: 48px;
    color: #191919;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_title-text2 {
        font-size: 30px;
        letter-spacing: 0.6px;
        line-height: 1.3;
    }
}

.sec_05_description {
    font-size: 20px;
    font-weight: 500;
    color: #191919;
    margin: 0;
    letter-spacing: 1px;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_description {
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 0;
    }
}

/* Content Section */
.sec_05_content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_content {
        gap: 16px;
    }
}

/* Before Section */
.sec_05_before {
    position: relative;
    width: 100%;
}

.sec_05_before-photos {
    display: flex;
    gap: 30px;
    align-items: center;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_before-photos {
        gap: 5.5px;
    }
}

.sec_05_before-photo {
    width: 360px;
    height: 270px;
    overflow: hidden;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_before-photo {
        width: 108px;
        height: 81px;
    }
}

.sec_05_before-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec_05_before-label {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #8C8C8C;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    width: 88px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-bottom-right-radius: 4px;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_before-label {
        font-size: 12px;
        width: 60px;
        height: 21px;
        line-height: 21px;
        border-bottom-right-radius: 2px;
    }
}

/* Arrow */
.sec_05_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec_05_arrow svg {
    width: 64px;
    height: 32px;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_arrow svg {
        width: 48px;
        height: 24px;
    }
}

/* After Section */
.sec_05_after {
    position: relative;
    width: 100%;
}

.sec_05_after-photos {
    position: relative;
    height: 620px;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_after-photos {
        height: 349px;
    }
}

.sec_05_after-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 864px;
    height: 320px;
    background-color: #E6E6E6;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_after-bg {
        width: 296px;
        height: 160px;
        top: 94px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.sec_05_after-photo1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 400px;
    z-index: 1;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_after-photo1 {
        width: 280px;
        height: 187px;
    }
}

.sec_05_after-photo2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 400px;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_after-photo2 {
        right: 0;
        top: 162px;
        width: 280px;
        height: 187px;
    }
}

.sec_05_after-photo1 img,
.sec_05_after-photo2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec_05_after-label {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #119CDA;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    width: 88px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-bottom-right-radius: 4px;
    z-index: 2;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_after-label {
        font-size: 12px;
        width: 60px;
        height: 21px;
        line-height: 21px;
        border-bottom-right-radius: 2px;
    }
}

/* Floor Plan Section */
.sec_05_madori {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding-top: 24px;
    width: 100%;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_madori {
        gap: 12px;
        padding-top: 20px;
    }
}

.sec_05_madori-labels {
    display: flex;
    justify-content: space-between;
    width: 520px;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_madori-labels {
        width: 277px;
    }
}

.sec_05_madori-label-before,
.sec_05_madori-label-after {
    width: 112px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 2px;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

@media print,
screen and (max-width: 767px) {

    .sec_05_madori-label-before,
    .sec_05_madori-label-after {
        width: 72px;
        height: 24px;
        text-align: center;
        line-height: 24px;
        padding: 0;
        font-size: 14px;
        border-radius: 1px;
    }
}

.sec_05_madori-label-before {
    background-color: #8C8C8C;
}

.sec_05_madori-label-after {
    background-color: #119CDA;
}

.sec_05_madori-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_madori-content {
        gap: 12px;
    }
}

.sec_05_madori-before,
.sec_05_madori-after {
    width: 286px;
    height: 348px;
    background-color: #FFFFFF;
}

@media print,
screen and (max-width: 767px) {

    .sec_05_madori-before,
    .sec_05_madori-after {
        width: 132px;
        height: 161px;
    }
}

.sec_05_madori-before img,
.sec_05_madori-after img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sec_05_madori-arrow {
    width: 64px;
    height: 32px;
}

@media print,
screen and (max-width: 767px) {
    .sec_05_madori-arrow {
        width: 48px;
        height: 24px;
    }
}

.sec_05_madori-arrow svg {
    width: 100%;
    height: 100%;
}

/* ====================================
     CV06 Section
  ==================================== */
.cv06 {
    background-color: #FFFFFF;
    padding: 104px 0;
}

@media print,
screen and (max-width: 767px) {
    .cv06 {
        padding: 72px 0;
    }
}

.cv06_container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

@media print,
screen and (max-width: 767px) {
    .cv06_container {
        padding: 0;
    }
}

.cv06_content {
    display: flex;
    flex-direction: column;
    gap: 146px;
    align-items: center;
}

@media print,
screen and (max-width: 767px) {
    .cv06_content {
        gap: 32px;
    }
}

/* Header Section */
.cv06_header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}

@media print,
screen and (max-width: 767px) {
    .cv06_header {
        gap: 20px;
    }
}

.cv06_title {
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #191919;
}

/* PC用表示 */
.cv06_title-pc {
    display: block;
}

.cv06_title-sp {
    display: none;
}

@media print,
screen and (max-width: 767px) {
    .cv06_title-pc {
        display: none;
    }

    .cv06_title-sp {
        display: block;
    }
}

.cv06_title-text1 {
    display: block;
    font-size: 28px;
}

@media print,
screen and (max-width: 767px) {
    .cv06_title-text1 {
        font-size: 18px;
    }
}

.cv06_title-text2 {
    display: block;
    font-size: 28px;
}

@media print,
screen and (max-width: 767px) {
    .cv06_title-text2 {
        font-size: 18px;
    }
}

.cv06_title-highlight {
    font-size: 40px;
    font-weight: 800;
    padding: 0 4px;
    display: inline;
    background: linear-gradient(transparent 60%, #F3C82D 60%, #F3C82D 100%);
}

@media print,
screen and (max-width: 767px) {
    .cv06_title-highlight {
        font-size: 24px;
        background: linear-gradient(transparent 65%, #F3C82D 65%, #F3C82D 100%);
    }
}

.cv06_description {
    font-size: 20px;
    font-weight: 400;
    color: #191919;
    margin: 0;
    max-width: 544px;
}

@media print,
screen and (max-width: 767px) {
    .cv06_description {
        font-size: 16px;
        max-width: auto;
    }
}

/* CTA Wrapper */
.cv06_cta-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
}

@media print,
screen and (max-width: 767px) {
    .cv06_cta-wrapper {
        flex-direction: column;
        align-items: center;
        width: 295px;
    }
}

.cv06_cta-text {
    position: absolute;
    top: -94px;
    left: 80px;
    width: 440px;
    height: 97px;
    z-index: 2;
}

@media print,
screen and (max-width: 767px) {
    .cv06_cta-text {
        position: static;
        width: 295px;
        height: 65px;
        margin-bottom: -2px;
    }
}

.cv06_cta-text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cv06_cta-wrapper:hover .cv06_cta-text,
.cv06_cta-wrapper:hover .cv06_cta-btn {
    animation: none;
}

/* CTA Button */
.cv06_cta-btn {
    background-color: #D00F00;
    color: #FFFFFF;
    width: 600px;
    height: 80px;
    padding: 0 40px;
    border-radius: 16px;
    box-shadow: 0px 8px 0px 0px #961E1E;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.56px;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: dokundokun 1300ms ease infinite;
    overflow: hidden;
}

@media print,
screen and (max-width: 767px) {
    .cv06_cta-btn {
        width: 295px;
        height: 64px;
        padding: 0 20px;
        font-size: 18px;
        letter-spacing: 1.08px;
        gap: 16px;
        box-shadow: 0px 6px 0px 0px #961E1E;
    }
}

.cv06_cta-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btn_shine 4s ease-in-out infinite;
    -webkit-animation: btn_shine 4s ease-in-out infinite;
}

.cv06_cta-btn:hover {
    transform: translateY(2px);
    box-shadow: 0px 6px 0px 0px #961E1E;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .cv06_cta-btn:hover {
        box-shadow: 0px 4px 0px 0px #961E1E;
    }
}

.cv06_cta-btn:active {
    transform: translateY(4px);
    box-shadow: 0px 4px 0px 0px #961E1E;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .cv06_cta-btn:active {
        transform: translateY(3px);
        box-shadow: 0px 3px 0px 0px #961E1E;
    }
}

.cv06_cta-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    position: absolute;
    right: 40px;
    z-index: 1;
}

@media print,
screen and (max-width: 767px) {
    .cv06_cta-arrow {
        width: 18px;
        height: 18px;
        position: absolute;
        right: 20px;
    }
}

.cv06_cta-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cv06_cta-btn:hover .cv06_cta-arrow {
    transform: translateX(3px);
}

/* SP用縦書き風テキスト（写真の上に配置） */
@media print,
screen and (max-width: 767px) {
    .cv3_vertical-text-sp {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 20px;
        font-weight: 700;
        line-height: 1.5;
        color: white;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
        padding: 16px 24px;
        border-radius: 8px;
        z-index: 3;
    }
}


/* ====================================
     SEC06 Section (3つの理由)
  ==================================== */
.sec_06 {
    background-color: #DCF5FA;
    padding: 96px 0 80px;
}

@media print,
screen and (max-width: 767px) {
    .sec_06 {
        padding: 72px 20px 80px;
    }
}

.sec_06_container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_container {
        padding: 0;
        max-width: 335px;
    }
}

/* Title Section */
.sec_06_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_header {
        margin-bottom: 64px;
    }
}

.sec_06_title {
    font-size: 32px;
    font-weight: 700;
    color: #191919;
    letter-spacing: 2.56px;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_title {
        font-size: 18px;
        letter-spacing: 1.44px;
    }
}

.sec_06_title_highlight {
    background-color: #119CDA;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 1px;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_title_highlight {
        padding: 10px 8px;
        height: 52px;
        width: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
    }
}

.sec_06_title_highlight_number {
    font-size: 48px;
    font-weight: 700;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_title_highlight_number {
        font-size: 32px;
    }
}

/* Reason Cards Container */
.sec_06_reasons {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_reasons {
        gap: 24px;
        margin-bottom: 64px;
    }
}

/* Reason Card */
.sec_06_reason_card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 48px 60px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media print,
screen and (max-width: 767px) {
    .sec_06_reason_card {
        padding: 40px 16px 28px;
    }
}

/* Reason Number Badge */
.sec_06_reason_badge {
    position: absolute;
    top: -13px;
    left: 32px;
    width: 96px;
    height: 87px;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_reason_badge {
        width: 62px;
        top: -23.5px;
        left: 16px;
    }
}

.sec_06_reason_badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Reason Content Wrapper */
.sec_06_reason_content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_reason_content {
        flex-direction: column-reverse;
        gap: 16px;
    }
}

/* Reason Image */
.sec_06_reason_image {
    flex-shrink: 0;
    width: 420px;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_reason_image {
        width: 100%;
        margin-bottom: 0;
    }
}

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

/* Reason Text */
.sec_06_reason_text {
    flex: 1;
}

/* Reason Header */
.sec_06_reason_header {
    text-align: center;
    margin-bottom: 24px;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_reason_header {
        text-align: center;
        margin-bottom: 8px;
    }
}

.sec_06_reason_label {
    color: #E1323C;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_reason_label {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.sec_06_reason_title {
    color: #191919;
    font-size: 28px;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_reason_title {
        font-size: 22px;
    }
}

.sec_06_reason_subtitle {
    color: #191919;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin: 4px 0 0 0;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_reason_subtitle {
        font-size: 14px;
    }
}

/* Reason Description */
.sec_06_reason_description {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: #191919;
    text-align: left;
    letter-spacing: 0.06em;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_reason_description {
        font-size: 16px;
        text-align: justify;
    }
}

/* CTA Section */
.sec_06_cta {
    text-align: center;
}

.sec_06_cta-wrapper {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    margin-top: 24px;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_cta-wrapper {
        margin-top: 0;
    }
}

@media print,
screen and (max-width: 767px) {
    .sec_06_cta-wrapper {
        flex-direction: column;
        align-items: center;
        width: 295px;
    }
}

.sec_06_cta-text {
    position: absolute;
    top: -72px;
    left: 80px;
    width: 440px;
    height: 97px;
    z-index: 2;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_cta-text {
        position: static;
        width: auto;
        height: auto;
    }
}

.sec_06_cta-text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sec_06_cta-wrapper:hover .sec_06_cta-text,
.sec_06_cta-wrapper:hover .sec_06_cta-btn {
    animation: none;
}

.sec_06_cta-btn {
    background-color: #00375F;
    color: #FFFFFF;
    width: 600px;
    height: 80px;
    padding: 0 40px;
    border-radius: 16px;
    box-shadow: 0px 8px 0px 0px #052337;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.56px;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: dokundokun 1300ms ease infinite;
    overflow: hidden;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_cta-btn {
        width: 295px;
        height: 64px;
        padding: 0 20px;
        font-size: 18px;
        letter-spacing: 1.08px;
        gap: 16px;
        box-shadow: 0px 6px 0px 0px #052337;
    }
}

.sec_06_cta-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btn_shine 4s ease-in-out infinite;
    -webkit-animation: btn_shine 4s ease-in-out infinite;
}

.sec_06_cta-btn:hover {
    transform: translateY(2px);
    box-shadow: 0px 6px 0px 0px #052337;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_cta-btn:hover {
        box-shadow: 0px 4px 0px 0px #052337;
    }
}

.sec_06_cta-btn:active {
    transform: translateY(4px);
    box-shadow: 0px 4px 0px 0px #052337;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_cta-btn:active {
        transform: translateY(3px);
        box-shadow: 0px 3px 0px 0px #052337;
    }
}

.sec_06_cta-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    position: absolute;
    right: 40px;
    z-index: 1;
}

@media print,
screen and (max-width: 767px) {
    .sec_06_cta-arrow {
        width: 18px;
        height: 18px;
        position: absolute;
        right: 20px;
    }
}

.sec_06_cta-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.sec_06_cta-btn:hover .sec_06_cta-arrow {
    transform: translateX(3px);
}

/* ====================================
     SEC_07 Section (SP Only)
  ==================================== */
.sec_07 {
    display: none;
    background-color: #FFFFFF;
    padding: 96px 0 12px;
}

@media print,
screen and (max-width: 767px) {
    .sec_07 {
        display: block;
    }
}

.sec_07_container {
    max-width: 375px;
    margin: 0 auto;
    padding: 0;
}

/* Header */
.sec_07_header {
    position: relative;
    margin-bottom: 40px;
    overflow: visible;
}

.sec_07_subtitle {
    font-size: 26px;
    font-weight: 900;
    color: #D9D9D9;
    text-align: center;
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    white-space: nowrap;
}

.sec_07_title_wrapper {
    position: relative;
    text-align: center;
}

.sec_07_title {
    font-size: 28px;
    font-weight: 800;
    color: #191919;
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0;
    line-height: 1.4;
}

.sec_07_title_highlight {
    padding: 0 4px;
    display: inline;
    background: linear-gradient(transparent 65%, #F3C82D 65%, #F3C82D 100%);
}

/* Voice Cards */
.sec_07_voices {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 12px;
}

.sec_07_voice_card {
    background-color: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 40px 20px 24px;
    width: 100%;
    margin: 0 auto;
}

.sec_07_voice_header {
    text-align: center;
    margin-bottom: 24px;
}

.sec_07_voice_number {
    font-size: 16px;
    font-weight: 900;
    color: #191919;
    margin-bottom: 12px;
}

.sec_07_voice_title {
    font-size: 22px;
    font-weight: 500;
    color: #191919;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin: 0;
}

.sec_07_voice_image {
    width: 100%;
    margin: 0 auto 24px;
    position: relative;
}

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

.sec_07_voice_cost {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 4px 12px 0;
    border-top-left-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #191919;
    line-height: 1.4;
}

.sec_07_voice_details {
    margin-bottom: 16px;
}

.sec_07_voice_divider {
    width: 100%;
    height: 1px;
    background-color: #191919;
    margin: 0 auto;
}

.sec_07_voice_info {
    margin: 12px 0;
}

.sec_07_voice_plan {
    font-size: 18px;
    font-weight: 700;
    color: #191919;
    line-height: 1.6;
    margin-bottom: 4px;
}

.sec_07_voice_arrow {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    position: relative;
    top: -2px;
}

@media print,
screen and (max-width: 767px) {
    .sec_07_voice_arrow {
        top: -1.5px;
    }
}

.sec_07_voice_client {
    font-size: 16px;
    font-weight: 500;
    color: #191919;
    line-height: 1.5;
}

.sec_07_voice_description {
    font-size: 16px;
    line-height: 1.7;
    color: #191919;
    text-align: justify;
    letter-spacing: 0.06em;
    width: 100%;
    margin: 0 auto;
}

/* ====================================
     SEC07 Section (PC Only)
  ==================================== */
.sec07 {
    display: none;
    background-color: #FFFFFF;
    padding: 96px 0 8px;
}

@media print,
screen and (min-width: 768px) {
    .sec07 {
        display: block;
    }
}

.sec07_container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.sec07_header {
    position: relative;
    height: 114px;
    margin-bottom: 56px;
    text-align: center;
    overflow: visible;
}

.sec07_subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #D9D9D9;
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin: 0;
    white-space: nowrap;
}

.sec07_title_wrapper {
    position: relative;
    display: inline-block;
    margin-top: 49px;
}

.sec07_title {
    font-size: 44px;
    font-weight: 700;
    color: #191919;
    position: relative;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
}

.sec07_title_highlight {
    padding: 0 4px;
    display: inline;
    background: linear-gradient(transparent 60%, #F3C82D 60%, #F3C82D 100%);
}

/* Voice Cards */
.sec07_voices {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sec07_voice_card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.2);
    padding: 48px 60px 40px;
}

.sec07_voice_header {
    text-align: center;
    margin-bottom: 36px;
}

.sec07_voice_number {
    font-size: 18px;
    font-weight: 700;
    color: #191919;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.sec07_voice_title {
    font-size: 26px;
    font-weight: 500;
    color: #191919;
    letter-spacing: 0.16em;
    line-height: 1.4;
    margin: 0;
}

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

.sec07_voice_image {
    max-width: 448px;
    width: 45%;
    position: relative;
    object-fit: cover;
}

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

.sec07_voice_cost {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 8px 12px 0;
    border-top-left-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #191919;
    line-height: 1.4;
}

.sec07_voice_text {
    width: 55%;
}

.sec07_voice_details {
    margin-bottom: 20px;
}

.sec07_voice_divider {
    width: 100%;
    height: 1px;
    background-color: #191919;
}

.sec07_voice_info {
    margin: 12px 0;
}

.sec07_voice_plan {
    font-size: 20px;
    font-weight: 700;
    color: #191919;
    line-height: 1.6;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.sec07_voice_client {
    font-size: 18px;
    font-weight: 500;
    color: #191919;
    line-height: 1.5;
    letter-spacing: 0.06em;
}

.sec07_voice_description {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    text-align: justify;
    letter-spacing: 0.08em;
}

/* ====================================
     CV8 Section
  ==================================== */
.cv8 {
    background-color: #FFFFFF;
    padding: 198px 0 112px;
}

@media print,
screen and (max-width: 767px) {
    .cv8 {
        padding: 48px 0 80px;
    }
}

.cv8_container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

@media print,
screen and (max-width: 767px) {
    .cv8_container {
        max-width: 335px;
        padding: 0;
    }
}

.cv8_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media print,
screen and (max-width: 767px) {
    .cv8_content {
        gap: 24px;
    }
}

/* CTA Wrapper with Text */
.cv8_cta-wrapper {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
}

@media print,
screen and (max-width: 767px) {
    .cv8_cta-wrapper {
        flex-direction: column;
        align-items: center;
        width: 295px;
    }
}

.cv8_cta-text {
    position: absolute;
    top: -94px;
    left: 80px;
    width: 440px;
    height: 97px;
    z-index: 2;
    /* animation: dokundokun 1300ms ease infinite; */
}

@media print,
screen and (max-width: 767px) {
    .cv8_cta-text {
        position: static;
        width: 295px;
        height: 65px;
        margin-bottom: -2px;
    }
}

.cv8_cta-text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cv8_cta-wrapper:hover .cv8_cta-text,
.cv8_cta-wrapper:hover .cv8_btn-catalog {
    animation: none;
}

/* Buttons Container */
.cv8_buttons {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media print,
screen and (max-width: 767px) {
    .cv8_buttons {
        gap: 24px;
        align-items: center;
        width: 100%;
    }
}

/* Catalog Button (Red) */
.cv8_btn-catalog {
    background-color: #D00F00;
    color: #FFFFFF;
    width: 600px;
    height: 80px;
    padding: 0 40px;
    border-radius: 16px;
    box-shadow: 0px 8px 0px 0px #961E1E;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.56px;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: dokundokun 1300ms ease infinite;
    overflow: hidden;
}

@media print,
screen and (max-width: 767px) {
    .cv8_btn-catalog {
        width: 295px;
        height: 64px;
        padding: 0 20px;
        font-size: 18px;
        letter-spacing: 1.08px;
        gap: 16px;
        box-shadow: 0px 6px 0px 0px #961E1E;
    }
}

.cv8_btn-catalog::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btn_shine 4s ease-in-out infinite;
    -webkit-animation: btn_shine 4s ease-in-out infinite;
}

.cv8_btn-catalog:hover {
    transform: translateY(2px);
    box-shadow: 0px 6px 0px 0px #961E1E;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .cv8_btn-catalog:hover {
        box-shadow: 0px 4px 0px 0px #961E1E;
    }
}

.cv8_btn-catalog:active {
    transform: translateY(4px);
    box-shadow: 0px 4px 0px 0px #961E1E;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .cv8_btn-catalog:active {
        transform: translateY(3px);
        box-shadow: 0px 3px 0px 0px #961E1E;
    }
}

/* Consultation Button (Navy) */
.cv8_btn-consultation {
    background-color: #00375F;
    color: #FFFFFF;
    width: 600px;
    height: 80px;
    padding: 0 40px;
    border-radius: 16px;
    box-shadow: 0px 8px 0px 0px #052337;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.56px;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: dokundokun 1300ms ease infinite;
    overflow: hidden;
}

@media print,
screen and (max-width: 767px) {
    .cv8_btn-consultation {
        width: 295px;
        height: 64px;
        padding: 0 20px;
        font-size: 18px;
        letter-spacing: 2.16px;
        gap: 16px;
        box-shadow: 0px 6px 0px 0px #052337;
    }
}

.cv8_btn-consultation::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btn_shine 4s ease-in-out infinite;
    -webkit-animation: btn_shine 4s ease-in-out infinite;
}

.cv8_btn-consultation:hover {
    transform: translateY(2px);
    box-shadow: 0px 6px 0px 0px #052337;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .cv8_btn-consultation:hover {
        box-shadow: 0px 4px 0px 0px #052337;
    }
}

.cv8_btn-consultation:active {
    transform: translateY(4px);
    box-shadow: 0px 4px 0px 0px #052337;
    animation: none;
}

@media print,
screen and (max-width: 767px) {
    .cv8_btn-consultation:active {
        transform: translateY(3px);
        box-shadow: 0px 3px 0px 0px #052337;
    }
}

/* Button Arrow */
.cv8_btn-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    position: absolute;
    right: 40px;
    z-index: 1;
}

@media print,
screen and (max-width: 767px) {
    .cv8_btn-arrow {
        width: 18px;
        height: 18px;
        position: absolute;
        right: 20px;
    }
}

.cv8_btn-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cv8_btn-catalog:hover .cv8_btn-arrow,
.cv8_btn-consultation:hover .cv8_btn-arrow {
    transform: translateX(3px);
}

/* ====================================
Footer Section
==================================== */
.footer {
    height: 520px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: white;
}

@media print,
screen and (max-width: 767px) {
    .footer {
        padding: 64px 20px 80px;
        height: auto;
        min-height: 528px;
    }
}

.footer_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.footer_container {
    max-width: 544px;
    margin: 20px auto 0;
    position: relative;
    z-index: 2;
}

@media print,
screen and (max-width: 767px) {
    .footer_container {
        padding: 0;
    }
}

.footer_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

@media print,
screen and (max-width: 767px) {
    .footer_content {
        display: block;
        gap: 32px;
    }
}

.footer_logos {
    display: flex;
    align-items: center;
    gap: 72px;
    padding-bottom: 40px;
}

@media print,
screen and (max-width: 767px) {
    .footer_logos {
        flex-direction: column;
        gap: 32px;
        padding-bottom: 64px;
    }
}

.footer_logo-main {
    width: 264px;
}

@media print,
screen and (max-width: 767px) {
    .footer_logo-main {
        width: 240px;
    }
}

.footer_logo-sub {
    height: 90px;
    width: auto;
}

@media print,
screen and (max-width: 767px) {
    .footer_logo-sub {
        height: auto;
        max-height: 70px;
    }
}

.footer_info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media print,
screen and (max-width: 767px) {
    .footer_info {
        gap: 12px;
        padding-bottom: 32px;
    }
}

.footer_address {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

@media print,
screen and (max-width: 767px) {
    .footer_address {
        font-size: 14px;
    }
}

.footer_contact {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

@media print,
screen and (max-width: 767px) {
    .footer_contact {
        font-size: 20px;
        margin-bottom: 0;
    }
}

.footer_contact-tel {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

@media print,
screen and (min-width: 768px) {
    .footer_contact-tel:hover {
        color: #119CDA;
        text-decoration: underline;
    }
}

@media print,
screen and (max-width: 767px) {
    .footer_contact-tel {
        color: #119CDA;
    }
}

.footer_privacy {
    font-size: 14px;
    font-weight: 500;
}

@media print,
screen and (max-width: 767px) {
    .footer_privacy {
        font-size: 12px;
        margin-bottom: 40px;
    }
}

.footer_privacy-link {
    color: white;
    text-decoration: none;
    font-size: inherit;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer_privacy-link:hover {
    color: #119cda;
    text-decoration: underline;
}

.footer_copyright {
    font-size: 12px;
    font-weight: 400;
}

@media print,
screen and (max-width: 767px) {
    .footer_copyright {
        font-size: 10px;
    }
}

/* ====================================
     SP Fixed Footer CTA
==================================== */
.sp-fixed-cta {
    display: none;
}

@media print,
screen and (max-width: 767px) {
    .sp-fixed-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80px;
        z-index: 9999;
        background-color: white;
    }

    .sp-fixed-cta__link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .sp-fixed-cta__image {
        max-width: 400px;
        width: 90%;
        height: auto;
        display: block;
    }

    /* bodyに固定フッター分の余白を追加 */
    body {
        padding-bottom: 80px;
    }
}

/* 540px以下のスマホ対応 */
@media screen and (max-width: 540px) {
    body {
        padding-bottom: 40px;
    }

    .sp-fixed-cta {
        height: auto;
        padding: 0;
        background-color: transparent;
    }

    .sp-fixed-cta__image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

/* 印刷時は非表示 */
@media print {
    body {
        padding-bottom: 0;
    }

    .sp-fixed-cta {
        height: auto;
        padding: 0;
        background-color: transparent;
    }

    .sp-fixed-cta__image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}