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

body {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 14px;
}

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

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 2px solid #E0E0E0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.header-info {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 2px;
}

.hours {
    font-size: 12px;
    margin-bottom: 0;
    color: #666;
}

.mail-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1.3;
    font-weight: bold;
    transition: background 0.3s ease;
}

.mail-btn:hover {
    background: #555;
}

.mail-btn span {
    font-size: 11px;
    display: block;
    margin-top: 2px;
}

/* FV_PC / FV_SP */
.fv-pc,
.fv-sp {
    padding: 0;
    margin: 0;
}

.fv-image {
    width: 100%;
    height: auto;
    display: block;
}

.fv-sp {
    display: none;
}

@media (max-width: 768px) {
    .fv-pc {
        display: none;
    }
    .fv-sp {
        display: block;
    }
}

/* CTA Section (PC only) */
.cta-pc {
    background: linear-gradient(90deg, #4F8CC9 0%, #2865A8 100%);
    padding: 12px 0 26px;
    position: relative;
    overflow: hidden;
}

.cta-pc-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cta-pc-time {
    color: #FFF;
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    letter-spacing: .1em;
    position: relative;
    z-index: 20;
}

.cta-pc-time .time-number {
    color: #FFF75B;
    font-family: "Lato", sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.cta-pc-time .time-unit {
    color: #FFF75B;
    font-size: 20px;

    font-weight: 500;
}

.cta-pc-time .time-text {
    font-size: 26px;
    font-weight: 500;
}

.cta-pc-buttons {
    display: flex;
    gap: 20px;
    /* width: 80%; */
    justify-content: center;
    z-index: 2;
}

.cta-pc-button {
    display: block;
    transition: transform 0.2s;
    flex: 1;
    max-width: 400px;
}

.cta-pc-button img {
    display: block;
    width: auto;
    height: 72px;
}

.cta-pc-button:hover {
    transform: translateY(2px);
}

.cta-pc-truck {
    position: absolute;
    top: calc(50% + 14px);
    transform: translateY(-50%);
    right: -147px;
    width: 381px;
    z-index: 1;
}
@media (max-width: 1300px) {
  .cta-pc-truck {
      right: -77px;
      width: 321px;
  }
}

@media (max-width: 768px) {
    .cta-pc {
        display: none;
    }
}

/* CTA Section (SP only) */
.cta-sp {
    background: linear-gradient(90deg, #4F8CC9 0%, #2865A8 100%);
    padding: 16px 30px 20px;
    display: none;
    position: relative;
}

.cta-sp-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}

.cta-sp-time {
    font-weight: bold;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1px;
    z-index: 2;
    letter-spacing: .1em;
}

.cta-sp-time .sp-time-line1 {
    color: #FFF75B;
    font-size: 16px;
    font-weight: 700;
}

.cta-sp-time .sp-time-line1 .time-number {
    font-size: 28px;
    /* margin-right: 4px; */
    font-family: "Lato", sans-serif;
}
.time-number {
  font-family: "Lato", sans-serif;
}
.cta-sp-time .sp-time-line1 .time-unit {
    font-size: 16px;
    margin-left: 0;
}
 .time-unit {
    /* margin-left: 2px; */
}
.time-unit + .time-number {
  /* margin-left: 3px; */
}

.cta-sp-time .sp-time-line2 {
    color: #FFF;
    font-size: 16px;
    letter-spacing: 0.05em;
}

.sp-time-line2 {
  margin-top: -8px;
}

.cta-sp-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-sp-button {
    display: block;
    transition: transform 0.2s;
}

.cta-sp-button img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-sp-button:active {
    transform: scale(0.98);
}

.cta-sp-truck {
    position: absolute;
    top: 17px;
    right: 17px;
    width: 165px;
    z-index: 1;
}

.cta-truck-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .cta-sp {
        display: block;
    }
}

/* Section Heading */
.section-heading {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.5;
}

.section-heading.white {
    color: #fff;
}

/* Pricing */
.pricing {
    padding: 0;
    background: #fff;
    position: relative;
}

.pricing-container {
    position: relative;
    width: 100%;
    margin-top: 64px;
}

.plan-bg-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 442px;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.plan-main-image {
    position: relative;
    width: 442px;
    height: auto;
    display: block;
    margin: 0 auto;
    z-index: 2;
}

.pack-price-pc {
    display: block !important;
}

.pack-price-sp {
    display: none !important;
}

.plan-note {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    margin: 0px auto 32px;
    max-width: 800px;
    /* color: #555; */
}

@media (max-width: 768px) {
    .plan-bg-image {
        width: 90%;
    }

    .plan-main-image {
        width: 90%;
    }

    .pack-price-pc {
        display: none !important;
    }

    .pack-price-sp {
        display: block !important;
    }

    .plan-note {
        margin: 15px 20px 22px;
        font-size: 12px;
    }
}

/* Items */
.items-section {
    padding: 10px 0;
    /* background: #F8F8F8; */
}

.items-grid {
    display: grid;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.items-grid-3 {
    grid-template-columns: repeat(3, 340px);
}

.items-grid-2 {
    grid-template-columns: repeat(2, 340px);
}

.item-box {
    text-align: center;
    width: 340px;
    height: 380px;
    background: #fff;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.item-image {
    height: 52%;
    background: linear-gradient(135deg, #F0F0F0 0%, #E0E0E0 100%);
    margin-bottom: 0;
    flex-shrink: 0;
    overflow: hidden;
}

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

.item-content {
    height: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 12px;
}

.item-title {
    font-size: 26px;
    font-weight: bold;
    color: #315B88;
    margin: 0 0 -8px 0;
    text-align: center;
}

.item-description {
    font-size: 16px;
    color: #333;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.item-price {
    font-weight: bold;
    margin: 0;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
}

.price-icon {
    width: 40px;
    height: 40px;
    display: block;
    margin-bottom: 4px;
}

.price-number {
    font-family: 'Lato', sans-serif;
    font-size: 56px;
    font-weight: 600;
    background: linear-gradient(180deg, #FFB411 0%, #F4813A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-unit {
    font-size: 24px;
    background: linear-gradient(180deg, #FFB411 0%, #F4813A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5;
}

/* Mobile responsive for items */
@media (max-width: 768px) {
  .items-section {
      padding: 10px 0 30px;
  }
    .items-grid-3,
    .items-grid-2 {
        grid-template-columns: 1fr;
        padding: 0;
        width: calc(100% - 60px);
        margin-left: auto;
        margin-right: auto;
        gap: 16px;
        margin-bottom: 16px;
    }

    .item-box {
        width: 100%;
        height: auto;
        flex-direction: row;
        border-radius: 0;
        border: 1px solid #000;
        box-shadow: none;
    }

    .item-box:hover {
        transform: none;
        box-shadow: none;
    }

    .item-image {
        width: 37%;
        height: auto;
        /* min-height: 150px; */
        background: #F0F0F0;
        flex-shrink: 0;
    }

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

    .item-content {
        width: 70%;
        height: auto;
        padding: 16px;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        gap: 4px;
    }

    .item-title {
        font-size: 18px;
        margin: 0;
        text-align: left;
    }

    .item-description {
        font-size: 12px;
        text-align: left;
    }

    .item-price {
    }

    .price-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 0;
        margin-right: 4px;
    }

    .price-number {
      font-family: "Lato", sans-serif;
        font-size: 30px;
    }

    .price-unit {
        font-size: 16px;
    }
}

.items-heading {
    text-align: center;
    font-size: 20px;
    margin: 48px 0 24px;
    font-weight: bold;
    color: #333;
}

.single-items-section {
    background: #DFEDF8;
    padding: 48px 0;
    margin: 0;
}

.single-item-heading {
    font-size: 32px;
    color: #FFF;
    background: linear-gradient(90deg, #4F8CC9 0%, #2865A8 100%);
    border: 3px solid transparent;
    border-radius: 50px;
    padding: 8px 32px;
    display: block;
    width: fit-content;
    margin: 0 auto 24px;
    position: relative;
    background-clip: padding-box;
    font-weight: 500;
}

.single-item-heading::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg, #4F8CC9 0%, #2865A8 100%);
    border-radius: 50px;
    z-index: -1;
}

.single-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.single-item-card {
    background: #FFF;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.single-item-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 30px;
}

.single-item-info {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.single-item-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1;
}

.single-item-price {
    font-family: 'Lato', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #315B88;
    margin: 0;
    line-height: 1;
}

.price-unit-small {
    font-size: 26px;
    color: #315B88;
    margin-left: 4px;
    display: inline-block;
    position: relative;
    bottom: 2px;
}

@media (max-width: 768px) {
    .single-item-heading {
        font-size: 22px;
        font-weight: 700;
    }

    .single-items-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
        width: calc(100% - 60px);
        margin: 0 auto 20px;
    }

    .single-item-card {
        flex-direction: row;
        padding: 0 8%;
        gap: 16px;
        justify-content: flex-start;
    }

    .single-item-image {
        width: 60px;
        height: 60px;
        margin-right: 0;
    }

    .single-item-info {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        flex: 1;
        white-space: nowrap;
    }

    .single-item-name {
        font-size: 16px;
        text-align: left;
        flex-shrink: 0;
    }

    .single-item-price {
        font-size: 30px;
        text-align: left;
        margin-left: auto;
    }

    .price-unit-small {
        font-size: 16px;
    }
}

/* Other Items Box */
.other-items-box {
    background: #FFF;
    padding: 30px 40px;
    margin: 0 auto;
    max-width: 1000px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.other-items-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 0 24px 0;
}

.other-items-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.other-items-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.other-items-icons-bottom {
    margin-top: 0;
}

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

.other-item-icon img {
    width: 88px;
    height: 64px;
    object-fit: contain;
}

.other-item-icon p {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .other-items-box {
        padding: 20px;
        margin: 0 auto;
        width: calc(100% - 60px);
    }

    .other-items-icons-wrapper {
        display: flex;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-content: center;
    }

    .other-item-icon img {
        width: 80px;
    }

    .other-item-icon p {
        font-size: 14px;
    }
}

.items-tags span {
    background: linear-gradient(135deg, #E8E8E8 0%, #D8D8D8 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

/* CTA with Items */
.cta-with-items {
    background: linear-gradient(90deg, #4F8CC9 0%, #2865A8 100%);
    padding: 40px 20px 25px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.cta-with-items::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/CTA/bg.jpg');
    background-position: center 70%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.cta-items-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
}

.cta-items-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.cta-items-image {
    width: 224px;
    height: auto;
    display: block;
}

.cta-items-center {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.cta-phrase-image {
    width: auto;
    height: 30px;
    display: block;
    margin: 0 auto;
}

.cta-items-time-wrapper {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
}

.cta-items-time {
    color: #FFF75B;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    line-height: 1;
}

.cta-items-clock {
    width: 24px;
    height: 24px;
    display: block;
    margin-bottom: 2px;
}

.cta-items-time .time-number {
    font-size: 32px;
    line-height: 1;
}

.cta-items-time .time-unit {
    font-size: 20px;
    line-height: 1;
}

.cta-items-available {
    color: #FFF;
    font-size: 26px;
    line-height: 1;
    margin: 0;
    text-align: center;
}

.cta-items-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    z-index: 2;
    margin-top: 15px;
}

.cta-items-button {
    display: block;
    transition: transform 0.2s;
    flex: 1;
    max-width: 400px;
}

.cta-items-button img {
    width: auto;
    height: 72px;
    display: block;
}

.cta-btn-pc {
    display: block !important;
}

.cta-btn-sp {
    display: none !important;
}

.cta-items-button:hover {
    transform: translateY(2px);
}

.cta-items-right {
    position: absolute;
    right: 0;
    bottom: -40px;
    z-index: 1;
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.cta-staff-image {
    width: 200px;
    height: auto;
    display: block;
    position: relative;
    top: 0;
}

.cta-staff-pc {
    display: block !important;
}

.cta-staff-sp {
    display: none !important;
}

@media (max-width: 768px) {
    .cta-with-items {
        padding: 5px 0px 12px;
    }

    .cta-items-container {
        position: relative;
        min-height: 200px;
        display: grid;
        grid-template-rows: auto auto;
        gap: 8px;
        width: 100%;
    }

    .cta-items-left {
        position: absolute;
        left: 10px;
        top: 40px;
        transform: none;
        margin: 0;
        z-index: -1;
        height: 170px;
        overflow: hidden;
    }

    .cta-items-image {
        width: 93px;
        height: auto;
        display: block;
    }

    .cta-items-center {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
    }

    .cta-phrase-image {
        width: 60%;
        height: auto;
        margin: 12px auto 8px;
    }

    .cta-items-time {
        font-size: 20px;
        margin: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: baseline;
        line-height: 1.4;
        gap: 2px;
    }

    .cta-items-clock {
        width: 15px;
        height: 15px;
        margin-right: 4px;
    }

    .cta-items-time .time-number {
        font-size: 26px;
        font-weight: bold;
    }

    .cta-items-time .time-unit {
        font-size: 14px;
    }

    .cta-items-time-wrapper {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .cta-items-available {
        font-size: 16px;
        font-weight: bold;
        margin: 0;
        text-align: center;
        letter-spacing: 0.1em;
    }

    .cta-items-right {
        position: absolute;
        right:-5px;
        top: 20px;
        margin: 0;
        z-index: 1;
        height: auto;
        overflow: visible;
    }

    .cta-staff-image {
        height: 130px;
        width: auto;
        display: block;
        position: relative;
        right: -83px;
        top: 0;
    }

    .cta-staff-pc {
        display: none !important;
    }

    .cta-staff-sp {
        display: block !important;
    }

    .cta-items-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        z-index: 2;
        width: calc(100% - 60px);
        margin: 12px auto 0;
    }

    .cta-items-button {
        width: 100%;
        max-width: 100%;
    }

    .cta-items-button img {
        width: 100%;
        height: auto;
    }

    .cta-btn-pc {
        display: none !important;
    }

    .cta-btn-sp {
        display: block !important;
    }
}

/* Works */
.works {
    padding: 0;
    margin: 0;
    background-image: url('../img/works/works-bg.png');
    background-position: center -50px ;
    background-size: cover;
    background-repeat: no-repeat;
}

.works-title-area {
    padding: 80px 0 0;
    text-align: center;
    position: relative;
}
.works-title-area img {
    position: relative;
    transform: translateX(-27px);
}

.works-title {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.works-gallery {
    padding: 17px 0 60px;
    text-align: center;
}

.works-gallery-title {
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: linear-gradient(90deg, #4F8CC9 0%, #2865A8 100%);
    border-radius: 50px;
    padding: 2px 20px;
    display: inline-block;
    margin: 0 auto 30px;
}

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

.works-carousel-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.works-carousel-prev,
.works-carousel-next,
.works-carousel-dots {
    display: none;
}

.works-gallery-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.works-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.works-box-title {
    background: #315B88;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    padding: 16px 20px;
    text-align: center;
}

.works-box-content {
    position: relative;
    display: flex;
    align-items: center;
    padding: 32px 32px 24px;
    gap: 30px;
}

.works-box-before,
.works-box-after {
    flex: 1;
    text-align: center;
}

.works-box-label {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing:0.07em;
    color: #fff;
    margin-bottom: 8px;
    padding: 2px 20px;
    border-radius: 20px;
    display: inline-block;
}

.works-box-label-before {
    background: #4F8CC9;
}

.works-box-label-after {
    background: linear-gradient(90deg, #FFB411 0%, #F4813A 100%);
}

.works-box-image {
    width: 100%;
    height: auto;
    display: block;
}

.works-box-arrow {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: auto;
    z-index: 10;
}

.works-box-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 0px;
    margin: 0 32px 32px;
}

.works-detail-row {
    display: contents;
}

.works-detail-label {
    background: #315B88;
    color: #fff;
    font-weight: bold;
    padding: 4px 16px;
    font-size: 16px;
    text-align: center;
}

.works-detail-value {
    background: #F5F5F5;
    color: #333;
    padding: 4px 16px;
    font-size: 16px;
    text-align: center;
}

.works-detail-row-total .works-detail-label {
    /* display: none; */
    padding: 11px 16px;
}

.works-detail-row-total .works-detail-value {
    padding: 8px 16px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .works {
        background-size: cover;
        background-position: center;
    }

    .works-title-area {
        padding: 40px 20px 0;
    }

    .works-title {
        width: 285px;
    }
    .works-title-area img {
      transform: translateX(-13px);
    }

    .works-gallery {
        padding: 40px 0;
    }

    .works-gallery-title {
        font-size: 20px;
        padding: 0px 30px;
        margin: 0 auto 30px;
    }

    .works-gallery-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .works-box {
        box-shadow: none;
    }
    .works-box-label {
        margin-top: 8px;
        padding: 0px 16px;
        font-family: "Lato", sans-serif;
    }

    .works-box-content {
        flex-direction: row;
        gap: 4px;
        padding: 8px 20px;
    }

    .works-box-arrow {
        position: absolute;
        left: 50%;
        top: 65%;
        transform: translate(-50%, -50%);
        width: 60px;
    }

    .works-box-details {
        margin: 0 20px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 4px;
        align-items: stretch;
    }
    .works-detail-row {
      width: calc(50% - 2px);
      display: flex;
      flex-direction: column;
      justify-content: stretch;
      align-items: stretch;
    }

    .works-detail-label,
    .works-detail-value {
        font-size: 12px;
    }
    .works-detail-value {
        height: 100%;
    }

    .works-detail-row.sp-full,
    .works-detail-row-total {
        display: block;
        width: 100%;
        height: auto;
    }
    .works-detail-row.works-detail-row-total .works-detail-value,
    .works-detail-row.sp-full .works-detail-value {
        height: auto;
    }


    .works-detail-row-total .works-detail-label,
    .works-detail-row-total .works-detail-value {
        grid-column: 1 / -1;
        text-align: center;
    }

    .works-detail-row-total .works-detail-label {
        grid-row: 10;
    }

    .works-detail-row-total .works-detail-value {
        grid-row: 11;
    }

    .works-detail-label {
        padding: 5px 16px;
    }

    .works-detail-value {
        padding: 5px 16px;
    }

    /* Carousel styling for mobile */
    .works-carousel-container {
        position: relative;
        max-width: 100%;
        padding: 0;
    }

    .works-carousel-wrapper {
        overflow: hidden;
        width: calc(100% - 60px);
        margin: 0 auto;
    }

    .works-gallery-container {
        display: flex;
        transition: transform 0.3s ease-in-out;
        padding: 0;
        gap: 20px;
    }

    .works-box {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        padding-bottom: 22px;
        box-sizing: border-box;
    }

    .works-carousel-prev,
    .works-carousel-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        width: 26px;
        height: 26px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: opacity 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
    }

    .works-carousel-prev::before,
    .works-carousel-next::before {
        content: '';
        display: block;
        width: 26px;
        height: 26px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .works-carousel-prev::before {
        background-image: url('../img/works/carousel-arrow-left.svg');
    }

    .works-carousel-next::before {
        background-image: url('../img/works/carousel-arrow-right.svg');
    }

    .works-carousel-prev {
        left: 16px
    }

    .works-carousel-next {
        right: 16px;
    }

    .works-carousel-prev:active,
    .works-carousel-next:active {
        opacity: 0.7;
    }

    .works-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .works-carousel-dots .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid #315B88;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .works-carousel-dots .dot.active {
        background: #315B88;
        transform: scale(1.2);
    }
}

/* Services */
.services {
    padding: 60px 0 80px;
    background-image: url('../img/service/service-bg.png');
    background-size: contain;
    background-position: center;
    position: relative;
}

.services-title-area {
    position: relative;
    width: fit-content;
    margin: 0 auto 40px;
}

.services-truck-image {
    position: absolute;
    left: -260px;
    top: 50%;
    transform: translateY(-50%);
    height: 141px;
    width: auto;
}

.services-title {
    width: 331px;
    height: auto;
    display: block;
}

.services-title-sp {
    display: none;
}

.service-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.service-box {
    background: #FFF;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, #4F8CC9 0%, #2865A8 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-box-header {
    background: linear-gradient(90deg, #4F8CC9 0%, #2865A8 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.service-box-header-icon {
    width: 50px;
    height: 40px;
    flex-shrink: 0;
}

.service-box-header h3 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    color: #FFF;
    line-height: 1.4;
}

.service-box-content {
    padding: 24px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-box-image {
    width: 400px;
    height: 225px;
    display: block;
    margin-bottom: 16px;
    object-fit: cover;
}

.service-box:not(.service-other-box) .service-box-content p {
    width: 400px;
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin: 0;
    letter-spacing: 0.05em;
}

.service-other-box {
    grid-column: 1 / -1;
    max-width: 1000px;
    margin: 0 auto;
}

.service-other-box .service-box-content {
    margin-bottom: 0;
}

.service-other-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #315B88;
    text-align: center;
    width: 100%;
    letter-spacing: 0.05em;
}


.service-other-list {
    font-size: 20px;
    line-height: 1.8;
    color: #333333;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .services-title-area {
        margin-bottom: 30px;
        width: calc(100% - 60px);
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .services-truck-image {
        display: block;
        position: absolute;
        width: 67px;
        height: 37px;
        left: 0;
        top: 25%;
        transform: translateY(-50%);
    }

    .services-title-pc {
        display: none;
    }

    .services-title-sp {
        display: block;
        width: 100%;
        max-width: 204px;
        margin: 0 auto;
    }

    .service-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
        padding: 0;
        width: calc(100% - 60px);
        margin-left: auto;
        margin-right: auto;
    }

    .service-box {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .service-box-header {
        padding: 12px;
        gap: 7px;
    }

    .service-box-header-icon {
        width: 32px;
        height: 29px;
    }

    .service-box-header h3 {
        font-size: 22px;
    }

    .service-box-content {
        padding: 16px 24px;
        margin-bottom: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .service-box-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .service-box:not(.service-other-box) .service-box-content p {
        width: 100%;
        font-size: 14px;
        line-height: 1.8;
        letter-spacing: 0.05em;
    }

    .service-other-box {
        margin: 0 auto;
        max-width: 100%;
        width: calc(100% - 60px);
    }

    .service-other-box .service-box-content {
        padding: 16px;
    }

    .service-other-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .service-other-list {
        font-size: 16px;
        white-space: normal;
        text-align: start;
        letter-spacing: 0.20em;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background-image: url('img/comparison/comparison-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sp-text {
    display: none;
    text-align: center;
}

.pc-text {
    display: inline;
}

.sp-br {
    display: none;
}

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

.comparison-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.comparison-check-wrapper {
    background: linear-gradient(90deg, #4F8CC9 0%, #2865A8 100%);
    border-radius: 30px;
    padding: 0px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 140px;
    justify-content: center;
}

.comparison-check {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.comparison-lens {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.comparison-title-html {
    display: flex;
    gap: 0;
    justify-content: center;
}

.comparison-title-box {
    width: 80px;
    height: 80px;
    border: 1px solid #315B88;
    border-right: none;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
}

.comparison-title-box span {
    background: linear-gradient(90deg, #4F8CC9 0%, #2865A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-title-box:last-child {
    border-right: 1px solid #315B88;
}

/* Comparison Table - 完全リセットから構築 */
.comparison-table-wrapper {
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.comparison-row {
    display: flex;
    width: 100%;
}

.comparison-row:not(.comparison-header-row) .comparison-label,
.comparison-row:not(.comparison-header-row) .comparison-other {
    border-bottom: 1px solid #E0E0E0;
}

.comparison-cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    box-sizing: border-box;
}

/* ヘッダー行 */
.comparison-header-row {
    height: 100px;
}

/* 左上の空セル - 透明 */
.comparison-header-label {
    background: transparent;
    border: none;
    max-width: 180px;
}

/* ピアのヘッダー - オレンジグラデ、高さ160px */
.comparison-header-pia {
    background: linear-gradient(135deg, #FFB411 0%, #F4813A 100%);
    padding: 40px 20px;
    flex: 1.5;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.comparison-header-pia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -3px;
    bottom: 0px;
    border-radius: 12px 12px 0 0;
    padding: 4px;
    padding-bottom: 0;
    background: linear-gradient(135deg, #FFB411 0%, #F4813A 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.comparison-header-pia img {
    height: 60px;
    width: auto;
    display: block;
}

/* 他社Aのヘッダー - グレー背景、高さ80px */
.comparison-header-other {
    background: #9B9B9B;
    color: #FFFFFF;
    padding: 0 20px;
    font-size: 16px;
    font-weight: bold;
    height: 80px;
    align-self: flex-end;
}

/* 左の項目列 - 青グラデ */
.comparison-label {
    background: linear-gradient(90deg, #4F8CC9 0%, #2865A8 100%);
    color: #FFFFFF;
    font-weight: 500;
    font-size: 22px;
    max-width: 180px;
}

/* ピアの列 - 白背景、オレンジボーダー */
.comparison-pia {
    background-color: #FFFFFF;
    font-weight: bold;
    font-size: 32px;
    border-left: 4px solid #FFB411;
    border-right: 4px solid #F4813A;
    flex: 1.5;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.6);
}

.pia-text {
    color: transparent;
    background-image: linear-gradient(135deg, #FFB411 0%, #F4813A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-align: center;
}

/* 他社Aの列 - グレー背景 */
.comparison-other {
    background: #F5F5F5;
    color: #333333;
    font-size: 22px;
}

/* 最後の行のピアの列に下ボーダーを追加 */
.comparison-row:last-child .comparison-pia {
    border-left: 4px solid #FFB411;
    border-right: 4px solid #F4813A;
    border-bottom: 4px solid #F4813A;
}

@media (max-width: 768px) {
    .comparison-table {
        width: calc(100% - 60px);
        margin: auto 30px;
    }

    .comparison-section {
        padding: 40px 0;
    }

    .comparison-check-wrapper {
        padding: 0px 12px;
        gap: 6px;
        border-radius: 20px;
        width: 130px;
    }

    .comparison-check {
        font-size: 22px;
        font-weight: 500;
        font-family: "Robot";
    }

    .comparison-lens {
        width: 18px;
        height: 18px;
    }

    .comparison-title-html {
        gap: 0;
    }

    .comparison-title-box {
        width: 40px;
        height: 40px;
        border-width: 1px;
        border-right: none;
        font-size: 24px;
    }

    .comparison-title-box:last-child {
        border-right: 1px solid #4F8CC9;
    }

    .comparison-table-wrapper {
        margin-top: 30px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-row {
        min-width: 550px;
    }

    .comparison-header-row {
        height: 70px;
    }

    .comparison-header-label {
        width: 100px;
        flex-shrink: 0;
        max-width: 120px;
    }

    .comparison-header-pia {
        padding: 20px 15px;
        max-width: 197px;
    }

    .comparison-header-pia img {
        height: 27px;
    }

    .comparison-header-other {
        padding: 0 15px;
        font-size: 14px;
        height: 48px;
        max-width: 200px;
    }

    .comparison-label {
        width: 100px;
        flex-shrink: 0;
        font-size: 16px;
        max-width: 120px;
    }

    .comparison-pia {
        font-size: 20px;
    }

    .comparison-other {
        font-size: 16px;
    }

    .comparison-cell {
        padding: 12px 15px;
    }


    .sp-text {
        display: inline;
    }

    .pc-text {
        display: none;
    }

    .comparison-pia,
    .comparison-other {
        max-width: 200px;
    }
}

/* Trouble Section */
.trouble-section {
    padding: 80px 0;
    background-image: url('img/trouble/trouble-texture-bg-gray.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.trouble-section .container {
    position: relative;
}

.trouble-box {
    background-image: url('img/trouble/trouble-bg-outer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 60px;
    margin: 0 auto;
    text-align: center;
}

.trouble-title {
    text-align: center;
    margin: 0 auto 30px;
    width: auto;
}

.trouble-title img {
    /* width: auto; */
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.trouble-title-pc {
    display: block !important;
    width: 505px;
    max-width: 100%;
}

.trouble-title-sp {
    display: none !important;
    width: 184px;
    max-width: 100%;
}

.area-info-pc {
    display: block !important;
}

.area-info-sp {
    display: none !important;
}

.trouble-emphasis {
    font-size: 48px;
    position: relative;
    display: inline-block;
    margin: 0 4px;
}

.trouble-emphasis::before {
    content: '・';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
}

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

.trouble-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

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

.trouble-check-icon {
    width: 30px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.trouble-text {
    font-size: 20px;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.05em;
}

.trouble-arrow {
    position: absolute;
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: auto;
}

@media (max-width: 768px) {
    .trouble-section {
        padding: 40px 0;
    }

    .trouble-box {
        padding: 30px 20px;
        margin: 0 30px;
    }

    .trouble-title {
        margin-bottom: 20px;
    }

    .trouble-title-pc {
        display: none !important;
        width: 505px;
        max-width: 100%;
    }

    .trouble-title-sp {
        display: block !important;
        width: 184px;
        max-width: 100%;
    }

    .trouble-check-icon {
        width: 22px;
        height: 17px;
        flex-shrink: 0;
        margin: auto 0;
    }

    .area-info-pc {
        display: none !important;
    }

    .area-info-sp {
        display: block !important;
    }

    .trouble-emphasis {
        font-size: 36px;
    }

    .trouble-list {
        text-align: left;
    }

    .trouble-item {
        gap: 12px;
        margin-bottom: 20px;
    }

    .trouble-text {
        font-size: 14px;
        letter-spacing: 0.15em;
    }

    .sp-br {
        display: block;
    }

    .trouble-arrow {
        bottom: -80px;
        width: 100%;
    }
}

/* Reason Section */
.reason-section {
    padding: 80px 0;
    background-image: url('img/reason/reason-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reason-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.reason-title-image {
    max-width: 628px;
    height: auto;
}

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

.reason-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.reason-carousel-prev,
.reason-carousel-next {
    display: none;
}

.reason-carousel-dots {
    display: none;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-box {
    background: #DFEDF8;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reason-icon {
    width: 80px;
    height: 80px;
}

.reason-box-title {
    font-size: 26px;
    font-weight: bold;
    color: #315B88;
    margin: 0 0 16px 0;
    line-height: 1.4;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-box-line {
    width: 140px;
    height: 2px;
    background: #315B88;
    margin: 0 0 20px 0;
}

.reason-box-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .reason-section {
        padding: 40px 0;
    }

    .reason-header {
        margin-top: 20px;
        margin-bottom: 16px;
    }

    .reason-title-image {
        max-width: 300px;
    }

    .reason-carousel-container {
        position: relative;
        max-width: 100%;
        padding: 0;
    }

    .reason-carousel-wrapper {
        overflow: hidden;
        width: calc(100% - 60px);
        margin: 0 auto;
    }

    .reason-grid {
        display: flex;
        transition: transform 0.3s ease-in-out;
        padding: 0;
        gap: 20px;
    }

    .reason-box {
        max-width: none;
        width: 100%;
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    .reason-carousel-prev,
    .reason-carousel-next {
        position: absolute;
        top: 46%;
        transform: translateY(-50%);
        background: none;
        border: none;
        width: 26px;
        height: 26px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: opacity 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
    }

    .reason-carousel-prev::before,
    .reason-carousel-next::before {
        content: '';
        display: block;
        width: 26px;
        height: 26px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .reason-carousel-prev::before {
        background-image: url('../img/works/carousel-arrow-left.svg');
    }

    .reason-carousel-next::before {
        background-image: url('../img/works/carousel-arrow-right.svg');
    }

    .reason-carousel-prev {
        left: 16px;
    }

    .reason-carousel-next {
        right: 16px;
    }

    .reason-carousel-prev:active,
    .reason-carousel-next:active {
        opacity: 0.7;
    }

    .reason-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .reason-carousel-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: 1px solid #4F8CC9;
        background: none;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .reason-carousel-dots .dot.active {
        background: #4F8CC9;
    }
}

/* Staff Section */
.staff-section {
    padding: 80px 0;
    background-image: url('img/staff/staff-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.staff-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.staff-label-pc {
    position: absolute;
    left: 118px;
    top: -18%;
}

.staff-label-sp {
    display: none;
}

.staff-main-title {
    font-size: 40px;
    font-weight: bold;
    color: #333333;
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.staff-highlight {
    color: #4F8CC9;
    font-size: 52px;
}


.staff-carousel-container {
    /* max-width: 1200px;
    margin: 0 auto;
    position: relative; */
}

.staff-carousel-wrapper {
    /* overflow: hidden;
    width: 100%; */
}
.staff-carousel-btn {
  position: absolute;
    width: 100%;
    bottom: 38%;
}


.staff-carousel-prev,
.staff-carousel-next {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity 0.3s ease;
    -webkit-appearance: none;
    appearance: none;

}

.staff-carousel-prev {
    left: -2%;
    background-image: url('../img/works/carousel-arrow-left.svg');
}

.staff-carousel-next {
    right: -2%;
    background-image: url('../img/works/carousel-arrow-right.svg');
}

.staff-carousel-prev:hover,
.staff-carousel-next:hover {
    opacity: 0.7;
}

.staff-grid {
    /* display: flex;
    transition: transform 0.3s ease;
    gap: 30px; */
}

.staff-card {
    background: #FFFFFF;
    /* overflow: hidden; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* flex: 0 0 calc(33.333% - 20px); */
    /* width: calc(33.333% - 20px); */
}

.staff-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.staff-info {
    min-height: 277px;
    padding: 16px;
    text-align: center;
    border: 1px solid #4F8CC9;
    border-top: transparent;
}

.staff-name {
    font-size: 26px;
    letter-spacing: 0.05em;
    padding-bottom: 16px;
}

.staff-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    text-align: left;
    letter-spacing: 0.05em;
}

.staff-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.staff-carousel-dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #4F8CC9;
    cursor: pointer;
    transition: background 0.3s ease;
}

.staff-carousel-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #4F8CC9;
}

/* User Voice Section */
.user-voice-section {
    padding: 80px 0;
    background-image: url('img/user-voice/user-voice-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.user-voice-title {
  text-align: center;
}
.user-voice-title-pc {
  width: 672px;
}
.user-voice-title-sp {
  display: none;
}
@media (max-width: 768px) {
  .user-voice-title-sp {
    display: inline-block;
    width: 250px;
  }
  .user-voice-title-pc {
  display: none;
  }
  .user-voice-header {
      text-align: center;
      margin-bottom: 20px;
  }
}

.user-voice-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.user-voice-carousel-wrapper {
    overflow: visible;
}

.user-voice-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* デスクトップではカルーセルコントロールを非表示 */
.user-voice-carousel-prev,
.user-voice-carousel-next {
    display: none;
}

.user-voice-carousel-dots {
    display: none;
}

.user-voice-box {
    max-width: 1000px;
    min-height: 307px;
    background-color: #DFEDF8;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    clip-path: polygon(
        0 0,
        calc(100% - 32px) 0,
        100% 32px,
        100% 100%,
        0 100%,
        0 8px
    );
    display: flex;
    padding: 30px;
    gap: 30px;
}

.user-voice-triangle {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background-image: url('img/user-voice/right-top.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.user-voice-left {
    margin-block: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.user-voice-image {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
}

.user-voice-location {
    font-size: 14px;
    color: #333333;
    text-align: center;
    margin: 0;
}

.user-voice-right {
    margin-block: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-voice-content-title {
    font-size: 32px;
    font-weight: bold;
    color: #315B88;
    margin: 0;
}

.user-voice-stars {
    display: flex;
    gap: 5px;
}

.user-voice-star {
    width: 24px;
    height: 24px;
}

.user-voice-content-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
    background-color: #FFFFFF;
    padding: 15px;
    border-radius: 4px;
}

/* Warning */
.be-careful {
    padding: 80px 0;
    background: url('img/be-careful/be-careful-bg.png') center center / cover no-repeat;
    position: relative;
}

.be-careful::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.be-careful .container {
    position: relative;
    z-index: 2;
}

.be-careful-header {
    margin-bottom: 40px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.be-careful-icon {
    position: absolute;
    top: -25px;
    left: 64%;
    transform: translateX(-500px);
    width: 100px;
    height: 100px;
    z-index: 1;
}

.be-careful-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.be-careful-highlight {
    color: #F7DF5B;
}

.be-careful-content {
    max-width: 1000px;
    margin: 0 auto;
}

.be-careful-content p {
    line-height: 2;
    font-size: 20px;
    color: #fff;
    letter-spacing: .01em;
}

.be-careful-content p:last-child {
    margin-bottom: 0;
}

/* Step */
.step {
    padding: 60px 0;
    background-image: url('img/step/step-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.step-title {
    display: block;
    margin: 0 auto 60px;
    max-width: 500px;
    width: 100%;
    height: auto;
}

.step-wrapper {
    max-width: 1000px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #F3FAFF;
    border: 2px solid #4F8CC9;
    box-shadow: 6px 6px 0px 0px #4F8CC9;
    /* border-radius: 8px; */
    padding: 30px;
    margin-bottom: 0;
}

.step-arrow {
    display: block;
    margin: 20px auto 17px;
    width: 37px;
    height: auto;
}

.step-badge {
    background: #315B88;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 20px;
    width: 96px;
    height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.3;
    font-family: "Lato", sans-serif;
    line-height: 1;
    letter-spacing: .02em;
    white-space: nowrap;
}
.step-badge-num {
  font-weight: 500;
  font-size: 40px;
}

.step-details {
    flex: 1;
}

.step-details h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: bold;
    color: #315B88;
}

.step-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.step-area-box {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #fff;
    border: 1px solid #4F8CC9;
    padding: 30px;
    margin-top: 50px;
}

.step-area-left,
.step-area-right {
    flex: 1;
}

.step-area-left img,
.step-area-right img {
    width: 100%;
    height: auto;
    display: block;
}
.step-carousel-prev,
.step-carousel-next {
  display: none;
}

/* FAQ */
.faq {
    padding: 110px 0 60px;
    background: #F3FAFF;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.faq-title {
    font-size: 52px;
    font-weight: 900;
    color: #4F8CC9;
    margin: 0;
    letter-spacing: .1em;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.faq-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 305px;
    height: 140px;
    background-image: url('img/faq/FAQ.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.faq-item {
    max-width: 1000px;
    margin: 0 auto 12px;
}

.faq-question {
    width: 100%;
    background: #5B8AC5;
    border: none;
    /* border-radius: 4px; */
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #4F7AB3;
}

.faq-q-label {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    position: relative;
    bottom: 2.5px;
}

.faq-q-text {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    flex: 1;
    line-height: 1.6;
}

.faq-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-top: none;
    /* border-radius: 0 0 4px 4px; */
    display: flex;
    gap: 12px;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding: 16px 20px;
}

.faq-a-label {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.faq-a-text {
    color: #333;
    font-size: 18px;
    line-height: 2;
    margin: 0;
}

/* Area */
.area {
    padding: 60px 0;
    text-align: center;
}

.area-text {
    font-size: 14px;
}

/* Contact */
.contact {
    padding: 40px 0 80px;
    background: linear-gradient(180deg, #4F8CC9 0%, #2865A8 100%);
}

.contact-title {
    color: #fff;
    font-size: 55px;
    font-weight: bold;
    text-align: center;
    margin-top: 42px;
    margin-bottom: 42px;
}

.contact-success-message {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.success-title {
    color: #F4813A;
    font-size: 26px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.success-content {
    background: #fff;
}

.success-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.contact-form-wrapper {
    max-width: 1000px;
    min-height: 846px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 80px 64px 80px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-urgent-text {
    text-align: center;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 150%;
    letter-spacing: 0.03em;
    color: #333;
    margin-bottom: 16px;
}

.contact-phone-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #adadad;
}

.contact-phone-number {
    font-family: 'Lato', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #F4813A;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 100%;
    letter-spacing: 0.05%;
    text-align: center;
}
.contact-phone-number svg {
  margin-right: 3px;
  padding-top: 3px;
}

.contact-hours {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    width: 172.5px;
    height: 57.5px;
    margin-left: 20px;
}

.contact-hours-image {
    height: auto;
    display: block;
}

.contact-phone-section-sp {
    display: none;
}

.contact-form {
    margin-top: 56px;
    max-width: 840px;
    min-height: 380px;
    margin-left: auto;
    margin-right: auto;
}

.form-field {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form-label {
    display: flex;
    /* flex-direction: column; */
    align-items:baseline;
    gap: 4px;
    width: 240px;
    /* padding-top: 12px; */
}

.label-text {
    font-weight: 500;
    font-size: 20px;
    color: #333;
    width: 160px;
}

.req {
    color: #fff;
    background: #E63946;
    font-size: 16px;
    margin-left: 8px;
    padding: 0px 4px;
    border-radius: 3px;
    font-weight: normal;
}

.opt {
    color: #fff;
    background: #999;
    font-size: 16px;
    margin-left: 8px;
    padding: 0px 4px;
    border-radius: 3px;
    font-weight: normal;
}

.form-field input,
.form-field textarea {
    width:600px;
    flex: 1;
    padding: 12px 16px;
    border: 0px solid #D0D0D0;
    border-radius: 4px;
    font-size: 20px;
    font-family: inherit;
    background: #E5E5E5;
    color: #333;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #ADADAD;
}

.form-field input {
    height: 48px;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #5B8AC5;
    /* background: #fff; */
}

.form-field textarea {
    height: 200px;
    resize: vertical;
}

.form-error {
    display: none;
    color: #E53935;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: #FFEBEE;
    border: 1px solid #E53935;
    border-radius: 4px;
    line-height: 1.6;
}

.field-error {
    display: none;
    color: #E53935;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    margin-left: 240px;
    line-height: 1.4;
    width: 100%;
    flex-basis: 100%;
}

.submit-button {
    width: 470px;
    height: 75px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 55px auto 0;
    display: block;
}

.submit-button img {
    width: 100%;
    height: auto;
    display: block;
}

.submit-button-sp {
    display: none;
}

.submit-button:hover {
    transform: translateY(2px);
    opacity: 0.9;
}

/* Company Info */
.company-info {
    padding: 64px 0 84px 0;
    background: #fff url('../img/company/company-bg-outer.png') no-repeat center top;
    background-size: cover;
    position: relative;
    background-position: center bottom;
}

.company-info-title {
    font-size: 52px;
    font-weight: bold;
    text-align: center;
    margin: 0px 0 24px 0;
    line-height: 1.2;
    background: linear-gradient(180deg, #1E5A8E 0%, #4A90C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-info-grid {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.company-info-row {
    display: flex;
    align-items: flex-end;
}

.company-info-label {
    font-weight: bold;
    width: 200px;
    padding: 20px 0px 10px 0;
    font-size: 20px;
    color: #315B88;
    flex-shrink: 0;
    border-bottom: 2px solid #315B88;
    margin-bottom: 7px;
}

.company-info-value {
    padding: 20px 0 10px 20px;
    font-size: 20px;
    width: 500px;
    color: #333;
    flex: 1;
    line-height: 1.6;
    border-bottom: 1px solid #4F8CC9;
    margin-bottom: 7px;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #4F8CC9 0%, #2865A8 100%);
    color: #fff;
    font-size: 16px;
    width: 100%;
    height: 184px;
    padding: 36.6px 0 0 100px;
}

.footer-text {
    letter-spacing: 0.07em;
}

/* Responsive */
@media (max-width: 1024px) {
    .plan-cards {
        grid-template-columns: 1fr;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-right {
        flex: none;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-contact {
        flex-direction: column;
    }
}




@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .header-info {
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-company {
        font-size: 24px;
    }

    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-staff-image {
        width: 280px;
        height: 320px;
    }

    .service-boxes {
        grid-template-columns: 1fr;
    }

    .step-title {
        max-width: 300px;
        margin-bottom: 40px;
    }

    .step-badge {
        font-family: "Lato", sans-serif;
        width: 80px;
        height: 80px;
        font-size: 13px;
        letter-spacing: .08em;
    }
    .step-badge-num {
        font-size: 24px;
        margin-top: 3px;
    }

    .step-details h3 {
        font-size: 24px;
    }

    .step-details p {
        font-size: 12px;
        text-align: left;
    }

    .step-arrow {
        display: none;
    }

    .step-area-box {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        margin-top: 30px;
        width: calc(100% - 60px);
        margin-left: auto;
        margin-right: auto;
    }

    /* モバイルでカルーセルを有効化 */
    .step-carousel-container {
        position: relative;
    }

    .step-carousel-wrapper {
        overflow: hidden;
        width: calc(100% - 60px);
        margin: 0 auto;
    }

    .step-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
        transition: transform 0.3s ease-in-out;
        align-items: stretch;
    }

    .step-item {
        flex: 0 0 100%;
        width: 100%;
        flex-shrink: 0;
        scroll-snap-align: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 15px;
        min-height: 280px;
    }


    .step-carousel-prev,
    .step-carousel-next {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        width: 26px;
        height: 26px;
        cursor: pointer;
        z-index: 10;
        padding: 0;
        transition: opacity 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
    }

    .step-carousel-prev::before,
    .step-carousel-next::before {
        content: '';
        display: block;
        width: 26px;
        height: 26px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .step-carousel-prev::before {
        background-image: url('../img/works/carousel-arrow-left.svg');
    }

    .step-carousel-next::before {
        background-image: url('../img/works/carousel-arrow-right.svg');
    }

    .step-carousel-prev {
        left: 16px;
    }

    .step-carousel-next {
        right: 16px;
    }

    .step-carousel-prev:active,
    .step-carousel-next:active {
        opacity: 0.7;
    }

    .step-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .step-carousel-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: 1px solid #4F8CC9;
        background: none;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .step-carousel-dots .dot.active {
        background: #4F8CC9;
    }

    .name-row {
        flex-direction: column;
    }

    .hero-phone-section {
        flex-direction: column;
        text-align: center;
    }

    /* Staff Section Mobile */
    .staff-section {
        padding: 60px 0;
    }

    .staff-header {
        margin-bottom: 40px;
    }

    .staff-label-pc {
        display: none;
    }

    .staff-label-sp {
        display: block;
        width: 136px;
        height: auto;
        margin: 0 auto 20px;
    }

    .staff-main-title {
        font-size: 28px;
        text-align: center;
    }

    .staff-highlight {
        font-size: 32px;
    }

    .staff-carousel-container {
      margin: 0 30px;
    }

    .staff-carousel-wrapper {
    }

    .staff-grid {
    }

    .staff-card {

    }

    .staff-carousel-prev,
    .staff-carousel-next {
        position: absolute;
        top: 30%;
        transform: translateY(-50%);
        background: none;
        border: none;
        width: 26px;
        height: 26px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: opacity 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
    }

    .staff-carousel-prev::before,
    .staff-carousel-next::before {
        content: '';
        display: block;
        width: 26px;
        height: 26px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .staff-carousel-prev::before {
        background-image: url('../img/works/carousel-arrow-left.svg');
    }

    .staff-carousel-next::before {
        background-image: url('../img/works/carousel-arrow-right.svg');
    }

    .staff-carousel-prev {
        left: 16px;
    }

    .staff-carousel-next {
        right: 16px;
    }

    .staff-carousel-prev:active,
    .staff-carousel-next:active {
        opacity: 0.7;
    }

    .staff-photo,
    .staff-info {
        height: 210px;
    }

    .staff-name {
        font-size: 22px;
    }

    .staff-description {
        font-size: 14px;
    }

    .staff-carousel-dots.swiper-pagination-bullets {
      gap: 3px;
      margin: 20px 0 0;
    }

    .staff-carousel-dots.swiper-pagination-bullets .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        border: 1px solid #4F8CC9;
        background: none;
        cursor: pointer;
        transition: background 0.3s ease;
        padding: 0;
    }

    .staff-carousel-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #4F8CC9;
    }

    /* User Voice Section Mobile */
    .user-voice-section {
        padding: 60px 0;
    }

    .user-voice-header {
        margin-bottom: 10px;
    }

    .user-voice-label {
        font-size: 14px;
        padding: 10px 30px;
        margin-bottom: 15px;
    }

    .user-voice-subtitle {
        font-size: 14px;
        margin: 0 0 8px 0;
    }

    .user-voice-title {
        font-size: 32px;
        padding-bottom: 15px;
    }

    .user-voice-title::after {
        height: 6px;
    }

    .user-voice-boxes {
        gap: 15px;
    }

    .user-voice-box {
        flex: 0 0 100%;
        height: auto;
        min-height: 200px;
        clip-path: polygon(
            0 0,
            calc(100% - 24px) 0,
            100% 24px,
            100% 100%,
            0 100%,
            0 8px
        );
        padding: 24px 16px;
        scroll-snap-align: center;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 12px;
        row-gap: 5px;
    }

    .user-voice-triangle {
        width: 24px;
        height: 24px;
    }

    .user-voice-left {
        grid-column: 1;
        grid-row: 1 / 3;
        gap: 5px;
        display: flex;
        flex-direction: column;
        align-self: center;
    }

    .user-voice-image {
        width: 100px;
        height: 100px;
    }

    .user-voice-location {
        font-size: 11px;
    }

    .user-voice-right {
        display: contents;
    }

    .user-voice-content-title {
        margin-top: 20px;
        grid-column: 2;
        grid-row: 1;
        font-size: 22px;
        align-self: end;
        line-height: 1.3;
    }

    .user-voice-stars {
        margin-bottom: 20px;
        grid-column: 2;
        grid-row: 2;
        display: flex;
        gap: 3px;
        align-self: start;
    }

    .user-voice-star {
        width: 22px;
        height: 22px;
    }

    .user-voice-content-text {
        grid-column: 1 / 3;
        grid-row: 3;
        font-size: 14px;
        padding: 16px;
        margin-top: 5px;
        letter-spacing: 0.05em;
    }

    /* モバイルでカルーセルを有効化 */
    .user-voice-carousel-wrapper {
        overflow: hidden;
        width: calc(100% - 60px);
        margin: 0 auto;
    }

    .user-voice-boxes {
        flex-direction: row;
        gap: 20px;
        align-items: stretch;
        transition: transform 0.3s ease-in-out;
    }

    .user-voice-carousel-prev,
    .user-voice-carousel-next {
        display: block;
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        background: none;
        border: none;
        width: 26px;
        height: 26px;
        cursor: pointer;
        z-index: 10;
        padding: 0;
        transition: opacity 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
    }

    .user-voice-carousel-prev::before,
    .user-voice-carousel-next::before {
        content: '';
        display: block;
        width: 26px;
        height: 26px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .user-voice-carousel-prev::before {
        background-image: url('../img/works/carousel-arrow-left.svg');
    }

    .user-voice-carousel-next::before {
        background-image: url('../img/works/carousel-arrow-right.svg');
    }

    .user-voice-carousel-prev {
        left: 16px;
    }

    .user-voice-carousel-next {
        right: 16px;
    }

    .user-voice-carousel-prev:active,
    .user-voice-carousel-next:active {
        opacity: 0.7;
    }

    .user-voice-carousel-dots {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 8px;
    }

    .user-voice-carousel-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: 1px solid #4F8CC9;
        background: none;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .user-voice-carousel-dots .dot.active {
        background: #4F8CC9;
    }

    /* Be Careful */
    .be-careful {
        padding: 60px 0;
    }

    .be-careful-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .be-careful-icon {
        width: 80px;
        height: 80px;
        top: 1px;
        left: 35px;
        transform: none;
    }

    .be-careful-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .be-careful-content {
        width: calc(100% - 60px);
    }

    .be-careful-content p {
        font-size: 16px;
        /* margin-bottom: 24px; */
        line-height: 2;
    }

    /* FAQ */
    .faq {
        padding: 75px 0;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .faq-header::before {
        width: 210px;
        height: 96px;
    }

    .faq-item {
        margin: 0 20px 12px;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .faq-q-text {
        font-size: 18px;
    }

    .faq-a-text {
        font-size: 16px;
    }

    /* Contact */
    .contact {
        padding: 40px 0;
    }

    .contact-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contact-success-message {
        width: 100%;
        padding: 0;
    }

    .success-title {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 15px;
    }


    .success-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .contact-form-wrapper {
        width: calc(100% - 60px);
        min-height: auto;
        margin: 0 auto;
        padding: 30px 20px;
    }

    .contact-urgent-text-pc,
    .contact-phone-section-pc {
        display: none;
    }

    .contact-phone-section-sp {
        display: block;
        margin-bottom: 30px;
    }

    .contact-urgent-text-sp {
        text-align: center;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 150%;
        color: #333;
        margin-bottom: 12px;
        letter-spacing: 0.1em;
    }

    .contact-phone-button-sp {
        display: block;
        text-align: center;
    }

    .contact-phone-button-sp img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .contact-form {
        margin-top: 30px;
        width: 100%;
    }

    .form-field {
        margin-bottom: 16px;
        flex-direction: column;
        align-items: stretch;
    }

    .form-label {
        width: 100%;
        margin-bottom: 8px;
    }

    .label-text {
        width: auto;
        font-size: 16px;
    }

    .req {
        font-size: 12px;
    }

    .form-field label {
        font-size: 16px;
    }


    .form-field input {
        width: 100%;
        height: 48px;
        font-size: 16px;
        padding: 10px 12px;
        margin: 0 auto;
    }
    .opt {
        font-size: 12px;
    }

    .form-field textarea {
        width: 100%;
        min-height: 200px;
        font-size: 13px;
        padding: 10px 12px;
        margin: 0 auto;
    }

    .form-error {
        font-size: 14px;
        margin: 15px 20px;
        padding: 12px;
    }

    .field-error {
        font-size: 13px;
        margin-top: 6px;
        margin-left: 0;
    }

    .submit-button-pc {
        display: none;
    }

    .submit-button-sp {
        display: block;
        margin-top: 0;
    }

    .submit-button {
        width: 100%;
        padding: 0;
    }

    .submit-button img {
        width: 100%;
        height: auto;
    }

    /* Company Info */
    .company-info {
        padding: 0 0 80px 0;
        background: #fff url('../img/company/company-bg-outer-sp.png') no-repeat center bottom;
        background-size: 160%;
        position: relative;
    }

    /* Company Info */
    .company-info-title {
        font-size: 32px;
        margin: 40px 0 24px 0;
    }

    .company-info-grid {
        width:calc(100% - 30px);
    }

    .company-info-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .company-info-label {
        width:calc(100% - 30px);
        padding: 0;
        padding-top: 12px;
        font-size: 18px;
        border-bottom: none;
        margin: 0 auto;
    }

    .company-info-value {
        padding: 0;
        padding-bottom: 16px;
        font-size: 18px;
        width:calc(100% - 30px);
        margin: 0 auto;
    }

    .footer {
        height: 131px;
        font-size: 14px;
        padding: 25px 0 0 30px;
    }

    .footer-text {
        letter-spacing: 0.07em;
    }
}

/* 固定フッター（丸い帯ボタン） */
.fixed-footer {
    position: fixed;
    bottom: 12px;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: none;            /* SPのみ表示 */
    pointer-events: none;     /* 中身だけタップ可能にする */
}

.fixed-call-btn {
    pointer-events: auto;
    display: block;
    width: calc(100% - 40px); /* 両サイドに余白 */
    margin: 0 auto;
    padding: 14px 0;
    text-align: center;
    background: #F06755;      /* ボタン色（お好みで調整OK） */
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;     /* 楕円形ボタン */
    box-shadow:
        0 6px 0 #D44D40,      /* 下の濃い影（縁取りっぽく） */
        0 10px 16px rgba(0, 0, 0, 0.25); /* ふわっとした影 */
}

/* SPだけ表示 */
@media (max-width: 768px) {
    .fixed-footer {
        display: block;
    }
}